blob: 150592f10b3d5bbc0ae8f202bceb10793c7f7d25 [file] [log] [blame]
David Lopoaa69a802008-11-17 14:14:51 -08001/*
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03002 * udc.c - ChipIdea UDC driver
David Lopoaa69a802008-11-17 14:14:51 -08003 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Matthias Kaehlcke36825a22009-04-15 22:28:36 +020013#include <linux/delay.h>
David Lopoaa69a802008-11-17 14:14:51 -080014#include <linux/device.h>
15#include <linux/dmapool.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053016#include <linux/err.h>
Alexander Shishkin5b083192013-03-30 02:46:18 +020017#include <linux/irqreturn.h>
David Lopoaa69a802008-11-17 14:14:51 -080018#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Pavankumar Kondetic0360192010-12-07 17:54:04 +053020#include <linux/pm_runtime.h>
David Lopoaa69a802008-11-17 14:14:51 -080021#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
Li Jun95f55552014-04-23 15:56:47 +080023#include <linux/usb/otg-fsm.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030024#include <linux/usb/chipidea.h>
David Lopoaa69a802008-11-17 14:14:51 -080025
Alexander Shishkine443b332012-05-11 17:25:46 +030026#include "ci.h"
27#include "udc.h"
28#include "bits.h"
29#include "debug.h"
Peter Chen3f124d22013-08-14 12:44:07 +030030#include "otg.h"
Li Jun4dcf7202014-04-23 15:56:50 +080031#include "otg_fsm.h"
Michael Grzeschik954aad82011-10-10 18:38:06 +020032
David Lopoaa69a802008-11-17 14:14:51 -080033/* control endpoint description */
34static const struct usb_endpoint_descriptor
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053035ctrl_endpt_out_desc = {
David Lopoaa69a802008-11-17 14:14:51 -080036 .bLength = USB_DT_ENDPOINT_SIZE,
37 .bDescriptorType = USB_DT_ENDPOINT,
38
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053039 .bEndpointAddress = USB_DIR_OUT,
40 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
41 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
42};
43
44static const struct usb_endpoint_descriptor
45ctrl_endpt_in_desc = {
46 .bLength = USB_DT_ENDPOINT_SIZE,
47 .bDescriptorType = USB_DT_ENDPOINT,
48
49 .bEndpointAddress = USB_DIR_IN,
David Lopoaa69a802008-11-17 14:14:51 -080050 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
51 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
52};
53
David Lopoaa69a802008-11-17 14:14:51 -080054/**
55 * hw_ep_bit: calculates the bit number
56 * @num: endpoint number
57 * @dir: endpoint direction
58 *
59 * This function returns bit number
60 */
61static inline int hw_ep_bit(int num, int dir)
62{
63 return num + (dir ? 16 : 0);
64}
65
Alexander Shishkin8e229782013-06-24 14:46:36 +030066static inline int ep_to_bit(struct ci_hdrc *ci, int n)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020067{
Richard Zhao26c696c2012-07-07 22:56:40 +080068 int fill = 16 - ci->hw_ep_max / 2;
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020069
Richard Zhao26c696c2012-07-07 22:56:40 +080070 if (n >= ci->hw_ep_max / 2)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020071 n += fill;
72
73 return n;
74}
75
David Lopoaa69a802008-11-17 14:14:51 -080076/**
Michael Grzeschikc0a48e62012-09-12 14:58:01 +030077 * hw_device_state: enables/disables interrupts (execute without interruption)
David Lopoaa69a802008-11-17 14:14:51 -080078 * @dma: 0 => disable, !0 => enable and set dma engine
79 *
80 * This function returns an error code
81 */
Alexander Shishkin8e229782013-06-24 14:46:36 +030082static int hw_device_state(struct ci_hdrc *ci, u32 dma)
David Lopoaa69a802008-11-17 14:14:51 -080083{
84 if (dma) {
Richard Zhao26c696c2012-07-07 22:56:40 +080085 hw_write(ci, OP_ENDPTLISTADDR, ~0, dma);
David Lopoaa69a802008-11-17 14:14:51 -080086 /* interrupt, error, port change, reset, sleep/suspend */
Richard Zhao26c696c2012-07-07 22:56:40 +080087 hw_write(ci, OP_USBINTR, ~0,
David Lopoaa69a802008-11-17 14:14:51 -080088 USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI);
Peter Chena107f8c2013-08-14 12:44:11 +030089 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
David Lopoaa69a802008-11-17 14:14:51 -080090 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +080091 hw_write(ci, OP_USBINTR, ~0, 0);
Peter Chena107f8c2013-08-14 12:44:11 +030092 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
David Lopoaa69a802008-11-17 14:14:51 -080093 }
94 return 0;
95}
96
97/**
98 * hw_ep_flush: flush endpoint fifo (execute without interruption)
99 * @num: endpoint number
100 * @dir: endpoint direction
101 *
102 * This function returns an error code
103 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300104static int hw_ep_flush(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800105{
106 int n = hw_ep_bit(num, dir);
107
108 do {
109 /* flush any pending transfer */
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800110 hw_write(ci, OP_ENDPTFLUSH, ~0, BIT(n));
Richard Zhao26c696c2012-07-07 22:56:40 +0800111 while (hw_read(ci, OP_ENDPTFLUSH, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800112 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800113 } while (hw_read(ci, OP_ENDPTSTAT, BIT(n)));
David Lopoaa69a802008-11-17 14:14:51 -0800114
115 return 0;
116}
117
118/**
119 * hw_ep_disable: disables endpoint (execute without interruption)
120 * @num: endpoint number
121 * @dir: endpoint direction
122 *
123 * This function returns an error code
124 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300125static int hw_ep_disable(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800126{
Richard Zhao26c696c2012-07-07 22:56:40 +0800127 hw_ep_flush(ci, num, dir);
128 hw_write(ci, OP_ENDPTCTRL + num,
Alexander Shishkind3595d12012-05-08 23:28:58 +0300129 dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800130 return 0;
131}
132
133/**
134 * hw_ep_enable: enables endpoint (execute without interruption)
135 * @num: endpoint number
136 * @dir: endpoint direction
137 * @type: endpoint type
138 *
139 * This function returns an error code
140 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300141static int hw_ep_enable(struct ci_hdrc *ci, int num, int dir, int type)
David Lopoaa69a802008-11-17 14:14:51 -0800142{
143 u32 mask, data;
144
145 if (dir) {
146 mask = ENDPTCTRL_TXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200147 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800148
149 mask |= ENDPTCTRL_TXS; /* unstall */
150 mask |= ENDPTCTRL_TXR; /* reset data toggle */
151 data |= ENDPTCTRL_TXR;
152 mask |= ENDPTCTRL_TXE; /* enable */
153 data |= ENDPTCTRL_TXE;
154 } else {
155 mask = ENDPTCTRL_RXT; /* type */
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200156 data = type << __ffs(mask);
David Lopoaa69a802008-11-17 14:14:51 -0800157
158 mask |= ENDPTCTRL_RXS; /* unstall */
159 mask |= ENDPTCTRL_RXR; /* reset data toggle */
160 data |= ENDPTCTRL_RXR;
161 mask |= ENDPTCTRL_RXE; /* enable */
162 data |= ENDPTCTRL_RXE;
163 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800164 hw_write(ci, OP_ENDPTCTRL + num, mask, data);
David Lopoaa69a802008-11-17 14:14:51 -0800165 return 0;
166}
167
168/**
169 * hw_ep_get_halt: return endpoint halt status
170 * @num: endpoint number
171 * @dir: endpoint direction
172 *
173 * This function returns 1 if endpoint halted
174 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300175static int hw_ep_get_halt(struct ci_hdrc *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800176{
177 u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
178
Richard Zhao26c696c2012-07-07 22:56:40 +0800179 return hw_read(ci, OP_ENDPTCTRL + num, mask) ? 1 : 0;
David Lopoaa69a802008-11-17 14:14:51 -0800180}
181
182/**
David Lopoaa69a802008-11-17 14:14:51 -0800183 * hw_ep_prime: primes endpoint (execute without interruption)
184 * @num: endpoint number
185 * @dir: endpoint direction
186 * @is_ctrl: true if control endpoint
187 *
188 * This function returns an error code
189 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300190static int hw_ep_prime(struct ci_hdrc *ci, int num, int dir, int is_ctrl)
David Lopoaa69a802008-11-17 14:14:51 -0800191{
192 int n = hw_ep_bit(num, dir);
193
Richard Zhao26c696c2012-07-07 22:56:40 +0800194 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800195 return -EAGAIN;
196
Matthieu CASTET5bf5dbe2014-02-19 13:46:31 +0800197 hw_write(ci, OP_ENDPTPRIME, ~0, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800198
Richard Zhao26c696c2012-07-07 22:56:40 +0800199 while (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800200 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800201 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800202 return -EAGAIN;
203
204 /* status shoult be tested according with manual but it doesn't work */
205 return 0;
206}
207
208/**
209 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
210 * without interruption)
211 * @num: endpoint number
212 * @dir: endpoint direction
213 * @value: true => stall, false => unstall
214 *
215 * This function returns an error code
216 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300217static int hw_ep_set_halt(struct ci_hdrc *ci, int num, int dir, int value)
David Lopoaa69a802008-11-17 14:14:51 -0800218{
219 if (value != 0 && value != 1)
220 return -EINVAL;
221
222 do {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300223 enum ci_hw_regs reg = OP_ENDPTCTRL + num;
David Lopoaa69a802008-11-17 14:14:51 -0800224 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
225 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
226
227 /* data toggle - reserved for EP0 but it's in ESS */
Richard Zhao26c696c2012-07-07 22:56:40 +0800228 hw_write(ci, reg, mask_xs|mask_xr,
Alexander Shishkin262c1632012-05-08 23:28:59 +0300229 value ? mask_xs : mask_xr);
Richard Zhao26c696c2012-07-07 22:56:40 +0800230 } while (value != hw_ep_get_halt(ci, num, dir));
David Lopoaa69a802008-11-17 14:14:51 -0800231
232 return 0;
233}
234
235/**
David Lopoaa69a802008-11-17 14:14:51 -0800236 * hw_is_port_high_speed: test if port is high speed
237 *
238 * This function returns true if high speed port
239 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300240static int hw_port_is_high_speed(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800241{
Richard Zhao26c696c2012-07-07 22:56:40 +0800242 return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) :
243 hw_read(ci, OP_PORTSC, PORTSC_HSP);
David Lopoaa69a802008-11-17 14:14:51 -0800244}
245
246/**
David Lopoaa69a802008-11-17 14:14:51 -0800247 * hw_test_and_clear_complete: test & clear complete status (execute without
248 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200249 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800250 *
251 * This function returns complete status
252 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300253static int hw_test_and_clear_complete(struct ci_hdrc *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800254{
Richard Zhao26c696c2012-07-07 22:56:40 +0800255 n = ep_to_bit(ci, n);
256 return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800257}
258
259/**
260 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
261 * without interruption)
262 *
263 * This function returns active interrutps
264 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300265static u32 hw_test_and_clear_intr_active(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800266{
Richard Zhao26c696c2012-07-07 22:56:40 +0800267 u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800268
Richard Zhao26c696c2012-07-07 22:56:40 +0800269 hw_write(ci, OP_USBSTS, ~0, reg);
David Lopoaa69a802008-11-17 14:14:51 -0800270 return reg;
271}
272
273/**
274 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
275 * interruption)
276 *
277 * This function returns guard value
278 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300279static int hw_test_and_clear_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800280{
Richard Zhao26c696c2012-07-07 22:56:40 +0800281 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800282}
283
284/**
285 * hw_test_and_set_setup_guard: test & set setup guard (execute without
286 * interruption)
287 *
288 * This function returns guard value
289 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300290static int hw_test_and_set_setup_guard(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800291{
Richard Zhao26c696c2012-07-07 22:56:40 +0800292 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
David Lopoaa69a802008-11-17 14:14:51 -0800293}
294
295/**
296 * hw_usb_set_address: configures USB address (execute without interruption)
297 * @value: new USB address
298 *
Alexander Shishkinef15e542012-05-11 17:25:43 +0300299 * This function explicitly sets the address, without the "USBADRA" (advance)
300 * feature, which is not supported by older versions of the controller.
David Lopoaa69a802008-11-17 14:14:51 -0800301 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300302static void hw_usb_set_address(struct ci_hdrc *ci, u8 value)
David Lopoaa69a802008-11-17 14:14:51 -0800303{
Richard Zhao26c696c2012-07-07 22:56:40 +0800304 hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR,
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200305 value << __ffs(DEVICEADDR_USBADR));
David Lopoaa69a802008-11-17 14:14:51 -0800306}
307
308/**
309 * hw_usb_reset: restart device after a bus reset (execute without
310 * interruption)
311 *
312 * This function returns an error code
313 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300314static int hw_usb_reset(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800315{
Richard Zhao26c696c2012-07-07 22:56:40 +0800316 hw_usb_set_address(ci, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800317
318 /* ESS flushes only at end?!? */
Richard Zhao26c696c2012-07-07 22:56:40 +0800319 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800320
321 /* clear setup token semaphores */
Richard Zhao26c696c2012-07-07 22:56:40 +0800322 hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800323
324 /* clear complete status */
Richard Zhao26c696c2012-07-07 22:56:40 +0800325 hw_write(ci, OP_ENDPTCOMPLETE, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800326
327 /* wait until all bits cleared */
Richard Zhao26c696c2012-07-07 22:56:40 +0800328 while (hw_read(ci, OP_ENDPTPRIME, ~0))
David Lopoaa69a802008-11-17 14:14:51 -0800329 udelay(10); /* not RTOS friendly */
330
331 /* reset all endpoints ? */
332
333 /* reset internal status and wait for further instructions
334 no need to verify the port reset status (ESS does it) */
335
336 return 0;
337}
338
339/******************************************************************************
David Lopoaa69a802008-11-17 14:14:51 -0800340 * UTIL block
341 *****************************************************************************/
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300342
Alexander Shishkin8e229782013-06-24 14:46:36 +0300343static int add_td_to_list(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300344 unsigned length)
345{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300346 int i;
347 u32 temp;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300348 struct td_node *lastnode, *node = kzalloc(sizeof(struct td_node),
349 GFP_ATOMIC);
350
351 if (node == NULL)
352 return -ENOMEM;
353
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300354 node->ptr = dma_pool_alloc(hwep->td_pool, GFP_ATOMIC,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300355 &node->dma);
356 if (node->ptr == NULL) {
357 kfree(node);
358 return -ENOMEM;
359 }
360
Alexander Shishkin8e229782013-06-24 14:46:36 +0300361 memset(node->ptr, 0, sizeof(struct ci_hw_td));
Michael Grzeschik2e270412013-06-13 17:59:54 +0300362 node->ptr->token = cpu_to_le32(length << __ffs(TD_TOTAL_BYTES));
363 node->ptr->token &= cpu_to_le32(TD_TOTAL_BYTES);
364 node->ptr->token |= cpu_to_le32(TD_STATUS_ACTIVE);
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800365 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX) {
366 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
367
368 if (hwreq->req.length == 0
369 || hwreq->req.length % hwep->ep.maxpacket)
370 mul++;
371 node->ptr->token |= mul << __ffs(TD_MULTO);
372 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300373
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300374 temp = (u32) (hwreq->req.dma + hwreq->req.actual);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300375 if (length) {
376 node->ptr->page[0] = cpu_to_le32(temp);
377 for (i = 1; i < TD_PAGE_COUNT; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300378 u32 page = temp + i * CI_HDRC_PAGE_SIZE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300379 page &= ~TD_RESERVED_MASK;
380 node->ptr->page[i] = cpu_to_le32(page);
381 }
382 }
383
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300384 hwreq->req.actual += length;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300385
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300386 if (!list_empty(&hwreq->tds)) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300387 /* get the last entry */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300388 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300389 struct td_node, td);
390 lastnode->ptr->next = cpu_to_le32(node->dma);
391 }
392
393 INIT_LIST_HEAD(&node->td);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300394 list_add_tail(&node->td, &hwreq->tds);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300395
396 return 0;
397}
398
David Lopoaa69a802008-11-17 14:14:51 -0800399/**
400 * _usb_addr: calculates endpoint address from direction & number
401 * @ep: endpoint
402 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300403static inline u8 _usb_addr(struct ci_hw_ep *ep)
David Lopoaa69a802008-11-17 14:14:51 -0800404{
405 return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num;
406}
407
408/**
409 * _hardware_queue: configures a request at hardware level
410 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300411 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800412 *
413 * This function returns an error code
414 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300415static int _hardware_enqueue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800416{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300417 struct ci_hdrc *ci = hwep->ci;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530418 int ret = 0;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300419 unsigned rest = hwreq->req.length;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300420 int pages = TD_PAGE_COUNT;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300421 struct td_node *firstnode, *lastnode;
David Lopoaa69a802008-11-17 14:14:51 -0800422
David Lopoaa69a802008-11-17 14:14:51 -0800423 /* don't queue twice */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300424 if (hwreq->req.status == -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800425 return -EALREADY;
426
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300427 hwreq->req.status = -EALREADY;
David Lopoaa69a802008-11-17 14:14:51 -0800428
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300429 ret = usb_gadget_map_request(&ci->gadget, &hwreq->req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300430 if (ret)
431 return ret;
432
Michael Grzeschik2e270412013-06-13 17:59:54 +0300433 /*
434 * The first buffer could be not page aligned.
435 * In that case we have to span into one extra td.
436 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300437 if (hwreq->req.dma % PAGE_SIZE)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300438 pages--;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300439
Michael Grzeschik2e270412013-06-13 17:59:54 +0300440 if (rest == 0)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300441 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300442
Michael Grzeschik2e270412013-06-13 17:59:54 +0300443 while (rest > 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300444 unsigned count = min(hwreq->req.length - hwreq->req.actual,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300445 (unsigned)(pages * CI_HDRC_PAGE_SIZE));
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300446 add_td_to_list(hwep, hwreq, count);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300447 rest -= count;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200448 }
David Lopoaa69a802008-11-17 14:14:51 -0800449
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300450 if (hwreq->req.zero && hwreq->req.length
451 && (hwreq->req.length % hwep->ep.maxpacket == 0))
452 add_td_to_list(hwep, hwreq, 0);
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300453
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300454 firstnode = list_first_entry(&hwreq->tds, struct td_node, td);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300455
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300456 lastnode = list_entry(hwreq->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300457 struct td_node, td);
458
459 lastnode->ptr->next = cpu_to_le32(TD_TERMINATE);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300460 if (!hwreq->req.no_interrupt)
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300461 lastnode->ptr->token |= cpu_to_le32(TD_IOC);
Michael Grzeschika9c17432013-04-04 13:13:46 +0300462 wmb();
463
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300464 hwreq->req.actual = 0;
465 if (!list_empty(&hwep->qh.queue)) {
Alexander Shishkin8e229782013-06-24 14:46:36 +0300466 struct ci_hw_req *hwreqprev;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300467 int n = hw_ep_bit(hwep->num, hwep->dir);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530468 int tmp_stat;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300469 struct td_node *prevlastnode;
470 u32 next = firstnode->dma & TD_ADDR_MASK;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530471
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300472 hwreqprev = list_entry(hwep->qh.queue.prev,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300473 struct ci_hw_req, queue);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300474 prevlastnode = list_entry(hwreqprev->tds.prev,
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300475 struct td_node, td);
476
477 prevlastnode->ptr->next = cpu_to_le32(next);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530478 wmb();
Richard Zhao26c696c2012-07-07 22:56:40 +0800479 if (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530480 goto done;
481 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800482 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
483 tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
484 } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
485 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530486 if (tmp_stat)
487 goto done;
488 }
489
490 /* QH configuration */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300491 hwep->qh.ptr->td.next = cpu_to_le32(firstnode->dma);
492 hwep->qh.ptr->td.token &=
Michael Grzeschik080ff5f2013-03-30 12:54:04 +0200493 cpu_to_le32(~(TD_STATUS_HALTED|TD_STATUS_ACTIVE));
David Lopoaa69a802008-11-17 14:14:51 -0800494
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800495 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == RX) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300496 u32 mul = hwreq->req.length / hwep->ep.maxpacket;
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300497
Peter Chen2fc5a7d2014-01-10 13:51:32 +0800498 if (hwreq->req.length == 0
499 || hwreq->req.length % hwep->ep.maxpacket)
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300500 mul++;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300501 hwep->qh.ptr->cap |= mul << __ffs(QH_MULT);
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300502 }
503
David Lopoaa69a802008-11-17 14:14:51 -0800504 wmb(); /* synchronize before ep prime */
505
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300506 ret = hw_ep_prime(ci, hwep->num, hwep->dir,
507 hwep->type == USB_ENDPOINT_XFER_CONTROL);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530508done:
509 return ret;
David Lopoaa69a802008-11-17 14:14:51 -0800510}
511
Michael Grzeschik2e270412013-06-13 17:59:54 +0300512/*
513 * free_pending_td: remove a pending request for the endpoint
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300514 * @hwep: endpoint
Michael Grzeschik2e270412013-06-13 17:59:54 +0300515 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300516static void free_pending_td(struct ci_hw_ep *hwep)
Michael Grzeschik2e270412013-06-13 17:59:54 +0300517{
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300518 struct td_node *pending = hwep->pending_td;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300519
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300520 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma);
521 hwep->pending_td = NULL;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300522 kfree(pending);
523}
524
David Lopoaa69a802008-11-17 14:14:51 -0800525/**
526 * _hardware_dequeue: handles a request at hardware level
527 * @gadget: gadget
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300528 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800529 *
530 * This function returns an error code
531 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300532static int _hardware_dequeue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
David Lopoaa69a802008-11-17 14:14:51 -0800533{
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300534 u32 tmptoken;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300535 struct td_node *node, *tmpnode;
536 unsigned remaining_length;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300537 unsigned actual = hwreq->req.length;
Michael Grzeschik9e506432013-03-30 12:54:07 +0200538
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300539 if (hwreq->req.status != -EALREADY)
David Lopoaa69a802008-11-17 14:14:51 -0800540 return -EINVAL;
541
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300542 hwreq->req.status = 0;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530543
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300544 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300545 tmptoken = le32_to_cpu(node->ptr->token);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300546 if ((TD_STATUS_ACTIVE & tmptoken) != 0) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300547 hwreq->req.status = -EALREADY;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530548 return -EBUSY;
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +0300549 }
David Lopoaa69a802008-11-17 14:14:51 -0800550
Michael Grzeschik2e270412013-06-13 17:59:54 +0300551 remaining_length = (tmptoken & TD_TOTAL_BYTES);
552 remaining_length >>= __ffs(TD_TOTAL_BYTES);
553 actual -= remaining_length;
554
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300555 hwreq->req.status = tmptoken & TD_STATUS;
556 if ((TD_STATUS_HALTED & hwreq->req.status)) {
557 hwreq->req.status = -EPIPE;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300558 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300559 } else if ((TD_STATUS_DT_ERR & hwreq->req.status)) {
560 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300561 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300562 } else if ((TD_STATUS_TR_ERR & hwreq->req.status)) {
563 hwreq->req.status = -EILSEQ;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300564 break;
565 }
566
567 if (remaining_length) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300568 if (hwep->dir) {
569 hwreq->req.status = -EPROTO;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300570 break;
571 }
572 }
573 /*
574 * As the hardware could still address the freed td
575 * which will run the udc unusable, the cleanup of the
576 * td has to be delayed by one.
577 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300578 if (hwep->pending_td)
579 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300580
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300581 hwep->pending_td = node;
Michael Grzeschik2e270412013-06-13 17:59:54 +0300582 list_del_init(&node->td);
583 }
David Lopoaa69a802008-11-17 14:14:51 -0800584
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300585 usb_gadget_unmap_request(&hwep->ci->gadget, &hwreq->req, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800586
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300587 hwreq->req.actual += actual;
David Lopoaa69a802008-11-17 14:14:51 -0800588
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300589 if (hwreq->req.status)
590 return hwreq->req.status;
David Lopoaa69a802008-11-17 14:14:51 -0800591
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300592 return hwreq->req.actual;
David Lopoaa69a802008-11-17 14:14:51 -0800593}
594
595/**
596 * _ep_nuke: dequeues all endpoint requests
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300597 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800598 *
599 * This function returns an error code
600 * Caller must hold lock
601 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300602static int _ep_nuke(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300603__releases(hwep->lock)
604__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800605{
Michael Grzeschik2e270412013-06-13 17:59:54 +0300606 struct td_node *node, *tmpnode;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300607 if (hwep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800608 return -EINVAL;
609
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300610 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800611
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300612 while (!list_empty(&hwep->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -0800613
614 /* pop oldest request */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300615 struct ci_hw_req *hwreq = list_entry(hwep->qh.queue.next,
616 struct ci_hw_req, queue);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300617
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300618 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
619 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300620 list_del_init(&node->td);
621 node->ptr = NULL;
622 kfree(node);
Michael Grzeschik7ca2cd22013-04-04 13:13:47 +0300623 }
624
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300625 list_del_init(&hwreq->queue);
626 hwreq->req.status = -ESHUTDOWN;
David Lopoaa69a802008-11-17 14:14:51 -0800627
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300628 if (hwreq->req.complete != NULL) {
629 spin_unlock(hwep->lock);
630 hwreq->req.complete(&hwep->ep, &hwreq->req);
631 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800632 }
633 }
Michael Grzeschik2e270412013-06-13 17:59:54 +0300634
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300635 if (hwep->pending_td)
636 free_pending_td(hwep);
Michael Grzeschik2e270412013-06-13 17:59:54 +0300637
David Lopoaa69a802008-11-17 14:14:51 -0800638 return 0;
639}
640
641/**
642 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
643 * @gadget: gadget
644 *
645 * This function returns an error code
David Lopoaa69a802008-11-17 14:14:51 -0800646 */
647static int _gadget_stop_activity(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -0800648{
649 struct usb_ep *ep;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300650 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530651 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -0800652
Richard Zhao26c696c2012-07-07 22:56:40 +0800653 spin_lock_irqsave(&ci->lock, flags);
654 ci->gadget.speed = USB_SPEED_UNKNOWN;
655 ci->remote_wakeup = 0;
656 ci->suspended = 0;
657 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530658
David Lopoaa69a802008-11-17 14:14:51 -0800659 /* flush all endpoints */
660 gadget_for_each_ep(ep, gadget) {
661 usb_ep_fifo_flush(ep);
662 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800663 usb_ep_fifo_flush(&ci->ep0out->ep);
664 usb_ep_fifo_flush(&ci->ep0in->ep);
David Lopoaa69a802008-11-17 14:14:51 -0800665
David Lopoaa69a802008-11-17 14:14:51 -0800666 /* make sure to disable all endpoints */
667 gadget_for_each_ep(ep, gadget) {
668 usb_ep_disable(ep);
669 }
David Lopoaa69a802008-11-17 14:14:51 -0800670
Richard Zhao26c696c2012-07-07 22:56:40 +0800671 if (ci->status != NULL) {
672 usb_ep_free_request(&ci->ep0in->ep, ci->status);
673 ci->status = NULL;
David Lopoaa69a802008-11-17 14:14:51 -0800674 }
675
David Lopoaa69a802008-11-17 14:14:51 -0800676 return 0;
677}
678
679/******************************************************************************
680 * ISR block
681 *****************************************************************************/
682/**
683 * isr_reset_handler: USB reset interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800684 * @ci: UDC device
David Lopoaa69a802008-11-17 14:14:51 -0800685 *
686 * This function resets USB engine after a bus reset occurred
687 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300688static void isr_reset_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +0800689__releases(ci->lock)
690__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800691{
David Lopoaa69a802008-11-17 14:14:51 -0800692 int retval;
693
Peter Chena3aee362013-10-09 14:39:52 +0800694 spin_unlock(&ci->lock);
Peter Chen92b336d2013-09-17 12:37:19 +0800695 if (ci->gadget.speed != USB_SPEED_UNKNOWN) {
696 if (ci->driver)
697 ci->driver->disconnect(&ci->gadget);
698 }
699
Richard Zhao26c696c2012-07-07 22:56:40 +0800700 retval = _gadget_stop_activity(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800701 if (retval)
702 goto done;
703
Richard Zhao26c696c2012-07-07 22:56:40 +0800704 retval = hw_usb_reset(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800705 if (retval)
706 goto done;
707
Richard Zhao26c696c2012-07-07 22:56:40 +0800708 ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC);
709 if (ci->status == NULL)
Anji jonnalaac1aa6a2011-05-02 11:56:32 +0530710 retval = -ENOMEM;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530711
Michael Grzeschikb9322252012-05-11 17:25:50 +0300712done:
Richard Zhao26c696c2012-07-07 22:56:40 +0800713 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800714
David Lopoaa69a802008-11-17 14:14:51 -0800715 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +0800716 dev_err(ci->dev, "error: %i\n", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800717}
718
719/**
720 * isr_get_status_complete: get_status request complete function
721 * @ep: endpoint
722 * @req: request handled
723 *
724 * Caller must release lock
725 */
726static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
727{
Alexander Shishkin0f089092012-05-08 23:29:02 +0300728 if (ep == NULL || req == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800729 return;
David Lopoaa69a802008-11-17 14:14:51 -0800730
731 kfree(req->buf);
732 usb_ep_free_request(ep, req);
733}
734
735/**
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200736 * _ep_queue: queues (submits) an I/O request to an endpoint
737 *
738 * Caller must hold lock
739 */
740static int _ep_queue(struct usb_ep *ep, struct usb_request *req,
741 gfp_t __maybe_unused gfp_flags)
742{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300743 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
744 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
745 struct ci_hdrc *ci = hwep->ci;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200746 int retval = 0;
747
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300748 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200749 return -EINVAL;
750
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300751 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200752 if (req->length)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300753 hwep = (ci->ep0_dir == RX) ?
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200754 ci->ep0out : ci->ep0in;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300755 if (!list_empty(&hwep->qh.queue)) {
756 _ep_nuke(hwep);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200757 retval = -EOVERFLOW;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300758 dev_warn(hwep->ci->dev, "endpoint ctrl %X nuked\n",
759 _usb_addr(hwep));
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200760 }
761 }
762
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300763 if (usb_endpoint_xfer_isoc(hwep->ep.desc) &&
764 hwreq->req.length > (1 + hwep->ep.mult) * hwep->ep.maxpacket) {
765 dev_err(hwep->ci->dev, "request length too big for isochronous\n");
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +0300766 return -EMSGSIZE;
767 }
768
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200769 /* first nuke then test link, e.g. previous status has not sent */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300770 if (!list_empty(&hwreq->queue)) {
771 dev_err(hwep->ci->dev, "request already in queue\n");
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200772 return -EBUSY;
773 }
774
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200775 /* push request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300776 hwreq->req.status = -EINPROGRESS;
777 hwreq->req.actual = 0;
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200778
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300779 retval = _hardware_enqueue(hwep, hwreq);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200780
781 if (retval == -EALREADY)
782 retval = 0;
783 if (!retval)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300784 list_add_tail(&hwreq->queue, &hwep->qh.queue);
Michael Grzeschikdd064e92013-03-30 12:54:09 +0200785
786 return retval;
787}
788
789/**
David Lopoaa69a802008-11-17 14:14:51 -0800790 * isr_get_status_response: get_status request response
Richard Zhao26c696c2012-07-07 22:56:40 +0800791 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800792 * @setup: setup request packet
793 *
794 * This function returns an error code
795 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300796static int isr_get_status_response(struct ci_hdrc *ci,
David Lopoaa69a802008-11-17 14:14:51 -0800797 struct usb_ctrlrequest *setup)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300798__releases(hwep->lock)
799__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800800{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300801 struct ci_hw_ep *hwep = ci->ep0in;
David Lopoaa69a802008-11-17 14:14:51 -0800802 struct usb_request *req = NULL;
803 gfp_t gfp_flags = GFP_ATOMIC;
804 int dir, num, retval;
805
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300806 if (hwep == NULL || setup == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800807 return -EINVAL;
808
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300809 spin_unlock(hwep->lock);
810 req = usb_ep_alloc_request(&hwep->ep, gfp_flags);
811 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800812 if (req == NULL)
813 return -ENOMEM;
814
815 req->complete = isr_get_status_complete;
816 req->length = 2;
817 req->buf = kzalloc(req->length, gfp_flags);
818 if (req->buf == NULL) {
819 retval = -ENOMEM;
820 goto err_free_req;
821 }
822
823 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530824 /* Assume that device is bus powered for now. */
Richard Zhao26c696c2012-07-07 22:56:40 +0800825 *(u16 *)req->buf = ci->remote_wakeup << 1;
David Lopoaa69a802008-11-17 14:14:51 -0800826 retval = 0;
827 } else if ((setup->bRequestType & USB_RECIP_MASK) \
828 == USB_RECIP_ENDPOINT) {
829 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
830 TX : RX;
831 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Richard Zhao26c696c2012-07-07 22:56:40 +0800832 *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir);
David Lopoaa69a802008-11-17 14:14:51 -0800833 }
834 /* else do nothing; reserved for future use */
835
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300836 retval = _ep_queue(&hwep->ep, req, gfp_flags);
David Lopoaa69a802008-11-17 14:14:51 -0800837 if (retval)
838 goto err_free_buf;
839
840 return 0;
841
842 err_free_buf:
843 kfree(req->buf);
844 err_free_req:
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300845 spin_unlock(hwep->lock);
846 usb_ep_free_request(&hwep->ep, req);
847 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800848 return retval;
849}
850
851/**
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530852 * isr_setup_status_complete: setup_status request complete function
853 * @ep: endpoint
854 * @req: request handled
855 *
856 * Caller must release lock. Put the port in test mode if test mode
857 * feature is selected.
858 */
859static void
860isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
861{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300862 struct ci_hdrc *ci = req->context;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530863 unsigned long flags;
864
Richard Zhao26c696c2012-07-07 22:56:40 +0800865 if (ci->setaddr) {
866 hw_usb_set_address(ci, ci->address);
867 ci->setaddr = false;
Alexander Shishkinef15e542012-05-11 17:25:43 +0300868 }
869
Richard Zhao26c696c2012-07-07 22:56:40 +0800870 spin_lock_irqsave(&ci->lock, flags);
871 if (ci->test_mode)
872 hw_port_test_set(ci, ci->test_mode);
873 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530874}
875
876/**
David Lopoaa69a802008-11-17 14:14:51 -0800877 * isr_setup_status_phase: queues the status phase of a setup transation
Richard Zhao26c696c2012-07-07 22:56:40 +0800878 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800879 *
880 * This function returns an error code
881 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300882static int isr_setup_status_phase(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800883{
884 int retval;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300885 struct ci_hw_ep *hwep;
David Lopoaa69a802008-11-17 14:14:51 -0800886
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300887 hwep = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in;
Richard Zhao26c696c2012-07-07 22:56:40 +0800888 ci->status->context = ci;
889 ci->status->complete = isr_setup_status_complete;
David Lopoaa69a802008-11-17 14:14:51 -0800890
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300891 retval = _ep_queue(&hwep->ep, ci->status, GFP_ATOMIC);
David Lopoaa69a802008-11-17 14:14:51 -0800892
893 return retval;
894}
895
896/**
897 * isr_tr_complete_low: transaction complete low level handler
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300898 * @hwep: endpoint
David Lopoaa69a802008-11-17 14:14:51 -0800899 *
900 * This function returns an error code
901 * Caller must hold lock
902 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300903static int isr_tr_complete_low(struct ci_hw_ep *hwep)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300904__releases(hwep->lock)
905__acquires(hwep->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800906{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300907 struct ci_hw_req *hwreq, *hwreqtemp;
908 struct ci_hw_ep *hweptemp = hwep;
Michael Grzeschikdb899602012-09-12 14:58:04 +0300909 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800910
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300911 list_for_each_entry_safe(hwreq, hwreqtemp, &hwep->qh.queue,
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530912 queue) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300913 retval = _hardware_dequeue(hwep, hwreq);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530914 if (retval < 0)
915 break;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +0300916 list_del_init(&hwreq->queue);
917 if (hwreq->req.complete != NULL) {
918 spin_unlock(hwep->lock);
919 if ((hwep->type == USB_ENDPOINT_XFER_CONTROL) &&
920 hwreq->req.length)
921 hweptemp = hwep->ci->ep0in;
922 hwreq->req.complete(&hweptemp->ep, &hwreq->req);
923 spin_lock(hwep->lock);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530924 }
925 }
David Lopoaa69a802008-11-17 14:14:51 -0800926
Pavankumar Kondetief907482011-05-02 11:56:27 +0530927 if (retval == -EBUSY)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530928 retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800929
David Lopoaa69a802008-11-17 14:14:51 -0800930 return retval;
931}
932
933/**
Peter Chend7b00e32014-03-11 13:47:37 +0800934 * isr_setup_packet_handler: setup packet handler
935 * @ci: UDC descriptor
936 *
937 * This function handles setup packet
938 */
939static void isr_setup_packet_handler(struct ci_hdrc *ci)
940__releases(ci->lock)
941__acquires(ci->lock)
942{
943 struct ci_hw_ep *hwep = &ci->ci_hw_ep[0];
944 struct usb_ctrlrequest req;
945 int type, num, dir, err = -EINVAL;
946 u8 tmode = 0;
947
948 /*
949 * Flush data and handshake transactions of previous
950 * setup packet.
951 */
952 _ep_nuke(ci->ep0out);
953 _ep_nuke(ci->ep0in);
954
955 /* read_setup_packet */
956 do {
957 hw_test_and_set_setup_guard(ci);
958 memcpy(&req, &hwep->qh.ptr->setup, sizeof(req));
959 } while (!hw_test_and_clear_setup_guard(ci));
960
961 type = req.bRequestType;
962
963 ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
964
965 switch (req.bRequest) {
966 case USB_REQ_CLEAR_FEATURE:
967 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
968 le16_to_cpu(req.wValue) ==
969 USB_ENDPOINT_HALT) {
970 if (req.wLength != 0)
971 break;
972 num = le16_to_cpu(req.wIndex);
973 dir = num & USB_ENDPOINT_DIR_MASK;
974 num &= USB_ENDPOINT_NUMBER_MASK;
975 if (dir) /* TX */
976 num += ci->hw_ep_max / 2;
977 if (!ci->ci_hw_ep[num].wedge) {
978 spin_unlock(&ci->lock);
979 err = usb_ep_clear_halt(
980 &ci->ci_hw_ep[num].ep);
981 spin_lock(&ci->lock);
982 if (err)
983 break;
984 }
985 err = isr_setup_status_phase(ci);
986 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
987 le16_to_cpu(req.wValue) ==
988 USB_DEVICE_REMOTE_WAKEUP) {
989 if (req.wLength != 0)
990 break;
991 ci->remote_wakeup = 0;
992 err = isr_setup_status_phase(ci);
993 } else {
994 goto delegate;
995 }
996 break;
997 case USB_REQ_GET_STATUS:
998 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
999 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
1000 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
1001 goto delegate;
1002 if (le16_to_cpu(req.wLength) != 2 ||
1003 le16_to_cpu(req.wValue) != 0)
1004 break;
1005 err = isr_get_status_response(ci, &req);
1006 break;
1007 case USB_REQ_SET_ADDRESS:
1008 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
1009 goto delegate;
1010 if (le16_to_cpu(req.wLength) != 0 ||
1011 le16_to_cpu(req.wIndex) != 0)
1012 break;
1013 ci->address = (u8)le16_to_cpu(req.wValue);
1014 ci->setaddr = true;
1015 err = isr_setup_status_phase(ci);
1016 break;
1017 case USB_REQ_SET_FEATURE:
1018 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1019 le16_to_cpu(req.wValue) ==
1020 USB_ENDPOINT_HALT) {
1021 if (req.wLength != 0)
1022 break;
1023 num = le16_to_cpu(req.wIndex);
1024 dir = num & USB_ENDPOINT_DIR_MASK;
1025 num &= USB_ENDPOINT_NUMBER_MASK;
1026 if (dir) /* TX */
1027 num += ci->hw_ep_max / 2;
1028
1029 spin_unlock(&ci->lock);
1030 err = usb_ep_set_halt(&ci->ci_hw_ep[num].ep);
1031 spin_lock(&ci->lock);
1032 if (!err)
1033 isr_setup_status_phase(ci);
1034 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
1035 if (req.wLength != 0)
1036 break;
1037 switch (le16_to_cpu(req.wValue)) {
1038 case USB_DEVICE_REMOTE_WAKEUP:
1039 ci->remote_wakeup = 1;
1040 err = isr_setup_status_phase(ci);
1041 break;
1042 case USB_DEVICE_TEST_MODE:
1043 tmode = le16_to_cpu(req.wIndex) >> 8;
1044 switch (tmode) {
1045 case TEST_J:
1046 case TEST_K:
1047 case TEST_SE0_NAK:
1048 case TEST_PACKET:
1049 case TEST_FORCE_EN:
1050 ci->test_mode = tmode;
1051 err = isr_setup_status_phase(
1052 ci);
1053 break;
1054 default:
1055 break;
1056 }
Li Jun95f55552014-04-23 15:56:47 +08001057 break;
1058 case USB_DEVICE_B_HNP_ENABLE:
1059 if (ci_otg_is_fsm_mode(ci)) {
1060 ci->gadget.b_hnp_enable = 1;
1061 err = isr_setup_status_phase(
1062 ci);
1063 }
1064 break;
Peter Chend7b00e32014-03-11 13:47:37 +08001065 default:
1066 goto delegate;
1067 }
1068 } else {
1069 goto delegate;
1070 }
1071 break;
1072 default:
1073delegate:
1074 if (req.wLength == 0) /* no data phase */
1075 ci->ep0_dir = TX;
1076
1077 spin_unlock(&ci->lock);
1078 err = ci->driver->setup(&ci->gadget, &req);
1079 spin_lock(&ci->lock);
1080 break;
1081 }
1082
1083 if (err < 0) {
1084 spin_unlock(&ci->lock);
1085 if (usb_ep_set_halt(&hwep->ep))
1086 dev_err(ci->dev, "error: ep_set_halt\n");
1087 spin_lock(&ci->lock);
1088 }
1089}
1090
1091/**
David Lopoaa69a802008-11-17 14:14:51 -08001092 * isr_tr_complete_handler: transaction complete interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +08001093 * @ci: UDC descriptor
David Lopoaa69a802008-11-17 14:14:51 -08001094 *
1095 * This function handles traffic events
1096 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001097static void isr_tr_complete_handler(struct ci_hdrc *ci)
Richard Zhao26c696c2012-07-07 22:56:40 +08001098__releases(ci->lock)
1099__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -08001100{
1101 unsigned i;
Peter Chend7b00e32014-03-11 13:47:37 +08001102 int err;
David Lopoaa69a802008-11-17 14:14:51 -08001103
Richard Zhao26c696c2012-07-07 22:56:40 +08001104 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001105 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
David Lopoaa69a802008-11-17 14:14:51 -08001106
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001107 if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001108 continue; /* not configured */
1109
Richard Zhao26c696c2012-07-07 22:56:40 +08001110 if (hw_test_and_clear_complete(ci, i)) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001111 err = isr_tr_complete_low(hwep);
1112 if (hwep->type == USB_ENDPOINT_XFER_CONTROL) {
David Lopoaa69a802008-11-17 14:14:51 -08001113 if (err > 0) /* needs status phase */
Richard Zhao26c696c2012-07-07 22:56:40 +08001114 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001115 if (err < 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001116 spin_unlock(&ci->lock);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001117 if (usb_ep_set_halt(&hwep->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +08001118 dev_err(ci->dev,
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -07001119 "error: ep_set_halt\n");
Richard Zhao26c696c2012-07-07 22:56:40 +08001120 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001121 }
1122 }
1123 }
1124
Peter Chen64fc06c2014-02-19 13:41:41 +08001125 /* Only handle setup packet below */
Peter Chend7b00e32014-03-11 13:47:37 +08001126 if (i == 0 &&
1127 hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(0)))
1128 isr_setup_packet_handler(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001129 }
1130}
1131
1132/******************************************************************************
1133 * ENDPT block
1134 *****************************************************************************/
1135/**
1136 * ep_enable: configure endpoint, making it usable
1137 *
1138 * Check usb_ep_enable() at "usb_gadget.h" for details
1139 */
1140static int ep_enable(struct usb_ep *ep,
1141 const struct usb_endpoint_descriptor *desc)
1142{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001143 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301144 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001145 unsigned long flags;
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001146 u32 cap = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001147
David Lopoaa69a802008-11-17 14:14:51 -08001148 if (ep == NULL || desc == NULL)
1149 return -EINVAL;
1150
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001151 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001152
1153 /* only internal SW should enable ctrl endpts */
1154
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001155 hwep->ep.desc = desc;
David Lopoaa69a802008-11-17 14:14:51 -08001156
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001157 if (!list_empty(&hwep->qh.queue))
1158 dev_warn(hwep->ci->dev, "enabling a non-empty endpoint!\n");
David Lopoaa69a802008-11-17 14:14:51 -08001159
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001160 hwep->dir = usb_endpoint_dir_in(desc) ? TX : RX;
1161 hwep->num = usb_endpoint_num(desc);
1162 hwep->type = usb_endpoint_type(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001163
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001164 hwep->ep.maxpacket = usb_endpoint_maxp(desc) & 0x07ff;
1165 hwep->ep.mult = QH_ISO_MULT(usb_endpoint_maxp(desc));
David Lopoaa69a802008-11-17 14:14:51 -08001166
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001167 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001168 cap |= QH_IOS;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001169 if (hwep->num)
Michael Grzeschik776ffc12013-03-30 12:54:06 +02001170 cap |= QH_ZLT;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001171 cap |= (hwep->ep.maxpacket << __ffs(QH_MAX_PKT)) & QH_MAX_PKT;
Peter Chen2fc5a7d2014-01-10 13:51:32 +08001172 /*
1173 * For ISO-TX, we set mult at QH as the largest value, and use
1174 * MultO at TD as real mult value.
1175 */
1176 if (hwep->type == USB_ENDPOINT_XFER_ISOC && hwep->dir == TX)
1177 cap |= 3 << __ffs(QH_MULT);
David Lopoaa69a802008-11-17 14:14:51 -08001178
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001179 hwep->qh.ptr->cap = cpu_to_le32(cap);
Michael Grzeschik1cd12a92013-03-30 12:54:05 +02001180
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001181 hwep->qh.ptr->td.next |= cpu_to_le32(TD_TERMINATE); /* needed? */
David Lopoaa69a802008-11-17 14:14:51 -08001182
Peter Chen64fc06c2014-02-19 13:41:41 +08001183 if (hwep->num != 0 && hwep->type == USB_ENDPOINT_XFER_CONTROL) {
1184 dev_err(hwep->ci->dev, "Set control xfer at non-ep0\n");
1185 retval = -EINVAL;
1186 }
1187
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301188 /*
1189 * Enable endpoints in the HW other than ep0 as ep0
1190 * is always enabled
1191 */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001192 if (hwep->num)
1193 retval |= hw_ep_enable(hwep->ci, hwep->num, hwep->dir,
1194 hwep->type);
David Lopoaa69a802008-11-17 14:14:51 -08001195
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001196 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001197 return retval;
1198}
1199
1200/**
1201 * ep_disable: endpoint is no longer usable
1202 *
1203 * Check usb_ep_disable() at "usb_gadget.h" for details
1204 */
1205static int ep_disable(struct usb_ep *ep)
1206{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001207 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001208 int direction, retval = 0;
1209 unsigned long flags;
1210
David Lopoaa69a802008-11-17 14:14:51 -08001211 if (ep == NULL)
1212 return -EINVAL;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001213 else if (hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001214 return -EBUSY;
1215
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001216 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001217
1218 /* only internal SW should disable ctrl endpts */
1219
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001220 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001221 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001222 retval |= _ep_nuke(hwep);
1223 retval |= hw_ep_disable(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001224
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001225 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1226 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001227
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001228 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001229
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001230 hwep->ep.desc = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001231
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001232 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001233 return retval;
1234}
1235
1236/**
1237 * ep_alloc_request: allocate a request object to use with this endpoint
1238 *
1239 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
1240 */
1241static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1242{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001243 struct ci_hw_req *hwreq = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001244
Alexander Shishkin0f089092012-05-08 23:29:02 +03001245 if (ep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001246 return NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001247
Alexander Shishkin8e229782013-06-24 14:46:36 +03001248 hwreq = kzalloc(sizeof(struct ci_hw_req), gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001249 if (hwreq != NULL) {
1250 INIT_LIST_HEAD(&hwreq->queue);
1251 INIT_LIST_HEAD(&hwreq->tds);
David Lopoaa69a802008-11-17 14:14:51 -08001252 }
1253
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001254 return (hwreq == NULL) ? NULL : &hwreq->req;
David Lopoaa69a802008-11-17 14:14:51 -08001255}
1256
1257/**
1258 * ep_free_request: frees a request object
1259 *
1260 * Check usb_ep_free_request() at "usb_gadget.h" for details
1261 */
1262static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
1263{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001264 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1265 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001266 struct td_node *node, *tmpnode;
David Lopoaa69a802008-11-17 14:14:51 -08001267 unsigned long flags;
1268
David Lopoaa69a802008-11-17 14:14:51 -08001269 if (ep == NULL || req == NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001270 return;
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001271 } else if (!list_empty(&hwreq->queue)) {
1272 dev_err(hwep->ci->dev, "freeing queued request\n");
David Lopoaa69a802008-11-17 14:14:51 -08001273 return;
1274 }
1275
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001276 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001277
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001278 list_for_each_entry_safe(node, tmpnode, &hwreq->tds, td) {
1279 dma_pool_free(hwep->td_pool, node->ptr, node->dma);
Michael Grzeschik2e270412013-06-13 17:59:54 +03001280 list_del_init(&node->td);
1281 node->ptr = NULL;
1282 kfree(node);
1283 }
Michael Grzeschikcc9e6c42013-06-13 17:59:53 +03001284
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001285 kfree(hwreq);
David Lopoaa69a802008-11-17 14:14:51 -08001286
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001287 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001288}
1289
1290/**
1291 * ep_queue: queues (submits) an I/O request to an endpoint
1292 *
1293 * Check usb_ep_queue()* at usb_gadget.h" for details
1294 */
1295static int ep_queue(struct usb_ep *ep, struct usb_request *req,
1296 gfp_t __maybe_unused gfp_flags)
1297{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001298 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001299 int retval = 0;
1300 unsigned long flags;
1301
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001302 if (ep == NULL || req == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001303 return -EINVAL;
1304
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001305 spin_lock_irqsave(hwep->lock, flags);
Michael Grzeschikdd064e92013-03-30 12:54:09 +02001306 retval = _ep_queue(ep, req, gfp_flags);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001307 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001308 return retval;
1309}
1310
1311/**
1312 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
1313 *
1314 * Check usb_ep_dequeue() at "usb_gadget.h" for details
1315 */
1316static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
1317{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001318 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
1319 struct ci_hw_req *hwreq = container_of(req, struct ci_hw_req, req);
David Lopoaa69a802008-11-17 14:14:51 -08001320 unsigned long flags;
1321
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001322 if (ep == NULL || req == NULL || hwreq->req.status != -EALREADY ||
1323 hwep->ep.desc == NULL || list_empty(&hwreq->queue) ||
1324 list_empty(&hwep->qh.queue))
David Lopoaa69a802008-11-17 14:14:51 -08001325 return -EINVAL;
1326
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001327 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001328
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001329 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001330
1331 /* pop request */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001332 list_del_init(&hwreq->queue);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001333
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001334 usb_gadget_unmap_request(&hwep->ci->gadget, req, hwep->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001335
David Lopoaa69a802008-11-17 14:14:51 -08001336 req->status = -ECONNRESET;
1337
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001338 if (hwreq->req.complete != NULL) {
1339 spin_unlock(hwep->lock);
1340 hwreq->req.complete(&hwep->ep, &hwreq->req);
1341 spin_lock(hwep->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001342 }
1343
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001344 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001345 return 0;
1346}
1347
1348/**
1349 * ep_set_halt: sets the endpoint halt feature
1350 *
1351 * Check usb_ep_set_halt() at "usb_gadget.h" for details
1352 */
1353static int ep_set_halt(struct usb_ep *ep, int value)
1354{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001355 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001356 int direction, retval = 0;
1357 unsigned long flags;
1358
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001359 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001360 return -EINVAL;
1361
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001362 if (usb_endpoint_xfer_isoc(hwep->ep.desc))
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +03001363 return -EOPNOTSUPP;
1364
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001365 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001366
1367#ifndef STALL_IN
1368 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001369 if (value && hwep->type == USB_ENDPOINT_XFER_BULK && hwep->dir == TX &&
1370 !list_empty(&hwep->qh.queue)) {
1371 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001372 return -EAGAIN;
1373 }
1374#endif
1375
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001376 direction = hwep->dir;
David Lopoaa69a802008-11-17 14:14:51 -08001377 do {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001378 retval |= hw_ep_set_halt(hwep->ci, hwep->num, hwep->dir, value);
David Lopoaa69a802008-11-17 14:14:51 -08001379
1380 if (!value)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001381 hwep->wedge = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001382
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001383 if (hwep->type == USB_ENDPOINT_XFER_CONTROL)
1384 hwep->dir = (hwep->dir == TX) ? RX : TX;
David Lopoaa69a802008-11-17 14:14:51 -08001385
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001386 } while (hwep->dir != direction);
David Lopoaa69a802008-11-17 14:14:51 -08001387
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001388 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001389 return retval;
1390}
1391
1392/**
1393 * ep_set_wedge: sets the halt feature and ignores clear requests
1394 *
1395 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
1396 */
1397static int ep_set_wedge(struct usb_ep *ep)
1398{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001399 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001400 unsigned long flags;
1401
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001402 if (ep == NULL || hwep->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001403 return -EINVAL;
1404
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001405 spin_lock_irqsave(hwep->lock, flags);
1406 hwep->wedge = 1;
1407 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001408
1409 return usb_ep_set_halt(ep);
1410}
1411
1412/**
1413 * ep_fifo_flush: flushes contents of a fifo
1414 *
1415 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
1416 */
1417static void ep_fifo_flush(struct usb_ep *ep)
1418{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001419 struct ci_hw_ep *hwep = container_of(ep, struct ci_hw_ep, ep);
David Lopoaa69a802008-11-17 14:14:51 -08001420 unsigned long flags;
1421
David Lopoaa69a802008-11-17 14:14:51 -08001422 if (ep == NULL) {
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001423 dev_err(hwep->ci->dev, "%02X: -EINVAL\n", _usb_addr(hwep));
David Lopoaa69a802008-11-17 14:14:51 -08001424 return;
1425 }
1426
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001427 spin_lock_irqsave(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001428
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001429 hw_ep_flush(hwep->ci, hwep->num, hwep->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001430
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001431 spin_unlock_irqrestore(hwep->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001432}
1433
1434/**
1435 * Endpoint-specific part of the API to the USB controller hardware
1436 * Check "usb_gadget.h" for details
1437 */
1438static const struct usb_ep_ops usb_ep_ops = {
1439 .enable = ep_enable,
1440 .disable = ep_disable,
1441 .alloc_request = ep_alloc_request,
1442 .free_request = ep_free_request,
1443 .queue = ep_queue,
1444 .dequeue = ep_dequeue,
1445 .set_halt = ep_set_halt,
1446 .set_wedge = ep_set_wedge,
1447 .fifo_flush = ep_fifo_flush,
1448};
1449
1450/******************************************************************************
1451 * GADGET block
1452 *****************************************************************************/
Alexander Shishkin8e229782013-06-24 14:46:36 +03001453static int ci_udc_vbus_session(struct usb_gadget *_gadget, int is_active)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301454{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001455 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301456 unsigned long flags;
1457 int gadget_ready = 0;
1458
Richard Zhao26c696c2012-07-07 22:56:40 +08001459 spin_lock_irqsave(&ci->lock, flags);
1460 ci->vbus_active = is_active;
1461 if (ci->driver)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301462 gadget_ready = 1;
Richard Zhao26c696c2012-07-07 22:56:40 +08001463 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301464
1465 if (gadget_ready) {
1466 if (is_active) {
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301467 pm_runtime_get_sync(&_gadget->dev);
Richard Zhao26c696c2012-07-07 22:56:40 +08001468 hw_device_reset(ci, USBMODE_CM_DC);
1469 hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chena107f8c2013-08-14 12:44:11 +03001470 dev_dbg(ci->dev, "Connected to host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301471 } else {
Peter Chen92b336d2013-09-17 12:37:19 +08001472 if (ci->driver)
1473 ci->driver->disconnect(&ci->gadget);
Richard Zhao26c696c2012-07-07 22:56:40 +08001474 hw_device_state(ci, 0);
1475 if (ci->platdata->notify_event)
1476 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001477 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001478 _gadget_stop_activity(&ci->gadget);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301479 pm_runtime_put_sync(&_gadget->dev);
Peter Chena107f8c2013-08-14 12:44:11 +03001480 dev_dbg(ci->dev, "Disconnected from host\n");
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301481 }
1482 }
1483
1484 return 0;
1485}
1486
Alexander Shishkin8e229782013-06-24 14:46:36 +03001487static int ci_udc_wakeup(struct usb_gadget *_gadget)
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301488{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001489 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301490 unsigned long flags;
1491 int ret = 0;
1492
Richard Zhao26c696c2012-07-07 22:56:40 +08001493 spin_lock_irqsave(&ci->lock, flags);
1494 if (!ci->remote_wakeup) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301495 ret = -EOPNOTSUPP;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301496 goto out;
1497 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001498 if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301499 ret = -EINVAL;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301500 goto out;
1501 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001502 hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301503out:
Richard Zhao26c696c2012-07-07 22:56:40 +08001504 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301505 return ret;
1506}
1507
Alexander Shishkin8e229782013-06-24 14:46:36 +03001508static int ci_udc_vbus_draw(struct usb_gadget *_gadget, unsigned ma)
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301509{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001510 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301511
Richard Zhao26c696c2012-07-07 22:56:40 +08001512 if (ci->transceiver)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001513 return usb_phy_set_power(ci->transceiver, ma);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301514 return -ENOTSUPP;
1515}
1516
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001517/* Change Data+ pullup status
1518 * this func is used by usb_gadget_connect/disconnet
1519 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001520static int ci_udc_pullup(struct usb_gadget *_gadget, int is_on)
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001521{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001522 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001523
Peter Chen4a647832013-08-14 12:44:15 +03001524 if (!ci->vbus_active)
1525 return -EOPNOTSUPP;
1526
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001527 if (is_on)
1528 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
1529 else
1530 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
1531
1532 return 0;
1533}
1534
Alexander Shishkin8e229782013-06-24 14:46:36 +03001535static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001536 struct usb_gadget_driver *driver);
Alexander Shishkin8e229782013-06-24 14:46:36 +03001537static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001538 struct usb_gadget_driver *driver);
David Lopoaa69a802008-11-17 14:14:51 -08001539/**
1540 * Device operations part of the API to the USB controller hardware,
1541 * which don't involve endpoints (or i/o)
1542 * Check "usb_gadget.h" for details
1543 */
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301544static const struct usb_gadget_ops usb_gadget_ops = {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001545 .vbus_session = ci_udc_vbus_session,
1546 .wakeup = ci_udc_wakeup,
1547 .pullup = ci_udc_pullup,
1548 .vbus_draw = ci_udc_vbus_draw,
1549 .udc_start = ci_udc_start,
1550 .udc_stop = ci_udc_stop,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301551};
David Lopoaa69a802008-11-17 14:14:51 -08001552
Alexander Shishkin8e229782013-06-24 14:46:36 +03001553static int init_eps(struct ci_hdrc *ci)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001554{
1555 int retval = 0, i, j;
1556
Richard Zhao26c696c2012-07-07 22:56:40 +08001557 for (i = 0; i < ci->hw_ep_max/2; i++)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001558 for (j = RX; j <= TX; j++) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001559 int k = i + j * ci->hw_ep_max/2;
Alexander Shishkin8e229782013-06-24 14:46:36 +03001560 struct ci_hw_ep *hwep = &ci->ci_hw_ep[k];
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001561
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001562 scnprintf(hwep->name, sizeof(hwep->name), "ep%i%s", i,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001563 (j == TX) ? "in" : "out");
1564
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001565 hwep->ci = ci;
1566 hwep->lock = &ci->lock;
1567 hwep->td_pool = ci->td_pool;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001568
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001569 hwep->ep.name = hwep->name;
1570 hwep->ep.ops = &usb_ep_ops;
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001571 /*
1572 * for ep0: maxP defined in desc, for other
1573 * eps, maxP is set by epautoconfig() called
1574 * by gadget layer
1575 */
Robert Baldygae117e742013-12-13 12:23:38 +01001576 usb_ep_set_maxpacket_limit(&hwep->ep, (unsigned short)~0);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001577
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001578 INIT_LIST_HEAD(&hwep->qh.queue);
1579 hwep->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL,
1580 &hwep->qh.dma);
1581 if (hwep->qh.ptr == NULL)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001582 retval = -ENOMEM;
1583 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001584 memset(hwep->qh.ptr, 0, sizeof(*hwep->qh.ptr));
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001585
1586 /*
1587 * set up shorthands for ep0 out and in endpoints,
1588 * don't add to gadget's ep_list
1589 */
1590 if (i == 0) {
1591 if (j == RX)
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001592 ci->ep0out = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001593 else
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001594 ci->ep0in = hwep;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001595
Robert Baldygae117e742013-12-13 12:23:38 +01001596 usb_ep_set_maxpacket_limit(&hwep->ep, CTRL_PAYLOAD_MAX);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001597 continue;
1598 }
1599
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001600 list_add_tail(&hwep->ep.ep_list, &ci->gadget.ep_list);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001601 }
1602
1603 return retval;
1604}
1605
Alexander Shishkin8e229782013-06-24 14:46:36 +03001606static void destroy_eps(struct ci_hdrc *ci)
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001607{
1608 int i;
1609
1610 for (i = 0; i < ci->hw_ep_max; i++) {
Alexander Shishkin8e229782013-06-24 14:46:36 +03001611 struct ci_hw_ep *hwep = &ci->ci_hw_ep[i];
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001612
Peter Chen4a295672013-09-10 15:34:39 +08001613 if (hwep->pending_td)
1614 free_pending_td(hwep);
Alexander Shishkin2dbc5c42013-06-13 18:00:03 +03001615 dma_pool_free(ci->qh_pool, hwep->qh.ptr, hwep->qh.dma);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001616 }
1617}
1618
David Lopoaa69a802008-11-17 14:14:51 -08001619/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001620 * ci_udc_start: register a gadget driver
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001621 * @gadget: our gadget
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001622 * @driver: the driver being registered
David Lopoaa69a802008-11-17 14:14:51 -08001623 *
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001624 * Interrupts are enabled here.
David Lopoaa69a802008-11-17 14:14:51 -08001625 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001626static int ci_udc_start(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001627 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001628{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001629 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301630 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001631 int retval = -ENOMEM;
1632
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001633 if (driver->disconnect == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001634 return -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -08001635
David Lopoaa69a802008-11-17 14:14:51 -08001636
Richard Zhao26c696c2012-07-07 22:56:40 +08001637 ci->ep0out->ep.desc = &ctrl_endpt_out_desc;
1638 retval = usb_ep_enable(&ci->ep0out->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301639 if (retval)
1640 return retval;
Felipe Balbi877c1f52011-06-29 16:41:57 +03001641
Richard Zhao26c696c2012-07-07 22:56:40 +08001642 ci->ep0in->ep.desc = &ctrl_endpt_in_desc;
1643 retval = usb_ep_enable(&ci->ep0in->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301644 if (retval)
1645 return retval;
David Lopoaa69a802008-11-17 14:14:51 -08001646
Richard Zhao26c696c2012-07-07 22:56:40 +08001647 ci->driver = driver;
Li Jun4dcf7202014-04-23 15:56:50 +08001648
1649 /* Start otg fsm for B-device */
1650 if (ci_otg_is_fsm_mode(ci) && ci->fsm.id) {
1651 ci_hdrc_otg_fsm_start(ci);
1652 return retval;
1653 }
1654
Richard Zhao26c696c2012-07-07 22:56:40 +08001655 pm_runtime_get_sync(&ci->gadget.dev);
Peter Chend268e9b2013-08-14 12:44:14 +03001656 if (ci->vbus_active) {
Peter Chen65b2fb32013-10-08 10:30:17 +08001657 spin_lock_irqsave(&ci->lock, flags);
Peter Chend268e9b2013-08-14 12:44:14 +03001658 hw_device_reset(ci, USBMODE_CM_DC);
1659 } else {
1660 pm_runtime_put_sync(&ci->gadget.dev);
Peter Chen65b2fb32013-10-08 10:30:17 +08001661 return retval;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301662 }
1663
Richard Zhao26c696c2012-07-07 22:56:40 +08001664 retval = hw_device_state(ci, ci->ep0out->qh.dma);
Peter Chen65b2fb32013-10-08 10:30:17 +08001665 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301666 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +08001667 pm_runtime_put_sync(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001668
David Lopoaa69a802008-11-17 14:14:51 -08001669 return retval;
1670}
David Lopoaa69a802008-11-17 14:14:51 -08001671
1672/**
Alexander Shishkin8e229782013-06-24 14:46:36 +03001673 * ci_udc_stop: unregister a gadget driver
David Lopoaa69a802008-11-17 14:14:51 -08001674 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001675static int ci_udc_stop(struct usb_gadget *gadget,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001676 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001677{
Alexander Shishkin8e229782013-06-24 14:46:36 +03001678 struct ci_hdrc *ci = container_of(gadget, struct ci_hdrc, gadget);
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001679 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001680
Richard Zhao26c696c2012-07-07 22:56:40 +08001681 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001682
Peter Chend268e9b2013-08-14 12:44:14 +03001683 if (ci->vbus_active) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001684 hw_device_state(ci, 0);
1685 if (ci->platdata->notify_event)
1686 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +03001687 CI_HDRC_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001688 spin_unlock_irqrestore(&ci->lock, flags);
1689 _gadget_stop_activity(&ci->gadget);
1690 spin_lock_irqsave(&ci->lock, flags);
1691 pm_runtime_put(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301692 }
David Lopoaa69a802008-11-17 14:14:51 -08001693
Peter Chenf84839d2013-09-17 12:37:20 +08001694 ci->driver = NULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001695 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001696
David Lopoaa69a802008-11-17 14:14:51 -08001697 return 0;
1698}
David Lopoaa69a802008-11-17 14:14:51 -08001699
1700/******************************************************************************
1701 * BUS block
1702 *****************************************************************************/
1703/**
Richard Zhao26c696c2012-07-07 22:56:40 +08001704 * udc_irq: ci interrupt handler
David Lopoaa69a802008-11-17 14:14:51 -08001705 *
1706 * This function returns IRQ_HANDLED if the IRQ has been handled
1707 * It locks access to registers
1708 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001709static irqreturn_t udc_irq(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001710{
David Lopoaa69a802008-11-17 14:14:51 -08001711 irqreturn_t retval;
1712 u32 intr;
1713
Richard Zhao26c696c2012-07-07 22:56:40 +08001714 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001715 return IRQ_HANDLED;
David Lopoaa69a802008-11-17 14:14:51 -08001716
Richard Zhao26c696c2012-07-07 22:56:40 +08001717 spin_lock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301718
Alexander Shishkin8e229782013-06-24 14:46:36 +03001719 if (ci->platdata->flags & CI_HDRC_REGS_SHARED) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001720 if (hw_read(ci, OP_USBMODE, USBMODE_CM) !=
Alexander Shishkin758fc982012-05-11 17:25:53 +03001721 USBMODE_CM_DC) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001722 spin_unlock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301723 return IRQ_NONE;
1724 }
1725 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001726 intr = hw_test_and_clear_intr_active(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001727
Alexander Shishkine443b332012-05-11 17:25:46 +03001728 if (intr) {
David Lopoaa69a802008-11-17 14:14:51 -08001729 /* order defines priority - do NOT change it */
Alexander Shishkine443b332012-05-11 17:25:46 +03001730 if (USBi_URI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001731 isr_reset_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001732
David Lopoaa69a802008-11-17 14:14:51 -08001733 if (USBi_PCI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001734 ci->gadget.speed = hw_port_is_high_speed(ci) ?
David Lopoaa69a802008-11-17 14:14:51 -08001735 USB_SPEED_HIGH : USB_SPEED_FULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001736 if (ci->suspended && ci->driver->resume) {
1737 spin_unlock(&ci->lock);
1738 ci->driver->resume(&ci->gadget);
1739 spin_lock(&ci->lock);
1740 ci->suspended = 0;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301741 }
David Lopoaa69a802008-11-17 14:14:51 -08001742 }
Alexander Shishkine443b332012-05-11 17:25:46 +03001743
1744 if (USBi_UI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001745 isr_tr_complete_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001746
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301747 if (USBi_SLI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001748 if (ci->gadget.speed != USB_SPEED_UNKNOWN &&
1749 ci->driver->suspend) {
1750 ci->suspended = 1;
1751 spin_unlock(&ci->lock);
1752 ci->driver->suspend(&ci->gadget);
1753 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301754 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301755 }
David Lopoaa69a802008-11-17 14:14:51 -08001756 retval = IRQ_HANDLED;
1757 } else {
David Lopoaa69a802008-11-17 14:14:51 -08001758 retval = IRQ_NONE;
1759 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001760 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001761
1762 return retval;
1763}
1764
1765/**
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001766 * udc_start: initialize gadget role
Richard Zhao26c696c2012-07-07 22:56:40 +08001767 * @ci: chipidea controller
David Lopoaa69a802008-11-17 14:14:51 -08001768 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001769static int udc_start(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001770{
Richard Zhao26c696c2012-07-07 22:56:40 +08001771 struct device *dev = ci->dev;
David Lopoaa69a802008-11-17 14:14:51 -08001772 int retval = 0;
1773
Richard Zhao26c696c2012-07-07 22:56:40 +08001774 spin_lock_init(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001775
Richard Zhao26c696c2012-07-07 22:56:40 +08001776 ci->gadget.ops = &usb_gadget_ops;
1777 ci->gadget.speed = USB_SPEED_UNKNOWN;
1778 ci->gadget.max_speed = USB_SPEED_HIGH;
Li Jun95f55552014-04-23 15:56:47 +08001779 ci->gadget.is_otg = ci->is_otg ? 1 : 0;
Richard Zhao26c696c2012-07-07 22:56:40 +08001780 ci->gadget.name = ci->platdata->name;
David Lopoaa69a802008-11-17 14:14:51 -08001781
Richard Zhao26c696c2012-07-07 22:56:40 +08001782 INIT_LIST_HEAD(&ci->gadget.ep_list);
David Lopoaa69a802008-11-17 14:14:51 -08001783
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001784 /* alloc resources */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001785 ci->qh_pool = dma_pool_create("ci_hw_qh", dev,
1786 sizeof(struct ci_hw_qh),
1787 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001788 if (ci->qh_pool == NULL)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001789 return -ENOMEM;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001790
Alexander Shishkin8e229782013-06-24 14:46:36 +03001791 ci->td_pool = dma_pool_create("ci_hw_td", dev,
1792 sizeof(struct ci_hw_td),
1793 64, CI_HDRC_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001794 if (ci->td_pool == NULL) {
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001795 retval = -ENOMEM;
1796 goto free_qh_pool;
1797 }
1798
Richard Zhao26c696c2012-07-07 22:56:40 +08001799 retval = init_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001800 if (retval)
1801 goto free_pools;
1802
Richard Zhao26c696c2012-07-07 22:56:40 +08001803 ci->gadget.ep0 = &ci->ep0in->ep;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301804
Richard Zhao26c696c2012-07-07 22:56:40 +08001805 retval = usb_add_gadget_udc(dev, &ci->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001806 if (retval)
Peter Chen74475ed2013-09-24 12:47:53 +08001807 goto destroy_eps;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001808
Richard Zhao26c696c2012-07-07 22:56:40 +08001809 pm_runtime_no_callbacks(&ci->gadget.dev);
1810 pm_runtime_enable(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001811
David Lopoaa69a802008-11-17 14:14:51 -08001812 return retval;
1813
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001814destroy_eps:
1815 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001816free_pools:
Richard Zhao26c696c2012-07-07 22:56:40 +08001817 dma_pool_destroy(ci->td_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001818free_qh_pool:
Richard Zhao26c696c2012-07-07 22:56:40 +08001819 dma_pool_destroy(ci->qh_pool);
David Lopoaa69a802008-11-17 14:14:51 -08001820 return retval;
1821}
1822
1823/**
Peter Chen3f124d22013-08-14 12:44:07 +03001824 * ci_hdrc_gadget_destroy: parent remove must call this to remove UDC
David Lopoaa69a802008-11-17 14:14:51 -08001825 *
1826 * No interrupts active, the IRQ has been released
1827 */
Peter Chen3f124d22013-08-14 12:44:07 +03001828void ci_hdrc_gadget_destroy(struct ci_hdrc *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001829{
Peter Chen3f124d22013-08-14 12:44:07 +03001830 if (!ci->roles[CI_ROLE_GADGET])
David Lopoaa69a802008-11-17 14:14:51 -08001831 return;
Alexander Shishkin0f089092012-05-08 23:29:02 +03001832
Richard Zhao26c696c2012-07-07 22:56:40 +08001833 usb_del_gadget_udc(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001834
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001835 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001836
Richard Zhao26c696c2012-07-07 22:56:40 +08001837 dma_pool_destroy(ci->td_pool);
1838 dma_pool_destroy(ci->qh_pool);
Peter Chen3f124d22013-08-14 12:44:07 +03001839}
1840
1841static int udc_id_switch_for_device(struct ci_hdrc *ci)
1842{
Li Jun0c33bf72014-04-23 15:56:38 +08001843 if (ci->is_otg)
1844 /* Clear and enable BSV irq */
1845 hw_write_otgsc(ci, OTGSC_BSVIS | OTGSC_BSVIE,
1846 OTGSC_BSVIS | OTGSC_BSVIE);
Peter Chen3f124d22013-08-14 12:44:07 +03001847
1848 return 0;
1849}
1850
1851static void udc_id_switch_for_host(struct ci_hdrc *ci)
1852{
Li Jun0c33bf72014-04-23 15:56:38 +08001853 /*
1854 * host doesn't care B_SESSION_VALID event
1855 * so clear and disbale BSV irq
1856 */
1857 if (ci->is_otg)
1858 hw_write_otgsc(ci, OTGSC_BSVIE | OTGSC_BSVIS, OTGSC_BSVIS);
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001859}
David Lopoaa69a802008-11-17 14:14:51 -08001860
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001861/**
1862 * ci_hdrc_gadget_init - initialize device related bits
1863 * ci: the controller
1864 *
Peter Chen3f124d22013-08-14 12:44:07 +03001865 * This function initializes the gadget, if the device is "device capable".
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001866 */
Alexander Shishkin8e229782013-06-24 14:46:36 +03001867int ci_hdrc_gadget_init(struct ci_hdrc *ci)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001868{
1869 struct ci_role_driver *rdrv;
1870
1871 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC))
1872 return -ENXIO;
1873
1874 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
1875 if (!rdrv)
1876 return -ENOMEM;
1877
Peter Chen3f124d22013-08-14 12:44:07 +03001878 rdrv->start = udc_id_switch_for_device;
1879 rdrv->stop = udc_id_switch_for_host;
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001880 rdrv->irq = udc_irq;
1881 rdrv->name = "gadget";
1882 ci->roles[CI_ROLE_GADGET] = rdrv;
1883
Peter Chen3f124d22013-08-14 12:44:07 +03001884 return udc_start(ci);
David Lopoaa69a802008-11-17 14:14:51 -08001885}