blob: cba7fd63d6e340317414589a34e1e5d31abfb77f [file] [log] [blame]
David Lopoaa69a802008-11-17 14:14:51 -08001/*
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03002 * udc.c - ChipIdea UDC driver
David Lopoaa69a802008-11-17 14:14:51 -08003 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Matthias Kaehlcke36825a22009-04-15 22:28:36 +020013#include <linux/delay.h>
David Lopoaa69a802008-11-17 14:14:51 -080014#include <linux/device.h>
15#include <linux/dmapool.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053016#include <linux/err.h>
Alexander Shishkin5b083192013-03-30 02:46:18 +020017#include <linux/irqreturn.h>
David Lopoaa69a802008-11-17 14:14:51 -080018#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Pavankumar Kondetic0360192010-12-07 17:54:04 +053020#include <linux/pm_runtime.h>
David Lopoaa69a802008-11-17 14:14:51 -080021#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
Li Jun95f55552014-04-23 15:56:47 +080023#include <linux/usb/otg-fsm.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030024#include <linux/usb/chipidea.h>
David Lopoaa69a802008-11-17 14:14:51 -080025
Alexander Shishkine443b332012-05-11 17:25:46 +030026#include "ci.h"
27#include "udc.h"
28#include "bits.h"
29#include "debug.h"
Peter Chen3f124d22013-08-14 12:44:07 +030030#include "otg.h"
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 */
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800109 hw_write(ci, OP_ENDPTFLUSH, ~0, BIT(n));
Richard Zhao26c696c2012-07-07 22:56:40 +0800110 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_ep_prime: primes endpoint (execute without interruption)
183 * @num: endpoint number
184 * @dir: endpoint direction
185 * @is_ctrl: true if control endpoint
186 *
187 * This function returns an error code
188 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300189static int hw_ep_prime(struct ci_hdrc *ci, int num, int dir, int is_ctrl)
David Lopoaa69a802008-11-17 14:14:51 -0800190{
191 int n = hw_ep_bit(num, dir);
192
Richard Zhao26c696c2012-07-07 22:56:40 +0800193 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800194 return -EAGAIN;
195
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800196 hw_write(ci, OP_ENDPTPRIME, ~0, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800197
Richard Zhao26c696c2012-07-07 22:56:40 +0800198 while (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800199 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800200 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800201 return -EAGAIN;
202
203 /* status shoult be tested according with manual but it doesn't work */
204 return 0;
205}
206
207/**
208 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
209 * without interruption)
210 * @num: endpoint number
211 * @dir: endpoint direction
212 * @value: true => stall, false => unstall
213 *
214 * This function returns an error code
215 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300216static int hw_ep_set_halt(struct ci_hdrc *ci, int num, int dir, int value)
David Lopoaa69a802008-11-17 14:14:51 -0800217{
218 if (value != 0 && value != 1)
219 return -EINVAL;
220
221 do {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300222 enum ci_hw_regs reg = OP_ENDPTCTRL + num;
David Lopoaa69a802008-11-17 14:14:51 -0800223 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
224 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
225
226 /* data toggle - reserved for EP0 but it's in ESS */
Richard Zhao26c696c2012-07-07 22:56:40 +0800227 hw_write(ci, reg, mask_xs|mask_xr,
Alexander Shishkin262c1632012-05-08 23:28:59 +0300228 value ? mask_xs : mask_xr);
Richard Zhao26c696c2012-07-07 22:56:40 +0800229 } while (value != hw_ep_get_halt(ci, num, dir));
David Lopoaa69a802008-11-17 14:14:51 -0800230
231 return 0;
232}
233
234/**
David Lopoaa69a802008-11-17 14:14:51 -0800235 * hw_is_port_high_speed: test if port is high speed
236 *
237 * This function returns true if high speed port
238 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300239static int hw_port_is_high_speed(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800240{
Richard Zhao26c696c2012-07-07 22:56:40 +0800241 return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) :
242 hw_read(ci, OP_PORTSC, PORTSC_HSP);
David Lopoaa69a802008-11-17 14:14:51 -0800243}
244
245/**
David Lopoaa69a802008-11-17 14:14:51 -0800246 * hw_test_and_clear_complete: test & clear complete status (execute without
247 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200248 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800249 *
250 * This function returns complete status
251 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300252static int hw_test_and_clear_complete(struct ci_hdrc *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800253{
Richard Zhao26c696c2012-07-07 22:56:40 +0800254 n = ep_to_bit(ci, n);
255 return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800256}
257
258/**
259 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
260 * without interruption)
261 *
262 * This function returns active interrutps
263 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300264static u32 hw_test_and_clear_intr_active(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800265{
Richard Zhao26c696c2012-07-07 22:56:40 +0800266 u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800267
Richard Zhao26c696c2012-07-07 22:56:40 +0800268 hw_write(ci, OP_USBSTS, ~0, reg);
David Lopoaa69a802008-11-17 14:14:51 -0800269 return reg;
270}
271
272/**
273 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
274 * interruption)
275 *
276 * This function returns guard value
277 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300278static int hw_test_and_clear_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800279{
Richard Zhao26c696c2012-07-07 22:56:40 +0800280 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800281}
282
283/**
284 * hw_test_and_set_setup_guard: test & set setup guard (execute without
285 * interruption)
286 *
287 * This function returns guard value
288 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300289static int hw_test_and_set_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800290{
Richard Zhao26c696c2012-07-07 22:56:40 +0800291 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
David Lopoaa69a802008-11-17 14:14:51 -0800292}
293
294/**
295 * hw_usb_set_address: configures USB address (execute without interruption)
296 * @value: new USB address
297 *
Alexander Shishkinef15e542012-05-11 17:25:43 +0300298 * This function explicitly sets the address, without the "USBADRA" (advance)
299 * feature, which is not supported by older versions of the controller.
David Lopoaa69a802008-11-17 14:14:51 -0800300 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300301static void hw_usb_set_address(struct ci_hdrc *ci, u8 value)
David Lopoaa69a802008-11-17 14:14:51 -0800302{
Richard Zhao26c696c2012-07-07 22:56:40 +0800303 hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR,
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200304 value << __ffs(DEVICEADDR_USBADR));
David Lopoaa69a802008-11-17 14:14:51 -0800305}
306
307/**
308 * hw_usb_reset: restart device after a bus reset (execute without
309 * interruption)
310 *
311 * This function returns an error code
312 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300313static int hw_usb_reset(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800314{
Richard Zhao26c696c2012-07-07 22:56:40 +0800315 hw_usb_set_address(ci, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800316
317 /* ESS flushes only at end?!? */
Richard Zhao26c696c2012-07-07 22:56:40 +0800318 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800319
320 /* clear setup token semaphores */
Richard Zhao26c696c2012-07-07 22:56:40 +0800321 hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800322
323 /* clear complete status */
Richard Zhao26c696c2012-07-07 22:56:40 +0800324 hw_write(ci, OP_ENDPTCOMPLETE, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800325
326 /* wait until all bits cleared */
Richard Zhao26c696c2012-07-07 22:56:40 +0800327 while (hw_read(ci, OP_ENDPTPRIME, ~0))
David Lopoaa69a802008-11-17 14:14:51 -0800328 udelay(10); /* not RTOS friendly */
329
330 /* reset all endpoints ? */
331
332 /* reset internal status and wait for further instructions
333 no need to verify the port reset status (ESS does it) */
334
335 return 0;
336}
337
338/******************************************************************************
David Lopoaa69a802008-11-17 14:14:51 -0800339 * UTIL block
340 *****************************************************************************/
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300341
Alexander Shishkin8e229782013-06-24 14:46:36 +0300342static int add_td_to_list(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300343 unsigned length)
344{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300345 int i;
346 u32 temp;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300347 struct td_node *lastnode, *node = kzalloc(sizeof(struct td_node),
348 GFP_ATOMIC);
349
350 if (node == NULL)
351 return -ENOMEM;
352
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300353 node->ptr = dma_pool_alloc(hwep->td_pool, GFP_ATOMIC,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300354 &node->dma);
355 if (node->ptr == NULL) {
356 kfree(node);
357 return -ENOMEM;
358 }
359
Alexander Shishkin8e229782013-06-24 14:46:36 +0300360 memset(node->ptr, 0, sizeof(struct ci_hw_td));
Michael Grzeschik2e270412013-06-13 17:59:54 +0300361 node->ptr->token = cpu_to_le32(length << __ffs(TD_TOTAL_BYTES));
362 node->ptr->token &= cpu_to_le32(TD_TOTAL_BYTES);
363 node->ptr->token |= cpu_to_le32(TD_STATUS_ACTIVE);
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800364 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX) {
365 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
366
367 if (hwreq->req.length == 0
368 || hwreq->req.length % hwep->ep.maxpacket)
369 mul++;
370 node->ptr->token |= mul << __ffs(TD_MULTO);
371 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300372
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300373 temp = (u32) (hwreq->req.dma + hwreq->req.actual);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300374 if (length) {
375 node->ptr->page[0] = cpu_to_le32(temp);
376 for (i = 1; i < TD_PAGE_COUNT; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300377 u32 page = temp + i * CI_HDRC_PAGE_SIZE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300378 page &= ~TD_RESERVED_MASK;
379 node->ptr->page[i] = cpu_to_le32(page);
380 }
381 }
382
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300383 hwreq->req.actual += length;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300384
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300385 if (!list_empty(&hwreq->tds)) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300386 /* get the last entry */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300387 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300388 struct td_node, td);
389 lastnode->ptr->next = cpu_to_le32(node->dma);
390 }
391
392 INIT_LIST_HEAD(&node->td);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300393 list_add_tail(&node->td, &hwreq->tds);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300394
395 return 0;
396}
397
David Lopoaa69a802008-11-17 14:14:51 -0800398/**
399 * _usb_addr: calculates endpoint address from direction & number
400 * @ep: endpoint
401 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300402static inline u8 _usb_addr(struct ci_hw_ep *ep)
David Lopoaa69a802008-11-17 14:14:51 -0800403{
404 return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num;
405}
406
407/**
408 * _hardware_queue: configures a request at hardware level
409 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300410 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800411 *
412 * This function returns an error code
413 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300414static int _hardware_enqueue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800415{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300416 struct ci_hdrc *ci = hwep->ci;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530417 int ret = 0;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300418 unsigned rest = hwreq->req.length;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300419 int pages = TD_PAGE_COUNT;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300420 struct td_node *firstnode, *lastnode;
David Lopoaa69a802008-11-17 14:14:51 -0800421
David Lopoaa69a802008-11-17 14:14:51 -0800422 /* don't queue twice */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300423 if (hwreq->req.status == -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800424 return -EALREADY;
425
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300426 hwreq->req.status = -EALREADY;
David Lopoaa69a802008-11-17 14:14:51 -0800427
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300428 ret = usb_gadget_map_request(&ci->gadget, &hwreq->req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300429 if (ret)
430 return ret;
431
Michael Grzeschik2e270412013-06-13 17:59:54 +0300432 /*
433 * The first buffer could be not page aligned.
434 * In that case we have to span into one extra td.
435 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300436 if (hwreq->req.dma % PAGE_SIZE)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300437 pages--;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300438
Michael Grzeschik2e270412013-06-13 17:59:54 +0300439 if (rest == 0)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300440 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300441
Michael Grzeschik2e270412013-06-13 17:59:54 +0300442 while (rest > 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300443 unsigned count = min(hwreq->req.length - hwreq->req.actual,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300444 (unsigned)(pages * CI_HDRC_PAGE_SIZE));
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300445 add_td_to_list(hwep, hwreq, count);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300446 rest -= count;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200447 }
David Lopoaa69a802008-11-17 14:14:51 -0800448
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300449 if (hwreq->req.zero && hwreq->req.length
450 && (hwreq->req.length % hwep->ep.maxpacket == 0))
451 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300452
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300453 firstnode = list_first_entry(&hwreq->tds, struct td_node, td);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300454
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300455 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300456 struct td_node, td);
457
458 lastnode->ptr->next = cpu_to_le32(TD_TERMINATE);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300459 if (!hwreq->req.no_interrupt)
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300460 lastnode->ptr->token |= cpu_to_le32(TD_IOC);
Michael Grzeschika9c17432013-04-04 13:13:46 +0300461 wmb();
462
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300463 hwreq->req.actual = 0;
464 if (!list_empty(&hwep->qh.queue)) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300465 struct ci_hw_req *hwreqprev;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300466 int n = hw_ep_bit(hwep->num, hwep->dir);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530467 int tmp_stat;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300468 struct td_node *prevlastnode;
469 u32 next = firstnode->dma & TD_ADDR_MASK;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530470
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300471 hwreqprev = list_entry(hwep->qh.queue.prev,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300472 struct ci_hw_req, queue);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300473 prevlastnode = list_entry(hwreqprev->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300474 struct td_node, td);
475
476 prevlastnode->ptr->next = cpu_to_le32(next);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530477 wmb();
Richard Zhao26c696c2012-07-07 22:56:40 +0800478 if (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530479 goto done;
480 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800481 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
482 tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
483 } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
484 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530485 if (tmp_stat)
486 goto done;
487 }
488
489 /* QH configuration */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300490 hwep->qh.ptr->td.next = cpu_to_le32(firstnode->dma);
491 hwep->qh.ptr->td.token &=
Michael Grzeschik080ff5f2013-03-30 12:54:04 +0200492 cpu_to_le32(~(TD_STATUS_HALTED|TD_STATUS_ACTIVE));
David Lopoaa69a802008-11-17 14:14:51 -0800493
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800494 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == RX) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300495 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300496
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800497 if (hwreq->req.length == 0
498 || hwreq->req.length % hwep->ep.maxpacket)
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300499 mul++;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300500 hwep->qh.ptr->cap |= mul << __ffs(QH_MULT);
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300501 }
502
David Lopoaa69a802008-11-17 14:14:51 -0800503 wmb(); /* synchronize before ep prime */
504
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300505 ret = hw_ep_prime(ci, hwep->num, hwep->dir,
506 hwep->type == USB_ENDPOINT_XFER_CONTROL);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530507done:
508 return ret;
David Lopoaa69a802008-11-17 14:14:51 -0800509}
510
Michael Grzeschik2e270412013-06-13 17:59:54 +0300511/*
512 * free_pending_td: remove a pending request for the endpoint
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300513 * @hwep: endpoint
Michael Grzeschik2e270412013-06-13 17:59:54 +0300514 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300515static void free_pending_td(struct ci_hw_ep *hwep)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300516{
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300517 struct td_node *pending = hwep->pending_td;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300518
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300519 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma);
520 hwep->pending_td = NULL;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300521 kfree(pending);
522}
523
David Lopoaa69a802008-11-17 14:14:51 -0800524/**
525 * _hardware_dequeue: handles a request at hardware level
526 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300527 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800528 *
529 * This function returns an error code
530 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300531static int _hardware_dequeue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800532{
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300533 u32 tmptoken;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300534 struct td_node *node, *tmpnode;
535 unsigned remaining_length;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300536 unsigned actual = hwreq->req.length;
Michael Grzeschik9e506432013-03-30 12:54:07 +0200537
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300538 if (hwreq->req.status != -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800539 return -EINVAL;
540
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300541 hwreq->req.status = 0;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530542
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300543 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300544 tmptoken = le32_to_cpu(node->ptr->token);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300545 if ((TD_STATUS_ACTIVE & tmptoken) != 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300546 hwreq->req.status = -EALREADY;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530547 return -EBUSY;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300548 }
David Lopoaa69a802008-11-17 14:14:51 -0800549
Michael Grzeschik2e270412013-06-13 17:59:54 +0300550 remaining_length = (tmptoken & TD_TOTAL_BYTES);
551 remaining_length >>= __ffs(TD_TOTAL_BYTES);
552 actual -= remaining_length;
553
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300554 hwreq->req.status = tmptoken & TD_STATUS;
555 if ((TD_STATUS_HALTED & hwreq->req.status)) {
556 hwreq->req.status = -EPIPE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300557 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300558 } else if ((TD_STATUS_DT_ERR & hwreq->req.status)) {
559 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300560 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300561 } else if ((TD_STATUS_TR_ERR & hwreq->req.status)) {
562 hwreq->req.status = -EILSEQ;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300563 break;
564 }
565
566 if (remaining_length) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300567 if (hwep->dir) {
568 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300569 break;
570 }
571 }
572 /*
573 * As the hardware could still address the freed td
574 * which will run the udc unusable, the cleanup of the
575 * td has to be delayed by one.
576 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300577 if (hwep->pending_td)
578 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300579
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300580 hwep->pending_td = node;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300581 list_del_init(&node->td);
582 }
David Lopoaa69a802008-11-17 14:14:51 -0800583
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300584 usb_gadget_unmap_request(&hwep->ci->gadget, &hwreq->req, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800585
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300586 hwreq->req.actual += actual;
David Lopoaa69a802008-11-17 14:14:51 -0800587
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300588 if (hwreq->req.status)
589 return hwreq->req.status;
David Lopoaa69a802008-11-17 14:14:51 -0800590
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300591 return hwreq->req.actual;
David Lopoaa69a802008-11-17 14:14:51 -0800592}
593
594/**
595 * _ep_nuke: dequeues all endpoint requests
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300596 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800597 *
598 * This function returns an error code
599 * Caller must hold lock
600 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300601static int _ep_nuke(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300602__releases(hwep->lock)
603__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800604{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300605 struct td_node *node, *tmpnode;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300606 if (hwep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800607 return -EINVAL;
608
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300609 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800610
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300611 while (!list_empty(&hwep->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -0800612
613 /* pop oldest request */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300614 struct ci_hw_req *hwreq = list_entry(hwep->qh.queue.next,
615 struct ci_hw_req, queue);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300616
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300617 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
618 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300619 list_del_init(&node->td);
620 node->ptr = NULL;
621 kfree(node);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300622 }
623
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300624 list_del_init(&hwreq->queue);
625 hwreq->req.status = -ESHUTDOWN;
David Lopoaa69a802008-11-17 14:14:51 -0800626
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300627 if (hwreq->req.complete != NULL) {
628 spin_unlock(hwep->lock);
629 hwreq->req.complete(&hwep->ep, &hwreq->req);
630 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800631 }
632 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300633
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300634 if (hwep->pending_td)
635 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300636
David Lopoaa69a802008-11-17 14:14:51 -0800637 return 0;
638}
639
640/**
641 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
642 * @gadget: gadget
643 *
644 * This function returns an error code
David Lopoaa69a802008-11-17 14:14:51 -0800645 */
646static int _gadget_stop_activity(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -0800647{
648 struct usb_ep *ep;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300649 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530650 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -0800651
Richard Zhao26c696c2012-07-07 22:56:40 +0800652 spin_lock_irqsave(&ci->lock, flags);
653 ci->gadget.speed = USB_SPEED_UNKNOWN;
654 ci->remote_wakeup = 0;
655 ci->suspended = 0;
656 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530657
David Lopoaa69a802008-11-17 14:14:51 -0800658 /* flush all endpoints */
659 gadget_for_each_ep(ep, gadget) {
660 usb_ep_fifo_flush(ep);
661 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800662 usb_ep_fifo_flush(&ci->ep0out->ep);
663 usb_ep_fifo_flush(&ci->ep0in->ep);
David Lopoaa69a802008-11-17 14:14:51 -0800664
David Lopoaa69a802008-11-17 14:14:51 -0800665 /* make sure to disable all endpoints */
666 gadget_for_each_ep(ep, gadget) {
667 usb_ep_disable(ep);
668 }
David Lopoaa69a802008-11-17 14:14:51 -0800669
Richard Zhao26c696c2012-07-07 22:56:40 +0800670 if (ci->status != NULL) {
671 usb_ep_free_request(&ci->ep0in->ep, ci->status);
672 ci->status = NULL;
David Lopoaa69a802008-11-17 14:14:51 -0800673 }
674
David Lopoaa69a802008-11-17 14:14:51 -0800675 return 0;
676}
677
678/******************************************************************************
679 * ISR block
680 *****************************************************************************/
681/**
682 * isr_reset_handler: USB reset interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800683 * @ci: UDC device
David Lopoaa69a802008-11-17 14:14:51 -0800684 *
685 * This function resets USB engine after a bus reset occurred
686 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300687static void isr_reset_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +0800688__releases(ci->lock)
689__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800690{
David Lopoaa69a802008-11-17 14:14:51 -0800691 int retval;
692
Peter Chena3aee362013-10-09 14:39:52 +0800693 spin_unlock(&ci->lock);
Peter Chen92b336d2013-09-17 12:37:19 +0800694 if (ci->gadget.speed != USB_SPEED_UNKNOWN) {
695 if (ci->driver)
696 ci->driver->disconnect(&ci->gadget);
697 }
698
Richard Zhao26c696c2012-07-07 22:56:40 +0800699 retval = _gadget_stop_activity(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800700 if (retval)
701 goto done;
702
Richard Zhao26c696c2012-07-07 22:56:40 +0800703 retval = hw_usb_reset(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800704 if (retval)
705 goto done;
706
Richard Zhao26c696c2012-07-07 22:56:40 +0800707 ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC);
708 if (ci->status == NULL)
Anji jonnalaac1aa6a2011-05-02 11:56:32 +0530709 retval = -ENOMEM;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530710
Michael Grzeschikb9322252012-05-11 17:25:50 +0300711done:
Richard Zhao26c696c2012-07-07 22:56:40 +0800712 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800713
David Lopoaa69a802008-11-17 14:14:51 -0800714 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +0800715 dev_err(ci->dev, "error: %i\n", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800716}
717
718/**
719 * isr_get_status_complete: get_status request complete function
720 * @ep: endpoint
721 * @req: request handled
722 *
723 * Caller must release lock
724 */
725static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
726{
Alexander Shishkin0f089092012-05-08 23:29:02 +0300727 if (ep == NULL || req == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800728 return;
David Lopoaa69a802008-11-17 14:14:51 -0800729
730 kfree(req->buf);
731 usb_ep_free_request(ep, req);
732}
733
734/**
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200735 * _ep_queue: queues (submits) an I/O request to an endpoint
736 *
737 * Caller must hold lock
738 */
739static int _ep_queue(struct usb_ep *ep, struct usb_request *req,
740 gfp_t __maybe_unused gfp_flags)
741{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300742 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
743 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
744 struct ci_hdrc *ci = hwep->ci;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200745 int retval = 0;
746
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300747 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200748 return -EINVAL;
749
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300750 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200751 if (req->length)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300752 hwep = (ci->ep0_dir == RX) ?
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200753 ci->ep0out : ci->ep0in;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300754 if (!list_empty(&hwep->qh.queue)) {
755 _ep_nuke(hwep);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200756 retval = -EOVERFLOW;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300757 dev_warn(hwep->ci->dev, "endpoint ctrl %X nuked\n",
758 _usb_addr(hwep));
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200759 }
760 }
761
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300762 if (usb_endpoint_xfer_isoc(hwep->ep.desc) &&
763 hwreq->req.length > (1 + hwep->ep.mult) * hwep->ep.maxpacket) {
764 dev_err(hwep->ci->dev, "request length too big for isochronous\n");
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300765 return -EMSGSIZE;
766 }
767
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200768 /* first nuke then test link, e.g. previous status has not sent */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300769 if (!list_empty(&hwreq->queue)) {
770 dev_err(hwep->ci->dev, "request already in queue\n");
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200771 return -EBUSY;
772 }
773
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200774 /* push request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300775 hwreq->req.status = -EINPROGRESS;
776 hwreq->req.actual = 0;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200777
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300778 retval = _hardware_enqueue(hwep, hwreq);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200779
780 if (retval == -EALREADY)
781 retval = 0;
782 if (!retval)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300783 list_add_tail(&hwreq->queue, &hwep->qh.queue);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200784
785 return retval;
786}
787
788/**
David Lopoaa69a802008-11-17 14:14:51 -0800789 * isr_get_status_response: get_status request response
Richard Zhao26c696c2012-07-07 22:56:40 +0800790 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800791 * @setup: setup request packet
792 *
793 * This function returns an error code
794 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300795static int isr_get_status_response(struct ci_hdrc *ci,
David Lopoaa69a802008-11-17 14:14:51 -0800796 struct usb_ctrlrequest *setup)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300797__releases(hwep->lock)
798__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800799{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300800 struct ci_hw_ep *hwep = ci->ep0in;
David Lopoaa69a802008-11-17 14:14:51 -0800801 struct usb_request *req = NULL;
802 gfp_t gfp_flags = GFP_ATOMIC;
803 int dir, num, retval;
804
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300805 if (hwep == NULL || setup == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800806 return -EINVAL;
807
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300808 spin_unlock(hwep->lock);
809 req = usb_ep_alloc_request(&hwep->ep, gfp_flags);
810 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800811 if (req == NULL)
812 return -ENOMEM;
813
814 req->complete = isr_get_status_complete;
815 req->length = 2;
816 req->buf = kzalloc(req->length, gfp_flags);
817 if (req->buf == NULL) {
818 retval = -ENOMEM;
819 goto err_free_req;
820 }
821
822 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530823 /* Assume that device is bus powered for now. */
Richard Zhao26c696c2012-07-07 22:56:40 +0800824 *(u16 *)req->buf = ci->remote_wakeup << 1;
David Lopoaa69a802008-11-17 14:14:51 -0800825 retval = 0;
826 } else if ((setup->bRequestType & USB_RECIP_MASK) \
827 == USB_RECIP_ENDPOINT) {
828 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
829 TX : RX;
830 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Richard Zhao26c696c2012-07-07 22:56:40 +0800831 *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir);
David Lopoaa69a802008-11-17 14:14:51 -0800832 }
833 /* else do nothing; reserved for future use */
834
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300835 retval = _ep_queue(&hwep->ep, req, gfp_flags);
David Lopoaa69a802008-11-17 14:14:51 -0800836 if (retval)
837 goto err_free_buf;
838
839 return 0;
840
841 err_free_buf:
842 kfree(req->buf);
843 err_free_req:
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300844 spin_unlock(hwep->lock);
845 usb_ep_free_request(&hwep->ep, req);
846 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800847 return retval;
848}
849
850/**
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530851 * isr_setup_status_complete: setup_status request complete function
852 * @ep: endpoint
853 * @req: request handled
854 *
855 * Caller must release lock. Put the port in test mode if test mode
856 * feature is selected.
857 */
858static void
859isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
860{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300861 struct ci_hdrc *ci = req->context;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530862 unsigned long flags;
863
Richard Zhao26c696c2012-07-07 22:56:40 +0800864 if (ci->setaddr) {
865 hw_usb_set_address(ci, ci->address);
866 ci->setaddr = false;
Alexander Shishkinef15e542012-05-11 17:25:43 +0300867 }
868
Richard Zhao26c696c2012-07-07 22:56:40 +0800869 spin_lock_irqsave(&ci->lock, flags);
870 if (ci->test_mode)
871 hw_port_test_set(ci, ci->test_mode);
872 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530873}
874
875/**
David Lopoaa69a802008-11-17 14:14:51 -0800876 * isr_setup_status_phase: queues the status phase of a setup transation
Richard Zhao26c696c2012-07-07 22:56:40 +0800877 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800878 *
879 * This function returns an error code
880 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300881static int isr_setup_status_phase(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800882{
883 int retval;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300884 struct ci_hw_ep *hwep;
David Lopoaa69a802008-11-17 14:14:51 -0800885
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300886 hwep = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in;
Richard Zhao26c696c2012-07-07 22:56:40 +0800887 ci->status->context = ci;
888 ci->status->complete = isr_setup_status_complete;
David Lopoaa69a802008-11-17 14:14:51 -0800889
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300890 retval = _ep_queue(&hwep->ep, ci->status, GFP_ATOMIC);
David Lopoaa69a802008-11-17 14:14:51 -0800891
892 return retval;
893}
894
895/**
896 * isr_tr_complete_low: transaction complete low level handler
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300897 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800898 *
899 * This function returns an error code
900 * Caller must hold lock
901 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300902static int isr_tr_complete_low(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300903__releases(hwep->lock)
904__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800905{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300906 struct ci_hw_req *hwreq, *hwreqtemp;
907 struct ci_hw_ep *hweptemp = hwep;
Michael Grzeschikdb899602012-09-12 14:58:04 +0300908 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800909
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300910 list_for_each_entry_safe(hwreq, hwreqtemp, &hwep->qh.queue,
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530911 queue) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300912 retval = _hardware_dequeue(hwep, hwreq);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530913 if (retval < 0)
914 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300915 list_del_init(&hwreq->queue);
916 if (hwreq->req.complete != NULL) {
917 spin_unlock(hwep->lock);
918 if ((hwep->type == USB_ENDPOINT_XFER_CONTROL) &&
919 hwreq->req.length)
920 hweptemp = hwep->ci->ep0in;
921 hwreq->req.complete(&hweptemp->ep, &hwreq->req);
922 spin_lock(hwep->lock);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530923 }
924 }
David Lopoaa69a802008-11-17 14:14:51 -0800925
Pavankumar Kondetief907482011-05-02 11:56:27 +0530926 if (retval == -EBUSY)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530927 retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800928
David Lopoaa69a802008-11-17 14:14:51 -0800929 return retval;
930}
931
932/**
Peter Chend7b00e32014-03-11 13:47:37 +0800933 * isr_setup_packet_handler: setup packet handler
934 * @ci: UDC descriptor
935 *
936 * This function handles setup packet
937 */
938static void isr_setup_packet_handler(struct ci_hdrc *ci)
939__releases(ci->lock)
940__acquires(ci->lock)
941{
942 struct ci_hw_ep *hwep = &ci->ci_hw_ep[0];
943 struct usb_ctrlrequest req;
944 int type, num, dir, err = -EINVAL;
945 u8 tmode = 0;
946
947 /*
948 * Flush data and handshake transactions of previous
949 * setup packet.
950 */
951 _ep_nuke(ci->ep0out);
952 _ep_nuke(ci->ep0in);
953
954 /* read_setup_packet */
955 do {
956 hw_test_and_set_setup_guard(ci);
957 memcpy(&req, &hwep->qh.ptr->setup, sizeof(req));
958 } while (!hw_test_and_clear_setup_guard(ci));
959
960 type = req.bRequestType;
961
962 ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
963
964 switch (req.bRequest) {
965 case USB_REQ_CLEAR_FEATURE:
966 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
967 le16_to_cpu(req.wValue) ==
968 USB_ENDPOINT_HALT) {
969 if (req.wLength != 0)
970 break;
971 num = le16_to_cpu(req.wIndex);
972 dir = num & USB_ENDPOINT_DIR_MASK;
973 num &= USB_ENDPOINT_NUMBER_MASK;
974 if (dir) /* TX */
975 num += ci->hw_ep_max / 2;
976 if (!ci->ci_hw_ep[num].wedge) {
977 spin_unlock(&ci->lock);
978 err = usb_ep_clear_halt(
979 &ci->ci_hw_ep[num].ep);
980 spin_lock(&ci->lock);
981 if (err)
982 break;
983 }
984 err = isr_setup_status_phase(ci);
985 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
986 le16_to_cpu(req.wValue) ==
987 USB_DEVICE_REMOTE_WAKEUP) {
988 if (req.wLength != 0)
989 break;
990 ci->remote_wakeup = 0;
991 err = isr_setup_status_phase(ci);
992 } else {
993 goto delegate;
994 }
995 break;
996 case USB_REQ_GET_STATUS:
997 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
998 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
999 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
1000 goto delegate;
1001 if (le16_to_cpu(req.wLength) != 2 ||
1002 le16_to_cpu(req.wValue) != 0)
1003 break;
1004 err = isr_get_status_response(ci, &req);
1005 break;
1006 case USB_REQ_SET_ADDRESS:
1007 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
1008 goto delegate;
1009 if (le16_to_cpu(req.wLength) != 0 ||
1010 le16_to_cpu(req.wIndex) != 0)
1011 break;
1012 ci->address = (u8)le16_to_cpu(req.wValue);
1013 ci->setaddr = true;
1014 err = isr_setup_status_phase(ci);
1015 break;
1016 case USB_REQ_SET_FEATURE:
1017 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1018 le16_to_cpu(req.wValue) ==
1019 USB_ENDPOINT_HALT) {
1020 if (req.wLength != 0)
1021 break;
1022 num = le16_to_cpu(req.wIndex);
1023 dir = num & USB_ENDPOINT_DIR_MASK;
1024 num &= USB_ENDPOINT_NUMBER_MASK;
1025 if (dir) /* TX */
1026 num += ci->hw_ep_max / 2;
1027
1028 spin_unlock(&ci->lock);
1029 err = usb_ep_set_halt(&ci->ci_hw_ep[num].ep);
1030 spin_lock(&ci->lock);
1031 if (!err)
1032 isr_setup_status_phase(ci);
1033 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
1034 if (req.wLength != 0)
1035 break;
1036 switch (le16_to_cpu(req.wValue)) {
1037 case USB_DEVICE_REMOTE_WAKEUP:
1038 ci->remote_wakeup = 1;
1039 err = isr_setup_status_phase(ci);
1040 break;
1041 case USB_DEVICE_TEST_MODE:
1042 tmode = le16_to_cpu(req.wIndex) >> 8;
1043 switch (tmode) {
1044 case TEST_J:
1045 case TEST_K:
1046 case TEST_SE0_NAK:
1047 case TEST_PACKET:
1048 case TEST_FORCE_EN:
1049 ci->test_mode = tmode;
1050 err = isr_setup_status_phase(
1051 ci);
1052 break;
1053 default:
1054 break;
1055 }
Li Jun95f55552014-04-23 15:56:47 +08001056 break;
1057 case USB_DEVICE_B_HNP_ENABLE:
1058 if (ci_otg_is_fsm_mode(ci)) {
1059 ci->gadget.b_hnp_enable = 1;
1060 err = isr_setup_status_phase(
1061 ci);
1062 }
1063 break;
Peter Chend7b00e32014-03-11 13:47:37 +08001064 default:
1065 goto delegate;
1066 }
1067 } else {
1068 goto delegate;
1069 }
1070 break;
1071 default:
1072delegate:
1073 if (req.wLength == 0) /* no data phase */
1074 ci->ep0_dir = TX;
1075
1076 spin_unlock(&ci->lock);
1077 err = ci->driver->setup(&ci->gadget, &req);
1078 spin_lock(&ci->lock);
1079 break;
1080 }
1081
1082 if (err < 0) {
1083 spin_unlock(&ci->lock);
1084 if (usb_ep_set_halt(&hwep->ep))
1085 dev_err(ci->dev, "error: ep_set_halt\n");
1086 spin_lock(&ci->lock);
1087 }
1088}
1089
1090/**
David Lopoaa69a802008-11-17 14:14:51 -08001091 * isr_tr_complete_handler: transaction complete interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +08001092 * @ci: UDC descriptor
David Lopoaa69a802008-11-17 14:14:51 -08001093 *
1094 * This function handles traffic events
1095 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001096static void isr_tr_complete_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +08001097__releases(ci->lock)
1098__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -08001099{
1100 unsigned i;
Peter Chend7b00e32014-03-11 13:47:37 +08001101 int err;
David Lopoaa69a802008-11-17 14:14:51 -08001102
Richard Zhao26c696c2012-07-07 22:56:40 +08001103 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001104 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
David Lopoaa69a802008-11-17 14:14:51 -08001105
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001106 if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001107 continue; /* not configured */
1108
Richard Zhao26c696c2012-07-07 22:56:40 +08001109 if (hw_test_and_clear_complete(ci, i)) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001110 err = isr_tr_complete_low(hwep);
1111 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
David Lopoaa69a802008-11-17 14:14:51 -08001112 if (err > 0) /* needs status phase */
Richard Zhao26c696c2012-07-07 22:56:40 +08001113 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001114 if (err < 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001115 spin_unlock(&ci->lock);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001116 if (usb_ep_set_halt(&hwep->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +08001117 dev_err(ci->dev,
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -07001118 "error: ep_set_halt\n");
Richard Zhao26c696c2012-07-07 22:56:40 +08001119 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001120 }
1121 }
1122 }
1123
Peter Chen64fc06c2014-02-19 13:41:41 +08001124 /* Only handle setup packet below */
Peter Chend7b00e32014-03-11 13:47:37 +08001125 if (i == 0 &&
1126 hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(0)))
1127 isr_setup_packet_handler(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001128 }
1129}
1130
1131/******************************************************************************
1132 * ENDPT block
1133 *****************************************************************************/
1134/**
1135 * ep_enable: configure endpoint, making it usable
1136 *
1137 * Check usb_ep_enable() at "usb_gadget.h" for details
1138 */
1139static int ep_enable(struct usb_ep *ep,
1140 const struct usb_endpoint_descriptor *desc)
1141{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001142 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301143 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001144 unsigned long flags;
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001145 u32 cap = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001146
David Lopoaa69a802008-11-17 14:14:51 -08001147 if (ep == NULL || desc == NULL)
1148 return -EINVAL;
1149
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001150 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001151
1152 /* only internal SW should enable ctrl endpts */
1153
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001154 hwep->ep.desc = desc;
David Lopoaa69a802008-11-17 14:14:51 -08001155
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001156 if (!list_empty(&hwep->qh.queue))
1157 dev_warn(hwep->ci->dev, "enabling a non-empty endpoint!\n");
David Lopoaa69a802008-11-17 14:14:51 -08001158
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001159 hwep->dir = usb_endpoint_dir_in(desc) ? TX : RX;
1160 hwep->num = usb_endpoint_num(desc);
1161 hwep->type = usb_endpoint_type(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001162
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001163 hwep->ep.maxpacket = usb_endpoint_maxp(desc) & 0x07ff;
1164 hwep->ep.mult = QH_ISO_MULT(usb_endpoint_maxp(desc));
David Lopoaa69a802008-11-17 14:14:51 -08001165
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001166 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001167 cap |= QH_IOS;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001168 if (hwep->num)
Michael Grzeschik776ffc12013-03-30 12:54:06 +02001169 cap |= QH_ZLT;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001170 cap |= (hwep->ep.maxpacket << __ffs(QH_MAX_PKT)) & QH_MAX_PKT;
Peter Chen2fc5a7d2014-01-10 13:51:32 +08001171 /*
1172 * For ISO-TX, we set mult at QH as the largest value, and use
1173 * MultO at TD as real mult value.
1174 */
1175 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX)
1176 cap |= 3 << __ffs(QH_MULT);
David Lopoaa69a802008-11-17 14:14:51 -08001177
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001178 hwep->qh.ptr->cap = cpu_to_le32(cap);
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001179
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001180 hwep->qh.ptr->td.next |= cpu_to_le32(TD_TERMINATE); /* needed? */
David Lopoaa69a802008-11-17 14:14:51 -08001181
Peter Chen64fc06c2014-02-19 13:41:41 +08001182 if (hwep->num != 0 && hwep->type == USB_ENDPOINT_XFER_CONTROL) {
1183 dev_err(hwep->ci->dev, "Set control xfer at non-ep0\n");
1184 retval = -EINVAL;
1185 }
1186
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301187 /*
1188 * Enable endpoints in the HW other than ep0 as ep0
1189 * is always enabled
1190 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001191 if (hwep->num)
1192 retval |= hw_ep_enable(hwep->ci, hwep->num, hwep->dir,
1193 hwep->type);
David Lopoaa69a802008-11-17 14:14:51 -08001194
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001195 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001196 return retval;
1197}
1198
1199/**
1200 * ep_disable: endpoint is no longer usable
1201 *
1202 * Check usb_ep_disable() at "usb_gadget.h" for details
1203 */
1204static int ep_disable(struct usb_ep *ep)
1205{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001206 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001207 int direction, retval = 0;
1208 unsigned long flags;
1209
David Lopoaa69a802008-11-17 14:14:51 -08001210 if (ep == NULL)
1211 return -EINVAL;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001212 else if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001213 return -EBUSY;
1214
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001215 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001216
1217 /* only internal SW should disable ctrl endpts */
1218
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001219 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001220 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001221 retval |= _ep_nuke(hwep);
1222 retval |= hw_ep_disable(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001223
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001224 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1225 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001226
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001227 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001228
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001229 hwep->ep.desc = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001230
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001231 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001232 return retval;
1233}
1234
1235/**
1236 * ep_alloc_request: allocate a request object to use with this endpoint
1237 *
1238 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
1239 */
1240static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1241{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001242 struct ci_hw_req *hwreq = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001243
Alexander Shishkin0f089092012-05-08 23:29:02 +03001244 if (ep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001245 return NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001246
Alexander Shishkin8e229782013-06-24 14:46:36 +03001247 hwreq = kzalloc(sizeof(struct ci_hw_req), gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001248 if (hwreq != NULL) {
1249 INIT_LIST_HEAD(&hwreq->queue);
1250 INIT_LIST_HEAD(&hwreq->tds);
David Lopoaa69a802008-11-17 14:14:51 -08001251 }
1252
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001253 return (hwreq == NULL) ? NULL : &hwreq->req;
David Lopoaa69a802008-11-17 14:14:51 -08001254}
1255
1256/**
1257 * ep_free_request: frees a request object
1258 *
1259 * Check usb_ep_free_request() at "usb_gadget.h" for details
1260 */
1261static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
1262{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001263 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1264 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001265 struct td_node *node, *tmpnode;
David Lopoaa69a802008-11-17 14:14:51 -08001266 unsigned long flags;
1267
David Lopoaa69a802008-11-17 14:14:51 -08001268 if (ep == NULL || req == NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001269 return;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001270 } else if (!list_empty(&hwreq->queue)) {
1271 dev_err(hwep->ci->dev, "freeing queued request\n");
David Lopoaa69a802008-11-17 14:14:51 -08001272 return;
1273 }
1274
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001275 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001276
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001277 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
1278 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001279 list_del_init(&node->td);
1280 node->ptr = NULL;
1281 kfree(node);
1282 }
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +03001283
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001284 kfree(hwreq);
David Lopoaa69a802008-11-17 14:14:51 -08001285
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001286 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001287}
1288
1289/**
1290 * ep_queue: queues (submits) an I/O request to an endpoint
1291 *
1292 * Check usb_ep_queue()* at usb_gadget.h" for details
1293 */
1294static int ep_queue(struct usb_ep *ep, struct usb_request *req,
1295 gfp_t __maybe_unused gfp_flags)
1296{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001297 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001298 int retval = 0;
1299 unsigned long flags;
1300
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001301 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001302 return -EINVAL;
1303
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001304 spin_lock_irqsave(hwep->lock, flags);
Michael Grzeschikdd064e92013-03-30 12:54:09 +02001305 retval = _ep_queue(ep, req, gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001306 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001307 return retval;
1308}
1309
1310/**
1311 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
1312 *
1313 * Check usb_ep_dequeue() at "usb_gadget.h" for details
1314 */
1315static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
1316{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001317 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1318 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
David Lopoaa69a802008-11-17 14:14:51 -08001319 unsigned long flags;
1320
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001321 if (ep == NULL || req == NULL || hwreq->req.status != -EALREADY ||
1322 hwep->ep.desc == NULL || list_empty(&hwreq->queue) ||
1323 list_empty(&hwep->qh.queue))
David Lopoaa69a802008-11-17 14:14:51 -08001324 return -EINVAL;
1325
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001326 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001327
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001328 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001329
1330 /* pop request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001331 list_del_init(&hwreq->queue);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001332
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001333 usb_gadget_unmap_request(&hwep->ci->gadget, req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001334
David Lopoaa69a802008-11-17 14:14:51 -08001335 req->status = -ECONNRESET;
1336
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001337 if (hwreq->req.complete != NULL) {
1338 spin_unlock(hwep->lock);
1339 hwreq->req.complete(&hwep->ep, &hwreq->req);
1340 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001341 }
1342
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001343 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001344 return 0;
1345}
1346
1347/**
1348 * ep_set_halt: sets the endpoint halt feature
1349 *
1350 * Check usb_ep_set_halt() at "usb_gadget.h" for details
1351 */
1352static int ep_set_halt(struct usb_ep *ep, int value)
1353{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001354 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001355 int direction, retval = 0;
1356 unsigned long flags;
1357
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001358 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001359 return -EINVAL;
1360
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001361 if (usb_endpoint_xfer_isoc(hwep->ep.desc))
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +03001362 return -EOPNOTSUPP;
1363
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001364 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001365
1366#ifndef STALL_IN
1367 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001368 if (value && hwep->type == USB_ENDPOINT_XFER_BULK && hwep->dir == TX &&
1369 !list_empty(&hwep->qh.queue)) {
1370 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001371 return -EAGAIN;
1372 }
1373#endif
1374
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001375 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001376 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001377 retval |= hw_ep_set_halt(hwep->ci, hwep->num, hwep->dir, value);
David Lopoaa69a802008-11-17 14:14:51 -08001378
1379 if (!value)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001380 hwep->wedge = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001381
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001382 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1383 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001384
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001385 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001386
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001387 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001388 return retval;
1389}
1390
1391/**
1392 * ep_set_wedge: sets the halt feature and ignores clear requests
1393 *
1394 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
1395 */
1396static int ep_set_wedge(struct usb_ep *ep)
1397{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001398 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001399 unsigned long flags;
1400
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001401 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001402 return -EINVAL;
1403
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001404 spin_lock_irqsave(hwep->lock, flags);
1405 hwep->wedge = 1;
1406 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001407
1408 return usb_ep_set_halt(ep);
1409}
1410
1411/**
1412 * ep_fifo_flush: flushes contents of a fifo
1413 *
1414 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
1415 */
1416static void ep_fifo_flush(struct usb_ep *ep)
1417{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001418 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001419 unsigned long flags;
1420
David Lopoaa69a802008-11-17 14:14:51 -08001421 if (ep == NULL) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001422 dev_err(hwep->ci->dev, "%02X: -EINVAL\n", _usb_addr(hwep));
David Lopoaa69a802008-11-17 14:14:51 -08001423 return;
1424 }
1425
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001426 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001427
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001428 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001429
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001430 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001431}
1432
1433/**
1434 * Endpoint-specific part of the API to the USB controller hardware
1435 * Check "usb_gadget.h" for details
1436 */
1437static const struct usb_ep_ops usb_ep_ops = {
1438 .enable = ep_enable,
1439 .disable = ep_disable,
1440 .alloc_request = ep_alloc_request,
1441 .free_request = ep_free_request,
1442 .queue = ep_queue,
1443 .dequeue = ep_dequeue,
1444 .set_halt = ep_set_halt,
1445 .set_wedge = ep_set_wedge,
1446 .fifo_flush = ep_fifo_flush,
1447};
1448
1449/******************************************************************************
1450 * GADGET block
1451 *****************************************************************************/
Alexander Shishkin8e229782013-06-24 14:46:36 +03001452static int ci_udc_vbus_session(struct usb_gadget *_gadget, int is_active)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301453{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001454 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301455 unsigned long flags;
1456 int gadget_ready = 0;
1457
Richard Zhao26c696c2012-07-07 22:56:40 +08001458 spin_lock_irqsave(&ci->lock, flags);
1459 ci->vbus_active = is_active;
1460 if (ci->driver)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301461 gadget_ready = 1;
Richard Zhao26c696c2012-07-07 22:56:40 +08001462 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301463
1464 if (gadget_ready) {
1465 if (is_active) {
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301466 pm_runtime_get_sync(&_gadget->dev);
Richard Zhao26c696c2012-07-07 22:56:40 +08001467 hw_device_reset(ci, USBMODE_CM_DC);
1468 hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chena107f8c2013-08-14 12:44:11 +03001469 dev_dbg(ci->dev, "Connected to host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301470 } else {
Peter Chen92b336d2013-09-17 12:37:19 +08001471 if (ci->driver)
1472 ci->driver->disconnect(&ci->gadget);
Richard Zhao26c696c2012-07-07 22:56:40 +08001473 hw_device_state(ci, 0);
1474 if (ci->platdata->notify_event)
1475 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001476 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001477 _gadget_stop_activity(&ci->gadget);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301478 pm_runtime_put_sync(&_gadget->dev);
Peter Chena107f8c2013-08-14 12:44:11 +03001479 dev_dbg(ci->dev, "Disconnected from host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301480 }
1481 }
1482
1483 return 0;
1484}
1485
Alexander Shishkin8e229782013-06-24 14:46:36 +03001486static int ci_udc_wakeup(struct usb_gadget *_gadget)
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301487{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001488 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301489 unsigned long flags;
1490 int ret = 0;
1491
Richard Zhao26c696c2012-07-07 22:56:40 +08001492 spin_lock_irqsave(&ci->lock, flags);
1493 if (!ci->remote_wakeup) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301494 ret = -EOPNOTSUPP;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301495 goto out;
1496 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001497 if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301498 ret = -EINVAL;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301499 goto out;
1500 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001501 hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301502out:
Richard Zhao26c696c2012-07-07 22:56:40 +08001503 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301504 return ret;
1505}
1506
Alexander Shishkin8e229782013-06-24 14:46:36 +03001507static int ci_udc_vbus_draw(struct usb_gadget *_gadget, unsigned ma)
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301508{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001509 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301510
Richard Zhao26c696c2012-07-07 22:56:40 +08001511 if (ci->transceiver)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001512 return usb_phy_set_power(ci->transceiver, ma);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301513 return -ENOTSUPP;
1514}
1515
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001516/* Change Data+ pullup status
1517 * this func is used by usb_gadget_connect/disconnet
1518 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001519static int ci_udc_pullup(struct usb_gadget *_gadget, int is_on)
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001520{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001521 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001522
Peter Chen4a647832013-08-14 12:44:15 +03001523 if (!ci->vbus_active)
1524 return -EOPNOTSUPP;
1525
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001526 if (is_on)
1527 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
1528 else
1529 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
1530
1531 return 0;
1532}
1533
Alexander Shishkin8e229782013-06-24 14:46:36 +03001534static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001535 struct usb_gadget_driver *driver);
Alexander Shishkin8e229782013-06-24 14:46:36 +03001536static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001537 struct usb_gadget_driver *driver);
David Lopoaa69a802008-11-17 14:14:51 -08001538/**
1539 * Device operations part of the API to the USB controller hardware,
1540 * which don't involve endpoints (or i/o)
1541 * Check "usb_gadget.h" for details
1542 */
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301543static const struct usb_gadget_ops usb_gadget_ops = {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001544 .vbus_session = ci_udc_vbus_session,
1545 .wakeup = ci_udc_wakeup,
1546 .pullup = ci_udc_pullup,
1547 .vbus_draw = ci_udc_vbus_draw,
1548 .udc_start = ci_udc_start,
1549 .udc_stop = ci_udc_stop,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301550};
David Lopoaa69a802008-11-17 14:14:51 -08001551
Alexander Shishkin8e229782013-06-24 14:46:36 +03001552static int init_eps(struct ci_hdrc *ci)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001553{
1554 int retval = 0, i, j;
1555
Richard Zhao26c696c2012-07-07 22:56:40 +08001556 for (i = 0; i < ci->hw_ep_max/2; i++)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001557 for (j = RX; j <= TX; j++) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001558 int k = i + j * ci->hw_ep_max/2;
Alexander Shishkin8e229782013-06-24 14:46:36 +03001559 struct ci_hw_ep *hwep = &ci->ci_hw_ep[k];
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001560
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001561 scnprintf(hwep->name, sizeof(hwep->name), "ep%i%s", i,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001562 (j == TX) ? "in" : "out");
1563
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001564 hwep->ci = ci;
1565 hwep->lock = &ci->lock;
1566 hwep->td_pool = ci->td_pool;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001567
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001568 hwep->ep.name = hwep->name;
1569 hwep->ep.ops = &usb_ep_ops;
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001570 /*
1571 * for ep0: maxP defined in desc, for other
1572 * eps, maxP is set by epautoconfig() called
1573 * by gadget layer
1574 */
Robert Baldygae117e742013-12-13 12:23:38 +01001575 usb_ep_set_maxpacket_limit(&hwep->ep, (unsigned short)~0);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001576
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001577 INIT_LIST_HEAD(&hwep->qh.queue);
1578 hwep->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL,
1579 &hwep->qh.dma);
1580 if (hwep->qh.ptr == NULL)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001581 retval = -ENOMEM;
1582 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001583 memset(hwep->qh.ptr, 0, sizeof(*hwep->qh.ptr));
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001584
1585 /*
1586 * set up shorthands for ep0 out and in endpoints,
1587 * don't add to gadget's ep_list
1588 */
1589 if (i == 0) {
1590 if (j == RX)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001591 ci->ep0out = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001592 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001593 ci->ep0in = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001594
Robert Baldygae117e742013-12-13 12:23:38 +01001595 usb_ep_set_maxpacket_limit(&hwep->ep, CTRL_PAYLOAD_MAX);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001596 continue;
1597 }
1598
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001599 list_add_tail(&hwep->ep.ep_list, &ci->gadget.ep_list);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001600 }
1601
1602 return retval;
1603}
1604
Alexander Shishkin8e229782013-06-24 14:46:36 +03001605static void destroy_eps(struct ci_hdrc *ci)
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001606{
1607 int i;
1608
1609 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001610 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001611
Peter Chen4a295672013-09-10 15:34:39 +08001612 if (hwep->pending_td)
1613 free_pending_td(hwep);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001614 dma_pool_free(ci->qh_pool, hwep->qh.ptr, hwep->qh.dma);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001615 }
1616}
1617
David Lopoaa69a802008-11-17 14:14:51 -08001618/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001619 * ci_udc_start: register a gadget driver
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001620 * @gadget: our gadget
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001621 * @driver: the driver being registered
David Lopoaa69a802008-11-17 14:14:51 -08001622 *
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001623 * Interrupts are enabled here.
David Lopoaa69a802008-11-17 14:14:51 -08001624 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001625static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001626 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001627{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001628 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301629 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001630 int retval = -ENOMEM;
1631
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001632 if (driver->disconnect == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001633 return -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -08001634
David Lopoaa69a802008-11-17 14:14:51 -08001635
Richard Zhao26c696c2012-07-07 22:56:40 +08001636 ci->ep0out->ep.desc = &ctrl_endpt_out_desc;
1637 retval = usb_ep_enable(&ci->ep0out->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301638 if (retval)
1639 return retval;
Felipe Balbi877c1f52011-06-29 16:41:57 +03001640
Richard Zhao26c696c2012-07-07 22:56:40 +08001641 ci->ep0in->ep.desc = &ctrl_endpt_in_desc;
1642 retval = usb_ep_enable(&ci->ep0in->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301643 if (retval)
1644 return retval;
David Lopoaa69a802008-11-17 14:14:51 -08001645
Richard Zhao26c696c2012-07-07 22:56:40 +08001646 ci->driver = driver;
1647 pm_runtime_get_sync(&ci->gadget.dev);
Peter Chend268e9b2013-08-14 12:44:14 +03001648 if (ci->vbus_active) {
Peter Chen65b2fb32013-10-08 10:30:17 +08001649 spin_lock_irqsave(&ci->lock, flags);
Peter Chend268e9b2013-08-14 12:44:14 +03001650 hw_device_reset(ci, USBMODE_CM_DC);
1651 } else {
1652 pm_runtime_put_sync(&ci->gadget.dev);
Peter Chen65b2fb32013-10-08 10:30:17 +08001653 return retval;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301654 }
1655
Richard Zhao26c696c2012-07-07 22:56:40 +08001656 retval = hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chen65b2fb32013-10-08 10:30:17 +08001657 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301658 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +08001659 pm_runtime_put_sync(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001660
David Lopoaa69a802008-11-17 14:14:51 -08001661 return retval;
1662}
David Lopoaa69a802008-11-17 14:14:51 -08001663
1664/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001665 * ci_udc_stop: unregister a gadget driver
David Lopoaa69a802008-11-17 14:14:51 -08001666 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001667static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001668 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001669{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001670 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001671 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001672
Richard Zhao26c696c2012-07-07 22:56:40 +08001673 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001674
Peter Chend268e9b2013-08-14 12:44:14 +03001675 if (ci->vbus_active) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001676 hw_device_state(ci, 0);
1677 if (ci->platdata->notify_event)
1678 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001679 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001680 spin_unlock_irqrestore(&ci->lock, flags);
1681 _gadget_stop_activity(&ci->gadget);
1682 spin_lock_irqsave(&ci->lock, flags);
1683 pm_runtime_put(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301684 }
David Lopoaa69a802008-11-17 14:14:51 -08001685
Peter Chenf84839d2013-09-17 12:37:20 +08001686 ci->driver = NULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001687 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001688
David Lopoaa69a802008-11-17 14:14:51 -08001689 return 0;
1690}
David Lopoaa69a802008-11-17 14:14:51 -08001691
1692/******************************************************************************
1693 * BUS block
1694 *****************************************************************************/
1695/**
Richard Zhao26c696c2012-07-07 22:56:40 +08001696 * udc_irq: ci interrupt handler
David Lopoaa69a802008-11-17 14:14:51 -08001697 *
1698 * This function returns IRQ_HANDLED if the IRQ has been handled
1699 * It locks access to registers
1700 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001701static irqreturn_t udc_irq(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001702{
David Lopoaa69a802008-11-17 14:14:51 -08001703 irqreturn_t retval;
1704 u32 intr;
1705
Richard Zhao26c696c2012-07-07 22:56:40 +08001706 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001707 return IRQ_HANDLED;
David Lopoaa69a802008-11-17 14:14:51 -08001708
Richard Zhao26c696c2012-07-07 22:56:40 +08001709 spin_lock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301710
Alexander Shishkin8e229782013-06-24 14:46:36 +03001711 if (ci->platdata->flags & CI_HDRC_REGS_SHARED) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001712 if (hw_read(ci, OP_USBMODE, USBMODE_CM) !=
Alexander Shishkin758fc982012-05-11 17:25:53 +03001713 USBMODE_CM_DC) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001714 spin_unlock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301715 return IRQ_NONE;
1716 }
1717 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001718 intr = hw_test_and_clear_intr_active(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001719
Alexander Shishkine443b332012-05-11 17:25:46 +03001720 if (intr) {
David Lopoaa69a802008-11-17 14:14:51 -08001721 /* order defines priority - do NOT change it */
Alexander Shishkine443b332012-05-11 17:25:46 +03001722 if (USBi_URI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001723 isr_reset_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001724
David Lopoaa69a802008-11-17 14:14:51 -08001725 if (USBi_PCI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001726 ci->gadget.speed = hw_port_is_high_speed(ci) ?
David Lopoaa69a802008-11-17 14:14:51 -08001727 USB_SPEED_HIGH : USB_SPEED_FULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001728 if (ci->suspended && ci->driver->resume) {
1729 spin_unlock(&ci->lock);
1730 ci->driver->resume(&ci->gadget);
1731 spin_lock(&ci->lock);
1732 ci->suspended = 0;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301733 }
David Lopoaa69a802008-11-17 14:14:51 -08001734 }
Alexander Shishkine443b332012-05-11 17:25:46 +03001735
1736 if (USBi_UI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001737 isr_tr_complete_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001738
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301739 if (USBi_SLI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001740 if (ci->gadget.speed != USB_SPEED_UNKNOWN &&
1741 ci->driver->suspend) {
1742 ci->suspended = 1;
1743 spin_unlock(&ci->lock);
1744 ci->driver->suspend(&ci->gadget);
1745 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301746 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301747 }
David Lopoaa69a802008-11-17 14:14:51 -08001748 retval = IRQ_HANDLED;
1749 } else {
David Lopoaa69a802008-11-17 14:14:51 -08001750 retval = IRQ_NONE;
1751 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001752 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001753
1754 return retval;
1755}
1756
1757/**
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001758 * udc_start: initialize gadget role
Richard Zhao26c696c2012-07-07 22:56:40 +08001759 * @ci: chipidea controller
David Lopoaa69a802008-11-17 14:14:51 -08001760 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001761static int udc_start(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001762{
Richard Zhao26c696c2012-07-07 22:56:40 +08001763 struct device *dev = ci->dev;
David Lopoaa69a802008-11-17 14:14:51 -08001764 int retval = 0;
1765
Richard Zhao26c696c2012-07-07 22:56:40 +08001766 spin_lock_init(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001767
Richard Zhao26c696c2012-07-07 22:56:40 +08001768 ci->gadget.ops = &usb_gadget_ops;
1769 ci->gadget.speed = USB_SPEED_UNKNOWN;
1770 ci->gadget.max_speed = USB_SPEED_HIGH;
Li Jun95f55552014-04-23 15:56:47 +08001771 ci->gadget.is_otg = ci->is_otg ? 1 : 0;
Richard Zhao26c696c2012-07-07 22:56:40 +08001772 ci->gadget.name = ci->platdata->name;
David Lopoaa69a802008-11-17 14:14:51 -08001773
Richard Zhao26c696c2012-07-07 22:56:40 +08001774 INIT_LIST_HEAD(&ci->gadget.ep_list);
David Lopoaa69a802008-11-17 14:14:51 -08001775
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001776 /* alloc resources */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001777 ci->qh_pool = dma_pool_create("ci_hw_qh", dev,
1778 sizeof(struct ci_hw_qh),
1779 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001780 if (ci->qh_pool == NULL)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001781 return -ENOMEM;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001782
Alexander Shishkin8e229782013-06-24 14:46:36 +03001783 ci->td_pool = dma_pool_create("ci_hw_td", dev,
1784 sizeof(struct ci_hw_td),
1785 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001786 if (ci->td_pool == NULL) {
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001787 retval = -ENOMEM;
1788 goto free_qh_pool;
1789 }
1790
Richard Zhao26c696c2012-07-07 22:56:40 +08001791 retval = init_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001792 if (retval)
1793 goto free_pools;
1794
Richard Zhao26c696c2012-07-07 22:56:40 +08001795 ci->gadget.ep0 = &ci->ep0in->ep;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301796
Richard Zhao26c696c2012-07-07 22:56:40 +08001797 retval = usb_add_gadget_udc(dev, &ci->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001798 if (retval)
Peter Chen74475ed2013-09-24 12:47:53 +08001799 goto destroy_eps;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001800
Richard Zhao26c696c2012-07-07 22:56:40 +08001801 pm_runtime_no_callbacks(&ci->gadget.dev);
1802 pm_runtime_enable(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001803
David Lopoaa69a802008-11-17 14:14:51 -08001804 return retval;
1805
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001806destroy_eps:
1807 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001808free_pools:
Richard Zhao26c696c2012-07-07 22:56:40 +08001809 dma_pool_destroy(ci->td_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001810free_qh_pool:
Richard Zhao26c696c2012-07-07 22:56:40 +08001811 dma_pool_destroy(ci->qh_pool);
David Lopoaa69a802008-11-17 14:14:51 -08001812 return retval;
1813}
1814
1815/**
Peter Chen3f124d22013-08-14 12:44:07 +03001816 * ci_hdrc_gadget_destroy: parent remove must call this to remove UDC
David Lopoaa69a802008-11-17 14:14:51 -08001817 *
1818 * No interrupts active, the IRQ has been released
1819 */
Peter Chen3f124d22013-08-14 12:44:07 +03001820void ci_hdrc_gadget_destroy(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001821{
Peter Chen3f124d22013-08-14 12:44:07 +03001822 if (!ci->roles[CI_ROLE_GADGET])
David Lopoaa69a802008-11-17 14:14:51 -08001823 return;
Alexander Shishkin0f089092012-05-08 23:29:02 +03001824
Richard Zhao26c696c2012-07-07 22:56:40 +08001825 usb_del_gadget_udc(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001826
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001827 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001828
Richard Zhao26c696c2012-07-07 22:56:40 +08001829 dma_pool_destroy(ci->td_pool);
1830 dma_pool_destroy(ci->qh_pool);
Peter Chen3f124d22013-08-14 12:44:07 +03001831}
1832
1833static int udc_id_switch_for_device(struct ci_hdrc *ci)
1834{
Li Jun0c33bf72014-04-23 15:56:38 +08001835 if (ci->is_otg)
1836 /* Clear and enable BSV irq */
1837 hw_write_otgsc(ci, OTGSC_BSVIS | OTGSC_BSVIE,
1838 OTGSC_BSVIS | OTGSC_BSVIE);
Peter Chen3f124d22013-08-14 12:44:07 +03001839
1840 return 0;
1841}
1842
1843static void udc_id_switch_for_host(struct ci_hdrc *ci)
1844{
Li Jun0c33bf72014-04-23 15:56:38 +08001845 /*
1846 * host doesn't care B_SESSION_VALID event
1847 * so clear and disbale BSV irq
1848 */
1849 if (ci->is_otg)
1850 hw_write_otgsc(ci, OTGSC_BSVIE | OTGSC_BSVIS, OTGSC_BSVIS);
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001851}
David Lopoaa69a802008-11-17 14:14:51 -08001852
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001853/**
1854 * ci_hdrc_gadget_init - initialize device related bits
1855 * ci: the controller
1856 *
Peter Chen3f124d22013-08-14 12:44:07 +03001857 * This function initializes the gadget, if the device is "device capable".
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001858 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001859int ci_hdrc_gadget_init(struct ci_hdrc *ci)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001860{
1861 struct ci_role_driver *rdrv;
1862
1863 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC))
1864 return -ENXIO;
1865
1866 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
1867 if (!rdrv)
1868 return -ENOMEM;
1869
Peter Chen3f124d22013-08-14 12:44:07 +03001870 rdrv->start = udc_id_switch_for_device;
1871 rdrv->stop = udc_id_switch_for_host;
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001872 rdrv->irq = udc_irq;
1873 rdrv->name = "gadget";
1874 ci->roles[CI_ROLE_GADGET] = rdrv;
1875
Peter Chen3f124d22013-08-14 12:44:07 +03001876 return udc_start(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001877}