Home | History | Annotate | Line # | Download | only in cardbus
cardslot.c revision 1.26.6.4
      1  1.26.6.4      yamt /*	$NetBSD: cardslot.c,v 1.26.6.4 2007/09/03 14:33:32 yamt 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.26.6.4      yamt __KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.26.6.4 2007/09/03 14:33:32 yamt 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.1      haya #include <machine/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 #include <dev/ic/i82365var.h>
     55       1.1      haya 
     56      1.25  drochner #include "locators.h"
     57       1.1      haya 
     58       1.1      haya #if defined CARDSLOT_DEBUG
     59       1.1      haya #define STATIC
     60       1.1      haya #define DPRINTF(a) printf a
     61       1.1      haya #else
     62       1.1      haya #define STATIC static
     63       1.1      haya #define DPRINTF(a)
     64       1.1      haya #endif
     65       1.1      haya 
     66       1.1      haya 
     67       1.1      haya 
     68      1.26     perry STATIC void cardslotattach(struct device *, struct device *, void *);
     69       1.1      haya 
     70      1.26     perry STATIC int cardslotmatch(struct device *, struct cfdata *, 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.26     perry static int cardslot_16_submatch(struct device *, struct cfdata *,
     76  1.26.6.1      yamt 				     const int *, void *);
     77       1.1      haya 
     78      1.20   thorpej CFATTACH_DECL(cardslot, sizeof(struct cardslot_softc),
     79      1.21   thorpej     cardslotmatch, cardslotattach, NULL, NULL);
     80       1.1      haya 
     81       1.1      haya STATIC int
     82  1.26.6.2      yamt cardslotmatch(struct device *parent, struct cfdata *cf,
     83  1.26.6.2      yamt     void *aux)
     84       1.1      haya {
     85      1.14      haya 	struct cardslot_attach_args *caa = aux;
     86       1.1      haya 
     87      1.14      haya 	if (caa->caa_cb_attach == NULL && caa->caa_16_attach == NULL) {
     88      1.14      haya 		/* Neither CardBus nor 16-bit PCMCIA are defined. */
     89      1.14      haya 		return 0;
     90      1.14      haya 	}
     91       1.1      haya 
     92      1.14      haya 	return 1;
     93       1.1      haya }
     94       1.1      haya 
     95       1.1      haya 
     96       1.1      haya 
     97       1.1      haya STATIC void
     98  1.26.6.2      yamt cardslotattach(struct device *parent, struct device *self,
     99  1.26.6.2      yamt     void *aux)
    100       1.1      haya {
    101  1.26.6.1      yamt 	struct cardslot_softc *sc = device_private(self);
    102      1.14      haya 	struct cardslot_attach_args *caa = aux;
    103      1.14      haya 
    104      1.14      haya 	struct cbslot_attach_args *cba = caa->caa_cb_attach;
    105      1.14      haya 	struct pcmciabus_attach_args *pa = caa->caa_16_attach;
    106      1.14      haya 
    107      1.23  christos 	struct cardbus_softc *csc = NULL;
    108      1.23  christos 	struct pcmcia_softc *psc = NULL;
    109       1.1      haya 
    110  1.26.6.1      yamt 	sc->sc_slot = device_unit(&sc->sc_dev);
    111      1.14      haya 	sc->sc_cb_softc = NULL;
    112      1.14      haya 	sc->sc_16_softc = NULL;
    113      1.14      haya 	SIMPLEQ_INIT(&sc->sc_events);
    114      1.14      haya 	sc->sc_th_enable = 0;
    115      1.14      haya 
    116      1.25  drochner 	printf(" slot %d flags %x\n", sc->sc_slot,
    117  1.26.6.1      yamt 	       device_cfdata(&sc->sc_dev)->cf_flags);
    118      1.14      haya 
    119      1.14      haya 	DPRINTF(("%s attaching CardBus bus...\n", sc->sc_dev.dv_xname));
    120      1.14      haya 	if (cba != NULL) {
    121      1.25  drochner 		csc = (void *)config_found_ia(self, "cbbus", cba,
    122      1.25  drochner 					      cardslot_cb_print);
    123      1.25  drochner 		if (csc) {
    124      1.14      haya 			/* cardbus found */
    125  1.26.6.3      yamt 			DPRINTF(("%s: found cardbus on %s\n", __func__,
    126      1.25  drochner 				 sc->sc_dev.dv_xname));
    127      1.14      haya 			sc->sc_cb_softc = csc;
    128      1.14      haya 		}
    129      1.14      haya 	}
    130      1.14      haya 
    131      1.14      haya 	if (pa != NULL) {
    132      1.25  drochner 		psc = (void *)config_found_sm_loc(self, "pcmciabus", NULL, pa,
    133      1.25  drochner 			cardslot_16_print, cardslot_16_submatch);
    134      1.25  drochner 		if (psc) {
    135      1.14      haya 			/* pcmcia 16-bit bus found */
    136  1.26.6.3      yamt 			DPRINTF(("%s: found 16-bit pcmcia bus\n", __func__));
    137      1.14      haya 			sc->sc_16_softc = psc;
    138      1.14      haya 			/*
    139      1.14      haya 			 * XXX:
    140      1.14      haya 			 * dirty.  This code should be removed to achieve MI.
    141      1.14      haya 			 */
    142      1.14      haya 			caa->caa_ph->pcmcia = (struct device *)psc;
    143      1.14      haya 		}
    144      1.14      haya 	}
    145       1.1      haya 
    146      1.14      haya 	if (csc != NULL || psc != NULL) {
    147      1.14      haya 		config_pending_incr();
    148  1.26.6.4      yamt 		if (kthread_create(PRI_NONE, 0, NULL, cardslot_event_thread,
    149  1.26.6.4      yamt 		    sc, &sc->sc_event_thread, "%s", sc->sc_dev.dv_xname)) {
    150  1.26.6.4      yamt 			printf("%s: unable to create thread for slot %d\n",
    151  1.26.6.4      yamt 			    sc->sc_dev.dv_xname, sc->sc_slot);
    152  1.26.6.4      yamt 			panic("cardslotattach");
    153  1.26.6.4      yamt 		}
    154  1.26.6.4      yamt 		sc->sc_th_enable = 1;
    155      1.14      haya 	}
    156       1.1      haya 
    157      1.14      haya 	if (csc && (csc->sc_cf->cardbus_ctrl)(csc->sc_cc, CARDBUS_CD)) {
    158  1.26.6.3      yamt 		DPRINTF(("%s: CardBus card found\n", __func__));
    159      1.14      haya 		/* attach deferred */
    160      1.14      haya 		cardslot_event_throw(sc, CARDSLOT_EVENT_INSERTION_CB);
    161      1.14      haya 	}
    162       1.1      haya 
    163      1.14      haya 	if (psc && (psc->pct->card_detect)(psc->pch)) {
    164  1.26.6.3      yamt 		DPRINTF(("%s: 16-bit card found\n", __func__));
    165      1.14      haya 		/* attach deferred */
    166      1.14      haya 		cardslot_event_throw(sc, CARDSLOT_EVENT_INSERTION_16);
    167      1.14      haya 	}
    168       1.1      haya }
    169       1.1      haya 
    170       1.1      haya 
    171       1.1      haya 
    172       1.1      haya STATIC int
    173  1.26.6.3      yamt cardslot_cb_print(void *aux, const char *pnp)
    174       1.1      haya {
    175       1.9      haya 	struct cbslot_attach_args *cba = aux;
    176       1.4      haya 
    177  1.26.6.3      yamt 	if (pnp != NULL) {
    178      1.22   thorpej 		aprint_normal("cardbus at %s subordinate bus %d",
    179      1.22   thorpej 		    pnp, cba->cba_bus);
    180       1.9      haya 	}
    181       1.4      haya 
    182       1.9      haya 	return UNCONF;
    183       1.1      haya }
    184       1.1      haya 
    185       1.1      haya 
    186       1.1      haya static int
    187  1.26.6.2      yamt cardslot_16_submatch(struct device *parent, struct cfdata *cf,
    188  1.26.6.2      yamt     const int *ldesc, void *aux)
    189       1.1      haya {
    190       1.1      haya 
    191      1.14      haya 	if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] != PCMCIABUSCF_CONTROLLER_DEFAULT
    192      1.14      haya 	    && cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 0) {
    193      1.14      haya 		return 0;
    194      1.14      haya 	}
    195      1.14      haya 
    196      1.14      haya 	if ((cf->cf_loc[PCMCIABUSCF_CONTROLLER] == PCMCIABUSCF_CONTROLLER_DEFAULT)) {
    197      1.18   thorpej 		return (config_match(parent, cf, aux));
    198      1.14      haya 	}
    199      1.14      haya 
    200      1.14      haya 	return 0;
    201       1.1      haya }
    202       1.1      haya 
    203       1.1      haya 
    204       1.1      haya 
    205       1.1      haya static int
    206  1.26.6.2      yamt cardslot_16_print(void *arg, const char *pnp)
    207       1.1      haya {
    208       1.4      haya 
    209  1.26.6.3      yamt 	if (pnp != NULL) {
    210      1.22   thorpej 		aprint_normal("pcmciabus at %s", pnp);
    211      1.14      haya 	}
    212       1.1      haya 
    213      1.14      haya 	return UNCONF;
    214       1.1      haya }
    215       1.1      haya 
    216       1.1      haya 
    217       1.1      haya /*
    218       1.1      haya  * void cardslot_event_throw(struct cardslot_softc *sc, int ev)
    219       1.1      haya  *
    220       1.1      haya  *   This function throws an event to the event handler.  If the state
    221       1.1      haya  *   of a slot is changed, it should be noticed using this function.
    222       1.1      haya  */
    223       1.1      haya void
    224  1.26.6.3      yamt cardslot_event_throw(struct cardslot_softc *sc, int ev)
    225       1.1      haya {
    226      1.14      haya 	struct cardslot_event *ce;
    227       1.1      haya 
    228      1.14      haya 	DPRINTF(("cardslot_event_throw: an event %s comes\n",
    229      1.14      haya 	    ev == CARDSLOT_EVENT_INSERTION_CB ? "CardBus Card inserted" :
    230      1.14      haya 	    ev == CARDSLOT_EVENT_INSERTION_16 ? "16-bit Card inserted" :
    231      1.14      haya 	    ev == CARDSLOT_EVENT_REMOVAL_CB ? "CardBus Card removed" :
    232      1.14      haya 	    ev == CARDSLOT_EVENT_REMOVAL_16 ? "16-bit Card removed" : "???"));
    233       1.1      haya 
    234      1.14      haya 	if (NULL == (ce = (struct cardslot_event *)malloc(sizeof (struct cardslot_event), M_TEMP, M_NOWAIT))) {
    235      1.14      haya 		panic("cardslot_enevt");
    236      1.14      haya 	}
    237       1.1      haya 
    238      1.14      haya 	ce->ce_type = ev;
    239       1.1      haya 
    240      1.14      haya 	{
    241      1.14      haya 		int s = spltty();
    242      1.14      haya 		SIMPLEQ_INSERT_TAIL(&sc->sc_events, ce, ce_q);
    243      1.14      haya 		splx(s);
    244      1.14      haya 	}
    245       1.1      haya 
    246      1.14      haya 	wakeup(&sc->sc_events);
    247       1.1      haya 
    248      1.14      haya 	return;
    249       1.1      haya }
    250       1.1      haya 
    251       1.1      haya 
    252       1.1      haya /*
    253       1.1      haya  * static void cardslot_event_thread(void *arg)
    254       1.1      haya  *
    255       1.1      haya  *   This function is the main routine handing cardslot events such as
    256       1.1      haya  *   insertions and removals.
    257       1.1      haya  *
    258       1.1      haya  */
    259       1.1      haya static void
    260       1.1      haya cardslot_event_thread(arg)
    261      1.14      haya 	void *arg;
    262       1.1      haya {
    263      1.14      haya 	struct cardslot_softc *sc = arg;
    264      1.14      haya 	struct cardslot_event *ce;
    265      1.14      haya 	int s, first = 1;
    266      1.14      haya 	static int antonym_ev[4] = {
    267      1.14      haya 		CARDSLOT_EVENT_REMOVAL_16, CARDSLOT_EVENT_INSERTION_16,
    268      1.14      haya 		CARDSLOT_EVENT_REMOVAL_CB, CARDSLOT_EVENT_INSERTION_CB
    269      1.14      haya 	};
    270      1.14      haya 
    271      1.14      haya 	while (sc->sc_th_enable) {
    272      1.14      haya 		s = spltty();
    273      1.14      haya 		if ((ce = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
    274      1.14      haya 			splx(s);
    275      1.14      haya 			if (first) {
    276      1.14      haya 				first = 0;
    277      1.14      haya 				config_pending_decr();
    278      1.14      haya 			}
    279      1.14      haya 			(void) tsleep(&sc->sc_events, PWAIT, "cardslotev", 0);
    280      1.14      haya 			continue;
    281      1.14      haya 		}
    282      1.17     lukem 		SIMPLEQ_REMOVE_HEAD(&sc->sc_events, ce_q);
    283      1.14      haya 		splx(s);
    284      1.14      haya 
    285      1.14      haya 		if (IS_CARDSLOT_INSERT_REMOVE_EV(ce->ce_type)) {
    286      1.24       wiz 			/* Chattering suppression */
    287      1.14      haya 			s = spltty();
    288      1.14      haya 			while (1) {
    289      1.14      haya 				struct cardslot_event *ce1, *ce2;
    290      1.14      haya 
    291      1.14      haya 				if ((ce1 = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
    292      1.14      haya 					break;
    293      1.14      haya 				}
    294      1.14      haya 				if (ce1->ce_type != antonym_ev[ce->ce_type]) {
    295      1.14      haya 					break;
    296      1.14      haya 				}
    297      1.14      haya 				if ((ce2 = SIMPLEQ_NEXT(ce1, ce_q)) == NULL) {
    298      1.14      haya 					break;
    299      1.14      haya 				}
    300      1.14      haya 				if (ce2->ce_type == ce->ce_type) {
    301      1.17     lukem 					SIMPLEQ_REMOVE_HEAD(&sc->sc_events,
    302      1.17     lukem 					    ce_q);
    303      1.14      haya 					free(ce1, M_TEMP);
    304      1.17     lukem 					SIMPLEQ_REMOVE_HEAD(&sc->sc_events,
    305      1.17     lukem 					    ce_q);
    306      1.14      haya 					free(ce2, M_TEMP);
    307      1.14      haya 				}
    308      1.14      haya 			}
    309      1.14      haya 			splx(s);
    310      1.14      haya 		}
    311      1.14      haya 
    312      1.14      haya 		switch (ce->ce_type) {
    313      1.14      haya 		case CARDSLOT_EVENT_INSERTION_CB:
    314      1.14      haya 			if ((CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB)
    315      1.14      haya 			    || (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_16)) {
    316      1.14      haya 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    317      1.14      haya 					/*
    318      1.14      haya 					 * A card has already been
    319      1.14      haya 					 * inserted and works.
    320      1.14      haya 					 */
    321      1.14      haya 					break;
    322      1.14      haya 				}
    323      1.14      haya 			}
    324      1.14      haya 
    325      1.14      haya 			if (sc->sc_cb_softc) {
    326      1.14      haya 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    327      1.14      haya 				    CARDSLOT_STATUS_CARD_CB);
    328      1.14      haya 				if (cardbus_attach_card(sc->sc_cb_softc) > 0) {
    329      1.14      haya 					/* at least one function works */
    330      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status, CARDSLOT_STATUS_WORKING);
    331      1.14      haya 				} else {
    332      1.14      haya 					/*
    333      1.14      haya 					 * no functions work or this
    334      1.14      haya 					 * card is not known
    335      1.14      haya 					 */
    336      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status,
    337      1.14      haya 					    CARDSLOT_STATUS_NOTWORK);
    338      1.14      haya 				}
    339      1.14      haya 			} else {
    340      1.14      haya 				panic("no cardbus on %s", sc->sc_dev.dv_xname);
    341      1.14      haya 			}
    342      1.14      haya 
    343      1.14      haya 			break;
    344      1.14      haya 
    345      1.14      haya 		case CARDSLOT_EVENT_INSERTION_16:
    346      1.14      haya 			if ((CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB)
    347      1.14      haya 			    || (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_16)) {
    348      1.14      haya 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    349      1.14      haya 					/*
    350      1.14      haya 					 * A card has already been
    351      1.14      haya 					 * inserted and work.
    352      1.14      haya 					 */
    353      1.14      haya 					break;
    354      1.14      haya 				}
    355      1.14      haya 			}
    356      1.14      haya 			if (sc->sc_16_softc) {
    357      1.14      haya 				CARDSLOT_SET_CARDTYPE(sc->sc_status, CARDSLOT_STATUS_CARD_16);
    358      1.14      haya 				if (pcmcia_card_attach((struct device *)sc->sc_16_softc)) {
    359      1.14      haya 					/* Do not attach */
    360      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status,
    361      1.14      haya 					    CARDSLOT_STATUS_NOTWORK);
    362      1.14      haya 				} else {
    363      1.14      haya 					/* working */
    364      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status,
    365      1.14      haya 					    CARDSLOT_STATUS_WORKING);
    366      1.14      haya 				}
    367      1.14      haya 			} else {
    368      1.14      haya 				panic("no 16-bit pcmcia on %s", sc->sc_dev.dv_xname);
    369      1.14      haya 			}
    370      1.14      haya 
    371      1.14      haya 			break;
    372      1.14      haya 
    373      1.14      haya 		case CARDSLOT_EVENT_REMOVAL_CB:
    374      1.14      haya 			if (CARDSLOT_CARDTYPE(sc->sc_status) == CARDSLOT_STATUS_CARD_CB) {
    375      1.14      haya 				/* CardBus card has not been inserted. */
    376      1.14      haya 				if (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING) {
    377      1.14      haya 					cardbus_detach_card(sc->sc_cb_softc);
    378      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status,
    379      1.14      haya 					    CARDSLOT_STATUS_NOTWORK);
    380      1.14      haya 					CARDSLOT_SET_WORK(sc->sc_status,
    381      1.14      haya 					    CARDSLOT_STATUS_CARD_NONE);
    382      1.14      haya 				}
    383      1.14      haya 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    384      1.14      haya 				    CARDSLOT_STATUS_CARD_NONE);
    385      1.14      haya 			} else if (CARDSLOT_CARDTYPE(sc->sc_status) != CARDSLOT_STATUS_CARD_16) {
    386      1.14      haya 				/* Unknown card... */
    387      1.14      haya 				CARDSLOT_SET_CARDTYPE(sc->sc_status,
    388      1.14      haya 				    CARDSLOT_STATUS_CARD_NONE);
    389      1.14      haya 			}
    390      1.14      haya 			CARDSLOT_SET_WORK(sc->sc_status,
    391      1.14      haya 			    CARDSLOT_STATUS_NOTWORK);
    392      1.14      haya 			break;
    393      1.14      haya 
    394      1.14      haya 		case CARDSLOT_EVENT_REMOVAL_16:
    395      1.14      haya 			DPRINTF(("%s: removal event\n", sc->sc_dev.dv_xname));
    396      1.14      haya 			if (CARDSLOT_CARDTYPE(sc->sc_status) != CARDSLOT_STATUS_CARD_16) {
    397      1.14      haya 				/* 16-bit card has not been inserted. */
    398      1.14      haya 				break;
    399      1.14      haya 			}
    400      1.14      haya 			if ((sc->sc_16_softc != NULL)
    401      1.14      haya 			    && (CARDSLOT_WORK(sc->sc_status) == CARDSLOT_STATUS_WORKING)) {
    402      1.14      haya 				struct pcmcia_softc *psc = sc->sc_16_softc;
    403      1.14      haya 
    404      1.14      haya 				pcmcia_card_deactivate((struct device *)psc);
    405      1.14      haya 				pcmcia_chip_socket_disable(psc->pct, psc->pch);
    406      1.14      haya 				pcmcia_card_detach((struct device *)psc, DETACH_FORCE);
    407      1.14      haya 			}
    408      1.14      haya 			CARDSLOT_SET_CARDTYPE(sc->sc_status, CARDSLOT_STATUS_CARD_NONE);
    409      1.14      haya 			CARDSLOT_SET_WORK(sc->sc_status, CARDSLOT_STATUS_NOTWORK);
    410      1.14      haya 			break;
    411      1.14      haya 
    412      1.14      haya 		default:
    413      1.14      haya 			panic("cardslot_event_thread: unknown event %d", ce->ce_type);
    414      1.14      haya 		}
    415      1.14      haya 		free(ce, M_TEMP);
    416      1.14      haya 	}
    417       1.1      haya 
    418      1.14      haya 	sc->sc_event_thread = NULL;
    419       1.1      haya 
    420      1.14      haya 	/* In case the parent device is waiting for us to exit. */
    421      1.14      haya 	wakeup(sc);
    422       1.1      haya 
    423      1.14      haya 	kthread_exit(0);
    424       1.1      haya }
    425