iPXE
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
b
d
i
p
s
t
u
v
x
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
config
config_usb.c
Go to the documentation of this file.
1
/*
2
* This program is free software; you can redistribute it and/or
3
* modify it under the terms of the GNU General Public License as
4
* published by the Free Software Foundation; either version 2 of the
5
* License, or (at your option) any later version.
6
*
7
* This program is distributed in the hope that it will be useful, but
8
* WITHOUT ANY WARRANTY; without even the implied warranty of
9
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10
* General Public License for more details.
11
*
12
* You should have received a copy of the GNU General Public License
13
* along with this program; if not, write to the Free Software
14
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15
* 02110-1301, USA.
16
*
17
* You can also choose to distribute this program under the terms of
18
* the Unmodified Binary Distribution Licence (as given in the file
19
* COPYING.UBDL), provided that you have satisfied its requirements.
20
*/
21
22
FILE_LICENCE
( GPL2_OR_LATER_OR_UBDL );
23
24
#include <
config/usb.h
>
25
#include <
config/settings.h
>
26
27
/** @file
28
*
29
* USB configuration options
30
*
31
*/
32
33
PROVIDE_REQUIRING_SYMBOL
();
34
35
/*
36
* Drag in USB controllers
37
*/
38
#ifdef USB_HCD_XHCI
39
REQUIRE_OBJECT
( xhci );
40
#endif
41
#ifdef USB_HCD_EHCI
42
REQUIRE_OBJECT
( ehci );
43
#endif
44
#ifdef USB_HCD_UHCI
45
REQUIRE_OBJECT
( uhci );
46
#endif
47
#ifdef USB_HCD_USBIO
48
REQUIRE_OBJECT
( usbio );
49
#endif
50
51
/*
52
* Drag in USB peripherals
53
*/
54
#ifdef USB_KEYBOARD
55
REQUIRE_OBJECT
( usbkbd );
56
#endif
57
#ifdef USB_BLOCK
58
REQUIRE_OBJECT
( usbblk );
59
#endif
60
61
/*
62
* Drag in USB external interfaces
63
*/
64
#ifdef USB_EFI
65
REQUIRE_OBJECT
( efi_usb );
66
#endif
67
68
/*
69
* Drag in USB settings mechanism
70
*/
71
#ifdef USB_SETTINGS
72
REQUIRE_OBJECT
(
usb_settings
);
73
#endif
PROVIDE_REQUIRING_SYMBOL
PROVIDE_REQUIRING_SYMBOL()
REQUIRE_OBJECT
#define REQUIRE_OBJECT(object)
Require an object.
Definition:
compiler.h:202
settings.h
Configuration settings sources.
FILE_LICENCE
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
usb_settings
static struct settings usb_settings
USB device settings.
Definition:
usb_settings.c:154
usb.h
USB configuration.
Generated by
1.8.15