1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * NVIDIA Tegra XUSB device mode controller
4  *
5  * Copyright (c) 2013-2022, NVIDIA CORPORATION.  All rights reserved.
6  * Copyright (c) 2015, Google Inc.
7  */
8 
9 #include <linux/clk.h>
10 #include <linux/completion.h>
11 #include <linux/delay.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/dmapool.h>
14 #include <linux/interrupt.h>
15 #include <linux/iopoll.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/of.h>
19 #include <linux/of_device.h>
20 #include <linux/phy/phy.h>
21 #include <linux/phy/tegra/xusb.h>
22 #include <linux/pm_domain.h>
23 #include <linux/platform_device.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/reset.h>
27 #include <linux/usb/ch9.h>
28 #include <linux/usb/gadget.h>
29 #include <linux/usb/otg.h>
30 #include <linux/usb/role.h>
31 #include <linux/usb/phy.h>
32 #include <linux/workqueue.h>
33 
34 /* XUSB_DEV registers */
35 #define DB 0x004
36 #define  DB_TARGET_MASK GENMASK(15, 8)
37 #define  DB_TARGET(x) (((x) << 8) & DB_TARGET_MASK)
38 #define  DB_STREAMID_MASK GENMASK(31, 16)
39 #define  DB_STREAMID(x) (((x) << 16) & DB_STREAMID_MASK)
40 #define ERSTSZ 0x008
41 #define  ERSTSZ_ERSTXSZ_SHIFT(x) ((x) * 16)
42 #define  ERSTSZ_ERSTXSZ_MASK GENMASK(15, 0)
43 #define ERSTXBALO(x) (0x010 + 8 * (x))
44 #define ERSTXBAHI(x) (0x014 + 8 * (x))
45 #define ERDPLO 0x020
46 #define  ERDPLO_EHB BIT(3)
47 #define ERDPHI 0x024
48 #define EREPLO 0x028
49 #define  EREPLO_ECS BIT(0)
50 #define  EREPLO_SEGI BIT(1)
51 #define EREPHI 0x02c
52 #define CTRL 0x030
53 #define  CTRL_RUN BIT(0)
54 #define  CTRL_LSE BIT(1)
55 #define  CTRL_IE BIT(4)
56 #define  CTRL_SMI_EVT BIT(5)
57 #define  CTRL_SMI_DSE BIT(6)
58 #define  CTRL_EWE BIT(7)
59 #define  CTRL_DEVADDR_MASK GENMASK(30, 24)
60 #define  CTRL_DEVADDR(x) (((x) << 24) & CTRL_DEVADDR_MASK)
61 #define  CTRL_ENABLE BIT(31)
62 #define ST 0x034
63 #define  ST_RC BIT(0)
64 #define  ST_IP BIT(4)
65 #define RT_IMOD	0x038
66 #define  RT_IMOD_IMODI_MASK GENMASK(15, 0)
67 #define  RT_IMOD_IMODI(x) ((x) & RT_IMOD_IMODI_MASK)
68 #define  RT_IMOD_IMODC_MASK GENMASK(31, 16)
69 #define  RT_IMOD_IMODC(x) (((x) << 16) & RT_IMOD_IMODC_MASK)
70 #define PORTSC 0x03c
71 #define  PORTSC_CCS BIT(0)
72 #define  PORTSC_PED BIT(1)
73 #define  PORTSC_PR BIT(4)
74 #define  PORTSC_PLS_SHIFT 5
75 #define  PORTSC_PLS_MASK GENMASK(8, 5)
76 #define  PORTSC_PLS_U0 0x0
77 #define  PORTSC_PLS_U2 0x2
78 #define  PORTSC_PLS_U3 0x3
79 #define  PORTSC_PLS_DISABLED 0x4
80 #define  PORTSC_PLS_RXDETECT 0x5
81 #define  PORTSC_PLS_INACTIVE 0x6
82 #define  PORTSC_PLS_RESUME 0xf
83 #define  PORTSC_PLS(x) (((x) << PORTSC_PLS_SHIFT) & PORTSC_PLS_MASK)
84 #define  PORTSC_PS_SHIFT 10
85 #define  PORTSC_PS_MASK GENMASK(13, 10)
86 #define  PORTSC_PS_UNDEFINED 0x0
87 #define  PORTSC_PS_FS 0x1
88 #define  PORTSC_PS_LS 0x2
89 #define  PORTSC_PS_HS 0x3
90 #define  PORTSC_PS_SS 0x4
91 #define  PORTSC_LWS BIT(16)
92 #define  PORTSC_CSC BIT(17)
93 #define  PORTSC_WRC BIT(19)
94 #define  PORTSC_PRC BIT(21)
95 #define  PORTSC_PLC BIT(22)
96 #define  PORTSC_CEC BIT(23)
97 #define  PORTSC_WPR BIT(30)
98 #define  PORTSC_CHANGE_MASK (PORTSC_CSC | PORTSC_WRC | PORTSC_PRC | \
99 			     PORTSC_PLC | PORTSC_CEC)
100 #define ECPLO 0x040
101 #define ECPHI 0x044
102 #define MFINDEX 0x048
103 #define  MFINDEX_FRAME_SHIFT 3
104 #define  MFINDEX_FRAME_MASK GENMASK(13, 3)
105 #define PORTPM 0x04c
106 #define  PORTPM_L1S_MASK GENMASK(1, 0)
107 #define  PORTPM_L1S_DROP 0x0
108 #define  PORTPM_L1S_ACCEPT 0x1
109 #define  PORTPM_L1S_NYET 0x2
110 #define  PORTPM_L1S_STALL 0x3
111 #define  PORTPM_L1S(x) ((x) & PORTPM_L1S_MASK)
112 #define  PORTPM_RWE BIT(3)
113 #define  PORTPM_U2TIMEOUT_MASK GENMASK(15, 8)
114 #define  PORTPM_U1TIMEOUT_MASK GENMASK(23, 16)
115 #define  PORTPM_FLA BIT(24)
116 #define  PORTPM_VBA BIT(25)
117 #define  PORTPM_WOC BIT(26)
118 #define  PORTPM_WOD BIT(27)
119 #define  PORTPM_U1E BIT(28)
120 #define  PORTPM_U2E BIT(29)
121 #define  PORTPM_FRWE BIT(30)
122 #define  PORTPM_PNG_CYA BIT(31)
123 #define EP_HALT 0x050
124 #define EP_PAUSE 0x054
125 #define EP_RELOAD 0x058
126 #define EP_STCHG 0x05c
127 #define DEVNOTIF_LO 0x064
128 #define  DEVNOTIF_LO_TRIG BIT(0)
129 #define  DEVNOTIF_LO_TYPE_MASK GENMASK(7, 4)
130 #define  DEVNOTIF_LO_TYPE(x) (((x) << 4)  & DEVNOTIF_LO_TYPE_MASK)
131 #define  DEVNOTIF_LO_TYPE_FUNCTION_WAKE 0x1
132 #define DEVNOTIF_HI 0x068
133 #define PORTHALT 0x06c
134 #define  PORTHALT_HALT_LTSSM BIT(0)
135 #define  PORTHALT_HALT_REJECT BIT(1)
136 #define  PORTHALT_STCHG_REQ BIT(20)
137 #define  PORTHALT_STCHG_INTR_EN BIT(24)
138 #define PORT_TM	0x070
139 #define EP_THREAD_ACTIVE 0x074
140 #define EP_STOPPED 0x078
141 #define HSFSPI_COUNT0 0x100
142 #define HSFSPI_COUNT13 0x134
143 #define  HSFSPI_COUNT13_U2_RESUME_K_DURATION_MASK GENMASK(29, 0)
144 #define  HSFSPI_COUNT13_U2_RESUME_K_DURATION(x) ((x) & \
145 				HSFSPI_COUNT13_U2_RESUME_K_DURATION_MASK)
146 #define BLCG 0x840
147 #define SSPX_CORE_CNT0 0x610
148 #define  SSPX_CORE_CNT0_PING_TBURST_MASK GENMASK(7, 0)
149 #define  SSPX_CORE_CNT0_PING_TBURST(x) ((x) & SSPX_CORE_CNT0_PING_TBURST_MASK)
150 #define SSPX_CORE_CNT30 0x688
151 #define  SSPX_CORE_CNT30_LMPITP_TIMER_MASK GENMASK(19, 0)
152 #define  SSPX_CORE_CNT30_LMPITP_TIMER(x) ((x) & \
153 					SSPX_CORE_CNT30_LMPITP_TIMER_MASK)
154 #define SSPX_CORE_CNT32 0x690
155 #define  SSPX_CORE_CNT32_POLL_TBURST_MAX_MASK GENMASK(7, 0)
156 #define  SSPX_CORE_CNT32_POLL_TBURST_MAX(x) ((x) & \
157 					SSPX_CORE_CNT32_POLL_TBURST_MAX_MASK)
158 #define SSPX_CORE_CNT56 0x6fc
159 #define  SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX_MASK GENMASK(19, 0)
160 #define  SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX(x) ((x) & \
161 				SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX_MASK)
162 #define SSPX_CORE_CNT57 0x700
163 #define  SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX_MASK GENMASK(19, 0)
164 #define  SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX(x) ((x) & \
165 				SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX_MASK)
166 #define SSPX_CORE_CNT65 0x720
167 #define  SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID_MASK GENMASK(19, 0)
168 #define  SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID(x) ((x) & \
169 				SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID_MASK)
170 #define SSPX_CORE_CNT66 0x724
171 #define  SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID_MASK GENMASK(19, 0)
172 #define  SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID(x) ((x) & \
173 				SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID_MASK)
174 #define SSPX_CORE_CNT67 0x728
175 #define  SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID_MASK GENMASK(19, 0)
176 #define  SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID(x) ((x) & \
177 				SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID_MASK)
178 #define SSPX_CORE_CNT72 0x73c
179 #define  SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT_MASK GENMASK(19, 0)
180 #define  SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT(x) ((x) & \
181 				SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT_MASK)
182 #define SSPX_CORE_PADCTL4 0x750
183 #define  SSPX_CORE_PADCTL4_RXDAT_VLD_TIMEOUT_U3_MASK GENMASK(19, 0)
184 #define  SSPX_CORE_PADCTL4_RXDAT_VLD_TIMEOUT_U3(x) ((x) & \
185 				SSPX_CORE_PADCTL4_RXDAT_VLD_TIMEOUT_U3_MASK)
186 #define  BLCG_DFPCI BIT(0)
187 #define  BLCG_UFPCI BIT(1)
188 #define  BLCG_FE BIT(2)
189 #define  BLCG_COREPLL_PWRDN BIT(8)
190 #define  BLCG_IOPLL_0_PWRDN BIT(9)
191 #define  BLCG_IOPLL_1_PWRDN BIT(10)
192 #define  BLCG_IOPLL_2_PWRDN BIT(11)
193 #define  BLCG_ALL 0x1ff
194 #define CFG_DEV_SSPI_XFER 0x858
195 #define  CFG_DEV_SSPI_XFER_ACKTIMEOUT_MASK GENMASK(31, 0)
196 #define  CFG_DEV_SSPI_XFER_ACKTIMEOUT(x) ((x) & \
197 					CFG_DEV_SSPI_XFER_ACKTIMEOUT_MASK)
198 #define CFG_DEV_FE 0x85c
199 #define  CFG_DEV_FE_PORTREGSEL_MASK GENMASK(1, 0)
200 #define  CFG_DEV_FE_PORTREGSEL_SS_PI 1
201 #define  CFG_DEV_FE_PORTREGSEL_HSFS_PI 2
202 #define  CFG_DEV_FE_PORTREGSEL(x) ((x) & CFG_DEV_FE_PORTREGSEL_MASK)
203 #define  CFG_DEV_FE_INFINITE_SS_RETRY BIT(29)
204 
205 /* FPCI registers */
206 #define XUSB_DEV_CFG_1 0x004
207 #define  XUSB_DEV_CFG_1_IO_SPACE_EN BIT(0)
208 #define  XUSB_DEV_CFG_1_MEMORY_SPACE_EN BIT(1)
209 #define  XUSB_DEV_CFG_1_BUS_MASTER_EN BIT(2)
210 #define XUSB_DEV_CFG_4 0x010
211 #define  XUSB_DEV_CFG_4_BASE_ADDR_MASK GENMASK(31, 15)
212 #define XUSB_DEV_CFG_5 0x014
213 
214 /* IPFS registers */
215 #define XUSB_DEV_CONFIGURATION_0 0x180
216 #define  XUSB_DEV_CONFIGURATION_0_EN_FPCI BIT(0)
217 #define XUSB_DEV_INTR_MASK_0 0x188
218 #define  XUSB_DEV_INTR_MASK_0_IP_INT_MASK BIT(16)
219 
220 struct tegra_xudc_ep_context {
221 	__le32 info0;
222 	__le32 info1;
223 	__le32 deq_lo;
224 	__le32 deq_hi;
225 	__le32 tx_info;
226 	__le32 rsvd[11];
227 };
228 
229 #define EP_STATE_DISABLED 0
230 #define EP_STATE_RUNNING 1
231 #define EP_STATE_HALTED 2
232 #define EP_STATE_STOPPED 3
233 #define EP_STATE_ERROR 4
234 
235 #define EP_TYPE_INVALID 0
236 #define EP_TYPE_ISOCH_OUT 1
237 #define EP_TYPE_BULK_OUT 2
238 #define EP_TYPE_INTERRUPT_OUT 3
239 #define EP_TYPE_CONTROL 4
240 #define EP_TYPE_ISCOH_IN 5
241 #define EP_TYPE_BULK_IN 6
242 #define EP_TYPE_INTERRUPT_IN 7
243 
244 #define BUILD_EP_CONTEXT_RW(name, member, shift, mask)			\
245 static inline u32 ep_ctx_read_##name(struct tegra_xudc_ep_context *ctx)	\
246 {									\
247 	return (le32_to_cpu(ctx->member) >> (shift)) & (mask);		\
248 }									\
249 static inline void							\
250 ep_ctx_write_##name(struct tegra_xudc_ep_context *ctx, u32 val)		\
251 {									\
252 	u32 tmp;							\
253 									\
254 	tmp = le32_to_cpu(ctx->member) & ~((mask) << (shift));		\
255 	tmp |= (val & (mask)) << (shift);				\
256 	ctx->member = cpu_to_le32(tmp);					\
257 }
258 
259 BUILD_EP_CONTEXT_RW(state, info0, 0, 0x7)
260 BUILD_EP_CONTEXT_RW(mult, info0, 8, 0x3)
261 BUILD_EP_CONTEXT_RW(max_pstreams, info0, 10, 0x1f)
262 BUILD_EP_CONTEXT_RW(lsa, info0, 15, 0x1)
263 BUILD_EP_CONTEXT_RW(interval, info0, 16, 0xff)
264 BUILD_EP_CONTEXT_RW(cerr, info1, 1, 0x3)
265 BUILD_EP_CONTEXT_RW(type, info1, 3, 0x7)
266 BUILD_EP_CONTEXT_RW(hid, info1, 7, 0x1)
267 BUILD_EP_CONTEXT_RW(max_burst_size, info1, 8, 0xff)
268 BUILD_EP_CONTEXT_RW(max_packet_size, info1, 16, 0xffff)
269 BUILD_EP_CONTEXT_RW(dcs, deq_lo, 0, 0x1)
270 BUILD_EP_CONTEXT_RW(deq_lo, deq_lo, 4, 0xfffffff)
271 BUILD_EP_CONTEXT_RW(deq_hi, deq_hi, 0, 0xffffffff)
272 BUILD_EP_CONTEXT_RW(avg_trb_len, tx_info, 0, 0xffff)
273 BUILD_EP_CONTEXT_RW(max_esit_payload, tx_info, 16, 0xffff)
274 BUILD_EP_CONTEXT_RW(edtla, rsvd[0], 0, 0xffffff)
275 BUILD_EP_CONTEXT_RW(rsvd, rsvd[0], 24, 0x1)
276 BUILD_EP_CONTEXT_RW(partial_td, rsvd[0], 25, 0x1)
277 BUILD_EP_CONTEXT_RW(splitxstate, rsvd[0], 26, 0x1)
278 BUILD_EP_CONTEXT_RW(seq_num, rsvd[0], 27, 0x1f)
279 BUILD_EP_CONTEXT_RW(cerrcnt, rsvd[1], 18, 0x3)
280 BUILD_EP_CONTEXT_RW(data_offset, rsvd[2], 0, 0x1ffff)
281 BUILD_EP_CONTEXT_RW(numtrbs, rsvd[2], 22, 0x1f)
282 BUILD_EP_CONTEXT_RW(devaddr, rsvd[6], 0, 0x7f)
283 
284 static inline u64 ep_ctx_read_deq_ptr(struct tegra_xudc_ep_context *ctx)
285 {
286 	return ((u64)ep_ctx_read_deq_hi(ctx) << 32) |
287 		(ep_ctx_read_deq_lo(ctx) << 4);
288 }
289 
290 static inline void
291 ep_ctx_write_deq_ptr(struct tegra_xudc_ep_context *ctx, u64 addr)
292 {
293 	ep_ctx_write_deq_lo(ctx, lower_32_bits(addr) >> 4);
294 	ep_ctx_write_deq_hi(ctx, upper_32_bits(addr));
295 }
296 
297 struct tegra_xudc_trb {
298 	__le32 data_lo;
299 	__le32 data_hi;
300 	__le32 status;
301 	__le32 control;
302 };
303 
304 #define TRB_TYPE_RSVD 0
305 #define TRB_TYPE_NORMAL 1
306 #define TRB_TYPE_SETUP_STAGE 2
307 #define TRB_TYPE_DATA_STAGE 3
308 #define TRB_TYPE_STATUS_STAGE 4
309 #define TRB_TYPE_ISOCH 5
310 #define TRB_TYPE_LINK 6
311 #define TRB_TYPE_TRANSFER_EVENT 32
312 #define TRB_TYPE_PORT_STATUS_CHANGE_EVENT 34
313 #define TRB_TYPE_STREAM 48
314 #define TRB_TYPE_SETUP_PACKET_EVENT 63
315 
316 #define TRB_CMPL_CODE_INVALID 0
317 #define TRB_CMPL_CODE_SUCCESS 1
318 #define TRB_CMPL_CODE_DATA_BUFFER_ERR 2
319 #define TRB_CMPL_CODE_BABBLE_DETECTED_ERR 3
320 #define TRB_CMPL_CODE_USB_TRANS_ERR 4
321 #define TRB_CMPL_CODE_TRB_ERR 5
322 #define TRB_CMPL_CODE_STALL 6
323 #define TRB_CMPL_CODE_INVALID_STREAM_TYPE_ERR 10
324 #define TRB_CMPL_CODE_SHORT_PACKET 13
325 #define TRB_CMPL_CODE_RING_UNDERRUN 14
326 #define TRB_CMPL_CODE_RING_OVERRUN 15
327 #define TRB_CMPL_CODE_EVENT_RING_FULL_ERR 21
328 #define TRB_CMPL_CODE_STOPPED 26
329 #define TRB_CMPL_CODE_ISOCH_BUFFER_OVERRUN 31
330 #define TRB_CMPL_CODE_STREAM_NUMP_ERROR 219
331 #define TRB_CMPL_CODE_PRIME_PIPE_RECEIVED 220
332 #define TRB_CMPL_CODE_HOST_REJECTED 221
333 #define TRB_CMPL_CODE_CTRL_DIR_ERR 222
334 #define TRB_CMPL_CODE_CTRL_SEQNUM_ERR 223
335 
336 #define BUILD_TRB_RW(name, member, shift, mask)				\
337 static inline u32 trb_read_##name(struct tegra_xudc_trb *trb)		\
338 {									\
339 	return (le32_to_cpu(trb->member) >> (shift)) & (mask);		\
340 }									\
341 static inline void							\
342 trb_write_##name(struct tegra_xudc_trb *trb, u32 val)			\
343 {									\
344 	u32 tmp;							\
345 									\
346 	tmp = le32_to_cpu(trb->member) & ~((mask) << (shift));		\
347 	tmp |= (val & (mask)) << (shift);				\
348 	trb->member = cpu_to_le32(tmp);					\
349 }
350 
351 BUILD_TRB_RW(data_lo, data_lo, 0, 0xffffffff)
352 BUILD_TRB_RW(data_hi, data_hi, 0, 0xffffffff)
353 BUILD_TRB_RW(seq_num, status, 0, 0xffff)
354 BUILD_TRB_RW(transfer_len, status, 0, 0xffffff)
355 BUILD_TRB_RW(td_size, status, 17, 0x1f)
356 BUILD_TRB_RW(cmpl_code, status, 24, 0xff)
357 BUILD_TRB_RW(cycle, control, 0, 0x1)
358 BUILD_TRB_RW(toggle_cycle, control, 1, 0x1)
359 BUILD_TRB_RW(isp, control, 2, 0x1)
360 BUILD_TRB_RW(chain, control, 4, 0x1)
361 BUILD_TRB_RW(ioc, control, 5, 0x1)
362 BUILD_TRB_RW(type, control, 10, 0x3f)
363 BUILD_TRB_RW(stream_id, control, 16, 0xffff)
364 BUILD_TRB_RW(endpoint_id, control, 16, 0x1f)
365 BUILD_TRB_RW(tlbpc, control, 16, 0xf)
366 BUILD_TRB_RW(data_stage_dir, control, 16, 0x1)
367 BUILD_TRB_RW(frame_id, control, 20, 0x7ff)
368 BUILD_TRB_RW(sia, control, 31, 0x1)
369 
370 static inline u64 trb_read_data_ptr(struct tegra_xudc_trb *trb)
371 {
372 	return ((u64)trb_read_data_hi(trb) << 32) |
373 		trb_read_data_lo(trb);
374 }
375 
376 static inline void trb_write_data_ptr(struct tegra_xudc_trb *trb, u64 addr)
377 {
378 	trb_write_data_lo(trb, lower_32_bits(addr));
379 	trb_write_data_hi(trb, upper_32_bits(addr));
380 }
381 
382 struct tegra_xudc_request {
383 	struct usb_request usb_req;
384 
385 	size_t buf_queued;
386 	unsigned int trbs_queued;
387 	unsigned int trbs_needed;
388 	bool need_zlp;
389 
390 	struct tegra_xudc_trb *first_trb;
391 	struct tegra_xudc_trb *last_trb;
392 
393 	struct list_head list;
394 };
395 
396 struct tegra_xudc_ep {
397 	struct tegra_xudc *xudc;
398 	struct usb_ep usb_ep;
399 	unsigned int index;
400 	char name[8];
401 
402 	struct tegra_xudc_ep_context *context;
403 
404 #define XUDC_TRANSFER_RING_SIZE 64
405 	struct tegra_xudc_trb *transfer_ring;
406 	dma_addr_t transfer_ring_phys;
407 
408 	unsigned int enq_ptr;
409 	unsigned int deq_ptr;
410 	bool pcs;
411 	bool ring_full;
412 	bool stream_rejected;
413 
414 	struct list_head queue;
415 	const struct usb_endpoint_descriptor *desc;
416 	const struct usb_ss_ep_comp_descriptor *comp_desc;
417 };
418 
419 struct tegra_xudc_sel_timing {
420 	__u8 u1sel;
421 	__u8 u1pel;
422 	__le16 u2sel;
423 	__le16 u2pel;
424 };
425 
426 enum tegra_xudc_setup_state {
427 	WAIT_FOR_SETUP,
428 	DATA_STAGE_XFER,
429 	DATA_STAGE_RECV,
430 	STATUS_STAGE_XFER,
431 	STATUS_STAGE_RECV,
432 };
433 
434 struct tegra_xudc_setup_packet {
435 	struct usb_ctrlrequest ctrl_req;
436 	unsigned int seq_num;
437 };
438 
439 struct tegra_xudc_save_regs {
440 	u32 ctrl;
441 	u32 portpm;
442 };
443 
444 struct tegra_xudc {
445 	struct device *dev;
446 	const struct tegra_xudc_soc *soc;
447 	struct tegra_xusb_padctl *padctl;
448 
449 	spinlock_t lock;
450 
451 	struct usb_gadget gadget;
452 	struct usb_gadget_driver *driver;
453 
454 #define XUDC_NR_EVENT_RINGS 2
455 #define XUDC_EVENT_RING_SIZE 4096
456 	struct tegra_xudc_trb *event_ring[XUDC_NR_EVENT_RINGS];
457 	dma_addr_t event_ring_phys[XUDC_NR_EVENT_RINGS];
458 	unsigned int event_ring_index;
459 	unsigned int event_ring_deq_ptr;
460 	bool ccs;
461 
462 #define XUDC_NR_EPS 32
463 	struct tegra_xudc_ep ep[XUDC_NR_EPS];
464 	struct tegra_xudc_ep_context *ep_context;
465 	dma_addr_t ep_context_phys;
466 
467 	struct device *genpd_dev_device;
468 	struct device *genpd_dev_ss;
469 	struct device_link *genpd_dl_device;
470 	struct device_link *genpd_dl_ss;
471 
472 	struct dma_pool *transfer_ring_pool;
473 
474 	bool queued_setup_packet;
475 	struct tegra_xudc_setup_packet setup_packet;
476 	enum tegra_xudc_setup_state setup_state;
477 	u16 setup_seq_num;
478 
479 	u16 dev_addr;
480 	u16 isoch_delay;
481 	struct tegra_xudc_sel_timing sel_timing;
482 	u8 test_mode_pattern;
483 	u16 status_buf;
484 	struct tegra_xudc_request *ep0_req;
485 
486 	bool pullup;
487 
488 	unsigned int nr_enabled_eps;
489 	unsigned int nr_isoch_eps;
490 
491 	unsigned int device_state;
492 	unsigned int resume_state;
493 
494 	int irq;
495 
496 	void __iomem *base;
497 	resource_size_t phys_base;
498 	void __iomem *ipfs;
499 	void __iomem *fpci;
500 
501 	struct regulator_bulk_data *supplies;
502 
503 	struct clk_bulk_data *clks;
504 
505 	bool device_mode;
506 	struct work_struct usb_role_sw_work;
507 
508 	struct phy **usb3_phy;
509 	struct phy *curr_usb3_phy;
510 	struct phy **utmi_phy;
511 	struct phy *curr_utmi_phy;
512 
513 	struct tegra_xudc_save_regs saved_regs;
514 	bool suspended;
515 	bool powergated;
516 
517 	struct usb_phy **usbphy;
518 	struct usb_phy *curr_usbphy;
519 	struct notifier_block vbus_nb;
520 
521 	struct completion disconnect_complete;
522 
523 	bool selfpowered;
524 
525 #define TOGGLE_VBUS_WAIT_MS 100
526 	struct delayed_work plc_reset_work;
527 	bool wait_csc;
528 
529 	struct delayed_work port_reset_war_work;
530 	bool wait_for_sec_prc;
531 };
532 
533 #define XUDC_TRB_MAX_BUFFER_SIZE 65536
534 #define XUDC_MAX_ISOCH_EPS 4
535 #define XUDC_INTERRUPT_MODERATION_US 0
536 
537 static struct usb_endpoint_descriptor tegra_xudc_ep0_desc = {
538 	.bLength = USB_DT_ENDPOINT_SIZE,
539 	.bDescriptorType = USB_DT_ENDPOINT,
540 	.bEndpointAddress = 0,
541 	.bmAttributes = USB_ENDPOINT_XFER_CONTROL,
542 	.wMaxPacketSize = cpu_to_le16(64),
543 };
544 
545 struct tegra_xudc_soc {
546 	const char * const *supply_names;
547 	unsigned int num_supplies;
548 	const char * const *clock_names;
549 	unsigned int num_clks;
550 	unsigned int num_phys;
551 	bool u1_enable;
552 	bool u2_enable;
553 	bool lpm_enable;
554 	bool invalid_seq_num;
555 	bool pls_quirk;
556 	bool port_reset_quirk;
557 	bool port_speed_quirk;
558 	bool has_ipfs;
559 };
560 
561 static inline u32 fpci_readl(struct tegra_xudc *xudc, unsigned int offset)
562 {
563 	return readl(xudc->fpci + offset);
564 }
565 
566 static inline void fpci_writel(struct tegra_xudc *xudc, u32 val,
567 			       unsigned int offset)
568 {
569 	writel(val, xudc->fpci + offset);
570 }
571 
572 static inline u32 ipfs_readl(struct tegra_xudc *xudc, unsigned int offset)
573 {
574 	return readl(xudc->ipfs + offset);
575 }
576 
577 static inline void ipfs_writel(struct tegra_xudc *xudc, u32 val,
578 			       unsigned int offset)
579 {
580 	writel(val, xudc->ipfs + offset);
581 }
582 
583 static inline u32 xudc_readl(struct tegra_xudc *xudc, unsigned int offset)
584 {
585 	return readl(xudc->base + offset);
586 }
587 
588 static inline void xudc_writel(struct tegra_xudc *xudc, u32 val,
589 			       unsigned int offset)
590 {
591 	writel(val, xudc->base + offset);
592 }
593 
594 static inline int xudc_readl_poll(struct tegra_xudc *xudc,
595 				  unsigned int offset, u32 mask, u32 val)
596 {
597 	u32 regval;
598 
599 	return readl_poll_timeout_atomic(xudc->base + offset, regval,
600 					 (regval & mask) == val, 1, 100);
601 }
602 
603 static inline struct tegra_xudc *to_xudc(struct usb_gadget *gadget)
604 {
605 	return container_of(gadget, struct tegra_xudc, gadget);
606 }
607 
608 static inline struct tegra_xudc_ep *to_xudc_ep(struct usb_ep *ep)
609 {
610 	return container_of(ep, struct tegra_xudc_ep, usb_ep);
611 }
612 
613 static inline struct tegra_xudc_request *to_xudc_req(struct usb_request *req)
614 {
615 	return container_of(req, struct tegra_xudc_request, usb_req);
616 }
617 
618 static inline void dump_trb(struct tegra_xudc *xudc, const char *type,
619 			    struct tegra_xudc_trb *trb)
620 {
621 	dev_dbg(xudc->dev,
622 		"%s: %p, lo = %#x, hi = %#x, status = %#x, control = %#x\n",
623 		type, trb, trb->data_lo, trb->data_hi, trb->status,
624 		trb->control);
625 }
626 
627 static void tegra_xudc_limit_port_speed(struct tegra_xudc *xudc)
628 {
629 	u32 val;
630 
631 	/* limit port speed to gen 1 */
632 	val = xudc_readl(xudc, SSPX_CORE_CNT56);
633 	val &= ~(SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX_MASK);
634 	val |= SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX(0x260);
635 	xudc_writel(xudc, val, SSPX_CORE_CNT56);
636 
637 	val = xudc_readl(xudc, SSPX_CORE_CNT57);
638 	val &= ~(SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX_MASK);
639 	val |= SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX(0x6D6);
640 	xudc_writel(xudc, val, SSPX_CORE_CNT57);
641 
642 	val = xudc_readl(xudc, SSPX_CORE_CNT65);
643 	val &= ~(SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID_MASK);
644 	val |= SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID(0x4B0);
645 	xudc_writel(xudc, val, SSPX_CORE_CNT66);
646 
647 	val = xudc_readl(xudc, SSPX_CORE_CNT66);
648 	val &= ~(SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID_MASK);
649 	val |= SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID(0x4B0);
650 	xudc_writel(xudc, val, SSPX_CORE_CNT66);
651 
652 	val = xudc_readl(xudc, SSPX_CORE_CNT67);
653 	val &= ~(SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID_MASK);
654 	val |= SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID(0x4B0);
655 	xudc_writel(xudc, val, SSPX_CORE_CNT67);
656 
657 	val = xudc_readl(xudc, SSPX_CORE_CNT72);
658 	val &= ~(SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT_MASK);
659 	val |= SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT(0x10);
660 	xudc_writel(xudc, val, SSPX_CORE_CNT72);
661 }
662 
663 static void tegra_xudc_restore_port_speed(struct tegra_xudc *xudc)
664 {
665 	u32 val;
666 
667 	/* restore port speed to gen2 */
668 	val = xudc_readl(xudc, SSPX_CORE_CNT56);
669 	val &= ~(SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX_MASK);
670 	val |= SSPX_CORE_CNT56_SCD_BIT0_TRPT_MAX(0x438);
671 	xudc_writel(xudc, val, SSPX_CORE_CNT56);
672 
673 	val = xudc_readl(xudc, SSPX_CORE_CNT57);
674 	val &= ~(SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX_MASK);
675 	val |= SSPX_CORE_CNT57_SCD_BIT1_TRPT_MAX(0x528);
676 	xudc_writel(xudc, val, SSPX_CORE_CNT57);
677 
678 	val = xudc_readl(xudc, SSPX_CORE_CNT65);
679 	val &= ~(SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID_MASK);
680 	val |= SSPX_CORE_CNT65_TX_SCD_END_TRPT_MID(0xE10);
681 	xudc_writel(xudc, val, SSPX_CORE_CNT66);
682 
683 	val = xudc_readl(xudc, SSPX_CORE_CNT66);
684 	val &= ~(SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID_MASK);
685 	val |= SSPX_CORE_CNT66_TX_SCD_BIT0_TRPT_MID(0x348);
686 	xudc_writel(xudc, val, SSPX_CORE_CNT66);
687 
688 	val = xudc_readl(xudc, SSPX_CORE_CNT67);
689 	val &= ~(SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID_MASK);
690 	val |= SSPX_CORE_CNT67_TX_SCD_BIT1_TRPT_MID(0x5a0);
691 	xudc_writel(xudc, val, SSPX_CORE_CNT67);
692 
693 	val = xudc_readl(xudc, SSPX_CORE_CNT72);
694 	val &= ~(SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT_MASK);
695 	val |= SSPX_CORE_CNT72_SCD_LFPS_TIMEOUT(0x1c21);
696 	xudc_writel(xudc, val, SSPX_CORE_CNT72);
697 }
698 
699 static void tegra_xudc_device_mode_on(struct tegra_xudc *xudc)
700 {
701 	int err;
702 
703 	pm_runtime_get_sync(xudc->dev);
704 
705 	tegra_phy_xusb_utmi_pad_power_on(xudc->curr_utmi_phy);
706 
707 	err = phy_power_on(xudc->curr_utmi_phy);
708 	if (err < 0)
709 		dev_err(xudc->dev, "UTMI power on failed: %d\n", err);
710 
711 	err = phy_power_on(xudc->curr_usb3_phy);
712 	if (err < 0)
713 		dev_err(xudc->dev, "USB3 PHY power on failed: %d\n", err);
714 
715 	dev_dbg(xudc->dev, "device mode on\n");
716 
717 	phy_set_mode_ext(xudc->curr_utmi_phy, PHY_MODE_USB_OTG,
718 			 USB_ROLE_DEVICE);
719 }
720 
721 static void tegra_xudc_device_mode_off(struct tegra_xudc *xudc)
722 {
723 	bool connected = false;
724 	u32 pls, val;
725 	int err;
726 
727 	dev_dbg(xudc->dev, "device mode off\n");
728 
729 	connected = !!(xudc_readl(xudc, PORTSC) & PORTSC_CCS);
730 
731 	reinit_completion(&xudc->disconnect_complete);
732 
733 	if (xudc->soc->port_speed_quirk)
734 		tegra_xudc_restore_port_speed(xudc);
735 
736 	phy_set_mode_ext(xudc->curr_utmi_phy, PHY_MODE_USB_OTG, USB_ROLE_NONE);
737 
738 	pls = (xudc_readl(xudc, PORTSC) & PORTSC_PLS_MASK) >>
739 		PORTSC_PLS_SHIFT;
740 
741 	/* Direct link to U0 if disconnected in RESUME or U2. */
742 	if (xudc->soc->pls_quirk && xudc->gadget.speed == USB_SPEED_SUPER &&
743 	    (pls == PORTSC_PLS_RESUME || pls == PORTSC_PLS_U2)) {
744 		val = xudc_readl(xudc, PORTPM);
745 		val |= PORTPM_FRWE;
746 		xudc_writel(xudc, val, PORTPM);
747 
748 		val = xudc_readl(xudc, PORTSC);
749 		val &= ~(PORTSC_CHANGE_MASK | PORTSC_PLS_MASK);
750 		val |= PORTSC_LWS | PORTSC_PLS(PORTSC_PLS_U0);
751 		xudc_writel(xudc, val, PORTSC);
752 	}
753 
754 	/* Wait for disconnect event. */
755 	if (connected)
756 		wait_for_completion(&xudc->disconnect_complete);
757 
758 	/* Make sure interrupt handler has completed before powergating. */
759 	synchronize_irq(xudc->irq);
760 
761 	tegra_phy_xusb_utmi_pad_power_down(xudc->curr_utmi_phy);
762 
763 	err = phy_power_off(xudc->curr_utmi_phy);
764 	if (err < 0)
765 		dev_err(xudc->dev, "UTMI PHY power off failed: %d\n", err);
766 
767 	err = phy_power_off(xudc->curr_usb3_phy);
768 	if (err < 0)
769 		dev_err(xudc->dev, "USB3 PHY power off failed: %d\n", err);
770 
771 	pm_runtime_put(xudc->dev);
772 }
773 
774 static void tegra_xudc_usb_role_sw_work(struct work_struct *work)
775 {
776 	struct tegra_xudc *xudc = container_of(work, struct tegra_xudc,
777 					       usb_role_sw_work);
778 
779 	if (xudc->device_mode)
780 		tegra_xudc_device_mode_on(xudc);
781 	else
782 		tegra_xudc_device_mode_off(xudc);
783 }
784 
785 static int tegra_xudc_get_phy_index(struct tegra_xudc *xudc,
786 					      struct usb_phy *usbphy)
787 {
788 	unsigned int i;
789 
790 	for (i = 0; i < xudc->soc->num_phys; i++) {
791 		if (xudc->usbphy[i] && usbphy == xudc->usbphy[i])
792 			return i;
793 	}
794 
795 	dev_info(xudc->dev, "phy index could not be found for shared USB PHY");
796 	return -1;
797 }
798 
799 static void tegra_xudc_update_data_role(struct tegra_xudc *xudc,
800 					      struct usb_phy *usbphy)
801 {
802 	int phy_index;
803 
804 	if ((xudc->device_mode && usbphy->last_event == USB_EVENT_VBUS) ||
805 	    (!xudc->device_mode && usbphy->last_event != USB_EVENT_VBUS)) {
806 		dev_dbg(xudc->dev, "Same role(%d) received. Ignore",
807 			xudc->device_mode);
808 		return;
809 	}
810 
811 	xudc->device_mode = (usbphy->last_event == USB_EVENT_VBUS) ? true :
812 								     false;
813 
814 	phy_index = tegra_xudc_get_phy_index(xudc, usbphy);
815 	dev_dbg(xudc->dev, "%s(): current phy index is %d\n", __func__,
816 		phy_index);
817 
818 	if (!xudc->suspended && phy_index != -1) {
819 		xudc->curr_utmi_phy = xudc->utmi_phy[phy_index];
820 		xudc->curr_usb3_phy = xudc->usb3_phy[phy_index];
821 		xudc->curr_usbphy = usbphy;
822 		schedule_work(&xudc->usb_role_sw_work);
823 	}
824 }
825 
826 static int tegra_xudc_vbus_notify(struct notifier_block *nb,
827 					 unsigned long action, void *data)
828 {
829 	struct tegra_xudc *xudc = container_of(nb, struct tegra_xudc,
830 					       vbus_nb);
831 	struct usb_phy *usbphy = (struct usb_phy *)data;
832 
833 	dev_dbg(xudc->dev, "%s(): event is %d\n", __func__, usbphy->last_event);
834 
835 	tegra_xudc_update_data_role(xudc, usbphy);
836 
837 	return NOTIFY_OK;
838 }
839 
840 static void tegra_xudc_plc_reset_work(struct work_struct *work)
841 {
842 	struct delayed_work *dwork = to_delayed_work(work);
843 	struct tegra_xudc *xudc = container_of(dwork, struct tegra_xudc,
844 					       plc_reset_work);
845 	unsigned long flags;
846 
847 	spin_lock_irqsave(&xudc->lock, flags);
848 
849 	if (xudc->wait_csc) {
850 		u32 pls = (xudc_readl(xudc, PORTSC) & PORTSC_PLS_MASK) >>
851 			PORTSC_PLS_SHIFT;
852 
853 		if (pls == PORTSC_PLS_INACTIVE) {
854 			dev_info(xudc->dev, "PLS = Inactive. Toggle VBUS\n");
855 			phy_set_mode_ext(xudc->curr_utmi_phy, PHY_MODE_USB_OTG,
856 					 USB_ROLE_NONE);
857 			phy_set_mode_ext(xudc->curr_utmi_phy, PHY_MODE_USB_OTG,
858 					 USB_ROLE_DEVICE);
859 
860 			xudc->wait_csc = false;
861 		}
862 	}
863 
864 	spin_unlock_irqrestore(&xudc->lock, flags);
865 }
866 
867 static void tegra_xudc_port_reset_war_work(struct work_struct *work)
868 {
869 	struct delayed_work *dwork = to_delayed_work(work);
870 	struct tegra_xudc *xudc =
871 		container_of(dwork, struct tegra_xudc, port_reset_war_work);
872 	unsigned long flags;
873 	u32 pls;
874 	int ret;
875 
876 	spin_lock_irqsave(&xudc->lock, flags);
877 
878 	if (xudc->device_mode && xudc->wait_for_sec_prc) {
879 		pls = (xudc_readl(xudc, PORTSC) & PORTSC_PLS_MASK) >>
880 			PORTSC_PLS_SHIFT;
881 		dev_dbg(xudc->dev, "pls = %x\n", pls);
882 
883 		if (pls == PORTSC_PLS_DISABLED) {
884 			dev_dbg(xudc->dev, "toggle vbus\n");
885 			/* PRC doesn't complete in 100ms, toggle the vbus */
886 			ret = tegra_phy_xusb_utmi_port_reset(
887 				xudc->curr_utmi_phy);
888 			if (ret == 1)
889 				xudc->wait_for_sec_prc = 0;
890 		}
891 	}
892 
893 	spin_unlock_irqrestore(&xudc->lock, flags);
894 }
895 
896 static dma_addr_t trb_virt_to_phys(struct tegra_xudc_ep *ep,
897 				   struct tegra_xudc_trb *trb)
898 {
899 	unsigned int index;
900 
901 	index = trb - ep->transfer_ring;
902 
903 	if (WARN_ON(index >= XUDC_TRANSFER_RING_SIZE))
904 		return 0;
905 
906 	return (ep->transfer_ring_phys + index * sizeof(*trb));
907 }
908 
909 static struct tegra_xudc_trb *trb_phys_to_virt(struct tegra_xudc_ep *ep,
910 					       dma_addr_t addr)
911 {
912 	struct tegra_xudc_trb *trb;
913 	unsigned int index;
914 
915 	index = (addr - ep->transfer_ring_phys) / sizeof(*trb);
916 
917 	if (WARN_ON(index >= XUDC_TRANSFER_RING_SIZE))
918 		return NULL;
919 
920 	trb = &ep->transfer_ring[index];
921 
922 	return trb;
923 }
924 
925 static void ep_reload(struct tegra_xudc *xudc, unsigned int ep)
926 {
927 	xudc_writel(xudc, BIT(ep), EP_RELOAD);
928 	xudc_readl_poll(xudc, EP_RELOAD, BIT(ep), 0);
929 }
930 
931 static void ep_pause(struct tegra_xudc *xudc, unsigned int ep)
932 {
933 	u32 val;
934 
935 	val = xudc_readl(xudc, EP_PAUSE);
936 	if (val & BIT(ep))
937 		return;
938 	val |= BIT(ep);
939 
940 	xudc_writel(xudc, val, EP_PAUSE);
941 
942 	xudc_readl_poll(xudc, EP_STCHG, BIT(ep), BIT(ep));
943 
944 	xudc_writel(xudc, BIT(ep), EP_STCHG);
945 }
946 
947 static void ep_unpause(struct tegra_xudc *xudc, unsigned int ep)
948 {
949 	u32 val;
950 
951 	val = xudc_readl(xudc, EP_PAUSE);
952 	if (!(val & BIT(ep)))
953 		return;
954 	val &= ~BIT(ep);
955 
956 	xudc_writel(xudc, val, EP_PAUSE);
957 
958 	xudc_readl_poll(xudc, EP_STCHG, BIT(ep), BIT(ep));
959 
960 	xudc_writel(xudc, BIT(ep), EP_STCHG);
961 }
962 
963 static void ep_unpause_all(struct tegra_xudc *xudc)
964 {
965 	u32 val;
966 
967 	val = xudc_readl(xudc, EP_PAUSE);
968 
969 	xudc_writel(xudc, 0, EP_PAUSE);
970 
971 	xudc_readl_poll(xudc, EP_STCHG, val, val);
972 
973 	xudc_writel(xudc, val, EP_STCHG);
974 }
975 
976 static void ep_halt(struct tegra_xudc *xudc, unsigned int ep)
977 {
978 	u32 val;
979 
980 	val = xudc_readl(xudc, EP_HALT);
981 	if (val & BIT(ep))
982 		return;
983 	val |= BIT(ep);
984 	xudc_writel(xudc, val, EP_HALT);
985 
986 	xudc_readl_poll(xudc, EP_STCHG, BIT(ep), BIT(ep));
987 
988 	xudc_writel(xudc, BIT(ep), EP_STCHG);
989 }
990 
991 static void ep_unhalt(struct tegra_xudc *xudc, unsigned int ep)
992 {
993 	u32 val;
994 
995 	val = xudc_readl(xudc, EP_HALT);
996 	if (!(val & BIT(ep)))
997 		return;
998 	val &= ~BIT(ep);
999 	xudc_writel(xudc, val, EP_HALT);
1000 
1001 	xudc_readl_poll(xudc, EP_STCHG, BIT(ep), BIT(ep));
1002 
1003 	xudc_writel(xudc, BIT(ep), EP_STCHG);
1004 }
1005 
1006 static void ep_unhalt_all(struct tegra_xudc *xudc)
1007 {
1008 	u32 val;
1009 
1010 	val = xudc_readl(xudc, EP_HALT);
1011 	if (!val)
1012 		return;
1013 	xudc_writel(xudc, 0, EP_HALT);
1014 
1015 	xudc_readl_poll(xudc, EP_STCHG, val, val);
1016 
1017 	xudc_writel(xudc, val, EP_STCHG);
1018 }
1019 
1020 static void ep_wait_for_stopped(struct tegra_xudc *xudc, unsigned int ep)
1021 {
1022 	xudc_readl_poll(xudc, EP_STOPPED, BIT(ep), BIT(ep));
1023 	xudc_writel(xudc, BIT(ep), EP_STOPPED);
1024 }
1025 
1026 static void ep_wait_for_inactive(struct tegra_xudc *xudc, unsigned int ep)
1027 {
1028 	xudc_readl_poll(xudc, EP_THREAD_ACTIVE, BIT(ep), 0);
1029 }
1030 
1031 static void tegra_xudc_req_done(struct tegra_xudc_ep *ep,
1032 				struct tegra_xudc_request *req, int status)
1033 {
1034 	struct tegra_xudc *xudc = ep->xudc;
1035 
1036 	dev_dbg(xudc->dev, "completing request %p on EP %u with status %d\n",
1037 		 req, ep->index, status);
1038 
1039 	if (likely(req->usb_req.status == -EINPROGRESS))
1040 		req->usb_req.status = status;
1041 
1042 	list_del_init(&req->list);
1043 
1044 	if (usb_endpoint_xfer_control(ep->desc)) {
1045 		usb_gadget_unmap_request(&xudc->gadget, &req->usb_req,
1046 					 (xudc->setup_state ==
1047 					  DATA_STAGE_XFER));
1048 	} else {
1049 		usb_gadget_unmap_request(&xudc->gadget, &req->usb_req,
1050 					 usb_endpoint_dir_in(ep->desc));
1051 	}
1052 
1053 	spin_unlock(&xudc->lock);
1054 	usb_gadget_giveback_request(&ep->usb_ep, &req->usb_req);
1055 	spin_lock(&xudc->lock);
1056 }
1057 
1058 static void tegra_xudc_ep_nuke(struct tegra_xudc_ep *ep, int status)
1059 {
1060 	struct tegra_xudc_request *req;
1061 
1062 	while (!list_empty(&ep->queue)) {
1063 		req = list_first_entry(&ep->queue, struct tegra_xudc_request,
1064 				       list);
1065 		tegra_xudc_req_done(ep, req, status);
1066 	}
1067 }
1068 
1069 static unsigned int ep_available_trbs(struct tegra_xudc_ep *ep)
1070 {
1071 	if (ep->ring_full)
1072 		return 0;
1073 
1074 	if (ep->deq_ptr > ep->enq_ptr)
1075 		return ep->deq_ptr - ep->enq_ptr - 1;
1076 
1077 	return XUDC_TRANSFER_RING_SIZE - (ep->enq_ptr - ep->deq_ptr) - 2;
1078 }
1079 
1080 static void tegra_xudc_queue_one_trb(struct tegra_xudc_ep *ep,
1081 				     struct tegra_xudc_request *req,
1082 				     struct tegra_xudc_trb *trb,
1083 				     bool ioc)
1084 {
1085 	struct tegra_xudc *xudc = ep->xudc;
1086 	dma_addr_t buf_addr;
1087 	size_t len;
1088 
1089 	len = min_t(size_t, XUDC_TRB_MAX_BUFFER_SIZE, req->usb_req.length -
1090 		    req->buf_queued);
1091 	if (len > 0)
1092 		buf_addr = req->usb_req.dma + req->buf_queued;
1093 	else
1094 		buf_addr = 0;
1095 
1096 	trb_write_data_ptr(trb, buf_addr);
1097 
1098 	trb_write_transfer_len(trb, len);
1099 	trb_write_td_size(trb, req->trbs_needed - req->trbs_queued - 1);
1100 
1101 	if (req->trbs_queued == req->trbs_needed - 1 ||
1102 		(req->need_zlp && req->trbs_queued == req->trbs_needed - 2))
1103 		trb_write_chain(trb, 0);
1104 	else
1105 		trb_write_chain(trb, 1);
1106 
1107 	trb_write_ioc(trb, ioc);
1108 
1109 	if (usb_endpoint_dir_out(ep->desc) ||
1110 	    (usb_endpoint_xfer_control(ep->desc) &&
1111 	     (xudc->setup_state == DATA_STAGE_RECV)))
1112 		trb_write_isp(trb, 1);
1113 	else
1114 		trb_write_isp(trb, 0);
1115 
1116 	if (usb_endpoint_xfer_control(ep->desc)) {
1117 		if (xudc->setup_state == DATA_STAGE_XFER ||
1118 		    xudc->setup_state == DATA_STAGE_RECV)
1119 			trb_write_type(trb, TRB_TYPE_DATA_STAGE);
1120 		else
1121 			trb_write_type(trb, TRB_TYPE_STATUS_STAGE);
1122 
1123 		if (xudc->setup_state == DATA_STAGE_XFER ||
1124 		    xudc->setup_state == STATUS_STAGE_XFER)
1125 			trb_write_data_stage_dir(trb, 1);
1126 		else
1127 			trb_write_data_stage_dir(trb, 0);
1128 	} else if (usb_endpoint_xfer_isoc(ep->desc)) {
1129 		trb_write_type(trb, TRB_TYPE_ISOCH);
1130 		trb_write_sia(trb, 1);
1131 		trb_write_frame_id(trb, 0);
1132 		trb_write_tlbpc(trb, 0);
1133 	} else if (usb_ss_max_streams(ep->comp_desc)) {
1134 		trb_write_type(trb, TRB_TYPE_STREAM);
1135 		trb_write_stream_id(trb, req->usb_req.stream_id);
1136 	} else {
1137 		trb_write_type(trb, TRB_TYPE_NORMAL);
1138 		trb_write_stream_id(trb, 0);
1139 	}
1140 
1141 	trb_write_cycle(trb, ep->pcs);
1142 
1143 	req->trbs_queued++;
1144 	req->buf_queued += len;
1145 
1146 	dump_trb(xudc, "TRANSFER", trb);
1147 }
1148 
1149 static unsigned int tegra_xudc_queue_trbs(struct tegra_xudc_ep *ep,
1150 					  struct tegra_xudc_request *req)
1151 {
1152 	unsigned int i, count, available;
1153 	bool wait_td = false;
1154 
1155 	available = ep_available_trbs(ep);
1156 	count = req->trbs_needed - req->trbs_queued;
1157 	if (available < count) {
1158 		count = available;
1159 		ep->ring_full = true;
1160 	}
1161 
1162 	/*
1163 	 * To generate zero-length packet on USB bus, SW needs schedule a
1164 	 * standalone zero-length TD. According to HW's behavior, SW needs
1165 	 * to schedule TDs in different ways for different endpoint types.
1166 	 *
1167 	 * For control endpoint:
1168 	 * - Data stage TD (IOC = 1, CH = 0)
1169 	 * - Ring doorbell and wait transfer event
1170 	 * - Data stage TD for ZLP (IOC = 1, CH = 0)
1171 	 * - Ring doorbell
1172 	 *
1173 	 * For bulk and interrupt endpoints:
1174 	 * - Normal transfer TD (IOC = 0, CH = 0)
1175 	 * - Normal transfer TD for ZLP (IOC = 1, CH = 0)
1176 	 * - Ring doorbell
1177 	 */
1178 
1179 	if (req->need_zlp && usb_endpoint_xfer_control(ep->desc) && count > 1)
1180 		wait_td = true;
1181 
1182 	if (!req->first_trb)
1183 		req->first_trb = &ep->transfer_ring[ep->enq_ptr];
1184 
1185 	for (i = 0; i < count; i++) {
1186 		struct tegra_xudc_trb *trb = &ep->transfer_ring[ep->enq_ptr];
1187 		bool ioc = false;
1188 
1189 		if ((i == count - 1) || (wait_td && i == count - 2))
1190 			ioc = true;
1191 
1192 		tegra_xudc_queue_one_trb(ep, req, trb, ioc);
1193 		req->last_trb = trb;
1194 
1195 		ep->enq_ptr++;
1196 		if (ep->enq_ptr == XUDC_TRANSFER_RING_SIZE - 1) {
1197 			trb = &ep->transfer_ring[ep->enq_ptr];
1198 			trb_write_cycle(trb, ep->pcs);
1199 			ep->pcs = !ep->pcs;
1200 			ep->enq_ptr = 0;
1201 		}
1202 
1203 		if (ioc)
1204 			break;
1205 	}
1206 
1207 	return count;
1208 }
1209 
1210 static void tegra_xudc_ep_ring_doorbell(struct tegra_xudc_ep *ep)
1211 {
1212 	struct tegra_xudc *xudc = ep->xudc;
1213 	u32 val;
1214 
1215 	if (list_empty(&ep->queue))
1216 		return;
1217 
1218 	val = DB_TARGET(ep->index);
1219 	if (usb_endpoint_xfer_control(ep->desc)) {
1220 		val |= DB_STREAMID(xudc->setup_seq_num);
1221 	} else if (usb_ss_max_streams(ep->comp_desc) > 0) {
1222 		struct tegra_xudc_request *req;
1223 
1224 		/* Don't ring doorbell if the stream has been rejected. */
1225 		if (ep->stream_rejected)
1226 			return;
1227 
1228 		req = list_first_entry(&ep->queue, struct tegra_xudc_request,
1229 				       list);
1230 		val |= DB_STREAMID(req->usb_req.stream_id);
1231 	}
1232 
1233 	dev_dbg(xudc->dev, "ring doorbell: %#x\n", val);
1234 	xudc_writel(xudc, val, DB);
1235 }
1236 
1237 static void tegra_xudc_ep_kick_queue(struct tegra_xudc_ep *ep)
1238 {
1239 	struct tegra_xudc_request *req;
1240 	bool trbs_queued = false;
1241 
1242 	list_for_each_entry(req, &ep->queue, list) {
1243 		if (ep->ring_full)
1244 			break;
1245 
1246 		if (tegra_xudc_queue_trbs(ep, req) > 0)
1247 			trbs_queued = true;
1248 	}
1249 
1250 	if (trbs_queued)
1251 		tegra_xudc_ep_ring_doorbell(ep);
1252 }
1253 
1254 static int
1255 __tegra_xudc_ep_queue(struct tegra_xudc_ep *ep, struct tegra_xudc_request *req)
1256 {
1257 	struct tegra_xudc *xudc = ep->xudc;
1258 	int err;
1259 
1260 	if (usb_endpoint_xfer_control(ep->desc) && !list_empty(&ep->queue)) {
1261 		dev_err(xudc->dev, "control EP has pending transfers\n");
1262 		return -EINVAL;
1263 	}
1264 
1265 	if (usb_endpoint_xfer_control(ep->desc)) {
1266 		err = usb_gadget_map_request(&xudc->gadget, &req->usb_req,
1267 					     (xudc->setup_state ==
1268 					      DATA_STAGE_XFER));
1269 	} else {
1270 		err = usb_gadget_map_request(&xudc->gadget, &req->usb_req,
1271 					     usb_endpoint_dir_in(ep->desc));
1272 	}
1273 
1274 	if (err < 0) {
1275 		dev_err(xudc->dev, "failed to map request: %d\n", err);
1276 		return err;
1277 	}
1278 
1279 	req->first_trb = NULL;
1280 	req->last_trb = NULL;
1281 	req->buf_queued = 0;
1282 	req->trbs_queued = 0;
1283 	req->need_zlp = false;
1284 	req->trbs_needed = DIV_ROUND_UP(req->usb_req.length,
1285 					XUDC_TRB_MAX_BUFFER_SIZE);
1286 	if (req->usb_req.length == 0)
1287 		req->trbs_needed++;
1288 
1289 	if (!usb_endpoint_xfer_isoc(ep->desc) &&
1290 	    req->usb_req.zero && req->usb_req.length &&
1291 	    ((req->usb_req.length % ep->usb_ep.maxpacket) == 0)) {
1292 		req->trbs_needed++;
1293 		req->need_zlp = true;
1294 	}
1295 
1296 	req->usb_req.status = -EINPROGRESS;
1297 	req->usb_req.actual = 0;
1298 
1299 	list_add_tail(&req->list, &ep->queue);
1300 
1301 	tegra_xudc_ep_kick_queue(ep);
1302 
1303 	return 0;
1304 }
1305 
1306 static int
1307 tegra_xudc_ep_queue(struct usb_ep *usb_ep, struct usb_request *usb_req,
1308 		    gfp_t gfp)
1309 {
1310 	struct tegra_xudc_request *req;
1311 	struct tegra_xudc_ep *ep;
1312 	struct tegra_xudc *xudc;
1313 	unsigned long flags;
1314 	int ret;
1315 
1316 	if (!usb_ep || !usb_req)
1317 		return -EINVAL;
1318 
1319 	ep = to_xudc_ep(usb_ep);
1320 	req = to_xudc_req(usb_req);
1321 	xudc = ep->xudc;
1322 
1323 	spin_lock_irqsave(&xudc->lock, flags);
1324 	if (xudc->powergated || !ep->desc) {
1325 		ret = -ESHUTDOWN;
1326 		goto unlock;
1327 	}
1328 
1329 	ret = __tegra_xudc_ep_queue(ep, req);
1330 unlock:
1331 	spin_unlock_irqrestore(&xudc->lock, flags);
1332 
1333 	return ret;
1334 }
1335 
1336 static void squeeze_transfer_ring(struct tegra_xudc_ep *ep,
1337 				  struct tegra_xudc_request *req)
1338 {
1339 	struct tegra_xudc_trb *trb = req->first_trb;
1340 	bool pcs_enq = trb_read_cycle(trb);
1341 	bool pcs;
1342 
1343 	/*
1344 	 * Clear out all the TRBs part of or after the cancelled request,
1345 	 * and must correct trb cycle bit to the last un-enqueued state.
1346 	 */
1347 	while (trb != &ep->transfer_ring[ep->enq_ptr]) {
1348 		pcs = trb_read_cycle(trb);
1349 		memset(trb, 0, sizeof(*trb));
1350 		trb_write_cycle(trb, !pcs);
1351 		trb++;
1352 
1353 		if (trb_read_type(trb) == TRB_TYPE_LINK)
1354 			trb = ep->transfer_ring;
1355 	}
1356 
1357 	/* Requests will be re-queued at the start of the cancelled request. */
1358 	ep->enq_ptr = req->first_trb - ep->transfer_ring;
1359 	/*
1360 	 * Retrieve the correct cycle bit state from the first trb of
1361 	 * the cancelled request.
1362 	 */
1363 	ep->pcs = pcs_enq;
1364 	ep->ring_full = false;
1365 	list_for_each_entry_continue(req, &ep->queue, list) {
1366 		req->usb_req.status = -EINPROGRESS;
1367 		req->usb_req.actual = 0;
1368 
1369 		req->first_trb = NULL;
1370 		req->last_trb = NULL;
1371 		req->buf_queued = 0;
1372 		req->trbs_queued = 0;
1373 	}
1374 }
1375 
1376 /*
1377  * Determine if the given TRB is in the range [first trb, last trb] for the
1378  * given request.
1379  */
1380 static bool trb_in_request(struct tegra_xudc_ep *ep,
1381 			   struct tegra_xudc_request *req,
1382 			   struct tegra_xudc_trb *trb)
1383 {
1384 	dev_dbg(ep->xudc->dev, "%s: request %p -> %p; trb %p\n", __func__,
1385 		req->first_trb, req->last_trb, trb);
1386 
1387 	if (trb >= req->first_trb && (trb <= req->last_trb ||
1388 				      req->last_trb < req->first_trb))
1389 		return true;
1390 
1391 	if (trb < req->first_trb && trb <= req->last_trb &&
1392 	    req->last_trb < req->first_trb)
1393 		return true;
1394 
1395 	return false;
1396 }
1397 
1398 /*
1399  * Determine if the given TRB is in the range [EP enqueue pointer, first TRB)
1400  * for the given endpoint and request.
1401  */
1402 static bool trb_before_request(struct tegra_xudc_ep *ep,
1403 			       struct tegra_xudc_request *req,
1404 			       struct tegra_xudc_trb *trb)
1405 {
1406 	struct tegra_xudc_trb *enq_trb = &ep->transfer_ring[ep->enq_ptr];
1407 
1408 	dev_dbg(ep->xudc->dev, "%s: request %p -> %p; enq ptr: %p; trb %p\n",
1409 		__func__, req->first_trb, req->last_trb, enq_trb, trb);
1410 
1411 	if (trb < req->first_trb && (enq_trb <= trb ||
1412 				     req->first_trb < enq_trb))
1413 		return true;
1414 
1415 	if (trb > req->first_trb && req->first_trb < enq_trb && enq_trb <= trb)
1416 		return true;
1417 
1418 	return false;
1419 }
1420 
1421 static int
1422 __tegra_xudc_ep_dequeue(struct tegra_xudc_ep *ep,
1423 			struct tegra_xudc_request *req)
1424 {
1425 	struct tegra_xudc *xudc = ep->xudc;
1426 	struct tegra_xudc_request *r = NULL, *iter;
1427 	struct tegra_xudc_trb *deq_trb;
1428 	bool busy, kick_queue = false;
1429 	int ret = 0;
1430 
1431 	/* Make sure the request is actually queued to this endpoint. */
1432 	list_for_each_entry(iter, &ep->queue, list) {
1433 		if (iter != req)
1434 			continue;
1435 		r = iter;
1436 		break;
1437 	}
1438 
1439 	if (!r)
1440 		return -EINVAL;
1441 
1442 	/* Request hasn't been queued in the transfer ring yet. */
1443 	if (!req->trbs_queued) {
1444 		tegra_xudc_req_done(ep, req, -ECONNRESET);
1445 		return 0;
1446 	}
1447 
1448 	/* Halt DMA for this endpoint. */
1449 	if (ep_ctx_read_state(ep->context) == EP_STATE_RUNNING) {
1450 		ep_pause(xudc, ep->index);
1451 		ep_wait_for_inactive(xudc, ep->index);
1452 	}
1453 
1454 	deq_trb = trb_phys_to_virt(ep, ep_ctx_read_deq_ptr(ep->context));
1455 	/* Is the hardware processing the TRB at the dequeue pointer? */
1456 	busy = (trb_read_cycle(deq_trb) == ep_ctx_read_dcs(ep->context));
1457 
1458 	if (trb_in_request(ep, req, deq_trb) && busy) {
1459 		/*
1460 		 * Request has been partially completed or it hasn't
1461 		 * started processing yet.
1462 		 */
1463 		dma_addr_t deq_ptr;
1464 
1465 		squeeze_transfer_ring(ep, req);
1466 
1467 		req->usb_req.actual = ep_ctx_read_edtla(ep->context);
1468 		tegra_xudc_req_done(ep, req, -ECONNRESET);
1469 		kick_queue = true;
1470 
1471 		/* EDTLA is > 0: request has been partially completed */
1472 		if (req->usb_req.actual > 0) {
1473 			/*
1474 			 * Abort the pending transfer and update the dequeue
1475 			 * pointer
1476 			 */
1477 			ep_ctx_write_edtla(ep->context, 0);
1478 			ep_ctx_write_partial_td(ep->context, 0);
1479 			ep_ctx_write_data_offset(ep->context, 0);
1480 
1481 			deq_ptr = trb_virt_to_phys(ep,
1482 					&ep->transfer_ring[ep->enq_ptr]);
1483 
1484 			if (dma_mapping_error(xudc->dev, deq_ptr)) {
1485 				ret = -EINVAL;
1486 			} else {
1487 				ep_ctx_write_deq_ptr(ep->context, deq_ptr);
1488 				ep_ctx_write_dcs(ep->context, ep->pcs);
1489 				ep_reload(xudc, ep->index);
1490 			}
1491 		}
1492 	} else if (trb_before_request(ep, req, deq_trb) && busy) {
1493 		/* Request hasn't started processing yet. */
1494 		squeeze_transfer_ring(ep, req);
1495 
1496 		tegra_xudc_req_done(ep, req, -ECONNRESET);
1497 		kick_queue = true;
1498 	} else {
1499 		/*
1500 		 * Request has completed, but we haven't processed the
1501 		 * completion event yet.
1502 		 */
1503 		tegra_xudc_req_done(ep, req, -ECONNRESET);
1504 		ret = -EINVAL;
1505 	}
1506 
1507 	/* Resume the endpoint. */
1508 	ep_unpause(xudc, ep->index);
1509 
1510 	if (kick_queue)
1511 		tegra_xudc_ep_kick_queue(ep);
1512 
1513 	return ret;
1514 }
1515 
1516 static int
1517 tegra_xudc_ep_dequeue(struct usb_ep *usb_ep, struct usb_request *usb_req)
1518 {
1519 	struct tegra_xudc_request *req;
1520 	struct tegra_xudc_ep *ep;
1521 	struct tegra_xudc *xudc;
1522 	unsigned long flags;
1523 	int ret;
1524 
1525 	if (!usb_ep || !usb_req)
1526 		return -EINVAL;
1527 
1528 	ep = to_xudc_ep(usb_ep);
1529 	req = to_xudc_req(usb_req);
1530 	xudc = ep->xudc;
1531 
1532 	spin_lock_irqsave(&xudc->lock, flags);
1533 
1534 	if (xudc->powergated || !ep->desc) {
1535 		ret = -ESHUTDOWN;
1536 		goto unlock;
1537 	}
1538 
1539 	ret = __tegra_xudc_ep_dequeue(ep, req);
1540 unlock:
1541 	spin_unlock_irqrestore(&xudc->lock, flags);
1542 
1543 	return ret;
1544 }
1545 
1546 static int __tegra_xudc_ep_set_halt(struct tegra_xudc_ep *ep, bool halt)
1547 {
1548 	struct tegra_xudc *xudc = ep->xudc;
1549 
1550 	if (!ep->desc)
1551 		return -EINVAL;
1552 
1553 	if (usb_endpoint_xfer_isoc(ep->desc)) {
1554 		dev_err(xudc->dev, "can't halt isochronous EP\n");
1555 		return -ENOTSUPP;
1556 	}
1557 
1558 	if (!!(xudc_readl(xudc, EP_HALT) & BIT(ep->index)) == halt) {
1559 		dev_dbg(xudc->dev, "EP %u already %s\n", ep->index,
1560 			halt ? "halted" : "not halted");
1561 		return 0;
1562 	}
1563 
1564 	if (halt) {
1565 		ep_halt(xudc, ep->index);
1566 	} else {
1567 		ep_ctx_write_state(ep->context, EP_STATE_DISABLED);
1568 
1569 		ep_reload(xudc, ep->index);
1570 
1571 		ep_ctx_write_state(ep->context, EP_STATE_RUNNING);
1572 		ep_ctx_write_rsvd(ep->context, 0);
1573 		ep_ctx_write_partial_td(ep->context, 0);
1574 		ep_ctx_write_splitxstate(ep->context, 0);
1575 		ep_ctx_write_seq_num(ep->context, 0);
1576 
1577 		ep_reload(xudc, ep->index);
1578 		ep_unpause(xudc, ep->index);
1579 		ep_unhalt(xudc, ep->index);
1580 
1581 		tegra_xudc_ep_ring_doorbell(ep);
1582 	}
1583 
1584 	return 0;
1585 }
1586 
1587 static int tegra_xudc_ep_set_halt(struct usb_ep *usb_ep, int value)
1588 {
1589 	struct tegra_xudc_ep *ep;
1590 	struct tegra_xudc *xudc;
1591 	unsigned long flags;
1592 	int ret;
1593 
1594 	if (!usb_ep)
1595 		return -EINVAL;
1596 
1597 	ep = to_xudc_ep(usb_ep);
1598 	xudc = ep->xudc;
1599 
1600 	spin_lock_irqsave(&xudc->lock, flags);
1601 	if (xudc->powergated) {
1602 		ret = -ESHUTDOWN;
1603 		goto unlock;
1604 	}
1605 
1606 	if (value && usb_endpoint_dir_in(ep->desc) &&
1607 	    !list_empty(&ep->queue)) {
1608 		dev_err(xudc->dev, "can't halt EP with requests pending\n");
1609 		ret = -EAGAIN;
1610 		goto unlock;
1611 	}
1612 
1613 	ret = __tegra_xudc_ep_set_halt(ep, value);
1614 unlock:
1615 	spin_unlock_irqrestore(&xudc->lock, flags);
1616 
1617 	return ret;
1618 }
1619 
1620 static void tegra_xudc_ep_context_setup(struct tegra_xudc_ep *ep)
1621 {
1622 	const struct usb_endpoint_descriptor *desc = ep->desc;
1623 	const struct usb_ss_ep_comp_descriptor *comp_desc = ep->comp_desc;
1624 	struct tegra_xudc *xudc = ep->xudc;
1625 	u16 maxpacket, maxburst = 0, esit = 0;
1626 	u32 val;
1627 
1628 	maxpacket = usb_endpoint_maxp(desc);
1629 	if (xudc->gadget.speed == USB_SPEED_SUPER) {
1630 		if (!usb_endpoint_xfer_control(desc))
1631 			maxburst = comp_desc->bMaxBurst;
1632 
1633 		if (usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc))
1634 			esit = le16_to_cpu(comp_desc->wBytesPerInterval);
1635 	} else if ((xudc->gadget.speed < USB_SPEED_SUPER) &&
1636 		   (usb_endpoint_xfer_int(desc) ||
1637 		    usb_endpoint_xfer_isoc(desc))) {
1638 		if (xudc->gadget.speed == USB_SPEED_HIGH) {
1639 			maxburst = usb_endpoint_maxp_mult(desc) - 1;
1640 			if (maxburst == 0x3) {
1641 				dev_warn(xudc->dev,
1642 					 "invalid endpoint maxburst\n");
1643 				maxburst = 0x2;
1644 			}
1645 		}
1646 		esit = maxpacket * (maxburst + 1);
1647 	}
1648 
1649 	memset(ep->context, 0, sizeof(*ep->context));
1650 
1651 	ep_ctx_write_state(ep->context, EP_STATE_RUNNING);
1652 	ep_ctx_write_interval(ep->context, desc->bInterval);
1653 	if (xudc->gadget.speed == USB_SPEED_SUPER) {
1654 		if (usb_endpoint_xfer_isoc(desc)) {
1655 			ep_ctx_write_mult(ep->context,
1656 					  comp_desc->bmAttributes & 0x3);
1657 		}
1658 
1659 		if (usb_endpoint_xfer_bulk(desc)) {
1660 			ep_ctx_write_max_pstreams(ep->context,
1661 						  comp_desc->bmAttributes &
1662 						  0x1f);
1663 			ep_ctx_write_lsa(ep->context, 1);
1664 		}
1665 	}
1666 
1667 	if (!usb_endpoint_xfer_control(desc) && usb_endpoint_dir_out(desc))
1668 		val = usb_endpoint_type(desc);
1669 	else
1670 		val = usb_endpoint_type(desc) + EP_TYPE_CONTROL;
1671 
1672 	ep_ctx_write_type(ep->context, val);
1673 	ep_ctx_write_cerr(ep->context, 0x3);
1674 	ep_ctx_write_max_packet_size(ep->context, maxpacket);
1675 	ep_ctx_write_max_burst_size(ep->context, maxburst);
1676 
1677 	ep_ctx_write_deq_ptr(ep->context, ep->transfer_ring_phys);
1678 	ep_ctx_write_dcs(ep->context, ep->pcs);
1679 
1680 	/* Select a reasonable average TRB length based on endpoint type. */
1681 	switch (usb_endpoint_type(desc)) {
1682 	case USB_ENDPOINT_XFER_CONTROL:
1683 		val = 8;
1684 		break;
1685 	case USB_ENDPOINT_XFER_INT:
1686 		val = 1024;
1687 		break;
1688 	case USB_ENDPOINT_XFER_BULK:
1689 	case USB_ENDPOINT_XFER_ISOC:
1690 	default:
1691 		val = 3072;
1692 		break;
1693 	}
1694 
1695 	ep_ctx_write_avg_trb_len(ep->context, val);
1696 	ep_ctx_write_max_esit_payload(ep->context, esit);
1697 
1698 	ep_ctx_write_cerrcnt(ep->context, 0x3);
1699 }
1700 
1701 static void setup_link_trb(struct tegra_xudc_ep *ep,
1702 			   struct tegra_xudc_trb *trb)
1703 {
1704 	trb_write_data_ptr(trb, ep->transfer_ring_phys);
1705 	trb_write_type(trb, TRB_TYPE_LINK);
1706 	trb_write_toggle_cycle(trb, 1);
1707 }
1708 
1709 static int __tegra_xudc_ep_disable(struct tegra_xudc_ep *ep)
1710 {
1711 	struct tegra_xudc *xudc = ep->xudc;
1712 
1713 	if (ep_ctx_read_state(ep->context) == EP_STATE_DISABLED) {
1714 		dev_err(xudc->dev, "endpoint %u already disabled\n",
1715 			ep->index);
1716 		return -EINVAL;
1717 	}
1718 
1719 	ep_ctx_write_state(ep->context, EP_STATE_DISABLED);
1720 
1721 	ep_reload(xudc, ep->index);
1722 
1723 	tegra_xudc_ep_nuke(ep, -ESHUTDOWN);
1724 
1725 	xudc->nr_enabled_eps--;
1726 	if (usb_endpoint_xfer_isoc(ep->desc))
1727 		xudc->nr_isoch_eps--;
1728 
1729 	ep->desc = NULL;
1730 	ep->comp_desc = NULL;
1731 
1732 	memset(ep->context, 0, sizeof(*ep->context));
1733 
1734 	ep_unpause(xudc, ep->index);
1735 	ep_unhalt(xudc, ep->index);
1736 	if (xudc_readl(xudc, EP_STOPPED) & BIT(ep->index))
1737 		xudc_writel(xudc, BIT(ep->index), EP_STOPPED);
1738 
1739 	/*
1740 	 * If this is the last endpoint disabled in a de-configure request,
1741 	 * switch back to address state.
1742 	 */
1743 	if ((xudc->device_state == USB_STATE_CONFIGURED) &&
1744 	    (xudc->nr_enabled_eps == 1)) {
1745 		u32 val;
1746 
1747 		xudc->device_state = USB_STATE_ADDRESS;
1748 		usb_gadget_set_state(&xudc->gadget, xudc->device_state);
1749 
1750 		val = xudc_readl(xudc, CTRL);
1751 		val &= ~CTRL_RUN;
1752 		xudc_writel(xudc, val, CTRL);
1753 	}
1754 
1755 	dev_info(xudc->dev, "ep %u disabled\n", ep->index);
1756 
1757 	return 0;
1758 }
1759 
1760 static int tegra_xudc_ep_disable(struct usb_ep *usb_ep)
1761 {
1762 	struct tegra_xudc_ep *ep;
1763 	struct tegra_xudc *xudc;
1764 	unsigned long flags;
1765 	int ret;
1766 
1767 	if (!usb_ep)
1768 		return -EINVAL;
1769 
1770 	ep = to_xudc_ep(usb_ep);
1771 	xudc = ep->xudc;
1772 
1773 	spin_lock_irqsave(&xudc->lock, flags);
1774 	if (xudc->powergated) {
1775 		ret = -ESHUTDOWN;
1776 		goto unlock;
1777 	}
1778 
1779 	ret = __tegra_xudc_ep_disable(ep);
1780 unlock:
1781 	spin_unlock_irqrestore(&xudc->lock, flags);
1782 
1783 	return ret;
1784 }
1785 
1786 static int __tegra_xudc_ep_enable(struct tegra_xudc_ep *ep,
1787 				  const struct usb_endpoint_descriptor *desc)
1788 {
1789 	struct tegra_xudc *xudc = ep->xudc;
1790 	unsigned int i;
1791 	u32 val;
1792 
1793 	if (xudc->gadget.speed == USB_SPEED_SUPER &&
1794 		!usb_endpoint_xfer_control(desc) && !ep->usb_ep.comp_desc)
1795 		return -EINVAL;
1796 
1797 	/* Disable the EP if it is not disabled */
1798 	if (ep_ctx_read_state(ep->context) != EP_STATE_DISABLED)
1799 		__tegra_xudc_ep_disable(ep);
1800 
1801 	ep->desc = desc;
1802 	ep->comp_desc = ep->usb_ep.comp_desc;
1803 
1804 	if (usb_endpoint_xfer_isoc(desc)) {
1805 		if (xudc->nr_isoch_eps > XUDC_MAX_ISOCH_EPS) {
1806 			dev_err(xudc->dev, "too many isochronous endpoints\n");
1807 			return -EBUSY;
1808 		}
1809 		xudc->nr_isoch_eps++;
1810 	}
1811 
1812 	memset(ep->transfer_ring, 0, XUDC_TRANSFER_RING_SIZE *
1813 	       sizeof(*ep->transfer_ring));
1814 	setup_link_trb(ep, &ep->transfer_ring[XUDC_TRANSFER_RING_SIZE - 1]);
1815 
1816 	ep->enq_ptr = 0;
1817 	ep->deq_ptr = 0;
1818 	ep->pcs = true;
1819 	ep->ring_full = false;
1820 	xudc->nr_enabled_eps++;
1821 
1822 	tegra_xudc_ep_context_setup(ep);
1823 
1824 	/*
1825 	 * No need to reload and un-halt EP0.  This will be done automatically
1826 	 * once a valid SETUP packet is received.
1827 	 */
1828 	if (usb_endpoint_xfer_control(desc))
1829 		goto out;
1830 
1831 	/*
1832 	 * Transition to configured state once the first non-control
1833 	 * endpoint is enabled.
1834 	 */
1835 	if (xudc->device_state == USB_STATE_ADDRESS) {
1836 		val = xudc_readl(xudc, CTRL);
1837 		val |= CTRL_RUN;
1838 		xudc_writel(xudc, val, CTRL);
1839 
1840 		xudc->device_state = USB_STATE_CONFIGURED;
1841 		usb_gadget_set_state(&xudc->gadget, xudc->device_state);
1842 	}
1843 
1844 	if (usb_endpoint_xfer_isoc(desc)) {
1845 		/*
1846 		 * Pause all bulk endpoints when enabling an isoch endpoint
1847 		 * to ensure the isoch endpoint is allocated enough bandwidth.
1848 		 */
1849 		for (i = 0; i < ARRAY_SIZE(xudc->ep); i++) {
1850 			if (xudc->ep[i].desc &&
1851 			    usb_endpoint_xfer_bulk(xudc->ep[i].desc))
1852 				ep_pause(xudc, i);
1853 		}
1854 	}
1855 
1856 	ep_reload(xudc, ep->index);
1857 	ep_unpause(xudc, ep->index);
1858 	ep_unhalt(xudc, ep->index);
1859 
1860 	if (usb_endpoint_xfer_isoc(desc)) {
1861 		for (i = 0; i < ARRAY_SIZE(xudc->ep); i++) {
1862 			if (xudc->ep[i].desc &&
1863 			    usb_endpoint_xfer_bulk(xudc->ep[i].desc))
1864 				ep_unpause(xudc, i);
1865 		}
1866 	}
1867 
1868 out:
1869 	dev_info(xudc->dev, "EP %u (type: %s, dir: %s) enabled\n", ep->index,
1870 		 usb_ep_type_string(usb_endpoint_type(ep->desc)),
1871 		 usb_endpoint_dir_in(ep->desc) ? "in" : "out");
1872 
1873 	return 0;
1874 }
1875 
1876 static int tegra_xudc_ep_enable(struct usb_ep *usb_ep,
1877 				const struct usb_endpoint_descriptor *desc)
1878 {
1879 	struct tegra_xudc_ep *ep;
1880 	struct tegra_xudc *xudc;
1881 	unsigned long flags;
1882 	int ret;
1883 
1884 	if  (!usb_ep || !desc || (desc->bDescriptorType != USB_DT_ENDPOINT))
1885 		return -EINVAL;
1886 
1887 	ep = to_xudc_ep(usb_ep);
1888 	xudc = ep->xudc;
1889 
1890 	spin_lock_irqsave(&xudc->lock, flags);
1891 	if (xudc->powergated) {
1892 		ret = -ESHUTDOWN;
1893 		goto unlock;
1894 	}
1895 
1896 	ret = __tegra_xudc_ep_enable(ep, desc);
1897 unlock:
1898 	spin_unlock_irqrestore(&xudc->lock, flags);
1899 
1900 	return ret;
1901 }
1902 
1903 static struct usb_request *
1904 tegra_xudc_ep_alloc_request(struct usb_ep *usb_ep, gfp_t gfp)
1905 {
1906 	struct tegra_xudc_request *req;
1907 
1908 	req = kzalloc(sizeof(*req), gfp);
1909 	if (!req)
1910 		return NULL;
1911 
1912 	INIT_LIST_HEAD(&req->list);
1913 
1914 	return &req->usb_req;
1915 }
1916 
1917 static void tegra_xudc_ep_free_request(struct usb_ep *usb_ep,
1918 				       struct usb_request *usb_req)
1919 {
1920 	struct tegra_xudc_request *req = to_xudc_req(usb_req);
1921 
1922 	kfree(req);
1923 }
1924 
1925 static const struct usb_ep_ops tegra_xudc_ep_ops = {
1926 	.enable = tegra_xudc_ep_enable,
1927 	.disable = tegra_xudc_ep_disable,
1928 	.alloc_request = tegra_xudc_ep_alloc_request,
1929 	.free_request = tegra_xudc_ep_free_request,
1930 	.queue = tegra_xudc_ep_queue,
1931 	.dequeue = tegra_xudc_ep_dequeue,
1932 	.set_halt = tegra_xudc_ep_set_halt,
1933 };
1934 
1935 static int tegra_xudc_ep0_enable(struct usb_ep *usb_ep,
1936 				 const struct usb_endpoint_descriptor *desc)
1937 {
1938 	return -EBUSY;
1939 }
1940 
1941 static int tegra_xudc_ep0_disable(struct usb_ep *usb_ep)
1942 {
1943 	return -EBUSY;
1944 }
1945 
1946 static const struct usb_ep_ops tegra_xudc_ep0_ops = {
1947 	.enable = tegra_xudc_ep0_enable,
1948 	.disable = tegra_xudc_ep0_disable,
1949 	.alloc_request = tegra_xudc_ep_alloc_request,
1950 	.free_request = tegra_xudc_ep_free_request,
1951 	.queue = tegra_xudc_ep_queue,
1952 	.dequeue = tegra_xudc_ep_dequeue,
1953 	.set_halt = tegra_xudc_ep_set_halt,
1954 };
1955 
1956 static int tegra_xudc_gadget_get_frame(struct usb_gadget *gadget)
1957 {
1958 	struct tegra_xudc *xudc = to_xudc(gadget);
1959 	unsigned long flags;
1960 	int ret;
1961 
1962 	spin_lock_irqsave(&xudc->lock, flags);
1963 	if (xudc->powergated) {
1964 		ret = -ESHUTDOWN;
1965 		goto unlock;
1966 	}
1967 
1968 	ret = (xudc_readl(xudc, MFINDEX) & MFINDEX_FRAME_MASK) >>
1969 		MFINDEX_FRAME_SHIFT;
1970 unlock:
1971 	spin_unlock_irqrestore(&xudc->lock, flags);
1972 
1973 	return ret;
1974 }
1975 
1976 static void tegra_xudc_resume_device_state(struct tegra_xudc *xudc)
1977 {
1978 	unsigned int i;
1979 	u32 val;
1980 
1981 	ep_unpause_all(xudc);
1982 
1983 	/* Direct link to U0. */
1984 	val = xudc_readl(xudc, PORTSC);
1985 	if (((val & PORTSC_PLS_MASK) >> PORTSC_PLS_SHIFT) != PORTSC_PLS_U0) {
1986 		val &= ~(PORTSC_CHANGE_MASK | PORTSC_PLS_MASK);
1987 		val |= PORTSC_LWS | PORTSC_PLS(PORTSC_PLS_U0);
1988 		xudc_writel(xudc, val, PORTSC);
1989 	}
1990 
1991 	if (xudc->device_state == USB_STATE_SUSPENDED) {
1992 		xudc->device_state = xudc->resume_state;
1993 		usb_gadget_set_state(&xudc->gadget, xudc->device_state);
1994 		xudc->resume_state = 0;
1995 	}
1996 
1997 	/*
1998 	 * Doorbells may be dropped if they are sent too soon (< ~200ns)
1999 	 * after unpausing the endpoint.  Wait for 500ns just to be safe.
2000 	 */
2001 	ndelay(500);
2002 	for (i = 0; i < ARRAY_SIZE(xudc->ep); i++)
2003 		tegra_xudc_ep_ring_doorbell(&xudc->ep[i]);
2004 }
2005 
2006 static int tegra_xudc_gadget_wakeup(struct usb_gadget *gadget)
2007 {
2008 	struct tegra_xudc *xudc = to_xudc(gadget);
2009 	unsigned long flags;
2010 	int ret = 0;
2011 	u32 val;
2012 
2013 	spin_lock_irqsave(&xudc->lock, flags);
2014 
2015 	if (xudc->powergated) {
2016 		ret = -ESHUTDOWN;
2017 		goto unlock;
2018 	}
2019 	val = xudc_readl(xudc, PORTPM);
2020 	dev_dbg(xudc->dev, "%s: PORTPM=%#x, speed=%x\n", __func__,
2021 			val, gadget->speed);
2022 
2023 	if (((xudc->gadget.speed <= USB_SPEED_HIGH) &&
2024 	     (val & PORTPM_RWE)) ||
2025 	    ((xudc->gadget.speed == USB_SPEED_SUPER) &&
2026 	     (val & PORTPM_FRWE))) {
2027 		tegra_xudc_resume_device_state(xudc);
2028 
2029 		/* Send Device Notification packet. */
2030 		if (xudc->gadget.speed == USB_SPEED_SUPER) {
2031 			val = DEVNOTIF_LO_TYPE(DEVNOTIF_LO_TYPE_FUNCTION_WAKE)
2032 					     | DEVNOTIF_LO_TRIG;
2033 			xudc_writel(xudc, 0, DEVNOTIF_HI);
2034 			xudc_writel(xudc, val, DEVNOTIF_LO);
2035 		}
2036 	}
2037 
2038 unlock:
2039 	dev_dbg(xudc->dev, "%s: ret value is %d", __func__, ret);
2040 	spin_unlock_irqrestore(&xudc->lock, flags);
2041 
2042 	return ret;
2043 }
2044 
2045 static int tegra_xudc_gadget_pullup(struct usb_gadget *gadget, int is_on)
2046 {
2047 	struct tegra_xudc *xudc = to_xudc(gadget);
2048 	unsigned long flags;
2049 	u32 val;
2050 
2051 	pm_runtime_get_sync(xudc->dev);
2052 
2053 	spin_lock_irqsave(&xudc->lock, flags);
2054 
2055 	if (is_on != xudc->pullup) {
2056 		val = xudc_readl(xudc, CTRL);
2057 		if (is_on)
2058 			val |= CTRL_ENABLE;
2059 		else
2060 			val &= ~CTRL_ENABLE;
2061 		xudc_writel(xudc, val, CTRL);
2062 	}
2063 
2064 	xudc->pullup = is_on;
2065 	dev_dbg(xudc->dev, "%s: pullup:%d", __func__, is_on);
2066 
2067 	spin_unlock_irqrestore(&xudc->lock, flags);
2068 
2069 	pm_runtime_put(xudc->dev);
2070 
2071 	return 0;
2072 }
2073 
2074 static int tegra_xudc_gadget_start(struct usb_gadget *gadget,
2075 				   struct usb_gadget_driver *driver)
2076 {
2077 	struct tegra_xudc *xudc = to_xudc(gadget);
2078 	unsigned long flags;
2079 	u32 val;
2080 	int ret;
2081 	unsigned int i;
2082 
2083 	if (!driver)
2084 		return -EINVAL;
2085 
2086 	pm_runtime_get_sync(xudc->dev);
2087 
2088 	spin_lock_irqsave(&xudc->lock, flags);
2089 
2090 	if (xudc->driver) {
2091 		ret = -EBUSY;
2092 		goto unlock;
2093 	}
2094 
2095 	xudc->setup_state = WAIT_FOR_SETUP;
2096 	xudc->device_state = USB_STATE_DEFAULT;
2097 	usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2098 
2099 	ret = __tegra_xudc_ep_enable(&xudc->ep[0], &tegra_xudc_ep0_desc);
2100 	if (ret < 0)
2101 		goto unlock;
2102 
2103 	val = xudc_readl(xudc, CTRL);
2104 	val |= CTRL_IE | CTRL_LSE;
2105 	xudc_writel(xudc, val, CTRL);
2106 
2107 	val = xudc_readl(xudc, PORTHALT);
2108 	val |= PORTHALT_STCHG_INTR_EN;
2109 	xudc_writel(xudc, val, PORTHALT);
2110 
2111 	if (xudc->pullup) {
2112 		val = xudc_readl(xudc, CTRL);
2113 		val |= CTRL_ENABLE;
2114 		xudc_writel(xudc, val, CTRL);
2115 	}
2116 
2117 	for (i = 0; i < xudc->soc->num_phys; i++)
2118 		if (xudc->usbphy[i])
2119 			otg_set_peripheral(xudc->usbphy[i]->otg, gadget);
2120 
2121 	xudc->driver = driver;
2122 unlock:
2123 	dev_dbg(xudc->dev, "%s: ret value is %d", __func__, ret);
2124 	spin_unlock_irqrestore(&xudc->lock, flags);
2125 
2126 	pm_runtime_put(xudc->dev);
2127 
2128 	return ret;
2129 }
2130 
2131 static int tegra_xudc_gadget_stop(struct usb_gadget *gadget)
2132 {
2133 	struct tegra_xudc *xudc = to_xudc(gadget);
2134 	unsigned long flags;
2135 	u32 val;
2136 	unsigned int i;
2137 
2138 	pm_runtime_get_sync(xudc->dev);
2139 
2140 	spin_lock_irqsave(&xudc->lock, flags);
2141 
2142 	for (i = 0; i < xudc->soc->num_phys; i++)
2143 		if (xudc->usbphy[i])
2144 			otg_set_peripheral(xudc->usbphy[i]->otg, NULL);
2145 
2146 	val = xudc_readl(xudc, CTRL);
2147 	val &= ~(CTRL_IE | CTRL_ENABLE);
2148 	xudc_writel(xudc, val, CTRL);
2149 
2150 	__tegra_xudc_ep_disable(&xudc->ep[0]);
2151 
2152 	xudc->driver = NULL;
2153 	dev_dbg(xudc->dev, "Gadget stopped");
2154 
2155 	spin_unlock_irqrestore(&xudc->lock, flags);
2156 
2157 	pm_runtime_put(xudc->dev);
2158 
2159 	return 0;
2160 }
2161 
2162 static int tegra_xudc_gadget_vbus_draw(struct usb_gadget *gadget,
2163 						unsigned int m_a)
2164 {
2165 	int ret = 0;
2166 	struct tegra_xudc *xudc = to_xudc(gadget);
2167 
2168 	dev_dbg(xudc->dev, "%s: %u mA\n", __func__, m_a);
2169 
2170 	if (xudc->curr_usbphy->chg_type == SDP_TYPE)
2171 		ret = usb_phy_set_power(xudc->curr_usbphy, m_a);
2172 
2173 	return ret;
2174 }
2175 
2176 static int tegra_xudc_set_selfpowered(struct usb_gadget *gadget, int is_on)
2177 {
2178 	struct tegra_xudc *xudc = to_xudc(gadget);
2179 
2180 	dev_dbg(xudc->dev, "%s: %d\n", __func__, is_on);
2181 	xudc->selfpowered = !!is_on;
2182 
2183 	return 0;
2184 }
2185 
2186 static const struct usb_gadget_ops tegra_xudc_gadget_ops = {
2187 	.get_frame = tegra_xudc_gadget_get_frame,
2188 	.wakeup = tegra_xudc_gadget_wakeup,
2189 	.pullup = tegra_xudc_gadget_pullup,
2190 	.udc_start = tegra_xudc_gadget_start,
2191 	.udc_stop = tegra_xudc_gadget_stop,
2192 	.vbus_draw = tegra_xudc_gadget_vbus_draw,
2193 	.set_selfpowered = tegra_xudc_set_selfpowered,
2194 };
2195 
2196 static void no_op_complete(struct usb_ep *ep, struct usb_request *req)
2197 {
2198 }
2199 
2200 static int
2201 tegra_xudc_ep0_queue_status(struct tegra_xudc *xudc,
2202 		void (*cmpl)(struct usb_ep *, struct usb_request *))
2203 {
2204 	xudc->ep0_req->usb_req.buf = NULL;
2205 	xudc->ep0_req->usb_req.dma = 0;
2206 	xudc->ep0_req->usb_req.length = 0;
2207 	xudc->ep0_req->usb_req.complete = cmpl;
2208 	xudc->ep0_req->usb_req.context = xudc;
2209 
2210 	return __tegra_xudc_ep_queue(&xudc->ep[0], xudc->ep0_req);
2211 }
2212 
2213 static int
2214 tegra_xudc_ep0_queue_data(struct tegra_xudc *xudc, void *buf, size_t len,
2215 		void (*cmpl)(struct usb_ep *, struct usb_request *))
2216 {
2217 	xudc->ep0_req->usb_req.buf = buf;
2218 	xudc->ep0_req->usb_req.length = len;
2219 	xudc->ep0_req->usb_req.complete = cmpl;
2220 	xudc->ep0_req->usb_req.context = xudc;
2221 
2222 	return __tegra_xudc_ep_queue(&xudc->ep[0], xudc->ep0_req);
2223 }
2224 
2225 static void tegra_xudc_ep0_req_done(struct tegra_xudc *xudc)
2226 {
2227 	switch (xudc->setup_state) {
2228 	case DATA_STAGE_XFER:
2229 		xudc->setup_state = STATUS_STAGE_RECV;
2230 		tegra_xudc_ep0_queue_status(xudc, no_op_complete);
2231 		break;
2232 	case DATA_STAGE_RECV:
2233 		xudc->setup_state = STATUS_STAGE_XFER;
2234 		tegra_xudc_ep0_queue_status(xudc, no_op_complete);
2235 		break;
2236 	default:
2237 		xudc->setup_state = WAIT_FOR_SETUP;
2238 		break;
2239 	}
2240 }
2241 
2242 static int tegra_xudc_ep0_delegate_req(struct tegra_xudc *xudc,
2243 				       struct usb_ctrlrequest *ctrl)
2244 {
2245 	int ret;
2246 
2247 	spin_unlock(&xudc->lock);
2248 	ret = xudc->driver->setup(&xudc->gadget, ctrl);
2249 	spin_lock(&xudc->lock);
2250 
2251 	return ret;
2252 }
2253 
2254 static void set_feature_complete(struct usb_ep *ep, struct usb_request *req)
2255 {
2256 	struct tegra_xudc *xudc = req->context;
2257 
2258 	if (xudc->test_mode_pattern) {
2259 		xudc_writel(xudc, xudc->test_mode_pattern, PORT_TM);
2260 		xudc->test_mode_pattern = 0;
2261 	}
2262 }
2263 
2264 static int tegra_xudc_ep0_set_feature(struct tegra_xudc *xudc,
2265 				      struct usb_ctrlrequest *ctrl)
2266 {
2267 	bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
2268 	u32 feature = le16_to_cpu(ctrl->wValue);
2269 	u32 index = le16_to_cpu(ctrl->wIndex);
2270 	u32 val, ep;
2271 	int ret;
2272 
2273 	if (le16_to_cpu(ctrl->wLength) != 0)
2274 		return -EINVAL;
2275 
2276 	switch (ctrl->bRequestType & USB_RECIP_MASK) {
2277 	case USB_RECIP_DEVICE:
2278 		switch (feature) {
2279 		case USB_DEVICE_REMOTE_WAKEUP:
2280 			if ((xudc->gadget.speed == USB_SPEED_SUPER) ||
2281 			    (xudc->device_state == USB_STATE_DEFAULT))
2282 				return -EINVAL;
2283 
2284 			val = xudc_readl(xudc, PORTPM);
2285 			if (set)
2286 				val |= PORTPM_RWE;
2287 			else
2288 				val &= ~PORTPM_RWE;
2289 
2290 			xudc_writel(xudc, val, PORTPM);
2291 			break;
2292 		case USB_DEVICE_U1_ENABLE:
2293 		case USB_DEVICE_U2_ENABLE:
2294 			if ((xudc->device_state != USB_STATE_CONFIGURED) ||
2295 			    (xudc->gadget.speed != USB_SPEED_SUPER))
2296 				return -EINVAL;
2297 
2298 			val = xudc_readl(xudc, PORTPM);
2299 			if ((feature == USB_DEVICE_U1_ENABLE) &&
2300 			     xudc->soc->u1_enable) {
2301 				if (set)
2302 					val |= PORTPM_U1E;
2303 				else
2304 					val &= ~PORTPM_U1E;
2305 			}
2306 
2307 			if ((feature == USB_DEVICE_U2_ENABLE) &&
2308 			     xudc->soc->u2_enable) {
2309 				if (set)
2310 					val |= PORTPM_U2E;
2311 				else
2312 					val &= ~PORTPM_U2E;
2313 			}
2314 
2315 			xudc_writel(xudc, val, PORTPM);
2316 			break;
2317 		case USB_DEVICE_TEST_MODE:
2318 			if (xudc->gadget.speed != USB_SPEED_HIGH)
2319 				return -EINVAL;
2320 
2321 			if (!set)
2322 				return -EINVAL;
2323 
2324 			xudc->test_mode_pattern = index >> 8;
2325 			break;
2326 		default:
2327 			return -EINVAL;
2328 		}
2329 
2330 		break;
2331 	case USB_RECIP_INTERFACE:
2332 		if (xudc->device_state != USB_STATE_CONFIGURED)
2333 			return -EINVAL;
2334 
2335 		switch (feature) {
2336 		case USB_INTRF_FUNC_SUSPEND:
2337 			if (set) {
2338 				val = xudc_readl(xudc, PORTPM);
2339 
2340 				if (index & USB_INTRF_FUNC_SUSPEND_RW)
2341 					val |= PORTPM_FRWE;
2342 				else
2343 					val &= ~PORTPM_FRWE;
2344 
2345 				xudc_writel(xudc, val, PORTPM);
2346 			}
2347 
2348 			return tegra_xudc_ep0_delegate_req(xudc, ctrl);
2349 		default:
2350 			return -EINVAL;
2351 		}
2352 
2353 		break;
2354 	case USB_RECIP_ENDPOINT:
2355 		ep = (index & USB_ENDPOINT_NUMBER_MASK) * 2 +
2356 			((index & USB_DIR_IN) ? 1 : 0);
2357 
2358 		if ((xudc->device_state == USB_STATE_DEFAULT) ||
2359 		    ((xudc->device_state == USB_STATE_ADDRESS) &&
2360 		     (index != 0)))
2361 			return -EINVAL;
2362 
2363 		ret = __tegra_xudc_ep_set_halt(&xudc->ep[ep], set);
2364 		if (ret < 0)
2365 			return ret;
2366 		break;
2367 	default:
2368 		return -EINVAL;
2369 	}
2370 
2371 	return tegra_xudc_ep0_queue_status(xudc, set_feature_complete);
2372 }
2373 
2374 static int tegra_xudc_ep0_get_status(struct tegra_xudc *xudc,
2375 				     struct usb_ctrlrequest *ctrl)
2376 {
2377 	struct tegra_xudc_ep_context *ep_ctx;
2378 	u32 val, ep, index = le16_to_cpu(ctrl->wIndex);
2379 	u16 status = 0;
2380 
2381 	if (!(ctrl->bRequestType & USB_DIR_IN))
2382 		return -EINVAL;
2383 
2384 	if ((le16_to_cpu(ctrl->wValue) != 0) ||
2385 	    (le16_to_cpu(ctrl->wLength) != 2))
2386 		return -EINVAL;
2387 
2388 	switch (ctrl->bRequestType & USB_RECIP_MASK) {
2389 	case USB_RECIP_DEVICE:
2390 		val = xudc_readl(xudc, PORTPM);
2391 
2392 		if (xudc->selfpowered)
2393 			status |= BIT(USB_DEVICE_SELF_POWERED);
2394 
2395 		if ((xudc->gadget.speed < USB_SPEED_SUPER) &&
2396 		    (val & PORTPM_RWE))
2397 			status |= BIT(USB_DEVICE_REMOTE_WAKEUP);
2398 
2399 		if (xudc->gadget.speed == USB_SPEED_SUPER) {
2400 			if (val & PORTPM_U1E)
2401 				status |= BIT(USB_DEV_STAT_U1_ENABLED);
2402 			if (val & PORTPM_U2E)
2403 				status |= BIT(USB_DEV_STAT_U2_ENABLED);
2404 		}
2405 		break;
2406 	case USB_RECIP_INTERFACE:
2407 		if (xudc->gadget.speed == USB_SPEED_SUPER) {
2408 			status |= USB_INTRF_STAT_FUNC_RW_CAP;
2409 			val = xudc_readl(xudc, PORTPM);
2410 			if (val & PORTPM_FRWE)
2411 				status |= USB_INTRF_STAT_FUNC_RW;
2412 		}
2413 		break;
2414 	case USB_RECIP_ENDPOINT:
2415 		ep = (index & USB_ENDPOINT_NUMBER_MASK) * 2 +
2416 			((index & USB_DIR_IN) ? 1 : 0);
2417 		ep_ctx = &xudc->ep_context[ep];
2418 
2419 		if ((xudc->device_state != USB_STATE_CONFIGURED) &&
2420 		    ((xudc->device_state != USB_STATE_ADDRESS) || (ep != 0)))
2421 			return -EINVAL;
2422 
2423 		if (ep_ctx_read_state(ep_ctx) == EP_STATE_DISABLED)
2424 			return -EINVAL;
2425 
2426 		if (xudc_readl(xudc, EP_HALT) & BIT(ep))
2427 			status |= BIT(USB_ENDPOINT_HALT);
2428 		break;
2429 	default:
2430 		return -EINVAL;
2431 	}
2432 
2433 	xudc->status_buf = cpu_to_le16(status);
2434 	return tegra_xudc_ep0_queue_data(xudc, &xudc->status_buf,
2435 					 sizeof(xudc->status_buf),
2436 					 no_op_complete);
2437 }
2438 
2439 static void set_sel_complete(struct usb_ep *ep, struct usb_request *req)
2440 {
2441 	/* Nothing to do with SEL values */
2442 }
2443 
2444 static int tegra_xudc_ep0_set_sel(struct tegra_xudc *xudc,
2445 				  struct usb_ctrlrequest *ctrl)
2446 {
2447 	if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_DEVICE |
2448 				     USB_TYPE_STANDARD))
2449 		return -EINVAL;
2450 
2451 	if (xudc->device_state == USB_STATE_DEFAULT)
2452 		return -EINVAL;
2453 
2454 	if ((le16_to_cpu(ctrl->wIndex) != 0) ||
2455 	    (le16_to_cpu(ctrl->wValue) != 0) ||
2456 	    (le16_to_cpu(ctrl->wLength) != 6))
2457 		return -EINVAL;
2458 
2459 	return tegra_xudc_ep0_queue_data(xudc, &xudc->sel_timing,
2460 					 sizeof(xudc->sel_timing),
2461 					 set_sel_complete);
2462 }
2463 
2464 static void set_isoch_delay_complete(struct usb_ep *ep, struct usb_request *req)
2465 {
2466 	/* Nothing to do with isoch delay */
2467 }
2468 
2469 static int tegra_xudc_ep0_set_isoch_delay(struct tegra_xudc *xudc,
2470 					  struct usb_ctrlrequest *ctrl)
2471 {
2472 	u32 delay = le16_to_cpu(ctrl->wValue);
2473 
2474 	if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_DEVICE |
2475 				   USB_TYPE_STANDARD))
2476 		return -EINVAL;
2477 
2478 	if ((delay > 65535) || (le16_to_cpu(ctrl->wIndex) != 0) ||
2479 	    (le16_to_cpu(ctrl->wLength) != 0))
2480 		return -EINVAL;
2481 
2482 	xudc->isoch_delay = delay;
2483 
2484 	return tegra_xudc_ep0_queue_status(xudc, set_isoch_delay_complete);
2485 }
2486 
2487 static void set_address_complete(struct usb_ep *ep, struct usb_request *req)
2488 {
2489 	struct tegra_xudc *xudc = req->context;
2490 
2491 	if ((xudc->device_state == USB_STATE_DEFAULT) &&
2492 	    (xudc->dev_addr != 0)) {
2493 		xudc->device_state = USB_STATE_ADDRESS;
2494 		usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2495 	} else if ((xudc->device_state == USB_STATE_ADDRESS) &&
2496 		   (xudc->dev_addr == 0)) {
2497 		xudc->device_state = USB_STATE_DEFAULT;
2498 		usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2499 	}
2500 }
2501 
2502 static int tegra_xudc_ep0_set_address(struct tegra_xudc *xudc,
2503 				      struct usb_ctrlrequest *ctrl)
2504 {
2505 	struct tegra_xudc_ep *ep0 = &xudc->ep[0];
2506 	u32 val, addr = le16_to_cpu(ctrl->wValue);
2507 
2508 	if (ctrl->bRequestType != (USB_DIR_OUT | USB_RECIP_DEVICE |
2509 				     USB_TYPE_STANDARD))
2510 		return -EINVAL;
2511 
2512 	if ((addr > 127) || (le16_to_cpu(ctrl->wIndex) != 0) ||
2513 	    (le16_to_cpu(ctrl->wLength) != 0))
2514 		return -EINVAL;
2515 
2516 	if (xudc->device_state == USB_STATE_CONFIGURED)
2517 		return -EINVAL;
2518 
2519 	dev_dbg(xudc->dev, "set address: %u\n", addr);
2520 
2521 	xudc->dev_addr = addr;
2522 	val = xudc_readl(xudc, CTRL);
2523 	val &= ~(CTRL_DEVADDR_MASK);
2524 	val |= CTRL_DEVADDR(addr);
2525 	xudc_writel(xudc, val, CTRL);
2526 
2527 	ep_ctx_write_devaddr(ep0->context, addr);
2528 
2529 	return tegra_xudc_ep0_queue_status(xudc, set_address_complete);
2530 }
2531 
2532 static int tegra_xudc_ep0_standard_req(struct tegra_xudc *xudc,
2533 				      struct usb_ctrlrequest *ctrl)
2534 {
2535 	int ret;
2536 
2537 	switch (ctrl->bRequest) {
2538 	case USB_REQ_GET_STATUS:
2539 		dev_dbg(xudc->dev, "USB_REQ_GET_STATUS\n");
2540 		ret = tegra_xudc_ep0_get_status(xudc, ctrl);
2541 		break;
2542 	case USB_REQ_SET_ADDRESS:
2543 		dev_dbg(xudc->dev, "USB_REQ_SET_ADDRESS\n");
2544 		ret = tegra_xudc_ep0_set_address(xudc, ctrl);
2545 		break;
2546 	case USB_REQ_SET_SEL:
2547 		dev_dbg(xudc->dev, "USB_REQ_SET_SEL\n");
2548 		ret = tegra_xudc_ep0_set_sel(xudc, ctrl);
2549 		break;
2550 	case USB_REQ_SET_ISOCH_DELAY:
2551 		dev_dbg(xudc->dev, "USB_REQ_SET_ISOCH_DELAY\n");
2552 		ret = tegra_xudc_ep0_set_isoch_delay(xudc, ctrl);
2553 		break;
2554 	case USB_REQ_CLEAR_FEATURE:
2555 	case USB_REQ_SET_FEATURE:
2556 		dev_dbg(xudc->dev, "USB_REQ_CLEAR/SET_FEATURE\n");
2557 		ret = tegra_xudc_ep0_set_feature(xudc, ctrl);
2558 		break;
2559 	case USB_REQ_SET_CONFIGURATION:
2560 		dev_dbg(xudc->dev, "USB_REQ_SET_CONFIGURATION\n");
2561 		/*
2562 		 * In theory we need to clear RUN bit before status stage of
2563 		 * deconfig request sent, but this seems to be causing problems.
2564 		 * Clear RUN once all endpoints are disabled instead.
2565 		 */
2566 		fallthrough;
2567 	default:
2568 		ret = tegra_xudc_ep0_delegate_req(xudc, ctrl);
2569 		break;
2570 	}
2571 
2572 	return ret;
2573 }
2574 
2575 static void tegra_xudc_handle_ep0_setup_packet(struct tegra_xudc *xudc,
2576 					       struct usb_ctrlrequest *ctrl,
2577 					       u16 seq_num)
2578 {
2579 	int ret;
2580 
2581 	xudc->setup_seq_num = seq_num;
2582 
2583 	/* Ensure EP0 is unhalted. */
2584 	ep_unhalt(xudc, 0);
2585 
2586 	/*
2587 	 * On Tegra210, setup packets with sequence numbers 0xfffe or 0xffff
2588 	 * are invalid.  Halt EP0 until we get a valid packet.
2589 	 */
2590 	if (xudc->soc->invalid_seq_num &&
2591 	    (seq_num == 0xfffe || seq_num == 0xffff)) {
2592 		dev_warn(xudc->dev, "invalid sequence number detected\n");
2593 		ep_halt(xudc, 0);
2594 		return;
2595 	}
2596 
2597 	if (ctrl->wLength)
2598 		xudc->setup_state = (ctrl->bRequestType & USB_DIR_IN) ?
2599 			DATA_STAGE_XFER :  DATA_STAGE_RECV;
2600 	else
2601 		xudc->setup_state = STATUS_STAGE_XFER;
2602 
2603 	if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD)
2604 		ret = tegra_xudc_ep0_standard_req(xudc, ctrl);
2605 	else
2606 		ret = tegra_xudc_ep0_delegate_req(xudc, ctrl);
2607 
2608 	if (ret < 0) {
2609 		dev_warn(xudc->dev, "setup request failed: %d\n", ret);
2610 		xudc->setup_state = WAIT_FOR_SETUP;
2611 		ep_halt(xudc, 0);
2612 	}
2613 }
2614 
2615 static void tegra_xudc_handle_ep0_event(struct tegra_xudc *xudc,
2616 					struct tegra_xudc_trb *event)
2617 {
2618 	struct usb_ctrlrequest *ctrl = (struct usb_ctrlrequest *)event;
2619 	u16 seq_num = trb_read_seq_num(event);
2620 
2621 	if (xudc->setup_state != WAIT_FOR_SETUP) {
2622 		/*
2623 		 * The controller is in the process of handling another
2624 		 * setup request.  Queue subsequent requests and handle
2625 		 * the last one once the controller reports a sequence
2626 		 * number error.
2627 		 */
2628 		memcpy(&xudc->setup_packet.ctrl_req, ctrl, sizeof(*ctrl));
2629 		xudc->setup_packet.seq_num = seq_num;
2630 		xudc->queued_setup_packet = true;
2631 	} else {
2632 		tegra_xudc_handle_ep0_setup_packet(xudc, ctrl, seq_num);
2633 	}
2634 }
2635 
2636 static struct tegra_xudc_request *
2637 trb_to_request(struct tegra_xudc_ep *ep, struct tegra_xudc_trb *trb)
2638 {
2639 	struct tegra_xudc_request *req;
2640 
2641 	list_for_each_entry(req, &ep->queue, list) {
2642 		if (!req->trbs_queued)
2643 			break;
2644 
2645 		if (trb_in_request(ep, req, trb))
2646 			return req;
2647 	}
2648 
2649 	return NULL;
2650 }
2651 
2652 static void tegra_xudc_handle_transfer_completion(struct tegra_xudc *xudc,
2653 						  struct tegra_xudc_ep *ep,
2654 						  struct tegra_xudc_trb *event)
2655 {
2656 	struct tegra_xudc_request *req;
2657 	struct tegra_xudc_trb *trb;
2658 	bool short_packet;
2659 
2660 	short_packet = (trb_read_cmpl_code(event) ==
2661 			TRB_CMPL_CODE_SHORT_PACKET);
2662 
2663 	trb = trb_phys_to_virt(ep, trb_read_data_ptr(event));
2664 	req = trb_to_request(ep, trb);
2665 
2666 	/*
2667 	 * TDs are complete on short packet or when the completed TRB is the
2668 	 * last TRB in the TD (the CHAIN bit is unset).
2669 	 */
2670 	if (req && (short_packet || (!trb_read_chain(trb) &&
2671 		(req->trbs_needed == req->trbs_queued)))) {
2672 		struct tegra_xudc_trb *last = req->last_trb;
2673 		unsigned int residual;
2674 
2675 		residual = trb_read_transfer_len(event);
2676 		req->usb_req.actual = req->usb_req.length - residual;
2677 
2678 		dev_dbg(xudc->dev, "bytes transferred %u / %u\n",
2679 			req->usb_req.actual, req->usb_req.length);
2680 
2681 		tegra_xudc_req_done(ep, req, 0);
2682 
2683 		if (ep->desc && usb_endpoint_xfer_control(ep->desc))
2684 			tegra_xudc_ep0_req_done(xudc);
2685 
2686 		/*
2687 		 * Advance the dequeue pointer past the end of the current TD
2688 		 * on short packet completion.
2689 		 */
2690 		if (short_packet) {
2691 			ep->deq_ptr = (last - ep->transfer_ring) + 1;
2692 			if (ep->deq_ptr == XUDC_TRANSFER_RING_SIZE - 1)
2693 				ep->deq_ptr = 0;
2694 		}
2695 	} else if (!req) {
2696 		dev_warn(xudc->dev, "transfer event on dequeued request\n");
2697 	}
2698 
2699 	if (ep->desc)
2700 		tegra_xudc_ep_kick_queue(ep);
2701 }
2702 
2703 static void tegra_xudc_handle_transfer_event(struct tegra_xudc *xudc,
2704 					     struct tegra_xudc_trb *event)
2705 {
2706 	unsigned int ep_index = trb_read_endpoint_id(event);
2707 	struct tegra_xudc_ep *ep = &xudc->ep[ep_index];
2708 	struct tegra_xudc_trb *trb;
2709 	u16 comp_code;
2710 
2711 	if (ep_ctx_read_state(ep->context) == EP_STATE_DISABLED) {
2712 		dev_warn(xudc->dev, "transfer event on disabled EP %u\n",
2713 			 ep_index);
2714 		return;
2715 	}
2716 
2717 	/* Update transfer ring dequeue pointer. */
2718 	trb = trb_phys_to_virt(ep, trb_read_data_ptr(event));
2719 	comp_code = trb_read_cmpl_code(event);
2720 	if (comp_code != TRB_CMPL_CODE_BABBLE_DETECTED_ERR) {
2721 		ep->deq_ptr = (trb - ep->transfer_ring) + 1;
2722 
2723 		if (ep->deq_ptr == XUDC_TRANSFER_RING_SIZE - 1)
2724 			ep->deq_ptr = 0;
2725 		ep->ring_full = false;
2726 	}
2727 
2728 	switch (comp_code) {
2729 	case TRB_CMPL_CODE_SUCCESS:
2730 	case TRB_CMPL_CODE_SHORT_PACKET:
2731 		tegra_xudc_handle_transfer_completion(xudc, ep, event);
2732 		break;
2733 	case TRB_CMPL_CODE_HOST_REJECTED:
2734 		dev_info(xudc->dev, "stream rejected on EP %u\n", ep_index);
2735 
2736 		ep->stream_rejected = true;
2737 		break;
2738 	case TRB_CMPL_CODE_PRIME_PIPE_RECEIVED:
2739 		dev_info(xudc->dev, "prime pipe received on EP %u\n", ep_index);
2740 
2741 		if (ep->stream_rejected) {
2742 			ep->stream_rejected = false;
2743 			/*
2744 			 * An EP is stopped when a stream is rejected.  Wait
2745 			 * for the EP to report that it is stopped and then
2746 			 * un-stop it.
2747 			 */
2748 			ep_wait_for_stopped(xudc, ep_index);
2749 		}
2750 		tegra_xudc_ep_ring_doorbell(ep);
2751 		break;
2752 	case TRB_CMPL_CODE_BABBLE_DETECTED_ERR:
2753 		/*
2754 		 * Wait for the EP to be stopped so the controller stops
2755 		 * processing doorbells.
2756 		 */
2757 		ep_wait_for_stopped(xudc, ep_index);
2758 		ep->enq_ptr = ep->deq_ptr;
2759 		tegra_xudc_ep_nuke(ep, -EIO);
2760 		fallthrough;
2761 	case TRB_CMPL_CODE_STREAM_NUMP_ERROR:
2762 	case TRB_CMPL_CODE_CTRL_DIR_ERR:
2763 	case TRB_CMPL_CODE_INVALID_STREAM_TYPE_ERR:
2764 	case TRB_CMPL_CODE_RING_UNDERRUN:
2765 	case TRB_CMPL_CODE_RING_OVERRUN:
2766 	case TRB_CMPL_CODE_ISOCH_BUFFER_OVERRUN:
2767 	case TRB_CMPL_CODE_USB_TRANS_ERR:
2768 	case TRB_CMPL_CODE_TRB_ERR:
2769 		dev_err(xudc->dev, "completion error %#x on EP %u\n",
2770 			comp_code, ep_index);
2771 
2772 		ep_halt(xudc, ep_index);
2773 		break;
2774 	case TRB_CMPL_CODE_CTRL_SEQNUM_ERR:
2775 		dev_info(xudc->dev, "sequence number error\n");
2776 
2777 		/*
2778 		 * Kill any queued control request and skip to the last
2779 		 * setup packet we received.
2780 		 */
2781 		tegra_xudc_ep_nuke(ep, -EINVAL);
2782 		xudc->setup_state = WAIT_FOR_SETUP;
2783 		if (!xudc->queued_setup_packet)
2784 			break;
2785 
2786 		tegra_xudc_handle_ep0_setup_packet(xudc,
2787 						   &xudc->setup_packet.ctrl_req,
2788 						   xudc->setup_packet.seq_num);
2789 		xudc->queued_setup_packet = false;
2790 		break;
2791 	case TRB_CMPL_CODE_STOPPED:
2792 		dev_dbg(xudc->dev, "stop completion code on EP %u\n",
2793 			ep_index);
2794 
2795 		/* Disconnected. */
2796 		tegra_xudc_ep_nuke(ep, -ECONNREFUSED);
2797 		break;
2798 	default:
2799 		dev_dbg(xudc->dev, "completion event %#x on EP %u\n",
2800 			comp_code, ep_index);
2801 		break;
2802 	}
2803 }
2804 
2805 static void tegra_xudc_reset(struct tegra_xudc *xudc)
2806 {
2807 	struct tegra_xudc_ep *ep0 = &xudc->ep[0];
2808 	dma_addr_t deq_ptr;
2809 	unsigned int i;
2810 
2811 	xudc->setup_state = WAIT_FOR_SETUP;
2812 	xudc->device_state = USB_STATE_DEFAULT;
2813 	usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2814 
2815 	ep_unpause_all(xudc);
2816 
2817 	for (i = 0; i < ARRAY_SIZE(xudc->ep); i++)
2818 		tegra_xudc_ep_nuke(&xudc->ep[i], -ESHUTDOWN);
2819 
2820 	/*
2821 	 * Reset sequence number and dequeue pointer to flush the transfer
2822 	 * ring.
2823 	 */
2824 	ep0->deq_ptr = ep0->enq_ptr;
2825 	ep0->ring_full = false;
2826 
2827 	xudc->setup_seq_num = 0;
2828 	xudc->queued_setup_packet = false;
2829 
2830 	ep_ctx_write_rsvd(ep0->context, 0);
2831 	ep_ctx_write_partial_td(ep0->context, 0);
2832 	ep_ctx_write_splitxstate(ep0->context, 0);
2833 	ep_ctx_write_seq_num(ep0->context, 0);
2834 
2835 	deq_ptr = trb_virt_to_phys(ep0, &ep0->transfer_ring[ep0->deq_ptr]);
2836 
2837 	if (!dma_mapping_error(xudc->dev, deq_ptr)) {
2838 		ep_ctx_write_deq_ptr(ep0->context, deq_ptr);
2839 		ep_ctx_write_dcs(ep0->context, ep0->pcs);
2840 	}
2841 
2842 	ep_unhalt_all(xudc);
2843 	ep_reload(xudc, 0);
2844 	ep_unpause(xudc, 0);
2845 }
2846 
2847 static void tegra_xudc_port_connect(struct tegra_xudc *xudc)
2848 {
2849 	struct tegra_xudc_ep *ep0 = &xudc->ep[0];
2850 	u16 maxpacket;
2851 	u32 val;
2852 
2853 	val = (xudc_readl(xudc, PORTSC) & PORTSC_PS_MASK) >> PORTSC_PS_SHIFT;
2854 	switch (val) {
2855 	case PORTSC_PS_LS:
2856 		xudc->gadget.speed = USB_SPEED_LOW;
2857 		break;
2858 	case PORTSC_PS_FS:
2859 		xudc->gadget.speed = USB_SPEED_FULL;
2860 		break;
2861 	case PORTSC_PS_HS:
2862 		xudc->gadget.speed = USB_SPEED_HIGH;
2863 		break;
2864 	case PORTSC_PS_SS:
2865 		xudc->gadget.speed = USB_SPEED_SUPER;
2866 		break;
2867 	default:
2868 		xudc->gadget.speed = USB_SPEED_UNKNOWN;
2869 		break;
2870 	}
2871 
2872 	xudc->device_state = USB_STATE_DEFAULT;
2873 	usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2874 
2875 	xudc->setup_state = WAIT_FOR_SETUP;
2876 
2877 	if (xudc->gadget.speed == USB_SPEED_SUPER)
2878 		maxpacket = 512;
2879 	else
2880 		maxpacket = 64;
2881 
2882 	ep_ctx_write_max_packet_size(ep0->context, maxpacket);
2883 	tegra_xudc_ep0_desc.wMaxPacketSize = cpu_to_le16(maxpacket);
2884 	usb_ep_set_maxpacket_limit(&ep0->usb_ep, maxpacket);
2885 
2886 	if (!xudc->soc->u1_enable) {
2887 		val = xudc_readl(xudc, PORTPM);
2888 		val &= ~(PORTPM_U1TIMEOUT_MASK);
2889 		xudc_writel(xudc, val, PORTPM);
2890 	}
2891 
2892 	if (!xudc->soc->u2_enable) {
2893 		val = xudc_readl(xudc, PORTPM);
2894 		val &= ~(PORTPM_U2TIMEOUT_MASK);
2895 		xudc_writel(xudc, val, PORTPM);
2896 	}
2897 
2898 	if (xudc->gadget.speed <= USB_SPEED_HIGH) {
2899 		val = xudc_readl(xudc, PORTPM);
2900 		val &= ~(PORTPM_L1S_MASK);
2901 		if (xudc->soc->lpm_enable)
2902 			val |= PORTPM_L1S(PORTPM_L1S_ACCEPT);
2903 		else
2904 			val |= PORTPM_L1S(PORTPM_L1S_NYET);
2905 		xudc_writel(xudc, val, PORTPM);
2906 	}
2907 
2908 	val = xudc_readl(xudc, ST);
2909 	if (val & ST_RC)
2910 		xudc_writel(xudc, ST_RC, ST);
2911 }
2912 
2913 static void tegra_xudc_port_disconnect(struct tegra_xudc *xudc)
2914 {
2915 	tegra_xudc_reset(xudc);
2916 
2917 	if (xudc->driver && xudc->driver->disconnect) {
2918 		spin_unlock(&xudc->lock);
2919 		xudc->driver->disconnect(&xudc->gadget);
2920 		spin_lock(&xudc->lock);
2921 	}
2922 
2923 	xudc->device_state = USB_STATE_NOTATTACHED;
2924 	usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2925 
2926 	complete(&xudc->disconnect_complete);
2927 }
2928 
2929 static void tegra_xudc_port_reset(struct tegra_xudc *xudc)
2930 {
2931 	tegra_xudc_reset(xudc);
2932 
2933 	if (xudc->driver) {
2934 		spin_unlock(&xudc->lock);
2935 		usb_gadget_udc_reset(&xudc->gadget, xudc->driver);
2936 		spin_lock(&xudc->lock);
2937 	}
2938 
2939 	tegra_xudc_port_connect(xudc);
2940 }
2941 
2942 static void tegra_xudc_port_suspend(struct tegra_xudc *xudc)
2943 {
2944 	dev_dbg(xudc->dev, "port suspend\n");
2945 
2946 	xudc->resume_state = xudc->device_state;
2947 	xudc->device_state = USB_STATE_SUSPENDED;
2948 	usb_gadget_set_state(&xudc->gadget, xudc->device_state);
2949 
2950 	if (xudc->driver->suspend) {
2951 		spin_unlock(&xudc->lock);
2952 		xudc->driver->suspend(&xudc->gadget);
2953 		spin_lock(&xudc->lock);
2954 	}
2955 }
2956 
2957 static void tegra_xudc_port_resume(struct tegra_xudc *xudc)
2958 {
2959 	dev_dbg(xudc->dev, "port resume\n");
2960 
2961 	tegra_xudc_resume_device_state(xudc);
2962 
2963 	if (xudc->driver->resume) {
2964 		spin_unlock(&xudc->lock);
2965 		xudc->driver->resume(&xudc->gadget);
2966 		spin_lock(&xudc->lock);
2967 	}
2968 }
2969 
2970 static inline void clear_port_change(struct tegra_xudc *xudc, u32 flag)
2971 {
2972 	u32 val;
2973 
2974 	val = xudc_readl(xudc, PORTSC);
2975 	val &= ~PORTSC_CHANGE_MASK;
2976 	val |= flag;
2977 	xudc_writel(xudc, val, PORTSC);
2978 }
2979 
2980 static void __tegra_xudc_handle_port_status(struct tegra_xudc *xudc)
2981 {
2982 	u32 portsc, porthalt;
2983 
2984 	porthalt = xudc_readl(xudc, PORTHALT);
2985 	if ((porthalt & PORTHALT_STCHG_REQ) &&
2986 	    (porthalt & PORTHALT_HALT_LTSSM)) {
2987 		dev_dbg(xudc->dev, "STCHG_REQ, PORTHALT = %#x\n", porthalt);
2988 		porthalt &= ~PORTHALT_HALT_LTSSM;
2989 		xudc_writel(xudc, porthalt, PORTHALT);
2990 	}
2991 
2992 	portsc = xudc_readl(xudc, PORTSC);
2993 	if ((portsc & PORTSC_PRC) && (portsc & PORTSC_PR)) {
2994 		dev_dbg(xudc->dev, "PRC, PR, PORTSC = %#x\n", portsc);
2995 		clear_port_change(xudc, PORTSC_PRC | PORTSC_PED);
2996 #define TOGGLE_VBUS_WAIT_MS 100
2997 		if (xudc->soc->port_reset_quirk) {
2998 			schedule_delayed_work(&xudc->port_reset_war_work,
2999 				msecs_to_jiffies(TOGGLE_VBUS_WAIT_MS));
3000 			xudc->wait_for_sec_prc = 1;
3001 		}
3002 	}
3003 
3004 	if ((portsc & PORTSC_PRC) && !(portsc & PORTSC_PR)) {
3005 		dev_dbg(xudc->dev, "PRC, Not PR, PORTSC = %#x\n", portsc);
3006 		clear_port_change(xudc, PORTSC_PRC | PORTSC_PED);
3007 		tegra_xudc_port_reset(xudc);
3008 		cancel_delayed_work(&xudc->port_reset_war_work);
3009 		xudc->wait_for_sec_prc = 0;
3010 	}
3011 
3012 	portsc = xudc_readl(xudc, PORTSC);
3013 	if (portsc & PORTSC_WRC) {
3014 		dev_dbg(xudc->dev, "WRC, PORTSC = %#x\n", portsc);
3015 		clear_port_change(xudc, PORTSC_WRC | PORTSC_PED);
3016 		if (!(xudc_readl(xudc, PORTSC) & PORTSC_WPR))
3017 			tegra_xudc_port_reset(xudc);
3018 	}
3019 
3020 	portsc = xudc_readl(xudc, PORTSC);
3021 	if (portsc & PORTSC_CSC) {
3022 		dev_dbg(xudc->dev, "CSC, PORTSC = %#x\n", portsc);
3023 		clear_port_change(xudc, PORTSC_CSC);
3024 
3025 		if (portsc & PORTSC_CCS)
3026 			tegra_xudc_port_connect(xudc);
3027 		else
3028 			tegra_xudc_port_disconnect(xudc);
3029 
3030 		if (xudc->wait_csc) {
3031 			cancel_delayed_work(&xudc->plc_reset_work);
3032 			xudc->wait_csc = false;
3033 		}
3034 	}
3035 
3036 	portsc = xudc_readl(xudc, PORTSC);
3037 	if (portsc & PORTSC_PLC) {
3038 		u32 pls = (portsc & PORTSC_PLS_MASK) >> PORTSC_PLS_SHIFT;
3039 
3040 		dev_dbg(xudc->dev, "PLC, PORTSC = %#x\n", portsc);
3041 		clear_port_change(xudc, PORTSC_PLC);
3042 		switch (pls) {
3043 		case PORTSC_PLS_U3:
3044 			tegra_xudc_port_suspend(xudc);
3045 			break;
3046 		case PORTSC_PLS_U0:
3047 			if (xudc->gadget.speed < USB_SPEED_SUPER)
3048 				tegra_xudc_port_resume(xudc);
3049 			break;
3050 		case PORTSC_PLS_RESUME:
3051 			if (xudc->gadget.speed == USB_SPEED_SUPER)
3052 				tegra_xudc_port_resume(xudc);
3053 			break;
3054 		case PORTSC_PLS_INACTIVE:
3055 			schedule_delayed_work(&xudc->plc_reset_work,
3056 					msecs_to_jiffies(TOGGLE_VBUS_WAIT_MS));
3057 			xudc->wait_csc = true;
3058 			break;
3059 		default:
3060 			break;
3061 		}
3062 	}
3063 
3064 	if (portsc & PORTSC_CEC) {
3065 		dev_warn(xudc->dev, "CEC, PORTSC = %#x\n", portsc);
3066 		clear_port_change(xudc, PORTSC_CEC);
3067 	}
3068 
3069 	dev_dbg(xudc->dev, "PORTSC = %#x\n", xudc_readl(xudc, PORTSC));
3070 }
3071 
3072 static void tegra_xudc_handle_port_status(struct tegra_xudc *xudc)
3073 {
3074 	while ((xudc_readl(xudc, PORTSC) & PORTSC_CHANGE_MASK) ||
3075 	       (xudc_readl(xudc, PORTHALT) & PORTHALT_STCHG_REQ))
3076 		__tegra_xudc_handle_port_status(xudc);
3077 }
3078 
3079 static void tegra_xudc_handle_event(struct tegra_xudc *xudc,
3080 				    struct tegra_xudc_trb *event)
3081 {
3082 	u32 type = trb_read_type(event);
3083 
3084 	dump_trb(xudc, "EVENT", event);
3085 
3086 	switch (type) {
3087 	case TRB_TYPE_PORT_STATUS_CHANGE_EVENT:
3088 		tegra_xudc_handle_port_status(xudc);
3089 		break;
3090 	case TRB_TYPE_TRANSFER_EVENT:
3091 		tegra_xudc_handle_transfer_event(xudc, event);
3092 		break;
3093 	case TRB_TYPE_SETUP_PACKET_EVENT:
3094 		tegra_xudc_handle_ep0_event(xudc, event);
3095 		break;
3096 	default:
3097 		dev_info(xudc->dev, "Unrecognized TRB type = %#x\n", type);
3098 		break;
3099 	}
3100 }
3101 
3102 static void tegra_xudc_process_event_ring(struct tegra_xudc *xudc)
3103 {
3104 	struct tegra_xudc_trb *event;
3105 	dma_addr_t erdp;
3106 
3107 	while (true) {
3108 		event = xudc->event_ring[xudc->event_ring_index] +
3109 			xudc->event_ring_deq_ptr;
3110 
3111 		if (trb_read_cycle(event) != xudc->ccs)
3112 			break;
3113 
3114 		tegra_xudc_handle_event(xudc, event);
3115 
3116 		xudc->event_ring_deq_ptr++;
3117 		if (xudc->event_ring_deq_ptr == XUDC_EVENT_RING_SIZE) {
3118 			xudc->event_ring_deq_ptr = 0;
3119 			xudc->event_ring_index++;
3120 		}
3121 
3122 		if (xudc->event_ring_index == XUDC_NR_EVENT_RINGS) {
3123 			xudc->event_ring_index = 0;
3124 			xudc->ccs = !xudc->ccs;
3125 		}
3126 	}
3127 
3128 	erdp = xudc->event_ring_phys[xudc->event_ring_index] +
3129 		xudc->event_ring_deq_ptr * sizeof(*event);
3130 
3131 	xudc_writel(xudc, upper_32_bits(erdp), ERDPHI);
3132 	xudc_writel(xudc, lower_32_bits(erdp) | ERDPLO_EHB, ERDPLO);
3133 }
3134 
3135 static irqreturn_t tegra_xudc_irq(int irq, void *data)
3136 {
3137 	struct tegra_xudc *xudc = data;
3138 	unsigned long flags;
3139 	u32 val;
3140 
3141 	val = xudc_readl(xudc, ST);
3142 	if (!(val & ST_IP))
3143 		return IRQ_NONE;
3144 	xudc_writel(xudc, ST_IP, ST);
3145 
3146 	spin_lock_irqsave(&xudc->lock, flags);
3147 	tegra_xudc_process_event_ring(xudc);
3148 	spin_unlock_irqrestore(&xudc->lock, flags);
3149 
3150 	return IRQ_HANDLED;
3151 }
3152 
3153 static int tegra_xudc_alloc_ep(struct tegra_xudc *xudc, unsigned int index)
3154 {
3155 	struct tegra_xudc_ep *ep = &xudc->ep[index];
3156 
3157 	ep->xudc = xudc;
3158 	ep->index = index;
3159 	ep->context = &xudc->ep_context[index];
3160 	INIT_LIST_HEAD(&ep->queue);
3161 
3162 	/*
3163 	 * EP1 would be the input endpoint corresponding to EP0, but since
3164 	 * EP0 is bi-directional, EP1 is unused.
3165 	 */
3166 	if (index == 1)
3167 		return 0;
3168 
3169 	ep->transfer_ring = dma_pool_alloc(xudc->transfer_ring_pool,
3170 					   GFP_KERNEL,
3171 					   &ep->transfer_ring_phys);
3172 	if (!ep->transfer_ring)
3173 		return -ENOMEM;
3174 
3175 	if (index) {
3176 		snprintf(ep->name, sizeof(ep->name), "ep%u%s", index / 2,
3177 			 (index % 2 == 0) ? "out" : "in");
3178 		ep->usb_ep.name = ep->name;
3179 		usb_ep_set_maxpacket_limit(&ep->usb_ep, 1024);
3180 		ep->usb_ep.max_streams = 16;
3181 		ep->usb_ep.ops = &tegra_xudc_ep_ops;
3182 		ep->usb_ep.caps.type_bulk = true;
3183 		ep->usb_ep.caps.type_int = true;
3184 		if (index & 1)
3185 			ep->usb_ep.caps.dir_in = true;
3186 		else
3187 			ep->usb_ep.caps.dir_out = true;
3188 		list_add_tail(&ep->usb_ep.ep_list, &xudc->gadget.ep_list);
3189 	} else {
3190 		strscpy(ep->name, "ep0", 3);
3191 		ep->usb_ep.name = ep->name;
3192 		usb_ep_set_maxpacket_limit(&ep->usb_ep, 512);
3193 		ep->usb_ep.ops = &tegra_xudc_ep0_ops;
3194 		ep->usb_ep.caps.type_control = true;
3195 		ep->usb_ep.caps.dir_in = true;
3196 		ep->usb_ep.caps.dir_out = true;
3197 	}
3198 
3199 	return 0;
3200 }
3201 
3202 static void tegra_xudc_free_ep(struct tegra_xudc *xudc, unsigned int index)
3203 {
3204 	struct tegra_xudc_ep *ep = &xudc->ep[index];
3205 
3206 	/*
3207 	 * EP1 would be the input endpoint corresponding to EP0, but since
3208 	 * EP0 is bi-directional, EP1 is unused.
3209 	 */
3210 	if (index == 1)
3211 		return;
3212 
3213 	dma_pool_free(xudc->transfer_ring_pool, ep->transfer_ring,
3214 		      ep->transfer_ring_phys);
3215 }
3216 
3217 static int tegra_xudc_alloc_eps(struct tegra_xudc *xudc)
3218 {
3219 	struct usb_request *req;
3220 	unsigned int i;
3221 	int err;
3222 
3223 	xudc->ep_context =
3224 		dma_alloc_coherent(xudc->dev, XUDC_NR_EPS *
3225 				    sizeof(*xudc->ep_context),
3226 				    &xudc->ep_context_phys, GFP_KERNEL);
3227 	if (!xudc->ep_context)
3228 		return -ENOMEM;
3229 
3230 	xudc->transfer_ring_pool =
3231 		dmam_pool_create(dev_name(xudc->dev), xudc->dev,
3232 				 XUDC_TRANSFER_RING_SIZE *
3233 				 sizeof(struct tegra_xudc_trb),
3234 				 sizeof(struct tegra_xudc_trb), 0);
3235 	if (!xudc->transfer_ring_pool) {
3236 		err = -ENOMEM;
3237 		goto free_ep_context;
3238 	}
3239 
3240 	INIT_LIST_HEAD(&xudc->gadget.ep_list);
3241 	for (i = 0; i < ARRAY_SIZE(xudc->ep); i++) {
3242 		err = tegra_xudc_alloc_ep(xudc, i);
3243 		if (err < 0)
3244 			goto free_eps;
3245 	}
3246 
3247 	req = tegra_xudc_ep_alloc_request(&xudc->ep[0].usb_ep, GFP_KERNEL);
3248 	if (!req) {
3249 		err = -ENOMEM;
3250 		goto free_eps;
3251 	}
3252 	xudc->ep0_req = to_xudc_req(req);
3253 
3254 	return 0;
3255 
3256 free_eps:
3257 	for (; i > 0; i--)
3258 		tegra_xudc_free_ep(xudc, i - 1);
3259 free_ep_context:
3260 	dma_free_coherent(xudc->dev, XUDC_NR_EPS * sizeof(*xudc->ep_context),
3261 			  xudc->ep_context, xudc->ep_context_phys);
3262 	return err;
3263 }
3264 
3265 static void tegra_xudc_init_eps(struct tegra_xudc *xudc)
3266 {
3267 	xudc_writel(xudc, lower_32_bits(xudc->ep_context_phys), ECPLO);
3268 	xudc_writel(xudc, upper_32_bits(xudc->ep_context_phys), ECPHI);
3269 }
3270 
3271 static void tegra_xudc_free_eps(struct tegra_xudc *xudc)
3272 {
3273 	unsigned int i;
3274 
3275 	tegra_xudc_ep_free_request(&xudc->ep[0].usb_ep,
3276 				   &xudc->ep0_req->usb_req);
3277 
3278 	for (i = 0; i < ARRAY_SIZE(xudc->ep); i++)
3279 		tegra_xudc_free_ep(xudc, i);
3280 
3281 	dma_free_coherent(xudc->dev, XUDC_NR_EPS * sizeof(*xudc->ep_context),
3282 			  xudc->ep_context, xudc->ep_context_phys);
3283 }
3284 
3285 static int tegra_xudc_alloc_event_ring(struct tegra_xudc *xudc)
3286 {
3287 	unsigned int i;
3288 
3289 	for (i = 0; i < ARRAY_SIZE(xudc->event_ring); i++) {
3290 		xudc->event_ring[i] =
3291 			dma_alloc_coherent(xudc->dev, XUDC_EVENT_RING_SIZE *
3292 					   sizeof(*xudc->event_ring[i]),
3293 					   &xudc->event_ring_phys[i],
3294 					   GFP_KERNEL);
3295 		if (!xudc->event_ring[i])
3296 			goto free_dma;
3297 	}
3298 
3299 	return 0;
3300 
3301 free_dma:
3302 	for (; i > 0; i--) {
3303 		dma_free_coherent(xudc->dev, XUDC_EVENT_RING_SIZE *
3304 				  sizeof(*xudc->event_ring[i - 1]),
3305 				  xudc->event_ring[i - 1],
3306 				  xudc->event_ring_phys[i - 1]);
3307 	}
3308 	return -ENOMEM;
3309 }
3310 
3311 static void tegra_xudc_init_event_ring(struct tegra_xudc *xudc)
3312 {
3313 	unsigned int i;
3314 	u32 val;
3315 
3316 	for (i = 0; i < ARRAY_SIZE(xudc->event_ring); i++) {
3317 		memset(xudc->event_ring[i], 0, XUDC_EVENT_RING_SIZE *
3318 		       sizeof(*xudc->event_ring[i]));
3319 
3320 		val = xudc_readl(xudc, ERSTSZ);
3321 		val &= ~(ERSTSZ_ERSTXSZ_MASK << ERSTSZ_ERSTXSZ_SHIFT(i));
3322 		val |= XUDC_EVENT_RING_SIZE << ERSTSZ_ERSTXSZ_SHIFT(i);
3323 		xudc_writel(xudc, val, ERSTSZ);
3324 
3325 		xudc_writel(xudc, lower_32_bits(xudc->event_ring_phys[i]),
3326 			    ERSTXBALO(i));
3327 		xudc_writel(xudc, upper_32_bits(xudc->event_ring_phys[i]),
3328 			    ERSTXBAHI(i));
3329 	}
3330 
3331 	val = lower_32_bits(xudc->event_ring_phys[0]);
3332 	xudc_writel(xudc, val, ERDPLO);
3333 	val |= EREPLO_ECS;
3334 	xudc_writel(xudc, val, EREPLO);
3335 
3336 	val = upper_32_bits(xudc->event_ring_phys[0]);
3337 	xudc_writel(xudc, val, ERDPHI);
3338 	xudc_writel(xudc, val, EREPHI);
3339 
3340 	xudc->ccs = true;
3341 	xudc->event_ring_index = 0;
3342 	xudc->event_ring_deq_ptr = 0;
3343 }
3344 
3345 static void tegra_xudc_free_event_ring(struct tegra_xudc *xudc)
3346 {
3347 	unsigned int i;
3348 
3349 	for (i = 0; i < ARRAY_SIZE(xudc->event_ring); i++) {
3350 		dma_free_coherent(xudc->dev, XUDC_EVENT_RING_SIZE *
3351 				  sizeof(*xudc->event_ring[i]),
3352 				  xudc->event_ring[i],
3353 				  xudc->event_ring_phys[i]);
3354 	}
3355 }
3356 
3357 static void tegra_xudc_fpci_ipfs_init(struct tegra_xudc *xudc)
3358 {
3359 	u32 val;
3360 
3361 	if (xudc->soc->has_ipfs) {
3362 		val = ipfs_readl(xudc, XUSB_DEV_CONFIGURATION_0);
3363 		val |= XUSB_DEV_CONFIGURATION_0_EN_FPCI;
3364 		ipfs_writel(xudc, val, XUSB_DEV_CONFIGURATION_0);
3365 		usleep_range(10, 15);
3366 	}
3367 
3368 	/* Enable bus master */
3369 	val = XUSB_DEV_CFG_1_IO_SPACE_EN | XUSB_DEV_CFG_1_MEMORY_SPACE_EN |
3370 		XUSB_DEV_CFG_1_BUS_MASTER_EN;
3371 	fpci_writel(xudc, val, XUSB_DEV_CFG_1);
3372 
3373 	/* Program BAR0 space */
3374 	val = fpci_readl(xudc, XUSB_DEV_CFG_4);
3375 	val &= ~(XUSB_DEV_CFG_4_BASE_ADDR_MASK);
3376 	val |= xudc->phys_base & (XUSB_DEV_CFG_4_BASE_ADDR_MASK);
3377 
3378 	fpci_writel(xudc, val, XUSB_DEV_CFG_4);
3379 	fpci_writel(xudc, upper_32_bits(xudc->phys_base), XUSB_DEV_CFG_5);
3380 
3381 	usleep_range(100, 200);
3382 
3383 	if (xudc->soc->has_ipfs) {
3384 		/* Enable interrupt assertion */
3385 		val = ipfs_readl(xudc, XUSB_DEV_INTR_MASK_0);
3386 		val |= XUSB_DEV_INTR_MASK_0_IP_INT_MASK;
3387 		ipfs_writel(xudc, val, XUSB_DEV_INTR_MASK_0);
3388 	}
3389 }
3390 
3391 static void tegra_xudc_device_params_init(struct tegra_xudc *xudc)
3392 {
3393 	u32 val, imod;
3394 
3395 	if (xudc->soc->has_ipfs) {
3396 		val = xudc_readl(xudc, BLCG);
3397 		val |= BLCG_ALL;
3398 		val &= ~(BLCG_DFPCI | BLCG_UFPCI | BLCG_FE |
3399 				BLCG_COREPLL_PWRDN);
3400 		val |= BLCG_IOPLL_0_PWRDN;
3401 		val |= BLCG_IOPLL_1_PWRDN;
3402 		val |= BLCG_IOPLL_2_PWRDN;
3403 
3404 		xudc_writel(xudc, val, BLCG);
3405 	}
3406 
3407 	if (xudc->soc->port_speed_quirk)
3408 		tegra_xudc_limit_port_speed(xudc);
3409 
3410 	/* Set a reasonable U3 exit timer value. */
3411 	val = xudc_readl(xudc, SSPX_CORE_PADCTL4);
3412 	val &= ~(SSPX_CORE_PADCTL4_RXDAT_VLD_TIMEOUT_U3_MASK);
3413 	val |= SSPX_CORE_PADCTL4_RXDAT_VLD_TIMEOUT_U3(0x5dc0);
3414 	xudc_writel(xudc, val, SSPX_CORE_PADCTL4);
3415 
3416 	/* Default ping LFPS tBurst is too large. */
3417 	val = xudc_readl(xudc, SSPX_CORE_CNT0);
3418 	val &= ~(SSPX_CORE_CNT0_PING_TBURST_MASK);
3419 	val |= SSPX_CORE_CNT0_PING_TBURST(0xa);
3420 	xudc_writel(xudc, val, SSPX_CORE_CNT0);
3421 
3422 	/* Default tPortConfiguration timeout is too small. */
3423 	val = xudc_readl(xudc, SSPX_CORE_CNT30);
3424 	val &= ~(SSPX_CORE_CNT30_LMPITP_TIMER_MASK);
3425 	val |= SSPX_CORE_CNT30_LMPITP_TIMER(0x978);
3426 	xudc_writel(xudc, val, SSPX_CORE_CNT30);
3427 
3428 	if (xudc->soc->lpm_enable) {
3429 		/* Set L1 resume duration to 95 us. */
3430 		val = xudc_readl(xudc, HSFSPI_COUNT13);
3431 		val &= ~(HSFSPI_COUNT13_U2_RESUME_K_DURATION_MASK);
3432 		val |= HSFSPI_COUNT13_U2_RESUME_K_DURATION(0x2c88);
3433 		xudc_writel(xudc, val, HSFSPI_COUNT13);
3434 	}
3435 
3436 	/*
3437 	 * Compliance suite appears to be violating polling LFPS tBurst max
3438 	 * of 1.4us.  Send 1.45us instead.
3439 	 */
3440 	val = xudc_readl(xudc, SSPX_CORE_CNT32);
3441 	val &= ~(SSPX_CORE_CNT32_POLL_TBURST_MAX_MASK);
3442 	val |= SSPX_CORE_CNT32_POLL_TBURST_MAX(0xb0);
3443 	xudc_writel(xudc, val, SSPX_CORE_CNT32);
3444 
3445 	/* Direct HS/FS port instance to RxDetect. */
3446 	val = xudc_readl(xudc, CFG_DEV_FE);
3447 	val &= ~(CFG_DEV_FE_PORTREGSEL_MASK);
3448 	val |= CFG_DEV_FE_PORTREGSEL(CFG_DEV_FE_PORTREGSEL_HSFS_PI);
3449 	xudc_writel(xudc, val, CFG_DEV_FE);
3450 
3451 	val = xudc_readl(xudc, PORTSC);
3452 	val &= ~(PORTSC_CHANGE_MASK | PORTSC_PLS_MASK);
3453 	val |= PORTSC_LWS | PORTSC_PLS(PORTSC_PLS_RXDETECT);
3454 	xudc_writel(xudc, val, PORTSC);
3455 
3456 	/* Direct SS port instance to RxDetect. */
3457 	val = xudc_readl(xudc, CFG_DEV_FE);
3458 	val &= ~(CFG_DEV_FE_PORTREGSEL_MASK);
3459 	val |= CFG_DEV_FE_PORTREGSEL_SS_PI & CFG_DEV_FE_PORTREGSEL_MASK;
3460 	xudc_writel(xudc, val, CFG_DEV_FE);
3461 
3462 	val = xudc_readl(xudc, PORTSC);
3463 	val &= ~(PORTSC_CHANGE_MASK | PORTSC_PLS_MASK);
3464 	val |= PORTSC_LWS | PORTSC_PLS(PORTSC_PLS_RXDETECT);
3465 	xudc_writel(xudc, val, PORTSC);
3466 
3467 	/* Restore port instance. */
3468 	val = xudc_readl(xudc, CFG_DEV_FE);
3469 	val &= ~(CFG_DEV_FE_PORTREGSEL_MASK);
3470 	xudc_writel(xudc, val, CFG_DEV_FE);
3471 
3472 	/*
3473 	 * Enable INFINITE_SS_RETRY to prevent device from entering
3474 	 * Disabled.Error when attached to buggy SuperSpeed hubs.
3475 	 */
3476 	val = xudc_readl(xudc, CFG_DEV_FE);
3477 	val |= CFG_DEV_FE_INFINITE_SS_RETRY;
3478 	xudc_writel(xudc, val, CFG_DEV_FE);
3479 
3480 	/* Set interrupt moderation. */
3481 	imod = XUDC_INTERRUPT_MODERATION_US * 4;
3482 	val = xudc_readl(xudc, RT_IMOD);
3483 	val &= ~((RT_IMOD_IMODI_MASK) | (RT_IMOD_IMODC_MASK));
3484 	val |= (RT_IMOD_IMODI(imod) | RT_IMOD_IMODC(imod));
3485 	xudc_writel(xudc, val, RT_IMOD);
3486 
3487 	/* increase SSPI transaction timeout from 32us to 512us */
3488 	val = xudc_readl(xudc, CFG_DEV_SSPI_XFER);
3489 	val &= ~(CFG_DEV_SSPI_XFER_ACKTIMEOUT_MASK);
3490 	val |= CFG_DEV_SSPI_XFER_ACKTIMEOUT(0xf000);
3491 	xudc_writel(xudc, val, CFG_DEV_SSPI_XFER);
3492 }
3493 
3494 static int tegra_xudc_phy_get(struct tegra_xudc *xudc)
3495 {
3496 	int err = 0, usb3;
3497 	unsigned int i;
3498 
3499 	xudc->utmi_phy = devm_kcalloc(xudc->dev, xudc->soc->num_phys,
3500 					   sizeof(*xudc->utmi_phy), GFP_KERNEL);
3501 	if (!xudc->utmi_phy)
3502 		return -ENOMEM;
3503 
3504 	xudc->usb3_phy = devm_kcalloc(xudc->dev, xudc->soc->num_phys,
3505 					   sizeof(*xudc->usb3_phy), GFP_KERNEL);
3506 	if (!xudc->usb3_phy)
3507 		return -ENOMEM;
3508 
3509 	xudc->usbphy = devm_kcalloc(xudc->dev, xudc->soc->num_phys,
3510 					   sizeof(*xudc->usbphy), GFP_KERNEL);
3511 	if (!xudc->usbphy)
3512 		return -ENOMEM;
3513 
3514 	xudc->vbus_nb.notifier_call = tegra_xudc_vbus_notify;
3515 
3516 	for (i = 0; i < xudc->soc->num_phys; i++) {
3517 		char phy_name[] = "usb.-.";
3518 
3519 		/* Get USB2 phy */
3520 		snprintf(phy_name, sizeof(phy_name), "usb2-%d", i);
3521 		xudc->utmi_phy[i] = devm_phy_optional_get(xudc->dev, phy_name);
3522 		if (IS_ERR(xudc->utmi_phy[i])) {
3523 			err = PTR_ERR(xudc->utmi_phy[i]);
3524 			dev_err_probe(xudc->dev, err,
3525 				      "failed to get usb2-%d PHY\n", i);
3526 			goto clean_up;
3527 		} else if (xudc->utmi_phy[i]) {
3528 			/* Get usb-phy, if utmi phy is available */
3529 			xudc->usbphy[i] = devm_usb_get_phy_by_node(xudc->dev,
3530 						xudc->utmi_phy[i]->dev.of_node,
3531 						NULL);
3532 			if (IS_ERR(xudc->usbphy[i])) {
3533 				err = PTR_ERR(xudc->usbphy[i]);
3534 				dev_err_probe(xudc->dev, err,
3535 					      "failed to get usbphy-%d\n", i);
3536 				goto clean_up;
3537 			}
3538 		} else if (!xudc->utmi_phy[i]) {
3539 			/* if utmi phy is not available, ignore USB3 phy get */
3540 			continue;
3541 		}
3542 
3543 		/* Get USB3 phy */
3544 		usb3 = tegra_xusb_padctl_get_usb3_companion(xudc->padctl, i);
3545 		if (usb3 < 0)
3546 			continue;
3547 
3548 		snprintf(phy_name, sizeof(phy_name), "usb3-%d", usb3);
3549 		xudc->usb3_phy[i] = devm_phy_optional_get(xudc->dev, phy_name);
3550 		if (IS_ERR(xudc->usb3_phy[i])) {
3551 			err = PTR_ERR(xudc->usb3_phy[i]);
3552 			dev_err_probe(xudc->dev, err,
3553 				      "failed to get usb3-%d PHY\n", usb3);
3554 			goto clean_up;
3555 		} else if (xudc->usb3_phy[i])
3556 			dev_dbg(xudc->dev, "usb3-%d PHY registered", usb3);
3557 	}
3558 
3559 	return err;
3560 
3561 clean_up:
3562 	for (i = 0; i < xudc->soc->num_phys; i++) {
3563 		xudc->usb3_phy[i] = NULL;
3564 		xudc->utmi_phy[i] = NULL;
3565 		xudc->usbphy[i] = NULL;
3566 	}
3567 
3568 	return err;
3569 }
3570 
3571 static void tegra_xudc_phy_exit(struct tegra_xudc *xudc)
3572 {
3573 	unsigned int i;
3574 
3575 	for (i = 0; i < xudc->soc->num_phys; i++) {
3576 		phy_exit(xudc->usb3_phy[i]);
3577 		phy_exit(xudc->utmi_phy[i]);
3578 	}
3579 }
3580 
3581 static int tegra_xudc_phy_init(struct tegra_xudc *xudc)
3582 {
3583 	int err;
3584 	unsigned int i;
3585 
3586 	for (i = 0; i < xudc->soc->num_phys; i++) {
3587 		err = phy_init(xudc->utmi_phy[i]);
3588 		if (err < 0) {
3589 			dev_err(xudc->dev, "UTMI PHY #%u initialization failed: %d\n", i, err);
3590 			goto exit_phy;
3591 		}
3592 
3593 		err = phy_init(xudc->usb3_phy[i]);
3594 		if (err < 0) {
3595 			dev_err(xudc->dev, "USB3 PHY #%u initialization failed: %d\n", i, err);
3596 			goto exit_phy;
3597 		}
3598 	}
3599 	return 0;
3600 
3601 exit_phy:
3602 	tegra_xudc_phy_exit(xudc);
3603 	return err;
3604 }
3605 
3606 static const char * const tegra210_xudc_supply_names[] = {
3607 	"hvdd-usb",
3608 	"avddio-usb",
3609 };
3610 
3611 static const char * const tegra210_xudc_clock_names[] = {
3612 	"dev",
3613 	"ss",
3614 	"ss_src",
3615 	"hs_src",
3616 	"fs_src",
3617 };
3618 
3619 static const char * const tegra186_xudc_clock_names[] = {
3620 	"dev",
3621 	"ss",
3622 	"ss_src",
3623 	"fs_src",
3624 };
3625 
3626 static struct tegra_xudc_soc tegra210_xudc_soc_data = {
3627 	.supply_names = tegra210_xudc_supply_names,
3628 	.num_supplies = ARRAY_SIZE(tegra210_xudc_supply_names),
3629 	.clock_names = tegra210_xudc_clock_names,
3630 	.num_clks = ARRAY_SIZE(tegra210_xudc_clock_names),
3631 	.num_phys = 4,
3632 	.u1_enable = false,
3633 	.u2_enable = true,
3634 	.lpm_enable = false,
3635 	.invalid_seq_num = true,
3636 	.pls_quirk = true,
3637 	.port_reset_quirk = true,
3638 	.port_speed_quirk = false,
3639 	.has_ipfs = true,
3640 };
3641 
3642 static struct tegra_xudc_soc tegra186_xudc_soc_data = {
3643 	.clock_names = tegra186_xudc_clock_names,
3644 	.num_clks = ARRAY_SIZE(tegra186_xudc_clock_names),
3645 	.num_phys = 4,
3646 	.u1_enable = true,
3647 	.u2_enable = true,
3648 	.lpm_enable = false,
3649 	.invalid_seq_num = false,
3650 	.pls_quirk = false,
3651 	.port_reset_quirk = false,
3652 	.port_speed_quirk = false,
3653 	.has_ipfs = false,
3654 };
3655 
3656 static struct tegra_xudc_soc tegra194_xudc_soc_data = {
3657 	.clock_names = tegra186_xudc_clock_names,
3658 	.num_clks = ARRAY_SIZE(tegra186_xudc_clock_names),
3659 	.num_phys = 4,
3660 	.u1_enable = true,
3661 	.u2_enable = true,
3662 	.lpm_enable = true,
3663 	.invalid_seq_num = false,
3664 	.pls_quirk = false,
3665 	.port_reset_quirk = false,
3666 	.port_speed_quirk = true,
3667 	.has_ipfs = false,
3668 };
3669 
3670 static struct tegra_xudc_soc tegra234_xudc_soc_data = {
3671 	.clock_names = tegra186_xudc_clock_names,
3672 	.num_clks = ARRAY_SIZE(tegra186_xudc_clock_names),
3673 	.num_phys = 4,
3674 	.u1_enable = true,
3675 	.u2_enable = true,
3676 	.lpm_enable = true,
3677 	.invalid_seq_num = false,
3678 	.pls_quirk = false,
3679 	.port_reset_quirk = false,
3680 	.has_ipfs = false,
3681 };
3682 
3683 static const struct of_device_id tegra_xudc_of_match[] = {
3684 	{
3685 		.compatible = "nvidia,tegra210-xudc",
3686 		.data = &tegra210_xudc_soc_data
3687 	},
3688 	{
3689 		.compatible = "nvidia,tegra186-xudc",
3690 		.data = &tegra186_xudc_soc_data
3691 	},
3692 	{
3693 		.compatible = "nvidia,tegra194-xudc",
3694 		.data = &tegra194_xudc_soc_data
3695 	},
3696 	{
3697 		.compatible = "nvidia,tegra234-xudc",
3698 		.data = &tegra234_xudc_soc_data
3699 	},
3700 	{ }
3701 };
3702 MODULE_DEVICE_TABLE(of, tegra_xudc_of_match);
3703 
3704 static void tegra_xudc_powerdomain_remove(struct tegra_xudc *xudc)
3705 {
3706 	if (xudc->genpd_dl_ss)
3707 		device_link_del(xudc->genpd_dl_ss);
3708 	if (xudc->genpd_dl_device)
3709 		device_link_del(xudc->genpd_dl_device);
3710 	if (xudc->genpd_dev_ss)
3711 		dev_pm_domain_detach(xudc->genpd_dev_ss, true);
3712 	if (xudc->genpd_dev_device)
3713 		dev_pm_domain_detach(xudc->genpd_dev_device, true);
3714 }
3715 
3716 static int tegra_xudc_powerdomain_init(struct tegra_xudc *xudc)
3717 {
3718 	struct device *dev = xudc->dev;
3719 	int err;
3720 
3721 	xudc->genpd_dev_device = dev_pm_domain_attach_by_name(dev, "dev");
3722 	if (IS_ERR_OR_NULL(xudc->genpd_dev_device)) {
3723 		err = PTR_ERR(xudc->genpd_dev_device) ? : -ENODATA;
3724 		dev_err(dev, "failed to get device power domain: %d\n", err);
3725 		return err;
3726 	}
3727 
3728 	xudc->genpd_dev_ss = dev_pm_domain_attach_by_name(dev, "ss");
3729 	if (IS_ERR_OR_NULL(xudc->genpd_dev_ss)) {
3730 		err = PTR_ERR(xudc->genpd_dev_ss) ? : -ENODATA;
3731 		dev_err(dev, "failed to get SuperSpeed power domain: %d\n", err);
3732 		return err;
3733 	}
3734 
3735 	xudc->genpd_dl_device = device_link_add(dev, xudc->genpd_dev_device,
3736 						DL_FLAG_PM_RUNTIME |
3737 						DL_FLAG_STATELESS);
3738 	if (!xudc->genpd_dl_device) {
3739 		dev_err(dev, "failed to add USB device link\n");
3740 		return -ENODEV;
3741 	}
3742 
3743 	xudc->genpd_dl_ss = device_link_add(dev, xudc->genpd_dev_ss,
3744 					    DL_FLAG_PM_RUNTIME |
3745 					    DL_FLAG_STATELESS);
3746 	if (!xudc->genpd_dl_ss) {
3747 		dev_err(dev, "failed to add SuperSpeed device link\n");
3748 		return -ENODEV;
3749 	}
3750 
3751 	return 0;
3752 }
3753 
3754 static int tegra_xudc_probe(struct platform_device *pdev)
3755 {
3756 	struct tegra_xudc *xudc;
3757 	struct resource *res;
3758 	unsigned int i;
3759 	int err;
3760 
3761 	xudc = devm_kzalloc(&pdev->dev, sizeof(*xudc), GFP_KERNEL);
3762 	if (!xudc)
3763 		return -ENOMEM;
3764 
3765 	xudc->dev = &pdev->dev;
3766 	platform_set_drvdata(pdev, xudc);
3767 
3768 	xudc->soc = of_device_get_match_data(&pdev->dev);
3769 	if (!xudc->soc)
3770 		return -ENODEV;
3771 
3772 	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "base");
3773 	xudc->base = devm_ioremap_resource(&pdev->dev, res);
3774 	if (IS_ERR(xudc->base))
3775 		return PTR_ERR(xudc->base);
3776 	xudc->phys_base = res->start;
3777 
3778 	xudc->fpci = devm_platform_ioremap_resource_byname(pdev, "fpci");
3779 	if (IS_ERR(xudc->fpci))
3780 		return PTR_ERR(xudc->fpci);
3781 
3782 	if (xudc->soc->has_ipfs) {
3783 		xudc->ipfs = devm_platform_ioremap_resource_byname(pdev, "ipfs");
3784 		if (IS_ERR(xudc->ipfs))
3785 			return PTR_ERR(xudc->ipfs);
3786 	}
3787 
3788 	xudc->irq = platform_get_irq(pdev, 0);
3789 	if (xudc->irq < 0)
3790 		return xudc->irq;
3791 
3792 	err = devm_request_irq(&pdev->dev, xudc->irq, tegra_xudc_irq, 0,
3793 			       dev_name(&pdev->dev), xudc);
3794 	if (err < 0) {
3795 		dev_err(xudc->dev, "failed to claim IRQ#%u: %d\n", xudc->irq,
3796 			err);
3797 		return err;
3798 	}
3799 
3800 	xudc->clks = devm_kcalloc(&pdev->dev, xudc->soc->num_clks, sizeof(*xudc->clks),
3801 				  GFP_KERNEL);
3802 	if (!xudc->clks)
3803 		return -ENOMEM;
3804 
3805 	for (i = 0; i < xudc->soc->num_clks; i++)
3806 		xudc->clks[i].id = xudc->soc->clock_names[i];
3807 
3808 	err = devm_clk_bulk_get(&pdev->dev, xudc->soc->num_clks, xudc->clks);
3809 	if (err) {
3810 		dev_err_probe(xudc->dev, err, "failed to request clocks\n");
3811 		return err;
3812 	}
3813 
3814 	xudc->supplies = devm_kcalloc(&pdev->dev, xudc->soc->num_supplies,
3815 				      sizeof(*xudc->supplies), GFP_KERNEL);
3816 	if (!xudc->supplies)
3817 		return -ENOMEM;
3818 
3819 	for (i = 0; i < xudc->soc->num_supplies; i++)
3820 		xudc->supplies[i].supply = xudc->soc->supply_names[i];
3821 
3822 	err = devm_regulator_bulk_get(&pdev->dev, xudc->soc->num_supplies,
3823 				      xudc->supplies);
3824 	if (err) {
3825 		dev_err_probe(xudc->dev, err, "failed to request regulators\n");
3826 		return err;
3827 	}
3828 
3829 	xudc->padctl = tegra_xusb_padctl_get(&pdev->dev);
3830 	if (IS_ERR(xudc->padctl))
3831 		return PTR_ERR(xudc->padctl);
3832 
3833 	err = regulator_bulk_enable(xudc->soc->num_supplies, xudc->supplies);
3834 	if (err) {
3835 		dev_err(xudc->dev, "failed to enable regulators: %d\n", err);
3836 		goto put_padctl;
3837 	}
3838 
3839 	err = tegra_xudc_phy_get(xudc);
3840 	if (err)
3841 		goto disable_regulator;
3842 
3843 	err = tegra_xudc_powerdomain_init(xudc);
3844 	if (err)
3845 		goto put_powerdomains;
3846 
3847 	err = tegra_xudc_phy_init(xudc);
3848 	if (err)
3849 		goto put_powerdomains;
3850 
3851 	err = tegra_xudc_alloc_event_ring(xudc);
3852 	if (err)
3853 		goto disable_phy;
3854 
3855 	err = tegra_xudc_alloc_eps(xudc);
3856 	if (err)
3857 		goto free_event_ring;
3858 
3859 	spin_lock_init(&xudc->lock);
3860 
3861 	init_completion(&xudc->disconnect_complete);
3862 
3863 	INIT_WORK(&xudc->usb_role_sw_work, tegra_xudc_usb_role_sw_work);
3864 
3865 	INIT_DELAYED_WORK(&xudc->plc_reset_work, tegra_xudc_plc_reset_work);
3866 
3867 	INIT_DELAYED_WORK(&xudc->port_reset_war_work,
3868 				tegra_xudc_port_reset_war_work);
3869 
3870 	pm_runtime_enable(&pdev->dev);
3871 
3872 	xudc->gadget.ops = &tegra_xudc_gadget_ops;
3873 	xudc->gadget.ep0 = &xudc->ep[0].usb_ep;
3874 	xudc->gadget.name = "tegra-xudc";
3875 	xudc->gadget.max_speed = USB_SPEED_SUPER;
3876 
3877 	err = usb_add_gadget_udc(&pdev->dev, &xudc->gadget);
3878 	if (err) {
3879 		dev_err(&pdev->dev, "failed to add USB gadget: %d\n", err);
3880 		goto free_eps;
3881 	}
3882 
3883 	for (i = 0; i < xudc->soc->num_phys; i++) {
3884 		if (!xudc->usbphy[i])
3885 			continue;
3886 
3887 		usb_register_notifier(xudc->usbphy[i], &xudc->vbus_nb);
3888 		tegra_xudc_update_data_role(xudc, xudc->usbphy[i]);
3889 	}
3890 
3891 	return 0;
3892 
3893 free_eps:
3894 	pm_runtime_disable(&pdev->dev);
3895 	tegra_xudc_free_eps(xudc);
3896 free_event_ring:
3897 	tegra_xudc_free_event_ring(xudc);
3898 disable_phy:
3899 	tegra_xudc_phy_exit(xudc);
3900 put_powerdomains:
3901 	tegra_xudc_powerdomain_remove(xudc);
3902 disable_regulator:
3903 	regulator_bulk_disable(xudc->soc->num_supplies, xudc->supplies);
3904 put_padctl:
3905 	tegra_xusb_padctl_put(xudc->padctl);
3906 
3907 	return err;
3908 }
3909 
3910 static int tegra_xudc_remove(struct platform_device *pdev)
3911 {
3912 	struct tegra_xudc *xudc = platform_get_drvdata(pdev);
3913 	unsigned int i;
3914 
3915 	pm_runtime_get_sync(xudc->dev);
3916 
3917 	cancel_delayed_work_sync(&xudc->plc_reset_work);
3918 	cancel_work_sync(&xudc->usb_role_sw_work);
3919 
3920 	usb_del_gadget_udc(&xudc->gadget);
3921 
3922 	tegra_xudc_free_eps(xudc);
3923 	tegra_xudc_free_event_ring(xudc);
3924 
3925 	tegra_xudc_powerdomain_remove(xudc);
3926 
3927 	regulator_bulk_disable(xudc->soc->num_supplies, xudc->supplies);
3928 
3929 	for (i = 0; i < xudc->soc->num_phys; i++) {
3930 		phy_power_off(xudc->utmi_phy[i]);
3931 		phy_power_off(xudc->usb3_phy[i]);
3932 	}
3933 
3934 	tegra_xudc_phy_exit(xudc);
3935 
3936 	pm_runtime_disable(xudc->dev);
3937 	pm_runtime_put(xudc->dev);
3938 
3939 	tegra_xusb_padctl_put(xudc->padctl);
3940 
3941 	return 0;
3942 }
3943 
3944 static int __maybe_unused tegra_xudc_powergate(struct tegra_xudc *xudc)
3945 {
3946 	unsigned long flags;
3947 
3948 	dev_dbg(xudc->dev, "entering ELPG\n");
3949 
3950 	spin_lock_irqsave(&xudc->lock, flags);
3951 
3952 	xudc->powergated = true;
3953 	xudc->saved_regs.ctrl = xudc_readl(xudc, CTRL);
3954 	xudc->saved_regs.portpm = xudc_readl(xudc, PORTPM);
3955 	xudc_writel(xudc, 0, CTRL);
3956 
3957 	spin_unlock_irqrestore(&xudc->lock, flags);
3958 
3959 	clk_bulk_disable_unprepare(xudc->soc->num_clks, xudc->clks);
3960 
3961 	regulator_bulk_disable(xudc->soc->num_supplies, xudc->supplies);
3962 
3963 	dev_dbg(xudc->dev, "entering ELPG done\n");
3964 	return 0;
3965 }
3966 
3967 static int __maybe_unused tegra_xudc_unpowergate(struct tegra_xudc *xudc)
3968 {
3969 	unsigned long flags;
3970 	int err;
3971 
3972 	dev_dbg(xudc->dev, "exiting ELPG\n");
3973 
3974 	err = regulator_bulk_enable(xudc->soc->num_supplies,
3975 			xudc->supplies);
3976 	if (err < 0)
3977 		return err;
3978 
3979 	err = clk_bulk_prepare_enable(xudc->soc->num_clks, xudc->clks);
3980 	if (err < 0)
3981 		return err;
3982 
3983 	tegra_xudc_fpci_ipfs_init(xudc);
3984 
3985 	tegra_xudc_device_params_init(xudc);
3986 
3987 	tegra_xudc_init_event_ring(xudc);
3988 
3989 	tegra_xudc_init_eps(xudc);
3990 
3991 	xudc_writel(xudc, xudc->saved_regs.portpm, PORTPM);
3992 	xudc_writel(xudc, xudc->saved_regs.ctrl, CTRL);
3993 
3994 	spin_lock_irqsave(&xudc->lock, flags);
3995 	xudc->powergated = false;
3996 	spin_unlock_irqrestore(&xudc->lock, flags);
3997 
3998 	dev_dbg(xudc->dev, "exiting ELPG done\n");
3999 	return 0;
4000 }
4001 
4002 static int __maybe_unused tegra_xudc_suspend(struct device *dev)
4003 {
4004 	struct tegra_xudc *xudc = dev_get_drvdata(dev);
4005 	unsigned long flags;
4006 
4007 	spin_lock_irqsave(&xudc->lock, flags);
4008 	xudc->suspended = true;
4009 	spin_unlock_irqrestore(&xudc->lock, flags);
4010 
4011 	flush_work(&xudc->usb_role_sw_work);
4012 
4013 	if (!pm_runtime_status_suspended(dev)) {
4014 		/* Forcibly disconnect before powergating. */
4015 		tegra_xudc_device_mode_off(xudc);
4016 		tegra_xudc_powergate(xudc);
4017 	}
4018 
4019 	pm_runtime_disable(dev);
4020 
4021 	return 0;
4022 }
4023 
4024 static int __maybe_unused tegra_xudc_resume(struct device *dev)
4025 {
4026 	struct tegra_xudc *xudc = dev_get_drvdata(dev);
4027 	unsigned long flags;
4028 	int err;
4029 
4030 	err = tegra_xudc_unpowergate(xudc);
4031 	if (err < 0)
4032 		return err;
4033 
4034 	spin_lock_irqsave(&xudc->lock, flags);
4035 	xudc->suspended = false;
4036 	spin_unlock_irqrestore(&xudc->lock, flags);
4037 
4038 	schedule_work(&xudc->usb_role_sw_work);
4039 
4040 	pm_runtime_enable(dev);
4041 
4042 	return 0;
4043 }
4044 
4045 static int __maybe_unused tegra_xudc_runtime_suspend(struct device *dev)
4046 {
4047 	struct tegra_xudc *xudc = dev_get_drvdata(dev);
4048 
4049 	return tegra_xudc_powergate(xudc);
4050 }
4051 
4052 static int __maybe_unused tegra_xudc_runtime_resume(struct device *dev)
4053 {
4054 	struct tegra_xudc *xudc = dev_get_drvdata(dev);
4055 
4056 	return tegra_xudc_unpowergate(xudc);
4057 }
4058 
4059 static const struct dev_pm_ops tegra_xudc_pm_ops = {
4060 	SET_SYSTEM_SLEEP_PM_OPS(tegra_xudc_suspend, tegra_xudc_resume)
4061 	SET_RUNTIME_PM_OPS(tegra_xudc_runtime_suspend,
4062 			   tegra_xudc_runtime_resume, NULL)
4063 };
4064 
4065 static struct platform_driver tegra_xudc_driver = {
4066 	.probe = tegra_xudc_probe,
4067 	.remove = tegra_xudc_remove,
4068 	.driver = {
4069 		.name = "tegra-xudc",
4070 		.pm = &tegra_xudc_pm_ops,
4071 		.of_match_table = tegra_xudc_of_match,
4072 	},
4073 };
4074 module_platform_driver(tegra_xudc_driver);
4075 
4076 MODULE_DESCRIPTION("NVIDIA Tegra XUSB Device Controller");
4077 MODULE_AUTHOR("Andrew Bresticker <abrestic@chromium.org>");
4078 MODULE_AUTHOR("Hui Fu <hfu@nvidia.com>");
4079 MODULE_AUTHOR("Nagarjuna Kristam <nkristam@nvidia.com>");
4080 MODULE_LICENSE("GPL v2");
4081