Lines Matching defs:xhci_hcd
1759 struct xhci_hcd { struct
1760 struct usb_hcd *main_hcd;
1761 struct usb_hcd *shared_hcd;
1763 struct xhci_cap_regs __iomem *cap_regs;
1764 struct xhci_op_regs __iomem *op_regs;
1765 struct xhci_run_regs __iomem *run_regs;
1766 struct xhci_doorbell_array __iomem *dba;
1768 struct xhci_intr_reg __iomem *ir_set;
1771 __u32 hcs_params1;
1772 __u32 hcs_params2;
1773 __u32 hcs_params3;
1774 __u32 hcc_params;
1775 __u32 hcc_params2;
1777 spinlock_t lock;
1780 u8 sbrn;
1781 u16 hci_version;
1782 u8 max_slots;
1783 u8 max_interrupters;
1784 u8 max_ports;
1785 u8 isoc_threshold;
1787 u32 imod_interval;
1788 int event_ring_max;
1790 int page_size;
1792 int page_shift;
1794 int msix_count;
1796 struct clk *clk;
1797 struct clk *reg_clk;
1799 struct reset_control *reset;
1801 struct xhci_device_context_array *dcbaa;
1802 struct xhci_ring *cmd_ring;
1803 unsigned int cmd_ring_state;
1807 struct list_head cmd_list;
1808 unsigned int cmd_ring_reserved_trbs;
1809 struct delayed_work cmd_timer;
1810 struct completion cmd_ring_stop_completion;
1811 struct xhci_command *current_cmd;
1812 struct xhci_ring *event_ring;
1813 struct xhci_erst erst;
1815 struct xhci_scratchpad *scratchpad;
1817 struct list_head lpm_failed_devs;
1821 struct mutex mutex;
1823 struct xhci_command *lpm_command;
1825 struct xhci_virt_device *devs[MAX_HC_SLOTS];
1827 struct xhci_root_port_bw_info *rh_bw;
1830 struct dma_pool *device_pool;
1831 struct dma_pool *segment_pool;
1832 struct dma_pool *small_streams_pool;
1833 struct dma_pool *medium_streams_pool;
1836 unsigned int xhc_state;
1838 u32 command;
1839 struct s3_save s3;
1855 unsigned long long quirks;
1913 unsigned int num_active_eps;
1914 unsigned int limit_active_eps;
1915 struct xhci_port *hw_ports;
1916 struct xhci_hub usb2_rhub;
1917 struct xhci_hub usb3_rhub;
1919 unsigned hw_lpm_support:1;
1921 unsigned broken_suspend:1;
1923 u32 *ext_caps;
1924 unsigned int num_ext_caps;
1926 struct xhci_port_cap *port_caps;
1927 unsigned int num_port_caps;
1929 struct timer_list comp_mode_recovery_timer;
1930 u32 port_status_u0;
1931 u16 test_mode;
1935 struct dentry *debugfs_root;
1936 struct dentry *debugfs_slots;
1937 struct list_head regset_list;
1939 void *dbc;