Changeset 2c24983 in mainline
- Timestamp:
- 2013-12-31T07:42:31Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6297465
- Parents:
- 1760556
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/classes/hub.h
r1760556 r2c24983 76 76 /** Characteristics bitmask. 77 77 * 78 * D1.. .D0: Logical Power Switching Mode78 * D1..D0: Logical Power Switching Mode 79 79 * 00: Ganged power switching (all ports power at 80 80 * once) … … 85 85 * 0: Hub is not part of a compound device 86 86 * 1: Hub is part of a compound device 87 * D4.. .D3: Over-current Protection Mode87 * D4..D3: Over-current Protection Mode 88 88 * 00: Global Over-current Protection. The hub 89 89 * reports over-current as a summation of all … … 96 96 * allowed only for bus-powered hubs that do not 97 97 * implement over-current protection. 98 * D15...D5: Reserved 98 * D6..D5: TT think time 99 * 00: At most 8 FS bit times 100 * 01: At most 16 FS bit times 101 * 10: At most 24 FS bit times 102 * 11: At most 32 FS bit times 103 * D7: Port indicators 104 * 0: Not supported 105 * 1: Supported 106 * D15...D8: Reserved 99 107 */ 100 108 uint8_t characteristics; … … 104 112 #define HUB_CHAR_OC_PER_PORT_FLAG (1 << 3) 105 113 #define HUB_CHAR_NO_OC_FLAG (1 << 4) 114 #define HUB_CHAR_TT_THINK_16 (1 << 5) 115 #define HUB_CHAR_TT_THINK_8 (1 << 6) 116 #define HUB_CHAR_INDICATORS_FLAG (1 << 7) 106 117 107 118 /** Unused part of characteristics field */
Note:
See TracChangeset
for help on using the changeset viewer.