Lines Matching defs:usb_hcd
69 struct usb_hcd { struct
74 struct usb_bus self; /* hcd is-a bus */
75 struct kref kref; /* reference counter */
77 const char *product_desc; /* product/vendor string */
78 int speed; /* Speed for this roothub.
82 char irq_descr[24]; /* driver + bus # */
84 struct timer_list rh_timer; /* drives root-hub polling */
85 struct urb *status_urb; /* the current status urb */
87 struct work_struct wakeup_work; /* for remote wakeup */
89 struct work_struct died_work; /* for when the device dies */
94 const struct hc_driver *driver; /* hw-specific hooks */
100 struct usb_phy *usb_phy;
101 struct usb_phy_roothub *phy_roothub;
107 unsigned long flags;
141 enum usb_dev_authorize_policy dev_policy;
144 unsigned rh_registered:1;/* is root hub registered? */
145 unsigned rh_pollable:1; /* may we poll the root hub? */
146 unsigned msix_enabled:1; /* driver has MSI-X enabled? */
147 unsigned msi_enabled:1; /* driver has MSI enabled? */
153 unsigned skip_phy_initialization:1;
157 unsigned uses_new_polling:1;
158 unsigned has_tt:1; /* Integrated TT in root hub */
159 unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */
160 unsigned can_do_streams:1; /* HC supports streams */
161 unsigned tpl_support:1; /* OTG & EH TPL support */
162 unsigned cant_recv_wakeups:1;
187 struct usb_hcd *shared_hcd; argument
188 struct usb_hcd *primary_hcd; argument
192 struct dma_pool *pool[HCD_BUFFER_POOLS];
194 int state;
230 static inline struct usb_bus *hcd_to_bus(struct usb_hcd *hcd) in hcd_to_bus() argument