mmeyepcmcia.c revision 1.21 1 /* $NetBSD: mmeyepcmcia.c,v 1.21 2011/07/26 22:52:49 dyoung Exp $ */
2
3 /*
4 * Copyright (c) 1997 Marc Horowitz. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Marc Horowitz.
17 * 4. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * PCMCIA I/F for MMEYE
34 *
35 * T.Horiuichi
36 * Brains Corp. 1998.8.25
37 */
38
39 #include <sys/cdefs.h>
40 __KERNEL_RCSID(0, "$NetBSD: mmeyepcmcia.c,v 1.21 2011/07/26 22:52:49 dyoung Exp $");
41
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/proc.h>
47 #include <sys/device.h>
48 #include <sys/extent.h>
49 #include <sys/malloc.h>
50 #include <sys/kthread.h>
51 #include <sys/bus.h>
52
53 #include <uvm/uvm_extern.h>
54
55 #include <machine/autoconf.h>
56 #include <machine/intr.h>
57 #include <machine/mmeye.h>
58
59 #include <dev/pcmcia/pcmciareg.h>
60 #include <dev/pcmcia/pcmciavar.h>
61 #include <dev/pcmcia/pcmciachip.h>
62
63 #include <mmeye/dev/mmeyepcmciareg.h>
64
65 #include "locators.h"
66
67 #ifdef MMEYEPCMCIADEBUG
68 int mmeyepcmcia_debug = 1;
69 #define DPRINTF(arg) if (mmeyepcmcia_debug) printf arg;
70 #else
71 #define DPRINTF(arg)
72 #endif
73
74 struct mmeyepcmcia_event {
75 SIMPLEQ_ENTRY(mmeyepcmcia_event) pe_q;
76 int pe_type;
77 };
78
79 /* pe_type */
80 #define MMEYEPCMCIA_EVENT_INSERTION 0
81 #define MMEYEPCMCIA_EVENT_REMOVAL 1
82
83 struct mmeyepcmcia_handle {
84 struct mmeyepcmcia_softc *sc;
85 int flags;
86 int laststate;
87 int memalloc;
88 struct {
89 bus_addr_t addr;
90 bus_size_t size;
91 int kind;
92 bus_space_tag_t memt;
93 bus_space_handle_t memh;
94 } mem[MMEYEPCMCIA_MEM_WINS];
95 int ioalloc;
96 struct {
97 bus_addr_t addr;
98 bus_size_t size;
99 int width;
100 bus_space_tag_t iot;
101 bus_space_handle_t ioh;
102 } io[MMEYEPCMCIA_IO_WINS];
103 int ih_irq;
104 struct device *pcmcia;
105
106 int shutdown;
107 lwp_t *event_thread;
108 SIMPLEQ_HEAD(, mmeyepcmcia_event) events;
109 };
110
111 #define MMEYEPCMCIA_FLAG_CARDP 0x0002
112 #define MMEYEPCMCIA_FLAG_SOCKETP 0x0001
113
114 #define MMEYEPCMCIA_LASTSTATE_PRESENT 0x0002
115 #define MMEYEPCMCIA_LASTSTATE_HALF 0x0001
116 #define MMEYEPCMCIA_LASTSTATE_EMPTY 0x0000
117
118 /*
119 * This is sort of arbitrary. It merely needs to be "enough". It can be
120 * overridden in the conf file, anyway.
121 */
122
123 #define MMEYEPCMCIA_MEM_PAGES 4
124
125 #define MMEYEPCMCIA_NSLOTS 1
126
127 #define MMEYEPCMCIA_WINS 5
128 #define MMEYEPCMCIA_IOWINS 2
129
130 struct mmeyepcmcia_softc {
131 struct device dev;
132
133 bus_space_tag_t iot; /* mmeyepcmcia registers */
134 bus_space_handle_t ioh;
135 int controller_irq;
136
137 bus_space_tag_t memt; /* PCMCIA spaces */
138 bus_space_handle_t memh;
139 int card_irq;
140
141 pcmcia_chipset_tag_t pct;
142
143 /* this needs to be large enough to hold PCIC_MEM_PAGES bits */
144 int subregionmask;
145 #define MMEYEPCMCIA_MAX_MEM_PAGES (8 * sizeof(int))
146
147 /*
148 * used by io/mem window mapping functions. These can actually overlap
149 * with another pcic, since the underlying extent mapper will deal
150 * with individual allocations. This is here to deal with the fact
151 * that different busses have different real widths (different pc
152 * hardware seems to use 10 or 12 bits for the I/O bus).
153 */
154 bus_addr_t iobase;
155 bus_addr_t iosize;
156
157 struct mmeyepcmcia_handle handle[MMEYEPCMCIA_NSLOTS];
158 };
159
160 static void mmeyepcmcia_attach_sockets(struct mmeyepcmcia_softc *);
161 static int mmeyepcmcia_intr(void *arg);
162
163 static inline int mmeyepcmcia_read(struct mmeyepcmcia_handle *, int);
164 static inline void mmeyepcmcia_write(struct mmeyepcmcia_handle *, int, int);
165
166 static int mmeyepcmcia_chip_mem_alloc(pcmcia_chipset_handle_t, bus_size_t,
167 struct pcmcia_mem_handle *);
168 static void mmeyepcmcia_chip_mem_free(pcmcia_chipset_handle_t,
169 struct pcmcia_mem_handle *);
170 static int mmeyepcmcia_chip_mem_map(pcmcia_chipset_handle_t, int,
171 bus_addr_t, bus_size_t, struct pcmcia_mem_handle *,
172 bus_size_t *, int *);
173 static void mmeyepcmcia_chip_mem_unmap(pcmcia_chipset_handle_t, int);
174
175 static int mmeyepcmcia_chip_io_alloc(pcmcia_chipset_handle_t, bus_addr_t,
176 bus_size_t, bus_size_t, struct pcmcia_io_handle *);
177 static void mmeyepcmcia_chip_io_free(pcmcia_chipset_handle_t,
178 struct pcmcia_io_handle *);
179 static int mmeyepcmcia_chip_io_map(pcmcia_chipset_handle_t, int,
180 bus_addr_t, bus_size_t, struct pcmcia_io_handle *, int *);
181 static void mmeyepcmcia_chip_io_unmap(pcmcia_chipset_handle_t, int);
182
183 static void mmeyepcmcia_chip_socket_enable(pcmcia_chipset_handle_t);
184 static void mmeyepcmcia_chip_socket_disable(pcmcia_chipset_handle_t);
185 static void mmeyepcmcia_chip_socket_settype(pcmcia_chipset_handle_t, int);
186
187 static inline int mmeyepcmcia_read(struct mmeyepcmcia_handle *, int);
188 static inline int
189 mmeyepcmcia_read(struct mmeyepcmcia_handle *h, int idx)
190 {
191 static int prev_idx = 0;
192
193 if (idx == -1){
194 idx = prev_idx;
195 }
196 prev_idx = idx;
197 return bus_space_read_stream_2(h->sc->iot, h->sc->ioh, idx);
198 }
199
200 static inline void mmeyepcmcia_write(struct mmeyepcmcia_handle *, int, int);
201 static inline void
202 mmeyepcmcia_write(struct mmeyepcmcia_handle *h, int idx, int data)
203 {
204 static int prev_idx;
205 if (idx == -1){
206 idx = prev_idx;
207 }
208 prev_idx = idx;
209 bus_space_write_stream_2(h->sc->iot, h->sc->ioh, idx, (data));
210 }
211
212 static void *mmeyepcmcia_chip_intr_establish(pcmcia_chipset_handle_t,
213 struct pcmcia_function *, int, int (*) (void *), void *);
214 static void mmeyepcmcia_chip_intr_disestablish(pcmcia_chipset_handle_t,
215 void *);
216 static void *mmeyepcmcia_chip_intr_establish(pcmcia_chipset_handle_t,
217 struct pcmcia_function *, int, int (*) (void *), void *);
218 static void mmeyepcmcia_chip_intr_disestablish(pcmcia_chipset_handle_t,
219 void *);
220
221 static void mmeyepcmcia_attach_socket(struct mmeyepcmcia_handle *);
222 static void mmeyepcmcia_init_socket(struct mmeyepcmcia_handle *);
223 static int mmeyepcmcia_print (void *, const char *);
224 static int mmeyepcmcia_intr_socket(struct mmeyepcmcia_handle *);
225 static void mmeyepcmcia_attach_card(struct mmeyepcmcia_handle *);
226 static void mmeyepcmcia_detach_card(struct mmeyepcmcia_handle *, int);
227 static void mmeyepcmcia_deactivate_card(struct mmeyepcmcia_handle *);
228 static void mmeyepcmcia_event_thread(void *);
229 static void mmeyepcmcia_queue_event(struct mmeyepcmcia_handle *, int);
230
231 static int mmeyepcmcia_match(struct device *, struct cfdata *, void *);
232 static void mmeyepcmcia_attach(struct device *, struct device *, void *);
233
234 CFATTACH_DECL(mmeyepcmcia, sizeof(struct mmeyepcmcia_softc),
235 mmeyepcmcia_match, mmeyepcmcia_attach, NULL, NULL);
236
237 static struct pcmcia_chip_functions mmeyepcmcia_functions = {
238 mmeyepcmcia_chip_mem_alloc,
239 mmeyepcmcia_chip_mem_free,
240 mmeyepcmcia_chip_mem_map,
241 mmeyepcmcia_chip_mem_unmap,
242
243 mmeyepcmcia_chip_io_alloc,
244 mmeyepcmcia_chip_io_free,
245 mmeyepcmcia_chip_io_map,
246 mmeyepcmcia_chip_io_unmap,
247
248 mmeyepcmcia_chip_intr_establish,
249 mmeyepcmcia_chip_intr_disestablish,
250
251 mmeyepcmcia_chip_socket_enable,
252 mmeyepcmcia_chip_socket_disable,
253 mmeyepcmcia_chip_socket_settype,
254 NULL,
255 };
256
257 static int
258 mmeyepcmcia_match(struct device *parent, struct cfdata *match, void *aux)
259 {
260 struct mainbus_attach_args *ma = aux;
261
262 if (strcmp(ma->ma_name, match->cf_name) != 0)
263 return 0;
264
265 /* Disallow wildcarded values. */
266 if (ma->ma_addr1 == MAINBUSCF_ADDR1_DEFAULT ||
267 ma->ma_addr2 == MAINBUSCF_ADDR2_DEFAULT ||
268 ma->ma_irq2 == MAINBUSCF_IRQ2_DEFAULT)
269 return 0;
270
271 return 1;
272 }
273
274 static void
275 mmeyepcmcia_attach(struct device *parent, struct device *self, void *aux)
276 {
277 struct mainbus_attach_args *ma = aux;
278 struct mmeyepcmcia_softc *sc = (void *)self;
279
280 aprint_naive("\n");
281
282 sc->subregionmask = 1; /* 1999.05.17 T.Horiuchi for R1.4 */
283
284 sc->pct = (pcmcia_chipset_tag_t)&mmeyepcmcia_functions;
285 sc->iot = 0;
286 /* Map i/o space. */
287 if (bus_space_map(sc->iot, ma->ma_addr1, MMEYEPCMCIA_IOSIZE,
288 0, &sc->ioh)) {
289 aprint_error(": can't map i/o space\n");
290 return;
291 }
292 sc->memt = 0;
293 sc->iobase = ma->ma_addr2;
294 sc->controller_irq = ma->ma_irq1;
295 sc->card_irq = ma->ma_irq2;
296
297 sc->handle[0].sc = sc;
298 sc->handle[0].flags = MMEYEPCMCIA_FLAG_SOCKETP;
299 sc->handle[0].laststate = MMEYEPCMCIA_LASTSTATE_EMPTY;
300
301 SIMPLEQ_INIT(&sc->handle[0].events);
302
303 if (sc->controller_irq != MAINBUSCF_IRQ1_DEFAULT) {
304 aprint_normal(": using MMTA irq %d\n", sc->controller_irq);
305 mmeye_intr_establish(sc->controller_irq,
306 IST_LEVEL, IPL_TTY, mmeyepcmcia_intr, sc);
307 } else
308 aprint_normal("\n");
309
310 mmeyepcmcia_attach_sockets(sc);
311 }
312
313 static void *
314 mmeyepcmcia_chip_intr_establish(pcmcia_chipset_handle_t pch,
315 struct pcmcia_function *pf, int ipl, int (*fct)(void *), void *arg)
316 {
317 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
318 int irq = h->sc->card_irq;
319 void *ih;
320
321 ih = mmeye_intr_establish(irq, IST_LEVEL, ipl, fct, arg);
322 h->ih_irq = irq;
323
324 printf("%s: card irq %d\n", h->pcmcia->dv_xname, irq);
325
326 return ih;
327 }
328
329 static void
330 mmeyepcmcia_chip_intr_disestablish(pcmcia_chipset_handle_t pch, void *ih)
331 {
332 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
333
334 h->ih_irq = 0;
335 mmeye_intr_disestablish(ih);
336 }
337
338
339 static void
340 mmeyepcmcia_attach_sockets(struct mmeyepcmcia_softc *sc)
341 {
342
343 mmeyepcmcia_attach_socket(&sc->handle[0]);
344 }
345
346 static void
347 mmeyepcmcia_attach_socket(struct mmeyepcmcia_handle *h)
348 {
349 struct pcmciabus_attach_args paa;
350
351 /* initialize the rest of the handle */
352
353 h->shutdown = 0;
354 h->memalloc = 0;
355 h->ioalloc = 0;
356 h->ih_irq = 0;
357
358 /* now, config one pcmcia device per socket */
359
360 paa.paa_busname = "pcmcia";
361 paa.pct = (pcmcia_chipset_tag_t) h->sc->pct;
362 paa.pch = (pcmcia_chipset_handle_t) h;
363
364 h->pcmcia = config_found_ia(&h->sc->dev, "pcmciabus", &paa,
365 mmeyepcmcia_print);
366
367 /* if there's actually a pcmcia device attached, initialize the slot */
368
369 if (h->pcmcia)
370 mmeyepcmcia_init_socket(h);
371 }
372
373 static void
374 mmeyepcmcia_event_thread(void *arg)
375 {
376 struct mmeyepcmcia_handle *h = arg;
377 struct mmeyepcmcia_event *pe;
378 int s;
379
380 while (h->shutdown == 0) {
381 s = splhigh();
382 if ((pe = SIMPLEQ_FIRST(&h->events)) == NULL) {
383 splx(s);
384 (void) tsleep(&h->events, PWAIT, "mmeyepcmciaev", 0);
385 continue;
386 } else {
387 splx(s);
388 /* sleep .25s to be enqueued chatterling interrupts */
389 (void) tsleep((void *)mmeyepcmcia_event_thread, PWAIT,
390 "mmeyepcmciass", hz/4);
391 }
392 s = splhigh();
393 SIMPLEQ_REMOVE_HEAD(&h->events, pe_q);
394 splx(s);
395
396 switch (pe->pe_type) {
397 case MMEYEPCMCIA_EVENT_INSERTION:
398 s = splhigh();
399 while (1) {
400 struct mmeyepcmcia_event *pe1, *pe2;
401
402 if ((pe1 = SIMPLEQ_FIRST(&h->events)) == NULL)
403 break;
404 if (pe1->pe_type != MMEYEPCMCIA_EVENT_REMOVAL)
405 break;
406 if ((pe2 = SIMPLEQ_NEXT(pe1, pe_q)) == NULL)
407 break;
408 if (pe2->pe_type == MMEYEPCMCIA_EVENT_INSERTION) {
409 SIMPLEQ_REMOVE_HEAD(&h->events, pe_q);
410 free(pe1, M_TEMP);
411 SIMPLEQ_REMOVE_HEAD(&h->events, pe_q);
412 free(pe2, M_TEMP);
413 }
414 }
415 splx(s);
416
417 DPRINTF(("%s: insertion event\n", h->sc->dev.dv_xname));
418 mmeyepcmcia_attach_card(h);
419 break;
420
421 case MMEYEPCMCIA_EVENT_REMOVAL:
422 s = splhigh();
423 while (1) {
424 struct mmeyepcmcia_event *pe1, *pe2;
425
426 if ((pe1 = SIMPLEQ_FIRST(&h->events)) == NULL)
427 break;
428 if (pe1->pe_type != MMEYEPCMCIA_EVENT_INSERTION)
429 break;
430 if ((pe2 = SIMPLEQ_NEXT(pe1, pe_q)) == NULL)
431 break;
432 if (pe2->pe_type == MMEYEPCMCIA_EVENT_REMOVAL) {
433 SIMPLEQ_REMOVE_HEAD(&h->events, pe_q);
434 free(pe1, M_TEMP);
435 SIMPLEQ_REMOVE_HEAD(&h->events, pe_q);
436 free(pe2, M_TEMP);
437 }
438 }
439 splx(s);
440
441 DPRINTF(("%s: removal event\n", h->sc->dev.dv_xname));
442 mmeyepcmcia_detach_card(h, DETACH_FORCE);
443 break;
444
445 default:
446 panic("mmeyepcmcia_event_thread: unknown event %d",
447 pe->pe_type);
448 }
449 free(pe, M_TEMP);
450 }
451
452 h->event_thread = NULL;
453
454 /* In case parent is waiting for us to exit. */
455 wakeup(h->sc);
456
457 kthread_exit(0);
458 }
459
460 static void
461 mmeyepcmcia_init_socket(struct mmeyepcmcia_handle *h)
462 {
463 int reg;
464
465 /*
466 * queue creation of a kernel thread to handle insert/removal events.
467 */
468 #ifdef DIAGNOSTIC
469 if (h->event_thread != NULL)
470 panic("mmeyepcmcia_attach_socket: event thread");
471 #endif
472
473 /* if there's a card there, then attach it. */
474
475 reg = mmeyepcmcia_read(h, MMEYEPCMCIA_IF_STATUS);
476 reg &= ~MMEYEPCMCIA_IF_STATUS_BUSWIDTH; /* Set bus width to 16bit */
477
478 if ((reg & MMEYEPCMCIA_IF_STATUS_CARDDETECT_MASK) ==
479 MMEYEPCMCIA_IF_STATUS_CARDDETECT_PRESENT) {
480 int i;
481
482 /* reset the card */
483 mmeyepcmcia_write(h, MMEYEPCMCIA_IF_STATUS, reg|MMEYEPCMCIA_IF_STATUS_RESET);
484 delay(1000); /* wait 1000 uSec */
485 mmeyepcmcia_write(h, MMEYEPCMCIA_IF_STATUS,
486 reg & ~MMEYEPCMCIA_IF_STATUS_RESET);
487 for (i = 0; i < 10000; i++)
488 delay(1000); /* wait 1 mSec */
489
490 mmeyepcmcia_attach_card(h);
491 h->laststate = MMEYEPCMCIA_LASTSTATE_PRESENT;
492 } else {
493 h->laststate = MMEYEPCMCIA_LASTSTATE_EMPTY;
494 }
495
496 if (kthread_create(PRI_NONE, 0, NULL, mmeyepcmcia_event_thread, h,
497 &h->event_thread, "%s", h->sc->dev.dv_xname)) {
498 printf("%s: unable to create event thread\n",
499 h->sc->dev.dv_xname);
500 panic("mmeyepcmcia_create_event_thread");
501 }
502 }
503
504 static int
505 mmeyepcmcia_print(void *arg, const char *pnp)
506 {
507
508 if (pnp)
509 aprint_normal("pcmcia at %s", pnp);
510
511 return UNCONF;
512 }
513
514 static int
515 mmeyepcmcia_intr(void *arg)
516 {
517 struct mmeyepcmcia_softc *sc = arg;
518
519 DPRINTF(("%s: intr\n", sc->dev.dv_xname));
520
521 mmeyepcmcia_intr_socket(&sc->handle[0]);
522
523 return 0;
524 }
525
526 static int
527 mmeyepcmcia_intr_socket(struct mmeyepcmcia_handle *h)
528 {
529 int cscreg;
530
531 cscreg = mmeyepcmcia_read(h, MMEYEPCMCIA_CSC);
532
533 cscreg &= (MMEYEPCMCIA_CSC_GPI |
534 MMEYEPCMCIA_CSC_CD |
535 MMEYEPCMCIA_CSC_READY |
536 MMEYEPCMCIA_CSC_BATTWARN |
537 MMEYEPCMCIA_CSC_BATTDEAD);
538
539 if (cscreg & MMEYEPCMCIA_CSC_GPI) {
540 DPRINTF(("%s: %02x GPI\n", h->sc->dev.dv_xname, h->sock));
541 }
542 if (cscreg & MMEYEPCMCIA_CSC_CD) {
543 int statreg;
544
545 statreg = mmeyepcmcia_read(h, MMEYEPCMCIA_IF_STATUS);
546
547 DPRINTF(("%s: %02x CD %x\n", h->sc->dev.dv_xname, h->sock,
548 statreg));
549
550 if ((statreg & MMEYEPCMCIA_IF_STATUS_CARDDETECT_MASK) ==
551 MMEYEPCMCIA_IF_STATUS_CARDDETECT_PRESENT) {
552 if (h->laststate != MMEYEPCMCIA_LASTSTATE_PRESENT) {
553 DPRINTF(("%s: enqueing INSERTION event\n",
554 h->sc->dev.dv_xname));
555 mmeyepcmcia_queue_event(h, MMEYEPCMCIA_EVENT_INSERTION);
556 }
557 h->laststate = MMEYEPCMCIA_LASTSTATE_PRESENT;
558 } else {
559 if (h->laststate == MMEYEPCMCIA_LASTSTATE_PRESENT) {
560 /* Deactivate the card now. */
561 DPRINTF(("%s: deactivating card\n",
562 h->sc->dev.dv_xname));
563 mmeyepcmcia_deactivate_card(h);
564
565 DPRINTF(("%s: enqueing REMOVAL event\n",
566 h->sc->dev.dv_xname));
567 mmeyepcmcia_queue_event(h, MMEYEPCMCIA_EVENT_REMOVAL);
568 }
569 h->laststate = ((statreg & MMEYEPCMCIA_IF_STATUS_CARDDETECT_MASK) == 0)
570 ? MMEYEPCMCIA_LASTSTATE_EMPTY : MMEYEPCMCIA_LASTSTATE_HALF;
571 }
572 }
573 if (cscreg & MMEYEPCMCIA_CSC_READY) {
574 DPRINTF(("%s: %02x READY\n", h->sc->dev.dv_xname, h->sock));
575 /* shouldn't happen */
576 }
577 if (cscreg & MMEYEPCMCIA_CSC_BATTWARN) {
578 DPRINTF(("%s: %02x BATTWARN\n", h->sc->dev.dv_xname, h->sock));
579 }
580 if (cscreg & MMEYEPCMCIA_CSC_BATTDEAD) {
581 DPRINTF(("%s: %02x BATTDEAD\n", h->sc->dev.dv_xname, h->sock));
582 }
583 return cscreg ? 1 : 0;
584 }
585
586 static void
587 mmeyepcmcia_queue_event(struct mmeyepcmcia_handle *h, int event)
588 {
589 struct mmeyepcmcia_event *pe;
590 int s;
591
592 pe = malloc(sizeof(*pe), M_TEMP, M_NOWAIT);
593 if (pe == NULL)
594 panic("mmeyepcmcia_queue_event: can't allocate event");
595
596 pe->pe_type = event;
597 s = splhigh();
598 SIMPLEQ_INSERT_TAIL(&h->events, pe, pe_q);
599 splx(s);
600 wakeup(&h->events);
601 }
602
603 static void
604 mmeyepcmcia_attach_card(struct mmeyepcmcia_handle *h)
605 {
606
607 if (!(h->flags & MMEYEPCMCIA_FLAG_CARDP)) {
608 /* call the MI attach function */
609 pcmcia_card_attach(h->pcmcia);
610
611 h->flags |= MMEYEPCMCIA_FLAG_CARDP;
612 } else {
613 DPRINTF(("mmeyepcmcia_attach_card: already attached"));
614 }
615 }
616
617 static void
618 mmeyepcmcia_detach_card(struct mmeyepcmcia_handle *h, int flags)
619 {
620
621 if (h->flags & MMEYEPCMCIA_FLAG_CARDP) {
622 h->flags &= ~MMEYEPCMCIA_FLAG_CARDP;
623
624 /* call the MI detach function */
625 pcmcia_card_detach(h->pcmcia, flags);
626 } else {
627 DPRINTF(("mmeyepcmcia_detach_card: already detached"));
628 }
629 }
630
631 static void
632 mmeyepcmcia_deactivate_card(struct mmeyepcmcia_handle *h)
633 {
634
635 /* call the MI deactivate function */
636 pcmcia_card_deactivate(h->pcmcia);
637
638 /* Power down and reset XXX notyet */
639 }
640
641 static int
642 mmeyepcmcia_chip_mem_alloc(pcmcia_chipset_handle_t pch, bus_size_t size,
643 struct pcmcia_mem_handle *pcmhp)
644 {
645 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
646 bus_addr_t addr;
647 bus_size_t sizepg;
648 int i, mask, mhandle;
649
650 /* out of sc->memh, allocate as many pages as necessary */
651 #define MMEYEPCMCIA_MEM_ALIGN MMEYEPCMCIA_MEM_PAGESIZE
652 /* convert size to PCIC pages */
653 sizepg = (size + (MMEYEPCMCIA_MEM_ALIGN - 1)) / MMEYEPCMCIA_MEM_ALIGN;
654 if (sizepg > MMEYEPCMCIA_MAX_MEM_PAGES)
655 return 1;
656
657 mask = (1 << sizepg) - 1;
658
659 addr = 0; /* XXX gcc -Wuninitialized */
660 mhandle = 0; /* XXX gcc -Wuninitialized */
661
662 for (i = 0; i <= MMEYEPCMCIA_MAX_MEM_PAGES - sizepg; i++) {
663 if ((h->sc->subregionmask & (mask << i)) == (mask << i)) {
664 mhandle = mask << i;
665 addr = h->sc->iobase + (i * MMEYEPCMCIA_MEM_PAGESIZE);
666 h->sc->subregionmask &= ~(mhandle);
667 pcmhp->memt = h->sc->memt;
668 pcmhp->memh = 0;
669 pcmhp->addr = addr;
670 pcmhp->size = size;
671 pcmhp->mhandle = mhandle;
672 pcmhp->realsize = sizepg * MMEYEPCMCIA_MEM_PAGESIZE;
673 return 0;
674 }
675 }
676
677 return 1;
678 }
679
680 static void
681 mmeyepcmcia_chip_mem_free(pcmcia_chipset_handle_t pch,
682 struct pcmcia_mem_handle *pcmhp)
683 {
684 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
685
686 h->sc->subregionmask |= pcmhp->mhandle;
687 }
688
689 static int
690 mmeyepcmcia_chip_mem_map(pcmcia_chipset_handle_t pch, int kind,
691 bus_addr_t card_addr, bus_size_t size, struct pcmcia_mem_handle *pcmhp,
692 bus_size_t *offsetp, int *windowp)
693 {
694 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
695 bus_addr_t busaddr;
696 int i, win;
697
698 win = -1;
699 for (i = 0; i < MMEYEPCMCIA_WINS; i++) {
700 if ((h->memalloc & (1 << i)) == 0) {
701 win = i;
702 h->memalloc |= (1 << i);
703 break;
704 }
705 }
706
707 if (win == -1)
708 return 1;
709
710 *windowp = win;
711
712 /* XXX this is pretty gross */
713
714 busaddr = pcmhp->addr + card_addr;
715
716 #if defined(SH7750R)
717 switch (kind) {
718 case PCMCIA_MEM_ATTR:
719 case PCMCIA_MEM_ATTR | PCMCIA_WIDTH_MEM16:
720 pcmhp->memt = SH3_BUS_SPACE_PCMCIA_ATT;
721 break;
722
723 case PCMCIA_MEM_ATTR | PCMCIA_WIDTH_MEM8:
724 pcmhp->memt = SH3_BUS_SPACE_PCMCIA_ATT8;
725 break;
726
727 case PCMCIA_MEM_COMMON:
728 case PCMCIA_MEM_COMMON | PCMCIA_WIDTH_MEM16:
729 pcmhp->memt = SH3_BUS_SPACE_PCMCIA_MEM;
730 break;
731
732 case PCMCIA_MEM_COMMON | PCMCIA_WIDTH_MEM8:
733 pcmhp->memt = SH3_BUS_SPACE_PCMCIA_MEM8;
734 break;
735
736 default:
737 panic("mmeyepcmcia_chip_mem_map kind is bogus: 0x%x", kind);
738 }
739 #else
740 if (!bus_space_is_equal(h->sc->memt, pcmhp->memt))
741 panic("mmeyepcmcia_chip_mem_map memt is bogus");
742 if (kind != PCMCIA_MEM_ATTR)
743 busaddr += MMEYEPCMCIA_ATTRMEM_SIZE;
744 #endif
745 if (bus_space_map(pcmhp->memt, busaddr, pcmhp->size, 0, &pcmhp->memh))
746 return 1;
747
748 /*
749 * compute the address offset to the pcmcia address space for the
750 * pcic. this is intentionally signed. The masks and shifts below
751 * will cause TRT to happen in the pcic registers. Deal with making
752 * sure the address is aligned, and return the alignment offset.
753 */
754
755 *offsetp = 0;
756
757 DPRINTF(("mmeyepcmcia_chip_mem_map window %d bus %lx+%lx+%lx at card addr "
758 "%lx\n", win, (u_long) busaddr, (u_long) * offsetp, (u_long) size,
759 (u_long) card_addr));
760
761 /*
762 * include the offset in the size, and decrement size by one, since
763 * the hw wants start/stop
764 */
765 h->mem[win].addr = busaddr;
766 h->mem[win].size = size - 1;
767 h->mem[win].kind = kind;
768 h->mem[win].memt = pcmhp->memt;
769 h->mem[win].memh = pcmhp->memh;
770
771 return 0;
772 }
773
774 static void
775 mmeyepcmcia_chip_mem_unmap(pcmcia_chipset_handle_t pch, int window)
776 {
777 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
778
779 if (window >= MMEYEPCMCIA_WINS)
780 panic("mmeyepcmcia_chip_mem_unmap: window out of range");
781
782 h->memalloc &= ~(1 << window);
783
784 bus_space_unmap(h->mem[window].memt, h->mem[window].memh,
785 h->mem[window].size);
786 }
787
788 static int
789 mmeyepcmcia_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start,
790 bus_size_t size, bus_size_t align, struct pcmcia_io_handle *pcihp)
791 {
792 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
793
794 /*
795 * Allocate some arbitrary I/O space.
796 */
797
798 DPRINTF(("mmeyepcmcia_chip_io_alloc alloc port %lx+%lx\n",
799 (u_long) ioaddr, (u_long) size));
800
801 pcihp->iot = h->sc->memt;
802 pcihp->ioh = 0;
803 pcihp->addr = h->sc->iobase + start;
804 pcihp->size = size;
805
806 return 0;
807 }
808
809 static void
810 mmeyepcmcia_chip_io_free(pcmcia_chipset_handle_t pch,
811 struct pcmcia_io_handle *pcihp)
812 {
813 }
814
815 static int
816 mmeyepcmcia_chip_io_map(pcmcia_chipset_handle_t pch, int width,
817 bus_addr_t offset, bus_size_t size, struct pcmcia_io_handle *pcihp,
818 int *windowp)
819 {
820 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
821 bus_addr_t busaddr;
822 int i, win;
823 #ifdef MMEYEPCMCIADEBUG
824 static char *width_names[] = { "auto", "io8", "io16" };
825 #endif
826
827 /* I/O width is hardwired to 16bit mode on mmeye. */
828 width = PCMCIA_WIDTH_IO16;
829
830 win = -1;
831 for (i = 0; i < MMEYEPCMCIA_IOWINS; i++) {
832 if ((h->ioalloc & (1 << i)) == 0) {
833 win = i;
834 h->ioalloc |= (1 << i);
835 break;
836 }
837 }
838
839 if (win == -1)
840 return 1;
841
842 *windowp = win;
843
844 /* XXX this is pretty gross */
845
846 busaddr = pcihp->addr + offset;
847
848 #if defined(SH7750R)
849 switch (width) {
850 case PCMCIA_WIDTH_IO8:
851 pcihp->iot = SH3_BUS_SPACE_PCMCIA_IO8;
852 break;
853
854 case PCMCIA_WIDTH_IO16:
855 pcihp->iot = SH3_BUS_SPACE_PCMCIA_IO;
856 break;
857
858 case PCMCIA_WIDTH_AUTO:
859 default:
860 panic("mmeyepcmcia_chip_io_map width is bogus: 0x%x", width);
861 }
862 #else
863 if (!bus_space_is_equal(h->sc->iot, pcihp->iot))
864 panic("mmeyepcmcia_chip_io_map iot is bogus");
865 busaddr += MMEYEPCMCIA_ATTRMEM_SIZE;
866 #endif
867 if (bus_space_map(pcihp->iot, busaddr, pcihp->size, 0, &pcihp->ioh))
868 return 1;
869
870 DPRINTF(("mmeyepcmcia_chip_io_map window %d %s port %lx+%lx\n",
871 win, width_names[width], (u_long) offset, (u_long) size));
872
873 /* XXX wtf is this doing here? */
874
875 h->io[win].addr = busaddr;
876 h->io[win].size = size;
877 h->io[win].width = width;
878 h->io[win].iot = pcihp->iot;
879 h->io[win].ioh = pcihp->ioh;
880
881 return 0;
882 }
883
884 static void
885 mmeyepcmcia_chip_io_unmap(pcmcia_chipset_handle_t pch, int window)
886 {
887 struct mmeyepcmcia_handle *h = (struct mmeyepcmcia_handle *) pch;
888
889 if (window >= MMEYEPCMCIA_IOWINS)
890 panic("mmeyepcmcia_chip_io_unmap: window out of range");
891
892 h->ioalloc &= ~(1 << window);
893
894 bus_space_unmap(h->io[window].iot, h->io[window].ioh,
895 h->io[window].size);
896 }
897
898 static void
899 mmeyepcmcia_chip_socket_enable(pcmcia_chipset_handle_t pch)
900 {
901 }
902
903 static void
904 mmeyepcmcia_chip_socket_disable(pcmcia_chipset_handle_t pch)
905 {
906 }
907
908 static void
909 mmeyepcmcia_chip_socket_settype(pcmcia_chipset_handle_t pch, int type)
910 {
911 }
912