]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/joy/joy_isa.c
MFV r316872: 7502 ztest should run zdb with -G (debug mode)
[FreeBSD/FreeBSD.git] / sys / dev / joy / joy_isa.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1995 Jean-Marc Zucconi
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer
12  *    in this position and unchanged.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/conf.h>
38 #include <sys/uio.h>
39 #include <sys/kernel.h>
40 #include <sys/module.h>
41 #include <sys/bus.h>
42 #include <machine/bus.h>
43 #include <machine/resource.h>
44 #include <sys/rman.h>
45 #include <sys/time.h>
46 #include <dev/joy/joyvar.h>
47
48 #include <isa/isavar.h>
49 #include "isa_if.h"
50
51 static int joy_isa_probe (device_t);
52
53 static struct isa_pnp_id joy_ids[] = {
54     {0x0100630e, "CSC0001 PnP Joystick"},       /* CSC0001 */
55     {0x0101630e, "CSC0101 PnP Joystick"},       /* CSC0101 */
56     {0x01100002, "ALS0110 PnP Joystick"},       /* @P@1001 */
57     {0x01200002, "ALS0120 PnP Joystick"},       /* @P@2001 */
58     {0x01007316, "ESS0001 PnP Joystick"},       /* ESS0001 */
59     {0x2fb0d041, "Generic PnP Joystick"},       /* PNPb02f */
60     {0x2200a865, "YMH0022 PnP Joystick"},       /* YMH0022 */
61     {0x82719304, NULL},                         /* ADS7182 */
62     {0}
63 };
64
65 static int
66 joy_isa_probe(device_t dev)
67 {
68     if (ISA_PNP_PROBE(device_get_parent(dev), dev, joy_ids) == ENXIO)
69         return ENXIO;
70     return (joy_probe(dev));
71 }
72
73 static device_method_t joy_methods[] = {
74     DEVMETHOD(device_probe,     joy_isa_probe),
75     DEVMETHOD(device_attach,    joy_attach),
76     DEVMETHOD(device_detach,    joy_detach),
77     { 0, 0 }
78 };
79
80 static driver_t joy_isa_driver = {
81     "joy",
82     joy_methods,
83     sizeof (struct joy_softc)
84 };
85
86 DRIVER_MODULE(joy, isa, joy_isa_driver, joy_devclass, 0, 0);
87 DRIVER_MODULE(joy, acpi, joy_isa_driver, joy_devclass, 0, 0);
88 ISA_PNP_INFO(joy_ids);