Lines Matching defs:xhci_hcd
1751 struct xhci_hcd { struct
1752 struct usb_hcd *main_hcd;
1753 struct usb_hcd *shared_hcd;
1755 struct xhci_cap_regs __iomem *cap_regs;
1756 struct xhci_op_regs __iomem *op_regs;
1757 struct xhci_run_regs __iomem *run_regs;
1758 struct xhci_doorbell_array __iomem *dba;
1760 struct xhci_intr_reg __iomem *ir_set;
1763 __u32 hcs_params1;
1764 __u32 hcs_params2;
1765 __u32 hcs_params3;
1766 __u32 hcc_params;
1767 __u32 hcc_params2;
1769 spinlock_t lock;
1772 u8 sbrn;
1773 u16 hci_version;
1774 u8 max_slots;
1775 u8 max_interrupters;
1776 u8 max_ports;
1777 u8 isoc_threshold;
1779 u32 imod_interval;
1780 u32 isoc_bei_interval;
1781 int event_ring_max;
1783 int page_size;
1785 int page_shift;
1787 int msix_count;
1789 struct clk *clk;
1790 struct clk *reg_clk;
1792 struct reset_control *reset;
1794 struct xhci_device_context_array *dcbaa;
1795 struct xhci_ring *cmd_ring;
1796 unsigned int cmd_ring_state;
1800 struct list_head cmd_list;
1801 unsigned int cmd_ring_reserved_trbs;
1802 struct delayed_work cmd_timer;
1803 struct completion cmd_ring_stop_completion;
1804 struct xhci_command *current_cmd;
1805 struct xhci_ring *event_ring;
1806 struct xhci_erst erst;
1808 struct xhci_scratchpad *scratchpad;
1810 struct list_head lpm_failed_devs;
1814 struct mutex mutex;
1816 struct xhci_command *lpm_command;
1818 struct xhci_virt_device *devs[MAX_HC_SLOTS];
1820 struct xhci_root_port_bw_info *rh_bw;
1823 struct dma_pool *device_pool;
1824 struct dma_pool *segment_pool;
1825 struct dma_pool *small_streams_pool;
1826 struct dma_pool *medium_streams_pool;
1829 unsigned int xhc_state;
1831 u32 command;
1832 struct s3_save s3;
1848 unsigned long long quirks;
1904 unsigned int num_active_eps;
1905 unsigned int limit_active_eps;
1906 struct xhci_port *hw_ports;
1907 struct xhci_hub usb2_rhub;
1908 struct xhci_hub usb3_rhub;
1910 unsigned hw_lpm_support:1;
1912 unsigned broken_suspend:1;
1914 u32 *ext_caps;
1915 unsigned int num_ext_caps;
1917 struct xhci_port_cap *port_caps;
1918 unsigned int num_port_caps;
1920 struct timer_list comp_mode_recovery_timer;
1921 u32 port_status_u0;
1922 u16 test_mode;
1926 struct dentry *debugfs_root;
1927 struct dentry *debugfs_slots;
1951 static inline struct xhci_hcd *hcd_to_xhci(struct usb_hcd *hcd) in hcd_to_xhci() argument