Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _UAPI__LINUX_FUNCTIONFS_H__
2#define _UAPI__LINUX_FUNCTIONFS_H__
3
4
5#include <linux/types.h>
6#include <linux/ioctl.h>
7
8#include <linux/usb/ch9.h>
9
10
11enum {
12 FUNCTIONFS_DESCRIPTORS_MAGIC = 1,
13 FUNCTIONFS_STRINGS_MAGIC = 2,
14 FUNCTIONFS_DESCRIPTORS_MAGIC_V2 = 3,
15};
16
17enum functionfs_flags {
18 FUNCTIONFS_HAS_FS_DESC = 1,
19 FUNCTIONFS_HAS_HS_DESC = 2,
20 FUNCTIONFS_HAS_SS_DESC = 4,
21 FUNCTIONFS_HAS_MS_OS_DESC = 8,
22 FUNCTIONFS_VIRTUAL_ADDR = 16,
23 FUNCTIONFS_EVENTFD = 32,
24 FUNCTIONFS_ALL_CTRL_RECIP = 64,
25 FUNCTIONFS_CONFIG0_SETUP = 128,
26};
27
28/* Descriptor of an non-audio endpoint */
29struct usb_endpoint_descriptor_no_audio {
30 __u8 bLength;
31 __u8 bDescriptorType;
32
33 __u8 bEndpointAddress;
34 __u8 bmAttributes;
35 __le16 wMaxPacketSize;
36 __u8 bInterval;
37} __attribute__((packed));
38
39struct usb_functionfs_descs_head_v2 {
40 __le32 magic;
41 __le32 length;
42 __le32 flags;
43 /*
44 * __le32 fs_count, hs_count, fs_count; must be included manually in
45 * the structure taking flags into consideration.
46 */
47} __attribute__((packed));
48
49/* Legacy format, deprecated as of 3.14. */
50struct usb_functionfs_descs_head {
51 __le32 magic;
52 __le32 length;
53 __le32 fs_count;
54 __le32 hs_count;
55} __attribute__((packed, deprecated));
56
57/* MS OS Descriptor header */
58struct usb_os_desc_header {
59 __u8 interface;
60 __le32 dwLength;
61 __le16 bcdVersion;
62 __le16 wIndex;
63 union {
64 struct {
65 __u8 bCount;
66 __u8 Reserved;
67 };
68 __le16 wCount;
69 };
70} __attribute__((packed));
71
72struct usb_ext_compat_desc {
73 __u8 bFirstInterfaceNumber;
74 __u8 Reserved1;
75 __u8 CompatibleID[8];
76 __u8 SubCompatibleID[8];
77 __u8 Reserved2[6];
78};
79
80struct usb_ext_prop_desc {
81 __le32 dwSize;
82 __le32 dwPropertyDataType;
83 __le16 wPropertyNameLength;
84} __attribute__((packed));
85
86#ifndef __KERNEL__
87
88/*
89 * Descriptors format:
90 *
91 * | off | name | type | description |
92 * |-----+-----------+--------------+--------------------------------------|
93 * | 0 | magic | LE32 | FUNCTIONFS_DESCRIPTORS_MAGIC_V2 |
94 * | 4 | length | LE32 | length of the whole data chunk |
95 * | 8 | flags | LE32 | combination of functionfs_flags |
96 * | | eventfd | LE32 | eventfd file descriptor |
97 * | | fs_count | LE32 | number of full-speed descriptors |
98 * | | hs_count | LE32 | number of high-speed descriptors |
99 * | | ss_count | LE32 | number of super-speed descriptors |
100 * | | os_count | LE32 | number of MS OS descriptors |
101 * | | fs_descrs | Descriptor[] | list of full-speed descriptors |
102 * | | hs_descrs | Descriptor[] | list of high-speed descriptors |
103 * | | ss_descrs | Descriptor[] | list of super-speed descriptors |
104 * | | os_descrs | OSDesc[] | list of MS OS descriptors |
105 *
106 * Depending on which flags are set, various fields may be missing in the
107 * structure. Any flags that are not recognised cause the whole block to be
108 * rejected with -ENOSYS.
109 *
110 * Legacy descriptors format (deprecated as of 3.14):
111 *
112 * | off | name | type | description |
113 * |-----+-----------+--------------+--------------------------------------|
114 * | 0 | magic | LE32 | FUNCTIONFS_DESCRIPTORS_MAGIC |
115 * | 4 | length | LE32 | length of the whole data chunk |
116 * | 8 | fs_count | LE32 | number of full-speed descriptors |
117 * | 12 | hs_count | LE32 | number of high-speed descriptors |
118 * | 16 | fs_descrs | Descriptor[] | list of full-speed descriptors |
119 * | | hs_descrs | Descriptor[] | list of high-speed descriptors |
120 *
121 * All numbers must be in little endian order.
122 *
123 * Descriptor[] is an array of valid USB descriptors which have the following
124 * format:
125 *
126 * | off | name | type | description |
127 * |-----+-----------------+------+--------------------------|
128 * | 0 | bLength | U8 | length of the descriptor |
129 * | 1 | bDescriptorType | U8 | descriptor type |
130 * | 2 | payload | | descriptor's payload |
131 *
132 * OSDesc[] is an array of valid MS OS Feature Descriptors which have one of
133 * the following formats:
134 *
135 * | off | name | type | description |
136 * |-----+-----------------+------+--------------------------|
137 * | 0 | inteface | U8 | related interface number |
138 * | 1 | dwLength | U32 | length of the descriptor |
139 * | 5 | bcdVersion | U16 | currently supported: 1 |
140 * | 7 | wIndex | U16 | currently supported: 4 |
141 * | 9 | bCount | U8 | number of ext. compat. |
142 * | 10 | Reserved | U8 | 0 |
143 * | 11 | ExtCompat[] | | list of ext. compat. d. |
144 *
145 * | off | name | type | description |
146 * |-----+-----------------+------+--------------------------|
147 * | 0 | inteface | U8 | related interface number |
148 * | 1 | dwLength | U32 | length of the descriptor |
149 * | 5 | bcdVersion | U16 | currently supported: 1 |
150 * | 7 | wIndex | U16 | currently supported: 5 |
151 * | 9 | wCount | U16 | number of ext. compat. |
152 * | 11 | ExtProp[] | | list of ext. prop. d. |
153 *
154 * ExtCompat[] is an array of valid Extended Compatiblity descriptors
155 * which have the following format:
156 *
157 * | off | name | type | description |
158 * |-----+-----------------------+------+-------------------------------------|
159 * | 0 | bFirstInterfaceNumber | U8 | index of the interface or of the 1st|
160 * | | | | interface in an IAD group |
161 * | 1 | Reserved | U8 | 0 |
162 * | 2 | CompatibleID | U8[8]| compatible ID string |
163 * | 10 | SubCompatibleID | U8[8]| subcompatible ID string |
164 * | 18 | Reserved | U8[6]| 0 |
165 *
166 * ExtProp[] is an array of valid Extended Properties descriptors
167 * which have the following format:
168 *
169 * | off | name | type | description |
170 * |-----+-----------------------+------+-------------------------------------|
171 * | 0 | dwSize | U32 | length of the descriptor |
172 * | 4 | dwPropertyDataType | U32 | 1..7 |
173 * | 8 | wPropertyNameLength | U16 | bPropertyName length (NL) |
174 * | 10 | bPropertyName |U8[NL]| name of this property |
175 * |10+NL| dwPropertyDataLength | U32 | bPropertyData length (DL) |
176 * |14+NL| bProperty |U8[DL]| payload of this property |
177 */
178
179struct usb_functionfs_strings_head {
180 __le32 magic;
181 __le32 length;
182 __le32 str_count;
183 __le32 lang_count;
184} __attribute__((packed));
185
186/*
187 * Strings format:
188 *
189 * | off | name | type | description |
190 * |-----+------------+-----------------------+----------------------------|
191 * | 0 | magic | LE32 | FUNCTIONFS_STRINGS_MAGIC |
192 * | 4 | length | LE32 | length of the data chunk |
193 * | 8 | str_count | LE32 | number of strings |
194 * | 12 | lang_count | LE32 | number of languages |
195 * | 16 | stringtab | StringTab[lang_count] | table of strings per lang |
196 *
197 * For each language there is one stringtab entry (ie. there are lang_count
198 * stringtab entires). Each StringTab has following format:
199 *
200 * | off | name | type | description |
201 * |-----+---------+-------------------+------------------------------------|
202 * | 0 | lang | LE16 | language code |
203 * | 2 | strings | String[str_count] | array of strings in given language |
204 *
205 * For each string there is one strings entry (ie. there are str_count
206 * string entries). Each String is a NUL terminated string encoded in
207 * UTF-8.
208 */
209
210#endif
211
212
213/*
214 * Events are delivered on the ep0 file descriptor, when the user mode driver
215 * reads from this file descriptor after writing the descriptors. Don't
216 * stop polling this descriptor.
217 */
218
219enum usb_functionfs_event_type {
220 FUNCTIONFS_BIND,
221 FUNCTIONFS_UNBIND,
222
223 FUNCTIONFS_ENABLE,
224 FUNCTIONFS_DISABLE,
225
226 FUNCTIONFS_SETUP,
227
228 FUNCTIONFS_SUSPEND,
229 FUNCTIONFS_RESUME
230};
231
232/* NOTE: this structure must stay the same size and layout on
233 * both 32-bit and 64-bit kernels.
234 */
235struct usb_functionfs_event {
236 union {
237 /* SETUP: packet; DATA phase i/o precedes next event
238 *(setup.bmRequestType & USB_DIR_IN) flags direction */
239 struct usb_ctrlrequest setup;
240 } __attribute__((packed)) u;
241
242 /* enum usb_functionfs_event_type */
243 __u8 type;
244 __u8 _pad[3];
245} __attribute__((packed));
246
247
248/* Endpoint ioctls */
249/* The same as in gadgetfs */
250
251/* IN transfers may be reported to the gadget driver as complete
252 * when the fifo is loaded, before the host reads the data;
253 * OUT transfers may be reported to the host's "client" driver as
254 * complete when they're sitting in the FIFO unread.
255 * THIS returns how many bytes are "unclaimed" in the endpoint fifo
256 * (needed for precise fault handling, when the hardware allows it)
257 */
258#define FUNCTIONFS_FIFO_STATUS _IO('g', 1)
259
260/* discards any unclaimed data in the fifo. */
261#define FUNCTIONFS_FIFO_FLUSH _IO('g', 2)
262
263/* resets endpoint halt+toggle; used to implement set_interface.
264 * some hardware (like pxa2xx) can't support this.
265 */
266#define FUNCTIONFS_CLEAR_HALT _IO('g', 3)
267
268/* Specific for functionfs */
269
270/*
271 * Returns reverse mapping of an interface. Called on EP0. If there
272 * is no such interface returns -EDOM. If function is not active
273 * returns -ENODEV.
274 */
275#define FUNCTIONFS_INTERFACE_REVMAP _IO('g', 128)
276
277/*
278 * Returns real bEndpointAddress of an endpoint. If function is not
279 * active returns -ENODEV.
280 */
281#define FUNCTIONFS_ENDPOINT_REVMAP _IO('g', 129)
282
283/*
284 * Returns endpoint descriptor. If function is not active returns -ENODEV.
285 */
286#define FUNCTIONFS_ENDPOINT_DESC _IOR('g', 130, \
287 struct usb_endpoint_descriptor)
288
289
290
291#endif /* _UAPI__LINUX_FUNCTIONFS_H__ */