blob: 4254792f56fca06fbb23c1a0d853dbd1cf57173b [file] [log] [blame]
David Lopoaa69a802008-11-17 14:14:51 -08001/*
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03002 * udc.c - ChipIdea UDC driver
David Lopoaa69a802008-11-17 14:14:51 -08003 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Matthias Kaehlcke36825a22009-04-15 22:28:36 +020013#include <linux/delay.h>
David Lopoaa69a802008-11-17 14:14:51 -080014#include <linux/device.h>
15#include <linux/dmapool.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053016#include <linux/err.h>
Alexander Shishkin5b083192013-03-30 02:46:18 +020017#include <linux/irqreturn.h>
David Lopoaa69a802008-11-17 14:14:51 -080018#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Pavankumar Kondetic0360192010-12-07 17:54:04 +053020#include <linux/pm_runtime.h>
David Lopoaa69a802008-11-17 14:14:51 -080021#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
Li Jun95f55552014-04-23 15:56:47 +080023#include <linux/usb/otg-fsm.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030024#include <linux/usb/chipidea.h>
David Lopoaa69a802008-11-17 14:14:51 -080025
Alexander Shishkine443b332012-05-11 17:25:46 +030026#include "ci.h"
27#include "udc.h"
28#include "bits.h"
29#include "debug.h"
Peter Chen3f124d22013-08-14 12:44:07 +030030#include "otg.h"
Li Jun4dcf7202014-04-23 15:56:50 +080031#include "otg_fsm.h"
Michael Grzeschik954aad82011-10-10 18:38:06 +020032
David Lopoaa69a802008-11-17 14:14:51 -080033/* control endpoint description */
34static const struct usb_endpoint_descriptor
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053035ctrl_endpt_out_desc = {
David Lopoaa69a802008-11-17 14:14:51 -080036 .bLength = USB_DT_ENDPOINT_SIZE,
37 .bDescriptorType = USB_DT_ENDPOINT,
38
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053039 .bEndpointAddress = USB_DIR_OUT,
40 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
41 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
42};
43
44static const struct usb_endpoint_descriptor
45ctrl_endpt_in_desc = {
46 .bLength = USB_DT_ENDPOINT_SIZE,
47 .bDescriptorType = USB_DT_ENDPOINT,
48
49 .bEndpointAddress = USB_DIR_IN,
David Lopoaa69a802008-11-17 14:14:51 -080050 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
51 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
52};
53
David Lopoaa69a802008-11-17 14:14:51 -080054/**
55 * hw_ep_bit: calculates the bit number
56 * @num: endpoint number
57 * @dir: endpoint direction
58 *
59 * This function returns bit number
60 */
61static inline int hw_ep_bit(int num, int dir)
62{
63 return num + (dir ? 16 : 0);
64}
65
Alexander Shishkin8e229782013-06-24 14:46:36 +030066static inline int ep_to_bit(struct ci_hdrc *ci, int n)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020067{
Richard Zhao26c696c2012-07-07 22:56:40 +080068 int fill = 16 - ci->hw_ep_max / 2;
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020069
Richard Zhao26c696c2012-07-07 22:56:40 +080070 if (n >= ci->hw_ep_max / 2)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020071 n += fill;
72
73 return n;
74}
75
David Lopoaa69a802008-11-17 14:14:51 -080076/**
Michael Grzeschikc0a48e62012-09-12 14:58:01 +030077 * hw_device_state: enables/disables interrupts (execute without interruption)
David Lopoaa69a802008-11-17 14:14:51 -080078 * @dma: 0 => disable, !0 => enable and set dma engine
79 *
80 * This function returns an error code
81 */
Alexander Shishkin8e229782013-06-24 14:46:36 +030082static int hw_device_state(struct ci_hdrc *ci, u32 dma)
David Lopoaa69a802008-11-17 14:14:51 -080083{
84 if (dma) {
Richard Zhao26c696c2012-07-07 22:56:40 +080085 hw_write(ci, OP_ENDPTLISTADDR, ~0, dma);
David Lopoaa69a802008-11-17 14:14:51 -080086 /* interrupt, error, port change, reset, sleep/suspend */
Richard Zhao26c696c2012-07-07 22:56:40 +080087 hw_write(ci, OP_USBINTR, ~0,
David Lopoaa69a802008-11-17 14:14:51 -080088 USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI);
Peter Chena107f8c2013-08-14 12:44:11 +030089 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
David Lopoaa69a802008-11-17 14:14:51 -080090 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +080091 hw_write(ci, OP_USBINTR, ~0, 0);
Peter Chena107f8c2013-08-14 12:44:11 +030092 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
David Lopoaa69a802008-11-17 14:14:51 -080093 }
94 return 0;
95}
96
97/**
98 * hw_ep_flush: flush endpoint fifo (execute without interruption)
99 * @num: endpoint number
100 * @dir: endpoint direction
101 *
102 * This function returns an error code
103 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300104static int hw_ep_flush(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800105{
106 int n = hw_ep_bit(num, dir);
107
108 do {
109 /* flush any pending transfer */
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800110 hw_write(ci, OP_ENDPTFLUSH, ~0, BIT(n));
Richard Zhao26c696c2012-07-07 22:56:40 +0800111 while (hw_read(ci, OP_ENDPTFLUSH, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800112 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800113 } while (hw_read(ci, OP_ENDPTSTAT, BIT(n)));
David Lopoaa69a802008-11-17 14:14:51 -0800114
115 return 0;
116}
117
118/**
119 * hw_ep_disable: disables endpoint (execute without interruption)
120 * @num: endpoint number
121 * @dir: endpoint direction
122 *
123 * This function returns an error code
124 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300125static int hw_ep_disable(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800126{
Richard Zhao26c696c2012-07-07 22:56:40 +0800127 hw_ep_flush(ci, num, dir);
128 hw_write(ci, OP_ENDPTCTRL + num,
Alexander Shishkind3595d12012-05-08 23:28:58 +0300129 dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800130 return 0;
131}
132
133/**
134 * hw_ep_enable: enables endpoint (execute without interruption)
135 * @num: endpoint number
136 * @dir: endpoint direction
137 * @type: endpoint type
138 *
139 * This function returns an error code
140 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300141static int hw_ep_enable(struct ci_hdrc *ci, int num, int dir, int type)
David Lopoaa69a802008-11-17 14:14:51 -0800142{
143 u32 mask, data;
144
145 if (dir) {
146 mask = ENDPTCTRL_TXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200147 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800148
149 mask |= ENDPTCTRL_TXS; /* unstall */
150 mask |= ENDPTCTRL_TXR; /* reset data toggle */
151 data |= ENDPTCTRL_TXR;
152 mask |= ENDPTCTRL_TXE; /* enable */
153 data |= ENDPTCTRL_TXE;
154 } else {
155 mask = ENDPTCTRL_RXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200156 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800157
158 mask |= ENDPTCTRL_RXS; /* unstall */
159 mask |= ENDPTCTRL_RXR; /* reset data toggle */
160 data |= ENDPTCTRL_RXR;
161 mask |= ENDPTCTRL_RXE; /* enable */
162 data |= ENDPTCTRL_RXE;
163 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800164 hw_write(ci, OP_ENDPTCTRL + num, mask, data);
David Lopoaa69a802008-11-17 14:14:51 -0800165 return 0;
166}
167
168/**
169 * hw_ep_get_halt: return endpoint halt status
170 * @num: endpoint number
171 * @dir: endpoint direction
172 *
173 * This function returns 1 if endpoint halted
174 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300175static int hw_ep_get_halt(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800176{
177 u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
178
Richard Zhao26c696c2012-07-07 22:56:40 +0800179 return hw_read(ci, OP_ENDPTCTRL + num, mask) ? 1 : 0;
David Lopoaa69a802008-11-17 14:14:51 -0800180}
181
182/**
David Lopoaa69a802008-11-17 14:14:51 -0800183 * hw_ep_prime: primes endpoint (execute without interruption)
184 * @num: endpoint number
185 * @dir: endpoint direction
186 * @is_ctrl: true if control endpoint
187 *
188 * This function returns an error code
189 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300190static int hw_ep_prime(struct ci_hdrc *ci, int num, int dir, int is_ctrl)
David Lopoaa69a802008-11-17 14:14:51 -0800191{
192 int n = hw_ep_bit(num, dir);
193
Richard Zhao26c696c2012-07-07 22:56:40 +0800194 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800195 return -EAGAIN;
196
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800197 hw_write(ci, OP_ENDPTPRIME, ~0, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800198
Richard Zhao26c696c2012-07-07 22:56:40 +0800199 while (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800200 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800201 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800202 return -EAGAIN;
203
204 /* status shoult be tested according with manual but it doesn't work */
205 return 0;
206}
207
208/**
209 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
210 * without interruption)
211 * @num: endpoint number
212 * @dir: endpoint direction
213 * @value: true => stall, false => unstall
214 *
215 * This function returns an error code
216 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300217static int hw_ep_set_halt(struct ci_hdrc *ci, int num, int dir, int value)
David Lopoaa69a802008-11-17 14:14:51 -0800218{
219 if (value != 0 && value != 1)
220 return -EINVAL;
221
222 do {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300223 enum ci_hw_regs reg = OP_ENDPTCTRL + num;
David Lopoaa69a802008-11-17 14:14:51 -0800224 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
225 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
226
227 /* data toggle - reserved for EP0 but it's in ESS */
Richard Zhao26c696c2012-07-07 22:56:40 +0800228 hw_write(ci, reg, mask_xs|mask_xr,
Alexander Shishkin262c1632012-05-08 23:28:59 +0300229 value ? mask_xs : mask_xr);
Richard Zhao26c696c2012-07-07 22:56:40 +0800230 } while (value != hw_ep_get_halt(ci, num, dir));
David Lopoaa69a802008-11-17 14:14:51 -0800231
232 return 0;
233}
234
235/**
David Lopoaa69a802008-11-17 14:14:51 -0800236 * hw_is_port_high_speed: test if port is high speed
237 *
238 * This function returns true if high speed port
239 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300240static int hw_port_is_high_speed(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800241{
Richard Zhao26c696c2012-07-07 22:56:40 +0800242 return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) :
243 hw_read(ci, OP_PORTSC, PORTSC_HSP);
David Lopoaa69a802008-11-17 14:14:51 -0800244}
245
246/**
David Lopoaa69a802008-11-17 14:14:51 -0800247 * hw_test_and_clear_complete: test & clear complete status (execute without
248 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200249 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800250 *
251 * This function returns complete status
252 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300253static int hw_test_and_clear_complete(struct ci_hdrc *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800254{
Richard Zhao26c696c2012-07-07 22:56:40 +0800255 n = ep_to_bit(ci, n);
256 return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800257}
258
259/**
260 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
261 * without interruption)
262 *
263 * This function returns active interrutps
264 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300265static u32 hw_test_and_clear_intr_active(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800266{
Richard Zhao26c696c2012-07-07 22:56:40 +0800267 u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800268
Richard Zhao26c696c2012-07-07 22:56:40 +0800269 hw_write(ci, OP_USBSTS, ~0, reg);
David Lopoaa69a802008-11-17 14:14:51 -0800270 return reg;
271}
272
273/**
274 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
275 * interruption)
276 *
277 * This function returns guard value
278 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300279static int hw_test_and_clear_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800280{
Richard Zhao26c696c2012-07-07 22:56:40 +0800281 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800282}
283
284/**
285 * hw_test_and_set_setup_guard: test & set setup guard (execute without
286 * interruption)
287 *
288 * This function returns guard value
289 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300290static int hw_test_and_set_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800291{
Richard Zhao26c696c2012-07-07 22:56:40 +0800292 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
David Lopoaa69a802008-11-17 14:14:51 -0800293}
294
295/**
296 * hw_usb_set_address: configures USB address (execute without interruption)
297 * @value: new USB address
298 *
Alexander Shishkinef15e542012-05-11 17:25:43 +0300299 * This function explicitly sets the address, without the "USBADRA" (advance)
300 * feature, which is not supported by older versions of the controller.
David Lopoaa69a802008-11-17 14:14:51 -0800301 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300302static void hw_usb_set_address(struct ci_hdrc *ci, u8 value)
David Lopoaa69a802008-11-17 14:14:51 -0800303{
Richard Zhao26c696c2012-07-07 22:56:40 +0800304 hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR,
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200305 value << __ffs(DEVICEADDR_USBADR));
David Lopoaa69a802008-11-17 14:14:51 -0800306}
307
308/**
309 * hw_usb_reset: restart device after a bus reset (execute without
310 * interruption)
311 *
312 * This function returns an error code
313 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300314static int hw_usb_reset(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800315{
Richard Zhao26c696c2012-07-07 22:56:40 +0800316 hw_usb_set_address(ci, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800317
318 /* ESS flushes only at end?!? */
Richard Zhao26c696c2012-07-07 22:56:40 +0800319 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800320
321 /* clear setup token semaphores */
Richard Zhao26c696c2012-07-07 22:56:40 +0800322 hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800323
324 /* clear complete status */
Richard Zhao26c696c2012-07-07 22:56:40 +0800325 hw_write(ci, OP_ENDPTCOMPLETE, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800326
327 /* wait until all bits cleared */
Richard Zhao26c696c2012-07-07 22:56:40 +0800328 while (hw_read(ci, OP_ENDPTPRIME, ~0))
David Lopoaa69a802008-11-17 14:14:51 -0800329 udelay(10); /* not RTOS friendly */
330
331 /* reset all endpoints ? */
332
333 /* reset internal status and wait for further instructions
334 no need to verify the port reset status (ESS does it) */
335
336 return 0;
337}
338
339/******************************************************************************
David Lopoaa69a802008-11-17 14:14:51 -0800340 * UTIL block
341 *****************************************************************************/
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300342
Alexander Shishkin8e229782013-06-24 14:46:36 +0300343static int add_td_to_list(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300344 unsigned length)
345{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300346 int i;
347 u32 temp;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300348 struct td_node *lastnode, *node = kzalloc(sizeof(struct td_node),
349 GFP_ATOMIC);
350
351 if (node == NULL)
352 return -ENOMEM;
353
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300354 node->ptr = dma_pool_alloc(hwep->td_pool, GFP_ATOMIC,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300355 &node->dma);
356 if (node->ptr == NULL) {
357 kfree(node);
358 return -ENOMEM;
359 }
360
Alexander Shishkin8e229782013-06-24 14:46:36 +0300361 memset(node->ptr, 0, sizeof(struct ci_hw_td));
Michael Grzeschik2e270412013-06-13 17:59:54 +0300362 node->ptr->token = cpu_to_le32(length << __ffs(TD_TOTAL_BYTES));
363 node->ptr->token &= cpu_to_le32(TD_TOTAL_BYTES);
364 node->ptr->token |= cpu_to_le32(TD_STATUS_ACTIVE);
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800365 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX) {
366 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
367
368 if (hwreq->req.length == 0
369 || hwreq->req.length % hwep->ep.maxpacket)
370 mul++;
371 node->ptr->token |= mul << __ffs(TD_MULTO);
372 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300373
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300374 temp = (u32) (hwreq->req.dma + hwreq->req.actual);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300375 if (length) {
376 node->ptr->page[0] = cpu_to_le32(temp);
377 for (i = 1; i < TD_PAGE_COUNT; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300378 u32 page = temp + i * CI_HDRC_PAGE_SIZE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300379 page &= ~TD_RESERVED_MASK;
380 node->ptr->page[i] = cpu_to_le32(page);
381 }
382 }
383
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300384 hwreq->req.actual += length;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300385
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300386 if (!list_empty(&hwreq->tds)) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300387 /* get the last entry */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300388 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300389 struct td_node, td);
390 lastnode->ptr->next = cpu_to_le32(node->dma);
391 }
392
393 INIT_LIST_HEAD(&node->td);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300394 list_add_tail(&node->td, &hwreq->tds);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300395
396 return 0;
397}
398
David Lopoaa69a802008-11-17 14:14:51 -0800399/**
400 * _usb_addr: calculates endpoint address from direction & number
401 * @ep: endpoint
402 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300403static inline u8 _usb_addr(struct ci_hw_ep *ep)
David Lopoaa69a802008-11-17 14:14:51 -0800404{
405 return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num;
406}
407
408/**
409 * _hardware_queue: configures a request at hardware level
410 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300411 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800412 *
413 * This function returns an error code
414 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300415static int _hardware_enqueue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800416{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300417 struct ci_hdrc *ci = hwep->ci;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530418 int ret = 0;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300419 unsigned rest = hwreq->req.length;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300420 int pages = TD_PAGE_COUNT;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300421 struct td_node *firstnode, *lastnode;
David Lopoaa69a802008-11-17 14:14:51 -0800422
David Lopoaa69a802008-11-17 14:14:51 -0800423 /* don't queue twice */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300424 if (hwreq->req.status == -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800425 return -EALREADY;
426
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300427 hwreq->req.status = -EALREADY;
David Lopoaa69a802008-11-17 14:14:51 -0800428
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300429 ret = usb_gadget_map_request(&ci->gadget, &hwreq->req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300430 if (ret)
431 return ret;
432
Michael Grzeschik2e270412013-06-13 17:59:54 +0300433 /*
434 * The first buffer could be not page aligned.
435 * In that case we have to span into one extra td.
436 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300437 if (hwreq->req.dma % PAGE_SIZE)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300438 pages--;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300439
Michael Grzeschik2e270412013-06-13 17:59:54 +0300440 if (rest == 0)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300441 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300442
Michael Grzeschik2e270412013-06-13 17:59:54 +0300443 while (rest > 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300444 unsigned count = min(hwreq->req.length - hwreq->req.actual,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300445 (unsigned)(pages * CI_HDRC_PAGE_SIZE));
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300446 add_td_to_list(hwep, hwreq, count);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300447 rest -= count;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200448 }
David Lopoaa69a802008-11-17 14:14:51 -0800449
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300450 if (hwreq->req.zero && hwreq->req.length
451 && (hwreq->req.length % hwep->ep.maxpacket == 0))
452 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300453
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300454 firstnode = list_first_entry(&hwreq->tds, struct td_node, td);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300455
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300456 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300457 struct td_node, td);
458
459 lastnode->ptr->next = cpu_to_le32(TD_TERMINATE);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300460 if (!hwreq->req.no_interrupt)
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300461 lastnode->ptr->token |= cpu_to_le32(TD_IOC);
Michael Grzeschika9c17432013-04-04 13:13:46 +0300462 wmb();
463
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300464 hwreq->req.actual = 0;
465 if (!list_empty(&hwep->qh.queue)) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300466 struct ci_hw_req *hwreqprev;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300467 int n = hw_ep_bit(hwep->num, hwep->dir);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530468 int tmp_stat;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300469 struct td_node *prevlastnode;
470 u32 next = firstnode->dma & TD_ADDR_MASK;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530471
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300472 hwreqprev = list_entry(hwep->qh.queue.prev,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300473 struct ci_hw_req, queue);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300474 prevlastnode = list_entry(hwreqprev->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300475 struct td_node, td);
476
477 prevlastnode->ptr->next = cpu_to_le32(next);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530478 wmb();
Richard Zhao26c696c2012-07-07 22:56:40 +0800479 if (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530480 goto done;
481 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800482 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
483 tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
484 } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
485 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530486 if (tmp_stat)
487 goto done;
488 }
489
490 /* QH configuration */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300491 hwep->qh.ptr->td.next = cpu_to_le32(firstnode->dma);
492 hwep->qh.ptr->td.token &=
Michael Grzeschik080ff5f2013-03-30 12:54:04 +0200493 cpu_to_le32(~(TD_STATUS_HALTED|TD_STATUS_ACTIVE));
David Lopoaa69a802008-11-17 14:14:51 -0800494
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800495 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == RX) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300496 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300497
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800498 if (hwreq->req.length == 0
499 || hwreq->req.length % hwep->ep.maxpacket)
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300500 mul++;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300501 hwep->qh.ptr->cap |= mul << __ffs(QH_MULT);
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300502 }
503
David Lopoaa69a802008-11-17 14:14:51 -0800504 wmb(); /* synchronize before ep prime */
505
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300506 ret = hw_ep_prime(ci, hwep->num, hwep->dir,
507 hwep->type == USB_ENDPOINT_XFER_CONTROL);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530508done:
509 return ret;
David Lopoaa69a802008-11-17 14:14:51 -0800510}
511
Michael Grzeschik2e270412013-06-13 17:59:54 +0300512/*
513 * free_pending_td: remove a pending request for the endpoint
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300514 * @hwep: endpoint
Michael Grzeschik2e270412013-06-13 17:59:54 +0300515 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300516static void free_pending_td(struct ci_hw_ep *hwep)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300517{
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300518 struct td_node *pending = hwep->pending_td;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300519
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300520 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma);
521 hwep->pending_td = NULL;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300522 kfree(pending);
523}
524
Sanchayan Maity06bdfcd2015-02-11 12:44:56 +0800525static int reprime_dtd(struct ci_hdrc *ci, struct ci_hw_ep *hwep,
526 struct td_node *node)
527{
528 hwep->qh.ptr->td.next = node->dma;
529 hwep->qh.ptr->td.token &=
530 cpu_to_le32(~(TD_STATUS_HALTED | TD_STATUS_ACTIVE));
531
532 /* Synchronize before ep prime */
533 wmb();
534
535 return hw_ep_prime(ci, hwep->num, hwep->dir,
536 hwep->type == USB_ENDPOINT_XFER_CONTROL);
537}
538
David Lopoaa69a802008-11-17 14:14:51 -0800539/**
540 * _hardware_dequeue: handles a request at hardware level
541 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300542 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800543 *
544 * This function returns an error code
545 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300546static int _hardware_dequeue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800547{
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300548 u32 tmptoken;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300549 struct td_node *node, *tmpnode;
550 unsigned remaining_length;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300551 unsigned actual = hwreq->req.length;
Sanchayan Maity06bdfcd2015-02-11 12:44:56 +0800552 struct ci_hdrc *ci = hwep->ci;
Michael Grzeschik9e506432013-03-30 12:54:07 +0200553
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300554 if (hwreq->req.status != -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800555 return -EINVAL;
556
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300557 hwreq->req.status = 0;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530558
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300559 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300560 tmptoken = le32_to_cpu(node->ptr->token);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300561 if ((TD_STATUS_ACTIVE & tmptoken) != 0) {
Sanchayan Maity06bdfcd2015-02-11 12:44:56 +0800562 int n = hw_ep_bit(hwep->num, hwep->dir);
563
564 if (ci->rev == CI_REVISION_24)
565 if (!hw_read(ci, OP_ENDPTSTAT, BIT(n)))
566 reprime_dtd(ci, hwep, node);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300567 hwreq->req.status = -EALREADY;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530568 return -EBUSY;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300569 }
David Lopoaa69a802008-11-17 14:14:51 -0800570
Michael Grzeschik2e270412013-06-13 17:59:54 +0300571 remaining_length = (tmptoken & TD_TOTAL_BYTES);
572 remaining_length >>= __ffs(TD_TOTAL_BYTES);
573 actual -= remaining_length;
574
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300575 hwreq->req.status = tmptoken & TD_STATUS;
576 if ((TD_STATUS_HALTED & hwreq->req.status)) {
577 hwreq->req.status = -EPIPE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300578 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300579 } else if ((TD_STATUS_DT_ERR & hwreq->req.status)) {
580 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300581 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300582 } else if ((TD_STATUS_TR_ERR & hwreq->req.status)) {
583 hwreq->req.status = -EILSEQ;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300584 break;
585 }
586
587 if (remaining_length) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300588 if (hwep->dir) {
589 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300590 break;
591 }
592 }
593 /*
594 * As the hardware could still address the freed td
595 * which will run the udc unusable, the cleanup of the
596 * td has to be delayed by one.
597 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300598 if (hwep->pending_td)
599 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300600
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300601 hwep->pending_td = node;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300602 list_del_init(&node->td);
603 }
David Lopoaa69a802008-11-17 14:14:51 -0800604
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300605 usb_gadget_unmap_request(&hwep->ci->gadget, &hwreq->req, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800606
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300607 hwreq->req.actual += actual;
David Lopoaa69a802008-11-17 14:14:51 -0800608
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300609 if (hwreq->req.status)
610 return hwreq->req.status;
David Lopoaa69a802008-11-17 14:14:51 -0800611
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300612 return hwreq->req.actual;
David Lopoaa69a802008-11-17 14:14:51 -0800613}
614
615/**
616 * _ep_nuke: dequeues all endpoint requests
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300617 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800618 *
619 * This function returns an error code
620 * Caller must hold lock
621 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300622static int _ep_nuke(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300623__releases(hwep->lock)
624__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800625{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300626 struct td_node *node, *tmpnode;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300627 if (hwep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800628 return -EINVAL;
629
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300630 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800631
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300632 while (!list_empty(&hwep->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -0800633
634 /* pop oldest request */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300635 struct ci_hw_req *hwreq = list_entry(hwep->qh.queue.next,
636 struct ci_hw_req, queue);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300637
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300638 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
639 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300640 list_del_init(&node->td);
641 node->ptr = NULL;
642 kfree(node);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300643 }
644
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300645 list_del_init(&hwreq->queue);
646 hwreq->req.status = -ESHUTDOWN;
David Lopoaa69a802008-11-17 14:14:51 -0800647
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300648 if (hwreq->req.complete != NULL) {
649 spin_unlock(hwep->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200650 usb_gadget_giveback_request(&hwep->ep, &hwreq->req);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300651 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800652 }
653 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300654
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300655 if (hwep->pending_td)
656 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300657
David Lopoaa69a802008-11-17 14:14:51 -0800658 return 0;
659}
660
661/**
662 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
663 * @gadget: gadget
664 *
665 * This function returns an error code
David Lopoaa69a802008-11-17 14:14:51 -0800666 */
667static int _gadget_stop_activity(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -0800668{
669 struct usb_ep *ep;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300670 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530671 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -0800672
Richard Zhao26c696c2012-07-07 22:56:40 +0800673 spin_lock_irqsave(&ci->lock, flags);
674 ci->gadget.speed = USB_SPEED_UNKNOWN;
675 ci->remote_wakeup = 0;
676 ci->suspended = 0;
677 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530678
David Lopoaa69a802008-11-17 14:14:51 -0800679 /* flush all endpoints */
680 gadget_for_each_ep(ep, gadget) {
681 usb_ep_fifo_flush(ep);
682 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800683 usb_ep_fifo_flush(&ci->ep0out->ep);
684 usb_ep_fifo_flush(&ci->ep0in->ep);
David Lopoaa69a802008-11-17 14:14:51 -0800685
David Lopoaa69a802008-11-17 14:14:51 -0800686 /* make sure to disable all endpoints */
687 gadget_for_each_ep(ep, gadget) {
688 usb_ep_disable(ep);
689 }
David Lopoaa69a802008-11-17 14:14:51 -0800690
Richard Zhao26c696c2012-07-07 22:56:40 +0800691 if (ci->status != NULL) {
692 usb_ep_free_request(&ci->ep0in->ep, ci->status);
693 ci->status = NULL;
David Lopoaa69a802008-11-17 14:14:51 -0800694 }
695
David Lopoaa69a802008-11-17 14:14:51 -0800696 return 0;
697}
698
699/******************************************************************************
700 * ISR block
701 *****************************************************************************/
702/**
703 * isr_reset_handler: USB reset interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800704 * @ci: UDC device
David Lopoaa69a802008-11-17 14:14:51 -0800705 *
706 * This function resets USB engine after a bus reset occurred
707 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300708static void isr_reset_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +0800709__releases(ci->lock)
710__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800711{
David Lopoaa69a802008-11-17 14:14:51 -0800712 int retval;
713
Peter Chena3aee362013-10-09 14:39:52 +0800714 spin_unlock(&ci->lock);
Peter Chenafbe4772014-11-06 14:27:58 +0800715 if (ci->gadget.speed != USB_SPEED_UNKNOWN)
716 usb_gadget_udc_reset(&ci->gadget, ci->driver);
Peter Chen92b336d2013-09-17 12:37:19 +0800717
Richard Zhao26c696c2012-07-07 22:56:40 +0800718 retval = _gadget_stop_activity(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800719 if (retval)
720 goto done;
721
Richard Zhao26c696c2012-07-07 22:56:40 +0800722 retval = hw_usb_reset(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800723 if (retval)
724 goto done;
725
Richard Zhao26c696c2012-07-07 22:56:40 +0800726 ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC);
727 if (ci->status == NULL)
Anji jonnalaac1aa6a2011-05-02 11:56:32 +0530728 retval = -ENOMEM;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530729
Michael Grzeschikb9322252012-05-11 17:25:50 +0300730done:
Richard Zhao26c696c2012-07-07 22:56:40 +0800731 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800732
David Lopoaa69a802008-11-17 14:14:51 -0800733 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +0800734 dev_err(ci->dev, "error: %i\n", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800735}
736
737/**
738 * isr_get_status_complete: get_status request complete function
739 * @ep: endpoint
740 * @req: request handled
741 *
742 * Caller must release lock
743 */
744static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
745{
Alexander Shishkin0f089092012-05-08 23:29:02 +0300746 if (ep == NULL || req == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800747 return;
David Lopoaa69a802008-11-17 14:14:51 -0800748
749 kfree(req->buf);
750 usb_ep_free_request(ep, req);
751}
752
753/**
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200754 * _ep_queue: queues (submits) an I/O request to an endpoint
755 *
756 * Caller must hold lock
757 */
758static int _ep_queue(struct usb_ep *ep, struct usb_request *req,
759 gfp_t __maybe_unused gfp_flags)
760{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300761 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
762 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
763 struct ci_hdrc *ci = hwep->ci;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200764 int retval = 0;
765
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300766 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200767 return -EINVAL;
768
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300769 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200770 if (req->length)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300771 hwep = (ci->ep0_dir == RX) ?
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200772 ci->ep0out : ci->ep0in;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300773 if (!list_empty(&hwep->qh.queue)) {
774 _ep_nuke(hwep);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200775 retval = -EOVERFLOW;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300776 dev_warn(hwep->ci->dev, "endpoint ctrl %X nuked\n",
777 _usb_addr(hwep));
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200778 }
779 }
780
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300781 if (usb_endpoint_xfer_isoc(hwep->ep.desc) &&
782 hwreq->req.length > (1 + hwep->ep.mult) * hwep->ep.maxpacket) {
783 dev_err(hwep->ci->dev, "request length too big for isochronous\n");
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300784 return -EMSGSIZE;
785 }
786
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200787 /* first nuke then test link, e.g. previous status has not sent */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300788 if (!list_empty(&hwreq->queue)) {
789 dev_err(hwep->ci->dev, "request already in queue\n");
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200790 return -EBUSY;
791 }
792
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200793 /* push request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300794 hwreq->req.status = -EINPROGRESS;
795 hwreq->req.actual = 0;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200796
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300797 retval = _hardware_enqueue(hwep, hwreq);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200798
799 if (retval == -EALREADY)
800 retval = 0;
801 if (!retval)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300802 list_add_tail(&hwreq->queue, &hwep->qh.queue);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200803
804 return retval;
805}
806
807/**
David Lopoaa69a802008-11-17 14:14:51 -0800808 * isr_get_status_response: get_status request response
Richard Zhao26c696c2012-07-07 22:56:40 +0800809 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800810 * @setup: setup request packet
811 *
812 * This function returns an error code
813 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300814static int isr_get_status_response(struct ci_hdrc *ci,
David Lopoaa69a802008-11-17 14:14:51 -0800815 struct usb_ctrlrequest *setup)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300816__releases(hwep->lock)
817__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800818{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300819 struct ci_hw_ep *hwep = ci->ep0in;
David Lopoaa69a802008-11-17 14:14:51 -0800820 struct usb_request *req = NULL;
821 gfp_t gfp_flags = GFP_ATOMIC;
822 int dir, num, retval;
823
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300824 if (hwep == NULL || setup == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800825 return -EINVAL;
826
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300827 spin_unlock(hwep->lock);
828 req = usb_ep_alloc_request(&hwep->ep, gfp_flags);
829 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800830 if (req == NULL)
831 return -ENOMEM;
832
833 req->complete = isr_get_status_complete;
834 req->length = 2;
835 req->buf = kzalloc(req->length, gfp_flags);
836 if (req->buf == NULL) {
837 retval = -ENOMEM;
838 goto err_free_req;
839 }
840
841 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
Peter Chen1009f9a2015-01-28 16:32:25 +0800842 *(u16 *)req->buf = (ci->remote_wakeup << 1) |
843 ci->gadget.is_selfpowered;
David Lopoaa69a802008-11-17 14:14:51 -0800844 } else if ((setup->bRequestType & USB_RECIP_MASK) \
845 == USB_RECIP_ENDPOINT) {
846 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
847 TX : RX;
848 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Richard Zhao26c696c2012-07-07 22:56:40 +0800849 *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir);
David Lopoaa69a802008-11-17 14:14:51 -0800850 }
851 /* else do nothing; reserved for future use */
852
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300853 retval = _ep_queue(&hwep->ep, req, gfp_flags);
David Lopoaa69a802008-11-17 14:14:51 -0800854 if (retval)
855 goto err_free_buf;
856
857 return 0;
858
859 err_free_buf:
860 kfree(req->buf);
861 err_free_req:
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300862 spin_unlock(hwep->lock);
863 usb_ep_free_request(&hwep->ep, req);
864 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800865 return retval;
866}
867
868/**
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530869 * isr_setup_status_complete: setup_status request complete function
870 * @ep: endpoint
871 * @req: request handled
872 *
873 * Caller must release lock. Put the port in test mode if test mode
874 * feature is selected.
875 */
876static void
877isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
878{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300879 struct ci_hdrc *ci = req->context;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530880 unsigned long flags;
881
Richard Zhao26c696c2012-07-07 22:56:40 +0800882 if (ci->setaddr) {
883 hw_usb_set_address(ci, ci->address);
884 ci->setaddr = false;
Peter Chen10775eb2014-05-04 09:24:44 +0800885 if (ci->address)
886 usb_gadget_set_state(&ci->gadget, USB_STATE_ADDRESS);
Alexander Shishkinef15e542012-05-11 17:25:43 +0300887 }
888
Richard Zhao26c696c2012-07-07 22:56:40 +0800889 spin_lock_irqsave(&ci->lock, flags);
890 if (ci->test_mode)
891 hw_port_test_set(ci, ci->test_mode);
892 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530893}
894
895/**
David Lopoaa69a802008-11-17 14:14:51 -0800896 * isr_setup_status_phase: queues the status phase of a setup transation
Richard Zhao26c696c2012-07-07 22:56:40 +0800897 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800898 *
899 * This function returns an error code
900 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300901static int isr_setup_status_phase(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800902{
903 int retval;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300904 struct ci_hw_ep *hwep;
David Lopoaa69a802008-11-17 14:14:51 -0800905
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300906 hwep = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in;
Richard Zhao26c696c2012-07-07 22:56:40 +0800907 ci->status->context = ci;
908 ci->status->complete = isr_setup_status_complete;
David Lopoaa69a802008-11-17 14:14:51 -0800909
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300910 retval = _ep_queue(&hwep->ep, ci->status, GFP_ATOMIC);
David Lopoaa69a802008-11-17 14:14:51 -0800911
912 return retval;
913}
914
915/**
916 * isr_tr_complete_low: transaction complete low level handler
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300917 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800918 *
919 * This function returns an error code
920 * Caller must hold lock
921 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300922static int isr_tr_complete_low(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300923__releases(hwep->lock)
924__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800925{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300926 struct ci_hw_req *hwreq, *hwreqtemp;
927 struct ci_hw_ep *hweptemp = hwep;
Michael Grzeschikdb899602012-09-12 14:58:04 +0300928 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800929
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300930 list_for_each_entry_safe(hwreq, hwreqtemp, &hwep->qh.queue,
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530931 queue) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300932 retval = _hardware_dequeue(hwep, hwreq);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530933 if (retval < 0)
934 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300935 list_del_init(&hwreq->queue);
936 if (hwreq->req.complete != NULL) {
937 spin_unlock(hwep->lock);
938 if ((hwep->type == USB_ENDPOINT_XFER_CONTROL) &&
939 hwreq->req.length)
940 hweptemp = hwep->ci->ep0in;
Michal Sojka304f7e52014-09-24 22:43:19 +0200941 usb_gadget_giveback_request(&hweptemp->ep, &hwreq->req);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300942 spin_lock(hwep->lock);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530943 }
944 }
David Lopoaa69a802008-11-17 14:14:51 -0800945
Pavankumar Kondetief907482011-05-02 11:56:27 +0530946 if (retval == -EBUSY)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530947 retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800948
David Lopoaa69a802008-11-17 14:14:51 -0800949 return retval;
950}
951
952/**
Peter Chend7b00e32014-03-11 13:47:37 +0800953 * isr_setup_packet_handler: setup packet handler
954 * @ci: UDC descriptor
955 *
956 * This function handles setup packet
957 */
958static void isr_setup_packet_handler(struct ci_hdrc *ci)
959__releases(ci->lock)
960__acquires(ci->lock)
961{
962 struct ci_hw_ep *hwep = &ci->ci_hw_ep[0];
963 struct usb_ctrlrequest req;
964 int type, num, dir, err = -EINVAL;
965 u8 tmode = 0;
966
967 /*
968 * Flush data and handshake transactions of previous
969 * setup packet.
970 */
971 _ep_nuke(ci->ep0out);
972 _ep_nuke(ci->ep0in);
973
974 /* read_setup_packet */
975 do {
976 hw_test_and_set_setup_guard(ci);
977 memcpy(&req, &hwep->qh.ptr->setup, sizeof(req));
978 } while (!hw_test_and_clear_setup_guard(ci));
979
980 type = req.bRequestType;
981
982 ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
983
984 switch (req.bRequest) {
985 case USB_REQ_CLEAR_FEATURE:
986 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
987 le16_to_cpu(req.wValue) ==
988 USB_ENDPOINT_HALT) {
989 if (req.wLength != 0)
990 break;
991 num = le16_to_cpu(req.wIndex);
992 dir = num & USB_ENDPOINT_DIR_MASK;
993 num &= USB_ENDPOINT_NUMBER_MASK;
994 if (dir) /* TX */
995 num += ci->hw_ep_max / 2;
996 if (!ci->ci_hw_ep[num].wedge) {
997 spin_unlock(&ci->lock);
998 err = usb_ep_clear_halt(
999 &ci->ci_hw_ep[num].ep);
1000 spin_lock(&ci->lock);
1001 if (err)
1002 break;
1003 }
1004 err = isr_setup_status_phase(ci);
1005 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
1006 le16_to_cpu(req.wValue) ==
1007 USB_DEVICE_REMOTE_WAKEUP) {
1008 if (req.wLength != 0)
1009 break;
1010 ci->remote_wakeup = 0;
1011 err = isr_setup_status_phase(ci);
1012 } else {
1013 goto delegate;
1014 }
1015 break;
1016 case USB_REQ_GET_STATUS:
1017 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
1018 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
1019 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
1020 goto delegate;
1021 if (le16_to_cpu(req.wLength) != 2 ||
1022 le16_to_cpu(req.wValue) != 0)
1023 break;
1024 err = isr_get_status_response(ci, &req);
1025 break;
1026 case USB_REQ_SET_ADDRESS:
1027 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
1028 goto delegate;
1029 if (le16_to_cpu(req.wLength) != 0 ||
1030 le16_to_cpu(req.wIndex) != 0)
1031 break;
1032 ci->address = (u8)le16_to_cpu(req.wValue);
1033 ci->setaddr = true;
1034 err = isr_setup_status_phase(ci);
1035 break;
1036 case USB_REQ_SET_FEATURE:
1037 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1038 le16_to_cpu(req.wValue) ==
1039 USB_ENDPOINT_HALT) {
1040 if (req.wLength != 0)
1041 break;
1042 num = le16_to_cpu(req.wIndex);
1043 dir = num & USB_ENDPOINT_DIR_MASK;
1044 num &= USB_ENDPOINT_NUMBER_MASK;
1045 if (dir) /* TX */
1046 num += ci->hw_ep_max / 2;
1047
1048 spin_unlock(&ci->lock);
1049 err = usb_ep_set_halt(&ci->ci_hw_ep[num].ep);
1050 spin_lock(&ci->lock);
1051 if (!err)
1052 isr_setup_status_phase(ci);
1053 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
1054 if (req.wLength != 0)
1055 break;
1056 switch (le16_to_cpu(req.wValue)) {
1057 case USB_DEVICE_REMOTE_WAKEUP:
1058 ci->remote_wakeup = 1;
1059 err = isr_setup_status_phase(ci);
1060 break;
1061 case USB_DEVICE_TEST_MODE:
1062 tmode = le16_to_cpu(req.wIndex) >> 8;
1063 switch (tmode) {
1064 case TEST_J:
1065 case TEST_K:
1066 case TEST_SE0_NAK:
1067 case TEST_PACKET:
1068 case TEST_FORCE_EN:
1069 ci->test_mode = tmode;
1070 err = isr_setup_status_phase(
1071 ci);
1072 break;
1073 default:
1074 break;
1075 }
Li Jun95f55552014-04-23 15:56:47 +08001076 break;
1077 case USB_DEVICE_B_HNP_ENABLE:
1078 if (ci_otg_is_fsm_mode(ci)) {
1079 ci->gadget.b_hnp_enable = 1;
1080 err = isr_setup_status_phase(
1081 ci);
1082 }
1083 break;
Peter Chend7b00e32014-03-11 13:47:37 +08001084 default:
1085 goto delegate;
1086 }
1087 } else {
1088 goto delegate;
1089 }
1090 break;
1091 default:
1092delegate:
1093 if (req.wLength == 0) /* no data phase */
1094 ci->ep0_dir = TX;
1095
1096 spin_unlock(&ci->lock);
1097 err = ci->driver->setup(&ci->gadget, &req);
1098 spin_lock(&ci->lock);
1099 break;
1100 }
1101
1102 if (err < 0) {
1103 spin_unlock(&ci->lock);
1104 if (usb_ep_set_halt(&hwep->ep))
1105 dev_err(ci->dev, "error: ep_set_halt\n");
1106 spin_lock(&ci->lock);
1107 }
1108}
1109
1110/**
David Lopoaa69a802008-11-17 14:14:51 -08001111 * isr_tr_complete_handler: transaction complete interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +08001112 * @ci: UDC descriptor
David Lopoaa69a802008-11-17 14:14:51 -08001113 *
1114 * This function handles traffic events
1115 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001116static void isr_tr_complete_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +08001117__releases(ci->lock)
1118__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -08001119{
1120 unsigned i;
Peter Chend7b00e32014-03-11 13:47:37 +08001121 int err;
David Lopoaa69a802008-11-17 14:14:51 -08001122
Richard Zhao26c696c2012-07-07 22:56:40 +08001123 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001124 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
David Lopoaa69a802008-11-17 14:14:51 -08001125
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001126 if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001127 continue; /* not configured */
1128
Richard Zhao26c696c2012-07-07 22:56:40 +08001129 if (hw_test_and_clear_complete(ci, i)) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001130 err = isr_tr_complete_low(hwep);
1131 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
David Lopoaa69a802008-11-17 14:14:51 -08001132 if (err > 0) /* needs status phase */
Richard Zhao26c696c2012-07-07 22:56:40 +08001133 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001134 if (err < 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001135 spin_unlock(&ci->lock);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001136 if (usb_ep_set_halt(&hwep->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +08001137 dev_err(ci->dev,
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -07001138 "error: ep_set_halt\n");
Richard Zhao26c696c2012-07-07 22:56:40 +08001139 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001140 }
1141 }
1142 }
1143
Peter Chen64fc06c2014-02-19 13:41:41 +08001144 /* Only handle setup packet below */
Peter Chend7b00e32014-03-11 13:47:37 +08001145 if (i == 0 &&
1146 hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(0)))
1147 isr_setup_packet_handler(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001148 }
1149}
1150
1151/******************************************************************************
1152 * ENDPT block
1153 *****************************************************************************/
1154/**
1155 * ep_enable: configure endpoint, making it usable
1156 *
1157 * Check usb_ep_enable() at "usb_gadget.h" for details
1158 */
1159static int ep_enable(struct usb_ep *ep,
1160 const struct usb_endpoint_descriptor *desc)
1161{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001162 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301163 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001164 unsigned long flags;
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001165 u32 cap = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001166
David Lopoaa69a802008-11-17 14:14:51 -08001167 if (ep == NULL || desc == NULL)
1168 return -EINVAL;
1169
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001170 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001171
1172 /* only internal SW should enable ctrl endpts */
1173
Peter Chend5d1e1b2015-02-11 12:44:41 +08001174 if (!list_empty(&hwep->qh.queue)) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001175 dev_warn(hwep->ci->dev, "enabling a non-empty endpoint!\n");
Peter Chend5d1e1b2015-02-11 12:44:41 +08001176 spin_unlock_irqrestore(hwep->lock, flags);
1177 return -EBUSY;
1178 }
1179
1180 hwep->ep.desc = desc;
David Lopoaa69a802008-11-17 14:14:51 -08001181
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001182 hwep->dir = usb_endpoint_dir_in(desc) ? TX : RX;
1183 hwep->num = usb_endpoint_num(desc);
1184 hwep->type = usb_endpoint_type(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001185
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001186 hwep->ep.maxpacket = usb_endpoint_maxp(desc) & 0x07ff;
1187 hwep->ep.mult = QH_ISO_MULT(usb_endpoint_maxp(desc));
David Lopoaa69a802008-11-17 14:14:51 -08001188
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001189 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001190 cap |= QH_IOS;
Abbas Raza953c6642014-07-17 19:34:31 +08001191
1192 cap |= QH_ZLT;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001193 cap |= (hwep->ep.maxpacket << __ffs(QH_MAX_PKT)) & QH_MAX_PKT;
Peter Chen2fc5a7d2014-01-10 13:51:32 +08001194 /*
1195 * For ISO-TX, we set mult at QH as the largest value, and use
1196 * MultO at TD as real mult value.
1197 */
1198 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX)
1199 cap |= 3 << __ffs(QH_MULT);
David Lopoaa69a802008-11-17 14:14:51 -08001200
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001201 hwep->qh.ptr->cap = cpu_to_le32(cap);
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001202
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001203 hwep->qh.ptr->td.next |= cpu_to_le32(TD_TERMINATE); /* needed? */
David Lopoaa69a802008-11-17 14:14:51 -08001204
Peter Chen64fc06c2014-02-19 13:41:41 +08001205 if (hwep->num != 0 && hwep->type == USB_ENDPOINT_XFER_CONTROL) {
1206 dev_err(hwep->ci->dev, "Set control xfer at non-ep0\n");
1207 retval = -EINVAL;
1208 }
1209
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301210 /*
1211 * Enable endpoints in the HW other than ep0 as ep0
1212 * is always enabled
1213 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001214 if (hwep->num)
1215 retval |= hw_ep_enable(hwep->ci, hwep->num, hwep->dir,
1216 hwep->type);
David Lopoaa69a802008-11-17 14:14:51 -08001217
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001218 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001219 return retval;
1220}
1221
1222/**
1223 * ep_disable: endpoint is no longer usable
1224 *
1225 * Check usb_ep_disable() at "usb_gadget.h" for details
1226 */
1227static int ep_disable(struct usb_ep *ep)
1228{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001229 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001230 int direction, retval = 0;
1231 unsigned long flags;
1232
David Lopoaa69a802008-11-17 14:14:51 -08001233 if (ep == NULL)
1234 return -EINVAL;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001235 else if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001236 return -EBUSY;
1237
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001238 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001239
1240 /* only internal SW should disable ctrl endpts */
1241
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001242 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001243 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001244 retval |= _ep_nuke(hwep);
1245 retval |= hw_ep_disable(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001246
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001247 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1248 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001249
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001250 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001251
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001252 hwep->ep.desc = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001253
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001254 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001255 return retval;
1256}
1257
1258/**
1259 * ep_alloc_request: allocate a request object to use with this endpoint
1260 *
1261 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
1262 */
1263static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1264{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001265 struct ci_hw_req *hwreq = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001266
Alexander Shishkin0f089092012-05-08 23:29:02 +03001267 if (ep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001268 return NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001269
Alexander Shishkin8e229782013-06-24 14:46:36 +03001270 hwreq = kzalloc(sizeof(struct ci_hw_req), gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001271 if (hwreq != NULL) {
1272 INIT_LIST_HEAD(&hwreq->queue);
1273 INIT_LIST_HEAD(&hwreq->tds);
David Lopoaa69a802008-11-17 14:14:51 -08001274 }
1275
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001276 return (hwreq == NULL) ? NULL : &hwreq->req;
David Lopoaa69a802008-11-17 14:14:51 -08001277}
1278
1279/**
1280 * ep_free_request: frees a request object
1281 *
1282 * Check usb_ep_free_request() at "usb_gadget.h" for details
1283 */
1284static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
1285{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001286 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1287 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001288 struct td_node *node, *tmpnode;
David Lopoaa69a802008-11-17 14:14:51 -08001289 unsigned long flags;
1290
David Lopoaa69a802008-11-17 14:14:51 -08001291 if (ep == NULL || req == NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001292 return;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001293 } else if (!list_empty(&hwreq->queue)) {
1294 dev_err(hwep->ci->dev, "freeing queued request\n");
David Lopoaa69a802008-11-17 14:14:51 -08001295 return;
1296 }
1297
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001298 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001299
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001300 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
1301 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001302 list_del_init(&node->td);
1303 node->ptr = NULL;
1304 kfree(node);
1305 }
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +03001306
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001307 kfree(hwreq);
David Lopoaa69a802008-11-17 14:14:51 -08001308
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001309 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001310}
1311
1312/**
1313 * ep_queue: queues (submits) an I/O request to an endpoint
1314 *
1315 * Check usb_ep_queue()* at usb_gadget.h" for details
1316 */
1317static int ep_queue(struct usb_ep *ep, struct usb_request *req,
1318 gfp_t __maybe_unused gfp_flags)
1319{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001320 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001321 int retval = 0;
1322 unsigned long flags;
1323
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001324 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001325 return -EINVAL;
1326
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001327 spin_lock_irqsave(hwep->lock, flags);
Michael Grzeschikdd064e92013-03-30 12:54:09 +02001328 retval = _ep_queue(ep, req, gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001329 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001330 return retval;
1331}
1332
1333/**
1334 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
1335 *
1336 * Check usb_ep_dequeue() at "usb_gadget.h" for details
1337 */
1338static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
1339{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001340 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1341 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
David Lopoaa69a802008-11-17 14:14:51 -08001342 unsigned long flags;
Peter Chene4adcff2014-07-02 12:16:31 +08001343 struct td_node *node, *tmpnode;
David Lopoaa69a802008-11-17 14:14:51 -08001344
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001345 if (ep == NULL || req == NULL || hwreq->req.status != -EALREADY ||
1346 hwep->ep.desc == NULL || list_empty(&hwreq->queue) ||
1347 list_empty(&hwep->qh.queue))
David Lopoaa69a802008-11-17 14:14:51 -08001348 return -EINVAL;
1349
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001350 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001351
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001352 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001353
Peter Chene4adcff2014-07-02 12:16:31 +08001354 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
1355 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
1356 list_del(&node->td);
1357 kfree(node);
1358 }
1359
David Lopoaa69a802008-11-17 14:14:51 -08001360 /* pop request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001361 list_del_init(&hwreq->queue);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001362
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001363 usb_gadget_unmap_request(&hwep->ci->gadget, req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001364
David Lopoaa69a802008-11-17 14:14:51 -08001365 req->status = -ECONNRESET;
1366
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001367 if (hwreq->req.complete != NULL) {
1368 spin_unlock(hwep->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001369 usb_gadget_giveback_request(&hwep->ep, &hwreq->req);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001370 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001371 }
1372
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001373 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001374 return 0;
1375}
1376
1377/**
1378 * ep_set_halt: sets the endpoint halt feature
1379 *
1380 * Check usb_ep_set_halt() at "usb_gadget.h" for details
1381 */
1382static int ep_set_halt(struct usb_ep *ep, int value)
1383{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001384 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001385 int direction, retval = 0;
1386 unsigned long flags;
1387
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001388 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001389 return -EINVAL;
1390
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001391 if (usb_endpoint_xfer_isoc(hwep->ep.desc))
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +03001392 return -EOPNOTSUPP;
1393
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001394 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001395
1396#ifndef STALL_IN
1397 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001398 if (value && hwep->type == USB_ENDPOINT_XFER_BULK && hwep->dir == TX &&
1399 !list_empty(&hwep->qh.queue)) {
1400 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001401 return -EAGAIN;
1402 }
1403#endif
1404
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001405 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001406 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001407 retval |= hw_ep_set_halt(hwep->ci, hwep->num, hwep->dir, value);
David Lopoaa69a802008-11-17 14:14:51 -08001408
1409 if (!value)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001410 hwep->wedge = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001411
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001412 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1413 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001414
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001415 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001416
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001417 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001418 return retval;
1419}
1420
1421/**
1422 * ep_set_wedge: sets the halt feature and ignores clear requests
1423 *
1424 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
1425 */
1426static int ep_set_wedge(struct usb_ep *ep)
1427{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001428 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001429 unsigned long flags;
1430
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001431 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001432 return -EINVAL;
1433
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001434 spin_lock_irqsave(hwep->lock, flags);
1435 hwep->wedge = 1;
1436 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001437
1438 return usb_ep_set_halt(ep);
1439}
1440
1441/**
1442 * ep_fifo_flush: flushes contents of a fifo
1443 *
1444 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
1445 */
1446static void ep_fifo_flush(struct usb_ep *ep)
1447{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001448 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001449 unsigned long flags;
1450
David Lopoaa69a802008-11-17 14:14:51 -08001451 if (ep == NULL) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001452 dev_err(hwep->ci->dev, "%02X: -EINVAL\n", _usb_addr(hwep));
David Lopoaa69a802008-11-17 14:14:51 -08001453 return;
1454 }
1455
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001456 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001457
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001458 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001459
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001460 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001461}
1462
1463/**
1464 * Endpoint-specific part of the API to the USB controller hardware
1465 * Check "usb_gadget.h" for details
1466 */
1467static const struct usb_ep_ops usb_ep_ops = {
1468 .enable = ep_enable,
1469 .disable = ep_disable,
1470 .alloc_request = ep_alloc_request,
1471 .free_request = ep_free_request,
1472 .queue = ep_queue,
1473 .dequeue = ep_dequeue,
1474 .set_halt = ep_set_halt,
1475 .set_wedge = ep_set_wedge,
1476 .fifo_flush = ep_fifo_flush,
1477};
1478
1479/******************************************************************************
1480 * GADGET block
1481 *****************************************************************************/
Alexander Shishkin8e229782013-06-24 14:46:36 +03001482static int ci_udc_vbus_session(struct usb_gadget *_gadget, int is_active)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301483{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001484 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301485 unsigned long flags;
1486 int gadget_ready = 0;
1487
Richard Zhao26c696c2012-07-07 22:56:40 +08001488 spin_lock_irqsave(&ci->lock, flags);
1489 ci->vbus_active = is_active;
1490 if (ci->driver)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301491 gadget_ready = 1;
Richard Zhao26c696c2012-07-07 22:56:40 +08001492 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301493
1494 if (gadget_ready) {
1495 if (is_active) {
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301496 pm_runtime_get_sync(&_gadget->dev);
Peter Chen5b157302014-11-26 13:44:33 +08001497 hw_device_reset(ci);
Richard Zhao26c696c2012-07-07 22:56:40 +08001498 hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chen10775eb2014-05-04 09:24:44 +08001499 usb_gadget_set_state(_gadget, USB_STATE_POWERED);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301500 } else {
Peter Chen92b336d2013-09-17 12:37:19 +08001501 if (ci->driver)
1502 ci->driver->disconnect(&ci->gadget);
Richard Zhao26c696c2012-07-07 22:56:40 +08001503 hw_device_state(ci, 0);
1504 if (ci->platdata->notify_event)
1505 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001506 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001507 _gadget_stop_activity(&ci->gadget);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301508 pm_runtime_put_sync(&_gadget->dev);
Peter Chen10775eb2014-05-04 09:24:44 +08001509 usb_gadget_set_state(_gadget, USB_STATE_NOTATTACHED);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301510 }
1511 }
1512
1513 return 0;
1514}
1515
Alexander Shishkin8e229782013-06-24 14:46:36 +03001516static int ci_udc_wakeup(struct usb_gadget *_gadget)
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301517{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001518 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301519 unsigned long flags;
1520 int ret = 0;
1521
Richard Zhao26c696c2012-07-07 22:56:40 +08001522 spin_lock_irqsave(&ci->lock, flags);
1523 if (!ci->remote_wakeup) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301524 ret = -EOPNOTSUPP;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301525 goto out;
1526 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001527 if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301528 ret = -EINVAL;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301529 goto out;
1530 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001531 hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301532out:
Richard Zhao26c696c2012-07-07 22:56:40 +08001533 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301534 return ret;
1535}
1536
Alexander Shishkin8e229782013-06-24 14:46:36 +03001537static int ci_udc_vbus_draw(struct usb_gadget *_gadget, unsigned ma)
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301538{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001539 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301540
Antoine Tenartef44cb42014-10-30 18:41:16 +01001541 if (ci->usb_phy)
1542 return usb_phy_set_power(ci->usb_phy, ma);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301543 return -ENOTSUPP;
1544}
1545
Peter Chen1009f9a2015-01-28 16:32:25 +08001546static int ci_udc_selfpowered(struct usb_gadget *_gadget, int is_on)
1547{
1548 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
1549 struct ci_hw_ep *hwep = ci->ep0in;
1550 unsigned long flags;
1551
1552 spin_lock_irqsave(hwep->lock, flags);
1553 _gadget->is_selfpowered = (is_on != 0);
1554 spin_unlock_irqrestore(hwep->lock, flags);
1555
1556 return 0;
1557}
1558
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001559/* Change Data+ pullup status
1560 * this func is used by usb_gadget_connect/disconnet
1561 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001562static int ci_udc_pullup(struct usb_gadget *_gadget, int is_on)
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001563{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001564 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001565
Peter Chen4a647832013-08-14 12:44:15 +03001566 if (!ci->vbus_active)
1567 return -EOPNOTSUPP;
1568
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001569 if (is_on)
1570 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
1571 else
1572 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
1573
1574 return 0;
1575}
1576
Alexander Shishkin8e229782013-06-24 14:46:36 +03001577static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001578 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -05001579static int ci_udc_stop(struct usb_gadget *gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001580/**
1581 * Device operations part of the API to the USB controller hardware,
1582 * which don't involve endpoints (or i/o)
1583 * Check "usb_gadget.h" for details
1584 */
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301585static const struct usb_gadget_ops usb_gadget_ops = {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001586 .vbus_session = ci_udc_vbus_session,
1587 .wakeup = ci_udc_wakeup,
Peter Chen1009f9a2015-01-28 16:32:25 +08001588 .set_selfpowered = ci_udc_selfpowered,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001589 .pullup = ci_udc_pullup,
1590 .vbus_draw = ci_udc_vbus_draw,
1591 .udc_start = ci_udc_start,
1592 .udc_stop = ci_udc_stop,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301593};
David Lopoaa69a802008-11-17 14:14:51 -08001594
Alexander Shishkin8e229782013-06-24 14:46:36 +03001595static int init_eps(struct ci_hdrc *ci)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001596{
1597 int retval = 0, i, j;
1598
Richard Zhao26c696c2012-07-07 22:56:40 +08001599 for (i = 0; i < ci->hw_ep_max/2; i++)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001600 for (j = RX; j <= TX; j++) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001601 int k = i + j * ci->hw_ep_max/2;
Alexander Shishkin8e229782013-06-24 14:46:36 +03001602 struct ci_hw_ep *hwep = &ci->ci_hw_ep[k];
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001603
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001604 scnprintf(hwep->name, sizeof(hwep->name), "ep%i%s", i,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001605 (j == TX) ? "in" : "out");
1606
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001607 hwep->ci = ci;
1608 hwep->lock = &ci->lock;
1609 hwep->td_pool = ci->td_pool;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001610
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001611 hwep->ep.name = hwep->name;
1612 hwep->ep.ops = &usb_ep_ops;
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001613 /*
1614 * for ep0: maxP defined in desc, for other
1615 * eps, maxP is set by epautoconfig() called
1616 * by gadget layer
1617 */
Robert Baldygae117e742013-12-13 12:23:38 +01001618 usb_ep_set_maxpacket_limit(&hwep->ep, (unsigned short)~0);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001619
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001620 INIT_LIST_HEAD(&hwep->qh.queue);
1621 hwep->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL,
1622 &hwep->qh.dma);
1623 if (hwep->qh.ptr == NULL)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001624 retval = -ENOMEM;
1625 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001626 memset(hwep->qh.ptr, 0, sizeof(*hwep->qh.ptr));
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001627
1628 /*
1629 * set up shorthands for ep0 out and in endpoints,
1630 * don't add to gadget's ep_list
1631 */
1632 if (i == 0) {
1633 if (j == RX)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001634 ci->ep0out = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001635 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001636 ci->ep0in = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001637
Robert Baldygae117e742013-12-13 12:23:38 +01001638 usb_ep_set_maxpacket_limit(&hwep->ep, CTRL_PAYLOAD_MAX);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001639 continue;
1640 }
1641
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001642 list_add_tail(&hwep->ep.ep_list, &ci->gadget.ep_list);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001643 }
1644
1645 return retval;
1646}
1647
Alexander Shishkin8e229782013-06-24 14:46:36 +03001648static void destroy_eps(struct ci_hdrc *ci)
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001649{
1650 int i;
1651
1652 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001653 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001654
Peter Chen4a295672013-09-10 15:34:39 +08001655 if (hwep->pending_td)
1656 free_pending_td(hwep);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001657 dma_pool_free(ci->qh_pool, hwep->qh.ptr, hwep->qh.dma);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001658 }
1659}
1660
David Lopoaa69a802008-11-17 14:14:51 -08001661/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001662 * ci_udc_start: register a gadget driver
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001663 * @gadget: our gadget
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001664 * @driver: the driver being registered
David Lopoaa69a802008-11-17 14:14:51 -08001665 *
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001666 * Interrupts are enabled here.
David Lopoaa69a802008-11-17 14:14:51 -08001667 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001668static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001669 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001670{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001671 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301672 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001673 int retval = -ENOMEM;
1674
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001675 if (driver->disconnect == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001676 return -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -08001677
David Lopoaa69a802008-11-17 14:14:51 -08001678
Richard Zhao26c696c2012-07-07 22:56:40 +08001679 ci->ep0out->ep.desc = &ctrl_endpt_out_desc;
1680 retval = usb_ep_enable(&ci->ep0out->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301681 if (retval)
1682 return retval;
Felipe Balbi877c1f52011-06-29 16:41:57 +03001683
Richard Zhao26c696c2012-07-07 22:56:40 +08001684 ci->ep0in->ep.desc = &ctrl_endpt_in_desc;
1685 retval = usb_ep_enable(&ci->ep0in->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301686 if (retval)
1687 return retval;
David Lopoaa69a802008-11-17 14:14:51 -08001688
Richard Zhao26c696c2012-07-07 22:56:40 +08001689 ci->driver = driver;
Li Jun4dcf7202014-04-23 15:56:50 +08001690
1691 /* Start otg fsm for B-device */
1692 if (ci_otg_is_fsm_mode(ci) && ci->fsm.id) {
1693 ci_hdrc_otg_fsm_start(ci);
1694 return retval;
1695 }
1696
Richard Zhao26c696c2012-07-07 22:56:40 +08001697 pm_runtime_get_sync(&ci->gadget.dev);
Peter Chend268e9b2013-08-14 12:44:14 +03001698 if (ci->vbus_active) {
Peter Chen65b2fb32013-10-08 10:30:17 +08001699 spin_lock_irqsave(&ci->lock, flags);
Peter Chen5b157302014-11-26 13:44:33 +08001700 hw_device_reset(ci);
Peter Chend268e9b2013-08-14 12:44:14 +03001701 } else {
1702 pm_runtime_put_sync(&ci->gadget.dev);
Peter Chen65b2fb32013-10-08 10:30:17 +08001703 return retval;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301704 }
1705
Richard Zhao26c696c2012-07-07 22:56:40 +08001706 retval = hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chen65b2fb32013-10-08 10:30:17 +08001707 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301708 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +08001709 pm_runtime_put_sync(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001710
David Lopoaa69a802008-11-17 14:14:51 -08001711 return retval;
1712}
David Lopoaa69a802008-11-17 14:14:51 -08001713
1714/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001715 * ci_udc_stop: unregister a gadget driver
David Lopoaa69a802008-11-17 14:14:51 -08001716 */
Felipe Balbi22835b82014-10-17 12:05:12 -05001717static int ci_udc_stop(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -08001718{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001719 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001720 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001721
Richard Zhao26c696c2012-07-07 22:56:40 +08001722 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001723
Peter Chend268e9b2013-08-14 12:44:14 +03001724 if (ci->vbus_active) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001725 hw_device_state(ci, 0);
1726 if (ci->platdata->notify_event)
1727 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001728 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001729 spin_unlock_irqrestore(&ci->lock, flags);
1730 _gadget_stop_activity(&ci->gadget);
1731 spin_lock_irqsave(&ci->lock, flags);
1732 pm_runtime_put(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301733 }
David Lopoaa69a802008-11-17 14:14:51 -08001734
Peter Chenf84839d2013-09-17 12:37:20 +08001735 ci->driver = NULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001736 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001737
David Lopoaa69a802008-11-17 14:14:51 -08001738 return 0;
1739}
David Lopoaa69a802008-11-17 14:14:51 -08001740
1741/******************************************************************************
1742 * BUS block
1743 *****************************************************************************/
1744/**
Richard Zhao26c696c2012-07-07 22:56:40 +08001745 * udc_irq: ci interrupt handler
David Lopoaa69a802008-11-17 14:14:51 -08001746 *
1747 * This function returns IRQ_HANDLED if the IRQ has been handled
1748 * It locks access to registers
1749 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001750static irqreturn_t udc_irq(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001751{
David Lopoaa69a802008-11-17 14:14:51 -08001752 irqreturn_t retval;
1753 u32 intr;
1754
Richard Zhao26c696c2012-07-07 22:56:40 +08001755 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001756 return IRQ_HANDLED;
David Lopoaa69a802008-11-17 14:14:51 -08001757
Richard Zhao26c696c2012-07-07 22:56:40 +08001758 spin_lock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301759
Alexander Shishkin8e229782013-06-24 14:46:36 +03001760 if (ci->platdata->flags & CI_HDRC_REGS_SHARED) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001761 if (hw_read(ci, OP_USBMODE, USBMODE_CM) !=
Alexander Shishkin758fc982012-05-11 17:25:53 +03001762 USBMODE_CM_DC) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001763 spin_unlock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301764 return IRQ_NONE;
1765 }
1766 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001767 intr = hw_test_and_clear_intr_active(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001768
Alexander Shishkine443b332012-05-11 17:25:46 +03001769 if (intr) {
David Lopoaa69a802008-11-17 14:14:51 -08001770 /* order defines priority - do NOT change it */
Alexander Shishkine443b332012-05-11 17:25:46 +03001771 if (USBi_URI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001772 isr_reset_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001773
David Lopoaa69a802008-11-17 14:14:51 -08001774 if (USBi_PCI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001775 ci->gadget.speed = hw_port_is_high_speed(ci) ?
David Lopoaa69a802008-11-17 14:14:51 -08001776 USB_SPEED_HIGH : USB_SPEED_FULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001777 if (ci->suspended && ci->driver->resume) {
1778 spin_unlock(&ci->lock);
1779 ci->driver->resume(&ci->gadget);
1780 spin_lock(&ci->lock);
1781 ci->suspended = 0;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301782 }
David Lopoaa69a802008-11-17 14:14:51 -08001783 }
Alexander Shishkine443b332012-05-11 17:25:46 +03001784
1785 if (USBi_UI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001786 isr_tr_complete_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001787
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301788 if (USBi_SLI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001789 if (ci->gadget.speed != USB_SPEED_UNKNOWN &&
1790 ci->driver->suspend) {
1791 ci->suspended = 1;
1792 spin_unlock(&ci->lock);
1793 ci->driver->suspend(&ci->gadget);
Peter Chen10775eb2014-05-04 09:24:44 +08001794 usb_gadget_set_state(&ci->gadget,
1795 USB_STATE_SUSPENDED);
Richard Zhao26c696c2012-07-07 22:56:40 +08001796 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301797 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301798 }
David Lopoaa69a802008-11-17 14:14:51 -08001799 retval = IRQ_HANDLED;
1800 } else {
David Lopoaa69a802008-11-17 14:14:51 -08001801 retval = IRQ_NONE;
1802 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001803 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001804
1805 return retval;
1806}
1807
1808/**
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001809 * udc_start: initialize gadget role
Richard Zhao26c696c2012-07-07 22:56:40 +08001810 * @ci: chipidea controller
David Lopoaa69a802008-11-17 14:14:51 -08001811 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001812static int udc_start(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001813{
Richard Zhao26c696c2012-07-07 22:56:40 +08001814 struct device *dev = ci->dev;
David Lopoaa69a802008-11-17 14:14:51 -08001815 int retval = 0;
1816
Richard Zhao26c696c2012-07-07 22:56:40 +08001817 spin_lock_init(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001818
Richard Zhao26c696c2012-07-07 22:56:40 +08001819 ci->gadget.ops = &usb_gadget_ops;
1820 ci->gadget.speed = USB_SPEED_UNKNOWN;
1821 ci->gadget.max_speed = USB_SPEED_HIGH;
Li Jun95f55552014-04-23 15:56:47 +08001822 ci->gadget.is_otg = ci->is_otg ? 1 : 0;
Richard Zhao26c696c2012-07-07 22:56:40 +08001823 ci->gadget.name = ci->platdata->name;
David Lopoaa69a802008-11-17 14:14:51 -08001824
Richard Zhao26c696c2012-07-07 22:56:40 +08001825 INIT_LIST_HEAD(&ci->gadget.ep_list);
David Lopoaa69a802008-11-17 14:14:51 -08001826
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001827 /* alloc resources */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001828 ci->qh_pool = dma_pool_create("ci_hw_qh", dev,
1829 sizeof(struct ci_hw_qh),
1830 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001831 if (ci->qh_pool == NULL)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001832 return -ENOMEM;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001833
Alexander Shishkin8e229782013-06-24 14:46:36 +03001834 ci->td_pool = dma_pool_create("ci_hw_td", dev,
1835 sizeof(struct ci_hw_td),
1836 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001837 if (ci->td_pool == NULL) {
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001838 retval = -ENOMEM;
1839 goto free_qh_pool;
1840 }
1841
Richard Zhao26c696c2012-07-07 22:56:40 +08001842 retval = init_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001843 if (retval)
1844 goto free_pools;
1845
Richard Zhao26c696c2012-07-07 22:56:40 +08001846 ci->gadget.ep0 = &ci->ep0in->ep;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301847
Richard Zhao26c696c2012-07-07 22:56:40 +08001848 retval = usb_add_gadget_udc(dev, &ci->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001849 if (retval)
Peter Chen74475ed2013-09-24 12:47:53 +08001850 goto destroy_eps;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001851
Richard Zhao26c696c2012-07-07 22:56:40 +08001852 pm_runtime_no_callbacks(&ci->gadget.dev);
1853 pm_runtime_enable(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001854
David Lopoaa69a802008-11-17 14:14:51 -08001855 return retval;
1856
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001857destroy_eps:
1858 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001859free_pools:
Richard Zhao26c696c2012-07-07 22:56:40 +08001860 dma_pool_destroy(ci->td_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001861free_qh_pool:
Richard Zhao26c696c2012-07-07 22:56:40 +08001862 dma_pool_destroy(ci->qh_pool);
David Lopoaa69a802008-11-17 14:14:51 -08001863 return retval;
1864}
1865
1866/**
Peter Chen3f124d22013-08-14 12:44:07 +03001867 * ci_hdrc_gadget_destroy: parent remove must call this to remove UDC
David Lopoaa69a802008-11-17 14:14:51 -08001868 *
1869 * No interrupts active, the IRQ has been released
1870 */
Peter Chen3f124d22013-08-14 12:44:07 +03001871void ci_hdrc_gadget_destroy(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001872{
Peter Chen3f124d22013-08-14 12:44:07 +03001873 if (!ci->roles[CI_ROLE_GADGET])
David Lopoaa69a802008-11-17 14:14:51 -08001874 return;
Alexander Shishkin0f089092012-05-08 23:29:02 +03001875
Richard Zhao26c696c2012-07-07 22:56:40 +08001876 usb_del_gadget_udc(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001877
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001878 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001879
Richard Zhao26c696c2012-07-07 22:56:40 +08001880 dma_pool_destroy(ci->td_pool);
1881 dma_pool_destroy(ci->qh_pool);
Peter Chen3f124d22013-08-14 12:44:07 +03001882}
1883
1884static int udc_id_switch_for_device(struct ci_hdrc *ci)
1885{
Li Jun0c33bf72014-04-23 15:56:38 +08001886 if (ci->is_otg)
1887 /* Clear and enable BSV irq */
1888 hw_write_otgsc(ci, OTGSC_BSVIS | OTGSC_BSVIE,
1889 OTGSC_BSVIS | OTGSC_BSVIE);
Peter Chen3f124d22013-08-14 12:44:07 +03001890
1891 return 0;
1892}
1893
1894static void udc_id_switch_for_host(struct ci_hdrc *ci)
1895{
Li Jun0c33bf72014-04-23 15:56:38 +08001896 /*
1897 * host doesn't care B_SESSION_VALID event
1898 * so clear and disbale BSV irq
1899 */
1900 if (ci->is_otg)
1901 hw_write_otgsc(ci, OTGSC_BSVIE | OTGSC_BSVIS, OTGSC_BSVIS);
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001902}
David Lopoaa69a802008-11-17 14:14:51 -08001903
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001904/**
1905 * ci_hdrc_gadget_init - initialize device related bits
1906 * ci: the controller
1907 *
Peter Chen3f124d22013-08-14 12:44:07 +03001908 * This function initializes the gadget, if the device is "device capable".
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001909 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001910int ci_hdrc_gadget_init(struct ci_hdrc *ci)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001911{
1912 struct ci_role_driver *rdrv;
1913
1914 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC))
1915 return -ENXIO;
1916
1917 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
1918 if (!rdrv)
1919 return -ENOMEM;
1920
Peter Chen3f124d22013-08-14 12:44:07 +03001921 rdrv->start = udc_id_switch_for_device;
1922 rdrv->stop = udc_id_switch_for_host;
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001923 rdrv->irq = udc_irq;
1924 rdrv->name = "gadget";
1925 ci->roles[CI_ROLE_GADGET] = rdrv;
1926
Peter Chen3f124d22013-08-14 12:44:07 +03001927 return udc_start(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001928}