Lines Matching refs:hcd
127 #define HCD_HW_ACCESSIBLE(hcd) ((hcd)->flags & (1U << HCD_FLAG_HW_ACCESSIBLE)) argument
128 #define HCD_POLL_RH(hcd) ((hcd)->flags & (1U << HCD_FLAG_POLL_RH)) argument
129 #define HCD_POLL_PENDING(hcd) ((hcd)->flags & (1U << HCD_FLAG_POLL_PENDING)) argument
130 #define HCD_WAKEUP_PENDING(hcd) ((hcd)->flags & (1U << HCD_FLAG_WAKEUP_PENDING)) argument
131 #define HCD_RH_RUNNING(hcd) ((hcd)->flags & (1U << HCD_FLAG_RH_RUNNING)) argument
132 #define HCD_DEAD(hcd) ((hcd)->flags & (1U << HCD_FLAG_DEAD)) argument
209 static inline struct usb_bus *hcd_to_bus(struct usb_hcd *hcd) in hcd_to_bus() argument
211 return &hcd->self; in hcd_to_bus()
233 irqreturn_t (*irq) (struct usb_hcd *hcd);
247 int (*reset) (struct usb_hcd *hcd);
248 int (*start) (struct usb_hcd *hcd);
254 int (*pci_suspend)(struct usb_hcd *hcd, bool do_wakeup);
257 int (*pci_resume)(struct usb_hcd *hcd, bool hibernated);
260 void (*stop) (struct usb_hcd *hcd);
263 void (*shutdown) (struct usb_hcd *hcd);
266 int (*get_frame_number) (struct usb_hcd *hcd);
269 int (*urb_enqueue)(struct usb_hcd *hcd,
271 int (*urb_dequeue)(struct usb_hcd *hcd,
283 int (*map_urb_for_dma)(struct usb_hcd *hcd, struct urb *urb,
285 void (*unmap_urb_for_dma)(struct usb_hcd *hcd, struct urb *urb);
288 void (*endpoint_disable)(struct usb_hcd *hcd,
293 void (*endpoint_reset)(struct usb_hcd *hcd,
297 int (*hub_status_data) (struct usb_hcd *hcd, char *buf);
298 int (*hub_control) (struct usb_hcd *hcd,
320 int (*alloc_streams)(struct usb_hcd *hcd, struct usb_device *udev,
326 int (*free_streams)(struct usb_hcd *hcd, struct usb_device *udev,
386 int (*port_power)(struct usb_hcd *hcd, int portnum, bool enable);
390 static inline int hcd_giveback_urb_in_bh(struct usb_hcd *hcd) in hcd_giveback_urb_in_bh() argument
392 return hcd->driver->flags & HCD_BH; in hcd_giveback_urb_in_bh()
395 static inline bool hcd_periodic_completion_in_progress(struct usb_hcd *hcd, in hcd_periodic_completion_in_progress() argument
398 return hcd->high_prio_bh.completing_ep == ep; in hcd_periodic_completion_in_progress()
401 extern int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb);
402 extern int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
404 extern void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb);
408 extern void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb,
410 extern int usb_hcd_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
432 extern struct usb_hcd *usb_get_hcd(struct usb_hcd *hcd);
433 extern void usb_put_hcd(struct usb_hcd *hcd);
434 extern int usb_hcd_is_primary_hcd(struct usb_hcd *hcd);
435 extern int usb_add_hcd(struct usb_hcd *hcd,
437 extern void usb_remove_hcd(struct usb_hcd *hcd);
438 extern int usb_hcd_find_raw_port_number(struct usb_hcd *hcd, int port1);
460 int hcd_buffer_create(struct usb_hcd *hcd);
461 void hcd_buffer_destroy(struct usb_hcd *hcd);
471 extern void usb_hc_died(struct usb_hcd *hcd);
472 extern void usb_hcd_poll_rh_status(struct usb_hcd *hcd);
534 struct usb_hcd *hcd; member
635 extern void usb_hcd_resume_root_hub(struct usb_hcd *hcd);
637 static inline void usb_hcd_resume_root_hub(struct usb_hcd *hcd) in usb_hcd_resume_root_hub() argument