Home | History | Annotate | Line # | Download | only in scsipi
atapiconf.c revision 1.57.2.1
      1  1.57.2.1     skrll /*	$NetBSD: atapiconf.c,v 1.57.2.1 2004/08/03 10:51:12 skrll Exp $	*/
      2       1.2    bouyer 
      3       1.2    bouyer /*
      4      1.46    bouyer  * Copyright (c) 1996, 2001 Manuel Bouyer.  All rights reserved.
      5       1.2    bouyer  *
      6       1.2    bouyer  * Redistribution and use in source and binary forms, with or without
      7       1.2    bouyer  * modification, are permitted provided that the following conditions
      8       1.2    bouyer  * are met:
      9       1.2    bouyer  * 1. Redistributions of source code must retain the above copyright
     10       1.2    bouyer  *    notice, this list of conditions and the following disclaimer.
     11       1.2    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.2    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13       1.2    bouyer  *    documentation and/or other materials provided with the distribution.
     14       1.2    bouyer  * 3. All advertising materials mentioning features or use of this software
     15       1.2    bouyer  *    must display the following acknowledgement:
     16       1.2    bouyer  *	This product includes software developed by Manuel Bouyer.
     17       1.2    bouyer  * 4. The name of the author may not be used to endorse or promote products
     18       1.2    bouyer  *    derived from this software without specific prior written permission.
     19       1.2    bouyer  *
     20       1.2    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21       1.2    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22       1.2    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23       1.2    bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24       1.2    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25       1.2    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26       1.2    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27       1.2    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28       1.2    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29       1.2    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30       1.2    bouyer  */
     31      1.42     lukem 
     32      1.42     lukem #include <sys/cdefs.h>
     33  1.57.2.1     skrll __KERNEL_RCSID(0, "$NetBSD: atapiconf.c,v 1.57.2.1 2004/08/03 10:51:12 skrll Exp $");
     34       1.2    bouyer 
     35       1.2    bouyer #include <sys/param.h>
     36       1.2    bouyer #include <sys/systm.h>
     37       1.2    bouyer #include <sys/malloc.h>
     38       1.2    bouyer #include <sys/device.h>
     39       1.2    bouyer #include <sys/buf.h>
     40       1.4     enami #include <sys/proc.h>
     41      1.39    bouyer #include <sys/kthread.h>
     42       1.2    bouyer 
     43       1.2    bouyer #include <dev/scsipi/scsipi_all.h>
     44      1.39    bouyer #include <dev/scsipi/scsipiconf.h>
     45       1.2    bouyer #include <dev/scsipi/atapiconf.h>
     46       1.4     enami 
     47       1.2    bouyer #include "locators.h"
     48       1.2    bouyer 
     49       1.2    bouyer #define SILENT_PRINTF(flags,string) if (!(flags & A_SILENT)) printf string
     50      1.27     enami #define MAX_TARGET 1
     51       1.2    bouyer 
     52      1.39    bouyer const struct scsipi_periphsw atapi_probe_periphsw = {
     53      1.39    bouyer 	NULL,
     54      1.39    bouyer 	NULL,
     55      1.39    bouyer 	NULL,
     56      1.39    bouyer 	NULL,
     57      1.39    bouyer };
     58      1.39    bouyer 
     59       1.2    bouyer int	atapibusmatch __P((struct device *, struct cfdata *, void *));
     60       1.2    bouyer void	atapibusattach __P((struct device *, struct device *, void *));
     61      1.27     enami int	atapibusactivate __P((struct device *, enum devact));
     62      1.27     enami int	atapibusdetach __P((struct device *, int flags));
     63       1.2    bouyer 
     64      1.39    bouyer int	atapibussubmatch __P((struct device *, struct cfdata *, void *));
     65      1.39    bouyer 
     66      1.39    bouyer int	atapi_probe_bus __P((struct atapibus_softc *, int));
     67       1.2    bouyer 
     68      1.52   thorpej CFATTACH_DECL(atapibus, sizeof(struct atapibus_softc),
     69      1.53   thorpej     atapibusmatch, atapibusattach, atapibusdetach, atapibusactivate);
     70       1.2    bouyer 
     71       1.8   thorpej extern struct cfdriver atapibus_cd;
     72       1.2    bouyer 
     73       1.2    bouyer int atapibusprint __P((void *, const char *));
     74       1.2    bouyer 
     75      1.36  jdolecek const struct scsi_quirk_inquiry_pattern atapi_quirk_patterns[] = {
     76       1.2    bouyer 	{{T_CDROM, T_REMOV,
     77      1.39    bouyer 	 "ALPS ELECTRIC CO.,LTD. DC544C", "", "SW03D"},	PQUIRK_NOTUR},
     78       1.2    bouyer 	{{T_CDROM, T_REMOV,
     79      1.39    bouyer 	 "CR-2801TE", "", "1.07"},		PQUIRK_NOSENSE},
     80      1.23    bouyer 	{{T_CDROM, T_REMOV,
     81      1.39    bouyer 	 "CREATIVECD3630E", "", "AC101"},	PQUIRK_NOSENSE},
     82       1.2    bouyer 	{{T_CDROM, T_REMOV,
     83      1.39    bouyer 	 "FX320S", "", "q01"},			PQUIRK_NOSENSE},
     84      1.21    bouyer 	{{T_CDROM, T_REMOV,
     85      1.39    bouyer 	 "GCD-R580B", "", "1.00"},		PQUIRK_LITTLETOC},
     86      1.31  jdolecek 	{{T_CDROM, T_REMOV,
     87      1.39    bouyer 	 "HITACHI CDR-7730", "", "0008a"},      PQUIRK_NOSENSE},
     88      1.24    bouyer 	{{T_CDROM, T_REMOV,
     89      1.39    bouyer 	 "MATSHITA CR-574", "", "1.02"},	PQUIRK_NOCAPACITY},
     90       1.3    bouyer 	{{T_CDROM, T_REMOV,
     91      1.39    bouyer 	 "MATSHITA CR-574", "", "1.06"},	PQUIRK_NOCAPACITY},
     92       1.7    bouyer 	{{T_CDROM, T_REMOV,
     93      1.39    bouyer 	 "Memorex CRW-2642", "", "1.0g"},	PQUIRK_NOSENSE},
     94       1.7    bouyer 	{{T_CDROM, T_REMOV,
     95      1.39    bouyer 	 "NEC                 CD-ROM DRIVE:273", "", "4.21"}, PQUIRK_NOTUR},
     96       1.2    bouyer 	{{T_CDROM, T_REMOV,
     97      1.39    bouyer 	 "SANYO CRD-256P", "", "1.02"},		PQUIRK_NOCAPACITY},
     98       1.2    bouyer 	{{T_CDROM, T_REMOV,
     99      1.39    bouyer 	 "SANYO CRD-254P", "", "1.02"},		PQUIRK_NOCAPACITY},
    100       1.3    bouyer 	{{T_CDROM, T_REMOV,
    101      1.39    bouyer 	 "SANYO CRD-S54P", "", "1.08"},		PQUIRK_NOCAPACITY},
    102       1.5    bouyer 	{{T_CDROM, T_REMOV,
    103      1.39    bouyer 	 "CD-ROM  CDR-S1", "", "1.70"},		PQUIRK_NOCAPACITY}, /* Sanyo */
    104      1.18    bouyer 	{{T_CDROM, T_REMOV,
    105      1.39    bouyer 	 "CD-ROM  CDR-N16", "", "1.25"},	PQUIRK_NOCAPACITY}, /* Sanyo */
    106       1.2    bouyer };
    107       1.2    bouyer 
    108       1.2    bouyer int
    109      1.44    bouyer atapiprint(aux, pnp)
    110      1.44    bouyer 	void *aux;
    111      1.44    bouyer 	const char *pnp;
    112      1.44    bouyer {
    113      1.44    bouyer 	if (pnp)
    114      1.55   thorpej 		aprint_normal("atapibus at %s", pnp);
    115      1.44    bouyer 	return (UNCONF);
    116      1.44    bouyer }
    117      1.44    bouyer 
    118      1.44    bouyer int
    119       1.2    bouyer atapibusmatch(parent, cf, aux)
    120       1.2    bouyer 	struct device *parent;
    121       1.2    bouyer 	struct cfdata *cf;
    122       1.2    bouyer 	void *aux;
    123       1.2    bouyer {
    124      1.44    bouyer 	struct scsipi_channel *chan = aux;
    125       1.2    bouyer 
    126      1.44    bouyer 	if (chan == NULL)
    127       1.4     enami 		return (0);
    128      1.39    bouyer 
    129      1.44    bouyer 	if (chan->chan_bustype->bustype_type != SCSIPI_BUSTYPE_ATAPI)
    130       1.4     enami 		return (0);
    131      1.39    bouyer 
    132       1.4     enami 	return (1);
    133       1.2    bouyer }
    134       1.2    bouyer 
    135       1.2    bouyer int
    136       1.2    bouyer atapibussubmatch(parent, cf, aux)
    137       1.2    bouyer 	struct device *parent;
    138       1.2    bouyer 	struct cfdata *cf;
    139       1.2    bouyer 	void *aux;
    140       1.2    bouyer {
    141       1.2    bouyer 	struct scsipibus_attach_args *sa = aux;
    142      1.39    bouyer 	struct scsipi_periph *periph = sa->sa_periph;
    143       1.2    bouyer 
    144       1.2    bouyer 	if (cf->cf_loc[ATAPIBUSCF_DRIVE] != ATAPIBUSCF_DRIVE_DEFAULT &&
    145      1.39    bouyer 	    cf->cf_loc[ATAPIBUSCF_DRIVE] != periph->periph_target)
    146       1.4     enami 		return (0);
    147      1.50   thorpej 	return (config_match(parent, cf, aux));
    148       1.2    bouyer }
    149       1.2    bouyer 
    150       1.2    bouyer void
    151       1.2    bouyer atapibusattach(parent, self, aux)
    152       1.4     enami 	struct device *parent, *self;
    153       1.4     enami 	void *aux;
    154       1.2    bouyer {
    155      1.39    bouyer 	struct atapibus_softc *sc = (void *) self;
    156      1.44    bouyer 	struct scsipi_channel *chan = aux;
    157      1.39    bouyer 
    158      1.39    bouyer 	sc->sc_channel = chan;
    159      1.48    bouyer 
    160      1.48    bouyer 	chan->chan_name = sc->sc_dev.dv_xname;
    161      1.39    bouyer 
    162      1.39    bouyer 	/* ATAPI has no LUNs. */
    163      1.39    bouyer 	chan->chan_nluns = 1;
    164      1.39    bouyer 	printf(": %d targets\n", chan->chan_ntargets);
    165      1.39    bouyer 
    166      1.39    bouyer 	/* Initialize the channel. */
    167      1.49       jmc 	chan->chan_init_cb = NULL;
    168      1.49       jmc 	chan->chan_init_cb_arg = NULL;
    169      1.39    bouyer 	scsipi_channel_init(chan);
    170      1.39    bouyer 
    171      1.39    bouyer 	/* Probe the bus for devices. */
    172      1.39    bouyer 	atapi_probe_bus(sc, -1);
    173      1.27     enami }
    174      1.27     enami 
    175      1.27     enami int
    176      1.27     enami atapibusactivate(self, act)
    177      1.27     enami 	struct device *self;
    178      1.27     enami 	enum devact act;
    179      1.27     enami {
    180      1.39    bouyer 	struct atapibus_softc *sc = (void *) self;
    181      1.39    bouyer 	struct scsipi_channel *chan = sc->sc_channel;
    182      1.39    bouyer 	struct scsipi_periph *periph;
    183      1.27     enami 	int target, error = 0, s;
    184      1.27     enami 
    185      1.27     enami 	s = splbio();
    186      1.27     enami 	switch (act) {
    187      1.27     enami 	case DVACT_ACTIVATE:
    188      1.27     enami 		error = EOPNOTSUPP;
    189      1.27     enami 		break;
    190      1.27     enami 
    191      1.27     enami 	case DVACT_DEACTIVATE:
    192      1.39    bouyer 		for (target = 0; target < chan->chan_ntargets; target++) {
    193      1.39    bouyer 			periph = scsipi_lookup_periph(chan, target, 0);
    194      1.39    bouyer 			if (periph == NULL)
    195      1.27     enami 				continue;
    196      1.39    bouyer 			error = config_deactivate(periph->periph_dev);
    197      1.39    bouyer 			if (error)
    198      1.27     enami 				goto out;
    199      1.27     enami 		}
    200      1.27     enami 		break;
    201      1.27     enami 	}
    202      1.27     enami  out:
    203      1.27     enami 	splx(s);
    204      1.27     enami 	return (error);
    205      1.27     enami }
    206      1.27     enami 
    207      1.27     enami int
    208      1.27     enami atapibusdetach(self, flags)
    209      1.27     enami 	struct device *self;
    210      1.27     enami 	int flags;
    211      1.27     enami {
    212      1.39    bouyer 	struct atapibus_softc *sc = (void *)self;
    213      1.39    bouyer 	struct scsipi_channel *chan = sc->sc_channel;
    214      1.39    bouyer 	struct scsipi_periph *periph;
    215      1.27     enami 	int target, error;
    216      1.27     enami 
    217      1.39    bouyer 	/*
    218      1.39    bouyer 	 * Shut down the channel.
    219      1.39    bouyer 	 */
    220      1.39    bouyer 	scsipi_channel_shutdown(chan);
    221      1.39    bouyer 
    222      1.39    bouyer 	/*
    223      1.39    bouyer 	 * Now detach all of the periphs.
    224      1.39    bouyer 	 */
    225      1.39    bouyer 	for (target = 0; target < chan->chan_ntargets; target++) {
    226      1.39    bouyer 		periph = scsipi_lookup_periph(chan, target, 0);
    227      1.39    bouyer 		if (periph == NULL)
    228      1.27     enami 			continue;
    229      1.39    bouyer 		error = config_detach(periph->periph_dev, flags);
    230      1.39    bouyer 		if (error)
    231      1.27     enami 			return (error);
    232      1.27     enami 
    233      1.39    bouyer 		scsipi_remove_periph(chan, periph);
    234      1.39    bouyer 		free(periph, M_DEVBUF);
    235      1.27     enami 	}
    236      1.27     enami 	return (0);
    237       1.2    bouyer }
    238       1.2    bouyer 
    239       1.4     enami int
    240      1.39    bouyer atapi_probe_bus(sc, target)
    241      1.39    bouyer 	struct atapibus_softc *sc;
    242      1.39    bouyer 	int target;
    243       1.2    bouyer {
    244      1.39    bouyer 	struct scsipi_channel *chan = sc->sc_channel;
    245       1.2    bouyer 	int maxtarget, mintarget;
    246      1.15   thorpej 	int error;
    247      1.34    bouyer 	struct atapi_adapter *atapi_adapter;
    248       1.4     enami 
    249       1.2    bouyer 	if (target == -1) {
    250       1.2    bouyer 		maxtarget = 1;
    251       1.2    bouyer 		mintarget = 0;
    252       1.2    bouyer 	} else {
    253      1.39    bouyer 		if (target < 0 || target >= chan->chan_ntargets)
    254       1.4     enami 			return (ENXIO);
    255       1.2    bouyer 		maxtarget = mintarget = target;
    256       1.2    bouyer 	}
    257      1.39    bouyer 
    258      1.39    bouyer 	if ((error = scsipi_adapter_addref(chan->chan_adapter)) != 0)
    259      1.15   thorpej 		return (error);
    260      1.39    bouyer 	atapi_adapter = (struct atapi_adapter*)chan->chan_adapter;
    261       1.4     enami 	for (target = mintarget; target <= maxtarget; target++)
    262      1.39    bouyer 		atapi_adapter->atapi_probe_device(sc, target);
    263      1.39    bouyer 	scsipi_adapter_delref(chan->chan_adapter);
    264       1.4     enami 	return (0);
    265       1.2    bouyer }
    266       1.2    bouyer 
    267      1.34    bouyer void *
    268      1.39    bouyer atapi_probe_device(sc, target, periph, sa)
    269      1.39    bouyer 	struct atapibus_softc *sc;
    270       1.2    bouyer 	int target;
    271      1.39    bouyer 	struct scsipi_periph *periph;
    272      1.34    bouyer 	struct scsipibus_attach_args *sa;
    273       1.2    bouyer {
    274      1.39    bouyer 	struct scsipi_channel *chan = sc->sc_channel;
    275      1.39    bouyer 	struct scsi_quirk_inquiry_pattern *finger;
    276       1.2    bouyer 	struct cfdata *cf;
    277      1.39    bouyer 	int priority, quirks;
    278       1.2    bouyer 
    279      1.34    bouyer 	finger = (struct scsi_quirk_inquiry_pattern *)scsipi_inqmatch(
    280      1.34    bouyer 	    &sa->sa_inqbuf, (caddr_t)atapi_quirk_patterns,
    281      1.34    bouyer 	    sizeof(atapi_quirk_patterns) /
    282      1.34    bouyer 	        sizeof(atapi_quirk_patterns[0]),
    283      1.34    bouyer 	    sizeof(atapi_quirk_patterns[0]), &priority);
    284      1.34    bouyer 
    285      1.39    bouyer 	if (finger != NULL)
    286      1.39    bouyer 		quirks = finger->quirks;
    287      1.39    bouyer 	else
    288      1.39    bouyer 		quirks = 0;
    289      1.39    bouyer 
    290      1.39    bouyer 	/*
    291      1.39    bouyer 	 * Now apply any quirks from the table.
    292      1.39    bouyer 	 */
    293      1.39    bouyer 	periph->periph_quirks |= quirks;
    294      1.39    bouyer 
    295      1.39    bouyer 	if ((cf = config_search(atapibussubmatch, &sc->sc_dev,
    296      1.34    bouyer 	    sa)) != 0) {
    297      1.39    bouyer 		scsipi_insert_periph(chan, periph);
    298      1.39    bouyer 		/*
    299      1.39    bouyer 		 * XXX Can't assign periph_dev here, because we'll
    300      1.39    bouyer 		 * XXX need it before config_attach() returns.  Must
    301      1.39    bouyer 		 * XXX assign it in periph driver.
    302      1.39    bouyer 		 */
    303      1.39    bouyer 		return config_attach(&sc->sc_dev, cf, sa,
    304      1.39    bouyer 		    atapibusprint);
    305      1.34    bouyer 	} else {
    306      1.41     enami 		atapibusprint(sa, sc->sc_dev.dv_xname);
    307      1.34    bouyer 		printf(" not configured\n");
    308      1.39    bouyer 		free(periph, M_DEVBUF);
    309      1.39    bouyer 		return NULL;
    310       1.2    bouyer 	}
    311       1.2    bouyer }
    312       1.2    bouyer 
    313       1.2    bouyer int
    314       1.2    bouyer atapibusprint(aux, pnp)
    315       1.2    bouyer 	void *aux;
    316       1.2    bouyer 	const char *pnp;
    317       1.2    bouyer {
    318       1.2    bouyer 	struct scsipibus_attach_args *sa = aux;
    319       1.2    bouyer 	struct scsipi_inquiry_pattern *inqbuf;
    320       1.2    bouyer 	char *dtype;
    321       1.2    bouyer 
    322       1.2    bouyer 	if (pnp != NULL)
    323      1.55   thorpej 		aprint_normal("%s", pnp);
    324       1.2    bouyer 
    325       1.2    bouyer 	inqbuf = &sa->sa_inqbuf;
    326       1.2    bouyer 
    327       1.2    bouyer 	dtype = scsipi_dtype(inqbuf->type & SID_TYPE);
    328      1.55   thorpej 	aprint_normal(" drive %d: <%s, %s, %s> %s %s",
    329      1.54     soren 	    sa->sa_periph->periph_target, inqbuf->vendor,
    330      1.54     soren 	    inqbuf->product, inqbuf->revision, dtype,
    331       1.2    bouyer 	    inqbuf->removable ? "removable" : "fixed");
    332       1.2    bouyer 	return (UNCONF);
    333       1.2    bouyer }
    334