mediabay.c revision 1.16 1 1.16 dsl /* $NetBSD: mediabay.c,v 1.16 2009/03/14 14:46:01 dsl Exp $ */
2 1.1 tsubai
3 1.1 tsubai /*-
4 1.1 tsubai * Copyright (C) 1999 Tsubai Masanari. All rights reserved.
5 1.1 tsubai *
6 1.1 tsubai * Redistribution and use in source and binary forms, with or without
7 1.1 tsubai * modification, are permitted provided that the following conditions
8 1.1 tsubai * are met:
9 1.1 tsubai * 1. Redistributions of source code must retain the above copyright
10 1.1 tsubai * notice, this list of conditions and the following disclaimer.
11 1.1 tsubai * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 tsubai * notice, this list of conditions and the following disclaimer in the
13 1.1 tsubai * documentation and/or other materials provided with the distribution.
14 1.1 tsubai * 3. The name of the author may not be used to endorse or promote products
15 1.1 tsubai * derived from this software without specific prior written permission.
16 1.1 tsubai *
17 1.1 tsubai * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1.1 tsubai * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1.1 tsubai * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1.1 tsubai * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 1.1 tsubai * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 1.1 tsubai * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 1.1 tsubai * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 1.1 tsubai * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 1.1 tsubai * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 1.1 tsubai * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 1.1 tsubai */
28 1.9 lukem
29 1.9 lukem #include <sys/cdefs.h>
30 1.16 dsl __KERNEL_RCSID(0, "$NetBSD: mediabay.c,v 1.16 2009/03/14 14:46:01 dsl Exp $");
31 1.1 tsubai
32 1.1 tsubai #include <sys/param.h>
33 1.2 tsubai #include <sys/device.h>
34 1.2 tsubai #include <sys/kernel.h>
35 1.2 tsubai #include <sys/kthread.h>
36 1.1 tsubai #include <sys/systm.h>
37 1.2 tsubai
38 1.8 thorpej #include <uvm/uvm_extern.h>
39 1.8 thorpej
40 1.2 tsubai #include <dev/ofw/openfirm.h>
41 1.1 tsubai
42 1.1 tsubai #include <machine/autoconf.h>
43 1.1 tsubai #include <machine/pio.h>
44 1.1 tsubai
45 1.15 jmcneill enum mediabay_controller {
46 1.15 jmcneill MB_CONTROLLER_KEYLARGO,
47 1.15 jmcneill MB_CONTROLLER_OTHER
48 1.15 jmcneill };
49 1.15 jmcneill
50 1.1 tsubai struct mediabay_softc {
51 1.1 tsubai struct device sc_dev;
52 1.14 garbled bus_space_tag_t sc_tag;
53 1.1 tsubai int sc_node;
54 1.1 tsubai u_int *sc_addr;
55 1.1 tsubai u_int *sc_fcr;
56 1.2 tsubai u_int sc_baseaddr;
57 1.2 tsubai struct device *sc_content;
58 1.13 ad lwp_t *sc_kthread;
59 1.15 jmcneill enum mediabay_controller sc_type;
60 1.15 jmcneill };
61 1.15 jmcneill
62 1.15 jmcneill static const char *mediabay_keylargo[] = {
63 1.15 jmcneill "keylargo-media-bay",
64 1.15 jmcneill NULL
65 1.1 tsubai };
66 1.1 tsubai
67 1.16 dsl void mediabay_attach(struct device *, struct device *, void *);
68 1.16 dsl int mediabay_match(struct device *, struct cfdata *, void *);
69 1.16 dsl int mediabay_print(void *, const char *);
70 1.16 dsl void mediabay_attach_content(struct mediabay_softc *);
71 1.16 dsl int mediabay_intr(void *);
72 1.16 dsl void mediabay_kthread(void *);
73 1.1 tsubai
74 1.6 thorpej CFATTACH_DECL(mediabay, sizeof(struct mediabay_softc),
75 1.6 thorpej mediabay_match, mediabay_attach, NULL, NULL);
76 1.1 tsubai
77 1.2 tsubai #ifdef MEDIABAY_DEBUG
78 1.2 tsubai # define DPRINTF printf
79 1.2 tsubai #else
80 1.2 tsubai # define DPRINTF while (0) printf
81 1.2 tsubai #endif
82 1.1 tsubai
83 1.1 tsubai #define FCR_MEDIABAY_RESET 0x00000002
84 1.1 tsubai #define FCR_MEDIABAY_IDE_ENABLE 0x00000008
85 1.1 tsubai #define FCR_MEDIABAY_FD_ENABLE 0x00000010
86 1.1 tsubai #define FCR_MEDIABAY_ENABLE 0x00000080
87 1.1 tsubai #define FCR_MEDIABAY_CD_POWER 0x00800000
88 1.1 tsubai
89 1.15 jmcneill #define MBCR_MEDIABAY0_ENABLE 0x00000100
90 1.15 jmcneill #define MBCR_MEDIABAY0_RESET 0x00000200
91 1.15 jmcneill #define MBCR_MEDIABAY0_POWER 0x00000400
92 1.15 jmcneill #define MBCR_MEDIABAY0_IDE_ENABLE 0x00001000
93 1.15 jmcneill #define MBCR_MEDIABAY0_DEVMASK 0x00007800
94 1.15 jmcneill
95 1.15 jmcneill #define FCR1_EIDE0_ENABLE 0x00800000
96 1.15 jmcneill #define FCR1_EIDE0_RESET 0x01000000
97 1.15 jmcneill
98 1.15 jmcneill #define MEDIABAY_ID(sc, x) \
99 1.15 jmcneill ((sc)->sc_type == MB_CONTROLLER_KEYLARGO ? \
100 1.15 jmcneill (((x) >> 4) & 0xf) : \
101 1.15 jmcneill (((x) >> 12) & 0xf))
102 1.1 tsubai #define MEDIABAY_ID_FD 0
103 1.1 tsubai #define MEDIABAY_ID_CD 3
104 1.1 tsubai #define MEDIABAY_ID_NONE 7
105 1.1 tsubai
106 1.1 tsubai int
107 1.1 tsubai mediabay_match(parent, cf, aux)
108 1.1 tsubai struct device *parent;
109 1.1 tsubai struct cfdata *cf;
110 1.1 tsubai void *aux;
111 1.1 tsubai {
112 1.1 tsubai struct confargs *ca = aux;
113 1.1 tsubai
114 1.1 tsubai if (strcmp(ca->ca_name, "media-bay") == 0)
115 1.1 tsubai return 1;
116 1.1 tsubai
117 1.1 tsubai return 0;
118 1.1 tsubai }
119 1.1 tsubai
120 1.1 tsubai /*
121 1.1 tsubai * Attach all the sub-devices we can find
122 1.1 tsubai */
123 1.1 tsubai void
124 1.1 tsubai mediabay_attach(parent, self, aux)
125 1.1 tsubai struct device *parent, *self;
126 1.1 tsubai void *aux;
127 1.1 tsubai {
128 1.1 tsubai struct mediabay_softc *sc = (struct mediabay_softc *)self;
129 1.2 tsubai struct confargs *ca = aux;
130 1.10 briggs int irq, itype;
131 1.2 tsubai
132 1.2 tsubai ca->ca_reg[0] += ca->ca_baseaddr;
133 1.1 tsubai
134 1.8 thorpej sc->sc_addr = mapiodev(ca->ca_reg[0], PAGE_SIZE);
135 1.2 tsubai sc->sc_node = ca->ca_node;
136 1.2 tsubai sc->sc_baseaddr = ca->ca_baseaddr;
137 1.14 garbled sc->sc_tag = ca->ca_tag;
138 1.2 tsubai irq = ca->ca_intr[0];
139 1.14 garbled itype = IST_EDGE;
140 1.1 tsubai
141 1.15 jmcneill if (of_compatible(ca->ca_node, mediabay_keylargo) != -1) {
142 1.15 jmcneill sc->sc_type = MB_CONTROLLER_KEYLARGO;
143 1.15 jmcneill sc->sc_fcr = sc->sc_addr + 2;
144 1.15 jmcneill } else {
145 1.15 jmcneill sc->sc_type = MB_CONTROLLER_OTHER;
146 1.15 jmcneill sc->sc_fcr = sc->sc_addr + 1;
147 1.15 jmcneill }
148 1.15 jmcneill
149 1.14 garbled if (ca->ca_nintr == 8 && ca->ca_intr[1] != 0)
150 1.14 garbled itype = IST_LEVEL;
151 1.3 tsubai
152 1.10 briggs printf(" irq %d %s\n", irq, intr_typename(itype));
153 1.10 briggs
154 1.10 briggs intr_establish(irq, itype, IPL_BIO, mediabay_intr, sc);
155 1.1 tsubai
156 1.2 tsubai sc->sc_content = NULL;
157 1.2 tsubai
158 1.15 jmcneill if (MEDIABAY_ID(sc, in32rb(sc->sc_addr)) != MEDIABAY_ID_NONE)
159 1.2 tsubai mediabay_attach_content(sc);
160 1.13 ad
161 1.13 ad kthread_create(PRI_NONE, 0, NULL, mediabay_kthread, sc,
162 1.13 ad &sc->sc_kthread, "media-bay");
163 1.2 tsubai }
164 1.2 tsubai
165 1.2 tsubai void
166 1.2 tsubai mediabay_attach_content(sc)
167 1.2 tsubai struct mediabay_softc *sc;
168 1.2 tsubai {
169 1.2 tsubai int child;
170 1.15 jmcneill u_int fcr = 0;
171 1.2 tsubai struct device *content;
172 1.2 tsubai struct confargs ca;
173 1.2 tsubai u_int reg[20], intr[5];
174 1.2 tsubai char name[32];
175 1.2 tsubai
176 1.15 jmcneill if (sc->sc_type != MB_CONTROLLER_KEYLARGO) {
177 1.15 jmcneill fcr = in32rb(sc->sc_fcr);
178 1.15 jmcneill
179 1.15 jmcneill /*
180 1.15 jmcneill * if the mediabay isn't powered up we need to wait a few seconds
181 1.15 jmcneill * before probing devices
182 1.15 jmcneill */
183 1.15 jmcneill if ((fcr & (FCR_MEDIABAY_ENABLE | FCR_MEDIABAY_IDE_ENABLE
184 1.15 jmcneill | FCR_MEDIABAY_CD_POWER)) != (FCR_MEDIABAY_ENABLE
185 1.15 jmcneill | FCR_MEDIABAY_IDE_ENABLE | FCR_MEDIABAY_CD_POWER)) {
186 1.15 jmcneill fcr |= FCR_MEDIABAY_ENABLE | FCR_MEDIABAY_RESET;
187 1.15 jmcneill out32rb(sc->sc_fcr, fcr);
188 1.15 jmcneill delay(50000);
189 1.15 jmcneill
190 1.15 jmcneill fcr &= ~FCR_MEDIABAY_RESET;
191 1.15 jmcneill out32rb(sc->sc_fcr, fcr);
192 1.15 jmcneill delay(50000);
193 1.15 jmcneill
194 1.15 jmcneill fcr |= FCR_MEDIABAY_IDE_ENABLE | FCR_MEDIABAY_CD_POWER;
195 1.15 jmcneill out32rb(sc->sc_fcr, fcr);
196 1.15 jmcneill delay(50000);
197 1.15 jmcneill printf("%s: powering up...\n", sc->sc_dev.dv_xname);
198 1.15 jmcneill delay(2000000);
199 1.15 jmcneill }
200 1.15 jmcneill } else {
201 1.15 jmcneill printf("%s: powering up keylargo-media-bay..", sc->sc_dev.dv_xname);
202 1.15 jmcneill
203 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) & ~MBCR_MEDIABAY0_RESET);
204 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) & ~MBCR_MEDIABAY0_POWER);
205 1.15 jmcneill delay(50000);
206 1.15 jmcneill
207 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) & ~MBCR_MEDIABAY0_ENABLE);
208 1.15 jmcneill delay(50000);
209 1.1 tsubai
210 1.15 jmcneill out32rb(sc->sc_addr,
211 1.15 jmcneill in32rb(sc->sc_addr) | MBCR_MEDIABAY0_IDE_ENABLE);
212 1.15 jmcneill delay(50000);
213 1.15 jmcneill
214 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) | MBCR_MEDIABAY0_RESET);
215 1.15 jmcneill delay(50000);
216 1.15 jmcneill
217 1.15 jmcneill out32rb(sc->sc_fcr, in32rb(sc->sc_fcr) | FCR1_EIDE0_RESET);
218 1.15 jmcneill out32rb(sc->sc_fcr, in32rb(sc->sc_fcr) | FCR1_EIDE0_ENABLE);
219 1.12 macallan delay(50000);
220 1.12 macallan
221 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) | MBCR_MEDIABAY0_ENABLE);
222 1.15 jmcneill __asm volatile ("eieio");
223 1.12 macallan delay(50000);
224 1.12 macallan
225 1.15 jmcneill out32rb(sc->sc_addr, in32rb(sc->sc_addr) & ~0xf);
226 1.15 jmcneill __asm volatile ("eieio");
227 1.12 macallan delay(50000);
228 1.15 jmcneill
229 1.15 jmcneill tsleep(sc, PRI_NONE, "mediabay", hz*1);
230 1.15 jmcneill
231 1.15 jmcneill printf(" done.\n");
232 1.12 macallan }
233 1.1 tsubai
234 1.1 tsubai for (child = OF_child(sc->sc_node); child; child = OF_peer(child)) {
235 1.4 wiz memset(name, 0, sizeof(name));
236 1.1 tsubai if (OF_getprop(child, "name", name, sizeof(name)) == -1)
237 1.1 tsubai continue;
238 1.1 tsubai ca.ca_name = name;
239 1.1 tsubai ca.ca_node = child;
240 1.2 tsubai ca.ca_baseaddr = sc->sc_baseaddr;
241 1.14 garbled ca.ca_tag = sc->sc_tag;
242 1.1 tsubai
243 1.1 tsubai ca.ca_nreg = OF_getprop(child, "reg", reg, sizeof(reg));
244 1.1 tsubai ca.ca_nintr = OF_getprop(child, "AAPL,interrupts", intr,
245 1.1 tsubai sizeof(intr));
246 1.1 tsubai if (ca.ca_nintr == -1)
247 1.1 tsubai ca.ca_nintr = OF_getprop(child, "interrupts", intr,
248 1.1 tsubai sizeof(intr));
249 1.1 tsubai ca.ca_reg = reg;
250 1.1 tsubai ca.ca_intr = intr;
251 1.1 tsubai
252 1.2 tsubai content = config_found(&sc->sc_dev, &ca, mediabay_print);
253 1.2 tsubai if (content) {
254 1.2 tsubai sc->sc_content = content;
255 1.2 tsubai return;
256 1.2 tsubai }
257 1.1 tsubai }
258 1.2 tsubai
259 1.15 jmcneill if (sc->sc_type != MB_CONTROLLER_KEYLARGO) {
260 1.15 jmcneill /* No devices found. Disable media-bay. */
261 1.15 jmcneill fcr &= ~(FCR_MEDIABAY_ENABLE | FCR_MEDIABAY_IDE_ENABLE |
262 1.15 jmcneill FCR_MEDIABAY_CD_POWER | FCR_MEDIABAY_FD_ENABLE);
263 1.15 jmcneill out32rb(sc->sc_fcr, fcr);
264 1.15 jmcneill }
265 1.1 tsubai }
266 1.1 tsubai
267 1.1 tsubai int
268 1.1 tsubai mediabay_print(aux, mediabay)
269 1.1 tsubai void *aux;
270 1.1 tsubai const char *mediabay;
271 1.1 tsubai {
272 1.1 tsubai struct confargs *ca = aux;
273 1.1 tsubai
274 1.2 tsubai if (mediabay == NULL && ca->ca_nreg > 0)
275 1.7 thorpej aprint_normal(" offset 0x%x", ca->ca_reg[0]);
276 1.1 tsubai
277 1.2 tsubai return QUIET;
278 1.1 tsubai }
279 1.1 tsubai
280 1.1 tsubai int
281 1.1 tsubai mediabay_intr(v)
282 1.1 tsubai void *v;
283 1.1 tsubai {
284 1.1 tsubai struct mediabay_softc *sc = v;
285 1.1 tsubai
286 1.2 tsubai wakeup(&sc->sc_kthread);
287 1.10 briggs
288 1.2 tsubai return 1;
289 1.2 tsubai }
290 1.2 tsubai
291 1.2 tsubai void
292 1.2 tsubai mediabay_kthread(v)
293 1.2 tsubai void *v;
294 1.2 tsubai {
295 1.2 tsubai struct mediabay_softc *sc = v;
296 1.2 tsubai u_int x, fcr;
297 1.2 tsubai
298 1.10 briggs for (;;) {
299 1.10 briggs tsleep(&sc->sc_kthread, PRIBIO, "mbayev", 0);
300 1.2 tsubai
301 1.10 briggs /* sleep 0.25 sec */
302 1.10 briggs tsleep(mediabay_kthread, PRIBIO, "mbayev", hz/4);
303 1.2 tsubai
304 1.10 briggs DPRINTF("%s: ", sc->sc_dev.dv_xname);
305 1.10 briggs x = in32rb(sc->sc_addr);
306 1.1 tsubai
307 1.15 jmcneill switch (MEDIABAY_ID(sc, x)) {
308 1.10 briggs case MEDIABAY_ID_NONE:
309 1.10 briggs DPRINTF("removed\n");
310 1.10 briggs if (sc->sc_content != NULL) {
311 1.10 briggs config_detach(sc->sc_content, DETACH_FORCE);
312 1.10 briggs DPRINTF("%s: detach done\n",
313 1.10 briggs sc->sc_dev.dv_xname);
314 1.10 briggs sc->sc_content = NULL;
315 1.10 briggs
316 1.15 jmcneill if (sc->sc_type != MB_CONTROLLER_KEYLARGO) {
317 1.15 jmcneill /* disable media-bay */
318 1.15 jmcneill fcr = in32rb(sc->sc_fcr);
319 1.15 jmcneill fcr &= ~(FCR_MEDIABAY_ENABLE |
320 1.15 jmcneill FCR_MEDIABAY_IDE_ENABLE |
321 1.15 jmcneill FCR_MEDIABAY_CD_POWER |
322 1.15 jmcneill FCR_MEDIABAY_FD_ENABLE);
323 1.15 jmcneill out32rb(sc->sc_fcr, fcr);
324 1.15 jmcneill }
325 1.10 briggs }
326 1.10 briggs break;
327 1.10 briggs case MEDIABAY_ID_FD:
328 1.10 briggs DPRINTF("FD inserted\n");
329 1.10 briggs break;
330 1.10 briggs case MEDIABAY_ID_CD:
331 1.10 briggs DPRINTF("CD inserted\n");
332 1.10 briggs
333 1.10 briggs if (sc->sc_content == NULL)
334 1.10 briggs mediabay_attach_content(sc);
335 1.10 briggs break;
336 1.10 briggs default:
337 1.10 briggs printf("unknown event (0x%x)\n", x);
338 1.2 tsubai }
339 1.1 tsubai }
340 1.1 tsubai }
341 1.1 tsubai
342 1.1 tsubai /* PBG3: 0x7025X0c0 */
343 1.10 briggs /* 3400: 0x7070X080 */
344 1.1 tsubai /* 2400: 0x0070X0a8 */
345