blob: 98b9e054754407664ebcb247fc62292709d2b347 [file] [log] [blame]
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001/*
2 * R8A66597 HCD (Host Controller Driver)
3 *
4 * Copyright (C) 2006-2007 Renesas Solutions Corp.
5 * Portions Copyright (C) 2004 Psion Teklogix (for NetBook PRO)
6 * Portions Copyright (C) 2004-2005 David Brownell
7 * Portions Copyright (C) 1999 Roman Weissgaerber
8 *
9 * Author : Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 */
25
26#include <linux/module.h>
27#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/smp_lock.h>
30#include <linux/errno.h>
31#include <linux/init.h>
32#include <linux/timer.h>
33#include <linux/delay.h>
34#include <linux/list.h>
35#include <linux/interrupt.h>
36#include <linux/usb.h>
37#include <linux/platform_device.h>
Yoshihiro Shimodae2945312007-07-18 23:10:34 +090038#include <linux/io.h>
39#include <linux/irq.h>
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090040
41#include "../core/hcd.h"
42#include "r8a66597.h"
43
44MODULE_DESCRIPTION("R8A66597 USB Host Controller Driver");
45MODULE_LICENSE("GPL");
46MODULE_AUTHOR("Yoshihiro Shimoda");
47
Yoshihiro Shimodaf6ace2c2007-05-30 20:42:41 +090048#define DRIVER_VERSION "29 May 2007"
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090049
50static const char hcd_name[] = "r8a66597_hcd";
51
52/* module parameters */
53static unsigned short clock = XTAL12;
54module_param(clock, ushort, 0644);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +090055MODULE_PARM_DESC(clock, "input clock: 48MHz=32768, 24MHz=16384, 12MHz=0 "
56 "(default=0)");
57
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090058static unsigned short vif = LDRV;
59module_param(vif, ushort, 0644);
60MODULE_PARM_DESC(vif, "input VIF: 3.3V=32768, 1.5V=0(default=32768)");
Yoshihiro Shimodae2945312007-07-18 23:10:34 +090061
62static unsigned short endian;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090063module_param(endian, ushort, 0644);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +090064MODULE_PARM_DESC(endian, "data endian: big=256, little=0 (default=0)");
65
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090066static unsigned short irq_sense = INTL;
67module_param(irq_sense, ushort, 0644);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +090068MODULE_PARM_DESC(irq_sense, "IRQ sense: low level=32, falling edge=0 "
69 "(default=32)");
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +090070
71static void packet_write(struct r8a66597 *r8a66597, u16 pipenum);
72static int r8a66597_get_frame(struct usb_hcd *hcd);
73
74/* this function must be called with interrupt disabled */
75static void enable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum,
76 unsigned long reg)
77{
78 u16 tmp;
79
80 tmp = r8a66597_read(r8a66597, INTENB0);
81 r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
82 r8a66597_bset(r8a66597, 1 << pipenum, reg);
83 r8a66597_write(r8a66597, tmp, INTENB0);
84}
85
86/* this function must be called with interrupt disabled */
87static void disable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum,
88 unsigned long reg)
89{
90 u16 tmp;
91
92 tmp = r8a66597_read(r8a66597, INTENB0);
93 r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
94 r8a66597_bclr(r8a66597, 1 << pipenum, reg);
95 r8a66597_write(r8a66597, tmp, INTENB0);
96}
97
98static void set_devadd_reg(struct r8a66597 *r8a66597, u8 r8a66597_address,
99 u16 usbspd, u8 upphub, u8 hubport, int port)
100{
101 u16 val;
102 unsigned long devadd_reg = get_devadd_addr(r8a66597_address);
103
104 val = (upphub << 11) | (hubport << 8) | (usbspd << 6) | (port & 0x0001);
105 r8a66597_write(r8a66597, val, devadd_reg);
106}
107
108static int enable_controller(struct r8a66597 *r8a66597)
109{
110 u16 tmp;
111 int i = 0;
112
113 do {
114 r8a66597_write(r8a66597, USBE, SYSCFG0);
115 tmp = r8a66597_read(r8a66597, SYSCFG0);
116 if (i++ > 1000) {
117 err("register access fail.");
118 return -ENXIO;
119 }
120 } while ((tmp & USBE) != USBE);
121 r8a66597_bclr(r8a66597, USBE, SYSCFG0);
122 r8a66597_mdfy(r8a66597, clock, XTAL, SYSCFG0);
123
124 i = 0;
125 r8a66597_bset(r8a66597, XCKE, SYSCFG0);
126 do {
127 msleep(1);
128 tmp = r8a66597_read(r8a66597, SYSCFG0);
129 if (i++ > 500) {
130 err("register access fail.");
131 return -ENXIO;
132 }
133 } while ((tmp & SCKE) != SCKE);
134
135 r8a66597_bset(r8a66597, DCFM | DRPD, SYSCFG0);
136 r8a66597_bset(r8a66597, DRPD, SYSCFG1);
137
138 r8a66597_bset(r8a66597, vif & LDRV, PINCFG);
139 r8a66597_bset(r8a66597, HSE, SYSCFG0);
140 r8a66597_bset(r8a66597, HSE, SYSCFG1);
141 r8a66597_bset(r8a66597, USBE, SYSCFG0);
142
143 r8a66597_bset(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
144 r8a66597_bset(r8a66597, irq_sense & INTL, SOFCFG);
145 r8a66597_bset(r8a66597, BRDY0, BRDYENB);
146 r8a66597_bset(r8a66597, BEMP0, BEMPENB);
147
148 r8a66597_write(r8a66597, BURST | CPU_ADR_RD_WR, DMA0CFG);
149 r8a66597_write(r8a66597, BURST | CPU_ADR_RD_WR, DMA1CFG);
150
151 r8a66597_bset(r8a66597, endian & BIGEND, CFIFOSEL);
152 r8a66597_bset(r8a66597, endian & BIGEND, D0FIFOSEL);
153 r8a66597_bset(r8a66597, endian & BIGEND, D1FIFOSEL);
154
155 r8a66597_bset(r8a66597, TRNENSEL, SOFCFG);
156
157 r8a66597_bset(r8a66597, SIGNE | SACKE, INTENB1);
158 r8a66597_bclr(r8a66597, DTCHE, INTENB1);
159 r8a66597_bset(r8a66597, ATTCHE, INTENB1);
160 r8a66597_bclr(r8a66597, DTCHE, INTENB2);
161 r8a66597_bset(r8a66597, ATTCHE, INTENB2);
162
163 return 0;
164}
165
166static void disable_controller(struct r8a66597 *r8a66597)
167{
168 u16 tmp;
169
170 r8a66597_write(r8a66597, 0, INTENB0);
171 r8a66597_write(r8a66597, 0, INTENB1);
172 r8a66597_write(r8a66597, 0, INTENB2);
173 r8a66597_write(r8a66597, 0, INTSTS0);
174 r8a66597_write(r8a66597, 0, INTSTS1);
175 r8a66597_write(r8a66597, 0, INTSTS2);
176
177 r8a66597_port_power(r8a66597, 0, 0);
178 r8a66597_port_power(r8a66597, 1, 0);
179
180 do {
181 tmp = r8a66597_read(r8a66597, SOFCFG) & EDGESTS;
182 udelay(640);
183 } while (tmp == EDGESTS);
184
185 r8a66597_bclr(r8a66597, DCFM | DRPD, SYSCFG0);
186 r8a66597_bclr(r8a66597, DRPD, SYSCFG1);
187 r8a66597_bclr(r8a66597, HSE, SYSCFG0);
188 r8a66597_bclr(r8a66597, HSE, SYSCFG1);
189
190 r8a66597_bclr(r8a66597, SCKE, SYSCFG0);
191 udelay(1);
192 r8a66597_bclr(r8a66597, PLLC, SYSCFG0);
193 r8a66597_bclr(r8a66597, XCKE, SYSCFG0);
194 r8a66597_bclr(r8a66597, USBE, SYSCFG0);
195}
196
197static int get_parent_r8a66597_address(struct r8a66597 *r8a66597,
198 struct usb_device *udev)
199{
200 struct r8a66597_device *dev;
201
202 if (udev->parent && udev->parent->devnum != 1)
203 udev = udev->parent;
204
205 dev = dev_get_drvdata(&udev->dev);
206 if (dev)
207 return dev->address;
208 else
209 return 0;
210}
211
212static int is_child_device(char *devpath)
213{
214 return (devpath[2] ? 1 : 0);
215}
216
217static int is_hub_limit(char *devpath)
218{
219 return ((strlen(devpath) >= 4) ? 1 : 0);
220}
221
222static void get_port_number(char *devpath, u16 *root_port, u16 *hub_port)
223{
224 if (root_port) {
225 *root_port = (devpath[0] & 0x0F) - 1;
226 if (*root_port >= R8A66597_MAX_ROOT_HUB)
227 err("illegal root port number");
228 }
229 if (hub_port)
230 *hub_port = devpath[2] & 0x0F;
231}
232
233static u16 get_r8a66597_usb_speed(enum usb_device_speed speed)
234{
235 u16 usbspd = 0;
236
237 switch (speed) {
238 case USB_SPEED_LOW:
239 usbspd = LSMODE;
240 break;
241 case USB_SPEED_FULL:
242 usbspd = FSMODE;
243 break;
244 case USB_SPEED_HIGH:
245 usbspd = HSMODE;
246 break;
247 default:
248 err("unknown speed");
249 break;
250 }
251
252 return usbspd;
253}
254
255static void set_child_connect_map(struct r8a66597 *r8a66597, int address)
256{
257 int idx;
258
259 idx = address / 32;
260 r8a66597->child_connect_map[idx] |= 1 << (address % 32);
261}
262
263static void put_child_connect_map(struct r8a66597 *r8a66597, int address)
264{
265 int idx;
266
267 idx = address / 32;
268 r8a66597->child_connect_map[idx] &= ~(1 << (address % 32));
269}
270
271static void set_pipe_reg_addr(struct r8a66597_pipe *pipe, u8 dma_ch)
272{
273 u16 pipenum = pipe->info.pipenum;
274 unsigned long fifoaddr[] = {D0FIFO, D1FIFO, CFIFO};
275 unsigned long fifosel[] = {D0FIFOSEL, D1FIFOSEL, CFIFOSEL};
276 unsigned long fifoctr[] = {D0FIFOCTR, D1FIFOCTR, CFIFOCTR};
277
278 if (dma_ch > R8A66597_PIPE_NO_DMA) /* dma fifo not use? */
279 dma_ch = R8A66597_PIPE_NO_DMA;
280
281 pipe->fifoaddr = fifoaddr[dma_ch];
282 pipe->fifosel = fifosel[dma_ch];
283 pipe->fifoctr = fifoctr[dma_ch];
284
285 if (pipenum == 0)
286 pipe->pipectr = DCPCTR;
287 else
288 pipe->pipectr = get_pipectr_addr(pipenum);
289
290 if (check_bulk_or_isoc(pipenum)) {
291 pipe->pipetre = get_pipetre_addr(pipenum);
292 pipe->pipetrn = get_pipetrn_addr(pipenum);
293 } else {
294 pipe->pipetre = 0;
295 pipe->pipetrn = 0;
296 }
297}
298
299static struct r8a66597_device *
300get_urb_to_r8a66597_dev(struct r8a66597 *r8a66597, struct urb *urb)
301{
302 if (usb_pipedevice(urb->pipe) == 0)
303 return &r8a66597->device0;
304
305 return dev_get_drvdata(&urb->dev->dev);
306}
307
308static int make_r8a66597_device(struct r8a66597 *r8a66597,
309 struct urb *urb, u8 addr)
310{
311 struct r8a66597_device *dev;
312 int usb_address = urb->setup_packet[2]; /* urb->pipe is address 0 */
313
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900314 dev = kzalloc(sizeof(struct r8a66597_device), GFP_ATOMIC);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900315 if (dev == NULL)
316 return -ENOMEM;
317
318 dev_set_drvdata(&urb->dev->dev, dev);
319 dev->udev = urb->dev;
320 dev->address = addr;
321 dev->usb_address = usb_address;
322 dev->state = USB_STATE_ADDRESS;
323 dev->ep_in_toggle = 0;
324 dev->ep_out_toggle = 0;
325 INIT_LIST_HEAD(&dev->device_list);
326 list_add_tail(&dev->device_list, &r8a66597->child_device);
327
328 get_port_number(urb->dev->devpath, &dev->root_port, &dev->hub_port);
329 if (!is_child_device(urb->dev->devpath))
330 r8a66597->root_hub[dev->root_port].dev = dev;
331
332 set_devadd_reg(r8a66597, dev->address,
333 get_r8a66597_usb_speed(urb->dev->speed),
334 get_parent_r8a66597_address(r8a66597, urb->dev),
335 dev->hub_port, dev->root_port);
336
337 return 0;
338}
339
340/* this function must be called with interrupt disabled */
341static u8 alloc_usb_address(struct r8a66597 *r8a66597, struct urb *urb)
342{
343 u8 addr; /* R8A66597's address */
344 struct r8a66597_device *dev;
345
346 if (is_hub_limit(urb->dev->devpath)) {
347 err("Externel hub limit reached.");
348 return 0;
349 }
350
351 dev = get_urb_to_r8a66597_dev(r8a66597, urb);
352 if (dev && dev->state >= USB_STATE_ADDRESS)
353 return dev->address;
354
355 for (addr = 1; addr <= R8A66597_MAX_DEVICE; addr++) {
356 if (r8a66597->address_map & (1 << addr))
357 continue;
358
359 dbg("alloc_address: r8a66597_addr=%d", addr);
360 r8a66597->address_map |= 1 << addr;
361
362 if (make_r8a66597_device(r8a66597, urb, addr) < 0)
363 return 0;
364
365 return addr;
366 }
367
368 err("cannot communicate with a USB device more than 10.(%x)",
369 r8a66597->address_map);
370
371 return 0;
372}
373
374/* this function must be called with interrupt disabled */
375static void free_usb_address(struct r8a66597 *r8a66597,
376 struct r8a66597_device *dev)
377{
378 int port;
379
380 if (!dev)
381 return;
382
383 dbg("free_addr: addr=%d", dev->address);
384
385 dev->state = USB_STATE_DEFAULT;
386 r8a66597->address_map &= ~(1 << dev->address);
387 dev->address = 0;
388 dev_set_drvdata(&dev->udev->dev, NULL);
389 list_del(&dev->device_list);
390 kfree(dev);
391
392 for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) {
393 if (r8a66597->root_hub[port].dev == dev) {
394 r8a66597->root_hub[port].dev = NULL;
395 break;
396 }
397 }
398}
399
400static void r8a66597_reg_wait(struct r8a66597 *r8a66597, unsigned long reg,
401 u16 mask, u16 loop)
402{
403 u16 tmp;
404 int i = 0;
405
406 do {
407 tmp = r8a66597_read(r8a66597, reg);
408 if (i++ > 1000000) {
409 err("register%lx, loop %x is timeout", reg, loop);
410 break;
411 }
412 ndelay(1);
413 } while ((tmp & mask) != loop);
414}
415
416/* this function must be called with interrupt disabled */
417static void pipe_start(struct r8a66597 *r8a66597, struct r8a66597_pipe *pipe)
418{
419 u16 tmp;
420
421 tmp = r8a66597_read(r8a66597, pipe->pipectr) & PID;
422 if ((pipe->info.pipenum != 0) & ((tmp & PID_STALL) != 0)) /* stall? */
423 r8a66597_mdfy(r8a66597, PID_NAK, PID, pipe->pipectr);
424 r8a66597_mdfy(r8a66597, PID_BUF, PID, pipe->pipectr);
425}
426
427/* this function must be called with interrupt disabled */
428static void pipe_stop(struct r8a66597 *r8a66597, struct r8a66597_pipe *pipe)
429{
430 u16 tmp;
431
432 tmp = r8a66597_read(r8a66597, pipe->pipectr) & PID;
433 if ((tmp & PID_STALL11) != PID_STALL11) /* force stall? */
434 r8a66597_mdfy(r8a66597, PID_STALL, PID, pipe->pipectr);
435 r8a66597_mdfy(r8a66597, PID_NAK, PID, pipe->pipectr);
436 r8a66597_reg_wait(r8a66597, pipe->pipectr, PBUSY, 0);
437}
438
439/* this function must be called with interrupt disabled */
440static void clear_all_buffer(struct r8a66597 *r8a66597,
441 struct r8a66597_pipe *pipe)
442{
443 u16 tmp;
444
445 if (!pipe || pipe->info.pipenum == 0)
446 return;
447
448 pipe_stop(r8a66597, pipe);
449 r8a66597_bset(r8a66597, ACLRM, pipe->pipectr);
450 tmp = r8a66597_read(r8a66597, pipe->pipectr);
451 tmp = r8a66597_read(r8a66597, pipe->pipectr);
452 tmp = r8a66597_read(r8a66597, pipe->pipectr);
453 r8a66597_bclr(r8a66597, ACLRM, pipe->pipectr);
454}
455
456/* this function must be called with interrupt disabled */
457static void r8a66597_pipe_toggle(struct r8a66597 *r8a66597,
458 struct r8a66597_pipe *pipe, int toggle)
459{
460 if (toggle)
461 r8a66597_bset(r8a66597, SQSET, pipe->pipectr);
462 else
463 r8a66597_bset(r8a66597, SQCLR, pipe->pipectr);
464}
465
466/* this function must be called with interrupt disabled */
467static inline void cfifo_change(struct r8a66597 *r8a66597, u16 pipenum)
468{
469 r8a66597_mdfy(r8a66597, MBW | pipenum, MBW | CURPIPE, CFIFOSEL);
470 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, pipenum);
471}
472
473/* this function must be called with interrupt disabled */
474static inline void fifo_change_from_pipe(struct r8a66597 *r8a66597,
475 struct r8a66597_pipe *pipe)
476{
477 cfifo_change(r8a66597, 0);
478 r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D0FIFOSEL);
479 r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D1FIFOSEL);
480
481 r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum, MBW | CURPIPE,
482 pipe->fifosel);
483 r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, pipe->info.pipenum);
484}
485
486static u16 r8a66597_get_pipenum(struct urb *urb, struct usb_host_endpoint *hep)
487{
488 struct r8a66597_pipe *pipe = hep->hcpriv;
489
490 if (usb_pipeendpoint(urb->pipe) == 0)
491 return 0;
492 else
493 return pipe->info.pipenum;
494}
495
496static u16 get_urb_to_r8a66597_addr(struct r8a66597 *r8a66597, struct urb *urb)
497{
498 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
499
500 return (usb_pipedevice(urb->pipe) == 0) ? 0 : dev->address;
501}
502
503static unsigned short *get_toggle_pointer(struct r8a66597_device *dev,
504 int urb_pipe)
505{
506 if (!dev)
507 return NULL;
508
509 return usb_pipein(urb_pipe) ? &dev->ep_in_toggle : &dev->ep_out_toggle;
510}
511
512/* this function must be called with interrupt disabled */
513static void pipe_toggle_set(struct r8a66597 *r8a66597,
514 struct r8a66597_pipe *pipe,
515 struct urb *urb, int set)
516{
517 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
518 unsigned char endpoint = usb_pipeendpoint(urb->pipe);
519 unsigned short *toggle = get_toggle_pointer(dev, urb->pipe);
520
521 if (!toggle)
522 return;
523
524 if (set)
525 *toggle |= 1 << endpoint;
526 else
527 *toggle &= ~(1 << endpoint);
528}
529
530/* this function must be called with interrupt disabled */
531static void pipe_toggle_save(struct r8a66597 *r8a66597,
532 struct r8a66597_pipe *pipe,
533 struct urb *urb)
534{
535 if (r8a66597_read(r8a66597, pipe->pipectr) & SQMON)
536 pipe_toggle_set(r8a66597, pipe, urb, 1);
537 else
538 pipe_toggle_set(r8a66597, pipe, urb, 0);
539}
540
541/* this function must be called with interrupt disabled */
542static void pipe_toggle_restore(struct r8a66597 *r8a66597,
543 struct r8a66597_pipe *pipe,
544 struct urb *urb)
545{
546 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
547 unsigned char endpoint = usb_pipeendpoint(urb->pipe);
548 unsigned short *toggle = get_toggle_pointer(dev, urb->pipe);
549
Yoshihiro Shimodaf6ace2c2007-05-30 20:42:41 +0900550 if (!toggle)
551 return;
552
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900553 r8a66597_pipe_toggle(r8a66597, pipe, *toggle & (1 << endpoint));
554}
555
556/* this function must be called with interrupt disabled */
557static void pipe_buffer_setting(struct r8a66597 *r8a66597,
558 struct r8a66597_pipe_info *info)
559{
560 u16 val = 0;
561
562 if (info->pipenum == 0)
563 return;
564
565 r8a66597_bset(r8a66597, ACLRM, get_pipectr_addr(info->pipenum));
566 r8a66597_bclr(r8a66597, ACLRM, get_pipectr_addr(info->pipenum));
567 r8a66597_write(r8a66597, info->pipenum, PIPESEL);
568 if (!info->dir_in)
569 val |= R8A66597_DIR;
570 if (info->type == R8A66597_BULK && info->dir_in)
571 val |= R8A66597_DBLB | R8A66597_SHTNAK;
572 val |= info->type | info->epnum;
573 r8a66597_write(r8a66597, val, PIPECFG);
574
575 r8a66597_write(r8a66597, (info->buf_bsize << 10) | (info->bufnum),
576 PIPEBUF);
577 r8a66597_write(r8a66597, make_devsel(info->address) | info->maxpacket,
578 PIPEMAXP);
579 if (info->interval)
580 info->interval--;
581 r8a66597_write(r8a66597, info->interval, PIPEPERI);
582}
583
584
585
586/* this function must be called with interrupt disabled */
587static void pipe_setting(struct r8a66597 *r8a66597, struct r8a66597_td *td)
588{
589 struct r8a66597_pipe_info *info;
590 struct urb *urb = td->urb;
591
592 if (td->pipenum > 0) {
593 info = &td->pipe->info;
594 cfifo_change(r8a66597, 0);
595 pipe_buffer_setting(r8a66597, info);
596
597 if (!usb_gettoggle(urb->dev, usb_pipeendpoint(urb->pipe),
598 usb_pipeout(urb->pipe)) &&
599 !usb_pipecontrol(urb->pipe)) {
600 r8a66597_pipe_toggle(r8a66597, td->pipe, 0);
601 pipe_toggle_set(r8a66597, td->pipe, urb, 0);
602 clear_all_buffer(r8a66597, td->pipe);
603 usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
604 usb_pipeout(urb->pipe), 1);
605 }
606 pipe_toggle_restore(r8a66597, td->pipe, urb);
607 }
608}
609
610/* this function must be called with interrupt disabled */
611static u16 get_empty_pipenum(struct r8a66597 *r8a66597,
612 struct usb_endpoint_descriptor *ep)
613{
614 u16 array[R8A66597_MAX_NUM_PIPE], i = 0, min;
615
616 memset(array, 0, sizeof(array));
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900617 switch (ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
618 case USB_ENDPOINT_XFER_BULK:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900619 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
620 array[i++] = 4;
621 else {
622 array[i++] = 3;
623 array[i++] = 5;
624 }
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900625 break;
626 case USB_ENDPOINT_XFER_INT:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900627 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK) {
628 array[i++] = 6;
629 array[i++] = 7;
630 array[i++] = 8;
631 } else
632 array[i++] = 9;
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900633 break;
634 case USB_ENDPOINT_XFER_ISOC:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900635 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
636 array[i++] = 2;
637 else
638 array[i++] = 1;
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900639 break;
640 default:
641 err("Illegal type");
642 return 0;
643 }
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900644
645 i = 1;
646 min = array[0];
647 while (array[i] != 0) {
648 if (r8a66597->pipe_cnt[min] > r8a66597->pipe_cnt[array[i]])
649 min = array[i];
650 i++;
651 }
652
653 return min;
654}
655
656static u16 get_r8a66597_type(__u8 type)
657{
658 u16 r8a66597_type;
659
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900660 switch (type) {
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900661 case USB_ENDPOINT_XFER_BULK:
662 r8a66597_type = R8A66597_BULK;
663 break;
664 case USB_ENDPOINT_XFER_INT:
665 r8a66597_type = R8A66597_INT;
666 break;
667 case USB_ENDPOINT_XFER_ISOC:
668 r8a66597_type = R8A66597_ISO;
669 break;
670 default:
671 err("Illegal type");
672 r8a66597_type = 0x0000;
673 break;
674 }
675
676 return r8a66597_type;
677}
678
679static u16 get_bufnum(u16 pipenum)
680{
681 u16 bufnum = 0;
682
683 if (pipenum == 0)
684 bufnum = 0;
685 else if (check_bulk_or_isoc(pipenum))
686 bufnum = 8 + (pipenum - 1) * R8A66597_BUF_BSIZE*2;
687 else if (check_interrupt(pipenum))
688 bufnum = 4 + (pipenum - 6);
689 else
690 err("Illegal pipenum (%d)", pipenum);
691
692 return bufnum;
693}
694
695static u16 get_buf_bsize(u16 pipenum)
696{
697 u16 buf_bsize = 0;
698
699 if (pipenum == 0)
700 buf_bsize = 3;
701 else if (check_bulk_or_isoc(pipenum))
702 buf_bsize = R8A66597_BUF_BSIZE - 1;
703 else if (check_interrupt(pipenum))
704 buf_bsize = 0;
705 else
706 err("Illegal pipenum (%d)", pipenum);
707
708 return buf_bsize;
709}
710
711/* this function must be called with interrupt disabled */
712static void enable_r8a66597_pipe_dma(struct r8a66597 *r8a66597,
713 struct r8a66597_device *dev,
714 struct r8a66597_pipe *pipe,
715 struct urb *urb)
716{
717 int i;
718 struct r8a66597_pipe_info *info = &pipe->info;
719
720 if ((pipe->info.pipenum != 0) && (info->type != R8A66597_INT)) {
721 for (i = 0; i < R8A66597_MAX_DMA_CHANNEL; i++) {
722 if ((r8a66597->dma_map & (1 << i)) != 0)
723 continue;
724
725 info("address %d, EndpointAddress 0x%02x use DMA FIFO",
726 usb_pipedevice(urb->pipe),
727 info->dir_in ? USB_ENDPOINT_DIR_MASK + info->epnum
728 : info->epnum);
729
730 r8a66597->dma_map |= 1 << i;
731 dev->dma_map |= 1 << i;
732 set_pipe_reg_addr(pipe, i);
733
734 cfifo_change(r8a66597, 0);
735 r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum,
736 MBW | CURPIPE, pipe->fifosel);
737
738 r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE,
739 pipe->info.pipenum);
740 r8a66597_bset(r8a66597, BCLR, pipe->fifoctr);
741 break;
742 }
743 }
744}
745
746/* this function must be called with interrupt disabled */
747static void enable_r8a66597_pipe(struct r8a66597 *r8a66597, struct urb *urb,
748 struct usb_host_endpoint *hep,
749 struct r8a66597_pipe_info *info)
750{
751 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
752 struct r8a66597_pipe *pipe = hep->hcpriv;
753
754 dbg("enable_pipe:");
755
756 pipe->info = *info;
757 set_pipe_reg_addr(pipe, R8A66597_PIPE_NO_DMA);
758 r8a66597->pipe_cnt[pipe->info.pipenum]++;
759 dev->pipe_cnt[pipe->info.pipenum]++;
760
761 enable_r8a66597_pipe_dma(r8a66597, dev, pipe, urb);
762}
763
764/* this function must be called with interrupt disabled */
765static void force_dequeue(struct r8a66597 *r8a66597, u16 pipenum, u16 address)
766{
767 struct r8a66597_td *td, *next;
768 struct urb *urb;
769 struct list_head *list = &r8a66597->pipe_queue[pipenum];
770
771 if (list_empty(list))
772 return;
773
774 list_for_each_entry_safe(td, next, list, queue) {
775 if (!td)
776 continue;
777 if (td->address != address)
778 continue;
779
780 urb = td->urb;
781 list_del(&td->queue);
782 kfree(td);
783
784 if (urb) {
785 urb->status = -ENODEV;
Alan Sterne9df41c2007-08-08 11:48:02 -0400786 usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597),
787 urb);
788
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900789 spin_unlock(&r8a66597->lock);
790 usb_hcd_giveback_urb(r8a66597_to_hcd(r8a66597), urb);
791 spin_lock(&r8a66597->lock);
792 }
793 break;
794 }
795}
796
797/* this function must be called with interrupt disabled */
798static void disable_r8a66597_pipe_all(struct r8a66597 *r8a66597,
799 struct r8a66597_device *dev)
800{
801 int check_ep0 = 0;
802 u16 pipenum;
803
804 if (!dev)
805 return;
806
807 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
808 if (!dev->pipe_cnt[pipenum])
809 continue;
810
811 if (!check_ep0) {
812 check_ep0 = 1;
813 force_dequeue(r8a66597, 0, dev->address);
814 }
815
816 r8a66597->pipe_cnt[pipenum] -= dev->pipe_cnt[pipenum];
817 dev->pipe_cnt[pipenum] = 0;
818 force_dequeue(r8a66597, pipenum, dev->address);
819 }
820
821 dbg("disable_pipe");
822
823 r8a66597->dma_map &= ~(dev->dma_map);
824 dev->dma_map = 0;
825}
826
827/* this function must be called with interrupt disabled */
828static void init_pipe_info(struct r8a66597 *r8a66597, struct urb *urb,
829 struct usb_host_endpoint *hep,
830 struct usb_endpoint_descriptor *ep)
831{
832 struct r8a66597_pipe_info info;
833
834 info.pipenum = get_empty_pipenum(r8a66597, ep);
835 info.address = get_urb_to_r8a66597_addr(r8a66597, urb);
836 info.epnum = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
837 info.maxpacket = ep->wMaxPacketSize;
838 info.type = get_r8a66597_type(ep->bmAttributes
839 & USB_ENDPOINT_XFERTYPE_MASK);
840 info.bufnum = get_bufnum(info.pipenum);
841 info.buf_bsize = get_buf_bsize(info.pipenum);
842 info.interval = ep->bInterval;
843 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
844 info.dir_in = 1;
845 else
846 info.dir_in = 0;
847
848 enable_r8a66597_pipe(r8a66597, urb, hep, &info);
849}
850
851static void init_pipe_config(struct r8a66597 *r8a66597, struct urb *urb)
852{
853 struct r8a66597_device *dev;
854
855 dev = get_urb_to_r8a66597_dev(r8a66597, urb);
856 dev->state = USB_STATE_CONFIGURED;
857}
858
859static void pipe_irq_enable(struct r8a66597 *r8a66597, struct urb *urb,
860 u16 pipenum)
861{
862 if (pipenum == 0 && usb_pipeout(urb->pipe))
863 enable_irq_empty(r8a66597, pipenum);
864 else
865 enable_irq_ready(r8a66597, pipenum);
866
867 if (!usb_pipeisoc(urb->pipe))
868 enable_irq_nrdy(r8a66597, pipenum);
869}
870
871static void pipe_irq_disable(struct r8a66597 *r8a66597, u16 pipenum)
872{
873 disable_irq_ready(r8a66597, pipenum);
874 disable_irq_nrdy(r8a66597, pipenum);
875}
876
877/* this function must be called with interrupt disabled */
878static void r8a66597_usb_preconnect(struct r8a66597 *r8a66597, int port)
879{
880 r8a66597->root_hub[port].port |= (1 << USB_PORT_FEAT_CONNECTION)
881 | (1 << USB_PORT_FEAT_C_CONNECTION);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900882 r8a66597_write(r8a66597, ~DTCH, get_intsts_reg(port));
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900883 r8a66597_bset(r8a66597, DTCHE, get_intenb_reg(port));
884}
885
886/* this function must be called with interrupt disabled */
887static void r8a66597_usb_connect(struct r8a66597 *r8a66597, int port)
888{
889 u16 speed = get_rh_usb_speed(r8a66597, port);
890 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
891
892 if (speed == HSMODE)
893 rh->port |= (1 << USB_PORT_FEAT_HIGHSPEED);
894 else if (speed == LSMODE)
895 rh->port |= (1 << USB_PORT_FEAT_LOWSPEED);
896
897 rh->port &= ~(1 << USB_PORT_FEAT_RESET);
898 rh->port |= 1 << USB_PORT_FEAT_ENABLE;
899}
900
901/* this function must be called with interrupt disabled */
902static void r8a66597_usb_disconnect(struct r8a66597 *r8a66597, int port)
903{
904 struct r8a66597_device *dev = r8a66597->root_hub[port].dev;
905
906 r8a66597->root_hub[port].port &= ~(1 << USB_PORT_FEAT_CONNECTION);
907 r8a66597->root_hub[port].port |= (1 << USB_PORT_FEAT_C_CONNECTION);
908
909 disable_r8a66597_pipe_all(r8a66597, dev);
910 free_usb_address(r8a66597, dev);
911
912 r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port));
913}
914
915/* this function must be called with interrupt disabled */
916static void prepare_setup_packet(struct r8a66597 *r8a66597,
917 struct r8a66597_td *td)
918{
919 int i;
920 u16 *p = (u16 *)td->urb->setup_packet;
921 unsigned long setup_addr = USBREQ;
922
923 r8a66597_write(r8a66597, make_devsel(td->address) | td->maxpacket,
924 DCPMAXP);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900925 r8a66597_write(r8a66597, ~(SIGN | SACK), INTSTS1);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900926
927 for (i = 0; i < 4; i++) {
928 r8a66597_write(r8a66597, p[i], setup_addr);
929 setup_addr += 2;
930 }
931 r8a66597_write(r8a66597, SUREQ, DCPCTR);
932}
933
934/* this function must be called with interrupt disabled */
935static void prepare_packet_read(struct r8a66597 *r8a66597,
936 struct r8a66597_td *td)
937{
938 struct urb *urb = td->urb;
939
940 if (usb_pipecontrol(urb->pipe)) {
941 r8a66597_bclr(r8a66597, R8A66597_DIR, DCPCFG);
942 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
943 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
944 if (urb->actual_length == 0) {
945 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
946 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
947 }
948 pipe_irq_disable(r8a66597, td->pipenum);
949 pipe_start(r8a66597, td->pipe);
950 pipe_irq_enable(r8a66597, urb, td->pipenum);
951 } else {
952 if (urb->actual_length == 0) {
953 pipe_irq_disable(r8a66597, td->pipenum);
954 pipe_setting(r8a66597, td);
955 pipe_stop(r8a66597, td->pipe);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900956 r8a66597_write(r8a66597, ~(1 << td->pipenum), BRDYSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900957
958 if (td->pipe->pipetre) {
959 r8a66597_write(r8a66597, TRCLR,
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900960 td->pipe->pipetre);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900961 r8a66597_write(r8a66597,
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900962 (urb->transfer_buffer_length
963 + td->maxpacket - 1)
964 / td->maxpacket,
965 td->pipe->pipetrn);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900966 r8a66597_bset(r8a66597, TRENB,
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900967 td->pipe->pipetre);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900968 }
969
970 pipe_start(r8a66597, td->pipe);
971 pipe_irq_enable(r8a66597, urb, td->pipenum);
972 }
973 }
974}
975
976/* this function must be called with interrupt disabled */
977static void prepare_packet_write(struct r8a66597 *r8a66597,
978 struct r8a66597_td *td)
979{
980 u16 tmp;
981 struct urb *urb = td->urb;
982
983 if (usb_pipecontrol(urb->pipe)) {
984 pipe_stop(r8a66597, td->pipe);
985 r8a66597_bset(r8a66597, R8A66597_DIR, DCPCFG);
986 r8a66597_mdfy(r8a66597, ISEL, ISEL | CURPIPE, CFIFOSEL);
987 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
988 if (urb->actual_length == 0) {
989 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
990 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
991 }
992 } else {
993 if (urb->actual_length == 0)
994 pipe_setting(r8a66597, td);
995 if (td->pipe->pipetre)
996 r8a66597_bclr(r8a66597, TRENB, td->pipe->pipetre);
997 }
Yoshihiro Shimodae2945312007-07-18 23:10:34 +0900998 r8a66597_write(r8a66597, ~(1 << td->pipenum), BRDYSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900999
1000 fifo_change_from_pipe(r8a66597, td->pipe);
1001 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1002 if (unlikely((tmp & FRDY) == 0))
1003 pipe_irq_enable(r8a66597, urb, td->pipenum);
1004 else
1005 packet_write(r8a66597, td->pipenum);
1006 pipe_start(r8a66597, td->pipe);
1007}
1008
1009/* this function must be called with interrupt disabled */
1010static void prepare_status_packet(struct r8a66597 *r8a66597,
1011 struct r8a66597_td *td)
1012{
1013 struct urb *urb = td->urb;
1014
1015 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001016 pipe_stop(r8a66597, td->pipe);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001017
1018 if (urb->setup_packet[0] & USB_ENDPOINT_DIR_MASK) {
1019 r8a66597_bset(r8a66597, R8A66597_DIR, DCPCFG);
1020 r8a66597_mdfy(r8a66597, ISEL, ISEL | CURPIPE, CFIFOSEL);
1021 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001022 r8a66597_write(r8a66597, ~BEMP0, BEMPSTS);
1023 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
1024 r8a66597_write(r8a66597, BVAL, CFIFOCTR);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001025 enable_irq_empty(r8a66597, 0);
1026 } else {
1027 r8a66597_bclr(r8a66597, R8A66597_DIR, DCPCFG);
1028 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
1029 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
1030 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001031 enable_irq_ready(r8a66597, 0);
1032 }
1033 enable_irq_nrdy(r8a66597, 0);
1034 pipe_start(r8a66597, td->pipe);
1035}
1036
1037/* this function must be called with interrupt disabled */
1038static int start_transfer(struct r8a66597 *r8a66597, struct r8a66597_td *td)
1039{
1040 BUG_ON(!td);
1041
1042 switch (td->type) {
1043 case USB_PID_SETUP:
1044 if (td->urb->setup_packet[1] == USB_REQ_SET_ADDRESS) {
1045 td->set_address = 1;
1046 td->urb->setup_packet[2] = alloc_usb_address(r8a66597,
1047 td->urb);
1048 if (td->urb->setup_packet[2] == 0)
1049 return -EPIPE;
1050 }
1051 prepare_setup_packet(r8a66597, td);
1052 break;
1053 case USB_PID_IN:
1054 prepare_packet_read(r8a66597, td);
1055 break;
1056 case USB_PID_OUT:
1057 prepare_packet_write(r8a66597, td);
1058 break;
1059 case USB_PID_ACK:
1060 prepare_status_packet(r8a66597, td);
1061 break;
1062 default:
1063 err("invalid type.");
1064 break;
1065 }
1066
1067 return 0;
1068}
1069
1070static int check_transfer_finish(struct r8a66597_td *td, struct urb *urb)
1071{
1072 if (usb_pipeisoc(urb->pipe)) {
1073 if (urb->number_of_packets == td->iso_cnt)
1074 return 1;
1075 }
1076
1077 /* control or bulk or interrupt */
1078 if ((urb->transfer_buffer_length <= urb->actual_length) ||
1079 (td->short_packet) || (td->zero_packet))
1080 return 1;
1081
1082 return 0;
1083}
1084
1085/* this function must be called with interrupt disabled */
1086static void set_td_timer(struct r8a66597 *r8a66597, struct r8a66597_td *td)
1087{
1088 unsigned long time;
1089
1090 BUG_ON(!td);
1091
1092 if (!list_empty(&r8a66597->pipe_queue[td->pipenum]) &&
1093 !usb_pipecontrol(td->urb->pipe) && usb_pipein(td->urb->pipe)) {
1094 r8a66597->timeout_map |= 1 << td->pipenum;
1095 switch (usb_pipetype(td->urb->pipe)) {
1096 case PIPE_INTERRUPT:
1097 case PIPE_ISOCHRONOUS:
1098 time = 30;
1099 break;
1100 default:
1101 time = 300;
1102 break;
1103 }
1104
1105 mod_timer(&r8a66597->td_timer[td->pipenum],
1106 jiffies + msecs_to_jiffies(time));
1107 }
1108}
1109
1110/* this function must be called with interrupt disabled */
Alan Sterndfd1e532007-08-21 15:36:52 -04001111static void finish_request(struct r8a66597 *r8a66597, struct r8a66597_td *td,
1112 u16 pipenum, struct urb *urb)
1113__releases(r8a66597->lock) __acquires(r8a66597->lock)
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001114{
1115 int restart = 0;
1116 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
1117
1118 r8a66597->timeout_map &= ~(1 << pipenum);
1119
1120 if (likely(td)) {
Alan Sterneb231052007-08-21 15:40:36 -04001121 if (td->set_address && (urb->status != 0 || urb->unlinked))
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001122 r8a66597->address_map &= ~(1 << urb->setup_packet[2]);
1123
1124 pipe_toggle_save(r8a66597, td->pipe, urb);
1125 list_del(&td->queue);
1126 kfree(td);
1127 }
1128
1129 if (!list_empty(&r8a66597->pipe_queue[pipenum]))
1130 restart = 1;
1131
1132 if (likely(urb)) {
1133 if (usb_pipeisoc(urb->pipe))
1134 urb->start_frame = r8a66597_get_frame(hcd);
1135
Alan Sterne9df41c2007-08-08 11:48:02 -04001136 usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597), urb);
1137
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001138 spin_unlock(&r8a66597->lock);
1139 usb_hcd_giveback_urb(hcd, urb);
1140 spin_lock(&r8a66597->lock);
1141 }
1142
1143 if (restart) {
1144 td = r8a66597_get_td(r8a66597, pipenum);
1145 if (unlikely(!td))
1146 return;
1147
1148 start_transfer(r8a66597, td);
1149 set_td_timer(r8a66597, td);
1150 }
1151}
1152
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001153static void packet_read(struct r8a66597 *r8a66597, u16 pipenum)
1154{
1155 u16 tmp;
1156 int rcv_len, bufsize, urb_len, size;
1157 u16 *buf;
1158 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1159 struct urb *urb;
1160 int finish = 0;
Alan Sterndfd1e532007-08-21 15:36:52 -04001161 int status = 0;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001162
1163 if (unlikely(!td))
1164 return;
1165 urb = td->urb;
1166
1167 fifo_change_from_pipe(r8a66597, td->pipe);
1168 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1169 if (unlikely((tmp & FRDY) == 0)) {
1170 urb->status = -EPIPE;
1171 pipe_stop(r8a66597, td->pipe);
1172 pipe_irq_disable(r8a66597, pipenum);
1173 err("in fifo not ready (%d)", pipenum);
1174 finish_request(r8a66597, td, pipenum, td->urb);
1175 return;
1176 }
1177
1178 /* prepare parameters */
1179 rcv_len = tmp & DTLN;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001180 if (usb_pipeisoc(urb->pipe)) {
1181 buf = (u16 *)(urb->transfer_buffer +
1182 urb->iso_frame_desc[td->iso_cnt].offset);
1183 urb_len = urb->iso_frame_desc[td->iso_cnt].length;
1184 } else {
1185 buf = (void *)urb->transfer_buffer + urb->actual_length;
1186 urb_len = urb->transfer_buffer_length - urb->actual_length;
1187 }
Alan Sterndfd1e532007-08-21 15:36:52 -04001188 bufsize = min(urb_len, (int) td->maxpacket);
1189 if (rcv_len <= bufsize) {
1190 size = rcv_len;
1191 } else {
1192 size = bufsize;
1193 status = -EOVERFLOW;
1194 finish = 1;
1195 }
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001196
1197 /* update parameters */
1198 urb->actual_length += size;
1199 if (rcv_len == 0)
1200 td->zero_packet = 1;
Alan Sterndfd1e532007-08-21 15:36:52 -04001201 if (rcv_len < bufsize) {
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001202 td->short_packet = 1;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001203 }
1204 if (usb_pipeisoc(urb->pipe)) {
1205 urb->iso_frame_desc[td->iso_cnt].actual_length = size;
Alan Sterndfd1e532007-08-21 15:36:52 -04001206 urb->iso_frame_desc[td->iso_cnt].status = status;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001207 td->iso_cnt++;
Alan Sterndfd1e532007-08-21 15:36:52 -04001208 finish = 0;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001209 }
1210
1211 /* check transfer finish */
Alan Sternb0d9efb2007-08-21 15:39:21 -04001212 if (finish || check_transfer_finish(td, urb)) {
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001213 pipe_stop(r8a66597, td->pipe);
1214 pipe_irq_disable(r8a66597, pipenum);
1215 finish = 1;
1216 }
1217
1218 /* read fifo */
1219 if (urb->transfer_buffer) {
1220 if (size == 0)
1221 r8a66597_write(r8a66597, BCLR, td->pipe->fifoctr);
1222 else
1223 r8a66597_read_fifo(r8a66597, td->pipe->fifoaddr,
1224 buf, size);
1225 }
1226
1227 if (finish && pipenum != 0) {
Alan Sterneb231052007-08-21 15:40:36 -04001228 td->urb->status = status;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001229 finish_request(r8a66597, td, pipenum, urb);
1230 }
1231}
1232
1233static void packet_write(struct r8a66597 *r8a66597, u16 pipenum)
1234{
1235 u16 tmp;
1236 int bufsize, size;
1237 u16 *buf;
1238 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1239 struct urb *urb;
1240
1241 if (unlikely(!td))
1242 return;
1243 urb = td->urb;
1244
1245 fifo_change_from_pipe(r8a66597, td->pipe);
1246 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1247 if (unlikely((tmp & FRDY) == 0)) {
1248 urb->status = -EPIPE;
1249 pipe_stop(r8a66597, td->pipe);
1250 pipe_irq_disable(r8a66597, pipenum);
1251 err("out write fifo not ready. (%d)", pipenum);
1252 finish_request(r8a66597, td, pipenum, td->urb);
1253 return;
1254 }
1255
1256 /* prepare parameters */
1257 bufsize = td->maxpacket;
1258 if (usb_pipeisoc(urb->pipe)) {
1259 buf = (u16 *)(urb->transfer_buffer +
1260 urb->iso_frame_desc[td->iso_cnt].offset);
1261 size = min(bufsize,
1262 (int)urb->iso_frame_desc[td->iso_cnt].length);
1263 } else {
1264 buf = (u16 *)(urb->transfer_buffer + urb->actual_length);
1265 size = min((int)bufsize,
1266 urb->transfer_buffer_length - urb->actual_length);
1267 }
1268
1269 /* write fifo */
1270 if (pipenum > 0)
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001271 r8a66597_write(r8a66597, ~(1 << pipenum), BEMPSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001272 if (urb->transfer_buffer) {
1273 r8a66597_write_fifo(r8a66597, td->pipe->fifoaddr, buf, size);
1274 if (!usb_pipebulk(urb->pipe) || td->maxpacket != size)
1275 r8a66597_write(r8a66597, BVAL, td->pipe->fifoctr);
1276 }
1277
1278 /* update parameters */
1279 urb->actual_length += size;
1280 if (usb_pipeisoc(urb->pipe)) {
1281 urb->iso_frame_desc[td->iso_cnt].actual_length = size;
1282 urb->iso_frame_desc[td->iso_cnt].status = 0;
1283 td->iso_cnt++;
1284 }
1285
1286 /* check transfer finish */
1287 if (check_transfer_finish(td, urb)) {
1288 disable_irq_ready(r8a66597, pipenum);
1289 enable_irq_empty(r8a66597, pipenum);
1290 if (!usb_pipeisoc(urb->pipe))
1291 enable_irq_nrdy(r8a66597, pipenum);
1292 } else
1293 pipe_irq_enable(r8a66597, urb, pipenum);
1294}
1295
1296
1297static void check_next_phase(struct r8a66597 *r8a66597)
1298{
1299 struct r8a66597_td *td = r8a66597_get_td(r8a66597, 0);
1300 struct urb *urb;
1301 u8 finish = 0;
1302
1303 if (unlikely(!td))
1304 return;
1305 urb = td->urb;
1306
1307 switch (td->type) {
1308 case USB_PID_IN:
1309 case USB_PID_OUT:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001310 if (check_transfer_finish(td, urb))
1311 td->type = USB_PID_ACK;
1312 break;
1313 case USB_PID_SETUP:
Alan Sterneb231052007-08-21 15:40:36 -04001314 if (urb->transfer_buffer_length == urb->actual_length)
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001315 td->type = USB_PID_ACK;
Alan Sterneb231052007-08-21 15:40:36 -04001316 else if (usb_pipeout(urb->pipe))
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001317 td->type = USB_PID_OUT;
1318 else
1319 td->type = USB_PID_IN;
1320 break;
1321 case USB_PID_ACK:
1322 finish = 1;
Alan Sterneb231052007-08-21 15:40:36 -04001323 urb->status = 0;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001324 break;
1325 }
1326
Alan Sterneb231052007-08-21 15:40:36 -04001327 if (finish || urb->unlinked)
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001328 finish_request(r8a66597, td, 0, urb);
1329 else
1330 start_transfer(r8a66597, td);
1331}
1332
1333static void set_urb_error(struct r8a66597 *r8a66597, u16 pipenum)
1334{
1335 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1336
1337 if (td && td->urb) {
1338 u16 pid = r8a66597_read(r8a66597, td->pipe->pipectr) & PID;
1339
1340 if (pid == PID_NAK)
1341 td->urb->status = -ECONNRESET;
1342 else
1343 td->urb->status = -EPIPE;
1344 }
1345}
1346
1347static void irq_pipe_ready(struct r8a66597 *r8a66597)
1348{
1349 u16 check;
1350 u16 pipenum;
1351 u16 mask;
1352 struct r8a66597_td *td;
1353
1354 mask = r8a66597_read(r8a66597, BRDYSTS)
1355 & r8a66597_read(r8a66597, BRDYENB);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001356 r8a66597_write(r8a66597, ~mask, BRDYSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001357 if (mask & BRDY0) {
1358 td = r8a66597_get_td(r8a66597, 0);
1359 if (td && td->type == USB_PID_IN)
1360 packet_read(r8a66597, 0);
1361 else
1362 pipe_irq_disable(r8a66597, 0);
1363 check_next_phase(r8a66597);
1364 }
1365
1366 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1367 check = 1 << pipenum;
1368 if (mask & check) {
1369 td = r8a66597_get_td(r8a66597, pipenum);
1370 if (unlikely(!td))
1371 continue;
1372
1373 if (td->type == USB_PID_IN)
1374 packet_read(r8a66597, pipenum);
1375 else if (td->type == USB_PID_OUT)
1376 packet_write(r8a66597, pipenum);
1377 }
1378 }
1379}
1380
1381static void irq_pipe_empty(struct r8a66597 *r8a66597)
1382{
1383 u16 tmp;
1384 u16 check;
1385 u16 pipenum;
1386 u16 mask;
1387 struct r8a66597_td *td;
1388
1389 mask = r8a66597_read(r8a66597, BEMPSTS)
1390 & r8a66597_read(r8a66597, BEMPENB);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001391 r8a66597_write(r8a66597, ~mask, BEMPSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001392 if (mask & BEMP0) {
1393 cfifo_change(r8a66597, 0);
1394 td = r8a66597_get_td(r8a66597, 0);
1395 if (td && td->type != USB_PID_OUT)
1396 disable_irq_empty(r8a66597, 0);
1397 check_next_phase(r8a66597);
1398 }
1399
1400 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1401 check = 1 << pipenum;
1402 if (mask & check) {
1403 struct r8a66597_td *td;
1404 td = r8a66597_get_td(r8a66597, pipenum);
1405 if (unlikely(!td))
1406 continue;
1407
1408 tmp = r8a66597_read(r8a66597, td->pipe->pipectr);
1409 if ((tmp & INBUFM) == 0) {
1410 disable_irq_empty(r8a66597, pipenum);
1411 pipe_irq_disable(r8a66597, pipenum);
Alan Sterneb231052007-08-21 15:40:36 -04001412 td->urb->status = 0;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001413 finish_request(r8a66597, td, pipenum, td->urb);
1414 }
1415 }
1416 }
1417}
1418
1419static void irq_pipe_nrdy(struct r8a66597 *r8a66597)
1420{
1421 u16 check;
1422 u16 pipenum;
1423 u16 mask;
1424
1425 mask = r8a66597_read(r8a66597, NRDYSTS)
1426 & r8a66597_read(r8a66597, NRDYENB);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001427 r8a66597_write(r8a66597, ~mask, NRDYSTS);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001428 if (mask & NRDY0) {
1429 cfifo_change(r8a66597, 0);
1430 set_urb_error(r8a66597, 0);
1431 pipe_irq_disable(r8a66597, 0);
1432 check_next_phase(r8a66597);
1433 }
1434
1435 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1436 check = 1 << pipenum;
1437 if (mask & check) {
1438 struct r8a66597_td *td;
1439 td = r8a66597_get_td(r8a66597, pipenum);
1440 if (unlikely(!td))
1441 continue;
1442
1443 set_urb_error(r8a66597, pipenum);
1444 pipe_irq_disable(r8a66597, pipenum);
1445 pipe_stop(r8a66597, td->pipe);
1446 finish_request(r8a66597, td, pipenum, td->urb);
1447 }
1448 }
1449}
1450
1451static void start_root_hub_sampling(struct r8a66597 *r8a66597, int port)
1452{
1453 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
1454
1455 rh->old_syssts = r8a66597_read(r8a66597, get_syssts_reg(port)) & LNST;
1456 rh->scount = R8A66597_MAX_SAMPLING;
1457 mod_timer(&r8a66597->rh_timer, jiffies + msecs_to_jiffies(50));
1458}
1459
1460static irqreturn_t r8a66597_irq(struct usb_hcd *hcd)
1461{
1462 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1463 u16 intsts0, intsts1, intsts2;
1464 u16 intenb0, intenb1, intenb2;
1465 u16 mask0, mask1, mask2;
1466
1467 spin_lock(&r8a66597->lock);
1468
1469 intsts0 = r8a66597_read(r8a66597, INTSTS0);
1470 intsts1 = r8a66597_read(r8a66597, INTSTS1);
1471 intsts2 = r8a66597_read(r8a66597, INTSTS2);
1472 intenb0 = r8a66597_read(r8a66597, INTENB0);
1473 intenb1 = r8a66597_read(r8a66597, INTENB1);
1474 intenb2 = r8a66597_read(r8a66597, INTENB2);
1475
1476 mask2 = intsts2 & intenb2;
1477 mask1 = intsts1 & intenb1;
1478 mask0 = intsts0 & intenb0 & (BEMP | NRDY | BRDY);
1479 if (mask2) {
1480 if (mask2 & ATTCH) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001481 r8a66597_write(r8a66597, ~ATTCH, INTSTS2);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001482 r8a66597_bclr(r8a66597, ATTCHE, INTENB2);
1483
1484 /* start usb bus sampling */
1485 start_root_hub_sampling(r8a66597, 1);
1486 }
1487 if (mask2 & DTCH) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001488 r8a66597_write(r8a66597, ~DTCH, INTSTS2);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001489 r8a66597_bclr(r8a66597, DTCHE, INTENB2);
1490 r8a66597_usb_disconnect(r8a66597, 1);
1491 }
1492 }
1493
1494 if (mask1) {
1495 if (mask1 & ATTCH) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001496 r8a66597_write(r8a66597, ~ATTCH, INTSTS1);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001497 r8a66597_bclr(r8a66597, ATTCHE, INTENB1);
1498
1499 /* start usb bus sampling */
1500 start_root_hub_sampling(r8a66597, 0);
1501 }
1502 if (mask1 & DTCH) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001503 r8a66597_write(r8a66597, ~DTCH, INTSTS1);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001504 r8a66597_bclr(r8a66597, DTCHE, INTENB1);
1505 r8a66597_usb_disconnect(r8a66597, 0);
1506 }
1507 if (mask1 & SIGN) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001508 r8a66597_write(r8a66597, ~SIGN, INTSTS1);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001509 set_urb_error(r8a66597, 0);
1510 check_next_phase(r8a66597);
1511 }
1512 if (mask1 & SACK) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001513 r8a66597_write(r8a66597, ~SACK, INTSTS1);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001514 check_next_phase(r8a66597);
1515 }
1516 }
1517 if (mask0) {
1518 if (mask0 & BRDY)
1519 irq_pipe_ready(r8a66597);
1520 if (mask0 & BEMP)
1521 irq_pipe_empty(r8a66597);
1522 if (mask0 & NRDY)
1523 irq_pipe_nrdy(r8a66597);
1524 }
1525
1526 spin_unlock(&r8a66597->lock);
1527 return IRQ_HANDLED;
1528}
1529
1530/* this function must be called with interrupt disabled */
1531static void r8a66597_root_hub_control(struct r8a66597 *r8a66597, int port)
1532{
1533 u16 tmp;
1534 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
1535
1536 if (rh->port & (1 << USB_PORT_FEAT_RESET)) {
1537 unsigned long dvstctr_reg = get_dvstctr_reg(port);
1538
1539 tmp = r8a66597_read(r8a66597, dvstctr_reg);
1540 if ((tmp & USBRST) == USBRST) {
1541 r8a66597_mdfy(r8a66597, UACT, USBRST | UACT,
1542 dvstctr_reg);
1543 mod_timer(&r8a66597->rh_timer,
1544 jiffies + msecs_to_jiffies(50));
1545 } else
1546 r8a66597_usb_connect(r8a66597, port);
1547 }
1548
1549 if (rh->scount > 0) {
1550 tmp = r8a66597_read(r8a66597, get_syssts_reg(port)) & LNST;
1551 if (tmp == rh->old_syssts) {
1552 rh->scount--;
1553 if (rh->scount == 0) {
1554 if (tmp == FS_JSTS) {
1555 r8a66597_bset(r8a66597, HSE,
1556 get_syscfg_reg(port));
1557 r8a66597_usb_preconnect(r8a66597, port);
1558 } else if (tmp == LS_JSTS) {
1559 r8a66597_bclr(r8a66597, HSE,
1560 get_syscfg_reg(port));
1561 r8a66597_usb_preconnect(r8a66597, port);
1562 } else if (tmp == SE0)
1563 r8a66597_bset(r8a66597, ATTCHE,
1564 get_intenb_reg(port));
1565 } else {
1566 mod_timer(&r8a66597->rh_timer,
1567 jiffies + msecs_to_jiffies(50));
1568 }
1569 } else {
1570 rh->scount = R8A66597_MAX_SAMPLING;
1571 rh->old_syssts = tmp;
1572 mod_timer(&r8a66597->rh_timer,
1573 jiffies + msecs_to_jiffies(50));
1574 }
1575 }
1576}
1577
1578static void r8a66597_td_timer(unsigned long _r8a66597)
1579{
1580 struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597;
1581 unsigned long flags;
1582 u16 pipenum;
1583 struct r8a66597_td *td, *new_td = NULL;
1584 struct r8a66597_pipe *pipe;
1585
1586 spin_lock_irqsave(&r8a66597->lock, flags);
1587 for (pipenum = 0; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1588 if (!(r8a66597->timeout_map & (1 << pipenum)))
1589 continue;
1590 if (timer_pending(&r8a66597->td_timer[pipenum]))
1591 continue;
1592
1593 td = r8a66597_get_td(r8a66597, pipenum);
1594 if (!td) {
1595 r8a66597->timeout_map &= ~(1 << pipenum);
1596 continue;
1597 }
1598
1599 if (td->urb->actual_length) {
1600 set_td_timer(r8a66597, td);
1601 break;
1602 }
1603
1604 pipe = td->pipe;
1605 pipe_stop(r8a66597, pipe);
1606
1607 new_td = td;
1608 do {
1609 list_move_tail(&new_td->queue,
1610 &r8a66597->pipe_queue[pipenum]);
1611 new_td = r8a66597_get_td(r8a66597, pipenum);
1612 if (!new_td) {
1613 new_td = td;
1614 break;
1615 }
1616 } while (td != new_td && td->address == new_td->address);
1617
1618 start_transfer(r8a66597, new_td);
1619
1620 if (td == new_td)
1621 r8a66597->timeout_map &= ~(1 << pipenum);
1622 else
1623 set_td_timer(r8a66597, new_td);
1624 break;
1625 }
1626 spin_unlock_irqrestore(&r8a66597->lock, flags);
1627}
1628
1629static void r8a66597_timer(unsigned long _r8a66597)
1630{
1631 struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597;
1632 unsigned long flags;
1633
1634 spin_lock_irqsave(&r8a66597->lock, flags);
1635
1636 r8a66597_root_hub_control(r8a66597, 0);
1637 r8a66597_root_hub_control(r8a66597, 1);
1638
1639 spin_unlock_irqrestore(&r8a66597->lock, flags);
1640}
1641
1642static int check_pipe_config(struct r8a66597 *r8a66597, struct urb *urb)
1643{
1644 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
1645
1646 if (dev && dev->address && dev->state != USB_STATE_CONFIGURED &&
1647 (urb->dev->state == USB_STATE_CONFIGURED))
1648 return 1;
1649 else
1650 return 0;
1651}
1652
1653static int r8a66597_start(struct usb_hcd *hcd)
1654{
1655 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001656
1657 hcd->state = HC_STATE_RUNNING;
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001658 return enable_controller(r8a66597);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001659}
1660
1661static void r8a66597_stop(struct usb_hcd *hcd)
1662{
1663 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1664
1665 disable_controller(r8a66597);
1666}
1667
1668static void set_address_zero(struct r8a66597 *r8a66597, struct urb *urb)
1669{
1670 unsigned int usb_address = usb_pipedevice(urb->pipe);
1671 u16 root_port, hub_port;
1672
1673 if (usb_address == 0) {
1674 get_port_number(urb->dev->devpath,
1675 &root_port, &hub_port);
1676 set_devadd_reg(r8a66597, 0,
1677 get_r8a66597_usb_speed(urb->dev->speed),
1678 get_parent_r8a66597_address(r8a66597, urb->dev),
1679 hub_port, root_port);
1680 }
1681}
1682
1683static struct r8a66597_td *r8a66597_make_td(struct r8a66597 *r8a66597,
1684 struct urb *urb,
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001685 struct usb_host_endpoint *hep)
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001686{
1687 struct r8a66597_td *td;
1688 u16 pipenum;
1689
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001690 td = kzalloc(sizeof(struct r8a66597_td), GFP_ATOMIC);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001691 if (td == NULL)
1692 return NULL;
1693
1694 pipenum = r8a66597_get_pipenum(urb, hep);
1695 td->pipenum = pipenum;
1696 td->pipe = hep->hcpriv;
1697 td->urb = urb;
1698 td->address = get_urb_to_r8a66597_addr(r8a66597, urb);
1699 td->maxpacket = usb_maxpacket(urb->dev, urb->pipe,
1700 !usb_pipein(urb->pipe));
1701 if (usb_pipecontrol(urb->pipe))
1702 td->type = USB_PID_SETUP;
1703 else if (usb_pipein(urb->pipe))
1704 td->type = USB_PID_IN;
1705 else
1706 td->type = USB_PID_OUT;
1707 INIT_LIST_HEAD(&td->queue);
1708
1709 return td;
1710}
1711
1712static int r8a66597_urb_enqueue(struct usb_hcd *hcd,
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001713 struct urb *urb,
1714 gfp_t mem_flags)
1715{
Alan Sterne9df41c2007-08-08 11:48:02 -04001716 struct usb_host_endpoint *hep = urb->ep;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001717 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1718 struct r8a66597_td *td = NULL;
Alan Sterne9df41c2007-08-08 11:48:02 -04001719 int ret, request = 0;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001720 unsigned long flags;
1721
1722 spin_lock_irqsave(&r8a66597->lock, flags);
1723 if (!get_urb_to_r8a66597_dev(r8a66597, urb)) {
1724 ret = -ENODEV;
Alan Sterne9df41c2007-08-08 11:48:02 -04001725 goto error_not_linked;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001726 }
1727
Alan Sterne9df41c2007-08-08 11:48:02 -04001728 ret = usb_hcd_link_urb_to_ep(hcd, urb);
1729 if (ret)
1730 goto error_not_linked;
1731
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001732 if (!hep->hcpriv) {
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001733 hep->hcpriv = kzalloc(sizeof(struct r8a66597_pipe),
1734 GFP_ATOMIC);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001735 if (!hep->hcpriv) {
1736 ret = -ENOMEM;
1737 goto error;
1738 }
1739 set_pipe_reg_addr(hep->hcpriv, R8A66597_PIPE_NO_DMA);
1740 if (usb_pipeendpoint(urb->pipe))
1741 init_pipe_info(r8a66597, urb, hep, &hep->desc);
1742 }
1743
1744 if (unlikely(check_pipe_config(r8a66597, urb)))
1745 init_pipe_config(r8a66597, urb);
1746
1747 set_address_zero(r8a66597, urb);
Yoshihiro Shimodae2945312007-07-18 23:10:34 +09001748 td = r8a66597_make_td(r8a66597, urb, hep);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001749 if (td == NULL) {
1750 ret = -ENOMEM;
1751 goto error;
1752 }
1753 if (list_empty(&r8a66597->pipe_queue[td->pipenum]))
1754 request = 1;
1755 list_add_tail(&td->queue, &r8a66597->pipe_queue[td->pipenum]);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001756 urb->hcpriv = td;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001757
1758 if (request) {
1759 ret = start_transfer(r8a66597, td);
1760 if (ret < 0) {
1761 list_del(&td->queue);
1762 kfree(td);
1763 }
1764 } else
1765 set_td_timer(r8a66597, td);
1766
1767error:
Alan Sterne9df41c2007-08-08 11:48:02 -04001768 if (ret)
1769 usb_hcd_unlink_urb_from_ep(hcd, urb);
1770error_not_linked:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001771 spin_unlock_irqrestore(&r8a66597->lock, flags);
1772 return ret;
1773}
1774
Alan Sterne9df41c2007-08-08 11:48:02 -04001775static int r8a66597_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,
1776 int status)
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001777{
1778 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1779 struct r8a66597_td *td;
1780 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001781 int rc;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001782
1783 spin_lock_irqsave(&r8a66597->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001784 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1785 if (rc)
1786 goto done;
1787
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001788 if (urb->hcpriv) {
1789 td = urb->hcpriv;
1790 pipe_stop(r8a66597, td->pipe);
1791 pipe_irq_disable(r8a66597, td->pipenum);
1792 disable_irq_empty(r8a66597, td->pipenum);
Alan Sterndfd1e532007-08-21 15:36:52 -04001793 finish_request(r8a66597, td, td->pipenum, urb);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001794 }
Alan Sterne9df41c2007-08-08 11:48:02 -04001795 done:
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001796 spin_unlock_irqrestore(&r8a66597->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001797 return rc;
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001798}
1799
1800static void r8a66597_endpoint_disable(struct usb_hcd *hcd,
1801 struct usb_host_endpoint *hep)
1802{
1803 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1804 struct r8a66597_pipe *pipe = (struct r8a66597_pipe *)hep->hcpriv;
1805 struct r8a66597_td *td;
1806 struct urb *urb = NULL;
1807 u16 pipenum;
1808 unsigned long flags;
1809
1810 if (pipe == NULL)
1811 return;
1812 pipenum = pipe->info.pipenum;
1813
1814 if (pipenum == 0) {
1815 kfree(hep->hcpriv);
1816 hep->hcpriv = NULL;
1817 return;
1818 }
1819
1820 spin_lock_irqsave(&r8a66597->lock, flags);
1821 pipe_stop(r8a66597, pipe);
1822 pipe_irq_disable(r8a66597, pipenum);
1823 disable_irq_empty(r8a66597, pipenum);
1824 td = r8a66597_get_td(r8a66597, pipenum);
1825 if (td)
1826 urb = td->urb;
Alan Sterndfd1e532007-08-21 15:36:52 -04001827 finish_request(r8a66597, td, pipenum, urb);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09001828 kfree(hep->hcpriv);
1829 hep->hcpriv = NULL;
1830 spin_unlock_irqrestore(&r8a66597->lock, flags);
1831}
1832
1833static int r8a66597_get_frame(struct usb_hcd *hcd)
1834{
1835 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1836 return r8a66597_read(r8a66597, FRMNUM) & 0x03FF;
1837}
1838
1839static void collect_usb_address_map(struct usb_device *udev, unsigned long *map)
1840{
1841 int chix;
1842
1843 if (udev->state == USB_STATE_CONFIGURED &&
1844 udev->parent && udev->parent->devnum > 1 &&
1845 udev->parent->descriptor.bDeviceClass == USB_CLASS_HUB)
1846 map[udev->devnum/32] |= (1 << (udev->devnum % 32));
1847
1848 for (chix = 0; chix < udev->maxchild; chix++) {
1849 struct usb_device *childdev = udev->children[chix];
1850
1851 if (childdev)
1852 collect_usb_address_map(childdev, map);
1853 }
1854}
1855
1856/* this function must be called with interrupt disabled */
1857static struct r8a66597_device *get_r8a66597_device(struct r8a66597 *r8a66597,
1858 int addr)
1859{
1860 struct r8a66597_device *dev;
1861 struct list_head *list = &r8a66597->child_device;
1862
1863 list_for_each_entry(dev, list, device_list) {
1864 if (!dev)
1865 continue;
1866 if (dev->usb_address != addr)
1867 continue;
1868
1869 return dev;
1870 }
1871
1872 err("get_r8a66597_device fail.(%d)\n", addr);
1873 return NULL;
1874}
1875
1876static void update_usb_address_map(struct r8a66597 *r8a66597,
1877 struct usb_device *root_hub,
1878 unsigned long *map)
1879{
1880 int i, j, addr;
1881 unsigned long diff;
1882 unsigned long flags;
1883
1884 for (i = 0; i < 4; i++) {
1885 diff = r8a66597->child_connect_map[i] ^ map[i];
1886 if (!diff)
1887 continue;
1888
1889 for (j = 0; j < 32; j++) {
1890 if (!(diff & (1 << j)))
1891 continue;
1892
1893 addr = i * 32 + j;
1894 if (map[i] & (1 << j))
1895 set_child_connect_map(r8a66597, addr);
1896 else {
1897 struct r8a66597_device *dev;
1898
1899 spin_lock_irqsave(&r8a66597->lock, flags);
1900 dev = get_r8a66597_device(r8a66597, addr);
1901 disable_r8a66597_pipe_all(r8a66597, dev);
1902 free_usb_address(r8a66597, dev);
1903 put_child_connect_map(r8a66597, addr);
1904 spin_unlock_irqrestore(&r8a66597->lock, flags);
1905 }
1906 }
1907 }
1908}
1909
1910static void r8a66597_check_detect_child(struct r8a66597 *r8a66597,
1911 struct usb_hcd *hcd)
1912{
1913 struct usb_bus *bus;
1914 unsigned long now_map[4];
1915
1916 memset(now_map, 0, sizeof(now_map));
1917
1918 list_for_each_entry(bus, &usb_bus_list, bus_list) {
1919 if (!bus->root_hub)
1920 continue;
1921
1922 if (bus->busnum != hcd->self.busnum)
1923 continue;
1924
1925 collect_usb_address_map(bus->root_hub, now_map);
1926 update_usb_address_map(r8a66597, bus->root_hub, now_map);
1927 }
1928}
1929
1930static int r8a66597_hub_status_data(struct usb_hcd *hcd, char *buf)
1931{
1932 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1933 unsigned long flags;
1934 int i;
1935
1936 r8a66597_check_detect_child(r8a66597, hcd);
1937
1938 spin_lock_irqsave(&r8a66597->lock, flags);
1939
1940 *buf = 0; /* initialize (no change) */
1941
1942 for (i = 0; i < R8A66597_MAX_ROOT_HUB; i++) {
1943 if (r8a66597->root_hub[i].port & 0xffff0000)
1944 *buf |= 1 << (i + 1);
1945 }
1946
1947 spin_unlock_irqrestore(&r8a66597->lock, flags);
1948
1949 return (*buf != 0);
1950}
1951
1952static void r8a66597_hub_descriptor(struct r8a66597 *r8a66597,
1953 struct usb_hub_descriptor *desc)
1954{
1955 desc->bDescriptorType = 0x29;
1956 desc->bHubContrCurrent = 0;
1957 desc->bNbrPorts = R8A66597_MAX_ROOT_HUB;
1958 desc->bDescLength = 9;
1959 desc->bPwrOn2PwrGood = 0;
1960 desc->wHubCharacteristics = cpu_to_le16(0x0011);
1961 desc->bitmap[0] = ((1 << R8A66597_MAX_ROOT_HUB) - 1) << 1;
1962 desc->bitmap[1] = ~0;
1963}
1964
1965static int r8a66597_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
1966 u16 wIndex, char *buf, u16 wLength)
1967{
1968 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1969 int ret;
1970 int port = (wIndex & 0x00FF) - 1;
1971 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
1972 unsigned long flags;
1973
1974 ret = 0;
1975
1976 spin_lock_irqsave(&r8a66597->lock, flags);
1977 switch (typeReq) {
1978 case ClearHubFeature:
1979 case SetHubFeature:
1980 switch (wValue) {
1981 case C_HUB_OVER_CURRENT:
1982 case C_HUB_LOCAL_POWER:
1983 break;
1984 default:
1985 goto error;
1986 }
1987 break;
1988 case ClearPortFeature:
1989 if (wIndex > R8A66597_MAX_ROOT_HUB)
1990 goto error;
1991 if (wLength != 0)
1992 goto error;
1993
1994 switch (wValue) {
1995 case USB_PORT_FEAT_ENABLE:
1996 rh->port &= (1 << USB_PORT_FEAT_POWER);
1997 break;
1998 case USB_PORT_FEAT_SUSPEND:
1999 break;
2000 case USB_PORT_FEAT_POWER:
2001 r8a66597_port_power(r8a66597, port, 0);
2002 break;
2003 case USB_PORT_FEAT_C_ENABLE:
2004 case USB_PORT_FEAT_C_SUSPEND:
2005 case USB_PORT_FEAT_C_CONNECTION:
2006 case USB_PORT_FEAT_C_OVER_CURRENT:
2007 case USB_PORT_FEAT_C_RESET:
2008 break;
2009 default:
2010 goto error;
2011 }
2012 rh->port &= ~(1 << wValue);
2013 break;
2014 case GetHubDescriptor:
2015 r8a66597_hub_descriptor(r8a66597,
2016 (struct usb_hub_descriptor *)buf);
2017 break;
2018 case GetHubStatus:
2019 *buf = 0x00;
2020 break;
2021 case GetPortStatus:
2022 if (wIndex > R8A66597_MAX_ROOT_HUB)
2023 goto error;
2024 *(u32 *)buf = rh->port;
2025 break;
2026 case SetPortFeature:
2027 if (wIndex > R8A66597_MAX_ROOT_HUB)
2028 goto error;
2029 if (wLength != 0)
2030 goto error;
2031
2032 switch (wValue) {
2033 case USB_PORT_FEAT_SUSPEND:
2034 break;
2035 case USB_PORT_FEAT_POWER:
2036 r8a66597_port_power(r8a66597, port, 1);
2037 rh->port |= (1 << USB_PORT_FEAT_POWER);
2038 break;
2039 case USB_PORT_FEAT_RESET: {
2040 struct r8a66597_device *dev = rh->dev;
2041
2042 rh->port |= (1 << USB_PORT_FEAT_RESET);
2043
2044 disable_r8a66597_pipe_all(r8a66597, dev);
2045 free_usb_address(r8a66597, dev);
2046
2047 r8a66597_mdfy(r8a66597, USBRST, USBRST | UACT,
2048 get_dvstctr_reg(port));
2049 mod_timer(&r8a66597->rh_timer,
2050 jiffies + msecs_to_jiffies(50));
2051 }
2052 break;
2053 default:
2054 goto error;
2055 }
2056 rh->port |= 1 << wValue;
2057 break;
2058 default:
2059error:
2060 ret = -EPIPE;
2061 break;
2062 }
2063
2064 spin_unlock_irqrestore(&r8a66597->lock, flags);
2065 return ret;
2066}
2067
2068static struct hc_driver r8a66597_hc_driver = {
2069 .description = hcd_name,
2070 .hcd_priv_size = sizeof(struct r8a66597),
2071 .irq = r8a66597_irq,
2072
2073 /*
2074 * generic hardware linkage
2075 */
2076 .flags = HCD_USB2,
2077
2078 .start = r8a66597_start,
2079 .stop = r8a66597_stop,
2080
2081 /*
2082 * managing i/o requests and associated device resources
2083 */
2084 .urb_enqueue = r8a66597_urb_enqueue,
2085 .urb_dequeue = r8a66597_urb_dequeue,
2086 .endpoint_disable = r8a66597_endpoint_disable,
2087
2088 /*
2089 * periodic schedule support
2090 */
2091 .get_frame_number = r8a66597_get_frame,
2092
2093 /*
2094 * root hub support
2095 */
2096 .hub_status_data = r8a66597_hub_status_data,
2097 .hub_control = r8a66597_hub_control,
2098};
2099
2100#if defined(CONFIG_PM)
2101static int r8a66597_suspend(struct platform_device *pdev, pm_message_t state)
2102{
2103 pdev->dev.power.power_state = state;
2104 return 0;
2105}
2106
2107static int r8a66597_resume(struct platform_device *pdev)
2108{
2109 pdev->dev.power.power_state = PMSG_ON;
2110 return 0;
2111}
2112#else /* if defined(CONFIG_PM) */
2113#define r8a66597_suspend NULL
2114#define r8a66597_resume NULL
2115#endif
2116
2117static int __init_or_module r8a66597_remove(struct platform_device *pdev)
2118{
2119 struct r8a66597 *r8a66597 = dev_get_drvdata(&pdev->dev);
2120 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
2121
2122 del_timer_sync(&r8a66597->rh_timer);
2123 iounmap((void *)r8a66597->reg);
2124 usb_remove_hcd(hcd);
2125 usb_put_hcd(hcd);
2126 return 0;
2127}
2128
2129#define resource_len(r) (((r)->end - (r)->start) + 1)
2130static int __init r8a66597_probe(struct platform_device *pdev)
2131{
2132 struct resource *res = NULL;
2133 int irq = -1;
2134 void __iomem *reg = NULL;
2135 struct usb_hcd *hcd = NULL;
2136 struct r8a66597 *r8a66597;
2137 int ret = 0;
2138 int i;
2139
2140 if (pdev->dev.dma_mask) {
2141 ret = -EINVAL;
2142 err("dma not support");
2143 goto clean_up;
2144 }
2145
2146 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2147 (char *)hcd_name);
2148 if (!res) {
2149 ret = -ENODEV;
2150 err("platform_get_resource_byname error.");
2151 goto clean_up;
2152 }
2153
2154 irq = platform_get_irq(pdev, 0);
2155 if (irq < 0) {
2156 ret = -ENODEV;
2157 err("platform_get_irq error.");
2158 goto clean_up;
2159 }
2160
2161 reg = ioremap(res->start, resource_len(res));
2162 if (reg == NULL) {
2163 ret = -ENOMEM;
2164 err("ioremap error.");
2165 goto clean_up;
2166 }
2167
2168 /* initialize hcd */
2169 hcd = usb_create_hcd(&r8a66597_hc_driver, &pdev->dev, (char *)hcd_name);
2170 if (!hcd) {
2171 ret = -ENOMEM;
2172 err("Failed to create hcd");
2173 goto clean_up;
2174 }
2175 r8a66597 = hcd_to_r8a66597(hcd);
2176 memset(r8a66597, 0, sizeof(struct r8a66597));
2177 dev_set_drvdata(&pdev->dev, r8a66597);
2178
2179 spin_lock_init(&r8a66597->lock);
2180 init_timer(&r8a66597->rh_timer);
2181 r8a66597->rh_timer.function = r8a66597_timer;
2182 r8a66597->rh_timer.data = (unsigned long)r8a66597;
2183 r8a66597->reg = (unsigned long)reg;
2184
2185 for (i = 0; i < R8A66597_MAX_NUM_PIPE; i++) {
2186 INIT_LIST_HEAD(&r8a66597->pipe_queue[i]);
2187 init_timer(&r8a66597->td_timer[i]);
2188 r8a66597->td_timer[i].function = r8a66597_td_timer;
2189 r8a66597->td_timer[i].data = (unsigned long)r8a66597;
2190 }
2191 INIT_LIST_HEAD(&r8a66597->child_device);
2192
2193 hcd->rsrc_start = res->start;
2194 ret = usb_add_hcd(hcd, irq, 0);
2195 if (ret != 0) {
2196 err("Failed to add hcd");
2197 goto clean_up;
2198 }
2199
2200 return 0;
2201
2202clean_up:
2203 if (reg)
2204 iounmap(reg);
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +09002205
2206 return ret;
2207}
2208
2209static struct platform_driver r8a66597_driver = {
2210 .probe = r8a66597_probe,
2211 .remove = r8a66597_remove,
2212 .suspend = r8a66597_suspend,
2213 .resume = r8a66597_resume,
2214 .driver = {
2215 .name = (char *) hcd_name,
2216 },
2217};
2218
2219static int __init r8a66597_init(void)
2220{
2221 if (usb_disabled())
2222 return -ENODEV;
2223
2224 info("driver %s, %s", hcd_name, DRIVER_VERSION);
2225 return platform_driver_register(&r8a66597_driver);
2226}
2227module_init(r8a66597_init);
2228
2229static void __exit r8a66597_cleanup(void)
2230{
2231 platform_driver_unregister(&r8a66597_driver);
2232}
2233module_exit(r8a66597_cleanup);
2234