1246145Shselasky/* $FreeBSD: stable/11/stand/kshim/bsd_global.h 294546 2016-01-22 06:05:31Z wma $ */
2246145Shselasky/*-
3246145Shselasky * Copyright (c) 2013 Hans Petter Selasky. All rights reserved.
4246145Shselasky *
5246145Shselasky * Redistribution and use in source and binary forms, with or without
6246145Shselasky * modification, are permitted provided that the following conditions
7246145Shselasky * are met:
8246145Shselasky * 1. Redistributions of source code must retain the above copyright
9246145Shselasky *    notice, this list of conditions and the following disclaimer.
10246145Shselasky * 2. Redistributions in binary form must reproduce the above copyright
11246145Shselasky *    notice, this list of conditions and the following disclaimer in the
12246145Shselasky *    documentation and/or other materials provided with the distribution.
13246145Shselasky *
14246145Shselasky * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15246145Shselasky * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16246145Shselasky * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17246145Shselasky * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18246145Shselasky * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19246145Shselasky * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20246145Shselasky * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21246145Shselasky * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22246145Shselasky * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23246145Shselasky * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24246145Shselasky * SUCH DAMAGE.
25246145Shselasky */
26246145Shselasky
27246145Shselasky#ifndef _BSD_GLOBAL_H_
28246145Shselasky#define	_BSD_GLOBAL_H_
29246145Shselasky
30246145Shselasky#include <bsd_kernel.h>
31246145Shselasky
32291405Szbb#include <sys/gpio.h>
33291405Szbb
34246145Shselasky#define	USB_DEBUG_VAR usb_debug
35246145Shselasky#include <dev/usb/usb_freebsd_loader.h>
36246145Shselasky#include <dev/usb/usb_endian.h>
37246145Shselasky#include <dev/usb/usb.h>
38246145Shselasky#include <dev/usb/usbdi.h>
39246145Shselasky#include <dev/usb/usb_core.h>
40246145Shselasky#include <dev/usb/usb_debug.h>
41246145Shselasky#include <dev/usb/usb_process.h>
42246145Shselasky#include <dev/usb/usb_busdma.h>
43246145Shselasky#include <dev/usb/usb_dynamic.h>
44246616Shselasky#include <dev/usb/usb_transfer.h>
45246145Shselasky#include <dev/usb/usb_device.h>
46246145Shselasky#include <dev/usb/usb_hub.h>
47246145Shselasky#include <dev/usb/usb_controller.h>
48246145Shselasky#include <dev/usb/usb_bus.h>
49246145Shselasky#include <dev/usb/usbdi_util.h>
50246145Shselasky#include <dev/usb/usb_cdc.h>
51246145Shselasky#include <dev/usb/usb_dev.h>
52246145Shselasky#include <dev/usb/usb_mbuf.h>
53246145Shselasky#include <dev/usb/usb_msctest.h>
54246145Shselasky#include <dev/usb/usb_pci.h>
55246145Shselasky#include <dev/usb/usb_pf.h>
56246145Shselasky#include <dev/usb/usb_request.h>
57246145Shselasky#include <dev/usb/usb_util.h>
58246145Shselasky#include <dev/usb/usbhid.h>
59246145Shselasky#include <dev/usb/usb_ioctl.h>
60246145Shselasky#include <dev/usb/usb_generic.h>
61246145Shselasky#include <dev/usb/quirk/usb_quirk.h>
62246145Shselasky#include <dev/usb/template/usb_template.h>
63291405Szbb#include <dev/usb/controller/ehci.h>
64291405Szbb#include <dev/usb/controller/ehcireg.h>
65246145Shselasky
66246363Shselaskyextern struct usb_process usb_process[USB_PROC_MAX];
67246363Shselasky
68246145Shselasky#endif					/* _BSD_GLOBAL_H_ */
69