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