1184610Salfred/* $FreeBSD$ */
2184610Salfred/*-
3184610Salfred * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4184610Salfred *
5184610Salfred * Redistribution and use in source and binary forms, with or without
6184610Salfred * modification, are permitted provided that the following conditions
7184610Salfred * are met:
8184610Salfred * 1. Redistributions of source code must retain the above copyright
9184610Salfred *    notice, this list of conditions and the following disclaimer.
10184610Salfred * 2. Redistributions in binary form must reproduce the above copyright
11184610Salfred *    notice, this list of conditions and the following disclaimer in the
12184610Salfred *    documentation and/or other materials provided with the distribution.
13184610Salfred *
14184610Salfred * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15184610Salfred * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16184610Salfred * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17184610Salfred * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18184610Salfred * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19184610Salfred * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20184610Salfred * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21184610Salfred * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22184610Salfred * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23184610Salfred * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24184610Salfred * SUCH DAMAGE.
25184610Salfred */
26184610Salfred
27194230Sthompsa#ifndef _USB_MSCTEST_H_
28194230Sthompsa#define	_USB_MSCTEST_H_
29184610Salfred
30201681Sthompsaenum {
31201681Sthompsa	MSC_EJECT_STOPUNIT,
32201681Sthompsa	MSC_EJECT_REZERO,
33201681Sthompsa	MSC_EJECT_ZTESTOR,
34203905Sthompsa	MSC_EJECT_CMOTECH,
35203905Sthompsa	MSC_EJECT_HUAWEI,
36213480Sglebius	MSC_EJECT_TCT,
37201681Sthompsa};
38184610Salfred
39201681Sthompsaint usb_iface_is_cdrom(struct usb_device *udev,
40201681Sthompsa	    uint8_t iface_index);
41201681Sthompsausb_error_t usb_msc_eject(struct usb_device *udev,
42201681Sthompsa	    uint8_t iface_index, int method);
43225350Shselaskyusb_error_t usb_msc_auto_quirk(struct usb_device *udev,
44225350Shselasky	    uint8_t iface_index);
45201681Sthompsa
46194230Sthompsa#endif					/* _USB_MSCTEST_H_ */
47