Home | History | Annotate | Line # | Download | only in usb
umass_quirks.h revision 1.3.122.1
      1  1.3.122.1      yamt /*	$NetBSD: umass_quirks.h,v 1.3.122.1 2008/05/18 12:34:51 yamt Exp $	*/
      2        1.1   gehenna 
      3        1.1   gehenna /*
      4        1.1   gehenna  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5        1.1   gehenna  * All rights reserved.
      6        1.1   gehenna  *
      7        1.1   gehenna  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1   gehenna  * by MAEKAWA Masahide (gehenna (at) NetBSD.org).
      9        1.1   gehenna  *
     10        1.1   gehenna  * Redistribution and use in source and binary forms, with or without
     11        1.1   gehenna  * modification, are permitted provided that the following conditions
     12        1.1   gehenna  * are met:
     13        1.1   gehenna  * 1. Redistributions of source code must retain the above copyright
     14        1.1   gehenna  *    notice, this list of conditions and the following disclaimer.
     15        1.1   gehenna  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1   gehenna  *    notice, this list of conditions and the following disclaimer in the
     17        1.1   gehenna  *    documentation and/or other materials provided with the distribution.
     18        1.1   gehenna  *
     19        1.1   gehenna  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.1   gehenna  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.1   gehenna  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.1   gehenna  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.1   gehenna  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.1   gehenna  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.1   gehenna  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.1   gehenna  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.1   gehenna  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.1   gehenna  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.1   gehenna  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1   gehenna  */
     31        1.1   gehenna 
     32        1.1   gehenna 
     33        1.1   gehenna #ifndef _DEV_USB_UMASS_QUIRKS_H_
     34        1.1   gehenna #define _DEV_USB_UMASS_QUIRKS_H_
     35        1.1   gehenna 
     36        1.1   gehenna typedef usbd_status (*umass_init_quirk)(struct umass_softc *);
     37        1.1   gehenna typedef void (*umass_fixup_quirk)(struct umass_softc *);
     38        1.1   gehenna 
     39        1.1   gehenna struct umass_quirk {
     40        1.1   gehenna 	struct usb_devno	uq_dev;
     41        1.1   gehenna 
     42        1.1   gehenna 	u_int8_t		uq_wire;
     43        1.1   gehenna 	u_int8_t		uq_cmd;
     44        1.1   gehenna 	u_int32_t		uq_flags;
     45        1.3  augustss 	u_int32_t		uq_busquirks;
     46        1.1   gehenna 	int			uq_match;
     47        1.1   gehenna 
     48        1.1   gehenna 	umass_init_quirk	uq_init;
     49        1.1   gehenna 	umass_fixup_quirk	uq_fixup;
     50        1.1   gehenna };
     51        1.1   gehenna 
     52        1.1   gehenna const struct umass_quirk *umass_lookup(u_int16_t, u_int16_t);
     53        1.1   gehenna 
     54        1.1   gehenna #endif /* _DEV_USB_UMASS_QUIRKS_H_ */
     55