blob: c70ce3891d3513354a0b5d8e1b92d75cf57b9890 [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>
Pavankumar Kondetif01ef572010-12-07 17:54:02 +053023#include <linux/usb/otg.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"
Michael Grzeschik954aad82011-10-10 18:38:06 +020031
David Lopoaa69a802008-11-17 14:14:51 -080032/* control endpoint description */
33static const struct usb_endpoint_descriptor
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053034ctrl_endpt_out_desc = {
David Lopoaa69a802008-11-17 14:14:51 -080035 .bLength = USB_DT_ENDPOINT_SIZE,
36 .bDescriptorType = USB_DT_ENDPOINT,
37
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053038 .bEndpointAddress = USB_DIR_OUT,
39 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
40 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
41};
42
43static const struct usb_endpoint_descriptor
44ctrl_endpt_in_desc = {
45 .bLength = USB_DT_ENDPOINT_SIZE,
46 .bDescriptorType = USB_DT_ENDPOINT,
47
48 .bEndpointAddress = USB_DIR_IN,
David Lopoaa69a802008-11-17 14:14:51 -080049 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
50 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
51};
52
David Lopoaa69a802008-11-17 14:14:51 -080053/**
54 * hw_ep_bit: calculates the bit number
55 * @num: endpoint number
56 * @dir: endpoint direction
57 *
58 * This function returns bit number
59 */
60static inline int hw_ep_bit(int num, int dir)
61{
62 return num + (dir ? 16 : 0);
63}
64
Alexander Shishkin8e229782013-06-24 14:46:36 +030065static inline int ep_to_bit(struct ci_hdrc *ci, int n)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020066{
Richard Zhao26c696c2012-07-07 22:56:40 +080067 int fill = 16 - ci->hw_ep_max / 2;
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020068
Richard Zhao26c696c2012-07-07 22:56:40 +080069 if (n >= ci->hw_ep_max / 2)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020070 n += fill;
71
72 return n;
73}
74
David Lopoaa69a802008-11-17 14:14:51 -080075/**
Michael Grzeschikc0a48e62012-09-12 14:58:01 +030076 * hw_device_state: enables/disables interrupts (execute without interruption)
David Lopoaa69a802008-11-17 14:14:51 -080077 * @dma: 0 => disable, !0 => enable and set dma engine
78 *
79 * This function returns an error code
80 */
Alexander Shishkin8e229782013-06-24 14:46:36 +030081static int hw_device_state(struct ci_hdrc *ci, u32 dma)
David Lopoaa69a802008-11-17 14:14:51 -080082{
83 if (dma) {
Richard Zhao26c696c2012-07-07 22:56:40 +080084 hw_write(ci, OP_ENDPTLISTADDR, ~0, dma);
David Lopoaa69a802008-11-17 14:14:51 -080085 /* interrupt, error, port change, reset, sleep/suspend */
Richard Zhao26c696c2012-07-07 22:56:40 +080086 hw_write(ci, OP_USBINTR, ~0,
David Lopoaa69a802008-11-17 14:14:51 -080087 USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI);
Peter Chena107f8c2013-08-14 12:44:11 +030088 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
David Lopoaa69a802008-11-17 14:14:51 -080089 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +080090 hw_write(ci, OP_USBINTR, ~0, 0);
Peter Chena107f8c2013-08-14 12:44:11 +030091 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
David Lopoaa69a802008-11-17 14:14:51 -080092 }
93 return 0;
94}
95
96/**
97 * hw_ep_flush: flush endpoint fifo (execute without interruption)
98 * @num: endpoint number
99 * @dir: endpoint direction
100 *
101 * This function returns an error code
102 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300103static int hw_ep_flush(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800104{
105 int n = hw_ep_bit(num, dir);
106
107 do {
108 /* flush any pending transfer */
Richard Zhao26c696c2012-07-07 22:56:40 +0800109 hw_write(ci, OP_ENDPTFLUSH, BIT(n), BIT(n));
110 while (hw_read(ci, OP_ENDPTFLUSH, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800111 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800112 } while (hw_read(ci, OP_ENDPTSTAT, BIT(n)));
David Lopoaa69a802008-11-17 14:14:51 -0800113
114 return 0;
115}
116
117/**
118 * hw_ep_disable: disables endpoint (execute without interruption)
119 * @num: endpoint number
120 * @dir: endpoint direction
121 *
122 * This function returns an error code
123 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300124static int hw_ep_disable(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800125{
Richard Zhao26c696c2012-07-07 22:56:40 +0800126 hw_ep_flush(ci, num, dir);
127 hw_write(ci, OP_ENDPTCTRL + num,
Alexander Shishkind3595d12012-05-08 23:28:58 +0300128 dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800129 return 0;
130}
131
132/**
133 * hw_ep_enable: enables endpoint (execute without interruption)
134 * @num: endpoint number
135 * @dir: endpoint direction
136 * @type: endpoint type
137 *
138 * This function returns an error code
139 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300140static int hw_ep_enable(struct ci_hdrc *ci, int num, int dir, int type)
David Lopoaa69a802008-11-17 14:14:51 -0800141{
142 u32 mask, data;
143
144 if (dir) {
145 mask = ENDPTCTRL_TXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200146 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800147
148 mask |= ENDPTCTRL_TXS; /* unstall */
149 mask |= ENDPTCTRL_TXR; /* reset data toggle */
150 data |= ENDPTCTRL_TXR;
151 mask |= ENDPTCTRL_TXE; /* enable */
152 data |= ENDPTCTRL_TXE;
153 } else {
154 mask = ENDPTCTRL_RXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200155 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800156
157 mask |= ENDPTCTRL_RXS; /* unstall */
158 mask |= ENDPTCTRL_RXR; /* reset data toggle */
159 data |= ENDPTCTRL_RXR;
160 mask |= ENDPTCTRL_RXE; /* enable */
161 data |= ENDPTCTRL_RXE;
162 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800163 hw_write(ci, OP_ENDPTCTRL + num, mask, data);
David Lopoaa69a802008-11-17 14:14:51 -0800164 return 0;
165}
166
167/**
168 * hw_ep_get_halt: return endpoint halt status
169 * @num: endpoint number
170 * @dir: endpoint direction
171 *
172 * This function returns 1 if endpoint halted
173 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300174static int hw_ep_get_halt(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800175{
176 u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
177
Richard Zhao26c696c2012-07-07 22:56:40 +0800178 return hw_read(ci, OP_ENDPTCTRL + num, mask) ? 1 : 0;
David Lopoaa69a802008-11-17 14:14:51 -0800179}
180
181/**
David Lopoaa69a802008-11-17 14:14:51 -0800182 * hw_test_and_clear_setup_status: test & clear setup status (execute without
183 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200184 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800185 *
186 * This function returns setup status
187 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300188static int hw_test_and_clear_setup_status(struct ci_hdrc *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800189{
Richard Zhao26c696c2012-07-07 22:56:40 +0800190 n = ep_to_bit(ci, n);
191 return hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800192}
193
194/**
195 * hw_ep_prime: primes endpoint (execute without interruption)
196 * @num: endpoint number
197 * @dir: endpoint direction
198 * @is_ctrl: true if control endpoint
199 *
200 * This function returns an error code
201 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300202static int hw_ep_prime(struct ci_hdrc *ci, int num, int dir, int is_ctrl)
David Lopoaa69a802008-11-17 14:14:51 -0800203{
204 int n = hw_ep_bit(num, dir);
205
Richard Zhao26c696c2012-07-07 22:56:40 +0800206 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800207 return -EAGAIN;
208
Richard Zhao26c696c2012-07-07 22:56:40 +0800209 hw_write(ci, OP_ENDPTPRIME, BIT(n), BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800210
Richard Zhao26c696c2012-07-07 22:56:40 +0800211 while (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800212 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800213 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800214 return -EAGAIN;
215
216 /* status shoult be tested according with manual but it doesn't work */
217 return 0;
218}
219
220/**
221 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
222 * without interruption)
223 * @num: endpoint number
224 * @dir: endpoint direction
225 * @value: true => stall, false => unstall
226 *
227 * This function returns an error code
228 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300229static int hw_ep_set_halt(struct ci_hdrc *ci, int num, int dir, int value)
David Lopoaa69a802008-11-17 14:14:51 -0800230{
231 if (value != 0 && value != 1)
232 return -EINVAL;
233
234 do {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300235 enum ci_hw_regs reg = OP_ENDPTCTRL + num;
David Lopoaa69a802008-11-17 14:14:51 -0800236 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
237 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
238
239 /* data toggle - reserved for EP0 but it's in ESS */
Richard Zhao26c696c2012-07-07 22:56:40 +0800240 hw_write(ci, reg, mask_xs|mask_xr,
Alexander Shishkin262c1632012-05-08 23:28:59 +0300241 value ? mask_xs : mask_xr);
Richard Zhao26c696c2012-07-07 22:56:40 +0800242 } while (value != hw_ep_get_halt(ci, num, dir));
David Lopoaa69a802008-11-17 14:14:51 -0800243
244 return 0;
245}
246
247/**
David Lopoaa69a802008-11-17 14:14:51 -0800248 * hw_is_port_high_speed: test if port is high speed
249 *
250 * This function returns true if high speed port
251 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300252static int hw_port_is_high_speed(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800253{
Richard Zhao26c696c2012-07-07 22:56:40 +0800254 return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) :
255 hw_read(ci, OP_PORTSC, PORTSC_HSP);
David Lopoaa69a802008-11-17 14:14:51 -0800256}
257
258/**
David Lopoaa69a802008-11-17 14:14:51 -0800259 * hw_read_intr_enable: returns interrupt enable register
260 *
261 * This function returns register data
262 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300263static u32 hw_read_intr_enable(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800264{
Richard Zhao26c696c2012-07-07 22:56:40 +0800265 return hw_read(ci, OP_USBINTR, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800266}
267
268/**
269 * hw_read_intr_status: returns interrupt status register
270 *
271 * This function returns register data
272 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300273static u32 hw_read_intr_status(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800274{
Richard Zhao26c696c2012-07-07 22:56:40 +0800275 return hw_read(ci, OP_USBSTS, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800276}
277
278/**
David Lopoaa69a802008-11-17 14:14:51 -0800279 * hw_test_and_clear_complete: test & clear complete status (execute without
280 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200281 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800282 *
283 * This function returns complete status
284 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300285static int hw_test_and_clear_complete(struct ci_hdrc *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800286{
Richard Zhao26c696c2012-07-07 22:56:40 +0800287 n = ep_to_bit(ci, n);
288 return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800289}
290
291/**
292 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
293 * without interruption)
294 *
295 * This function returns active interrutps
296 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300297static u32 hw_test_and_clear_intr_active(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800298{
Richard Zhao26c696c2012-07-07 22:56:40 +0800299 u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800300
Richard Zhao26c696c2012-07-07 22:56:40 +0800301 hw_write(ci, OP_USBSTS, ~0, reg);
David Lopoaa69a802008-11-17 14:14:51 -0800302 return reg;
303}
304
305/**
306 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
307 * interruption)
308 *
309 * This function returns guard value
310 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300311static int hw_test_and_clear_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800312{
Richard Zhao26c696c2012-07-07 22:56:40 +0800313 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800314}
315
316/**
317 * hw_test_and_set_setup_guard: test & set setup guard (execute without
318 * interruption)
319 *
320 * This function returns guard value
321 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300322static int hw_test_and_set_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800323{
Richard Zhao26c696c2012-07-07 22:56:40 +0800324 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
David Lopoaa69a802008-11-17 14:14:51 -0800325}
326
327/**
328 * hw_usb_set_address: configures USB address (execute without interruption)
329 * @value: new USB address
330 *
Alexander Shishkinef15e542012-05-11 17:25:43 +0300331 * This function explicitly sets the address, without the "USBADRA" (advance)
332 * feature, which is not supported by older versions of the controller.
David Lopoaa69a802008-11-17 14:14:51 -0800333 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300334static void hw_usb_set_address(struct ci_hdrc *ci, u8 value)
David Lopoaa69a802008-11-17 14:14:51 -0800335{
Richard Zhao26c696c2012-07-07 22:56:40 +0800336 hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR,
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200337 value << __ffs(DEVICEADDR_USBADR));
David Lopoaa69a802008-11-17 14:14:51 -0800338}
339
340/**
341 * hw_usb_reset: restart device after a bus reset (execute without
342 * interruption)
343 *
344 * This function returns an error code
345 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300346static int hw_usb_reset(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800347{
Richard Zhao26c696c2012-07-07 22:56:40 +0800348 hw_usb_set_address(ci, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800349
350 /* ESS flushes only at end?!? */
Richard Zhao26c696c2012-07-07 22:56:40 +0800351 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800352
353 /* clear setup token semaphores */
Richard Zhao26c696c2012-07-07 22:56:40 +0800354 hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800355
356 /* clear complete status */
Richard Zhao26c696c2012-07-07 22:56:40 +0800357 hw_write(ci, OP_ENDPTCOMPLETE, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800358
359 /* wait until all bits cleared */
Richard Zhao26c696c2012-07-07 22:56:40 +0800360 while (hw_read(ci, OP_ENDPTPRIME, ~0))
David Lopoaa69a802008-11-17 14:14:51 -0800361 udelay(10); /* not RTOS friendly */
362
363 /* reset all endpoints ? */
364
365 /* reset internal status and wait for further instructions
366 no need to verify the port reset status (ESS does it) */
367
368 return 0;
369}
370
371/******************************************************************************
David Lopoaa69a802008-11-17 14:14:51 -0800372 * UTIL block
373 *****************************************************************************/
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300374
Alexander Shishkin8e229782013-06-24 14:46:36 +0300375static int add_td_to_list(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300376 unsigned length)
377{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300378 int i;
379 u32 temp;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300380 struct td_node *lastnode, *node = kzalloc(sizeof(struct td_node),
381 GFP_ATOMIC);
382
383 if (node == NULL)
384 return -ENOMEM;
385
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300386 node->ptr = dma_pool_alloc(hwep->td_pool, GFP_ATOMIC,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300387 &node->dma);
388 if (node->ptr == NULL) {
389 kfree(node);
390 return -ENOMEM;
391 }
392
Alexander Shishkin8e229782013-06-24 14:46:36 +0300393 memset(node->ptr, 0, sizeof(struct ci_hw_td));
Michael Grzeschik2e270412013-06-13 17:59:54 +0300394 node->ptr->token = cpu_to_le32(length << __ffs(TD_TOTAL_BYTES));
395 node->ptr->token &= cpu_to_le32(TD_TOTAL_BYTES);
396 node->ptr->token |= cpu_to_le32(TD_STATUS_ACTIVE);
397
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300398 temp = (u32) (hwreq->req.dma + hwreq->req.actual);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300399 if (length) {
400 node->ptr->page[0] = cpu_to_le32(temp);
401 for (i = 1; i < TD_PAGE_COUNT; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300402 u32 page = temp + i * CI_HDRC_PAGE_SIZE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300403 page &= ~TD_RESERVED_MASK;
404 node->ptr->page[i] = cpu_to_le32(page);
405 }
406 }
407
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300408 hwreq->req.actual += length;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300409
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300410 if (!list_empty(&hwreq->tds)) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300411 /* get the last entry */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300412 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300413 struct td_node, td);
414 lastnode->ptr->next = cpu_to_le32(node->dma);
415 }
416
417 INIT_LIST_HEAD(&node->td);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300418 list_add_tail(&node->td, &hwreq->tds);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300419
420 return 0;
421}
422
David Lopoaa69a802008-11-17 14:14:51 -0800423/**
424 * _usb_addr: calculates endpoint address from direction & number
425 * @ep: endpoint
426 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300427static inline u8 _usb_addr(struct ci_hw_ep *ep)
David Lopoaa69a802008-11-17 14:14:51 -0800428{
429 return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num;
430}
431
432/**
433 * _hardware_queue: configures a request at hardware level
434 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300435 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800436 *
437 * This function returns an error code
438 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300439static int _hardware_enqueue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800440{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300441 struct ci_hdrc *ci = hwep->ci;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530442 int ret = 0;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300443 unsigned rest = hwreq->req.length;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300444 int pages = TD_PAGE_COUNT;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300445 struct td_node *firstnode, *lastnode;
David Lopoaa69a802008-11-17 14:14:51 -0800446
David Lopoaa69a802008-11-17 14:14:51 -0800447 /* don't queue twice */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300448 if (hwreq->req.status == -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800449 return -EALREADY;
450
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300451 hwreq->req.status = -EALREADY;
David Lopoaa69a802008-11-17 14:14:51 -0800452
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300453 ret = usb_gadget_map_request(&ci->gadget, &hwreq->req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300454 if (ret)
455 return ret;
456
Michael Grzeschik2e270412013-06-13 17:59:54 +0300457 /*
458 * The first buffer could be not page aligned.
459 * In that case we have to span into one extra td.
460 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300461 if (hwreq->req.dma % PAGE_SIZE)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300462 pages--;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300463
Michael Grzeschik2e270412013-06-13 17:59:54 +0300464 if (rest == 0)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300465 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300466
Michael Grzeschik2e270412013-06-13 17:59:54 +0300467 while (rest > 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300468 unsigned count = min(hwreq->req.length - hwreq->req.actual,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300469 (unsigned)(pages * CI_HDRC_PAGE_SIZE));
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300470 add_td_to_list(hwep, hwreq, count);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300471 rest -= count;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200472 }
David Lopoaa69a802008-11-17 14:14:51 -0800473
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300474 if (hwreq->req.zero && hwreq->req.length
475 && (hwreq->req.length % hwep->ep.maxpacket == 0))
476 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300477
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300478 firstnode = list_first_entry(&hwreq->tds, struct td_node, td);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300479
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300480 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300481 struct td_node, td);
482
483 lastnode->ptr->next = cpu_to_le32(TD_TERMINATE);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300484 if (!hwreq->req.no_interrupt)
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300485 lastnode->ptr->token |= cpu_to_le32(TD_IOC);
Michael Grzeschika9c17432013-04-04 13:13:46 +0300486 wmb();
487
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300488 hwreq->req.actual = 0;
489 if (!list_empty(&hwep->qh.queue)) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300490 struct ci_hw_req *hwreqprev;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300491 int n = hw_ep_bit(hwep->num, hwep->dir);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530492 int tmp_stat;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300493 struct td_node *prevlastnode;
494 u32 next = firstnode->dma & TD_ADDR_MASK;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530495
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300496 hwreqprev = list_entry(hwep->qh.queue.prev,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300497 struct ci_hw_req, queue);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300498 prevlastnode = list_entry(hwreqprev->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300499 struct td_node, td);
500
501 prevlastnode->ptr->next = cpu_to_le32(next);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530502 wmb();
Richard Zhao26c696c2012-07-07 22:56:40 +0800503 if (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530504 goto done;
505 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800506 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
507 tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
508 } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
509 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530510 if (tmp_stat)
511 goto done;
512 }
513
514 /* QH configuration */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300515 hwep->qh.ptr->td.next = cpu_to_le32(firstnode->dma);
516 hwep->qh.ptr->td.token &=
Michael Grzeschik080ff5f2013-03-30 12:54:04 +0200517 cpu_to_le32(~(TD_STATUS_HALTED|TD_STATUS_ACTIVE));
David Lopoaa69a802008-11-17 14:14:51 -0800518
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300519 if (hwep->type == USB_ENDPOINT_XFER_ISOC) {
520 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300521
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300522 if (hwreq->req.length % hwep->ep.maxpacket)
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300523 mul++;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300524 hwep->qh.ptr->cap |= mul << __ffs(QH_MULT);
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300525 }
526
David Lopoaa69a802008-11-17 14:14:51 -0800527 wmb(); /* synchronize before ep prime */
528
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300529 ret = hw_ep_prime(ci, hwep->num, hwep->dir,
530 hwep->type == USB_ENDPOINT_XFER_CONTROL);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530531done:
532 return ret;
David Lopoaa69a802008-11-17 14:14:51 -0800533}
534
Michael Grzeschik2e270412013-06-13 17:59:54 +0300535/*
536 * free_pending_td: remove a pending request for the endpoint
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300537 * @hwep: endpoint
Michael Grzeschik2e270412013-06-13 17:59:54 +0300538 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300539static void free_pending_td(struct ci_hw_ep *hwep)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300540{
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300541 struct td_node *pending = hwep->pending_td;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300542
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300543 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma);
544 hwep->pending_td = NULL;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300545 kfree(pending);
546}
547
David Lopoaa69a802008-11-17 14:14:51 -0800548/**
549 * _hardware_dequeue: handles a request at hardware level
550 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300551 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800552 *
553 * This function returns an error code
554 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300555static int _hardware_dequeue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800556{
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300557 u32 tmptoken;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300558 struct td_node *node, *tmpnode;
559 unsigned remaining_length;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300560 unsigned actual = hwreq->req.length;
Michael Grzeschik9e506432013-03-30 12:54:07 +0200561
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300562 if (hwreq->req.status != -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800563 return -EINVAL;
564
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300565 hwreq->req.status = 0;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530566
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300567 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300568 tmptoken = le32_to_cpu(node->ptr->token);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300569 if ((TD_STATUS_ACTIVE & tmptoken) != 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300570 hwreq->req.status = -EALREADY;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530571 return -EBUSY;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300572 }
David Lopoaa69a802008-11-17 14:14:51 -0800573
Michael Grzeschik2e270412013-06-13 17:59:54 +0300574 remaining_length = (tmptoken & TD_TOTAL_BYTES);
575 remaining_length >>= __ffs(TD_TOTAL_BYTES);
576 actual -= remaining_length;
577
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300578 hwreq->req.status = tmptoken & TD_STATUS;
579 if ((TD_STATUS_HALTED & hwreq->req.status)) {
580 hwreq->req.status = -EPIPE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300581 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300582 } else if ((TD_STATUS_DT_ERR & hwreq->req.status)) {
583 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300584 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300585 } else if ((TD_STATUS_TR_ERR & hwreq->req.status)) {
586 hwreq->req.status = -EILSEQ;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300587 break;
588 }
589
590 if (remaining_length) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300591 if (hwep->dir) {
592 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300593 break;
594 }
595 }
596 /*
597 * As the hardware could still address the freed td
598 * which will run the udc unusable, the cleanup of the
599 * td has to be delayed by one.
600 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300601 if (hwep->pending_td)
602 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300603
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300604 hwep->pending_td = node;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300605 list_del_init(&node->td);
606 }
David Lopoaa69a802008-11-17 14:14:51 -0800607
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300608 usb_gadget_unmap_request(&hwep->ci->gadget, &hwreq->req, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800609
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300610 hwreq->req.actual += actual;
David Lopoaa69a802008-11-17 14:14:51 -0800611
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300612 if (hwreq->req.status)
613 return hwreq->req.status;
David Lopoaa69a802008-11-17 14:14:51 -0800614
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300615 return hwreq->req.actual;
David Lopoaa69a802008-11-17 14:14:51 -0800616}
617
618/**
619 * _ep_nuke: dequeues all endpoint requests
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300620 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800621 *
622 * This function returns an error code
623 * Caller must hold lock
624 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300625static int _ep_nuke(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300626__releases(hwep->lock)
627__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800628{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300629 struct td_node *node, *tmpnode;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300630 if (hwep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800631 return -EINVAL;
632
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300633 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800634
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300635 while (!list_empty(&hwep->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -0800636
637 /* pop oldest request */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300638 struct ci_hw_req *hwreq = list_entry(hwep->qh.queue.next,
639 struct ci_hw_req, queue);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300640
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300641 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
642 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300643 list_del_init(&node->td);
644 node->ptr = NULL;
645 kfree(node);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300646 }
647
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300648 list_del_init(&hwreq->queue);
649 hwreq->req.status = -ESHUTDOWN;
David Lopoaa69a802008-11-17 14:14:51 -0800650
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300651 if (hwreq->req.complete != NULL) {
652 spin_unlock(hwep->lock);
653 hwreq->req.complete(&hwep->ep, &hwreq->req);
654 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800655 }
656 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300657
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300658 if (hwep->pending_td)
659 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300660
David Lopoaa69a802008-11-17 14:14:51 -0800661 return 0;
662}
663
664/**
665 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
666 * @gadget: gadget
667 *
668 * This function returns an error code
David Lopoaa69a802008-11-17 14:14:51 -0800669 */
670static int _gadget_stop_activity(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -0800671{
672 struct usb_ep *ep;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300673 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530674 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -0800675
Richard Zhao26c696c2012-07-07 22:56:40 +0800676 spin_lock_irqsave(&ci->lock, flags);
677 ci->gadget.speed = USB_SPEED_UNKNOWN;
678 ci->remote_wakeup = 0;
679 ci->suspended = 0;
680 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530681
David Lopoaa69a802008-11-17 14:14:51 -0800682 /* flush all endpoints */
683 gadget_for_each_ep(ep, gadget) {
684 usb_ep_fifo_flush(ep);
685 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800686 usb_ep_fifo_flush(&ci->ep0out->ep);
687 usb_ep_fifo_flush(&ci->ep0in->ep);
David Lopoaa69a802008-11-17 14:14:51 -0800688
Richard Zhao26c696c2012-07-07 22:56:40 +0800689 if (ci->driver)
690 ci->driver->disconnect(gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800691
692 /* make sure to disable all endpoints */
693 gadget_for_each_ep(ep, gadget) {
694 usb_ep_disable(ep);
695 }
David Lopoaa69a802008-11-17 14:14:51 -0800696
Richard Zhao26c696c2012-07-07 22:56:40 +0800697 if (ci->status != NULL) {
698 usb_ep_free_request(&ci->ep0in->ep, ci->status);
699 ci->status = NULL;
David Lopoaa69a802008-11-17 14:14:51 -0800700 }
701
David Lopoaa69a802008-11-17 14:14:51 -0800702 return 0;
703}
704
705/******************************************************************************
706 * ISR block
707 *****************************************************************************/
708/**
709 * isr_reset_handler: USB reset interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800710 * @ci: UDC device
David Lopoaa69a802008-11-17 14:14:51 -0800711 *
712 * This function resets USB engine after a bus reset occurred
713 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300714static void isr_reset_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +0800715__releases(ci->lock)
716__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800717{
David Lopoaa69a802008-11-17 14:14:51 -0800718 int retval;
719
Richard Zhao26c696c2012-07-07 22:56:40 +0800720 spin_unlock(&ci->lock);
721 retval = _gadget_stop_activity(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800722 if (retval)
723 goto done;
724
Richard Zhao26c696c2012-07-07 22:56:40 +0800725 retval = hw_usb_reset(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800726 if (retval)
727 goto done;
728
Richard Zhao26c696c2012-07-07 22:56:40 +0800729 ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC);
730 if (ci->status == NULL)
Anji jonnalaac1aa6a2011-05-02 11:56:32 +0530731 retval = -ENOMEM;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530732
Michael Grzeschikb9322252012-05-11 17:25:50 +0300733done:
Richard Zhao26c696c2012-07-07 22:56:40 +0800734 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800735
David Lopoaa69a802008-11-17 14:14:51 -0800736 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +0800737 dev_err(ci->dev, "error: %i\n", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800738}
739
740/**
741 * isr_get_status_complete: get_status request complete function
742 * @ep: endpoint
743 * @req: request handled
744 *
745 * Caller must release lock
746 */
747static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
748{
Alexander Shishkin0f089092012-05-08 23:29:02 +0300749 if (ep == NULL || req == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800750 return;
David Lopoaa69a802008-11-17 14:14:51 -0800751
752 kfree(req->buf);
753 usb_ep_free_request(ep, req);
754}
755
756/**
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200757 * _ep_queue: queues (submits) an I/O request to an endpoint
758 *
759 * Caller must hold lock
760 */
761static int _ep_queue(struct usb_ep *ep, struct usb_request *req,
762 gfp_t __maybe_unused gfp_flags)
763{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300764 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
765 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
766 struct ci_hdrc *ci = hwep->ci;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200767 int retval = 0;
768
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300769 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200770 return -EINVAL;
771
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300772 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200773 if (req->length)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300774 hwep = (ci->ep0_dir == RX) ?
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200775 ci->ep0out : ci->ep0in;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300776 if (!list_empty(&hwep->qh.queue)) {
777 _ep_nuke(hwep);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200778 retval = -EOVERFLOW;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300779 dev_warn(hwep->ci->dev, "endpoint ctrl %X nuked\n",
780 _usb_addr(hwep));
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200781 }
782 }
783
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300784 if (usb_endpoint_xfer_isoc(hwep->ep.desc) &&
785 hwreq->req.length > (1 + hwep->ep.mult) * hwep->ep.maxpacket) {
786 dev_err(hwep->ci->dev, "request length too big for isochronous\n");
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300787 return -EMSGSIZE;
788 }
789
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200790 /* first nuke then test link, e.g. previous status has not sent */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300791 if (!list_empty(&hwreq->queue)) {
792 dev_err(hwep->ci->dev, "request already in queue\n");
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200793 return -EBUSY;
794 }
795
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200796 /* push request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300797 hwreq->req.status = -EINPROGRESS;
798 hwreq->req.actual = 0;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200799
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300800 retval = _hardware_enqueue(hwep, hwreq);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200801
802 if (retval == -EALREADY)
803 retval = 0;
804 if (!retval)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300805 list_add_tail(&hwreq->queue, &hwep->qh.queue);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200806
807 return retval;
808}
809
810/**
David Lopoaa69a802008-11-17 14:14:51 -0800811 * isr_get_status_response: get_status request response
Richard Zhao26c696c2012-07-07 22:56:40 +0800812 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800813 * @setup: setup request packet
814 *
815 * This function returns an error code
816 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300817static int isr_get_status_response(struct ci_hdrc *ci,
David Lopoaa69a802008-11-17 14:14:51 -0800818 struct usb_ctrlrequest *setup)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300819__releases(hwep->lock)
820__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800821{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300822 struct ci_hw_ep *hwep = ci->ep0in;
David Lopoaa69a802008-11-17 14:14:51 -0800823 struct usb_request *req = NULL;
824 gfp_t gfp_flags = GFP_ATOMIC;
825 int dir, num, retval;
826
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300827 if (hwep == NULL || setup == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800828 return -EINVAL;
829
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300830 spin_unlock(hwep->lock);
831 req = usb_ep_alloc_request(&hwep->ep, gfp_flags);
832 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800833 if (req == NULL)
834 return -ENOMEM;
835
836 req->complete = isr_get_status_complete;
837 req->length = 2;
838 req->buf = kzalloc(req->length, gfp_flags);
839 if (req->buf == NULL) {
840 retval = -ENOMEM;
841 goto err_free_req;
842 }
843
844 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530845 /* Assume that device is bus powered for now. */
Richard Zhao26c696c2012-07-07 22:56:40 +0800846 *(u16 *)req->buf = ci->remote_wakeup << 1;
David Lopoaa69a802008-11-17 14:14:51 -0800847 retval = 0;
848 } else if ((setup->bRequestType & USB_RECIP_MASK) \
849 == USB_RECIP_ENDPOINT) {
850 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
851 TX : RX;
852 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Richard Zhao26c696c2012-07-07 22:56:40 +0800853 *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir);
David Lopoaa69a802008-11-17 14:14:51 -0800854 }
855 /* else do nothing; reserved for future use */
856
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300857 retval = _ep_queue(&hwep->ep, req, gfp_flags);
David Lopoaa69a802008-11-17 14:14:51 -0800858 if (retval)
859 goto err_free_buf;
860
861 return 0;
862
863 err_free_buf:
864 kfree(req->buf);
865 err_free_req:
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300866 spin_unlock(hwep->lock);
867 usb_ep_free_request(&hwep->ep, req);
868 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800869 return retval;
870}
871
872/**
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530873 * isr_setup_status_complete: setup_status request complete function
874 * @ep: endpoint
875 * @req: request handled
876 *
877 * Caller must release lock. Put the port in test mode if test mode
878 * feature is selected.
879 */
880static void
881isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
882{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300883 struct ci_hdrc *ci = req->context;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530884 unsigned long flags;
885
Richard Zhao26c696c2012-07-07 22:56:40 +0800886 if (ci->setaddr) {
887 hw_usb_set_address(ci, ci->address);
888 ci->setaddr = false;
Alexander Shishkinef15e542012-05-11 17:25:43 +0300889 }
890
Richard Zhao26c696c2012-07-07 22:56:40 +0800891 spin_lock_irqsave(&ci->lock, flags);
892 if (ci->test_mode)
893 hw_port_test_set(ci, ci->test_mode);
894 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530895}
896
897/**
David Lopoaa69a802008-11-17 14:14:51 -0800898 * isr_setup_status_phase: queues the status phase of a setup transation
Richard Zhao26c696c2012-07-07 22:56:40 +0800899 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800900 *
901 * This function returns an error code
902 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300903static int isr_setup_status_phase(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800904{
905 int retval;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300906 struct ci_hw_ep *hwep;
David Lopoaa69a802008-11-17 14:14:51 -0800907
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300908 hwep = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in;
Richard Zhao26c696c2012-07-07 22:56:40 +0800909 ci->status->context = ci;
910 ci->status->complete = isr_setup_status_complete;
David Lopoaa69a802008-11-17 14:14:51 -0800911
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300912 retval = _ep_queue(&hwep->ep, ci->status, GFP_ATOMIC);
David Lopoaa69a802008-11-17 14:14:51 -0800913
914 return retval;
915}
916
917/**
918 * isr_tr_complete_low: transaction complete low level handler
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300919 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800920 *
921 * This function returns an error code
922 * Caller must hold lock
923 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300924static int isr_tr_complete_low(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300925__releases(hwep->lock)
926__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800927{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300928 struct ci_hw_req *hwreq, *hwreqtemp;
929 struct ci_hw_ep *hweptemp = hwep;
Michael Grzeschikdb899602012-09-12 14:58:04 +0300930 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800931
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300932 list_for_each_entry_safe(hwreq, hwreqtemp, &hwep->qh.queue,
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530933 queue) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300934 retval = _hardware_dequeue(hwep, hwreq);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530935 if (retval < 0)
936 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300937 list_del_init(&hwreq->queue);
938 if (hwreq->req.complete != NULL) {
939 spin_unlock(hwep->lock);
940 if ((hwep->type == USB_ENDPOINT_XFER_CONTROL) &&
941 hwreq->req.length)
942 hweptemp = hwep->ci->ep0in;
943 hwreq->req.complete(&hweptemp->ep, &hwreq->req);
944 spin_lock(hwep->lock);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530945 }
946 }
David Lopoaa69a802008-11-17 14:14:51 -0800947
Pavankumar Kondetief907482011-05-02 11:56:27 +0530948 if (retval == -EBUSY)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530949 retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800950
David Lopoaa69a802008-11-17 14:14:51 -0800951 return retval;
952}
953
954/**
955 * isr_tr_complete_handler: transaction complete interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800956 * @ci: UDC descriptor
David Lopoaa69a802008-11-17 14:14:51 -0800957 *
958 * This function handles traffic events
959 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300960static void isr_tr_complete_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +0800961__releases(ci->lock)
962__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800963{
964 unsigned i;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530965 u8 tmode = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800966
Richard Zhao26c696c2012-07-07 22:56:40 +0800967 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300968 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530969 int type, num, dir, err = -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -0800970 struct usb_ctrlrequest req;
971
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300972 if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800973 continue; /* not configured */
974
Richard Zhao26c696c2012-07-07 22:56:40 +0800975 if (hw_test_and_clear_complete(ci, i)) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300976 err = isr_tr_complete_low(hwep);
977 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
David Lopoaa69a802008-11-17 14:14:51 -0800978 if (err > 0) /* needs status phase */
Richard Zhao26c696c2012-07-07 22:56:40 +0800979 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800980 if (err < 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +0800981 spin_unlock(&ci->lock);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300982 if (usb_ep_set_halt(&hwep->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +0800983 dev_err(ci->dev,
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -0700984 "error: ep_set_halt\n");
Richard Zhao26c696c2012-07-07 22:56:40 +0800985 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800986 }
987 }
988 }
989
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300990 if (hwep->type != USB_ENDPOINT_XFER_CONTROL ||
Richard Zhao26c696c2012-07-07 22:56:40 +0800991 !hw_test_and_clear_setup_status(ci, i))
David Lopoaa69a802008-11-17 14:14:51 -0800992 continue;
993
994 if (i != 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +0800995 dev_warn(ci->dev, "ctrl traffic at endpoint %d\n", i);
David Lopoaa69a802008-11-17 14:14:51 -0800996 continue;
997 }
998
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530999 /*
1000 * Flush data and handshake transactions of previous
1001 * setup packet.
1002 */
Richard Zhao26c696c2012-07-07 22:56:40 +08001003 _ep_nuke(ci->ep0out);
1004 _ep_nuke(ci->ep0in);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301005
David Lopoaa69a802008-11-17 14:14:51 -08001006 /* read_setup_packet */
1007 do {
Richard Zhao26c696c2012-07-07 22:56:40 +08001008 hw_test_and_set_setup_guard(ci);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001009 memcpy(&req, &hwep->qh.ptr->setup, sizeof(req));
Richard Zhao26c696c2012-07-07 22:56:40 +08001010 } while (!hw_test_and_clear_setup_guard(ci));
David Lopoaa69a802008-11-17 14:14:51 -08001011
1012 type = req.bRequestType;
1013
Richard Zhao26c696c2012-07-07 22:56:40 +08001014 ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
David Lopoaa69a802008-11-17 14:14:51 -08001015
David Lopoaa69a802008-11-17 14:14:51 -08001016 switch (req.bRequest) {
1017 case USB_REQ_CLEAR_FEATURE:
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301018 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1019 le16_to_cpu(req.wValue) ==
1020 USB_ENDPOINT_HALT) {
1021 if (req.wLength != 0)
David Lopoaa69a802008-11-17 14:14:51 -08001022 break;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301023 num = le16_to_cpu(req.wIndex);
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +05301024 dir = num & USB_ENDPOINT_DIR_MASK;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301025 num &= USB_ENDPOINT_NUMBER_MASK;
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +05301026 if (dir) /* TX */
Richard Zhao26c696c2012-07-07 22:56:40 +08001027 num += ci->hw_ep_max/2;
Alexander Shishkin8e229782013-06-24 14:46:36 +03001028 if (!ci->ci_hw_ep[num].wedge) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001029 spin_unlock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301030 err = usb_ep_clear_halt(
Alexander Shishkin8e229782013-06-24 14:46:36 +03001031 &ci->ci_hw_ep[num].ep);
Richard Zhao26c696c2012-07-07 22:56:40 +08001032 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301033 if (err)
1034 break;
1035 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001036 err = isr_setup_status_phase(ci);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301037 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
1038 le16_to_cpu(req.wValue) ==
1039 USB_DEVICE_REMOTE_WAKEUP) {
1040 if (req.wLength != 0)
1041 break;
Richard Zhao26c696c2012-07-07 22:56:40 +08001042 ci->remote_wakeup = 0;
1043 err = isr_setup_status_phase(ci);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301044 } else {
1045 goto delegate;
David Lopoaa69a802008-11-17 14:14:51 -08001046 }
David Lopoaa69a802008-11-17 14:14:51 -08001047 break;
1048 case USB_REQ_GET_STATUS:
1049 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
1050 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
1051 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
1052 goto delegate;
1053 if (le16_to_cpu(req.wLength) != 2 ||
1054 le16_to_cpu(req.wValue) != 0)
1055 break;
Richard Zhao26c696c2012-07-07 22:56:40 +08001056 err = isr_get_status_response(ci, &req);
David Lopoaa69a802008-11-17 14:14:51 -08001057 break;
1058 case USB_REQ_SET_ADDRESS:
1059 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
1060 goto delegate;
1061 if (le16_to_cpu(req.wLength) != 0 ||
1062 le16_to_cpu(req.wIndex) != 0)
1063 break;
Richard Zhao26c696c2012-07-07 22:56:40 +08001064 ci->address = (u8)le16_to_cpu(req.wValue);
1065 ci->setaddr = true;
1066 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001067 break;
1068 case USB_REQ_SET_FEATURE:
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301069 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1070 le16_to_cpu(req.wValue) ==
1071 USB_ENDPOINT_HALT) {
1072 if (req.wLength != 0)
1073 break;
1074 num = le16_to_cpu(req.wIndex);
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +05301075 dir = num & USB_ENDPOINT_DIR_MASK;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301076 num &= USB_ENDPOINT_NUMBER_MASK;
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +05301077 if (dir) /* TX */
Richard Zhao26c696c2012-07-07 22:56:40 +08001078 num += ci->hw_ep_max/2;
David Lopoaa69a802008-11-17 14:14:51 -08001079
Richard Zhao26c696c2012-07-07 22:56:40 +08001080 spin_unlock(&ci->lock);
Alexander Shishkin8e229782013-06-24 14:46:36 +03001081 err = usb_ep_set_halt(&ci->ci_hw_ep[num].ep);
Richard Zhao26c696c2012-07-07 22:56:40 +08001082 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301083 if (!err)
Richard Zhao26c696c2012-07-07 22:56:40 +08001084 isr_setup_status_phase(ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +05301085 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301086 if (req.wLength != 0)
1087 break;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +05301088 switch (le16_to_cpu(req.wValue)) {
1089 case USB_DEVICE_REMOTE_WAKEUP:
Richard Zhao26c696c2012-07-07 22:56:40 +08001090 ci->remote_wakeup = 1;
1091 err = isr_setup_status_phase(ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +05301092 break;
1093 case USB_DEVICE_TEST_MODE:
1094 tmode = le16_to_cpu(req.wIndex) >> 8;
1095 switch (tmode) {
1096 case TEST_J:
1097 case TEST_K:
1098 case TEST_SE0_NAK:
1099 case TEST_PACKET:
1100 case TEST_FORCE_EN:
Richard Zhao26c696c2012-07-07 22:56:40 +08001101 ci->test_mode = tmode;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +05301102 err = isr_setup_status_phase(
Richard Zhao26c696c2012-07-07 22:56:40 +08001103 ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +05301104 break;
1105 default:
1106 break;
1107 }
1108 default:
1109 goto delegate;
1110 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301111 } else {
1112 goto delegate;
1113 }
David Lopoaa69a802008-11-17 14:14:51 -08001114 break;
1115 default:
1116delegate:
1117 if (req.wLength == 0) /* no data phase */
Richard Zhao26c696c2012-07-07 22:56:40 +08001118 ci->ep0_dir = TX;
David Lopoaa69a802008-11-17 14:14:51 -08001119
Richard Zhao26c696c2012-07-07 22:56:40 +08001120 spin_unlock(&ci->lock);
1121 err = ci->driver->setup(&ci->gadget, &req);
1122 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001123 break;
1124 }
1125
1126 if (err < 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001127 spin_unlock(&ci->lock);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001128 if (usb_ep_set_halt(&hwep->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +08001129 dev_err(ci->dev, "error: ep_set_halt\n");
1130 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001131 }
1132 }
1133}
1134
1135/******************************************************************************
1136 * ENDPT block
1137 *****************************************************************************/
1138/**
1139 * ep_enable: configure endpoint, making it usable
1140 *
1141 * Check usb_ep_enable() at "usb_gadget.h" for details
1142 */
1143static int ep_enable(struct usb_ep *ep,
1144 const struct usb_endpoint_descriptor *desc)
1145{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001146 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301147 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001148 unsigned long flags;
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001149 u32 cap = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001150
David Lopoaa69a802008-11-17 14:14:51 -08001151 if (ep == NULL || desc == NULL)
1152 return -EINVAL;
1153
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001154 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001155
1156 /* only internal SW should enable ctrl endpts */
1157
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001158 hwep->ep.desc = desc;
David Lopoaa69a802008-11-17 14:14:51 -08001159
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001160 if (!list_empty(&hwep->qh.queue))
1161 dev_warn(hwep->ci->dev, "enabling a non-empty endpoint!\n");
David Lopoaa69a802008-11-17 14:14:51 -08001162
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001163 hwep->dir = usb_endpoint_dir_in(desc) ? TX : RX;
1164 hwep->num = usb_endpoint_num(desc);
1165 hwep->type = usb_endpoint_type(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001166
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001167 hwep->ep.maxpacket = usb_endpoint_maxp(desc) & 0x07ff;
1168 hwep->ep.mult = QH_ISO_MULT(usb_endpoint_maxp(desc));
David Lopoaa69a802008-11-17 14:14:51 -08001169
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001170 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001171 cap |= QH_IOS;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001172 if (hwep->num)
Michael Grzeschik776ffc12013-03-30 12:54:06 +02001173 cap |= QH_ZLT;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001174 cap |= (hwep->ep.maxpacket << __ffs(QH_MAX_PKT)) & QH_MAX_PKT;
David Lopoaa69a802008-11-17 14:14:51 -08001175
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001176 hwep->qh.ptr->cap = cpu_to_le32(cap);
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001177
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001178 hwep->qh.ptr->td.next |= cpu_to_le32(TD_TERMINATE); /* needed? */
David Lopoaa69a802008-11-17 14:14:51 -08001179
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301180 /*
1181 * Enable endpoints in the HW other than ep0 as ep0
1182 * is always enabled
1183 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001184 if (hwep->num)
1185 retval |= hw_ep_enable(hwep->ci, hwep->num, hwep->dir,
1186 hwep->type);
David Lopoaa69a802008-11-17 14:14:51 -08001187
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001188 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001189 return retval;
1190}
1191
1192/**
1193 * ep_disable: endpoint is no longer usable
1194 *
1195 * Check usb_ep_disable() at "usb_gadget.h" for details
1196 */
1197static int ep_disable(struct usb_ep *ep)
1198{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001199 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001200 int direction, retval = 0;
1201 unsigned long flags;
1202
David Lopoaa69a802008-11-17 14:14:51 -08001203 if (ep == NULL)
1204 return -EINVAL;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001205 else if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001206 return -EBUSY;
1207
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001208 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001209
1210 /* only internal SW should disable ctrl endpts */
1211
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001212 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001213 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001214 retval |= _ep_nuke(hwep);
1215 retval |= hw_ep_disable(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001216
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001217 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1218 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001219
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001220 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001221
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001222 hwep->ep.desc = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001223
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001224 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001225 return retval;
1226}
1227
1228/**
1229 * ep_alloc_request: allocate a request object to use with this endpoint
1230 *
1231 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
1232 */
1233static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1234{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001235 struct ci_hw_req *hwreq = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001236
Alexander Shishkin0f089092012-05-08 23:29:02 +03001237 if (ep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001238 return NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001239
Alexander Shishkin8e229782013-06-24 14:46:36 +03001240 hwreq = kzalloc(sizeof(struct ci_hw_req), gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001241 if (hwreq != NULL) {
1242 INIT_LIST_HEAD(&hwreq->queue);
1243 INIT_LIST_HEAD(&hwreq->tds);
David Lopoaa69a802008-11-17 14:14:51 -08001244 }
1245
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001246 return (hwreq == NULL) ? NULL : &hwreq->req;
David Lopoaa69a802008-11-17 14:14:51 -08001247}
1248
1249/**
1250 * ep_free_request: frees a request object
1251 *
1252 * Check usb_ep_free_request() at "usb_gadget.h" for details
1253 */
1254static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
1255{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001256 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1257 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001258 struct td_node *node, *tmpnode;
David Lopoaa69a802008-11-17 14:14:51 -08001259 unsigned long flags;
1260
David Lopoaa69a802008-11-17 14:14:51 -08001261 if (ep == NULL || req == NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001262 return;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001263 } else if (!list_empty(&hwreq->queue)) {
1264 dev_err(hwep->ci->dev, "freeing queued request\n");
David Lopoaa69a802008-11-17 14:14:51 -08001265 return;
1266 }
1267
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001268 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001269
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001270 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
1271 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001272 list_del_init(&node->td);
1273 node->ptr = NULL;
1274 kfree(node);
1275 }
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +03001276
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001277 kfree(hwreq);
David Lopoaa69a802008-11-17 14:14:51 -08001278
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001279 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001280}
1281
1282/**
1283 * ep_queue: queues (submits) an I/O request to an endpoint
1284 *
1285 * Check usb_ep_queue()* at usb_gadget.h" for details
1286 */
1287static int ep_queue(struct usb_ep *ep, struct usb_request *req,
1288 gfp_t __maybe_unused gfp_flags)
1289{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001290 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001291 int retval = 0;
1292 unsigned long flags;
1293
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001294 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001295 return -EINVAL;
1296
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001297 spin_lock_irqsave(hwep->lock, flags);
Michael Grzeschikdd064e92013-03-30 12:54:09 +02001298 retval = _ep_queue(ep, req, gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001299 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001300 return retval;
1301}
1302
1303/**
1304 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
1305 *
1306 * Check usb_ep_dequeue() at "usb_gadget.h" for details
1307 */
1308static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
1309{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001310 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1311 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
David Lopoaa69a802008-11-17 14:14:51 -08001312 unsigned long flags;
1313
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001314 if (ep == NULL || req == NULL || hwreq->req.status != -EALREADY ||
1315 hwep->ep.desc == NULL || list_empty(&hwreq->queue) ||
1316 list_empty(&hwep->qh.queue))
David Lopoaa69a802008-11-17 14:14:51 -08001317 return -EINVAL;
1318
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001319 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001320
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001321 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001322
1323 /* pop request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001324 list_del_init(&hwreq->queue);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001325
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001326 usb_gadget_unmap_request(&hwep->ci->gadget, req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001327
David Lopoaa69a802008-11-17 14:14:51 -08001328 req->status = -ECONNRESET;
1329
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001330 if (hwreq->req.complete != NULL) {
1331 spin_unlock(hwep->lock);
1332 hwreq->req.complete(&hwep->ep, &hwreq->req);
1333 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001334 }
1335
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001336 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001337 return 0;
1338}
1339
1340/**
1341 * ep_set_halt: sets the endpoint halt feature
1342 *
1343 * Check usb_ep_set_halt() at "usb_gadget.h" for details
1344 */
1345static int ep_set_halt(struct usb_ep *ep, int value)
1346{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001347 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001348 int direction, retval = 0;
1349 unsigned long flags;
1350
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001351 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001352 return -EINVAL;
1353
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001354 if (usb_endpoint_xfer_isoc(hwep->ep.desc))
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +03001355 return -EOPNOTSUPP;
1356
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001357 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001358
1359#ifndef STALL_IN
1360 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001361 if (value && hwep->type == USB_ENDPOINT_XFER_BULK && hwep->dir == TX &&
1362 !list_empty(&hwep->qh.queue)) {
1363 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001364 return -EAGAIN;
1365 }
1366#endif
1367
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001368 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001369 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001370 retval |= hw_ep_set_halt(hwep->ci, hwep->num, hwep->dir, value);
David Lopoaa69a802008-11-17 14:14:51 -08001371
1372 if (!value)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001373 hwep->wedge = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001374
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001375 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1376 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001377
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001378 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001379
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001380 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001381 return retval;
1382}
1383
1384/**
1385 * ep_set_wedge: sets the halt feature and ignores clear requests
1386 *
1387 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
1388 */
1389static int ep_set_wedge(struct usb_ep *ep)
1390{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001391 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001392 unsigned long flags;
1393
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001394 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001395 return -EINVAL;
1396
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001397 spin_lock_irqsave(hwep->lock, flags);
1398 hwep->wedge = 1;
1399 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001400
1401 return usb_ep_set_halt(ep);
1402}
1403
1404/**
1405 * ep_fifo_flush: flushes contents of a fifo
1406 *
1407 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
1408 */
1409static void ep_fifo_flush(struct usb_ep *ep)
1410{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001411 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001412 unsigned long flags;
1413
David Lopoaa69a802008-11-17 14:14:51 -08001414 if (ep == NULL) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001415 dev_err(hwep->ci->dev, "%02X: -EINVAL\n", _usb_addr(hwep));
David Lopoaa69a802008-11-17 14:14:51 -08001416 return;
1417 }
1418
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001419 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001420
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001421 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001422
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001423 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001424}
1425
1426/**
1427 * Endpoint-specific part of the API to the USB controller hardware
1428 * Check "usb_gadget.h" for details
1429 */
1430static const struct usb_ep_ops usb_ep_ops = {
1431 .enable = ep_enable,
1432 .disable = ep_disable,
1433 .alloc_request = ep_alloc_request,
1434 .free_request = ep_free_request,
1435 .queue = ep_queue,
1436 .dequeue = ep_dequeue,
1437 .set_halt = ep_set_halt,
1438 .set_wedge = ep_set_wedge,
1439 .fifo_flush = ep_fifo_flush,
1440};
1441
1442/******************************************************************************
1443 * GADGET block
1444 *****************************************************************************/
Alexander Shishkin8e229782013-06-24 14:46:36 +03001445static int ci_udc_vbus_session(struct usb_gadget *_gadget, int is_active)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301446{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001447 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301448 unsigned long flags;
1449 int gadget_ready = 0;
1450
Alexander Shishkin8e229782013-06-24 14:46:36 +03001451 if (!(ci->platdata->flags & CI_HDRC_PULLUP_ON_VBUS))
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301452 return -EOPNOTSUPP;
1453
Richard Zhao26c696c2012-07-07 22:56:40 +08001454 spin_lock_irqsave(&ci->lock, flags);
1455 ci->vbus_active = is_active;
1456 if (ci->driver)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301457 gadget_ready = 1;
Richard Zhao26c696c2012-07-07 22:56:40 +08001458 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301459
1460 if (gadget_ready) {
1461 if (is_active) {
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301462 pm_runtime_get_sync(&_gadget->dev);
Richard Zhao26c696c2012-07-07 22:56:40 +08001463 hw_device_reset(ci, USBMODE_CM_DC);
1464 hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chena107f8c2013-08-14 12:44:11 +03001465 dev_dbg(ci->dev, "Connected to host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301466 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +08001467 hw_device_state(ci, 0);
1468 if (ci->platdata->notify_event)
1469 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001470 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001471 _gadget_stop_activity(&ci->gadget);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301472 pm_runtime_put_sync(&_gadget->dev);
Peter Chena107f8c2013-08-14 12:44:11 +03001473 dev_dbg(ci->dev, "Disconnected from host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301474 }
1475 }
1476
1477 return 0;
1478}
1479
Alexander Shishkin8e229782013-06-24 14:46:36 +03001480static int ci_udc_wakeup(struct usb_gadget *_gadget)
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301481{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001482 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301483 unsigned long flags;
1484 int ret = 0;
1485
Richard Zhao26c696c2012-07-07 22:56:40 +08001486 spin_lock_irqsave(&ci->lock, flags);
1487 if (!ci->remote_wakeup) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301488 ret = -EOPNOTSUPP;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301489 goto out;
1490 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001491 if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301492 ret = -EINVAL;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301493 goto out;
1494 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001495 hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301496out:
Richard Zhao26c696c2012-07-07 22:56:40 +08001497 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301498 return ret;
1499}
1500
Alexander Shishkin8e229782013-06-24 14:46:36 +03001501static int ci_udc_vbus_draw(struct usb_gadget *_gadget, unsigned ma)
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301502{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001503 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301504
Richard Zhao26c696c2012-07-07 22:56:40 +08001505 if (ci->transceiver)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001506 return usb_phy_set_power(ci->transceiver, ma);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301507 return -ENOTSUPP;
1508}
1509
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001510/* Change Data+ pullup status
1511 * this func is used by usb_gadget_connect/disconnet
1512 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001513static int ci_udc_pullup(struct usb_gadget *_gadget, int is_on)
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001514{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001515 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001516
1517 if (is_on)
1518 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
1519 else
1520 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
1521
1522 return 0;
1523}
1524
Alexander Shishkin8e229782013-06-24 14:46:36 +03001525static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001526 struct usb_gadget_driver *driver);
Alexander Shishkin8e229782013-06-24 14:46:36 +03001527static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001528 struct usb_gadget_driver *driver);
David Lopoaa69a802008-11-17 14:14:51 -08001529/**
1530 * Device operations part of the API to the USB controller hardware,
1531 * which don't involve endpoints (or i/o)
1532 * Check "usb_gadget.h" for details
1533 */
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301534static const struct usb_gadget_ops usb_gadget_ops = {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001535 .vbus_session = ci_udc_vbus_session,
1536 .wakeup = ci_udc_wakeup,
1537 .pullup = ci_udc_pullup,
1538 .vbus_draw = ci_udc_vbus_draw,
1539 .udc_start = ci_udc_start,
1540 .udc_stop = ci_udc_stop,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301541};
David Lopoaa69a802008-11-17 14:14:51 -08001542
Alexander Shishkin8e229782013-06-24 14:46:36 +03001543static int init_eps(struct ci_hdrc *ci)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001544{
1545 int retval = 0, i, j;
1546
Richard Zhao26c696c2012-07-07 22:56:40 +08001547 for (i = 0; i < ci->hw_ep_max/2; i++)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001548 for (j = RX; j <= TX; j++) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001549 int k = i + j * ci->hw_ep_max/2;
Alexander Shishkin8e229782013-06-24 14:46:36 +03001550 struct ci_hw_ep *hwep = &ci->ci_hw_ep[k];
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001551
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001552 scnprintf(hwep->name, sizeof(hwep->name), "ep%i%s", i,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001553 (j == TX) ? "in" : "out");
1554
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001555 hwep->ci = ci;
1556 hwep->lock = &ci->lock;
1557 hwep->td_pool = ci->td_pool;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001558
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001559 hwep->ep.name = hwep->name;
1560 hwep->ep.ops = &usb_ep_ops;
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001561 /*
1562 * for ep0: maxP defined in desc, for other
1563 * eps, maxP is set by epautoconfig() called
1564 * by gadget layer
1565 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001566 hwep->ep.maxpacket = (unsigned short)~0;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001567
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001568 INIT_LIST_HEAD(&hwep->qh.queue);
1569 hwep->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL,
1570 &hwep->qh.dma);
1571 if (hwep->qh.ptr == NULL)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001572 retval = -ENOMEM;
1573 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001574 memset(hwep->qh.ptr, 0, sizeof(*hwep->qh.ptr));
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001575
1576 /*
1577 * set up shorthands for ep0 out and in endpoints,
1578 * don't add to gadget's ep_list
1579 */
1580 if (i == 0) {
1581 if (j == RX)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001582 ci->ep0out = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001583 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001584 ci->ep0in = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001585
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001586 hwep->ep.maxpacket = CTRL_PAYLOAD_MAX;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001587 continue;
1588 }
1589
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001590 list_add_tail(&hwep->ep.ep_list, &ci->gadget.ep_list);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001591 }
1592
1593 return retval;
1594}
1595
Alexander Shishkin8e229782013-06-24 14:46:36 +03001596static void destroy_eps(struct ci_hdrc *ci)
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001597{
1598 int i;
1599
1600 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001601 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001602
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001603 dma_pool_free(ci->qh_pool, hwep->qh.ptr, hwep->qh.dma);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001604 }
1605}
1606
David Lopoaa69a802008-11-17 14:14:51 -08001607/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001608 * ci_udc_start: register a gadget driver
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001609 * @gadget: our gadget
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001610 * @driver: the driver being registered
David Lopoaa69a802008-11-17 14:14:51 -08001611 *
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001612 * Interrupts are enabled here.
David Lopoaa69a802008-11-17 14:14:51 -08001613 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001614static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001615 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001616{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001617 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301618 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001619 int retval = -ENOMEM;
1620
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001621 if (driver->disconnect == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001622 return -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -08001623
David Lopoaa69a802008-11-17 14:14:51 -08001624
Richard Zhao26c696c2012-07-07 22:56:40 +08001625 ci->ep0out->ep.desc = &ctrl_endpt_out_desc;
1626 retval = usb_ep_enable(&ci->ep0out->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301627 if (retval)
1628 return retval;
Felipe Balbi877c1f52011-06-29 16:41:57 +03001629
Richard Zhao26c696c2012-07-07 22:56:40 +08001630 ci->ep0in->ep.desc = &ctrl_endpt_in_desc;
1631 retval = usb_ep_enable(&ci->ep0in->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301632 if (retval)
1633 return retval;
Richard Zhao26c696c2012-07-07 22:56:40 +08001634 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001635
Richard Zhao26c696c2012-07-07 22:56:40 +08001636 ci->driver = driver;
1637 pm_runtime_get_sync(&ci->gadget.dev);
Alexander Shishkin8e229782013-06-24 14:46:36 +03001638 if (ci->platdata->flags & CI_HDRC_PULLUP_ON_VBUS) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001639 if (ci->vbus_active) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001640 if (ci->platdata->flags & CI_HDRC_REGS_SHARED)
Richard Zhao26c696c2012-07-07 22:56:40 +08001641 hw_device_reset(ci, USBMODE_CM_DC);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301642 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +08001643 pm_runtime_put_sync(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301644 goto done;
1645 }
1646 }
1647
Richard Zhao26c696c2012-07-07 22:56:40 +08001648 retval = hw_device_state(ci, ci->ep0out->qh.dma);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301649 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +08001650 pm_runtime_put_sync(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001651
1652 done:
Richard Zhao26c696c2012-07-07 22:56:40 +08001653 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001654 return retval;
1655}
David Lopoaa69a802008-11-17 14:14:51 -08001656
1657/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001658 * ci_udc_stop: unregister a gadget driver
David Lopoaa69a802008-11-17 14:14:51 -08001659 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001660static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001661 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001662{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001663 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001664 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001665
Richard Zhao26c696c2012-07-07 22:56:40 +08001666 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001667
Alexander Shishkin8e229782013-06-24 14:46:36 +03001668 if (!(ci->platdata->flags & CI_HDRC_PULLUP_ON_VBUS) ||
Richard Zhao26c696c2012-07-07 22:56:40 +08001669 ci->vbus_active) {
1670 hw_device_state(ci, 0);
1671 if (ci->platdata->notify_event)
1672 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001673 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001674 ci->driver = NULL;
1675 spin_unlock_irqrestore(&ci->lock, flags);
1676 _gadget_stop_activity(&ci->gadget);
1677 spin_lock_irqsave(&ci->lock, flags);
1678 pm_runtime_put(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301679 }
David Lopoaa69a802008-11-17 14:14:51 -08001680
Richard Zhao26c696c2012-07-07 22:56:40 +08001681 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001682
David Lopoaa69a802008-11-17 14:14:51 -08001683 return 0;
1684}
David Lopoaa69a802008-11-17 14:14:51 -08001685
1686/******************************************************************************
1687 * BUS block
1688 *****************************************************************************/
1689/**
Richard Zhao26c696c2012-07-07 22:56:40 +08001690 * udc_irq: ci interrupt handler
David Lopoaa69a802008-11-17 14:14:51 -08001691 *
1692 * This function returns IRQ_HANDLED if the IRQ has been handled
1693 * It locks access to registers
1694 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001695static irqreturn_t udc_irq(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001696{
David Lopoaa69a802008-11-17 14:14:51 -08001697 irqreturn_t retval;
1698 u32 intr;
1699
Richard Zhao26c696c2012-07-07 22:56:40 +08001700 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001701 return IRQ_HANDLED;
David Lopoaa69a802008-11-17 14:14:51 -08001702
Richard Zhao26c696c2012-07-07 22:56:40 +08001703 spin_lock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301704
Alexander Shishkin8e229782013-06-24 14:46:36 +03001705 if (ci->platdata->flags & CI_HDRC_REGS_SHARED) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001706 if (hw_read(ci, OP_USBMODE, USBMODE_CM) !=
Alexander Shishkin758fc982012-05-11 17:25:53 +03001707 USBMODE_CM_DC) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001708 spin_unlock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301709 return IRQ_NONE;
1710 }
1711 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001712 intr = hw_test_and_clear_intr_active(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001713
Alexander Shishkine443b332012-05-11 17:25:46 +03001714 if (intr) {
David Lopoaa69a802008-11-17 14:14:51 -08001715 /* order defines priority - do NOT change it */
Alexander Shishkine443b332012-05-11 17:25:46 +03001716 if (USBi_URI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001717 isr_reset_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001718
David Lopoaa69a802008-11-17 14:14:51 -08001719 if (USBi_PCI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001720 ci->gadget.speed = hw_port_is_high_speed(ci) ?
David Lopoaa69a802008-11-17 14:14:51 -08001721 USB_SPEED_HIGH : USB_SPEED_FULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001722 if (ci->suspended && ci->driver->resume) {
1723 spin_unlock(&ci->lock);
1724 ci->driver->resume(&ci->gadget);
1725 spin_lock(&ci->lock);
1726 ci->suspended = 0;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301727 }
David Lopoaa69a802008-11-17 14:14:51 -08001728 }
Alexander Shishkine443b332012-05-11 17:25:46 +03001729
1730 if (USBi_UI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001731 isr_tr_complete_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001732
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301733 if (USBi_SLI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001734 if (ci->gadget.speed != USB_SPEED_UNKNOWN &&
1735 ci->driver->suspend) {
1736 ci->suspended = 1;
1737 spin_unlock(&ci->lock);
1738 ci->driver->suspend(&ci->gadget);
1739 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301740 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301741 }
David Lopoaa69a802008-11-17 14:14:51 -08001742 retval = IRQ_HANDLED;
1743 } else {
David Lopoaa69a802008-11-17 14:14:51 -08001744 retval = IRQ_NONE;
1745 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001746 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001747
1748 return retval;
1749}
1750
1751/**
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001752 * udc_start: initialize gadget role
Richard Zhao26c696c2012-07-07 22:56:40 +08001753 * @ci: chipidea controller
David Lopoaa69a802008-11-17 14:14:51 -08001754 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001755static int udc_start(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001756{
Richard Zhao26c696c2012-07-07 22:56:40 +08001757 struct device *dev = ci->dev;
David Lopoaa69a802008-11-17 14:14:51 -08001758 int retval = 0;
1759
Richard Zhao26c696c2012-07-07 22:56:40 +08001760 spin_lock_init(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001761
Richard Zhao26c696c2012-07-07 22:56:40 +08001762 ci->gadget.ops = &usb_gadget_ops;
1763 ci->gadget.speed = USB_SPEED_UNKNOWN;
1764 ci->gadget.max_speed = USB_SPEED_HIGH;
1765 ci->gadget.is_otg = 0;
1766 ci->gadget.name = ci->platdata->name;
David Lopoaa69a802008-11-17 14:14:51 -08001767
Richard Zhao26c696c2012-07-07 22:56:40 +08001768 INIT_LIST_HEAD(&ci->gadget.ep_list);
David Lopoaa69a802008-11-17 14:14:51 -08001769
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001770 /* alloc resources */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001771 ci->qh_pool = dma_pool_create("ci_hw_qh", dev,
1772 sizeof(struct ci_hw_qh),
1773 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001774 if (ci->qh_pool == NULL)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001775 return -ENOMEM;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001776
Alexander Shishkin8e229782013-06-24 14:46:36 +03001777 ci->td_pool = dma_pool_create("ci_hw_td", dev,
1778 sizeof(struct ci_hw_td),
1779 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001780 if (ci->td_pool == NULL) {
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001781 retval = -ENOMEM;
1782 goto free_qh_pool;
1783 }
1784
Richard Zhao26c696c2012-07-07 22:56:40 +08001785 retval = init_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001786 if (retval)
1787 goto free_pools;
1788
Richard Zhao26c696c2012-07-07 22:56:40 +08001789 ci->gadget.ep0 = &ci->ep0in->ep;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301790
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001791 if (ci->global_phy) {
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001792 ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001793 if (IS_ERR(ci->transceiver))
1794 ci->transceiver = NULL;
1795 }
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301796
Alexander Shishkin8e229782013-06-24 14:46:36 +03001797 if (ci->platdata->flags & CI_HDRC_REQUIRE_TRANSCEIVER) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001798 if (ci->transceiver == NULL) {
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301799 retval = -ENODEV;
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001800 goto destroy_eps;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301801 }
1802 }
1803
Alexander Shishkin8e229782013-06-24 14:46:36 +03001804 if (!(ci->platdata->flags & CI_HDRC_REGS_SHARED)) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001805 retval = hw_device_reset(ci, USBMODE_CM_DC);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301806 if (retval)
1807 goto put_transceiver;
1808 }
1809
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001810 if (ci->transceiver) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001811 retval = otg_set_peripheral(ci->transceiver->otg,
1812 &ci->gadget);
Peter Chend66895f2013-08-14 12:44:05 +03001813 /*
1814 * If we implement all USB functions using chipidea drivers,
1815 * it doesn't need to call above API, meanwhile, if we only
1816 * use gadget function, calling above API is useless.
1817 */
1818 if (retval && retval != -ENOTSUPP)
Greg Kroah-Hartman64dc9e22013-04-05 15:18:00 -07001819 goto put_transceiver;
David Lopoaa69a802008-11-17 14:14:51 -08001820 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001821
Richard Zhao26c696c2012-07-07 22:56:40 +08001822 retval = usb_add_gadget_udc(dev, &ci->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001823 if (retval)
1824 goto remove_trans;
1825
Richard Zhao26c696c2012-07-07 22:56:40 +08001826 pm_runtime_no_callbacks(&ci->gadget.dev);
1827 pm_runtime_enable(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001828
Peter Chena107f8c2013-08-14 12:44:11 +03001829 /* Update ci->vbus_active */
1830 ci_handle_vbus_change(ci);
1831
David Lopoaa69a802008-11-17 14:14:51 -08001832 return retval;
1833
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001834remove_trans:
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001835 if (ci->transceiver) {
Marc Kleine-Buddec9d1f942012-09-12 14:58:02 +03001836 otg_set_peripheral(ci->transceiver->otg, NULL);
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001837 if (ci->global_phy)
1838 usb_put_phy(ci->transceiver);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001839 }
1840
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -07001841 dev_err(dev, "error = %i\n", retval);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301842put_transceiver:
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001843 if (ci->transceiver && ci->global_phy)
Richard Zhao26c696c2012-07-07 22:56:40 +08001844 usb_put_phy(ci->transceiver);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001845destroy_eps:
1846 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001847free_pools:
Richard Zhao26c696c2012-07-07 22:56:40 +08001848 dma_pool_destroy(ci->td_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001849free_qh_pool:
Richard Zhao26c696c2012-07-07 22:56:40 +08001850 dma_pool_destroy(ci->qh_pool);
David Lopoaa69a802008-11-17 14:14:51 -08001851 return retval;
1852}
1853
1854/**
Peter Chen3f124d22013-08-14 12:44:07 +03001855 * ci_hdrc_gadget_destroy: parent remove must call this to remove UDC
David Lopoaa69a802008-11-17 14:14:51 -08001856 *
1857 * No interrupts active, the IRQ has been released
1858 */
Peter Chen3f124d22013-08-14 12:44:07 +03001859void ci_hdrc_gadget_destroy(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001860{
Peter Chen3f124d22013-08-14 12:44:07 +03001861 if (!ci->roles[CI_ROLE_GADGET])
David Lopoaa69a802008-11-17 14:14:51 -08001862 return;
Alexander Shishkin0f089092012-05-08 23:29:02 +03001863
Richard Zhao26c696c2012-07-07 22:56:40 +08001864 usb_del_gadget_udc(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001865
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001866 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001867
Richard Zhao26c696c2012-07-07 22:56:40 +08001868 dma_pool_destroy(ci->td_pool);
1869 dma_pool_destroy(ci->qh_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001870
Alexander Shishkind343f4e2013-06-11 13:41:47 +03001871 if (ci->transceiver) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001872 otg_set_peripheral(ci->transceiver->otg, NULL);
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001873 if (ci->global_phy)
1874 usb_put_phy(ci->transceiver);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301875 }
Peter Chen3f124d22013-08-14 12:44:07 +03001876}
1877
1878static int udc_id_switch_for_device(struct ci_hdrc *ci)
1879{
1880 if (ci->is_otg) {
1881 ci_clear_otg_interrupt(ci, OTGSC_BSVIS);
1882 ci_enable_otg_interrupt(ci, OTGSC_BSVIE);
1883 }
1884
1885 return 0;
1886}
1887
1888static void udc_id_switch_for_host(struct ci_hdrc *ci)
1889{
1890 if (ci->is_otg) {
1891 /* host doesn't care B_SESSION_VALID event */
1892 ci_clear_otg_interrupt(ci, OTGSC_BSVIS);
1893 ci_disable_otg_interrupt(ci, OTGSC_BSVIE);
1894 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001895}
David Lopoaa69a802008-11-17 14:14:51 -08001896
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001897/**
1898 * ci_hdrc_gadget_init - initialize device related bits
1899 * ci: the controller
1900 *
Peter Chen3f124d22013-08-14 12:44:07 +03001901 * This function initializes the gadget, if the device is "device capable".
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001902 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001903int ci_hdrc_gadget_init(struct ci_hdrc *ci)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001904{
1905 struct ci_role_driver *rdrv;
1906
1907 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC))
1908 return -ENXIO;
1909
1910 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
1911 if (!rdrv)
1912 return -ENOMEM;
1913
Peter Chen3f124d22013-08-14 12:44:07 +03001914 rdrv->start = udc_id_switch_for_device;
1915 rdrv->stop = udc_id_switch_for_host;
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001916 rdrv->irq = udc_irq;
1917 rdrv->name = "gadget";
1918 ci->roles[CI_ROLE_GADGET] = rdrv;
1919
Peter Chen3f124d22013-08-14 12:44:07 +03001920 return udc_start(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001921}