Home | History | Annotate | Line # | Download | only in cardbus
cardslot.c revision 1.37
      1 /*	$NetBSD: cardslot.c,v 1.37 2007/12/01 05:51:16 jmcneill Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1999 and 2000
      5  *       HAYAKAWA Koichi.  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  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by HAYAKAWA Koichi.
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission.
     20  *
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     24  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     25  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     26  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     30  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32  * POSSIBILITY OF SUCH DAMAGE.
     33  */
     34 
     35 #include <sys/cdefs.h>
     36 __KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.37 2007/12/01 05:51:16 jmcneill Exp $");
     37 
     38 #include "opt_cardslot.h"
     39 
     40 #include <sys/param.h>
     41 #include <sys/systm.h>
     42 #include <sys/device.h>
     43 #include <sys/malloc.h>
     44 #include <sys/kernel.h>
     45 #include <sys/syslog.h>
     46 #include <sys/kthread.h>
     47 
     48 #include <sys/bus.h>
     49 
     50 #include <dev/cardbus/cardslotvar.h>
     51 #include <dev/cardbus/cardbusvar.h>
     52 #include <dev/pcmcia/pcmciavar.h>
     53 #include <dev/pcmcia/pcmciachip.h>
     54 #include <dev/ic/i82365var.h>
     55 
     56 #include "locators.h"
     57 
     58 #if defined CARDSLOT_DEBUG
     59 #define STATIC
     60 #define DPRINTF(a) printf a
     61 #else
     62 #define STATIC static
     63 #define DPRINTF(a)
     64 #endif
     65 
     66 
     67 
     68 STATIC void cardslotattach(struct device *, struct device *, void *);
     69 
     70 STATIC int cardslotmatch(struct device *, struct cfdata *, void *);
     71 static void cardslot_event_thread(void *arg);
     72 
     73 STATIC int cardslot_cb_print(void *aux, const char *pcic);
     74 static int cardslot_16_print(void *, const char *);
     75 static int cardslot_16_submatch(struct device *, struct cfdata *,
     76 				     const int *, void *);
     77 
     78 CFATTACH_DECL(cardslot, sizeof(struct cardslot_softc),
     79     cardslotmatch, cardslotattach, NULL, NULL);
     80 
     81 STATIC int
     82 cardslotmatch(struct device *parent, struct cfdata *cf,
     83     void *aux)
     84 {
     85 	struct cardslot_attach_args *caa = aux;
     86 
     87 	if (caa->caa_cb_attach == NULL && caa->caa_16_attach == NULL) {
     88 		/* Neither CardBus nor 16-bit PCMCIA are defined. */
     89 		return 0;
     90 	}
     91 
     92 	return 1;
     93 }
     94 
     95 
     96 
     97 STATIC void
     98 cardslotattach(struct device *parent, struct device *self,
     99     void *aux)
    100 {
    101 	struct cardslot_softc *sc = device_private(self);
    102 	struct cardslot_attach_args *caa = aux;
    103 
    104 	struct cbslot_attach_args *cba = caa->caa_cb_attach;
    105 	struct pcmciabus_attach_args *pa = caa->caa_16_attach;
    106 
    107 	struct cardbus_softc *csc = NULL;
    108 	struct pcmcia_softc *psc = NULL;
    109 
    110 	sc->sc_slot = device_unit(&sc->sc_dev);
    111 	sc->sc_cb_softc = NULL;
    112 	sc->sc_16_softc = NULL;
    113 	SIMPLEQ_INIT(&sc->sc_events);
    114 	sc->sc_th_enable = 0;
    115 
    116 	aprint_naive("\n");
    117 	aprint_normal(" slot %d flags %x\n", sc->sc_slot,
    118 	       device_cfdata(&sc->sc_dev)->cf_flags);
    119 
    120 	DPRINTF(("%s attaching CardBus bus...\n", sc->sc_dev.dv_xname));
    121 	if (cba != NULL) {
    122 		csc = (void *)config_found_ia(self, "cbbus", cba,
    123 					      cardslot_cb_print);
    124 		if (csc) {
    125 			/* cardbus found */
    126 			DPRINTF(("%s: found cardbus on %s\n", __func__,
    127 				 sc->sc_dev.dv_xname));
    128 			sc->sc_cb_softc = csc;
    129 		}
    130 	}
    131 
    132 	if (pa != NULL) {
    133 		psc = (void *)config_found_sm_loc(self, "pcmciabus", NULL, pa,
    134 			cardslot_16_print, cardslot_16_submatch);
    135 		if (psc) {
    136 			/* pcmcia 16-bit bus found */
    137 			DPRINTF(("%s: found 16-bit pcmcia bus\n", __func__));
    138 			sc->sc_16_softc = psc;
    139 			/*
    140 			 * XXX:
    141 			 * dirty.  This code should be removed to achieve MI.
    142 			 */
    143 			caa->caa_ph->pcmcia = (struct device *)psc;
    144 		}
    145 	}
    146 
    147 	if (csc != NULL || psc != NULL) {
    148 		config_pending_incr();
    149 		if (kthread_create(PRI_NONE, 0, NULL, cardslot_event_thread,
    150 		    sc, &sc->sc_event_thread, "%s", sc->sc_dev.dv_xname)) {
    151 			printf("%s: unable to create thread for slot %d\n",
    152 			    sc->sc_dev.dv_xname, sc->sc_slot);
    153 			panic("cardslotattach");
    154 		}
    155 		sc->sc_th_enable = 1;
    156 	}
    157 
    158 	if (csc && (csc->sc_cf->cardbus_ctrl)(csc->sc_cc, CARDBUS_CD)) {
    159 		DPRINTF(("%s: CardBus card found\n", __func__));
    160 		/* attach deferred */
    161 		cardslot_event_throw(sc, CARDSLOT_EVENT_INSERTION_CB);
    162 	}
    163 
    164 	if (psc && (psc->pct->card_detect)(psc->pch)) {
    165 		DPRINTF(("%s: 16-bit card found\n", __func__));
    166 		/* attach deferred */
    167 		cardslot_event_throw(sc, CARDSLOT_EVENT_INSERTION_16);
    168 	}
    169 }
    170 
    171 
    172 
    173 STATIC int
    174 cardslot_cb_print(void *aux, const char *pnp)
    175 {
    176 	struct cbslot_attach_args *cba = aux;
    177 
    178 	if (pnp != NULL) {
    179 		aprint_normal("cardbus at %s subordinate bus %d",
    180 		    pnp, cba->cba_bus);
    181 	}
    182 
    183 	return UNCONF;
    184 }
    185 
    186 
    187 static int
    188 cardslot_16_submatch(struct device *parent, struct cfdata *cf,
    189     const int *ldesc, void *aux)
    190 {
    191 
    192 	if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] != PCMCIABUSCF_CONTROLLER_DEFAULT
    193 	    && cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 0) {
    194 		return 0;
    195 	}
    196 
    197 	if ((cf->cf_loc[PCMCIABUSCF_CONTROLLER] == PCMCIABUSCF_CONTROLLER_DEFAULT)) {
    198 		return (config_match(parent, cf, aux));
    199 	}
    200 
    201 	return 0;
    202 }
    203 
    204 
    205 
    206 static int
    207 cardslot_16_print(void *arg, const char *pnp)
    208 {
    209 
    210 	if (pnp != NULL) {
    211 		aprint_normal("pcmciabus at %s", pnp);
    212 	}
    213 
    214 	return UNCONF;
    215 }
    216 
    217 
    218 /*
    219  * void cardslot_event_throw(struct cardslot_softc *sc, int ev)
    220  *
    221  *   This function throws an event to the event handler.  If the state
    222  *   of a slot is changed, it should be noticed using this function.
    223  */
    224 void
    225 cardslot_event_throw(struct cardslot_softc *sc, int ev)
    226 {
    227 	struct cardslot_event *ce;
    228 
    229 	DPRINTF(("cardslot_event_throw: an event %s comes\n",
    230 	    ev == CARDSLOT_EVENT_INSERTION_CB ? "CardBus Card inserted" :
    231 	    ev == CARDSLOT_EVENT_INSERTION_16 ? "16-bit Card inserted" :
    232 	    ev == CARDSLOT_EVENT_REMOVAL_CB ? "CardBus Card removed" :
    233 	    ev == CARDSLOT_EVENT_REMOVAL_16 ? "16-bit Card removed" : "???"));
    234 
    235 	if (NULL == (ce = (struct cardslot_event *)malloc(sizeof (struct cardslot_event), M_TEMP, M_NOWAIT))) {
    236 		panic("cardslot_enevt");
    237 	}
    238 
    239 	ce->ce_type = ev;
    240 
    241 	{
    242 		int s = spltty();
    243 		SIMPLEQ_INSERT_TAIL(&sc->sc_events, ce, ce_q);
    244 		splx(s);
    245 	}
    246 
    247 	wakeup(&sc->sc_events);
    248 
    249 	return;
    250 }
    251 
    252 
    253 /*
    254  * static void cardslot_event_thread(void *arg)
    255  *
    256  *   This function is the main routine handing cardslot events such as
    257  *   insertions and removals.
    258  *
    259  */
    260 static void
    261 cardslot_event_thread(arg)
    262 	void *arg;
    263 {
    264 	struct cardslot_softc *sc = arg;
    265 	struct cardslot_event *ce;
    266 	int s, first = 1;
    267 	static int antonym_ev[4] = {
    268 		CARDSLOT_EVENT_REMOVAL_16, CARDSLOT_EVENT_INSERTION_16,
    269 		CARDSLOT_EVENT_REMOVAL_CB, CARDSLOT_EVENT_INSERTION_CB
    270 	};
    271 
    272 	while (sc->sc_th_enable) {
    273 		s = spltty();
    274 		if ((ce = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
    275 			splx(s);
    276 			if (first) {
    277 				first = 0;
    278 				config_pending_decr();
    279 			}
    280 			(void) tsleep(&sc->sc_events, PWAIT, "cardslotev", 0);
    281 			continue;
    282 		}
    283 		SIMPLEQ_REMOVE_HEAD(&sc->sc_events, ce_q);
    284 		splx(s);
    285 
    286 		if (IS_CARDSLOT_INSERT_REMOVE_EV(ce->ce_type)) {
    287 			/* Chattering suppression */
    288 			s = spltty();
    289 			while (1) {
    290 				struct cardslot_event *ce1, *ce2;
    291 
    292 				if ((ce1 = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
    293 					break;
    294 				}
    295 				if (ce1->ce_type != antonym_ev[ce->ce_type]) {
    296 					break;
    297 				}
    298 				if ((ce2 = SIMPLEQ_NEXT(ce1, ce_q)) == NULL) {
    299 					break;
    300 				}
    301 				if (ce2->ce_type == ce->ce_type) {
    302 					SIMPLEQ_REMOVE_HEAD(&sc->sc_events,
    303 					    ce_q);
    304 					free(ce1, M_TEMP);
    305 					SIMPLEQ_REMOVE_HEAD(&sc->sc_events,
    306 					    ce_q);
    307 					free(ce2, M_TEMP);
    308 				}
    309 			}
    310 			splx(s);
    311 		}
    312 
    313 		switch (ce->ce_type) {
    314 		case CARDSLOT_EVENT_INSERTION_CB:
    315 			if ((CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB)
    316 			    || (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_16)) {
    317 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    318 					/*
    319 					 * A card has already been
    320 					 * inserted and works.
    321 					 */
    322 					break;
    323 				}
    324 			}
    325 
    326 			if (sc->sc_cb_softc) {
    327 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    328 				    CARDSLOT_STATUS_CARD_CB);
    329 				if (cardbus_attach_card(sc->sc_cb_softc) > 0) {
    330 					/* at least one function works */
    331 					CARDSLOT_SET_WORK(sc->sc_status, CARDSLOT_STATUS_WORKING);
    332 				} else {
    333 					/*
    334 					 * no functions work or this
    335 					 * card is not known
    336 					 */
    337 					CARDSLOT_SET_WORK(sc->sc_status,
    338 					    CARDSLOT_STATUS_NOTWORK);
    339 				}
    340 			} else {
    341 				panic("no cardbus on %s", sc->sc_dev.dv_xname);
    342 			}
    343 
    344 			break;
    345 
    346 		case CARDSLOT_EVENT_INSERTION_16:
    347 			if ((CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB)
    348 			    || (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_16)) {
    349 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    350 					/*
    351 					 * A card has already been
    352 					 * inserted and work.
    353 					 */
    354 					break;
    355 				}
    356 			}
    357 			if (sc->sc_16_softc) {
    358 				CARDSLOT_SET_CARDTYPE(sc->sc_status, CARDSLOT_STATUS_CARD_16);
    359 				if (pcmcia_card_attach((struct device *)sc->sc_16_softc)) {
    360 					/* Do not attach */
    361 					CARDSLOT_SET_WORK(sc->sc_status,
    362 					    CARDSLOT_STATUS_NOTWORK);
    363 				} else {
    364 					/* working */
    365 					CARDSLOT_SET_WORK(sc->sc_status,
    366 					    CARDSLOT_STATUS_WORKING);
    367 				}
    368 			} else {
    369 				panic("no 16-bit pcmcia on %s", sc->sc_dev.dv_xname);
    370 			}
    371 
    372 			break;
    373 
    374 		case CARDSLOT_EVENT_REMOVAL_CB:
    375 			if (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB) {
    376 				/* CardBus card has not been inserted. */
    377 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    378 					cardbus_detach_card(sc->sc_cb_softc);
    379 					CARDSLOT_SET_WORK(sc->sc_status,
    380 					    CARDSLOT_STATUS_NOTWORK);
    381 					CARDSLOT_SET_WORK(sc->sc_status,
    382 					    CARDSLOT_STATUS_CARD_NONE);
    383 				}
    384 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    385 				    CARDSLOT_STATUS_CARD_NONE);
    386 			} else if (CARDSLOT_CARDTYPE(sc->sc_status) != CARDSLOT_STATUS_CARD_16) {
    387 				/* Unknown card... */
    388 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    389 				    CARDSLOT_STATUS_CARD_NONE);
    390 			}
    391 			CARDSLOT_SET_WORK(sc->sc_status,
    392 			    CARDSLOT_STATUS_NOTWORK);
    393 			break;
    394 
    395 		case CARDSLOT_EVENT_REMOVAL_16:
    396 			DPRINTF(("%s: removal event\n", sc->sc_dev.dv_xname));
    397 			if (CARDSLOT_CARDTYPE(sc->sc_status) != CARDSLOT_STATUS_CARD_16) {
    398 				/* 16-bit card has not been inserted. */
    399 				break;
    400 			}
    401 			if ((sc->sc_16_softc != NULL)
    402 			    && (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING)) {
    403 				struct pcmcia_softc *psc = sc->sc_16_softc;
    404 
    405 				pcmcia_card_deactivate((struct device *)psc);
    406 				pcmcia_chip_socket_disable(psc->pct, psc->pch);
    407 				pcmcia_card_detach((struct device *)psc, DETACH_FORCE);
    408 			}
    409 			CARDSLOT_SET_CARDTYPE(sc->sc_status, CARDSLOT_STATUS_CARD_NONE);
    410 			CARDSLOT_SET_WORK(sc->sc_status, CARDSLOT_STATUS_NOTWORK);
    411 			break;
    412 
    413 		default:
    414 			panic("cardslot_event_thread: unknown event %d", ce->ce_type);
    415 		}
    416 		free(ce, M_TEMP);
    417 	}
    418 
    419 	sc->sc_event_thread = NULL;
    420 
    421 	/* In case the parent device is waiting for us to exit. */
    422 	wakeup(sc);
    423 
    424 	kthread_exit(0);
    425 }
    426