mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
usb: patches for v3.17 merge window
Surprisingly enough, while a big set of patches, the majority is composed of cleanups (using devm_*, fixing sparse errors, moving code around, adding const, etc). The highlights are addition of new support for PLX USB338x devices, and support for USB 2.0-only configurations of the DWC3 IP core. Signed-of-by: Felipe Balbi <balbi@ti.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJTzTI9AAoJEIaOsuA1yqREIqcQAJbwMaDb5sp8dWst+nL1Vo8N 08bhOOM+o2KLiIBSNQh1hYtujpa06RSQMiNYZ7F/+R4Q3OAoq+uC0dD69TLEQ3Sd 1xi0UgUTAvtXo13TToRjIi0mYywrrkZ91Maqff5jZKdslOY4ZfAScpUQHyD3i1UO JNUqpayYAnp8JJIGQ8CG1wAeJh/J8JH3O607vaknKVjds+WMkeC5ubnuV4sgVw71 8JTwxk22EkMTr2MKhHjZwcv016NMEvziinWVoTXcWN2Uwk42Dn1nhfaYWSvg7kZE 8/3t6zzdFMdoeeTEn2xXIQGTjbHW0sBS5+S+6PAon2YbjS3x40cbyLJnZ+KoVXog iHDKAl5w53gd/7qMiv57dW+HRP0M7/m2iy/owIrY8H8DkM3uwFevaeq/G2raJKmA frB1k95bSyypN7wVkALYv4nurP5+d7ERy9hPj/49M5giJXPpEIbgKN2qGdafaEx7 xzAI+GqYrFtmmg25+f6AQRicVczQNMCdDT8HPZ04099Z2JVY/4uOoqTl29CePMgo OXeQ45ECMoJuRSwpF56e8h+qmsXp6WD31IhlcHseTvUvFu0Ex4SgUJhFP2UaF9WP aOqz0w36yX/ME3VhQk9YImNqGoqEk6fYHIHhxfdDugt0n68+M56EiiwtKvd5v5BI hCJAMBrv+WCGnJvWunVW =aJY4 -----END PGP SIGNATURE----- Merge tag 'usb-for-v3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next Felipe writes: usb: patches for v3.17 merge window Surprisingly enough, while a big set of patches, the majority is composed of cleanups (using devm_*, fixing sparse errors, moving code around, adding const, etc). The highlights are addition of new support for PLX USB338x devices, and support for USB 2.0-only configurations of the DWC3 IP core. Signed-of-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
commit
61fe2d75f1
159 changed files with 7024 additions and 4938 deletions
|
@ -18,10 +18,9 @@ enum functionfs_flags {
|
|||
FUNCTIONFS_HAS_FS_DESC = 1,
|
||||
FUNCTIONFS_HAS_HS_DESC = 2,
|
||||
FUNCTIONFS_HAS_SS_DESC = 4,
|
||||
FUNCTIONFS_HAS_MS_OS_DESC = 8,
|
||||
};
|
||||
|
||||
#ifndef __KERNEL__
|
||||
|
||||
/* Descriptor of an non-audio endpoint */
|
||||
struct usb_endpoint_descriptor_no_audio {
|
||||
__u8 bLength;
|
||||
|
@ -41,6 +40,37 @@ struct usb_functionfs_descs_head {
|
|||
__le32 hs_count;
|
||||
} __attribute__((packed, deprecated));
|
||||
|
||||
/* MS OS Descriptor header */
|
||||
struct usb_os_desc_header {
|
||||
__u8 interface;
|
||||
__le32 dwLength;
|
||||
__le16 bcdVersion;
|
||||
__le16 wIndex;
|
||||
union {
|
||||
struct {
|
||||
__u8 bCount;
|
||||
__u8 Reserved;
|
||||
};
|
||||
__le16 wCount;
|
||||
};
|
||||
} __attribute__((packed));
|
||||
|
||||
struct usb_ext_compat_desc {
|
||||
__u8 bFirstInterfaceNumber;
|
||||
__u8 Reserved1;
|
||||
__u8 CompatibleID[8];
|
||||
__u8 SubCompatibleID[8];
|
||||
__u8 Reserved2[6];
|
||||
};
|
||||
|
||||
struct usb_ext_prop_desc {
|
||||
__le32 dwSize;
|
||||
__le32 dwPropertyDataType;
|
||||
__le16 wPropertyNameLength;
|
||||
} __attribute__((packed));
|
||||
|
||||
#ifndef __KERNEL__
|
||||
|
||||
/*
|
||||
* Descriptors format:
|
||||
*
|
||||
|
@ -52,9 +82,11 @@ struct usb_functionfs_descs_head {
|
|||
* | | fs_count | LE32 | number of full-speed descriptors |
|
||||
* | | hs_count | LE32 | number of high-speed descriptors |
|
||||
* | | ss_count | LE32 | number of super-speed descriptors |
|
||||
* | | os_count | LE32 | number of MS OS descriptors |
|
||||
* | | fs_descrs | Descriptor[] | list of full-speed descriptors |
|
||||
* | | hs_descrs | Descriptor[] | list of high-speed descriptors |
|
||||
* | | ss_descrs | Descriptor[] | list of super-speed descriptors |
|
||||
* | | os_descrs | OSDesc[] | list of MS OS descriptors |
|
||||
*
|
||||
* Depending on which flags are set, various fields may be missing in the
|
||||
* structure. Any flags that are not recognised cause the whole block to be
|
||||
|
@ -81,6 +113,52 @@ struct usb_functionfs_descs_head {
|
|||
* | 0 | bLength | U8 | length of the descriptor |
|
||||
* | 1 | bDescriptorType | U8 | descriptor type |
|
||||
* | 2 | payload | | descriptor's payload |
|
||||
*
|
||||
* OSDesc[] is an array of valid MS OS Feature Descriptors which have one of
|
||||
* the following formats:
|
||||
*
|
||||
* | off | name | type | description |
|
||||
* |-----+-----------------+------+--------------------------|
|
||||
* | 0 | inteface | U8 | related interface number |
|
||||
* | 1 | dwLength | U32 | length of the descriptor |
|
||||
* | 5 | bcdVersion | U16 | currently supported: 1 |
|
||||
* | 7 | wIndex | U16 | currently supported: 4 |
|
||||
* | 9 | bCount | U8 | number of ext. compat. |
|
||||
* | 10 | Reserved | U8 | 0 |
|
||||
* | 11 | ExtCompat[] | | list of ext. compat. d. |
|
||||
*
|
||||
* | off | name | type | description |
|
||||
* |-----+-----------------+------+--------------------------|
|
||||
* | 0 | inteface | U8 | related interface number |
|
||||
* | 1 | dwLength | U32 | length of the descriptor |
|
||||
* | 5 | bcdVersion | U16 | currently supported: 1 |
|
||||
* | 7 | wIndex | U16 | currently supported: 5 |
|
||||
* | 9 | wCount | U16 | number of ext. compat. |
|
||||
* | 11 | ExtProp[] | | list of ext. prop. d. |
|
||||
*
|
||||
* ExtCompat[] is an array of valid Extended Compatiblity descriptors
|
||||
* which have the following format:
|
||||
*
|
||||
* | off | name | type | description |
|
||||
* |-----+-----------------------+------+-------------------------------------|
|
||||
* | 0 | bFirstInterfaceNumber | U8 | index of the interface or of the 1st|
|
||||
* | | | | interface in an IAD group |
|
||||
* | 1 | Reserved | U8 | 0 |
|
||||
* | 2 | CompatibleID | U8[8]| compatible ID string |
|
||||
* | 10 | SubCompatibleID | U8[8]| subcompatible ID string |
|
||||
* | 18 | Reserved | U8[6]| 0 |
|
||||
*
|
||||
* ExtProp[] is an array of valid Extended Properties descriptors
|
||||
* which have the following format:
|
||||
*
|
||||
* | off | name | type | description |
|
||||
* |-----+-----------------------+------+-------------------------------------|
|
||||
* | 0 | dwSize | U32 | length of the descriptor |
|
||||
* | 4 | dwPropertyDataType | U32 | 1..7 |
|
||||
* | 8 | wPropertyNameLength | U16 | bPropertyName length (NL) |
|
||||
* | 10 | bPropertyName |U8[NL]| name of this property |
|
||||
* |10+NL| dwPropertyDataLength | U32 | bPropertyData length (DL) |
|
||||
* |14+NL| bProperty |U8[DL]| payload of this property |
|
||||
*/
|
||||
|
||||
struct usb_functionfs_strings_head {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue