Lines Matching defs:dwc2_hsotg
1008 struct dwc2_hsotg { struct
1025 struct dwc2_hsotg_plat *plat; argument
1026 struct regulator_bulk_data supplies[DWC2_NUM_SUPPLIES];
1027 struct regulator *vbus_supply;
1028 u32 phyif;
1030 spinlock_t lock;
1031 void *priv;
1032 int irq;
1033 struct clk *clk;
1034 struct reset_control *reset;
1035 struct reset_control *reset_ecc;
1037 unsigned int queuing_high_bandwidth:1;
1038 unsigned int srp_success:1;
1040 struct workqueue_struct *wq_otg;
1041 struct work_struct wf_otg;
1042 struct timer_list wkp_timer;
1043 enum dwc2_lx_state lx_state;
1044 struct dwc2_gregs_backup gr_backup;
1045 struct dwc2_dregs_backup dr_backup;
1046 struct dwc2_hregs_backup hr_backup;
1048 struct dentry *debug_root;
1049 struct debugfs_regset32 *regset;
1050 bool needs_byte_swap;
1072 union dwc2_hcd_internal_flags {
1084 } flags;
1086 struct list_head non_periodic_sched_inactive;
1087 struct list_head non_periodic_sched_waiting;
1088 struct list_head non_periodic_sched_active;
1089 struct list_head *non_periodic_qh_ptr;
1090 struct list_head periodic_sched_inactive;
1091 struct list_head periodic_sched_ready;
1092 struct list_head periodic_sched_assigned;
1093 struct list_head periodic_sched_queued;
1094 struct list_head split_order;
1095 u16 periodic_usecs;
1096 unsigned long hs_periodic_bitmap[
1098 u16 periodic_qh_count;
1099 bool bus_suspended;
1100 bool new_connection;
1102 u16 last_frame_num;
1106 u16 *frame_num_array;
1107 u16 *last_frame_num_array;
1108 int frame_num_idx;
1109 int dumped_frame_num_array;
1112 struct list_head free_hc_list;
1113 int periodic_channels;
1114 int non_periodic_channels;
1115 int available_host_channels;
1116 struct dwc2_host_chan *hc_ptr_array[MAX_EPS_CHANNELS];
1117 u8 *status_buf;
1118 dma_addr_t status_buf_dma;
1121 struct delayed_work start_work;
1122 struct delayed_work reset_work;
1123 u8 otg_port;
1124 u32 *frame_list;
1125 dma_addr_t frame_list_dma;
1126 u32 frame_list_sz;
1127 struct kmem_cache *desc_gen_cache;
1128 struct kmem_cache *desc_hsisoc_cache;
1129 struct kmem_cache *unaligned_cache;
1137 struct usb_gadget_driver *driver;
1161 struct dwc2_hsotg_ep *eps_in[MAX_EPS_CHANNELS]; argument
1162 struct dwc2_hsotg_ep *eps_out[MAX_EPS_CHANNELS]; argument
1167 static inline u32 dwc2_readl(struct dwc2_hsotg *hsotg, u32 offset) in dwc2_readl() argument