blob: 4c00081743679c54132978b1cb0abad9fc5d505b [file] [log] [blame]
Remy Bohmer3ccbfb22009-04-05 11:43:28 +02001/*
2 * PXA27x USB device driver for u-boot.
3 *
4 * Copyright (C) 2007 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (C) 2007 Eurotech S.p.A. <info@eurotech.it>
6 * Copyright (C) 2008 Vivek Kutal <vivek.kutal@azingo.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25
26#include <common.h>
27#include <config.h>
28#include <asm/byteorder.h>
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +020029#include <usbdevice.h>
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020030#include <asm/arch/hardware.h>
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +020031#include <asm/io.h>
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020032#include <usb/pxa27x_udc.h>
33
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +020034#include "ep0.h"
35
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020036/* number of endpoints on this UDC */
37#define UDC_MAX_ENDPOINTS 24
38
39static struct urb *ep0_urb;
40static struct usb_device_instance *udc_device;
41static int ep0state = EP0_IDLE;
42
43#ifdef USBDDBG
44static void udc_dump_buffer(char *name, u8 *buf, int len)
45{
46 usbdbg("%s - buf %p, len %d", name, buf, len);
47 print_buffer(0, buf, 1, len, 0);
48}
49#else
50#define udc_dump_buffer(name, buf, len) /* void */
51#endif
52
53static inline void udc_ack_int_UDCCR(int mask)
54{
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +020055 writel(readl(USIR1) | mask, USIR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020056}
57
58/*
59 * If the endpoint has an active tx_urb, then the next packet of data from the
60 * URB is written to the tx FIFO.
61 * The total amount of data in the urb is given by urb->actual_length.
62 * The maximum amount of data that can be sent in any one packet is given by
63 * endpoint->tx_packetSize.
64 * The number of data bytes from this URB that have already been transmitted
65 * is given by endpoint->sent.
66 * endpoint->last is updated by this routine with the number of data bytes
67 * transmitted in this packet.
68 */
69static int udc_write_urb(struct usb_endpoint_instance *endpoint)
70{
71 struct urb *urb = endpoint->tx_urb;
72 int ep_num = endpoint->endpoint_address & USB_ENDPOINT_NUMBER_MASK;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020073 u32 *data32 = (u32 *) urb->buffer;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +020074 u8 *data8 = (u8 *) urb->buffer;
75 unsigned int i, n, w, b, is_short;
76 int timeout = 2000; /* 2ms */
77
78 if (!urb || !urb->actual_length)
79 return -1;
80
81 n = MIN(urb->actual_length - endpoint->sent, endpoint->tx_packetSize);
82 if (n <= 0)
83 return -1;
84
85 usbdbg("write urb on ep %d", ep_num);
86#if defined(USBDDBG) && defined(USBDPARANOIA)
87 usbdbg("urb: buf %p, buf_len %d, actual_len %d",
88 urb->buffer, urb->buffer_length, urb->actual_length);
89 usbdbg("endpoint: sent %d, tx_packetSize %d, last %d",
90 endpoint->sent, endpoint->tx_packetSize, endpoint->last);
91#endif
92
93 is_short = n != endpoint->tx_packetSize;
94 w = n / 4;
95 b = n % 4;
96 usbdbg("n %d%s w %d b %d", n, is_short ? "-s" : "", w, b);
97 udc_dump_buffer("urb write", data8 + endpoint->sent, n);
98
99 /* Prepare for data send */
100 if (ep_num)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200101 writel(UDCCSR_PC ,UDCCSN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200102
103 for (i = 0; i < w; i++)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200104 writel(data32[endpoint->sent / 4 + i], UDCDN(ep_num));
105
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200106 for (i = 0; i < b; i++)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200107 writeb(data8[endpoint->sent + w * 4 + i], UDCDN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200108
109 /* Set "Packet Complete" if less data then tx_packetSize */
110 if (is_short)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200111 writel(ep_num ? UDCCSR_SP : UDCCSR0_IPR, UDCCSN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200112
113 /* Wait for data sent */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200114 if (ep_num) {
115 while (!(readl(UDCCSN(ep_num)) & UDCCSR_PC)) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200116 if (timeout-- == 0)
117 return -1;
118 else
119 udelay(1);
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200120 }
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200121 }
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200122
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200123 endpoint->last = n;
124
125 if (ep_num) {
126 usbd_tx_complete(endpoint);
127 } else {
128 endpoint->sent += n;
129 endpoint->last -= n;
130 }
131
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200132 if (endpoint->sent >= urb->actual_length) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200133 urb->actual_length = 0;
134 endpoint->sent = 0;
135 endpoint->last = 0;
136 }
137
138 if ((endpoint->sent >= urb->actual_length) && (!ep_num)) {
139 usbdbg("ep0 IN stage done");
140 if (is_short)
141 ep0state = EP0_IDLE;
142 else
143 ep0state = EP0_XFER_COMPLETE;
144 }
145
146 return 0;
147}
148
149static int udc_read_urb(struct usb_endpoint_instance *endpoint)
150{
151 struct urb *urb = endpoint->rcv_urb;
152 int ep_num = endpoint->endpoint_address & USB_ENDPOINT_NUMBER_MASK;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200153 u32 *data32 = (u32 *) urb->buffer;
154 unsigned int i, n, is_short ;
155
156 usbdbg("read urb on ep %d", ep_num);
157#if defined(USBDDBG) && defined(USBDPARANOIA)
158 usbdbg("urb: buf %p, buf_len %d, actual_len %d",
159 urb->buffer, urb->buffer_length, urb->actual_length);
160 usbdbg("endpoint: rcv_packetSize %d",
161 endpoint->rcv_packetSize);
162#endif
163
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200164 if (readl(UDCCSN(ep_num)) & UDCCSR_BNE)
165 n = readl(UDCBCN(ep_num)) & 0x3ff;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200166 else /* zlp */
167 n = 0;
168 is_short = n != endpoint->rcv_packetSize;
169
170 usbdbg("n %d%s", n, is_short ? "-s" : "");
171 for (i = 0; i < n; i += 4)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200172 data32[urb->actual_length / 4 + i / 4] = readl(UDCDN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200173
174 udc_dump_buffer("urb read", (u8 *) data32, urb->actual_length + n);
175 usbd_rcv_complete(endpoint, n, 0);
176
177 return 0;
178}
179
180static int udc_read_urb_ep0(void)
181{
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200182 u32 *data32 = (u32 *) ep0_urb->buffer;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200183 u8 *data8 = (u8 *) ep0_urb->buffer;
184 unsigned int i, n, w, b;
185
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200186 usbdbg("read urb on ep 0");
187#if defined(USBDDBG) && defined(USBDPARANOIA)
188 usbdbg("urb: buf %p, buf_len %d, actual_len %d",
189 ep0_urb->buffer, ep0_urb->buffer_length, ep0_urb->actual_length);
190#endif
191
192 n = readl(UDCBCR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200193 w = n / 4;
194 b = n % 4;
195
196 for (i = 0; i < w; i++) {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200197 data32[ep0_urb->actual_length / 4 + i] = readl(UDCDN(0));
Wolfgang Denk10879aa2011-12-19 11:52:36 +0100198 /* ep0_urb->actual_length += 4; */
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200199 }
200
201 for (i = 0; i < b; i++) {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200202 data8[ep0_urb->actual_length + w * 4 + i] = readb(UDCDN(0));
Wolfgang Denk10879aa2011-12-19 11:52:36 +0100203 /* ep0_urb->actual_length++; */
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200204 }
205
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200206 ep0_urb->actual_length += n;
207
208 udc_dump_buffer("urb read", (u8 *) data32, ep0_urb->actual_length);
209
210 writel(UDCCSR0_OPC | UDCCSR0_IPR, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200211 if (ep0_urb->actual_length == ep0_urb->device_request.wLength)
212 return 1;
213
214 return 0;
215}
216
217static void udc_handle_ep0(struct usb_endpoint_instance *endpoint)
218{
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200219 u32 udccsr0 = readl(UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200220 u32 *data = (u32 *) &ep0_urb->device_request;
221 int i;
222
223 usbdbg("udccsr0 %x", udccsr0);
224
225 /* Clear stall status */
226 if (udccsr0 & UDCCSR0_SST) {
227 usberr("clear stall status");
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200228 writel(UDCCSR0_SST, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200229 ep0state = EP0_IDLE;
230 }
231
232 /* previous request unfinished? non-error iff back-to-back ... */
233 if ((udccsr0 & UDCCSR0_SA) != 0 && ep0state != EP0_IDLE)
234 ep0state = EP0_IDLE;
235
236 switch (ep0state) {
237
238 case EP0_IDLE:
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200239 udccsr0 = readl(UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200240 /* Start control request? */
241 if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE))
242 == (UDCCSR0_OPC | UDCCSR0_SA | UDCCSR0_RNE)) {
243
244 /* Read SETUP packet.
245 * SETUP packet size is 8 bytes (aka 2 words)
246 */
247 usbdbg("try reading SETUP packet");
248 for (i = 0; i < 2; i++) {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200249 if ((readl(UDCCSR0) & UDCCSR0_RNE) == 0) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200250 usberr("setup packet too short:%d", i);
251 goto stall;
252 }
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200253 data[i] = readl(UDCDR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200254 }
255
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200256 writel(readl(UDCCSR0) | UDCCSR0_OPC | UDCCSR0_SA, UDCCSR0);
257 if ((readl(UDCCSR0) & UDCCSR0_RNE) != 0) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200258 usberr("setup packet too long");
259 goto stall;
260 }
261
262 udc_dump_buffer("ep0 setup read", (u8 *) data, 8);
263
264 if (ep0_urb->device_request.wLength == 0) {
265 usbdbg("Zero Data control Packet\n");
266 if (ep0_recv_setup(ep0_urb)) {
267 usberr("Invalid Setup Packet\n");
268 udc_dump_buffer("ep0 setup read",
269 (u8 *)data, 8);
270 goto stall;
271 }
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200272 writel(UDCCSR0_IPR, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200273 ep0state = EP0_IDLE;
274 } else {
275 /* Check direction */
276 if ((ep0_urb->device_request.bmRequestType &
277 USB_REQ_DIRECTION_MASK)
278 == USB_REQ_HOST2DEVICE) {
279 ep0state = EP0_OUT_DATA;
280 ep0_urb->buffer =
281 (u8 *)ep0_urb->buffer_data;
282 ep0_urb->buffer_length =
283 sizeof(ep0_urb->buffer_data);
284 ep0_urb->actual_length = 0;
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200285 writel(UDCCSR0_IPR, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200286 } else {
287 /* The ep0_recv_setup function has
288 * already placed our response packet
289 * data in ep0_urb->buffer and the
290 * packet length in
291 * ep0_urb->actual_length.
292 */
293 if (ep0_recv_setup(ep0_urb)) {
294stall:
295 usberr("Invalid setup packet");
296 udc_dump_buffer("ep0 setup read"
297 , (u8 *) data, 8);
298 ep0state = EP0_IDLE;
299
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200300 writel(UDCCSR0_SA |
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200301 UDCCSR0_OPC | UDCCSR0_FST |
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200302 UDCCS0_FTF, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200303
304 return;
305 }
306
307 endpoint->tx_urb = ep0_urb;
308 endpoint->sent = 0;
309 usbdbg("EP0_IN_DATA");
310 ep0state = EP0_IN_DATA;
311 if (udc_write_urb(endpoint) < 0)
312 goto stall;
313
314 }
315 }
316 return;
317 } else if ((udccsr0 & (UDCCSR0_OPC | UDCCSR0_SA))
318 == (UDCCSR0_OPC|UDCCSR0_SA)) {
319 usberr("Setup Active but no data. Stalling ....\n");
320 goto stall;
321 } else {
322 usbdbg("random early IRQs");
323 /* Some random early IRQs:
324 * - we acked FST
325 * - IPR cleared
326 * - OPC got set, without SA (likely status stage)
327 */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200328 writel(udccsr0 & (UDCCSR0_SA | UDCCSR0_OPC), UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200329 }
330 break;
331
332 case EP0_OUT_DATA:
333
334 if ((udccsr0 & UDCCSR0_OPC) && !(udccsr0 & UDCCSR0_SA)) {
335 if (udc_read_urb_ep0()) {
336read_complete:
337 ep0state = EP0_IDLE;
338 if (ep0_recv_setup(ep0_urb)) {
339 /* Not a setup packet, stall next
340 * EP0 transaction
341 */
342 udc_dump_buffer("ep0 setup read",
343 (u8 *) data, 8);
344 usberr("can't parse setup packet\n");
345 goto stall;
346 }
347 }
348 } else if (!(udccsr0 & UDCCSR0_OPC) &&
349 !(udccsr0 & UDCCSR0_IPR)) {
350 if (ep0_urb->device_request.wLength ==
351 ep0_urb->actual_length)
352 goto read_complete;
353
354 usberr("Premature Status\n");
355 ep0state = EP0_IDLE;
356 }
357 break;
358
359 case EP0_IN_DATA:
360 /* GET_DESCRIPTOR etc */
361 if (udccsr0 & UDCCSR0_OPC) {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200362 writel(UDCCSR0_OPC | UDCCSR0_FTF, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200363 usberr("ep0in premature status");
364 ep0state = EP0_IDLE;
365 } else {
366 /* irq was IPR clearing */
367 if (udc_write_urb(endpoint) < 0) {
368 usberr("ep0_write_error\n");
369 goto stall;
370 }
371 }
372 break;
373
374 case EP0_XFER_COMPLETE:
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200375 writel(UDCCSR0_IPR, UDCCSR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200376 ep0state = EP0_IDLE;
377 break;
378
379 default:
380 usbdbg("Default\n");
381 }
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200382 writel(USIR0_IR0, USIR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200383}
384
385static void udc_handle_ep(struct usb_endpoint_instance *endpoint)
386{
387 int ep_addr = endpoint->endpoint_address;
388 int ep_num = ep_addr & USB_ENDPOINT_NUMBER_MASK;
389 int ep_isout = (ep_addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT;
390
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200391 u32 flags = readl(UDCCSN(ep_num)) & (UDCCSR_SST | UDCCSR_TRN);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200392 if (flags)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200393 writel(flags, UDCCSN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200394
395 if (ep_isout)
396 udc_read_urb(endpoint);
397 else
398 udc_write_urb(endpoint);
399
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200400 writel(UDCCSR_PC, UDCCSN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200401}
402
403static void udc_state_changed(void)
404{
405 int config, interface, alternate;
406
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200407 writel(readl(UDCCR) | UDCCR_SMAC, UDCCR);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200408
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200409 config = (readl(UDCCR) & UDCCR_ACN) >> UDCCR_ACN_S;
410 interface = (readl(UDCCR) & UDCCR_AIN) >> UDCCR_AIN_S;
411 alternate = (readl(UDCCR) & UDCCR_AAISN) >> UDCCR_AAISN_S;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200412
413 usbdbg("New UDC settings are: conf %d - inter %d - alter %d",
414 config, interface, alternate);
415
416 usbd_device_event_irq(udc_device, DEVICE_CONFIGURED, 0);
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200417 writel(UDCISR1_IRCC, UDCISR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200418}
419
420void udc_irq(void)
421{
422 int handled;
423 struct usb_endpoint_instance *endpoint;
424 int ep_num, i;
425 u32 udcisr0;
426
427 do {
428 handled = 0;
429 /* Suspend Interrupt Request */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200430 if (readl(USIR1) & UDCCR_SUSIR) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200431 usbdbg("Suspend\n");
432 udc_ack_int_UDCCR(UDCCR_SUSIR);
433 handled = 1;
434 ep0state = EP0_IDLE;
435 }
436
437 /* Resume Interrupt Request */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200438 if (readl(USIR1) & UDCCR_RESIR) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200439 udc_ack_int_UDCCR(UDCCR_RESIR);
440 handled = 1;
441 usbdbg("USB resume\n");
442 }
443
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200444 if (readl(USIR1) & (1<<31)) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200445 handled = 1;
446 udc_state_changed();
447 }
448
449 /* Reset Interrupt Request */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200450 if (readl(USIR1) & UDCCR_RSTIR) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200451 udc_ack_int_UDCCR(UDCCR_RSTIR);
452 handled = 1;
453 usbdbg("Reset\n");
454 usbd_device_event_irq(udc_device, DEVICE_RESET, 0);
455 } else {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200456 if (readl(USIR0))
457 usbdbg("UISR0: %x \n", readl(USIR0));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200458
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200459 if (readl(USIR0) & 0x2)
460 writel(0x2, USIR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200461
462 /* Control traffic */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200463 if (readl(USIR0) & USIR0_IR0) {
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200464 handled = 1;
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200465 writel(USIR0_IR0, USIR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200466 udc_handle_ep0(udc_device->bus->endpoint_array);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200467 }
468
469 endpoint = udc_device->bus->endpoint_array;
470 for (i = 0; i < udc_device->bus->max_endpoints; i++) {
471 ep_num = (endpoint[i].endpoint_address) &
472 USB_ENDPOINT_NUMBER_MASK;
473 if (!ep_num)
474 continue;
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200475 udcisr0 = readl(UDCISR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200476 if (udcisr0 &
477 UDCISR_INT(ep_num, UDC_INT_PACKETCMP)) {
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200478 writel(UDCISR_INT(ep_num, UDC_INT_PACKETCMP),
479 UDCISR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200480 udc_handle_ep(&endpoint[i]);
481 }
482 }
483 }
484
485 } while (handled);
486}
487
488/* The UDCCR reg contains mask and interrupt status bits,
489 * so using '|=' isn't safe as it may ack an interrupt.
490 */
491#define UDCCR_OEN (1 << 31) /* On-the-Go Enable */
492#define UDCCR_MASK_BITS (UDCCR_OEN | UDCCR_UDE)
493
494static inline void udc_set_mask_UDCCR(int mask)
495{
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200496 writel((readl(UDCCR) & UDCCR_MASK_BITS) | (mask & UDCCR_MASK_BITS), UDCCR);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200497}
498
499static inline void udc_clear_mask_UDCCR(int mask)
500{
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200501 writel((readl(UDCCR) & UDCCR_MASK_BITS) & ~(mask & UDCCR_MASK_BITS), UDCCR);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200502}
503
504static void pio_irq_enable(int ep_num)
505{
506 if (ep_num < 16)
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200507 writel(readl(UDCICR0) | 3 << (ep_num * 2), UDCICR0);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200508 else {
509 ep_num -= 16;
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200510 writel(readl(UDCICR1) | 3 << (ep_num * 2), UDCICR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200511 }
512}
513
514/*
515 * udc_set_nak
516 *
517 * Allow upper layers to signal lower layers should not accept more RX data
518 */
519void udc_set_nak(int ep_num)
520{
521 /* TODO */
522}
523
524/*
525 * udc_unset_nak
526 *
527 * Suspend sending of NAK tokens for DATA OUT tokens on a given endpoint.
528 * Switch off NAKing on this endpoint to accept more data output from host.
529 */
530void udc_unset_nak(int ep_num)
531{
532 /* TODO */
533}
534
535int udc_endpoint_write(struct usb_endpoint_instance *endpoint)
536{
537 return udc_write_urb(endpoint);
538}
539
540/* Associate a physical endpoint with endpoint instance */
541void udc_setup_ep(struct usb_device_instance *device, unsigned int id,
542 struct usb_endpoint_instance *endpoint)
543{
544 int ep_num, ep_addr, ep_isout, ep_type, ep_size;
545 int config, interface, alternate;
546 u32 tmp;
547
548 usbdbg("setting up endpoint id %d", id);
549
550 if (!endpoint) {
551 usberr("endpoint void!");
552 return;
553 }
554
555 ep_num = endpoint->endpoint_address & USB_ENDPOINT_NUMBER_MASK;
556 if (ep_num >= UDC_MAX_ENDPOINTS) {
557 usberr("unable to setup ep %d!", ep_num);
558 return;
559 }
560
561 pio_irq_enable(ep_num);
562 if (ep_num == 0) {
563 /* Done for ep0 */
564 return;
565 }
566
567 config = 1;
568 interface = 0;
569 alternate = 0;
570
571 usbdbg("config %d - interface %d - alternate %d",
572 config, interface, alternate);
573
574 ep_addr = endpoint->endpoint_address;
575 ep_num = ep_addr & USB_ENDPOINT_NUMBER_MASK;
576 ep_isout = (ep_addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT;
577 ep_type = ep_isout ? endpoint->rcv_attributes : endpoint->tx_attributes;
578 ep_size = ep_isout ? endpoint->rcv_packetSize : endpoint->tx_packetSize;
579
580 usbdbg("addr %x, num %d, dir %s, type %s, packet size %d",
581 ep_addr, ep_num,
582 ep_isout ? "out" : "in",
583 ep_type == USB_ENDPOINT_XFER_ISOC ? "isoc" :
584 ep_type == USB_ENDPOINT_XFER_BULK ? "bulk" :
585 ep_type == USB_ENDPOINT_XFER_INT ? "int" : "???",
586 ep_size
587 );
588
589 /* Configure UDCCRx */
590 tmp = 0;
591 tmp |= (config << UDCCONR_CN_S) & UDCCONR_CN;
592 tmp |= (interface << UDCCONR_IN_S) & UDCCONR_IN;
593 tmp |= (alternate << UDCCONR_AISN_S) & UDCCONR_AISN;
594 tmp |= (ep_num << UDCCONR_EN_S) & UDCCONR_EN;
595 tmp |= (ep_type << UDCCONR_ET_S) & UDCCONR_ET;
596 tmp |= ep_isout ? 0 : UDCCONR_ED;
597 tmp |= (ep_size << UDCCONR_MPS_S) & UDCCONR_MPS;
598 tmp |= UDCCONR_EE;
599
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200600 writel(tmp, UDCCN(ep_num));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200601
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200602 usbdbg("UDCCR%c = %x", 'A' + ep_num-1, readl(UDCCN(ep_num)));
603 usbdbg("UDCCSR%c = %x", 'A' + ep_num-1, readl(UDCCSN(ep_num)));
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200604}
605
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200606/* Connect the USB device to the bus */
607void udc_connect(void)
608{
609 usbdbg("UDC connect");
610
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200611#ifdef CONFIG_USB_DEV_PULLUP_GPIO
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200612 /* Turn on the USB connection by enabling the pullup resistor */
613 set_GPIO_mode(CONFIG_USB_DEV_PULLUP_GPIO | GPIO_OUT);
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200614 writel(GPIO_bit(CONFIG_USB_DEV_PULLUP_GPIO), GPSR(CONFIG_USB_DEV_PULLUP_GPIO));
615#else
616 /* Host port 2 transceiver D+ pull up enable */
617 writel(readl(UP2OCR) | UP2OCR_DPPUE, UP2OCR);
618#endif
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200619}
620
621/* Disconnect the USB device to the bus */
622void udc_disconnect(void)
623{
624 usbdbg("UDC disconnect");
625
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200626#ifdef CONFIG_USB_DEV_PULLUP_GPIO
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200627 /* Turn off the USB connection by disabling the pullup resistor */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200628 writel(GPIO_bit(CONFIG_USB_DEV_PULLUP_GPIO), GPCR(CONFIG_USB_DEV_PULLUP_GPIO));
629#else
630 /* Host port 2 transceiver D+ pull up disable */
631 writel(readl(UP2OCR) & ~UP2OCR_DPPUE, UP2OCR);
632#endif
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200633}
634
635/* Switch on the UDC */
636void udc_enable(struct usb_device_instance *device)
637{
638
639 ep0state = EP0_IDLE;
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200640
641 /* enable endpoint 0, A, B's Packet Complete Interrupt. */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200642 writel(0xffffffff, UDCICR0);
643 writel(0xa8000000, UDCICR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200644
645 /* clear the interrupt status/control registers */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200646 writel(0xffffffff, UDCISR0);
647 writel(0xffffffff, UDCISR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200648
649 /* set UDC-enable */
650 udc_set_mask_UDCCR(UDCCR_UDE);
651
652 udc_device = device;
653 if (!ep0_urb)
654 ep0_urb = usbd_alloc_urb(udc_device,
655 udc_device->bus->endpoint_array);
656 else
657 usbinfo("ep0_urb %p already allocated", ep0_urb);
658
659 usbdbg("UDC Enabled\n");
660}
661
662/* Need to check this again */
663void udc_disable(void)
664{
665 usbdbg("disable UDC");
666
667 udc_clear_mask_UDCCR(UDCCR_UDE);
668
669 /* Disable clock for USB device */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200670 writel(readl(CKEN) & ~CKEN11_USB, CKEN);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200671
672 /* Free ep0 URB */
673 if (ep0_urb) {
674 usbd_dealloc_urb(ep0_urb);
675 ep0_urb = NULL;
676 }
677
678 /* Reset device pointer */
679 udc_device = NULL;
680}
681
682/* Allow udc code to do any additional startup */
683void udc_startup_events(struct usb_device_instance *device)
684{
685 /* The DEVICE_INIT event puts the USB device in the state STATE_INIT */
686 usbd_device_event_irq(device, DEVICE_INIT, 0);
687
688 /* The DEVICE_CREATE event puts the USB device in the state
689 * STATE_ATTACHED */
690 usbd_device_event_irq(device, DEVICE_CREATE, 0);
691
692 /* Some USB controller driver implementations signal
693 * DEVICE_HUB_CONFIGURED and DEVICE_RESET events here.
694 * DEVICE_HUB_CONFIGURED causes a transition to the state
695 * STATE_POWERED, and DEVICE_RESET causes a transition to
696 * the state STATE_DEFAULT.
697 */
698 udc_enable(device);
699}
700
701/* Initialize h/w stuff */
702int udc_init(void)
703{
704 udc_device = NULL;
705 usbdbg("PXA27x usbd start");
706
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200707 /* Enable clock for USB device */
708 writel(readl(CKEN) | CKEN11_USB, CKEN);
709
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200710 /* Disable the UDC */
711 udc_clear_mask_UDCCR(UDCCR_UDE);
712
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200713 /* Disable IRQs: we don't use them */
Stefan Herbrechtsmeierbdbcdc82011-10-17 17:22:48 +0200714 writel(0, UDCICR0);
715 writel(0, UDCICR1);
Remy Bohmer3ccbfb22009-04-05 11:43:28 +0200716
717 return 0;
718}