ms_kbc.c revision 1.4 1 1.4 thorpej /* $NetBSD: ms_kbc.c,v 1.4 2002/10/02 04:40:08 thorpej Exp $ */
2 1.1 tsutsui
3 1.1 tsutsui /*-
4 1.1 tsutsui * Copyright (c) 2001 Izumi Tsutsui. All rights reserved.
5 1.1 tsutsui * Copyright (c) 2000 Tsubai Masanari. All rights reserved.
6 1.1 tsutsui *
7 1.1 tsutsui * Redistribution and use in source and binary forms, with or without
8 1.1 tsutsui * modification, are permitted provided that the following conditions
9 1.1 tsutsui * are met:
10 1.1 tsutsui * 1. Redistributions of source code must retain the above copyright
11 1.1 tsutsui * notice, this list of conditions and the following disclaimer.
12 1.1 tsutsui * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 tsutsui * notice, this list of conditions and the following disclaimer in the
14 1.1 tsutsui * documentation and/or other materials provided with the distribution.
15 1.1 tsutsui * 3. The name of the author may not be used to endorse or promote products
16 1.1 tsutsui * derived from this software without specific prior written permission.
17 1.1 tsutsui *
18 1.1 tsutsui * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 tsutsui * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 tsutsui * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 tsutsui * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 tsutsui * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.1 tsutsui * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.1 tsutsui * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.1 tsutsui * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.1 tsutsui * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 1.1 tsutsui * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.1 tsutsui */
29 1.1 tsutsui
30 1.1 tsutsui #include <sys/param.h>
31 1.1 tsutsui #include <sys/device.h>
32 1.1 tsutsui #include <sys/systm.h>
33 1.1 tsutsui
34 1.1 tsutsui #include <dev/wscons/wsconsio.h>
35 1.1 tsutsui #include <dev/wscons/wsmousevar.h>
36 1.1 tsutsui
37 1.1 tsutsui #include <machine/cpu.h>
38 1.1 tsutsui #include <machine/bus.h>
39 1.1 tsutsui
40 1.1 tsutsui #include <news68k/dev/kbcreg.h>
41 1.1 tsutsui #include <news68k/dev/kbcvar.h>
42 1.1 tsutsui #include <news68k/dev/msvar.h>
43 1.1 tsutsui
44 1.1 tsutsui #include <news68k/news68k/isr.h>
45 1.1 tsutsui
46 1.1 tsutsui int ms_kbc_match(struct device *, struct cfdata *, void *);
47 1.1 tsutsui void ms_kbc_attach(struct device *, struct device *, void *);
48 1.1 tsutsui void ms_kbc_init(struct ms_softc *);
49 1.1 tsutsui int ms_kbc_intr(void *);
50 1.1 tsutsui
51 1.1 tsutsui int ms_kbc_enable(void *);
52 1.1 tsutsui void ms_kbc_disable(void *);
53 1.1 tsutsui int ms_kbc_ioctl(void *, u_long, caddr_t, int, struct proc *);
54 1.1 tsutsui
55 1.4 thorpej CFATTACH_DECL(ms_kbc, sizeof(struct ms_softc),
56 1.4 thorpej ms_kbc_match, ms_kbc_attach, NULL, NULL);
57 1.1 tsutsui
58 1.1 tsutsui struct wsmouse_accessops ms_kbc_accessops = {
59 1.1 tsutsui ms_kbc_enable,
60 1.1 tsutsui ms_kbc_ioctl,
61 1.1 tsutsui ms_kbc_disable
62 1.1 tsutsui };
63 1.1 tsutsui
64 1.1 tsutsui int
65 1.1 tsutsui ms_kbc_match(parent, cf, aux)
66 1.1 tsutsui struct device *parent;
67 1.1 tsutsui struct cfdata *cf;
68 1.1 tsutsui void *aux;
69 1.1 tsutsui {
70 1.1 tsutsui struct kbc_attach_args *ka = aux;
71 1.1 tsutsui
72 1.1 tsutsui if (strcmp(ka->ka_name, "ms"))
73 1.1 tsutsui return 0;
74 1.1 tsutsui
75 1.1 tsutsui return 1;
76 1.1 tsutsui }
77 1.1 tsutsui
78 1.1 tsutsui void
79 1.1 tsutsui ms_kbc_attach(parent, self, aux)
80 1.1 tsutsui struct device *parent, *self;
81 1.1 tsutsui void *aux;
82 1.1 tsutsui {
83 1.1 tsutsui struct ms_softc *sc = (void *)self;
84 1.1 tsutsui struct kbc_attach_args *ka = aux;
85 1.1 tsutsui struct wsmousedev_attach_args wsa;
86 1.1 tsutsui int ipl;
87 1.1 tsutsui
88 1.1 tsutsui printf("\n");
89 1.1 tsutsui
90 1.1 tsutsui sc->sc_bt = ka->ka_bt;
91 1.1 tsutsui sc->sc_bh = ka->ka_bh;
92 1.1 tsutsui sc->sc_offset = KBC_MSREG_DATA;
93 1.1 tsutsui ipl = ka->ka_ipl;
94 1.1 tsutsui
95 1.1 tsutsui ms_kbc_init(sc);
96 1.1 tsutsui
97 1.1 tsutsui isrlink_autovec(ms_kbc_intr, (void *)sc, ipl, ISRPRI_TTY);
98 1.1 tsutsui
99 1.1 tsutsui wsa.accessops = &ms_kbc_accessops;
100 1.1 tsutsui wsa.accesscookie = sc;
101 1.1 tsutsui sc->sc_wsmousedev = config_found(self, &wsa, wsmousedevprint);
102 1.1 tsutsui }
103 1.1 tsutsui
104 1.1 tsutsui void
105 1.1 tsutsui ms_kbc_init(sc)
106 1.1 tsutsui struct ms_softc *sc;
107 1.1 tsutsui {
108 1.1 tsutsui bus_space_tag_t bt = sc->sc_bt;
109 1.1 tsutsui bus_space_handle_t bh = sc->sc_bh;
110 1.1 tsutsui
111 1.1 tsutsui bus_space_write_1(bt, bh, KBC_MSREG_RESET, 0);
112 1.1 tsutsui bus_space_write_1(bt, bh, KBC_MSREG_INTE, KBC_INTE);
113 1.1 tsutsui }
114 1.1 tsutsui
115 1.1 tsutsui int
116 1.1 tsutsui ms_kbc_intr(v)
117 1.1 tsutsui void *v;
118 1.1 tsutsui {
119 1.1 tsutsui struct ms_softc *sc = v;
120 1.1 tsutsui bus_space_tag_t bt = sc->sc_bt;
121 1.1 tsutsui bus_space_handle_t bh = sc->sc_bh;
122 1.1 tsutsui int handled = 0;
123 1.1 tsutsui
124 1.1 tsutsui while (bus_space_read_1(bt, bh, KBC_MSREG_STAT) & KBCSTAT_MSRDY) {
125 1.1 tsutsui ms_intr(sc);
126 1.1 tsutsui handled = 1;
127 1.1 tsutsui }
128 1.1 tsutsui if (handled)
129 1.1 tsutsui bus_space_write_1(bt, bh, KBC_MSREG_INTE, KBC_INTE);
130 1.1 tsutsui
131 1.1 tsutsui return handled;
132 1.1 tsutsui }
133 1.1 tsutsui
134 1.1 tsutsui int
135 1.1 tsutsui ms_kbc_enable(v)
136 1.1 tsutsui void *v;
137 1.1 tsutsui {
138 1.1 tsutsui struct ms_softc *sc = v;
139 1.1 tsutsui bus_space_tag_t bt = sc->sc_bt;
140 1.1 tsutsui bus_space_handle_t bh = sc->sc_bh;
141 1.1 tsutsui
142 1.1 tsutsui bus_space_write_1(bt, bh, KBC_MSREG_INTE, KBC_INTE);
143 1.1 tsutsui
144 1.1 tsutsui return 0;
145 1.1 tsutsui }
146 1.1 tsutsui
147 1.1 tsutsui void
148 1.1 tsutsui ms_kbc_disable(v)
149 1.1 tsutsui void *v;
150 1.1 tsutsui {
151 1.1 tsutsui struct ms_softc *sc = v;
152 1.1 tsutsui bus_space_tag_t bt = sc->sc_bt;
153 1.1 tsutsui bus_space_handle_t bh = sc->sc_bh;
154 1.1 tsutsui
155 1.1 tsutsui bus_space_write_1(bt, bh, KBC_MSREG_INTE, 0);
156 1.1 tsutsui }
157 1.1 tsutsui
158 1.1 tsutsui int
159 1.1 tsutsui ms_kbc_ioctl(v, cmd, data, flag, p)
160 1.1 tsutsui void *v;
161 1.1 tsutsui u_long cmd;
162 1.1 tsutsui caddr_t data;
163 1.1 tsutsui int flag;
164 1.1 tsutsui struct proc *p;
165 1.1 tsutsui {
166 1.2 atatat return EPASSTHROUGH;
167 1.1 tsutsui }
168