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,
36269576Sn_hibma	MSC_EJECT_HUAWEI2,
37213480Sglebius	MSC_EJECT_TCT,
38201681Sthompsa};
39184610Salfred
40201681Sthompsaint usb_iface_is_cdrom(struct usb_device *udev,
41201681Sthompsa	    uint8_t iface_index);
42201681Sthompsausb_error_t usb_msc_eject(struct usb_device *udev,
43201681Sthompsa	    uint8_t iface_index, int method);
44225350Shselaskyusb_error_t usb_msc_auto_quirk(struct usb_device *udev,
45225350Shselasky	    uint8_t iface_index);
46266873Shselaskyusb_error_t usb_msc_read_10(struct usb_device *udev,
47266873Shselasky	    uint8_t iface_index, uint32_t lba, uint32_t blocks,
48266873Shselasky	    void *buffer);
49266873Shselaskyusb_error_t usb_msc_write_10(struct usb_device *udev,
50266873Shselasky	    uint8_t iface_index, uint32_t lba, uint32_t blocks,
51266873Shselasky	    void *buffer);
52266873Shselaskyusb_error_t usb_msc_read_capacity(struct usb_device *udev,
53266873Shselasky	    uint8_t iface_index, uint32_t *lba_last,
54266873Shselasky	    uint32_t *block_size);
55282577Shselaskyusb_error_t usb_dymo_eject(struct usb_device *udev,
56282577Shselasky	    uint8_t iface_index);
57201681Sthompsa
58194230Sthompsa#endif					/* _USB_MSCTEST_H_ */
59