Home | History | Annotate | Line # | Download | only in usb
umass_quirks.c revision 1.56
      1 /*	$NetBSD: umass_quirks.c,v 1.56 2003/09/17 07:49:11 mycroft Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by MAEKAWA Masahide (gehenna (at) NetBSD.org).
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	  This product includes software developed by the NetBSD
     21  *	  Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include <sys/cdefs.h>
     40 __KERNEL_RCSID(0, "$NetBSD: umass_quirks.c,v 1.56 2003/09/17 07:49:11 mycroft Exp $");
     41 
     42 #include <sys/param.h>
     43 #include <sys/systm.h>
     44 #include <sys/device.h>
     45 #include <sys/buf.h>
     46 
     47 #include <dev/scsipi/scsipi_all.h> /* for scsiconf.h below */
     48 #include <dev/scsipi/scsiconf.h> /* for quirks defines */
     49 
     50 #include <dev/usb/usb.h>
     51 #include <dev/usb/usbdi.h>
     52 #include <dev/usb/usbdevs.h>
     53 
     54 #include <dev/usb/umassvar.h>
     55 #include <dev/usb/umass_quirks.h>
     56 
     57 Static usbd_status umass_init_insystem(struct umass_softc *);
     58 Static usbd_status umass_init_shuttle(struct umass_softc *);
     59 
     60 Static void umass_fixup_sony(struct umass_softc *);
     61 
     62 Static const struct umass_quirk umass_quirks[] = {
     63 	{ { USB_VENDOR_FUJIPHOTO, USB_PRODUCT_FUJIPHOTO_MASS0100 },
     64 	  UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC,
     65 	  0,
     66 	  PQUIRK_NOSENSE,
     67 	  UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO,
     68 	  NULL, NULL
     69 	},
     70 
     71 	{ { USB_VENDOR_INSYSTEM, USB_PRODUCT_INSYSTEM_USBCABLE },
     72 	  UMASS_WPROTO_CBI, UMASS_CPROTO_ATAPI,
     73 	  0,
     74 	  0,
     75 	  UMATCH_VENDOR_PRODUCT,
     76 	  umass_init_insystem, NULL
     77 	},
     78 
     79 	{ { USB_VENDOR_OLYMPUS, USB_PRODUCT_OLYMPUS_C1 },
     80 	  UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC,
     81 	  UMASS_QUIRK_WRONG_CSWSIG,
     82 	  0,
     83 	  UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO,
     84 	  NULL, NULL
     85 	},
     86 
     87 	{ { USB_VENDOR_SCANLOGIC, USB_PRODUCT_SCANLOGIC_SL11R },
     88 	  UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UFI,
     89 	  UMASS_QUIRK_WRONG_CSWTAG,
     90 	  0,
     91 	  UMATCH_VENDOR_PRODUCT,
     92 	  NULL, NULL
     93 	},
     94 
     95 	{ { USB_VENDOR_SHUTTLE, USB_PRODUCT_SHUTTLE_EUSB },
     96 	  UMASS_WPROTO_CBI_I, UMASS_CPROTO_ATAPI,
     97 	  0,
     98 	  0,
     99 	  UMATCH_VENDOR_PRODUCT,
    100 	  umass_init_shuttle, NULL
    101 	},
    102 
    103 	{ { USB_VENDOR_SONY, USB_PRODUCT_SONY_DSC },
    104 	  UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC,
    105 	  0,
    106 	  0,
    107 	  UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO,
    108 	  NULL, umass_fixup_sony
    109 	},
    110 
    111 	{ { USB_VENDOR_YANO, USB_PRODUCT_YANO_U640MO },
    112 	  UMASS_WPROTO_CBI_I, UMASS_CPROTO_ATAPI,
    113 	  0,
    114 	  0,
    115 	  UMATCH_VENDOR_PRODUCT,
    116 	  NULL, NULL
    117 	},
    118 };
    119 
    120 const struct umass_quirk *
    121 umass_lookup(u_int16_t vendor, u_int16_t product)
    122 {
    123 	return ((const struct umass_quirk *)
    124 		usb_lookup(umass_quirks, vendor, product));
    125 }
    126 
    127 Static usbd_status
    128 umass_init_insystem(struct umass_softc *sc)
    129 {
    130 	usbd_status err;
    131 
    132 	err = usbd_set_interface(sc->sc_iface, 1);
    133 	if (err) {
    134 		DPRINTF(UDMASS_USB,
    135 			("%s: could not switch to Alt Interface 1\n",
    136 			USBDEVNAME(sc->sc_dev)));
    137 		return (err);
    138 	}
    139 
    140 	return (USBD_NORMAL_COMPLETION);
    141 }
    142 
    143 Static usbd_status
    144 umass_init_shuttle(struct umass_softc *sc)
    145 {
    146 	usb_device_request_t req;
    147 	u_int8_t status[2];
    148 
    149 	/* The Linux driver does this */
    150 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
    151 	req.bRequest = 1;
    152 	USETW(req.wValue, 0);
    153 	USETW(req.wIndex, sc->sc_ifaceno);
    154 	USETW(req.wLength, sizeof(status));
    155 
    156 	return (usbd_do_request(sc->sc_udev, &req, &status));
    157 }
    158 
    159 Static void
    160 umass_fixup_sony(struct umass_softc *sc)
    161 {
    162 	usb_interface_descriptor_t *id;
    163 
    164 	id = usbd_get_interface_descriptor(sc->sc_iface);
    165 	if (id->bInterfaceSubClass == 0xff)
    166 		sc->sc_cmd = UMASS_CPROTO_SCSI;
    167 }
    168