blob: 2f45bba8561d10a5f8b52607344cfdeb957a540e [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>
16#include <linux/dma-mapping.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053017#include <linux/err.h>
David Lopoaa69a802008-11-17 14:14:51 -080018#include <linux/init.h>
Alexander Shishkin62bb84e2012-05-08 23:29:01 +030019#include <linux/platform_device.h>
20#include <linux/module.h>
David Lopoaa69a802008-11-17 14:14:51 -080021#include <linux/interrupt.h>
David Lopoaa69a802008-11-17 14:14:51 -080022#include <linux/io.h>
23#include <linux/irq.h>
24#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Pavankumar Kondetic0360192010-12-07 17:54:04 +053026#include <linux/pm_runtime.h>
David Lopoaa69a802008-11-17 14:14:51 -080027#include <linux/usb/ch9.h>
28#include <linux/usb/gadget.h>
Pavankumar Kondetif01ef572010-12-07 17:54:02 +053029#include <linux/usb/otg.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030030#include <linux/usb/chipidea.h>
David Lopoaa69a802008-11-17 14:14:51 -080031
Alexander Shishkine443b332012-05-11 17:25:46 +030032#include "ci.h"
33#include "udc.h"
34#include "bits.h"
35#include "debug.h"
Michael Grzeschik954aad82011-10-10 18:38:06 +020036
David Lopoaa69a802008-11-17 14:14:51 -080037/* control endpoint description */
38static const struct usb_endpoint_descriptor
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053039ctrl_endpt_out_desc = {
David Lopoaa69a802008-11-17 14:14:51 -080040 .bLength = USB_DT_ENDPOINT_SIZE,
41 .bDescriptorType = USB_DT_ENDPOINT,
42
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +053043 .bEndpointAddress = USB_DIR_OUT,
44 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
45 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
46};
47
48static const struct usb_endpoint_descriptor
49ctrl_endpt_in_desc = {
50 .bLength = USB_DT_ENDPOINT_SIZE,
51 .bDescriptorType = USB_DT_ENDPOINT,
52
53 .bEndpointAddress = USB_DIR_IN,
David Lopoaa69a802008-11-17 14:14:51 -080054 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
55 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
56};
57
David Lopoaa69a802008-11-17 14:14:51 -080058/**
59 * hw_ep_bit: calculates the bit number
60 * @num: endpoint number
61 * @dir: endpoint direction
62 *
63 * This function returns bit number
64 */
65static inline int hw_ep_bit(int num, int dir)
66{
67 return num + (dir ? 16 : 0);
68}
69
Richard Zhao26c696c2012-07-07 22:56:40 +080070static inline int ep_to_bit(struct ci13xxx *ci, int n)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020071{
Richard Zhao26c696c2012-07-07 22:56:40 +080072 int fill = 16 - ci->hw_ep_max / 2;
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020073
Richard Zhao26c696c2012-07-07 22:56:40 +080074 if (n >= ci->hw_ep_max / 2)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +020075 n += fill;
76
77 return n;
78}
79
David Lopoaa69a802008-11-17 14:14:51 -080080/**
Michael Grzeschikc0a48e62012-09-12 14:58:01 +030081 * hw_device_state: enables/disables interrupts (execute without interruption)
David Lopoaa69a802008-11-17 14:14:51 -080082 * @dma: 0 => disable, !0 => enable and set dma engine
83 *
84 * This function returns an error code
85 */
Richard Zhao26c696c2012-07-07 22:56:40 +080086static int hw_device_state(struct ci13xxx *ci, u32 dma)
David Lopoaa69a802008-11-17 14:14:51 -080087{
88 if (dma) {
Richard Zhao26c696c2012-07-07 22:56:40 +080089 hw_write(ci, OP_ENDPTLISTADDR, ~0, dma);
David Lopoaa69a802008-11-17 14:14:51 -080090 /* interrupt, error, port change, reset, sleep/suspend */
Richard Zhao26c696c2012-07-07 22:56:40 +080091 hw_write(ci, OP_USBINTR, ~0,
David Lopoaa69a802008-11-17 14:14:51 -080092 USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI);
David Lopoaa69a802008-11-17 14:14:51 -080093 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +080094 hw_write(ci, OP_USBINTR, ~0, 0);
David Lopoaa69a802008-11-17 14:14:51 -080095 }
96 return 0;
97}
98
99/**
100 * hw_ep_flush: flush endpoint fifo (execute without interruption)
101 * @num: endpoint number
102 * @dir: endpoint direction
103 *
104 * This function returns an error code
105 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800106static int hw_ep_flush(struct ci13xxx *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800107{
108 int n = hw_ep_bit(num, dir);
109
110 do {
111 /* flush any pending transfer */
Richard Zhao26c696c2012-07-07 22:56:40 +0800112 hw_write(ci, OP_ENDPTFLUSH, BIT(n), BIT(n));
113 while (hw_read(ci, OP_ENDPTFLUSH, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800114 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800115 } while (hw_read(ci, OP_ENDPTSTAT, BIT(n)));
David Lopoaa69a802008-11-17 14:14:51 -0800116
117 return 0;
118}
119
120/**
121 * hw_ep_disable: disables endpoint (execute without interruption)
122 * @num: endpoint number
123 * @dir: endpoint direction
124 *
125 * This function returns an error code
126 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800127static int hw_ep_disable(struct ci13xxx *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800128{
Richard Zhao26c696c2012-07-07 22:56:40 +0800129 hw_ep_flush(ci, num, dir);
130 hw_write(ci, OP_ENDPTCTRL + num,
Alexander Shishkind3595d12012-05-08 23:28:58 +0300131 dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800132 return 0;
133}
134
135/**
136 * hw_ep_enable: enables endpoint (execute without interruption)
137 * @num: endpoint number
138 * @dir: endpoint direction
139 * @type: endpoint type
140 *
141 * This function returns an error code
142 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800143static int hw_ep_enable(struct ci13xxx *ci, int num, int dir, int type)
David Lopoaa69a802008-11-17 14:14:51 -0800144{
145 u32 mask, data;
146
147 if (dir) {
148 mask = ENDPTCTRL_TXT; /* type */
149 data = type << ffs_nr(mask);
150
151 mask |= ENDPTCTRL_TXS; /* unstall */
152 mask |= ENDPTCTRL_TXR; /* reset data toggle */
153 data |= ENDPTCTRL_TXR;
154 mask |= ENDPTCTRL_TXE; /* enable */
155 data |= ENDPTCTRL_TXE;
156 } else {
157 mask = ENDPTCTRL_RXT; /* type */
158 data = type << ffs_nr(mask);
159
160 mask |= ENDPTCTRL_RXS; /* unstall */
161 mask |= ENDPTCTRL_RXR; /* reset data toggle */
162 data |= ENDPTCTRL_RXR;
163 mask |= ENDPTCTRL_RXE; /* enable */
164 data |= ENDPTCTRL_RXE;
165 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800166 hw_write(ci, OP_ENDPTCTRL + num, mask, data);
David Lopoaa69a802008-11-17 14:14:51 -0800167 return 0;
168}
169
170/**
171 * hw_ep_get_halt: return endpoint halt status
172 * @num: endpoint number
173 * @dir: endpoint direction
174 *
175 * This function returns 1 if endpoint halted
176 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800177static int hw_ep_get_halt(struct ci13xxx *ci, int num, int dir)
David Lopoaa69a802008-11-17 14:14:51 -0800178{
179 u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
180
Richard Zhao26c696c2012-07-07 22:56:40 +0800181 return hw_read(ci, OP_ENDPTCTRL + num, mask) ? 1 : 0;
David Lopoaa69a802008-11-17 14:14:51 -0800182}
183
184/**
David Lopoaa69a802008-11-17 14:14:51 -0800185 * hw_test_and_clear_setup_status: test & clear setup status (execute without
186 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200187 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800188 *
189 * This function returns setup status
190 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800191static int hw_test_and_clear_setup_status(struct ci13xxx *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800192{
Richard Zhao26c696c2012-07-07 22:56:40 +0800193 n = ep_to_bit(ci, n);
194 return hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800195}
196
197/**
198 * hw_ep_prime: primes endpoint (execute without interruption)
199 * @num: endpoint number
200 * @dir: endpoint direction
201 * @is_ctrl: true if control endpoint
202 *
203 * This function returns an error code
204 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800205static int hw_ep_prime(struct ci13xxx *ci, int num, int dir, int is_ctrl)
David Lopoaa69a802008-11-17 14:14:51 -0800206{
207 int n = hw_ep_bit(num, dir);
208
Richard Zhao26c696c2012-07-07 22:56:40 +0800209 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800210 return -EAGAIN;
211
Richard Zhao26c696c2012-07-07 22:56:40 +0800212 hw_write(ci, OP_ENDPTPRIME, BIT(n), BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800213
Richard Zhao26c696c2012-07-07 22:56:40 +0800214 while (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
David Lopoaa69a802008-11-17 14:14:51 -0800215 cpu_relax();
Richard Zhao26c696c2012-07-07 22:56:40 +0800216 if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num)))
David Lopoaa69a802008-11-17 14:14:51 -0800217 return -EAGAIN;
218
219 /* status shoult be tested according with manual but it doesn't work */
220 return 0;
221}
222
223/**
224 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
225 * without interruption)
226 * @num: endpoint number
227 * @dir: endpoint direction
228 * @value: true => stall, false => unstall
229 *
230 * This function returns an error code
231 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800232static int hw_ep_set_halt(struct ci13xxx *ci, int num, int dir, int value)
David Lopoaa69a802008-11-17 14:14:51 -0800233{
234 if (value != 0 && value != 1)
235 return -EINVAL;
236
237 do {
Alexander Shishkin262c1632012-05-08 23:28:59 +0300238 enum ci13xxx_regs reg = OP_ENDPTCTRL + num;
David Lopoaa69a802008-11-17 14:14:51 -0800239 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
240 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
241
242 /* data toggle - reserved for EP0 but it's in ESS */
Richard Zhao26c696c2012-07-07 22:56:40 +0800243 hw_write(ci, reg, mask_xs|mask_xr,
Alexander Shishkin262c1632012-05-08 23:28:59 +0300244 value ? mask_xs : mask_xr);
Richard Zhao26c696c2012-07-07 22:56:40 +0800245 } while (value != hw_ep_get_halt(ci, num, dir));
David Lopoaa69a802008-11-17 14:14:51 -0800246
247 return 0;
248}
249
250/**
David Lopoaa69a802008-11-17 14:14:51 -0800251 * hw_is_port_high_speed: test if port is high speed
252 *
253 * This function returns true if high speed port
254 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800255static int hw_port_is_high_speed(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800256{
Richard Zhao26c696c2012-07-07 22:56:40 +0800257 return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) :
258 hw_read(ci, OP_PORTSC, PORTSC_HSP);
David Lopoaa69a802008-11-17 14:14:51 -0800259}
260
261/**
David Lopoaa69a802008-11-17 14:14:51 -0800262 * hw_read_intr_enable: returns interrupt enable register
263 *
264 * This function returns register data
265 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800266static u32 hw_read_intr_enable(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800267{
Richard Zhao26c696c2012-07-07 22:56:40 +0800268 return hw_read(ci, OP_USBINTR, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800269}
270
271/**
272 * hw_read_intr_status: returns interrupt status register
273 *
274 * This function returns register data
275 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800276static u32 hw_read_intr_status(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800277{
Richard Zhao26c696c2012-07-07 22:56:40 +0800278 return hw_read(ci, OP_USBSTS, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800279}
280
281/**
David Lopoaa69a802008-11-17 14:14:51 -0800282 * hw_test_and_clear_complete: test & clear complete status (execute without
283 * interruption)
Marc Kleine-Buddedd39c352011-10-10 18:38:10 +0200284 * @n: endpoint number
David Lopoaa69a802008-11-17 14:14:51 -0800285 *
286 * This function returns complete status
287 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800288static int hw_test_and_clear_complete(struct ci13xxx *ci, int n)
David Lopoaa69a802008-11-17 14:14:51 -0800289{
Richard Zhao26c696c2012-07-07 22:56:40 +0800290 n = ep_to_bit(ci, n);
291 return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n));
David Lopoaa69a802008-11-17 14:14:51 -0800292}
293
294/**
295 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
296 * without interruption)
297 *
298 * This function returns active interrutps
299 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800300static u32 hw_test_and_clear_intr_active(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800301{
Richard Zhao26c696c2012-07-07 22:56:40 +0800302 u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800303
Richard Zhao26c696c2012-07-07 22:56:40 +0800304 hw_write(ci, OP_USBSTS, ~0, reg);
David Lopoaa69a802008-11-17 14:14:51 -0800305 return reg;
306}
307
Richard Zhao8c4fc032012-09-12 14:58:09 +0300308static void hw_enable_vbus_intr(struct ci13xxx *ci)
309{
310 hw_write(ci, OP_OTGSC, OTGSC_AVVIS, OTGSC_AVVIS);
311 hw_write(ci, OP_OTGSC, OTGSC_AVVIE, OTGSC_AVVIE);
312 queue_work(ci->wq, &ci->vbus_work);
313}
314
315static void hw_disable_vbus_intr(struct ci13xxx *ci)
316{
317 hw_write(ci, OP_OTGSC, OTGSC_AVVIE, 0);
318}
319
David Lopoaa69a802008-11-17 14:14:51 -0800320/**
321 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
322 * interruption)
323 *
324 * This function returns guard value
325 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800326static int hw_test_and_clear_setup_guard(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800327{
Richard Zhao26c696c2012-07-07 22:56:40 +0800328 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800329}
330
331/**
332 * hw_test_and_set_setup_guard: test & set setup guard (execute without
333 * interruption)
334 *
335 * This function returns guard value
336 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800337static int hw_test_and_set_setup_guard(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800338{
Richard Zhao26c696c2012-07-07 22:56:40 +0800339 return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
David Lopoaa69a802008-11-17 14:14:51 -0800340}
341
342/**
343 * hw_usb_set_address: configures USB address (execute without interruption)
344 * @value: new USB address
345 *
Alexander Shishkinef15e542012-05-11 17:25:43 +0300346 * This function explicitly sets the address, without the "USBADRA" (advance)
347 * feature, which is not supported by older versions of the controller.
David Lopoaa69a802008-11-17 14:14:51 -0800348 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800349static void hw_usb_set_address(struct ci13xxx *ci, u8 value)
David Lopoaa69a802008-11-17 14:14:51 -0800350{
Richard Zhao26c696c2012-07-07 22:56:40 +0800351 hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR,
Alexander Shishkinef15e542012-05-11 17:25:43 +0300352 value << ffs_nr(DEVICEADDR_USBADR));
David Lopoaa69a802008-11-17 14:14:51 -0800353}
354
355/**
356 * hw_usb_reset: restart device after a bus reset (execute without
357 * interruption)
358 *
359 * This function returns an error code
360 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800361static int hw_usb_reset(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800362{
Richard Zhao26c696c2012-07-07 22:56:40 +0800363 hw_usb_set_address(ci, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800364
365 /* ESS flushes only at end?!? */
Richard Zhao26c696c2012-07-07 22:56:40 +0800366 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
David Lopoaa69a802008-11-17 14:14:51 -0800367
368 /* clear setup token semaphores */
Richard Zhao26c696c2012-07-07 22:56:40 +0800369 hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800370
371 /* clear complete status */
Richard Zhao26c696c2012-07-07 22:56:40 +0800372 hw_write(ci, OP_ENDPTCOMPLETE, 0, 0);
David Lopoaa69a802008-11-17 14:14:51 -0800373
374 /* wait until all bits cleared */
Richard Zhao26c696c2012-07-07 22:56:40 +0800375 while (hw_read(ci, OP_ENDPTPRIME, ~0))
David Lopoaa69a802008-11-17 14:14:51 -0800376 udelay(10); /* not RTOS friendly */
377
378 /* reset all endpoints ? */
379
380 /* reset internal status and wait for further instructions
381 no need to verify the port reset status (ESS does it) */
382
383 return 0;
384}
385
Richard Zhao8c4fc032012-09-12 14:58:09 +0300386static void vbus_work(struct work_struct *work)
387{
388 struct ci13xxx *ci = container_of(work, struct ci13xxx, vbus_work);
389
390 if (hw_read(ci, OP_OTGSC, OTGSC_AVV))
391 usb_gadget_vbus_connect(&ci->gadget);
392 else
393 usb_gadget_vbus_disconnect(&ci->gadget);
394}
395
David Lopoaa69a802008-11-17 14:14:51 -0800396/******************************************************************************
David Lopoaa69a802008-11-17 14:14:51 -0800397 * UTIL block
398 *****************************************************************************/
399/**
400 * _usb_addr: calculates endpoint address from direction & number
401 * @ep: endpoint
402 */
403static inline u8 _usb_addr(struct ci13xxx_ep *ep)
404{
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
411 * @mEp: endpoint
412 *
413 * This function returns an error code
414 */
415static int _hardware_enqueue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq)
416{
Richard Zhao26c696c2012-07-07 22:56:40 +0800417 struct ci13xxx *ci = mEp->ci;
David Lopoaa69a802008-11-17 14:14:51 -0800418 unsigned i;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530419 int ret = 0;
420 unsigned length = mReq->req.length;
David Lopoaa69a802008-11-17 14:14:51 -0800421
David Lopoaa69a802008-11-17 14:14:51 -0800422 /* don't queue twice */
423 if (mReq->req.status == -EALREADY)
424 return -EALREADY;
425
David Lopoaa69a802008-11-17 14:14:51 -0800426 mReq->req.status = -EALREADY;
David Lopoaa69a802008-11-17 14:14:51 -0800427
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530428 if (mReq->req.zero && length && (length % mEp->ep.maxpacket == 0)) {
429 mReq->zptr = dma_pool_alloc(mEp->td_pool, GFP_ATOMIC,
430 &mReq->zdma);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300431 if (mReq->zptr == NULL)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530432 return -ENOMEM;
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300433
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530434 memset(mReq->zptr, 0, sizeof(*mReq->zptr));
435 mReq->zptr->next = TD_TERMINATE;
436 mReq->zptr->token = TD_STATUS_ACTIVE;
437 if (!mReq->req.no_interrupt)
438 mReq->zptr->token |= TD_IOC;
439 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800440 ret = usb_gadget_map_request(&ci->gadget, &mReq->req, mEp->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +0300441 if (ret)
442 return ret;
443
David Lopoaa69a802008-11-17 14:14:51 -0800444 /*
445 * TD configuration
446 * TODO - handle requests which spawns into several TDs
447 */
448 memset(mReq->ptr, 0, sizeof(*mReq->ptr));
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530449 mReq->ptr->token = length << ffs_nr(TD_TOTAL_BYTES);
David Lopoaa69a802008-11-17 14:14:51 -0800450 mReq->ptr->token &= TD_TOTAL_BYTES;
David Lopoaa69a802008-11-17 14:14:51 -0800451 mReq->ptr->token |= TD_STATUS_ACTIVE;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530452 if (mReq->zptr) {
453 mReq->ptr->next = mReq->zdma;
454 } else {
455 mReq->ptr->next = TD_TERMINATE;
456 if (!mReq->req.no_interrupt)
457 mReq->ptr->token |= TD_IOC;
458 }
David Lopoaa69a802008-11-17 14:14:51 -0800459 mReq->ptr->page[0] = mReq->req.dma;
460 for (i = 1; i < 5; i++)
461 mReq->ptr->page[i] =
Artem Leonenko0a313c42010-12-14 23:47:06 -0800462 (mReq->req.dma + i * CI13XXX_PAGE_SIZE) & ~TD_RESERVED_MASK;
David Lopoaa69a802008-11-17 14:14:51 -0800463
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530464 if (!list_empty(&mEp->qh.queue)) {
465 struct ci13xxx_req *mReqPrev;
466 int n = hw_ep_bit(mEp->num, mEp->dir);
467 int tmp_stat;
468
469 mReqPrev = list_entry(mEp->qh.queue.prev,
470 struct ci13xxx_req, queue);
471 if (mReqPrev->zptr)
472 mReqPrev->zptr->next = mReq->dma & TD_ADDR_MASK;
473 else
474 mReqPrev->ptr->next = mReq->dma & TD_ADDR_MASK;
475 wmb();
Richard Zhao26c696c2012-07-07 22:56:40 +0800476 if (hw_read(ci, OP_ENDPTPRIME, BIT(n)))
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530477 goto done;
478 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800479 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
480 tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
481 } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
482 hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530483 if (tmp_stat)
484 goto done;
485 }
486
487 /* QH configuration */
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530488 mEp->qh.ptr->td.next = mReq->dma; /* TERMINATE = 0 */
489 mEp->qh.ptr->td.token &= ~TD_STATUS; /* clear status */
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530490 mEp->qh.ptr->cap |= QH_ZLT;
David Lopoaa69a802008-11-17 14:14:51 -0800491
492 wmb(); /* synchronize before ep prime */
493
Richard Zhao26c696c2012-07-07 22:56:40 +0800494 ret = hw_ep_prime(ci, mEp->num, mEp->dir,
David Lopoaa69a802008-11-17 14:14:51 -0800495 mEp->type == USB_ENDPOINT_XFER_CONTROL);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530496done:
497 return ret;
David Lopoaa69a802008-11-17 14:14:51 -0800498}
499
500/**
501 * _hardware_dequeue: handles a request at hardware level
502 * @gadget: gadget
503 * @mEp: endpoint
504 *
505 * This function returns an error code
506 */
507static int _hardware_dequeue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq)
508{
David Lopoaa69a802008-11-17 14:14:51 -0800509 if (mReq->req.status != -EALREADY)
510 return -EINVAL;
511
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530512 if ((TD_STATUS_ACTIVE & mReq->ptr->token) != 0)
513 return -EBUSY;
514
515 if (mReq->zptr) {
516 if ((TD_STATUS_ACTIVE & mReq->zptr->token) != 0)
517 return -EBUSY;
518 dma_pool_free(mEp->td_pool, mReq->zptr, mReq->zdma);
519 mReq->zptr = NULL;
520 }
David Lopoaa69a802008-11-17 14:14:51 -0800521
522 mReq->req.status = 0;
523
Richard Zhao26c696c2012-07-07 22:56:40 +0800524 usb_gadget_unmap_request(&mEp->ci->gadget, &mReq->req, mEp->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800525
526 mReq->req.status = mReq->ptr->token & TD_STATUS;
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530527 if ((TD_STATUS_HALTED & mReq->req.status) != 0)
David Lopoaa69a802008-11-17 14:14:51 -0800528 mReq->req.status = -1;
529 else if ((TD_STATUS_DT_ERR & mReq->req.status) != 0)
530 mReq->req.status = -1;
531 else if ((TD_STATUS_TR_ERR & mReq->req.status) != 0)
532 mReq->req.status = -1;
533
534 mReq->req.actual = mReq->ptr->token & TD_TOTAL_BYTES;
535 mReq->req.actual >>= ffs_nr(TD_TOTAL_BYTES);
536 mReq->req.actual = mReq->req.length - mReq->req.actual;
537 mReq->req.actual = mReq->req.status ? 0 : mReq->req.actual;
538
539 return mReq->req.actual;
540}
541
542/**
543 * _ep_nuke: dequeues all endpoint requests
544 * @mEp: endpoint
545 *
546 * This function returns an error code
547 * Caller must hold lock
548 */
549static int _ep_nuke(struct ci13xxx_ep *mEp)
550__releases(mEp->lock)
551__acquires(mEp->lock)
552{
David Lopoaa69a802008-11-17 14:14:51 -0800553 if (mEp == NULL)
554 return -EINVAL;
555
Richard Zhao26c696c2012-07-07 22:56:40 +0800556 hw_ep_flush(mEp->ci, mEp->num, mEp->dir);
David Lopoaa69a802008-11-17 14:14:51 -0800557
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530558 while (!list_empty(&mEp->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -0800559
560 /* pop oldest request */
561 struct ci13xxx_req *mReq = \
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530562 list_entry(mEp->qh.queue.next,
David Lopoaa69a802008-11-17 14:14:51 -0800563 struct ci13xxx_req, queue);
564 list_del_init(&mReq->queue);
565 mReq->req.status = -ESHUTDOWN;
566
Artem Leonenko7c25a822010-12-14 23:46:55 -0800567 if (mReq->req.complete != NULL) {
David Lopoaa69a802008-11-17 14:14:51 -0800568 spin_unlock(mEp->lock);
569 mReq->req.complete(&mEp->ep, &mReq->req);
570 spin_lock(mEp->lock);
571 }
572 }
573 return 0;
574}
575
576/**
577 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
578 * @gadget: gadget
579 *
580 * This function returns an error code
David Lopoaa69a802008-11-17 14:14:51 -0800581 */
582static int _gadget_stop_activity(struct usb_gadget *gadget)
David Lopoaa69a802008-11-17 14:14:51 -0800583{
584 struct usb_ep *ep;
Richard Zhao26c696c2012-07-07 22:56:40 +0800585 struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530586 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -0800587
Richard Zhao26c696c2012-07-07 22:56:40 +0800588 spin_lock_irqsave(&ci->lock, flags);
589 ci->gadget.speed = USB_SPEED_UNKNOWN;
590 ci->remote_wakeup = 0;
591 ci->suspended = 0;
592 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530593
David Lopoaa69a802008-11-17 14:14:51 -0800594 /* flush all endpoints */
595 gadget_for_each_ep(ep, gadget) {
596 usb_ep_fifo_flush(ep);
597 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800598 usb_ep_fifo_flush(&ci->ep0out->ep);
599 usb_ep_fifo_flush(&ci->ep0in->ep);
David Lopoaa69a802008-11-17 14:14:51 -0800600
Richard Zhao26c696c2012-07-07 22:56:40 +0800601 if (ci->driver)
602 ci->driver->disconnect(gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800603
604 /* make sure to disable all endpoints */
605 gadget_for_each_ep(ep, gadget) {
606 usb_ep_disable(ep);
607 }
David Lopoaa69a802008-11-17 14:14:51 -0800608
Richard Zhao26c696c2012-07-07 22:56:40 +0800609 if (ci->status != NULL) {
610 usb_ep_free_request(&ci->ep0in->ep, ci->status);
611 ci->status = NULL;
David Lopoaa69a802008-11-17 14:14:51 -0800612 }
613
David Lopoaa69a802008-11-17 14:14:51 -0800614 return 0;
615}
616
617/******************************************************************************
618 * ISR block
619 *****************************************************************************/
620/**
621 * isr_reset_handler: USB reset interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800622 * @ci: UDC device
David Lopoaa69a802008-11-17 14:14:51 -0800623 *
624 * This function resets USB engine after a bus reset occurred
625 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800626static void isr_reset_handler(struct ci13xxx *ci)
627__releases(ci->lock)
628__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800629{
David Lopoaa69a802008-11-17 14:14:51 -0800630 int retval;
631
David Lopoaa69a802008-11-17 14:14:51 -0800632 dbg_event(0xFF, "BUS RST", 0);
633
Richard Zhao26c696c2012-07-07 22:56:40 +0800634 spin_unlock(&ci->lock);
635 retval = _gadget_stop_activity(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -0800636 if (retval)
637 goto done;
638
Richard Zhao26c696c2012-07-07 22:56:40 +0800639 retval = hw_usb_reset(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800640 if (retval)
641 goto done;
642
Richard Zhao26c696c2012-07-07 22:56:40 +0800643 ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC);
644 if (ci->status == NULL)
Anji jonnalaac1aa6a2011-05-02 11:56:32 +0530645 retval = -ENOMEM;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530646
Michael Grzeschikb9322252012-05-11 17:25:50 +0300647done:
Richard Zhao26c696c2012-07-07 22:56:40 +0800648 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800649
David Lopoaa69a802008-11-17 14:14:51 -0800650 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +0800651 dev_err(ci->dev, "error: %i\n", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800652}
653
654/**
655 * isr_get_status_complete: get_status request complete function
656 * @ep: endpoint
657 * @req: request handled
658 *
659 * Caller must release lock
660 */
661static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
662{
Alexander Shishkin0f089092012-05-08 23:29:02 +0300663 if (ep == NULL || req == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800664 return;
David Lopoaa69a802008-11-17 14:14:51 -0800665
666 kfree(req->buf);
667 usb_ep_free_request(ep, req);
668}
669
670/**
671 * isr_get_status_response: get_status request response
Richard Zhao26c696c2012-07-07 22:56:40 +0800672 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800673 * @setup: setup request packet
674 *
675 * This function returns an error code
676 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800677static int isr_get_status_response(struct ci13xxx *ci,
David Lopoaa69a802008-11-17 14:14:51 -0800678 struct usb_ctrlrequest *setup)
679__releases(mEp->lock)
680__acquires(mEp->lock)
681{
Richard Zhao26c696c2012-07-07 22:56:40 +0800682 struct ci13xxx_ep *mEp = ci->ep0in;
David Lopoaa69a802008-11-17 14:14:51 -0800683 struct usb_request *req = NULL;
684 gfp_t gfp_flags = GFP_ATOMIC;
685 int dir, num, retval;
686
David Lopoaa69a802008-11-17 14:14:51 -0800687 if (mEp == NULL || setup == NULL)
688 return -EINVAL;
689
690 spin_unlock(mEp->lock);
691 req = usb_ep_alloc_request(&mEp->ep, gfp_flags);
692 spin_lock(mEp->lock);
693 if (req == NULL)
694 return -ENOMEM;
695
696 req->complete = isr_get_status_complete;
697 req->length = 2;
698 req->buf = kzalloc(req->length, gfp_flags);
699 if (req->buf == NULL) {
700 retval = -ENOMEM;
701 goto err_free_req;
702 }
703
704 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530705 /* Assume that device is bus powered for now. */
Richard Zhao26c696c2012-07-07 22:56:40 +0800706 *(u16 *)req->buf = ci->remote_wakeup << 1;
David Lopoaa69a802008-11-17 14:14:51 -0800707 retval = 0;
708 } else if ((setup->bRequestType & USB_RECIP_MASK) \
709 == USB_RECIP_ENDPOINT) {
710 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
711 TX : RX;
712 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Richard Zhao26c696c2012-07-07 22:56:40 +0800713 *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir);
David Lopoaa69a802008-11-17 14:14:51 -0800714 }
715 /* else do nothing; reserved for future use */
716
717 spin_unlock(mEp->lock);
718 retval = usb_ep_queue(&mEp->ep, req, gfp_flags);
719 spin_lock(mEp->lock);
720 if (retval)
721 goto err_free_buf;
722
723 return 0;
724
725 err_free_buf:
726 kfree(req->buf);
727 err_free_req:
728 spin_unlock(mEp->lock);
729 usb_ep_free_request(&mEp->ep, req);
730 spin_lock(mEp->lock);
731 return retval;
732}
733
734/**
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530735 * isr_setup_status_complete: setup_status request complete function
736 * @ep: endpoint
737 * @req: request handled
738 *
739 * Caller must release lock. Put the port in test mode if test mode
740 * feature is selected.
741 */
742static void
743isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
744{
Richard Zhao26c696c2012-07-07 22:56:40 +0800745 struct ci13xxx *ci = req->context;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530746 unsigned long flags;
747
Richard Zhao26c696c2012-07-07 22:56:40 +0800748 if (ci->setaddr) {
749 hw_usb_set_address(ci, ci->address);
750 ci->setaddr = false;
Alexander Shishkinef15e542012-05-11 17:25:43 +0300751 }
752
Richard Zhao26c696c2012-07-07 22:56:40 +0800753 spin_lock_irqsave(&ci->lock, flags);
754 if (ci->test_mode)
755 hw_port_test_set(ci, ci->test_mode);
756 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530757}
758
759/**
David Lopoaa69a802008-11-17 14:14:51 -0800760 * isr_setup_status_phase: queues the status phase of a setup transation
Richard Zhao26c696c2012-07-07 22:56:40 +0800761 * @ci: ci struct
David Lopoaa69a802008-11-17 14:14:51 -0800762 *
763 * This function returns an error code
764 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800765static int isr_setup_status_phase(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -0800766__releases(mEp->lock)
767__acquires(mEp->lock)
768{
769 int retval;
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530770 struct ci13xxx_ep *mEp;
David Lopoaa69a802008-11-17 14:14:51 -0800771
Richard Zhao26c696c2012-07-07 22:56:40 +0800772 mEp = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in;
773 ci->status->context = ci;
774 ci->status->complete = isr_setup_status_complete;
David Lopoaa69a802008-11-17 14:14:51 -0800775
776 spin_unlock(mEp->lock);
Richard Zhao26c696c2012-07-07 22:56:40 +0800777 retval = usb_ep_queue(&mEp->ep, ci->status, GFP_ATOMIC);
David Lopoaa69a802008-11-17 14:14:51 -0800778 spin_lock(mEp->lock);
779
780 return retval;
781}
782
783/**
784 * isr_tr_complete_low: transaction complete low level handler
785 * @mEp: endpoint
786 *
787 * This function returns an error code
788 * Caller must hold lock
789 */
790static int isr_tr_complete_low(struct ci13xxx_ep *mEp)
791__releases(mEp->lock)
792__acquires(mEp->lock)
793{
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530794 struct ci13xxx_req *mReq, *mReqTemp;
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +0530795 struct ci13xxx_ep *mEpTemp = mEp;
Michael Grzeschikdb899602012-09-12 14:58:04 +0300796 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800797
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530798 list_for_each_entry_safe(mReq, mReqTemp, &mEp->qh.queue,
799 queue) {
800 retval = _hardware_dequeue(mEp, mReq);
801 if (retval < 0)
802 break;
803 list_del_init(&mReq->queue);
804 dbg_done(_usb_addr(mEp), mReq->ptr->token, retval);
805 if (mReq->req.complete != NULL) {
806 spin_unlock(mEp->lock);
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +0530807 if ((mEp->type == USB_ENDPOINT_XFER_CONTROL) &&
808 mReq->req.length)
Richard Zhao26c696c2012-07-07 22:56:40 +0800809 mEpTemp = mEp->ci->ep0in;
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +0530810 mReq->req.complete(&mEpTemp->ep, &mReq->req);
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530811 spin_lock(mEp->lock);
812 }
813 }
David Lopoaa69a802008-11-17 14:14:51 -0800814
Pavankumar Kondetief907482011-05-02 11:56:27 +0530815 if (retval == -EBUSY)
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +0530816 retval = 0;
817 if (retval < 0)
David Lopoaa69a802008-11-17 14:14:51 -0800818 dbg_event(_usb_addr(mEp), "DONE", retval);
David Lopoaa69a802008-11-17 14:14:51 -0800819
David Lopoaa69a802008-11-17 14:14:51 -0800820 return retval;
821}
822
823/**
824 * isr_tr_complete_handler: transaction complete interrupt handler
Richard Zhao26c696c2012-07-07 22:56:40 +0800825 * @ci: UDC descriptor
David Lopoaa69a802008-11-17 14:14:51 -0800826 *
827 * This function handles traffic events
828 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800829static void isr_tr_complete_handler(struct ci13xxx *ci)
830__releases(ci->lock)
831__acquires(ci->lock)
David Lopoaa69a802008-11-17 14:14:51 -0800832{
833 unsigned i;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530834 u8 tmode = 0;
David Lopoaa69a802008-11-17 14:14:51 -0800835
Richard Zhao26c696c2012-07-07 22:56:40 +0800836 for (i = 0; i < ci->hw_ep_max; i++) {
837 struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[i];
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530838 int type, num, dir, err = -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -0800839 struct usb_ctrlrequest req;
840
Ido Shayevitz31fb6012012-03-12 20:25:23 +0200841 if (mEp->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -0800842 continue; /* not configured */
843
Richard Zhao26c696c2012-07-07 22:56:40 +0800844 if (hw_test_and_clear_complete(ci, i)) {
David Lopoaa69a802008-11-17 14:14:51 -0800845 err = isr_tr_complete_low(mEp);
846 if (mEp->type == USB_ENDPOINT_XFER_CONTROL) {
847 if (err > 0) /* needs status phase */
Richard Zhao26c696c2012-07-07 22:56:40 +0800848 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800849 if (err < 0) {
850 dbg_event(_usb_addr(mEp),
851 "ERROR", err);
Richard Zhao26c696c2012-07-07 22:56:40 +0800852 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800853 if (usb_ep_set_halt(&mEp->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +0800854 dev_err(ci->dev,
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -0700855 "error: ep_set_halt\n");
Richard Zhao26c696c2012-07-07 22:56:40 +0800856 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800857 }
858 }
859 }
860
861 if (mEp->type != USB_ENDPOINT_XFER_CONTROL ||
Richard Zhao26c696c2012-07-07 22:56:40 +0800862 !hw_test_and_clear_setup_status(ci, i))
David Lopoaa69a802008-11-17 14:14:51 -0800863 continue;
864
865 if (i != 0) {
Richard Zhao26c696c2012-07-07 22:56:40 +0800866 dev_warn(ci->dev, "ctrl traffic at endpoint %d\n", i);
David Lopoaa69a802008-11-17 14:14:51 -0800867 continue;
868 }
869
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530870 /*
871 * Flush data and handshake transactions of previous
872 * setup packet.
873 */
Richard Zhao26c696c2012-07-07 22:56:40 +0800874 _ep_nuke(ci->ep0out);
875 _ep_nuke(ci->ep0in);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530876
David Lopoaa69a802008-11-17 14:14:51 -0800877 /* read_setup_packet */
878 do {
Richard Zhao26c696c2012-07-07 22:56:40 +0800879 hw_test_and_set_setup_guard(ci);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +0530880 memcpy(&req, &mEp->qh.ptr->setup, sizeof(req));
Richard Zhao26c696c2012-07-07 22:56:40 +0800881 } while (!hw_test_and_clear_setup_guard(ci));
David Lopoaa69a802008-11-17 14:14:51 -0800882
883 type = req.bRequestType;
884
Richard Zhao26c696c2012-07-07 22:56:40 +0800885 ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
David Lopoaa69a802008-11-17 14:14:51 -0800886
887 dbg_setup(_usb_addr(mEp), &req);
888
889 switch (req.bRequest) {
890 case USB_REQ_CLEAR_FEATURE:
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530891 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
892 le16_to_cpu(req.wValue) ==
893 USB_ENDPOINT_HALT) {
894 if (req.wLength != 0)
David Lopoaa69a802008-11-17 14:14:51 -0800895 break;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530896 num = le16_to_cpu(req.wIndex);
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530897 dir = num & USB_ENDPOINT_DIR_MASK;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530898 num &= USB_ENDPOINT_NUMBER_MASK;
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530899 if (dir) /* TX */
Richard Zhao26c696c2012-07-07 22:56:40 +0800900 num += ci->hw_ep_max/2;
901 if (!ci->ci13xxx_ep[num].wedge) {
902 spin_unlock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530903 err = usb_ep_clear_halt(
Richard Zhao26c696c2012-07-07 22:56:40 +0800904 &ci->ci13xxx_ep[num].ep);
905 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530906 if (err)
907 break;
908 }
Richard Zhao26c696c2012-07-07 22:56:40 +0800909 err = isr_setup_status_phase(ci);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530910 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
911 le16_to_cpu(req.wValue) ==
912 USB_DEVICE_REMOTE_WAKEUP) {
913 if (req.wLength != 0)
914 break;
Richard Zhao26c696c2012-07-07 22:56:40 +0800915 ci->remote_wakeup = 0;
916 err = isr_setup_status_phase(ci);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530917 } else {
918 goto delegate;
David Lopoaa69a802008-11-17 14:14:51 -0800919 }
David Lopoaa69a802008-11-17 14:14:51 -0800920 break;
921 case USB_REQ_GET_STATUS:
922 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
923 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
924 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
925 goto delegate;
926 if (le16_to_cpu(req.wLength) != 2 ||
927 le16_to_cpu(req.wValue) != 0)
928 break;
Richard Zhao26c696c2012-07-07 22:56:40 +0800929 err = isr_get_status_response(ci, &req);
David Lopoaa69a802008-11-17 14:14:51 -0800930 break;
931 case USB_REQ_SET_ADDRESS:
932 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
933 goto delegate;
934 if (le16_to_cpu(req.wLength) != 0 ||
935 le16_to_cpu(req.wIndex) != 0)
936 break;
Richard Zhao26c696c2012-07-07 22:56:40 +0800937 ci->address = (u8)le16_to_cpu(req.wValue);
938 ci->setaddr = true;
939 err = isr_setup_status_phase(ci);
David Lopoaa69a802008-11-17 14:14:51 -0800940 break;
941 case USB_REQ_SET_FEATURE:
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530942 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
943 le16_to_cpu(req.wValue) ==
944 USB_ENDPOINT_HALT) {
945 if (req.wLength != 0)
946 break;
947 num = le16_to_cpu(req.wIndex);
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530948 dir = num & USB_ENDPOINT_DIR_MASK;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530949 num &= USB_ENDPOINT_NUMBER_MASK;
Pavankumar Kondeti4c5212b2011-05-02 11:56:30 +0530950 if (dir) /* TX */
Richard Zhao26c696c2012-07-07 22:56:40 +0800951 num += ci->hw_ep_max/2;
David Lopoaa69a802008-11-17 14:14:51 -0800952
Richard Zhao26c696c2012-07-07 22:56:40 +0800953 spin_unlock(&ci->lock);
954 err = usb_ep_set_halt(&ci->ci13xxx_ep[num].ep);
955 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530956 if (!err)
Richard Zhao26c696c2012-07-07 22:56:40 +0800957 isr_setup_status_phase(ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530958 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530959 if (req.wLength != 0)
960 break;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530961 switch (le16_to_cpu(req.wValue)) {
962 case USB_DEVICE_REMOTE_WAKEUP:
Richard Zhao26c696c2012-07-07 22:56:40 +0800963 ci->remote_wakeup = 1;
964 err = isr_setup_status_phase(ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530965 break;
966 case USB_DEVICE_TEST_MODE:
967 tmode = le16_to_cpu(req.wIndex) >> 8;
968 switch (tmode) {
969 case TEST_J:
970 case TEST_K:
971 case TEST_SE0_NAK:
972 case TEST_PACKET:
973 case TEST_FORCE_EN:
Richard Zhao26c696c2012-07-07 22:56:40 +0800974 ci->test_mode = tmode;
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530975 err = isr_setup_status_phase(
Richard Zhao26c696c2012-07-07 22:56:40 +0800976 ci);
Pavankumar Kondeti541cace2011-02-18 17:43:18 +0530977 break;
978 default:
979 break;
980 }
981 default:
982 goto delegate;
983 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +0530984 } else {
985 goto delegate;
986 }
David Lopoaa69a802008-11-17 14:14:51 -0800987 break;
988 default:
989delegate:
990 if (req.wLength == 0) /* no data phase */
Richard Zhao26c696c2012-07-07 22:56:40 +0800991 ci->ep0_dir = TX;
David Lopoaa69a802008-11-17 14:14:51 -0800992
Richard Zhao26c696c2012-07-07 22:56:40 +0800993 spin_unlock(&ci->lock);
994 err = ci->driver->setup(&ci->gadget, &req);
995 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -0800996 break;
997 }
998
999 if (err < 0) {
1000 dbg_event(_usb_addr(mEp), "ERROR", err);
1001
Richard Zhao26c696c2012-07-07 22:56:40 +08001002 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001003 if (usb_ep_set_halt(&mEp->ep))
Richard Zhao26c696c2012-07-07 22:56:40 +08001004 dev_err(ci->dev, "error: ep_set_halt\n");
1005 spin_lock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001006 }
1007 }
1008}
1009
1010/******************************************************************************
1011 * ENDPT block
1012 *****************************************************************************/
1013/**
1014 * ep_enable: configure endpoint, making it usable
1015 *
1016 * Check usb_ep_enable() at "usb_gadget.h" for details
1017 */
1018static int ep_enable(struct usb_ep *ep,
1019 const struct usb_endpoint_descriptor *desc)
1020{
1021 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301022 int retval = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001023 unsigned long flags;
1024
David Lopoaa69a802008-11-17 14:14:51 -08001025 if (ep == NULL || desc == NULL)
1026 return -EINVAL;
1027
1028 spin_lock_irqsave(mEp->lock, flags);
1029
1030 /* only internal SW should enable ctrl endpts */
1031
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001032 mEp->ep.desc = desc;
David Lopoaa69a802008-11-17 14:14:51 -08001033
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301034 if (!list_empty(&mEp->qh.queue))
Richard Zhao26c696c2012-07-07 22:56:40 +08001035 dev_warn(mEp->ci->dev, "enabling a non-empty endpoint!\n");
David Lopoaa69a802008-11-17 14:14:51 -08001036
Matthias Kaehlcke15739bb2009-04-15 22:28:41 +02001037 mEp->dir = usb_endpoint_dir_in(desc) ? TX : RX;
1038 mEp->num = usb_endpoint_num(desc);
1039 mEp->type = usb_endpoint_type(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001040
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001041 mEp->ep.maxpacket = usb_endpoint_maxp(desc);
David Lopoaa69a802008-11-17 14:14:51 -08001042
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301043 dbg_event(_usb_addr(mEp), "ENABLE", 0);
David Lopoaa69a802008-11-17 14:14:51 -08001044
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301045 mEp->qh.ptr->cap = 0;
David Lopof23e6492009-04-16 14:35:24 -07001046
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301047 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
1048 mEp->qh.ptr->cap |= QH_IOS;
1049 else if (mEp->type == USB_ENDPOINT_XFER_ISOC)
1050 mEp->qh.ptr->cap &= ~QH_MULT;
1051 else
1052 mEp->qh.ptr->cap &= ~QH_ZLT;
David Lopoaa69a802008-11-17 14:14:51 -08001053
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301054 mEp->qh.ptr->cap |=
1055 (mEp->ep.maxpacket << ffs_nr(QH_MAX_PKT)) & QH_MAX_PKT;
1056 mEp->qh.ptr->td.next |= TD_TERMINATE; /* needed? */
David Lopoaa69a802008-11-17 14:14:51 -08001057
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301058 /*
1059 * Enable endpoints in the HW other than ep0 as ep0
1060 * is always enabled
1061 */
1062 if (mEp->num)
Richard Zhao26c696c2012-07-07 22:56:40 +08001063 retval |= hw_ep_enable(mEp->ci, mEp->num, mEp->dir, mEp->type);
David Lopoaa69a802008-11-17 14:14:51 -08001064
1065 spin_unlock_irqrestore(mEp->lock, flags);
1066 return retval;
1067}
1068
1069/**
1070 * ep_disable: endpoint is no longer usable
1071 *
1072 * Check usb_ep_disable() at "usb_gadget.h" for details
1073 */
1074static int ep_disable(struct usb_ep *ep)
1075{
1076 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1077 int direction, retval = 0;
1078 unsigned long flags;
1079
David Lopoaa69a802008-11-17 14:14:51 -08001080 if (ep == NULL)
1081 return -EINVAL;
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001082 else if (mEp->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001083 return -EBUSY;
1084
1085 spin_lock_irqsave(mEp->lock, flags);
1086
1087 /* only internal SW should disable ctrl endpts */
1088
1089 direction = mEp->dir;
1090 do {
1091 dbg_event(_usb_addr(mEp), "DISABLE", 0);
1092
1093 retval |= _ep_nuke(mEp);
Richard Zhao26c696c2012-07-07 22:56:40 +08001094 retval |= hw_ep_disable(mEp->ci, mEp->num, mEp->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001095
1096 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
1097 mEp->dir = (mEp->dir == TX) ? RX : TX;
1098
1099 } while (mEp->dir != direction);
1100
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +02001101 mEp->ep.desc = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001102
1103 spin_unlock_irqrestore(mEp->lock, flags);
1104 return retval;
1105}
1106
1107/**
1108 * ep_alloc_request: allocate a request object to use with this endpoint
1109 *
1110 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
1111 */
1112static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1113{
1114 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1115 struct ci13xxx_req *mReq = NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001116
Alexander Shishkin0f089092012-05-08 23:29:02 +03001117 if (ep == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001118 return NULL;
David Lopoaa69a802008-11-17 14:14:51 -08001119
David Lopoaa69a802008-11-17 14:14:51 -08001120 mReq = kzalloc(sizeof(struct ci13xxx_req), gfp_flags);
1121 if (mReq != NULL) {
1122 INIT_LIST_HEAD(&mReq->queue);
1123
1124 mReq->ptr = dma_pool_alloc(mEp->td_pool, gfp_flags,
1125 &mReq->dma);
1126 if (mReq->ptr == NULL) {
1127 kfree(mReq);
1128 mReq = NULL;
1129 }
1130 }
1131
1132 dbg_event(_usb_addr(mEp), "ALLOC", mReq == NULL);
1133
David Lopoaa69a802008-11-17 14:14:51 -08001134 return (mReq == NULL) ? NULL : &mReq->req;
1135}
1136
1137/**
1138 * ep_free_request: frees a request object
1139 *
1140 * Check usb_ep_free_request() at "usb_gadget.h" for details
1141 */
1142static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
1143{
1144 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1145 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
1146 unsigned long flags;
1147
David Lopoaa69a802008-11-17 14:14:51 -08001148 if (ep == NULL || req == NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001149 return;
1150 } else if (!list_empty(&mReq->queue)) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001151 dev_err(mEp->ci->dev, "freeing queued request\n");
David Lopoaa69a802008-11-17 14:14:51 -08001152 return;
1153 }
1154
1155 spin_lock_irqsave(mEp->lock, flags);
1156
1157 if (mReq->ptr)
1158 dma_pool_free(mEp->td_pool, mReq->ptr, mReq->dma);
1159 kfree(mReq);
1160
1161 dbg_event(_usb_addr(mEp), "FREE", 0);
1162
1163 spin_unlock_irqrestore(mEp->lock, flags);
1164}
1165
1166/**
1167 * ep_queue: queues (submits) an I/O request to an endpoint
1168 *
1169 * Check usb_ep_queue()* at usb_gadget.h" for details
1170 */
1171static int ep_queue(struct usb_ep *ep, struct usb_request *req,
1172 gfp_t __maybe_unused gfp_flags)
1173{
1174 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1175 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
Richard Zhao26c696c2012-07-07 22:56:40 +08001176 struct ci13xxx *ci = mEp->ci;
David Lopoaa69a802008-11-17 14:14:51 -08001177 int retval = 0;
1178 unsigned long flags;
1179
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001180 if (ep == NULL || req == NULL || mEp->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001181 return -EINVAL;
1182
1183 spin_lock_irqsave(mEp->lock, flags);
1184
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +05301185 if (mEp->type == USB_ENDPOINT_XFER_CONTROL) {
1186 if (req->length)
Richard Zhao26c696c2012-07-07 22:56:40 +08001187 mEp = (ci->ep0_dir == RX) ?
1188 ci->ep0out : ci->ep0in;
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +05301189 if (!list_empty(&mEp->qh.queue)) {
1190 _ep_nuke(mEp);
1191 retval = -EOVERFLOW;
Richard Zhao26c696c2012-07-07 22:56:40 +08001192 dev_warn(mEp->ci->dev, "endpoint ctrl %X nuked\n",
Alexander Shishkin0f089092012-05-08 23:29:02 +03001193 _usb_addr(mEp));
Pavankumar Kondeti76cd9cf2011-05-02 11:56:31 +05301194 }
David Lopoaa69a802008-11-17 14:14:51 -08001195 }
1196
1197 /* first nuke then test link, e.g. previous status has not sent */
1198 if (!list_empty(&mReq->queue)) {
1199 retval = -EBUSY;
Richard Zhao26c696c2012-07-07 22:56:40 +08001200 dev_err(mEp->ci->dev, "request already in queue\n");
David Lopoaa69a802008-11-17 14:14:51 -08001201 goto done;
1202 }
1203
Alexander Shishkin1155a7b2012-05-08 23:28:57 +03001204 if (req->length > 4 * CI13XXX_PAGE_SIZE) {
1205 req->length = 4 * CI13XXX_PAGE_SIZE;
David Lopoaa69a802008-11-17 14:14:51 -08001206 retval = -EMSGSIZE;
Richard Zhao26c696c2012-07-07 22:56:40 +08001207 dev_warn(mEp->ci->dev, "request length truncated\n");
David Lopoaa69a802008-11-17 14:14:51 -08001208 }
1209
1210 dbg_queue(_usb_addr(mEp), req, retval);
1211
1212 /* push request */
1213 mReq->req.status = -EINPROGRESS;
1214 mReq->req.actual = 0;
David Lopoaa69a802008-11-17 14:14:51 -08001215
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +05301216 retval = _hardware_enqueue(mEp, mReq);
Artem Leonenkod9bb9c12010-12-14 23:45:50 -08001217
1218 if (retval == -EALREADY) {
David Lopoaa69a802008-11-17 14:14:51 -08001219 dbg_event(_usb_addr(mEp), "QUEUE", retval);
1220 retval = 0;
1221 }
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +05301222 if (!retval)
1223 list_add_tail(&mReq->queue, &mEp->qh.queue);
David Lopoaa69a802008-11-17 14:14:51 -08001224
1225 done:
1226 spin_unlock_irqrestore(mEp->lock, flags);
1227 return retval;
1228}
1229
1230/**
1231 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
1232 *
1233 * Check usb_ep_dequeue() at "usb_gadget.h" for details
1234 */
1235static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
1236{
1237 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1238 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
1239 unsigned long flags;
1240
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +05301241 if (ep == NULL || req == NULL || mReq->req.status != -EALREADY ||
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001242 mEp->ep.desc == NULL || list_empty(&mReq->queue) ||
Pavankumar Kondeti0e6ca192011-02-18 17:43:16 +05301243 list_empty(&mEp->qh.queue))
David Lopoaa69a802008-11-17 14:14:51 -08001244 return -EINVAL;
1245
1246 spin_lock_irqsave(mEp->lock, flags);
1247
1248 dbg_event(_usb_addr(mEp), "DEQUEUE", 0);
1249
Richard Zhao26c696c2012-07-07 22:56:40 +08001250 hw_ep_flush(mEp->ci, mEp->num, mEp->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001251
1252 /* pop request */
1253 list_del_init(&mReq->queue);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001254
Richard Zhao26c696c2012-07-07 22:56:40 +08001255 usb_gadget_unmap_request(&mEp->ci->gadget, req, mEp->dir);
Alexander Shishkin5e0aa492012-05-11 17:25:56 +03001256
David Lopoaa69a802008-11-17 14:14:51 -08001257 req->status = -ECONNRESET;
1258
Artem Leonenko7c25a822010-12-14 23:46:55 -08001259 if (mReq->req.complete != NULL) {
David Lopoaa69a802008-11-17 14:14:51 -08001260 spin_unlock(mEp->lock);
1261 mReq->req.complete(&mEp->ep, &mReq->req);
1262 spin_lock(mEp->lock);
1263 }
1264
1265 spin_unlock_irqrestore(mEp->lock, flags);
1266 return 0;
1267}
1268
1269/**
1270 * ep_set_halt: sets the endpoint halt feature
1271 *
1272 * Check usb_ep_set_halt() at "usb_gadget.h" for details
1273 */
1274static int ep_set_halt(struct usb_ep *ep, int value)
1275{
1276 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1277 int direction, retval = 0;
1278 unsigned long flags;
1279
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001280 if (ep == NULL || mEp->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001281 return -EINVAL;
1282
1283 spin_lock_irqsave(mEp->lock, flags);
1284
1285#ifndef STALL_IN
1286 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
1287 if (value && mEp->type == USB_ENDPOINT_XFER_BULK && mEp->dir == TX &&
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301288 !list_empty(&mEp->qh.queue)) {
David Lopoaa69a802008-11-17 14:14:51 -08001289 spin_unlock_irqrestore(mEp->lock, flags);
1290 return -EAGAIN;
1291 }
1292#endif
1293
1294 direction = mEp->dir;
1295 do {
1296 dbg_event(_usb_addr(mEp), "HALT", value);
Richard Zhao26c696c2012-07-07 22:56:40 +08001297 retval |= hw_ep_set_halt(mEp->ci, mEp->num, mEp->dir, value);
David Lopoaa69a802008-11-17 14:14:51 -08001298
1299 if (!value)
1300 mEp->wedge = 0;
1301
1302 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
1303 mEp->dir = (mEp->dir == TX) ? RX : TX;
1304
1305 } while (mEp->dir != direction);
1306
1307 spin_unlock_irqrestore(mEp->lock, flags);
1308 return retval;
1309}
1310
1311/**
1312 * ep_set_wedge: sets the halt feature and ignores clear requests
1313 *
1314 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
1315 */
1316static int ep_set_wedge(struct usb_ep *ep)
1317{
1318 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1319 unsigned long flags;
1320
Ido Shayevitz31fb6012012-03-12 20:25:23 +02001321 if (ep == NULL || mEp->ep.desc == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001322 return -EINVAL;
1323
1324 spin_lock_irqsave(mEp->lock, flags);
1325
1326 dbg_event(_usb_addr(mEp), "WEDGE", 0);
1327 mEp->wedge = 1;
1328
1329 spin_unlock_irqrestore(mEp->lock, flags);
1330
1331 return usb_ep_set_halt(ep);
1332}
1333
1334/**
1335 * ep_fifo_flush: flushes contents of a fifo
1336 *
1337 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
1338 */
1339static void ep_fifo_flush(struct usb_ep *ep)
1340{
1341 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
1342 unsigned long flags;
1343
David Lopoaa69a802008-11-17 14:14:51 -08001344 if (ep == NULL) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001345 dev_err(mEp->ci->dev, "%02X: -EINVAL\n", _usb_addr(mEp));
David Lopoaa69a802008-11-17 14:14:51 -08001346 return;
1347 }
1348
1349 spin_lock_irqsave(mEp->lock, flags);
1350
1351 dbg_event(_usb_addr(mEp), "FFLUSH", 0);
Richard Zhao26c696c2012-07-07 22:56:40 +08001352 hw_ep_flush(mEp->ci, mEp->num, mEp->dir);
David Lopoaa69a802008-11-17 14:14:51 -08001353
1354 spin_unlock_irqrestore(mEp->lock, flags);
1355}
1356
1357/**
1358 * Endpoint-specific part of the API to the USB controller hardware
1359 * Check "usb_gadget.h" for details
1360 */
1361static const struct usb_ep_ops usb_ep_ops = {
1362 .enable = ep_enable,
1363 .disable = ep_disable,
1364 .alloc_request = ep_alloc_request,
1365 .free_request = ep_free_request,
1366 .queue = ep_queue,
1367 .dequeue = ep_dequeue,
1368 .set_halt = ep_set_halt,
1369 .set_wedge = ep_set_wedge,
1370 .fifo_flush = ep_fifo_flush,
1371};
1372
1373/******************************************************************************
1374 * GADGET block
1375 *****************************************************************************/
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301376static int ci13xxx_vbus_session(struct usb_gadget *_gadget, int is_active)
1377{
Richard Zhao26c696c2012-07-07 22:56:40 +08001378 struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301379 unsigned long flags;
1380 int gadget_ready = 0;
1381
Richard Zhao26c696c2012-07-07 22:56:40 +08001382 if (!(ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS))
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301383 return -EOPNOTSUPP;
1384
Richard Zhao26c696c2012-07-07 22:56:40 +08001385 spin_lock_irqsave(&ci->lock, flags);
1386 ci->vbus_active = is_active;
1387 if (ci->driver)
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301388 gadget_ready = 1;
Richard Zhao26c696c2012-07-07 22:56:40 +08001389 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301390
1391 if (gadget_ready) {
1392 if (is_active) {
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301393 pm_runtime_get_sync(&_gadget->dev);
Richard Zhao26c696c2012-07-07 22:56:40 +08001394 hw_device_reset(ci, USBMODE_CM_DC);
Richard Zhao8c4fc032012-09-12 14:58:09 +03001395 hw_enable_vbus_intr(ci);
Richard Zhao26c696c2012-07-07 22:56:40 +08001396 hw_device_state(ci, ci->ep0out->qh.dma);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301397 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +08001398 hw_device_state(ci, 0);
1399 if (ci->platdata->notify_event)
1400 ci->platdata->notify_event(ci,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301401 CI13XXX_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001402 _gadget_stop_activity(&ci->gadget);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301403 pm_runtime_put_sync(&_gadget->dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301404 }
1405 }
1406
1407 return 0;
1408}
1409
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301410static int ci13xxx_wakeup(struct usb_gadget *_gadget)
1411{
Richard Zhao26c696c2012-07-07 22:56:40 +08001412 struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301413 unsigned long flags;
1414 int ret = 0;
1415
Richard Zhao26c696c2012-07-07 22:56:40 +08001416 spin_lock_irqsave(&ci->lock, flags);
1417 if (!ci->remote_wakeup) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301418 ret = -EOPNOTSUPP;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301419 goto out;
1420 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001421 if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) {
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301422 ret = -EINVAL;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301423 goto out;
1424 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001425 hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301426out:
Richard Zhao26c696c2012-07-07 22:56:40 +08001427 spin_unlock_irqrestore(&ci->lock, flags);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301428 return ret;
1429}
1430
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301431static int ci13xxx_vbus_draw(struct usb_gadget *_gadget, unsigned mA)
1432{
Richard Zhao26c696c2012-07-07 22:56:40 +08001433 struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301434
Richard Zhao26c696c2012-07-07 22:56:40 +08001435 if (ci->transceiver)
1436 return usb_phy_set_power(ci->transceiver, mA);
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301437 return -ENOTSUPP;
1438}
1439
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001440/* Change Data+ pullup status
1441 * this func is used by usb_gadget_connect/disconnet
1442 */
1443static int ci13xxx_pullup(struct usb_gadget *_gadget, int is_on)
1444{
1445 struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget);
1446
1447 if (is_on)
1448 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);
1449 else
1450 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
1451
1452 return 0;
1453}
1454
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001455static int ci13xxx_start(struct usb_gadget *gadget,
1456 struct usb_gadget_driver *driver);
1457static int ci13xxx_stop(struct usb_gadget *gadget,
1458 struct usb_gadget_driver *driver);
David Lopoaa69a802008-11-17 14:14:51 -08001459/**
1460 * Device operations part of the API to the USB controller hardware,
1461 * which don't involve endpoints (or i/o)
1462 * Check "usb_gadget.h" for details
1463 */
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301464static const struct usb_gadget_ops usb_gadget_ops = {
1465 .vbus_session = ci13xxx_vbus_session,
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301466 .wakeup = ci13xxx_wakeup,
Michael Grzeschikc0a48e62012-09-12 14:58:01 +03001467 .pullup = ci13xxx_pullup,
Pavankumar Kondetid8608522011-05-04 10:19:47 +05301468 .vbus_draw = ci13xxx_vbus_draw,
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001469 .udc_start = ci13xxx_start,
1470 .udc_stop = ci13xxx_stop,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301471};
David Lopoaa69a802008-11-17 14:14:51 -08001472
Richard Zhao26c696c2012-07-07 22:56:40 +08001473static int init_eps(struct ci13xxx *ci)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001474{
1475 int retval = 0, i, j;
1476
Richard Zhao26c696c2012-07-07 22:56:40 +08001477 for (i = 0; i < ci->hw_ep_max/2; i++)
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001478 for (j = RX; j <= TX; j++) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001479 int k = i + j * ci->hw_ep_max/2;
1480 struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[k];
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001481
1482 scnprintf(mEp->name, sizeof(mEp->name), "ep%i%s", i,
1483 (j == TX) ? "in" : "out");
1484
Richard Zhao26c696c2012-07-07 22:56:40 +08001485 mEp->ci = ci;
1486 mEp->lock = &ci->lock;
1487 mEp->td_pool = ci->td_pool;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001488
1489 mEp->ep.name = mEp->name;
1490 mEp->ep.ops = &usb_ep_ops;
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001491 /*
1492 * for ep0: maxP defined in desc, for other
1493 * eps, maxP is set by epautoconfig() called
1494 * by gadget layer
1495 */
1496 mEp->ep.maxpacket = (unsigned short)~0;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001497
1498 INIT_LIST_HEAD(&mEp->qh.queue);
Richard Zhao26c696c2012-07-07 22:56:40 +08001499 mEp->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001500 &mEp->qh.dma);
1501 if (mEp->qh.ptr == NULL)
1502 retval = -ENOMEM;
1503 else
1504 memset(mEp->qh.ptr, 0, sizeof(*mEp->qh.ptr));
1505
1506 /*
1507 * set up shorthands for ep0 out and in endpoints,
1508 * don't add to gadget's ep_list
1509 */
1510 if (i == 0) {
1511 if (j == RX)
Richard Zhao26c696c2012-07-07 22:56:40 +08001512 ci->ep0out = mEp;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001513 else
Richard Zhao26c696c2012-07-07 22:56:40 +08001514 ci->ep0in = mEp;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001515
Michael Grzeschik7f67c382012-09-12 14:58:00 +03001516 mEp->ep.maxpacket = CTRL_PAYLOAD_MAX;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001517 continue;
1518 }
1519
Richard Zhao26c696c2012-07-07 22:56:40 +08001520 list_add_tail(&mEp->ep.ep_list, &ci->gadget.ep_list);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001521 }
1522
1523 return retval;
1524}
1525
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001526static void destroy_eps(struct ci13xxx *ci)
1527{
1528 int i;
1529
1530 for (i = 0; i < ci->hw_ep_max; i++) {
1531 struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[i];
1532
1533 dma_pool_free(ci->qh_pool, mEp->qh.ptr, mEp->qh.dma);
1534 }
1535}
1536
David Lopoaa69a802008-11-17 14:14:51 -08001537/**
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001538 * ci13xxx_start: register a gadget driver
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001539 * @gadget: our gadget
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001540 * @driver: the driver being registered
David Lopoaa69a802008-11-17 14:14:51 -08001541 *
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001542 * Interrupts are enabled here.
David Lopoaa69a802008-11-17 14:14:51 -08001543 */
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001544static int ci13xxx_start(struct usb_gadget *gadget,
1545 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001546{
Richard Zhao26c696c2012-07-07 22:56:40 +08001547 struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget);
Pavankumar Kondetica9cfea2011-01-11 09:19:22 +05301548 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001549 int retval = -ENOMEM;
1550
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001551 if (driver->disconnect == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001552 return -EINVAL;
David Lopoaa69a802008-11-17 14:14:51 -08001553
David Lopoaa69a802008-11-17 14:14:51 -08001554
Richard Zhao26c696c2012-07-07 22:56:40 +08001555 ci->ep0out->ep.desc = &ctrl_endpt_out_desc;
1556 retval = usb_ep_enable(&ci->ep0out->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301557 if (retval)
1558 return retval;
Felipe Balbi877c1f52011-06-29 16:41:57 +03001559
Richard Zhao26c696c2012-07-07 22:56:40 +08001560 ci->ep0in->ep.desc = &ctrl_endpt_in_desc;
1561 retval = usb_ep_enable(&ci->ep0in->ep);
Anji jonnalaac1aa6a2011-05-02 11:56:32 +05301562 if (retval)
1563 return retval;
Richard Zhao26c696c2012-07-07 22:56:40 +08001564 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001565
Richard Zhao26c696c2012-07-07 22:56:40 +08001566 ci->driver = driver;
1567 pm_runtime_get_sync(&ci->gadget.dev);
1568 if (ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS) {
1569 if (ci->vbus_active) {
Richard Zhao8c4fc032012-09-12 14:58:09 +03001570 if (ci->platdata->flags & CI13XXX_REGS_SHARED) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001571 hw_device_reset(ci, USBMODE_CM_DC);
Richard Zhao8c4fc032012-09-12 14:58:09 +03001572 hw_enable_vbus_intr(ci);
1573 }
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301574 } else {
Richard Zhao26c696c2012-07-07 22:56:40 +08001575 pm_runtime_put_sync(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301576 goto done;
1577 }
1578 }
1579
Richard Zhao26c696c2012-07-07 22:56:40 +08001580 retval = hw_device_state(ci, ci->ep0out->qh.dma);
Pavankumar Kondetic0360192010-12-07 17:54:04 +05301581 if (retval)
Richard Zhao26c696c2012-07-07 22:56:40 +08001582 pm_runtime_put_sync(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001583
1584 done:
Richard Zhao26c696c2012-07-07 22:56:40 +08001585 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001586 return retval;
1587}
David Lopoaa69a802008-11-17 14:14:51 -08001588
1589/**
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001590 * ci13xxx_stop: unregister a gadget driver
David Lopoaa69a802008-11-17 14:14:51 -08001591 */
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001592static int ci13xxx_stop(struct usb_gadget *gadget,
1593 struct usb_gadget_driver *driver)
David Lopoaa69a802008-11-17 14:14:51 -08001594{
Richard Zhao26c696c2012-07-07 22:56:40 +08001595 struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget);
Alexander Shishkin1f339d82012-05-08 23:29:04 +03001596 unsigned long flags;
David Lopoaa69a802008-11-17 14:14:51 -08001597
Richard Zhao26c696c2012-07-07 22:56:40 +08001598 spin_lock_irqsave(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001599
Richard Zhao26c696c2012-07-07 22:56:40 +08001600 if (!(ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS) ||
1601 ci->vbus_active) {
1602 hw_device_state(ci, 0);
1603 if (ci->platdata->notify_event)
1604 ci->platdata->notify_event(ci,
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301605 CI13XXX_CONTROLLER_STOPPED_EVENT);
Richard Zhao26c696c2012-07-07 22:56:40 +08001606 ci->driver = NULL;
1607 spin_unlock_irqrestore(&ci->lock, flags);
1608 _gadget_stop_activity(&ci->gadget);
1609 spin_lock_irqsave(&ci->lock, flags);
1610 pm_runtime_put(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301611 }
David Lopoaa69a802008-11-17 14:14:51 -08001612
Richard Zhao26c696c2012-07-07 22:56:40 +08001613 spin_unlock_irqrestore(&ci->lock, flags);
David Lopoaa69a802008-11-17 14:14:51 -08001614
David Lopoaa69a802008-11-17 14:14:51 -08001615 return 0;
1616}
David Lopoaa69a802008-11-17 14:14:51 -08001617
1618/******************************************************************************
1619 * BUS block
1620 *****************************************************************************/
1621/**
Richard Zhao26c696c2012-07-07 22:56:40 +08001622 * udc_irq: ci interrupt handler
David Lopoaa69a802008-11-17 14:14:51 -08001623 *
1624 * This function returns IRQ_HANDLED if the IRQ has been handled
1625 * It locks access to registers
1626 */
Richard Zhao26c696c2012-07-07 22:56:40 +08001627static irqreturn_t udc_irq(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001628{
David Lopoaa69a802008-11-17 14:14:51 -08001629 irqreturn_t retval;
1630 u32 intr;
1631
Richard Zhao26c696c2012-07-07 22:56:40 +08001632 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001633 return IRQ_HANDLED;
David Lopoaa69a802008-11-17 14:14:51 -08001634
Richard Zhao26c696c2012-07-07 22:56:40 +08001635 spin_lock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301636
Richard Zhao26c696c2012-07-07 22:56:40 +08001637 if (ci->platdata->flags & CI13XXX_REGS_SHARED) {
1638 if (hw_read(ci, OP_USBMODE, USBMODE_CM) !=
Alexander Shishkin758fc982012-05-11 17:25:53 +03001639 USBMODE_CM_DC) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001640 spin_unlock(&ci->lock);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301641 return IRQ_NONE;
1642 }
1643 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001644 intr = hw_test_and_clear_intr_active(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001645 dbg_interrupt(intr);
David Lopoaa69a802008-11-17 14:14:51 -08001646
Alexander Shishkine443b332012-05-11 17:25:46 +03001647 if (intr) {
David Lopoaa69a802008-11-17 14:14:51 -08001648 /* order defines priority - do NOT change it */
Alexander Shishkine443b332012-05-11 17:25:46 +03001649 if (USBi_URI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001650 isr_reset_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001651
David Lopoaa69a802008-11-17 14:14:51 -08001652 if (USBi_PCI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001653 ci->gadget.speed = hw_port_is_high_speed(ci) ?
David Lopoaa69a802008-11-17 14:14:51 -08001654 USB_SPEED_HIGH : USB_SPEED_FULL;
Richard Zhao26c696c2012-07-07 22:56:40 +08001655 if (ci->suspended && ci->driver->resume) {
1656 spin_unlock(&ci->lock);
1657 ci->driver->resume(&ci->gadget);
1658 spin_lock(&ci->lock);
1659 ci->suspended = 0;
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301660 }
David Lopoaa69a802008-11-17 14:14:51 -08001661 }
Alexander Shishkine443b332012-05-11 17:25:46 +03001662
1663 if (USBi_UI & intr)
Richard Zhao26c696c2012-07-07 22:56:40 +08001664 isr_tr_complete_handler(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +03001665
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301666 if (USBi_SLI & intr) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001667 if (ci->gadget.speed != USB_SPEED_UNKNOWN &&
1668 ci->driver->suspend) {
1669 ci->suspended = 1;
1670 spin_unlock(&ci->lock);
1671 ci->driver->suspend(&ci->gadget);
1672 spin_lock(&ci->lock);
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301673 }
Pavankumar Kondetie2b61c12011-02-18 17:43:17 +05301674 }
David Lopoaa69a802008-11-17 14:14:51 -08001675 retval = IRQ_HANDLED;
1676 } else {
David Lopoaa69a802008-11-17 14:14:51 -08001677 retval = IRQ_NONE;
1678 }
Richard Zhao8c4fc032012-09-12 14:58:09 +03001679
1680 intr = hw_read(ci, OP_OTGSC, ~0);
1681 hw_write(ci, OP_OTGSC, ~0, intr);
1682
1683 if (intr & (OTGSC_AVVIE & OTGSC_AVVIS))
1684 queue_work(ci->wq, &ci->vbus_work);
1685
Richard Zhao26c696c2012-07-07 22:56:40 +08001686 spin_unlock(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001687
1688 return retval;
1689}
1690
1691/**
1692 * udc_release: driver release function
1693 * @dev: device
1694 *
1695 * Currently does nothing
1696 */
1697static void udc_release(struct device *dev)
1698{
David Lopoaa69a802008-11-17 14:14:51 -08001699}
1700
1701/**
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001702 * udc_start: initialize gadget role
Richard Zhao26c696c2012-07-07 22:56:40 +08001703 * @ci: chipidea controller
David Lopoaa69a802008-11-17 14:14:51 -08001704 */
Richard Zhao26c696c2012-07-07 22:56:40 +08001705static int udc_start(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001706{
Richard Zhao26c696c2012-07-07 22:56:40 +08001707 struct device *dev = ci->dev;
David Lopoaa69a802008-11-17 14:14:51 -08001708 int retval = 0;
1709
Richard Zhao26c696c2012-07-07 22:56:40 +08001710 spin_lock_init(&ci->lock);
David Lopoaa69a802008-11-17 14:14:51 -08001711
Richard Zhao26c696c2012-07-07 22:56:40 +08001712 ci->gadget.ops = &usb_gadget_ops;
1713 ci->gadget.speed = USB_SPEED_UNKNOWN;
1714 ci->gadget.max_speed = USB_SPEED_HIGH;
1715 ci->gadget.is_otg = 0;
1716 ci->gadget.name = ci->platdata->name;
David Lopoaa69a802008-11-17 14:14:51 -08001717
Richard Zhao26c696c2012-07-07 22:56:40 +08001718 INIT_LIST_HEAD(&ci->gadget.ep_list);
David Lopoaa69a802008-11-17 14:14:51 -08001719
Richard Zhao26c696c2012-07-07 22:56:40 +08001720 dev_set_name(&ci->gadget.dev, "gadget");
1721 ci->gadget.dev.dma_mask = dev->dma_mask;
1722 ci->gadget.dev.coherent_dma_mask = dev->coherent_dma_mask;
1723 ci->gadget.dev.parent = dev;
1724 ci->gadget.dev.release = udc_release;
David Lopoaa69a802008-11-17 14:14:51 -08001725
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001726 /* alloc resources */
Richard Zhao26c696c2012-07-07 22:56:40 +08001727 ci->qh_pool = dma_pool_create("ci13xxx_qh", dev,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001728 sizeof(struct ci13xxx_qh),
1729 64, CI13XXX_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001730 if (ci->qh_pool == NULL)
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001731 return -ENOMEM;
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001732
Richard Zhao26c696c2012-07-07 22:56:40 +08001733 ci->td_pool = dma_pool_create("ci13xxx_td", dev,
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001734 sizeof(struct ci13xxx_td),
1735 64, CI13XXX_PAGE_SIZE);
Richard Zhao26c696c2012-07-07 22:56:40 +08001736 if (ci->td_pool == NULL) {
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001737 retval = -ENOMEM;
1738 goto free_qh_pool;
1739 }
1740
Richard Zhao26c696c2012-07-07 22:56:40 +08001741 retval = init_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001742 if (retval)
1743 goto free_pools;
1744
Richard Zhao26c696c2012-07-07 22:56:40 +08001745 ci->gadget.ep0 = &ci->ep0in->ep;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301746
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001747 if (ci->global_phy)
1748 ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301749
Richard Zhao26c696c2012-07-07 22:56:40 +08001750 if (ci->platdata->flags & CI13XXX_REQUIRE_TRANSCEIVER) {
1751 if (ci->transceiver == NULL) {
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301752 retval = -ENODEV;
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001753 goto destroy_eps;
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301754 }
1755 }
1756
Richard Zhao26c696c2012-07-07 22:56:40 +08001757 if (!(ci->platdata->flags & CI13XXX_REGS_SHARED)) {
1758 retval = hw_device_reset(ci, USBMODE_CM_DC);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301759 if (retval)
1760 goto put_transceiver;
Richard Zhao8c4fc032012-09-12 14:58:09 +03001761 hw_enable_vbus_intr(ci);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301762 }
1763
Richard Zhao26c696c2012-07-07 22:56:40 +08001764 retval = device_register(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301765 if (retval) {
Richard Zhao26c696c2012-07-07 22:56:40 +08001766 put_device(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301767 goto put_transceiver;
1768 }
David Lopoaa69a802008-11-17 14:14:51 -08001769
Richard Zhao26c696c2012-07-07 22:56:40 +08001770 retval = dbg_create_files(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301771 if (retval)
1772 goto unreg_device;
1773
Richard Zhao26c696c2012-07-07 22:56:40 +08001774 if (!IS_ERR_OR_NULL(ci->transceiver)) {
1775 retval = otg_set_peripheral(ci->transceiver->otg,
1776 &ci->gadget);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301777 if (retval)
1778 goto remove_dbg;
David Lopoaa69a802008-11-17 14:14:51 -08001779 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001780
Richard Zhao26c696c2012-07-07 22:56:40 +08001781 retval = usb_add_gadget_udc(dev, &ci->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001782 if (retval)
1783 goto remove_trans;
1784
Richard Zhao26c696c2012-07-07 22:56:40 +08001785 pm_runtime_no_callbacks(&ci->gadget.dev);
1786 pm_runtime_enable(&ci->gadget.dev);
David Lopoaa69a802008-11-17 14:14:51 -08001787
David Lopoaa69a802008-11-17 14:14:51 -08001788 return retval;
1789
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001790remove_trans:
Richard Zhao26c696c2012-07-07 22:56:40 +08001791 if (!IS_ERR_OR_NULL(ci->transceiver)) {
Marc Kleine-Buddec9d1f942012-09-12 14:58:02 +03001792 otg_set_peripheral(ci->transceiver->otg, NULL);
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001793 if (ci->global_phy)
1794 usb_put_phy(ci->transceiver);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001795 }
1796
Greg Kroah-Hartman0917ba82012-04-27 11:24:39 -07001797 dev_err(dev, "error = %i\n", retval);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301798remove_dbg:
Richard Zhao26c696c2012-07-07 22:56:40 +08001799 dbg_remove_files(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301800unreg_device:
Richard Zhao26c696c2012-07-07 22:56:40 +08001801 device_unregister(&ci->gadget.dev);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301802put_transceiver:
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001803 if (!IS_ERR_OR_NULL(ci->transceiver) && ci->global_phy)
Richard Zhao26c696c2012-07-07 22:56:40 +08001804 usb_put_phy(ci->transceiver);
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001805destroy_eps:
1806 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001807free_pools:
Richard Zhao26c696c2012-07-07 22:56:40 +08001808 dma_pool_destroy(ci->td_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001809free_qh_pool:
Richard Zhao26c696c2012-07-07 22:56:40 +08001810 dma_pool_destroy(ci->qh_pool);
David Lopoaa69a802008-11-17 14:14:51 -08001811 return retval;
1812}
1813
1814/**
1815 * udc_remove: parent remove must call this to remove UDC
1816 *
1817 * No interrupts active, the IRQ has been released
1818 */
Richard Zhao26c696c2012-07-07 22:56:40 +08001819static void udc_stop(struct ci13xxx *ci)
David Lopoaa69a802008-11-17 14:14:51 -08001820{
Richard Zhao26c696c2012-07-07 22:56:40 +08001821 if (ci == NULL)
David Lopoaa69a802008-11-17 14:14:51 -08001822 return;
Alexander Shishkin0f089092012-05-08 23:29:02 +03001823
Richard Zhao8c4fc032012-09-12 14:58:09 +03001824 hw_disable_vbus_intr(ci);
1825 cancel_work_sync(&ci->vbus_work);
1826
Richard Zhao26c696c2012-07-07 22:56:40 +08001827 usb_del_gadget_udc(&ci->gadget);
David Lopoaa69a802008-11-17 14:14:51 -08001828
Marc Kleine-Buddead6b1b92012-09-12 14:58:03 +03001829 destroy_eps(ci);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001830
Richard Zhao26c696c2012-07-07 22:56:40 +08001831 dma_pool_destroy(ci->td_pool);
1832 dma_pool_destroy(ci->qh_pool);
Alexander Shishkin790c2d52012-05-08 23:29:03 +03001833
Richard Zhao26c696c2012-07-07 22:56:40 +08001834 if (!IS_ERR_OR_NULL(ci->transceiver)) {
1835 otg_set_peripheral(ci->transceiver->otg, NULL);
Richard Zhaoa2c3d692012-07-07 22:56:46 +08001836 if (ci->global_phy)
1837 usb_put_phy(ci->transceiver);
Pavankumar Kondetif01ef572010-12-07 17:54:02 +05301838 }
Richard Zhao26c696c2012-07-07 22:56:40 +08001839 dbg_remove_files(&ci->gadget.dev);
1840 device_unregister(&ci->gadget.dev);
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001841 /* my kobject is dynamic, I swear! */
Richard Zhao26c696c2012-07-07 22:56:40 +08001842 memset(&ci->gadget, 0, sizeof(ci->gadget));
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001843}
David Lopoaa69a802008-11-17 14:14:51 -08001844
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001845/**
1846 * ci_hdrc_gadget_init - initialize device related bits
1847 * ci: the controller
1848 *
1849 * This function enables the gadget role, if the device is "device capable".
1850 */
1851int ci_hdrc_gadget_init(struct ci13xxx *ci)
1852{
1853 struct ci_role_driver *rdrv;
1854
1855 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC))
1856 return -ENXIO;
1857
1858 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
1859 if (!rdrv)
1860 return -ENOMEM;
1861
1862 rdrv->start = udc_start;
1863 rdrv->stop = udc_stop;
1864 rdrv->irq = udc_irq;
1865 rdrv->name = "gadget";
1866 ci->roles[CI_ROLE_GADGET] = rdrv;
Richard Zhao8c4fc032012-09-12 14:58:09 +03001867 INIT_WORK(&ci->vbus_work, vbus_work);
Alexander Shishkin5f36e232012-05-11 17:25:47 +03001868
1869 return 0;
David Lopoaa69a802008-11-17 14:14:51 -08001870}