Lines Matching defs:usb_hcd
73 struct usb_hcd { struct
78 struct usb_bus self; /* hcd is-a bus */
79 struct kref kref; /* reference counter */
81 const char *product_desc; /* product/vendor string */
82 int speed; /* Speed for this roothub.
86 char irq_descr[24]; /* driver + bus # */
88 struct timer_list rh_timer; /* drives root-hub polling */
89 struct urb *status_urb; /* the current status urb */
91 struct work_struct wakeup_work; /* for remote wakeup */
97 const struct hc_driver *driver; /* hw-specific hooks */
103 struct usb_phy *usb_phy;
104 struct phy *phy;
110 unsigned long flags;
147 unsigned rh_registered:1;/* is root hub registered? */
148 unsigned rh_pollable:1; /* may we poll the root hub? */
149 unsigned msix_enabled:1; /* driver has MSI-X enabled? */
150 unsigned remove_phy:1; /* auto-remove USB phy */
154 unsigned uses_new_polling:1;
155 unsigned wireless:1; /* Wireless USB HCD */
156 unsigned has_tt:1; /* Integrated TT in root hub */
157 unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */
158 unsigned can_do_streams:1; /* HC supports streams */
159 unsigned tpl_support:1; /* OTG & EH TPL support */
160 unsigned cant_recv_wakeups:1;
184 struct usb_hcd *shared_hcd; argument
185 struct usb_hcd *primary_hcd; argument
189 struct dma_pool *pool[HCD_BUFFER_POOLS];
191 int state;
219 static inline struct usb_bus *hcd_to_bus(struct usb_hcd *hcd) in hcd_to_bus() argument