Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / core / hub.h
blobd114b847d56f84e9ba0b1fb1b754283e02618eed
1 #ifndef __LINUX_HUB_H
2 #define __LINUX_HUB_H
4 /*
5 * Hub protocol and driver data structures.
7 * Some of these are known to the "virtual root hub" code
8 * in host controller drivers.
9 */
11 #include <linux/list.h>
12 #include <linux/workqueue.h>
13 #include <linux/compiler.h> /* likely()/unlikely() */
16 * Hub request types
19 #define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
20 #define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
23 * Hub class requests
24 * See USB 2.0 spec Table 11-16
26 #define HUB_CLEAR_TT_BUFFER 8
27 #define HUB_RESET_TT 9
28 #define HUB_GET_TT_STATE 10
29 #define HUB_STOP_TT 11
32 * Hub Class feature numbers
33 * See USB 2.0 spec Table 11-17
35 #define C_HUB_LOCAL_POWER 0
36 #define C_HUB_OVER_CURRENT 1
39 * Port feature numbers
40 * See USB 2.0 spec Table 11-17
42 #define USB_PORT_FEAT_CONNECTION 0
43 #define USB_PORT_FEAT_ENABLE 1
44 #define USB_PORT_FEAT_SUSPEND 2
45 #define USB_PORT_FEAT_OVER_CURRENT 3
46 #define USB_PORT_FEAT_RESET 4
47 #define USB_PORT_FEAT_POWER 8
48 #define USB_PORT_FEAT_LOWSPEED 9
49 #define USB_PORT_FEAT_HIGHSPEED 10
50 #define USB_PORT_FEAT_C_CONNECTION 16
51 #define USB_PORT_FEAT_C_ENABLE 17
52 #define USB_PORT_FEAT_C_SUSPEND 18
53 #define USB_PORT_FEAT_C_OVER_CURRENT 19
54 #define USB_PORT_FEAT_C_RESET 20
55 #define USB_PORT_FEAT_TEST 21
56 #define USB_PORT_FEAT_INDICATOR 22
58 /*
59 * Hub Status and Hub Change results
60 * See USB 2.0 spec Table 11-19 and Table 11-20
62 struct usb_port_status {
63 __le16 wPortStatus;
64 __le16 wPortChange;
65 } __attribute__ ((packed));
67 /*
68 * wPortStatus bit field
69 * See USB 2.0 spec Table 11-21
71 #define USB_PORT_STAT_CONNECTION 0x0001
72 #define USB_PORT_STAT_ENABLE 0x0002
73 #define USB_PORT_STAT_SUSPEND 0x0004
74 #define USB_PORT_STAT_OVERCURRENT 0x0008
75 #define USB_PORT_STAT_RESET 0x0010
76 /* bits 5 to 7 are reserved */
77 #define USB_PORT_STAT_POWER 0x0100
78 #define USB_PORT_STAT_LOW_SPEED 0x0200
79 #define USB_PORT_STAT_HIGH_SPEED 0x0400
80 #define USB_PORT_STAT_TEST 0x0800
81 #define USB_PORT_STAT_INDICATOR 0x1000
82 /* bits 13 to 15 are reserved */
84 /*
85 * wPortChange bit field
86 * See USB 2.0 spec Table 11-22
87 * Bits 0 to 4 shown, bits 5 to 15 are reserved
89 #define USB_PORT_STAT_C_CONNECTION 0x0001
90 #define USB_PORT_STAT_C_ENABLE 0x0002
91 #define USB_PORT_STAT_C_SUSPEND 0x0004
92 #define USB_PORT_STAT_C_OVERCURRENT 0x0008
93 #define USB_PORT_STAT_C_RESET 0x0010
96 * wHubCharacteristics (masks)
97 * See USB 2.0 spec Table 11-13, offset 3
99 #define HUB_CHAR_LPSM 0x0003 /* D1 .. D0 */
100 #define HUB_CHAR_COMPOUND 0x0004 /* D2 */
101 #define HUB_CHAR_OCPM 0x0018 /* D4 .. D3 */
102 #define HUB_CHAR_TTTT 0x0060 /* D6 .. D5 */
103 #define HUB_CHAR_PORTIND 0x0080 /* D7 */
105 struct usb_hub_status {
106 __le16 wHubStatus;
107 __le16 wHubChange;
108 } __attribute__ ((packed));
111 * Hub Status & Hub Change bit masks
112 * See USB 2.0 spec Table 11-19 and Table 11-20
113 * Bits 0 and 1 for wHubStatus and wHubChange
114 * Bits 2 to 15 are reserved for both
116 #define HUB_STATUS_LOCAL_POWER 0x0001
117 #define HUB_STATUS_OVERCURRENT 0x0002
118 #define HUB_CHANGE_LOCAL_POWER 0x0001
119 #define HUB_CHANGE_OVERCURRENT 0x0002
123 * Hub descriptor
124 * See USB 2.0 spec Table 11-13
127 #define USB_DT_HUB (USB_TYPE_CLASS | 0x09)
128 #define USB_DT_HUB_NONVAR_SIZE 7
130 struct usb_hub_descriptor {
131 __u8 bDescLength;
132 __u8 bDescriptorType;
133 __u8 bNbrPorts;
134 __u16 wHubCharacteristics;
135 __u8 bPwrOn2PwrGood;
136 __u8 bHubContrCurrent;
137 /* add 1 bit for hub status change; round to bytes */
138 __u8 DeviceRemovable[(USB_MAXCHILDREN + 1 + 7) / 8];
139 __u8 PortPwrCtrlMask[(USB_MAXCHILDREN + 1 + 7) / 8];
140 } __attribute__ ((packed));
143 /* port indicator status selectors, tables 11-7 and 11-25 */
144 #define HUB_LED_AUTO 0
145 #define HUB_LED_AMBER 1
146 #define HUB_LED_GREEN 2
147 #define HUB_LED_OFF 3
149 enum hub_led_mode {
150 INDICATOR_AUTO = 0,
151 INDICATOR_CYCLE,
152 /* software blinks for attention: software, hardware, reserved */
153 INDICATOR_GREEN_BLINK, INDICATOR_GREEN_BLINK_OFF,
154 INDICATOR_AMBER_BLINK, INDICATOR_AMBER_BLINK_OFF,
155 INDICATOR_ALT_BLINK, INDICATOR_ALT_BLINK_OFF
156 } __attribute__ ((packed));
158 struct usb_device;
161 * As of USB 2.0, full/low speed devices are segregated into trees.
162 * One type grows from USB 1.1 host controllers (OHCI, UHCI etc).
163 * The other type grows from high speed hubs when they connect to
164 * full/low speed devices using "Transaction Translators" (TTs).
166 * TTs should only be known to the hub driver, and high speed bus
167 * drivers (only EHCI for now). They affect periodic scheduling and
168 * sometimes control/bulk error recovery.
170 struct usb_tt {
171 struct usb_device *hub; /* upstream highspeed hub */
172 int multi; /* true means one TT per port */
174 /* for control/bulk error recovery (CLEAR_TT_BUFFER) */
175 spinlock_t lock;
176 struct list_head clear_list; /* of usb_tt_clear */
177 struct work_struct kevent;
180 struct usb_tt_clear {
181 struct list_head clear_list;
182 unsigned tt;
183 u16 devinfo;
186 extern void usb_hub_tt_clear_buffer (struct usb_device *dev, int pipe);
188 struct usb_hub {
189 struct device *intfdev; /* the "interface" device */
190 struct usb_device *hdev;
191 struct urb *urb; /* for interrupt polling pipe */
193 /* buffer for urb ... with extra space in case of babble */
194 char (*buffer)[8];
195 dma_addr_t buffer_dma; /* DMA address for buffer */
196 union {
197 struct usb_hub_status hub;
198 struct usb_port_status port;
199 } *status; /* buffer for status reports */
201 int error; /* last reported error */
202 int nerrors; /* track consecutive errors */
204 struct list_head event_list; /* hubs w/data or errs ready */
205 unsigned long event_bits[1]; /* status change bitmask */
206 unsigned long change_bits[1]; /* ports with logical connect
207 status change */
208 unsigned long busy_bits[1]; /* ports being reset */
209 #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
210 #error event_bits[] is too short!
211 #endif
213 struct usb_hub_descriptor *descriptor; /* class descriptor */
214 struct usb_tt tt; /* Transaction Translator */
216 u8 power_budget; /* in 2mA units; or zero */
218 unsigned quiescing:1;
219 unsigned activating:1;
220 unsigned resume_root_hub:1;
222 unsigned has_indicators:1;
223 enum hub_led_mode indicator[USB_MAXCHILDREN];
224 struct work_struct leds;
227 /* use this for low-powered root hubs */
228 static inline void
229 hub_set_power_budget (struct usb_device *hubdev, unsigned mA)
231 struct usb_hub *hub;
233 hub = (struct usb_hub *)
234 usb_get_intfdata (hubdev->actconfig->interface[0]);
235 hub->power_budget = min(mA,(unsigned)500)/2;
238 #endif /* __LINUX_HUB_H */