xref: /freebsd/sys/dev/usb/controller/generic_xhci.h (revision 71625ec9ad2a9bc8c09784fbd23b759830e0ee5f)
1052073c3SEmmanuel Vadot 
2052073c3SEmmanuel Vadot /*-
3*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
4052073c3SEmmanuel Vadot  *
5052073c3SEmmanuel Vadot  * Copyright (c) 2015 Semihalf.
6052073c3SEmmanuel Vadot  * Copyright (c) 2015 Stormshield.
7052073c3SEmmanuel Vadot  * All rights reserved.
8052073c3SEmmanuel Vadot  *
9052073c3SEmmanuel Vadot  * Redistribution and use in source and binary forms, with or without
10052073c3SEmmanuel Vadot  * modification, are permitted provided that the following conditions
11052073c3SEmmanuel Vadot  * are met:
12052073c3SEmmanuel Vadot  * 1. Redistributions of source code must retain the above copyright
13052073c3SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer.
14052073c3SEmmanuel Vadot  * 2. Redistributions in binary form must reproduce the above copyright
15052073c3SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer in the
16052073c3SEmmanuel Vadot  *    documentation and/or other materials provided with the distribution.
17052073c3SEmmanuel Vadot  *
18052073c3SEmmanuel Vadot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19052073c3SEmmanuel Vadot  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20052073c3SEmmanuel Vadot  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21052073c3SEmmanuel Vadot  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22052073c3SEmmanuel Vadot  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23052073c3SEmmanuel Vadot  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24052073c3SEmmanuel Vadot  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25052073c3SEmmanuel Vadot  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26052073c3SEmmanuel Vadot  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27052073c3SEmmanuel Vadot  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28052073c3SEmmanuel Vadot  * SUCH DAMAGE.
29052073c3SEmmanuel Vadot  *
30052073c3SEmmanuel Vadot  */
31052073c3SEmmanuel Vadot 
32052073c3SEmmanuel Vadot #ifndef _GENERIC_XHCI_H_
33052073c3SEmmanuel Vadot #define _GENERIC_XHCI_H_
34052073c3SEmmanuel Vadot 
35052073c3SEmmanuel Vadot #define	XHCI_HC_DEVSTR	"Generic USB 3.0 controller"
36052073c3SEmmanuel Vadot #define	XHCI_HC_VENDOR	"Generic"
37052073c3SEmmanuel Vadot 
38052073c3SEmmanuel Vadot extern driver_t generic_xhci_driver;
39052073c3SEmmanuel Vadot 
40052073c3SEmmanuel Vadot device_attach_t generic_xhci_attach;
41052073c3SEmmanuel Vadot device_detach_t generic_xhci_detach;
42052073c3SEmmanuel Vadot 
43052073c3SEmmanuel Vadot #endif /* !_GENERIC_XHCI_H_ */
44