• Home
  • Raw
  • Download

Lines Matching defs:xhci_hcd

1746 struct xhci_hcd {  struct
1747 struct usb_hcd *main_hcd;
1748 struct usb_hcd *shared_hcd;
1750 struct xhci_cap_regs __iomem *cap_regs;
1751 struct xhci_op_regs __iomem *op_regs;
1752 struct xhci_run_regs __iomem *run_regs;
1753 struct xhci_doorbell_array __iomem *dba;
1755 struct xhci_intr_reg __iomem *ir_set;
1758 __u32 hcs_params1;
1759 __u32 hcs_params2;
1760 __u32 hcs_params3;
1761 __u32 hcc_params;
1762 __u32 hcc_params2;
1764 spinlock_t lock;
1767 u8 sbrn;
1768 u16 hci_version;
1769 u8 max_slots;
1770 u8 max_interrupters;
1771 u8 max_ports;
1772 u8 isoc_threshold;
1774 u32 imod_interval;
1775 int event_ring_max;
1777 int page_size;
1779 int page_shift;
1781 int msix_count;
1783 struct clk *clk;
1784 struct clk *reg_clk;
1786 struct reset_control *reset;
1788 struct xhci_device_context_array *dcbaa;
1789 struct xhci_ring *cmd_ring;
1790 unsigned int cmd_ring_state;
1794 struct list_head cmd_list;
1795 unsigned int cmd_ring_reserved_trbs;
1796 struct delayed_work cmd_timer;
1797 struct completion cmd_ring_stop_completion;
1798 struct xhci_command *current_cmd;
1799 struct xhci_ring *event_ring;
1800 struct xhci_erst erst;
1802 struct xhci_scratchpad *scratchpad;
1804 struct list_head lpm_failed_devs;
1808 struct mutex mutex;
1810 struct xhci_command *lpm_command;
1812 struct xhci_virt_device *devs[MAX_HC_SLOTS];
1814 struct xhci_root_port_bw_info *rh_bw;
1817 struct dma_pool *device_pool;
1818 struct dma_pool *segment_pool;
1819 struct dma_pool *small_streams_pool;
1820 struct dma_pool *medium_streams_pool;
1823 unsigned int xhc_state;
1824 unsigned long run_graceperiod;
1825 u32 command;
1826 struct s3_save s3;
1842 unsigned long long quirks;
1899 unsigned int num_active_eps;
1900 unsigned int limit_active_eps;
1901 struct xhci_port *hw_ports;
1902 struct xhci_hub usb2_rhub;
1903 struct xhci_hub usb3_rhub;
1905 unsigned hw_lpm_support:1;
1907 unsigned broken_suspend:1;
1909 u32 *ext_caps;
1910 unsigned int num_ext_caps;
1912 struct xhci_port_cap *port_caps;
1913 unsigned int num_port_caps;
1915 struct timer_list comp_mode_recovery_timer;
1916 u32 port_status_u0;
1917 u16 test_mode;
1944 static inline struct xhci_hcd *hcd_to_xhci(struct usb_hcd *hcd) in hcd_to_xhci() argument