]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/usb/host/r8a66597-hcd.c
Merge branch 'for-rmk-realview' of git://linux-arm.org/linux-2.6 into devel
[mirror_ubuntu-eoan-kernel.git] / drivers / usb / host / r8a66597-hcd.c
CommitLineData
5d304358
YS
1/*
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>
e294531d
YS
38#include <linux/io.h>
39#include <linux/irq.h>
5d304358
YS
40
41#include "../core/hcd.h"
42#include "r8a66597.h"
43
44MODULE_DESCRIPTION("R8A66597 USB Host Controller Driver");
45MODULE_LICENSE("GPL");
46MODULE_AUTHOR("Yoshihiro Shimoda");
f4fce61d 47MODULE_ALIAS("platform:r8a66597_hcd");
5d304358 48
6d879107 49#define DRIVER_VERSION "10 Apr 2008"
5d304358
YS
50
51static const char hcd_name[] = "r8a66597_hcd";
52
53/* module parameters */
9424ea29 54#if !defined(CONFIG_SUPERH_ON_CHIP_R8A66597)
5d304358
YS
55static unsigned short clock = XTAL12;
56module_param(clock, ushort, 0644);
e294531d
YS
57MODULE_PARM_DESC(clock, "input clock: 48MHz=32768, 24MHz=16384, 12MHz=0 "
58 "(default=0)");
9424ea29 59#endif
e294531d 60
5d304358
YS
61static unsigned short vif = LDRV;
62module_param(vif, ushort, 0644);
63MODULE_PARM_DESC(vif, "input VIF: 3.3V=32768, 1.5V=0(default=32768)");
e294531d
YS
64
65static unsigned short endian;
5d304358 66module_param(endian, ushort, 0644);
e294531d
YS
67MODULE_PARM_DESC(endian, "data endian: big=256, little=0 (default=0)");
68
27140219 69static unsigned short irq_sense = 0xff;
5d304358 70module_param(irq_sense, ushort, 0644);
e294531d
YS
71MODULE_PARM_DESC(irq_sense, "IRQ sense: low level=32, falling edge=0 "
72 "(default=32)");
5d304358
YS
73
74static void packet_write(struct r8a66597 *r8a66597, u16 pipenum);
75static int r8a66597_get_frame(struct usb_hcd *hcd);
76
77/* this function must be called with interrupt disabled */
78static void enable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum,
79 unsigned long reg)
80{
81 u16 tmp;
82
83 tmp = r8a66597_read(r8a66597, INTENB0);
84 r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
85 r8a66597_bset(r8a66597, 1 << pipenum, reg);
86 r8a66597_write(r8a66597, tmp, INTENB0);
87}
88
89/* this function must be called with interrupt disabled */
90static void disable_pipe_irq(struct r8a66597 *r8a66597, u16 pipenum,
91 unsigned long reg)
92{
93 u16 tmp;
94
95 tmp = r8a66597_read(r8a66597, INTENB0);
96 r8a66597_bclr(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
97 r8a66597_bclr(r8a66597, 1 << pipenum, reg);
98 r8a66597_write(r8a66597, tmp, INTENB0);
99}
100
101static void set_devadd_reg(struct r8a66597 *r8a66597, u8 r8a66597_address,
102 u16 usbspd, u8 upphub, u8 hubport, int port)
103{
104 u16 val;
105 unsigned long devadd_reg = get_devadd_addr(r8a66597_address);
106
107 val = (upphub << 11) | (hubport << 8) | (usbspd << 6) | (port & 0x0001);
108 r8a66597_write(r8a66597, val, devadd_reg);
109}
110
9424ea29 111static int r8a66597_clock_enable(struct r8a66597 *r8a66597)
5d304358
YS
112{
113 u16 tmp;
114 int i = 0;
115
9424ea29
YS
116#if defined(CONFIG_SUPERH_ON_CHIP_R8A66597)
117 do {
118 r8a66597_write(r8a66597, SCKE, SYSCFG0);
119 tmp = r8a66597_read(r8a66597, SYSCFG0);
120 if (i++ > 1000) {
802f389a 121 printk(KERN_ERR "r8a66597: register access fail.\n");
9424ea29
YS
122 return -ENXIO;
123 }
124 } while ((tmp & SCKE) != SCKE);
125 r8a66597_write(r8a66597, 0x04, 0x02);
126#else
5d304358
YS
127 do {
128 r8a66597_write(r8a66597, USBE, SYSCFG0);
129 tmp = r8a66597_read(r8a66597, SYSCFG0);
130 if (i++ > 1000) {
802f389a 131 printk(KERN_ERR "r8a66597: register access fail.\n");
5d304358
YS
132 return -ENXIO;
133 }
134 } while ((tmp & USBE) != USBE);
135 r8a66597_bclr(r8a66597, USBE, SYSCFG0);
136 r8a66597_mdfy(r8a66597, clock, XTAL, SYSCFG0);
137
138 i = 0;
139 r8a66597_bset(r8a66597, XCKE, SYSCFG0);
140 do {
141 msleep(1);
142 tmp = r8a66597_read(r8a66597, SYSCFG0);
143 if (i++ > 500) {
802f389a 144 printk(KERN_ERR "r8a66597: register access fail.\n");
5d304358
YS
145 return -ENXIO;
146 }
147 } while ((tmp & SCKE) != SCKE);
9424ea29
YS
148#endif /* #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) */
149
150 return 0;
151}
152
153static void r8a66597_clock_disable(struct r8a66597 *r8a66597)
154{
155 r8a66597_bclr(r8a66597, SCKE, SYSCFG0);
156 udelay(1);
157#if !defined(CONFIG_SUPERH_ON_CHIP_R8A66597)
158 r8a66597_bclr(r8a66597, PLLC, SYSCFG0);
159 r8a66597_bclr(r8a66597, XCKE, SYSCFG0);
160 r8a66597_bclr(r8a66597, USBE, SYSCFG0);
161#endif
162}
163
164static void r8a66597_enable_port(struct r8a66597 *r8a66597, int port)
165{
166 u16 val;
167
168 val = port ? DRPD : DCFM | DRPD;
169 r8a66597_bset(r8a66597, val, get_syscfg_reg(port));
170 r8a66597_bset(r8a66597, HSE, get_syscfg_reg(port));
171
172 r8a66597_write(r8a66597, BURST | CPU_ADR_RD_WR, get_dmacfg_reg(port));
173 r8a66597_bclr(r8a66597, DTCHE, get_intenb_reg(port));
174 r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port));
175}
176
177static void r8a66597_disable_port(struct r8a66597 *r8a66597, int port)
178{
179 u16 val, tmp;
180
181 r8a66597_write(r8a66597, 0, get_intenb_reg(port));
182 r8a66597_write(r8a66597, 0, get_intsts_reg(port));
5d304358 183
9424ea29
YS
184 r8a66597_port_power(r8a66597, port, 0);
185
186 do {
187 tmp = r8a66597_read(r8a66597, SOFCFG) & EDGESTS;
188 udelay(640);
189 } while (tmp == EDGESTS);
190
191 val = port ? DRPD : DCFM | DRPD;
192 r8a66597_bclr(r8a66597, val, get_syscfg_reg(port));
193 r8a66597_bclr(r8a66597, HSE, get_syscfg_reg(port));
194}
195
196static int enable_controller(struct r8a66597 *r8a66597)
197{
198 int ret, port;
199
200 ret = r8a66597_clock_enable(r8a66597);
201 if (ret < 0)
202 return ret;
5d304358
YS
203
204 r8a66597_bset(r8a66597, vif & LDRV, PINCFG);
5d304358
YS
205 r8a66597_bset(r8a66597, USBE, SYSCFG0);
206
207 r8a66597_bset(r8a66597, BEMPE | NRDYE | BRDYE, INTENB0);
208 r8a66597_bset(r8a66597, irq_sense & INTL, SOFCFG);
209 r8a66597_bset(r8a66597, BRDY0, BRDYENB);
210 r8a66597_bset(r8a66597, BEMP0, BEMPENB);
211
5d304358
YS
212 r8a66597_bset(r8a66597, endian & BIGEND, CFIFOSEL);
213 r8a66597_bset(r8a66597, endian & BIGEND, D0FIFOSEL);
214 r8a66597_bset(r8a66597, endian & BIGEND, D1FIFOSEL);
5d304358
YS
215 r8a66597_bset(r8a66597, TRNENSEL, SOFCFG);
216
217 r8a66597_bset(r8a66597, SIGNE | SACKE, INTENB1);
9424ea29
YS
218
219 for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)
220 r8a66597_enable_port(r8a66597, port);
5d304358
YS
221
222 return 0;
223}
224
225static void disable_controller(struct r8a66597 *r8a66597)
226{
9424ea29 227 int port;
5d304358
YS
228
229 r8a66597_write(r8a66597, 0, INTENB0);
5d304358 230 r8a66597_write(r8a66597, 0, INTSTS0);
5d304358 231
9424ea29
YS
232 for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)
233 r8a66597_disable_port(r8a66597, port);
5d304358 234
9424ea29 235 r8a66597_clock_disable(r8a66597);
5d304358
YS
236}
237
238static int get_parent_r8a66597_address(struct r8a66597 *r8a66597,
239 struct usb_device *udev)
240{
241 struct r8a66597_device *dev;
242
243 if (udev->parent && udev->parent->devnum != 1)
244 udev = udev->parent;
245
246 dev = dev_get_drvdata(&udev->dev);
247 if (dev)
248 return dev->address;
249 else
250 return 0;
251}
252
253static int is_child_device(char *devpath)
254{
255 return (devpath[2] ? 1 : 0);
256}
257
258static int is_hub_limit(char *devpath)
259{
260 return ((strlen(devpath) >= 4) ? 1 : 0);
261}
262
263static void get_port_number(char *devpath, u16 *root_port, u16 *hub_port)
264{
265 if (root_port) {
266 *root_port = (devpath[0] & 0x0F) - 1;
267 if (*root_port >= R8A66597_MAX_ROOT_HUB)
802f389a 268 printk(KERN_ERR "r8a66597: Illegal root port number.\n");
5d304358
YS
269 }
270 if (hub_port)
271 *hub_port = devpath[2] & 0x0F;
272}
273
274static u16 get_r8a66597_usb_speed(enum usb_device_speed speed)
275{
276 u16 usbspd = 0;
277
278 switch (speed) {
279 case USB_SPEED_LOW:
280 usbspd = LSMODE;
281 break;
282 case USB_SPEED_FULL:
283 usbspd = FSMODE;
284 break;
285 case USB_SPEED_HIGH:
286 usbspd = HSMODE;
287 break;
288 default:
802f389a 289 printk(KERN_ERR "r8a66597: unknown speed\n");
5d304358
YS
290 break;
291 }
292
293 return usbspd;
294}
295
296static void set_child_connect_map(struct r8a66597 *r8a66597, int address)
297{
298 int idx;
299
300 idx = address / 32;
301 r8a66597->child_connect_map[idx] |= 1 << (address % 32);
302}
303
304static void put_child_connect_map(struct r8a66597 *r8a66597, int address)
305{
306 int idx;
307
308 idx = address / 32;
309 r8a66597->child_connect_map[idx] &= ~(1 << (address % 32));
310}
311
312static void set_pipe_reg_addr(struct r8a66597_pipe *pipe, u8 dma_ch)
313{
314 u16 pipenum = pipe->info.pipenum;
fe9b9034
ML
315 const unsigned long fifoaddr[] = {D0FIFO, D1FIFO, CFIFO};
316 const unsigned long fifosel[] = {D0FIFOSEL, D1FIFOSEL, CFIFOSEL};
317 const unsigned long fifoctr[] = {D0FIFOCTR, D1FIFOCTR, CFIFOCTR};
5d304358
YS
318
319 if (dma_ch > R8A66597_PIPE_NO_DMA) /* dma fifo not use? */
320 dma_ch = R8A66597_PIPE_NO_DMA;
321
322 pipe->fifoaddr = fifoaddr[dma_ch];
323 pipe->fifosel = fifosel[dma_ch];
324 pipe->fifoctr = fifoctr[dma_ch];
325
326 if (pipenum == 0)
327 pipe->pipectr = DCPCTR;
328 else
329 pipe->pipectr = get_pipectr_addr(pipenum);
330
331 if (check_bulk_or_isoc(pipenum)) {
332 pipe->pipetre = get_pipetre_addr(pipenum);
333 pipe->pipetrn = get_pipetrn_addr(pipenum);
334 } else {
335 pipe->pipetre = 0;
336 pipe->pipetrn = 0;
337 }
338}
339
340static struct r8a66597_device *
341get_urb_to_r8a66597_dev(struct r8a66597 *r8a66597, struct urb *urb)
342{
343 if (usb_pipedevice(urb->pipe) == 0)
344 return &r8a66597->device0;
345
346 return dev_get_drvdata(&urb->dev->dev);
347}
348
349static int make_r8a66597_device(struct r8a66597 *r8a66597,
350 struct urb *urb, u8 addr)
351{
352 struct r8a66597_device *dev;
353 int usb_address = urb->setup_packet[2]; /* urb->pipe is address 0 */
354
e294531d 355 dev = kzalloc(sizeof(struct r8a66597_device), GFP_ATOMIC);
5d304358
YS
356 if (dev == NULL)
357 return -ENOMEM;
358
359 dev_set_drvdata(&urb->dev->dev, dev);
360 dev->udev = urb->dev;
361 dev->address = addr;
362 dev->usb_address = usb_address;
363 dev->state = USB_STATE_ADDRESS;
364 dev->ep_in_toggle = 0;
365 dev->ep_out_toggle = 0;
366 INIT_LIST_HEAD(&dev->device_list);
367 list_add_tail(&dev->device_list, &r8a66597->child_device);
368
369 get_port_number(urb->dev->devpath, &dev->root_port, &dev->hub_port);
370 if (!is_child_device(urb->dev->devpath))
371 r8a66597->root_hub[dev->root_port].dev = dev;
372
373 set_devadd_reg(r8a66597, dev->address,
374 get_r8a66597_usb_speed(urb->dev->speed),
375 get_parent_r8a66597_address(r8a66597, urb->dev),
376 dev->hub_port, dev->root_port);
377
378 return 0;
379}
380
381/* this function must be called with interrupt disabled */
382static u8 alloc_usb_address(struct r8a66597 *r8a66597, struct urb *urb)
383{
384 u8 addr; /* R8A66597's address */
385 struct r8a66597_device *dev;
386
387 if (is_hub_limit(urb->dev->devpath)) {
802f389a 388 dev_err(&urb->dev->dev, "External hub limit reached.\n");
5d304358
YS
389 return 0;
390 }
391
392 dev = get_urb_to_r8a66597_dev(r8a66597, urb);
393 if (dev && dev->state >= USB_STATE_ADDRESS)
394 return dev->address;
395
396 for (addr = 1; addr <= R8A66597_MAX_DEVICE; addr++) {
397 if (r8a66597->address_map & (1 << addr))
398 continue;
399
400 dbg("alloc_address: r8a66597_addr=%d", addr);
401 r8a66597->address_map |= 1 << addr;
402
403 if (make_r8a66597_device(r8a66597, urb, addr) < 0)
404 return 0;
405
406 return addr;
407 }
408
802f389a
GKH
409 dev_err(&urb->dev->dev,
410 "cannot communicate with a USB device more than 10.(%x)\n",
411 r8a66597->address_map);
5d304358
YS
412
413 return 0;
414}
415
416/* this function must be called with interrupt disabled */
417static void free_usb_address(struct r8a66597 *r8a66597,
418 struct r8a66597_device *dev)
419{
420 int port;
421
422 if (!dev)
423 return;
424
425 dbg("free_addr: addr=%d", dev->address);
426
427 dev->state = USB_STATE_DEFAULT;
428 r8a66597->address_map &= ~(1 << dev->address);
429 dev->address = 0;
430 dev_set_drvdata(&dev->udev->dev, NULL);
431 list_del(&dev->device_list);
432 kfree(dev);
433
434 for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++) {
435 if (r8a66597->root_hub[port].dev == dev) {
436 r8a66597->root_hub[port].dev = NULL;
437 break;
438 }
439 }
440}
441
442static void r8a66597_reg_wait(struct r8a66597 *r8a66597, unsigned long reg,
443 u16 mask, u16 loop)
444{
445 u16 tmp;
446 int i = 0;
447
448 do {
449 tmp = r8a66597_read(r8a66597, reg);
450 if (i++ > 1000000) {
802f389a
GKH
451 printk(KERN_ERR "r8a66597: register%lx, loop %x "
452 "is timeout\n", reg, loop);
5d304358
YS
453 break;
454 }
455 ndelay(1);
456 } while ((tmp & mask) != loop);
457}
458
459/* this function must be called with interrupt disabled */
460static void pipe_start(struct r8a66597 *r8a66597, struct r8a66597_pipe *pipe)
461{
462 u16 tmp;
463
464 tmp = r8a66597_read(r8a66597, pipe->pipectr) & PID;
465 if ((pipe->info.pipenum != 0) & ((tmp & PID_STALL) != 0)) /* stall? */
466 r8a66597_mdfy(r8a66597, PID_NAK, PID, pipe->pipectr);
467 r8a66597_mdfy(r8a66597, PID_BUF, PID, pipe->pipectr);
468}
469
470/* this function must be called with interrupt disabled */
471static void pipe_stop(struct r8a66597 *r8a66597, struct r8a66597_pipe *pipe)
472{
473 u16 tmp;
474
475 tmp = r8a66597_read(r8a66597, pipe->pipectr) & PID;
476 if ((tmp & PID_STALL11) != PID_STALL11) /* force stall? */
477 r8a66597_mdfy(r8a66597, PID_STALL, PID, pipe->pipectr);
478 r8a66597_mdfy(r8a66597, PID_NAK, PID, pipe->pipectr);
479 r8a66597_reg_wait(r8a66597, pipe->pipectr, PBUSY, 0);
480}
481
482/* this function must be called with interrupt disabled */
483static void clear_all_buffer(struct r8a66597 *r8a66597,
484 struct r8a66597_pipe *pipe)
485{
486 u16 tmp;
487
488 if (!pipe || pipe->info.pipenum == 0)
489 return;
490
491 pipe_stop(r8a66597, pipe);
492 r8a66597_bset(r8a66597, ACLRM, pipe->pipectr);
493 tmp = r8a66597_read(r8a66597, pipe->pipectr);
494 tmp = r8a66597_read(r8a66597, pipe->pipectr);
495 tmp = r8a66597_read(r8a66597, pipe->pipectr);
496 r8a66597_bclr(r8a66597, ACLRM, pipe->pipectr);
497}
498
499/* this function must be called with interrupt disabled */
500static void r8a66597_pipe_toggle(struct r8a66597 *r8a66597,
501 struct r8a66597_pipe *pipe, int toggle)
502{
503 if (toggle)
504 r8a66597_bset(r8a66597, SQSET, pipe->pipectr);
505 else
506 r8a66597_bset(r8a66597, SQCLR, pipe->pipectr);
507}
508
509/* this function must be called with interrupt disabled */
510static inline void cfifo_change(struct r8a66597 *r8a66597, u16 pipenum)
511{
512 r8a66597_mdfy(r8a66597, MBW | pipenum, MBW | CURPIPE, CFIFOSEL);
513 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, pipenum);
514}
515
516/* this function must be called with interrupt disabled */
517static inline void fifo_change_from_pipe(struct r8a66597 *r8a66597,
518 struct r8a66597_pipe *pipe)
519{
520 cfifo_change(r8a66597, 0);
521 r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D0FIFOSEL);
522 r8a66597_mdfy(r8a66597, MBW | 0, MBW | CURPIPE, D1FIFOSEL);
523
524 r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum, MBW | CURPIPE,
525 pipe->fifosel);
526 r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE, pipe->info.pipenum);
527}
528
529static u16 r8a66597_get_pipenum(struct urb *urb, struct usb_host_endpoint *hep)
530{
531 struct r8a66597_pipe *pipe = hep->hcpriv;
532
533 if (usb_pipeendpoint(urb->pipe) == 0)
534 return 0;
535 else
536 return pipe->info.pipenum;
537}
538
539static u16 get_urb_to_r8a66597_addr(struct r8a66597 *r8a66597, struct urb *urb)
540{
541 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
542
543 return (usb_pipedevice(urb->pipe) == 0) ? 0 : dev->address;
544}
545
546static unsigned short *get_toggle_pointer(struct r8a66597_device *dev,
547 int urb_pipe)
548{
549 if (!dev)
550 return NULL;
551
552 return usb_pipein(urb_pipe) ? &dev->ep_in_toggle : &dev->ep_out_toggle;
553}
554
555/* this function must be called with interrupt disabled */
556static void pipe_toggle_set(struct r8a66597 *r8a66597,
557 struct r8a66597_pipe *pipe,
558 struct urb *urb, int set)
559{
560 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
561 unsigned char endpoint = usb_pipeendpoint(urb->pipe);
562 unsigned short *toggle = get_toggle_pointer(dev, urb->pipe);
563
564 if (!toggle)
565 return;
566
567 if (set)
568 *toggle |= 1 << endpoint;
569 else
570 *toggle &= ~(1 << endpoint);
571}
572
573/* this function must be called with interrupt disabled */
574static void pipe_toggle_save(struct r8a66597 *r8a66597,
575 struct r8a66597_pipe *pipe,
576 struct urb *urb)
577{
578 if (r8a66597_read(r8a66597, pipe->pipectr) & SQMON)
579 pipe_toggle_set(r8a66597, pipe, urb, 1);
580 else
581 pipe_toggle_set(r8a66597, pipe, urb, 0);
582}
583
584/* this function must be called with interrupt disabled */
585static void pipe_toggle_restore(struct r8a66597 *r8a66597,
586 struct r8a66597_pipe *pipe,
587 struct urb *urb)
588{
589 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
590 unsigned char endpoint = usb_pipeendpoint(urb->pipe);
591 unsigned short *toggle = get_toggle_pointer(dev, urb->pipe);
592
f6ace2c9
YS
593 if (!toggle)
594 return;
595
5d304358
YS
596 r8a66597_pipe_toggle(r8a66597, pipe, *toggle & (1 << endpoint));
597}
598
599/* this function must be called with interrupt disabled */
600static void pipe_buffer_setting(struct r8a66597 *r8a66597,
601 struct r8a66597_pipe_info *info)
602{
603 u16 val = 0;
604
605 if (info->pipenum == 0)
606 return;
607
608 r8a66597_bset(r8a66597, ACLRM, get_pipectr_addr(info->pipenum));
609 r8a66597_bclr(r8a66597, ACLRM, get_pipectr_addr(info->pipenum));
610 r8a66597_write(r8a66597, info->pipenum, PIPESEL);
611 if (!info->dir_in)
612 val |= R8A66597_DIR;
613 if (info->type == R8A66597_BULK && info->dir_in)
614 val |= R8A66597_DBLB | R8A66597_SHTNAK;
615 val |= info->type | info->epnum;
616 r8a66597_write(r8a66597, val, PIPECFG);
617
618 r8a66597_write(r8a66597, (info->buf_bsize << 10) | (info->bufnum),
619 PIPEBUF);
620 r8a66597_write(r8a66597, make_devsel(info->address) | info->maxpacket,
621 PIPEMAXP);
5d304358
YS
622 r8a66597_write(r8a66597, info->interval, PIPEPERI);
623}
624
5d304358
YS
625/* this function must be called with interrupt disabled */
626static void pipe_setting(struct r8a66597 *r8a66597, struct r8a66597_td *td)
627{
628 struct r8a66597_pipe_info *info;
629 struct urb *urb = td->urb;
630
631 if (td->pipenum > 0) {
632 info = &td->pipe->info;
633 cfifo_change(r8a66597, 0);
634 pipe_buffer_setting(r8a66597, info);
635
636 if (!usb_gettoggle(urb->dev, usb_pipeendpoint(urb->pipe),
637 usb_pipeout(urb->pipe)) &&
638 !usb_pipecontrol(urb->pipe)) {
639 r8a66597_pipe_toggle(r8a66597, td->pipe, 0);
640 pipe_toggle_set(r8a66597, td->pipe, urb, 0);
641 clear_all_buffer(r8a66597, td->pipe);
642 usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
643 usb_pipeout(urb->pipe), 1);
644 }
645 pipe_toggle_restore(r8a66597, td->pipe, urb);
646 }
647}
648
649/* this function must be called with interrupt disabled */
650static u16 get_empty_pipenum(struct r8a66597 *r8a66597,
651 struct usb_endpoint_descriptor *ep)
652{
653 u16 array[R8A66597_MAX_NUM_PIPE], i = 0, min;
654
655 memset(array, 0, sizeof(array));
e294531d
YS
656 switch (ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
657 case USB_ENDPOINT_XFER_BULK:
5d304358
YS
658 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
659 array[i++] = 4;
660 else {
661 array[i++] = 3;
662 array[i++] = 5;
663 }
e294531d
YS
664 break;
665 case USB_ENDPOINT_XFER_INT:
5d304358
YS
666 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK) {
667 array[i++] = 6;
668 array[i++] = 7;
669 array[i++] = 8;
670 } else
671 array[i++] = 9;
e294531d
YS
672 break;
673 case USB_ENDPOINT_XFER_ISOC:
5d304358
YS
674 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
675 array[i++] = 2;
676 else
677 array[i++] = 1;
e294531d
YS
678 break;
679 default:
802f389a 680 printk(KERN_ERR "r8a66597: Illegal type\n");
e294531d
YS
681 return 0;
682 }
5d304358
YS
683
684 i = 1;
685 min = array[0];
686 while (array[i] != 0) {
687 if (r8a66597->pipe_cnt[min] > r8a66597->pipe_cnt[array[i]])
688 min = array[i];
689 i++;
690 }
691
692 return min;
693}
694
695static u16 get_r8a66597_type(__u8 type)
696{
697 u16 r8a66597_type;
698
e294531d 699 switch (type) {
5d304358
YS
700 case USB_ENDPOINT_XFER_BULK:
701 r8a66597_type = R8A66597_BULK;
702 break;
703 case USB_ENDPOINT_XFER_INT:
704 r8a66597_type = R8A66597_INT;
705 break;
706 case USB_ENDPOINT_XFER_ISOC:
707 r8a66597_type = R8A66597_ISO;
708 break;
709 default:
802f389a 710 printk(KERN_ERR "r8a66597: Illegal type\n");
5d304358
YS
711 r8a66597_type = 0x0000;
712 break;
713 }
714
715 return r8a66597_type;
716}
717
718static u16 get_bufnum(u16 pipenum)
719{
720 u16 bufnum = 0;
721
722 if (pipenum == 0)
723 bufnum = 0;
724 else if (check_bulk_or_isoc(pipenum))
725 bufnum = 8 + (pipenum - 1) * R8A66597_BUF_BSIZE*2;
726 else if (check_interrupt(pipenum))
727 bufnum = 4 + (pipenum - 6);
728 else
802f389a 729 printk(KERN_ERR "r8a66597: Illegal pipenum (%d)\n", pipenum);
5d304358
YS
730
731 return bufnum;
732}
733
734static u16 get_buf_bsize(u16 pipenum)
735{
736 u16 buf_bsize = 0;
737
738 if (pipenum == 0)
739 buf_bsize = 3;
740 else if (check_bulk_or_isoc(pipenum))
741 buf_bsize = R8A66597_BUF_BSIZE - 1;
742 else if (check_interrupt(pipenum))
743 buf_bsize = 0;
744 else
802f389a 745 printk(KERN_ERR "r8a66597: Illegal pipenum (%d)\n", pipenum);
5d304358
YS
746
747 return buf_bsize;
748}
749
750/* this function must be called with interrupt disabled */
751static void enable_r8a66597_pipe_dma(struct r8a66597 *r8a66597,
752 struct r8a66597_device *dev,
753 struct r8a66597_pipe *pipe,
754 struct urb *urb)
755{
9424ea29 756#if !defined(CONFIG_SUPERH_ON_CHIP_R8A66597)
5d304358
YS
757 int i;
758 struct r8a66597_pipe_info *info = &pipe->info;
759
760 if ((pipe->info.pipenum != 0) && (info->type != R8A66597_INT)) {
761 for (i = 0; i < R8A66597_MAX_DMA_CHANNEL; i++) {
762 if ((r8a66597->dma_map & (1 << i)) != 0)
763 continue;
764
5909f6ea
GKH
765 dev_info(&dev->udev->dev,
766 "address %d, EndpointAddress 0x%02x use "
767 "DMA FIFO\n", usb_pipedevice(urb->pipe),
768 info->dir_in ?
769 USB_ENDPOINT_DIR_MASK + info->epnum
770 : info->epnum);
5d304358
YS
771
772 r8a66597->dma_map |= 1 << i;
773 dev->dma_map |= 1 << i;
774 set_pipe_reg_addr(pipe, i);
775
776 cfifo_change(r8a66597, 0);
777 r8a66597_mdfy(r8a66597, MBW | pipe->info.pipenum,
778 MBW | CURPIPE, pipe->fifosel);
779
780 r8a66597_reg_wait(r8a66597, pipe->fifosel, CURPIPE,
781 pipe->info.pipenum);
782 r8a66597_bset(r8a66597, BCLR, pipe->fifoctr);
783 break;
784 }
785 }
9424ea29 786#endif /* #if defined(CONFIG_SUPERH_ON_CHIP_R8A66597) */
5d304358
YS
787}
788
789/* this function must be called with interrupt disabled */
790static void enable_r8a66597_pipe(struct r8a66597 *r8a66597, struct urb *urb,
791 struct usb_host_endpoint *hep,
792 struct r8a66597_pipe_info *info)
793{
794 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
795 struct r8a66597_pipe *pipe = hep->hcpriv;
796
797 dbg("enable_pipe:");
798
799 pipe->info = *info;
800 set_pipe_reg_addr(pipe, R8A66597_PIPE_NO_DMA);
801 r8a66597->pipe_cnt[pipe->info.pipenum]++;
802 dev->pipe_cnt[pipe->info.pipenum]++;
803
804 enable_r8a66597_pipe_dma(r8a66597, dev, pipe, urb);
805}
806
807/* this function must be called with interrupt disabled */
808static void force_dequeue(struct r8a66597 *r8a66597, u16 pipenum, u16 address)
809{
810 struct r8a66597_td *td, *next;
811 struct urb *urb;
812 struct list_head *list = &r8a66597->pipe_queue[pipenum];
813
814 if (list_empty(list))
815 return;
816
817 list_for_each_entry_safe(td, next, list, queue) {
818 if (!td)
819 continue;
820 if (td->address != address)
821 continue;
822
823 urb = td->urb;
824 list_del(&td->queue);
825 kfree(td);
826
827 if (urb) {
e9df41c5
AS
828 usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597),
829 urb);
830
5d304358 831 spin_unlock(&r8a66597->lock);
4a00027d
AS
832 usb_hcd_giveback_urb(r8a66597_to_hcd(r8a66597), urb,
833 -ENODEV);
5d304358
YS
834 spin_lock(&r8a66597->lock);
835 }
836 break;
837 }
838}
839
840/* this function must be called with interrupt disabled */
841static void disable_r8a66597_pipe_all(struct r8a66597 *r8a66597,
842 struct r8a66597_device *dev)
843{
844 int check_ep0 = 0;
845 u16 pipenum;
846
847 if (!dev)
848 return;
849
850 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
851 if (!dev->pipe_cnt[pipenum])
852 continue;
853
854 if (!check_ep0) {
855 check_ep0 = 1;
856 force_dequeue(r8a66597, 0, dev->address);
857 }
858
859 r8a66597->pipe_cnt[pipenum] -= dev->pipe_cnt[pipenum];
860 dev->pipe_cnt[pipenum] = 0;
861 force_dequeue(r8a66597, pipenum, dev->address);
862 }
863
864 dbg("disable_pipe");
865
866 r8a66597->dma_map &= ~(dev->dma_map);
867 dev->dma_map = 0;
868}
869
397f519a
YS
870static u16 get_interval(struct urb *urb, __u8 interval)
871{
872 u16 time = 1;
873 int i;
874
875 if (urb->dev->speed == USB_SPEED_HIGH) {
876 if (interval > IITV)
877 time = IITV;
878 else
879 time = interval ? interval - 1 : 0;
880 } else {
881 if (interval > 128) {
882 time = IITV;
883 } else {
884 /* calculate the nearest value for PIPEPERI */
885 for (i = 0; i < 7; i++) {
886 if ((1 << i) < interval &&
887 (1 << (i + 1) > interval))
888 time = 1 << i;
889 }
890 }
891 }
892
893 return time;
894}
895
6d879107
YS
896static unsigned long get_timer_interval(struct urb *urb, __u8 interval)
897{
898 __u8 i;
899 unsigned long time = 1;
900
901 if (usb_pipeisoc(urb->pipe))
902 return 0;
903
904 if (get_r8a66597_usb_speed(urb->dev->speed) == HSMODE) {
905 for (i = 0; i < (interval - 1); i++)
906 time *= 2;
907 time = time * 125 / 1000; /* uSOF -> msec */
908 } else {
909 time = interval;
910 }
911
912 return time;
913}
914
5d304358
YS
915/* this function must be called with interrupt disabled */
916static void init_pipe_info(struct r8a66597 *r8a66597, struct urb *urb,
917 struct usb_host_endpoint *hep,
918 struct usb_endpoint_descriptor *ep)
919{
920 struct r8a66597_pipe_info info;
921
922 info.pipenum = get_empty_pipenum(r8a66597, ep);
923 info.address = get_urb_to_r8a66597_addr(r8a66597, urb);
924 info.epnum = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
05eac910 925 info.maxpacket = le16_to_cpu(ep->wMaxPacketSize);
5d304358
YS
926 info.type = get_r8a66597_type(ep->bmAttributes
927 & USB_ENDPOINT_XFERTYPE_MASK);
928 info.bufnum = get_bufnum(info.pipenum);
929 info.buf_bsize = get_buf_bsize(info.pipenum);
6d879107
YS
930 if (info.type == R8A66597_BULK) {
931 info.interval = 0;
932 info.timer_interval = 0;
933 } else {
397f519a 934 info.interval = get_interval(urb, ep->bInterval);
6d879107
YS
935 info.timer_interval = get_timer_interval(urb, ep->bInterval);
936 }
5d304358
YS
937 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
938 info.dir_in = 1;
939 else
940 info.dir_in = 0;
941
942 enable_r8a66597_pipe(r8a66597, urb, hep, &info);
943}
944
945static void init_pipe_config(struct r8a66597 *r8a66597, struct urb *urb)
946{
947 struct r8a66597_device *dev;
948
949 dev = get_urb_to_r8a66597_dev(r8a66597, urb);
950 dev->state = USB_STATE_CONFIGURED;
951}
952
953static void pipe_irq_enable(struct r8a66597 *r8a66597, struct urb *urb,
954 u16 pipenum)
955{
956 if (pipenum == 0 && usb_pipeout(urb->pipe))
957 enable_irq_empty(r8a66597, pipenum);
958 else
959 enable_irq_ready(r8a66597, pipenum);
960
961 if (!usb_pipeisoc(urb->pipe))
962 enable_irq_nrdy(r8a66597, pipenum);
963}
964
965static void pipe_irq_disable(struct r8a66597 *r8a66597, u16 pipenum)
966{
967 disable_irq_ready(r8a66597, pipenum);
968 disable_irq_nrdy(r8a66597, pipenum);
969}
970
54d0be9e
YS
971static void r8a66597_root_hub_start_polling(struct r8a66597 *r8a66597)
972{
973 mod_timer(&r8a66597->rh_timer,
974 jiffies + msecs_to_jiffies(R8A66597_RH_POLL_TIME));
975}
976
977static void start_root_hub_sampling(struct r8a66597 *r8a66597, int port,
978 int connect)
979{
980 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
981
982 rh->old_syssts = r8a66597_read(r8a66597, get_syssts_reg(port)) & LNST;
983 rh->scount = R8A66597_MAX_SAMPLING;
984 if (connect)
985 rh->port |= 1 << USB_PORT_FEAT_CONNECTION;
986 else
987 rh->port &= ~(1 << USB_PORT_FEAT_CONNECTION);
988 rh->port |= 1 << USB_PORT_FEAT_C_CONNECTION;
989
990 r8a66597_root_hub_start_polling(r8a66597);
991}
992
5d304358 993/* this function must be called with interrupt disabled */
29fab0cd
YS
994static void r8a66597_check_syssts(struct r8a66597 *r8a66597, int port,
995 u16 syssts)
5d304358 996{
29fab0cd 997 if (syssts == SE0) {
54d0be9e 998 r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port));
29fab0cd
YS
999 r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port));
1000 return;
1001 }
1002
1003 if (syssts == FS_JSTS)
1004 r8a66597_bset(r8a66597, HSE, get_syscfg_reg(port));
1005 else if (syssts == LS_JSTS)
1006 r8a66597_bclr(r8a66597, HSE, get_syscfg_reg(port));
1007
e294531d 1008 r8a66597_write(r8a66597, ~DTCH, get_intsts_reg(port));
5d304358
YS
1009 r8a66597_bset(r8a66597, DTCHE, get_intenb_reg(port));
1010}
1011
1012/* this function must be called with interrupt disabled */
1013static void r8a66597_usb_connect(struct r8a66597 *r8a66597, int port)
1014{
1015 u16 speed = get_rh_usb_speed(r8a66597, port);
1016 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
1017
1018 if (speed == HSMODE)
1019 rh->port |= (1 << USB_PORT_FEAT_HIGHSPEED);
1020 else if (speed == LSMODE)
1021 rh->port |= (1 << USB_PORT_FEAT_LOWSPEED);
1022
1023 rh->port &= ~(1 << USB_PORT_FEAT_RESET);
1024 rh->port |= 1 << USB_PORT_FEAT_ENABLE;
1025}
1026
1027/* this function must be called with interrupt disabled */
1028static void r8a66597_usb_disconnect(struct r8a66597 *r8a66597, int port)
1029{
1030 struct r8a66597_device *dev = r8a66597->root_hub[port].dev;
1031
5d304358
YS
1032 disable_r8a66597_pipe_all(r8a66597, dev);
1033 free_usb_address(r8a66597, dev);
1034
54d0be9e 1035 start_root_hub_sampling(r8a66597, port, 0);
5d304358
YS
1036}
1037
1038/* this function must be called with interrupt disabled */
1039static void prepare_setup_packet(struct r8a66597 *r8a66597,
1040 struct r8a66597_td *td)
1041{
1042 int i;
fd05e720 1043 __le16 *p = (__le16 *)td->urb->setup_packet;
5d304358
YS
1044 unsigned long setup_addr = USBREQ;
1045
1046 r8a66597_write(r8a66597, make_devsel(td->address) | td->maxpacket,
1047 DCPMAXP);
e294531d 1048 r8a66597_write(r8a66597, ~(SIGN | SACK), INTSTS1);
5d304358
YS
1049
1050 for (i = 0; i < 4; i++) {
fd05e720 1051 r8a66597_write(r8a66597, le16_to_cpu(p[i]), setup_addr);
5d304358
YS
1052 setup_addr += 2;
1053 }
1054 r8a66597_write(r8a66597, SUREQ, DCPCTR);
1055}
1056
1057/* this function must be called with interrupt disabled */
1058static void prepare_packet_read(struct r8a66597 *r8a66597,
1059 struct r8a66597_td *td)
1060{
1061 struct urb *urb = td->urb;
1062
1063 if (usb_pipecontrol(urb->pipe)) {
1064 r8a66597_bclr(r8a66597, R8A66597_DIR, DCPCFG);
1065 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
1066 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
1067 if (urb->actual_length == 0) {
1068 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
1069 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
1070 }
1071 pipe_irq_disable(r8a66597, td->pipenum);
1072 pipe_start(r8a66597, td->pipe);
1073 pipe_irq_enable(r8a66597, urb, td->pipenum);
1074 } else {
1075 if (urb->actual_length == 0) {
1076 pipe_irq_disable(r8a66597, td->pipenum);
1077 pipe_setting(r8a66597, td);
1078 pipe_stop(r8a66597, td->pipe);
e294531d 1079 r8a66597_write(r8a66597, ~(1 << td->pipenum), BRDYSTS);
5d304358
YS
1080
1081 if (td->pipe->pipetre) {
1082 r8a66597_write(r8a66597, TRCLR,
e294531d 1083 td->pipe->pipetre);
5d304358 1084 r8a66597_write(r8a66597,
dfa5ec79
JL
1085 DIV_ROUND_UP
1086 (urb->transfer_buffer_length,
1087 td->maxpacket),
e294531d 1088 td->pipe->pipetrn);
5d304358 1089 r8a66597_bset(r8a66597, TRENB,
e294531d 1090 td->pipe->pipetre);
5d304358
YS
1091 }
1092
1093 pipe_start(r8a66597, td->pipe);
1094 pipe_irq_enable(r8a66597, urb, td->pipenum);
1095 }
1096 }
1097}
1098
1099/* this function must be called with interrupt disabled */
1100static void prepare_packet_write(struct r8a66597 *r8a66597,
1101 struct r8a66597_td *td)
1102{
1103 u16 tmp;
1104 struct urb *urb = td->urb;
1105
1106 if (usb_pipecontrol(urb->pipe)) {
1107 pipe_stop(r8a66597, td->pipe);
1108 r8a66597_bset(r8a66597, R8A66597_DIR, DCPCFG);
1109 r8a66597_mdfy(r8a66597, ISEL, ISEL | CURPIPE, CFIFOSEL);
1110 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
1111 if (urb->actual_length == 0) {
1112 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
1113 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
1114 }
1115 } else {
1116 if (urb->actual_length == 0)
1117 pipe_setting(r8a66597, td);
1118 if (td->pipe->pipetre)
1119 r8a66597_bclr(r8a66597, TRENB, td->pipe->pipetre);
1120 }
e294531d 1121 r8a66597_write(r8a66597, ~(1 << td->pipenum), BRDYSTS);
5d304358
YS
1122
1123 fifo_change_from_pipe(r8a66597, td->pipe);
1124 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1125 if (unlikely((tmp & FRDY) == 0))
1126 pipe_irq_enable(r8a66597, urb, td->pipenum);
1127 else
1128 packet_write(r8a66597, td->pipenum);
1129 pipe_start(r8a66597, td->pipe);
1130}
1131
1132/* this function must be called with interrupt disabled */
1133static void prepare_status_packet(struct r8a66597 *r8a66597,
1134 struct r8a66597_td *td)
1135{
1136 struct urb *urb = td->urb;
1137
1138 r8a66597_pipe_toggle(r8a66597, td->pipe, 1);
e294531d 1139 pipe_stop(r8a66597, td->pipe);
5d304358
YS
1140
1141 if (urb->setup_packet[0] & USB_ENDPOINT_DIR_MASK) {
1142 r8a66597_bset(r8a66597, R8A66597_DIR, DCPCFG);
1143 r8a66597_mdfy(r8a66597, ISEL, ISEL | CURPIPE, CFIFOSEL);
1144 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
e294531d 1145 r8a66597_write(r8a66597, ~BEMP0, BEMPSTS);
9424ea29 1146 r8a66597_write(r8a66597, BCLR | BVAL, CFIFOCTR);
5d304358
YS
1147 enable_irq_empty(r8a66597, 0);
1148 } else {
1149 r8a66597_bclr(r8a66597, R8A66597_DIR, DCPCFG);
1150 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
1151 r8a66597_reg_wait(r8a66597, CFIFOSEL, CURPIPE, 0);
1152 r8a66597_write(r8a66597, BCLR, CFIFOCTR);
5d304358
YS
1153 enable_irq_ready(r8a66597, 0);
1154 }
1155 enable_irq_nrdy(r8a66597, 0);
1156 pipe_start(r8a66597, td->pipe);
1157}
1158
e3a09051
YS
1159static int is_set_address(unsigned char *setup_packet)
1160{
1161 if (((setup_packet[0] & USB_TYPE_MASK) == USB_TYPE_STANDARD) &&
1162 setup_packet[1] == USB_REQ_SET_ADDRESS)
1163 return 1;
1164 else
1165 return 0;
1166}
1167
5d304358
YS
1168/* this function must be called with interrupt disabled */
1169static int start_transfer(struct r8a66597 *r8a66597, struct r8a66597_td *td)
1170{
1171 BUG_ON(!td);
1172
1173 switch (td->type) {
1174 case USB_PID_SETUP:
e3a09051 1175 if (is_set_address(td->urb->setup_packet)) {
5d304358
YS
1176 td->set_address = 1;
1177 td->urb->setup_packet[2] = alloc_usb_address(r8a66597,
1178 td->urb);
1179 if (td->urb->setup_packet[2] == 0)
1180 return -EPIPE;
1181 }
1182 prepare_setup_packet(r8a66597, td);
1183 break;
1184 case USB_PID_IN:
1185 prepare_packet_read(r8a66597, td);
1186 break;
1187 case USB_PID_OUT:
1188 prepare_packet_write(r8a66597, td);
1189 break;
1190 case USB_PID_ACK:
1191 prepare_status_packet(r8a66597, td);
1192 break;
1193 default:
802f389a 1194 printk(KERN_ERR "r8a66597: invalid type.\n");
5d304358
YS
1195 break;
1196 }
1197
1198 return 0;
1199}
1200
1201static int check_transfer_finish(struct r8a66597_td *td, struct urb *urb)
1202{
1203 if (usb_pipeisoc(urb->pipe)) {
1204 if (urb->number_of_packets == td->iso_cnt)
1205 return 1;
1206 }
1207
1208 /* control or bulk or interrupt */
1209 if ((urb->transfer_buffer_length <= urb->actual_length) ||
1210 (td->short_packet) || (td->zero_packet))
1211 return 1;
1212
1213 return 0;
1214}
1215
1216/* this function must be called with interrupt disabled */
1217static void set_td_timer(struct r8a66597 *r8a66597, struct r8a66597_td *td)
1218{
1219 unsigned long time;
1220
1221 BUG_ON(!td);
1222
1223 if (!list_empty(&r8a66597->pipe_queue[td->pipenum]) &&
1224 !usb_pipecontrol(td->urb->pipe) && usb_pipein(td->urb->pipe)) {
1225 r8a66597->timeout_map |= 1 << td->pipenum;
1226 switch (usb_pipetype(td->urb->pipe)) {
1227 case PIPE_INTERRUPT:
1228 case PIPE_ISOCHRONOUS:
1229 time = 30;
1230 break;
1231 default:
1232 time = 300;
1233 break;
1234 }
1235
1236 mod_timer(&r8a66597->td_timer[td->pipenum],
1237 jiffies + msecs_to_jiffies(time));
1238 }
1239}
1240
1241/* this function must be called with interrupt disabled */
dfd1e537 1242static void finish_request(struct r8a66597 *r8a66597, struct r8a66597_td *td,
888fda47 1243 u16 pipenum, struct urb *urb, int status)
dfd1e537 1244__releases(r8a66597->lock) __acquires(r8a66597->lock)
5d304358
YS
1245{
1246 int restart = 0;
1247 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
1248
1249 r8a66597->timeout_map &= ~(1 << pipenum);
1250
1251 if (likely(td)) {
888fda47 1252 if (td->set_address && (status != 0 || urb->unlinked))
5d304358
YS
1253 r8a66597->address_map &= ~(1 << urb->setup_packet[2]);
1254
1255 pipe_toggle_save(r8a66597, td->pipe, urb);
1256 list_del(&td->queue);
1257 kfree(td);
1258 }
1259
1260 if (!list_empty(&r8a66597->pipe_queue[pipenum]))
1261 restart = 1;
1262
1263 if (likely(urb)) {
1264 if (usb_pipeisoc(urb->pipe))
1265 urb->start_frame = r8a66597_get_frame(hcd);
1266
e9df41c5 1267 usb_hcd_unlink_urb_from_ep(r8a66597_to_hcd(r8a66597), urb);
5d304358 1268 spin_unlock(&r8a66597->lock);
4a00027d 1269 usb_hcd_giveback_urb(hcd, urb, status);
5d304358
YS
1270 spin_lock(&r8a66597->lock);
1271 }
1272
1273 if (restart) {
1274 td = r8a66597_get_td(r8a66597, pipenum);
1275 if (unlikely(!td))
1276 return;
1277
1278 start_transfer(r8a66597, td);
1279 set_td_timer(r8a66597, td);
1280 }
1281}
1282
5d304358
YS
1283static void packet_read(struct r8a66597 *r8a66597, u16 pipenum)
1284{
1285 u16 tmp;
1286 int rcv_len, bufsize, urb_len, size;
1287 u16 *buf;
1288 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1289 struct urb *urb;
1290 int finish = 0;
dfd1e537 1291 int status = 0;
5d304358
YS
1292
1293 if (unlikely(!td))
1294 return;
1295 urb = td->urb;
1296
1297 fifo_change_from_pipe(r8a66597, td->pipe);
1298 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1299 if (unlikely((tmp & FRDY) == 0)) {
5d304358
YS
1300 pipe_stop(r8a66597, td->pipe);
1301 pipe_irq_disable(r8a66597, pipenum);
802f389a 1302 printk(KERN_ERR "r8a66597: in fifo not ready (%d)\n", pipenum);
888fda47 1303 finish_request(r8a66597, td, pipenum, td->urb, -EPIPE);
5d304358
YS
1304 return;
1305 }
1306
1307 /* prepare parameters */
1308 rcv_len = tmp & DTLN;
5d304358
YS
1309 if (usb_pipeisoc(urb->pipe)) {
1310 buf = (u16 *)(urb->transfer_buffer +
1311 urb->iso_frame_desc[td->iso_cnt].offset);
1312 urb_len = urb->iso_frame_desc[td->iso_cnt].length;
1313 } else {
1314 buf = (void *)urb->transfer_buffer + urb->actual_length;
1315 urb_len = urb->transfer_buffer_length - urb->actual_length;
1316 }
dfd1e537
AS
1317 bufsize = min(urb_len, (int) td->maxpacket);
1318 if (rcv_len <= bufsize) {
1319 size = rcv_len;
1320 } else {
1321 size = bufsize;
1322 status = -EOVERFLOW;
1323 finish = 1;
1324 }
5d304358
YS
1325
1326 /* update parameters */
1327 urb->actual_length += size;
1328 if (rcv_len == 0)
1329 td->zero_packet = 1;
dfd1e537 1330 if (rcv_len < bufsize) {
5d304358 1331 td->short_packet = 1;
5d304358
YS
1332 }
1333 if (usb_pipeisoc(urb->pipe)) {
1334 urb->iso_frame_desc[td->iso_cnt].actual_length = size;
dfd1e537 1335 urb->iso_frame_desc[td->iso_cnt].status = status;
5d304358 1336 td->iso_cnt++;
dfd1e537 1337 finish = 0;
5d304358
YS
1338 }
1339
1340 /* check transfer finish */
b0d9efba 1341 if (finish || check_transfer_finish(td, urb)) {
5d304358
YS
1342 pipe_stop(r8a66597, td->pipe);
1343 pipe_irq_disable(r8a66597, pipenum);
1344 finish = 1;
1345 }
1346
1347 /* read fifo */
1348 if (urb->transfer_buffer) {
1349 if (size == 0)
1350 r8a66597_write(r8a66597, BCLR, td->pipe->fifoctr);
1351 else
1352 r8a66597_read_fifo(r8a66597, td->pipe->fifoaddr,
1353 buf, size);
1354 }
1355
888fda47
AS
1356 if (finish && pipenum != 0)
1357 finish_request(r8a66597, td, pipenum, urb, status);
5d304358
YS
1358}
1359
1360static void packet_write(struct r8a66597 *r8a66597, u16 pipenum)
1361{
1362 u16 tmp;
1363 int bufsize, size;
1364 u16 *buf;
1365 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1366 struct urb *urb;
1367
1368 if (unlikely(!td))
1369 return;
1370 urb = td->urb;
1371
1372 fifo_change_from_pipe(r8a66597, td->pipe);
1373 tmp = r8a66597_read(r8a66597, td->pipe->fifoctr);
1374 if (unlikely((tmp & FRDY) == 0)) {
5d304358
YS
1375 pipe_stop(r8a66597, td->pipe);
1376 pipe_irq_disable(r8a66597, pipenum);
802f389a 1377 printk(KERN_ERR "r8a66597: out fifo not ready (%d)\n", pipenum);
888fda47 1378 finish_request(r8a66597, td, pipenum, urb, -EPIPE);
5d304358
YS
1379 return;
1380 }
1381
1382 /* prepare parameters */
1383 bufsize = td->maxpacket;
1384 if (usb_pipeisoc(urb->pipe)) {
1385 buf = (u16 *)(urb->transfer_buffer +
1386 urb->iso_frame_desc[td->iso_cnt].offset);
1387 size = min(bufsize,
1388 (int)urb->iso_frame_desc[td->iso_cnt].length);
1389 } else {
1390 buf = (u16 *)(urb->transfer_buffer + urb->actual_length);
1391 size = min((int)bufsize,
1392 urb->transfer_buffer_length - urb->actual_length);
1393 }
1394
1395 /* write fifo */
1396 if (pipenum > 0)
e294531d 1397 r8a66597_write(r8a66597, ~(1 << pipenum), BEMPSTS);
5d304358
YS
1398 if (urb->transfer_buffer) {
1399 r8a66597_write_fifo(r8a66597, td->pipe->fifoaddr, buf, size);
1400 if (!usb_pipebulk(urb->pipe) || td->maxpacket != size)
1401 r8a66597_write(r8a66597, BVAL, td->pipe->fifoctr);
1402 }
1403
1404 /* update parameters */
1405 urb->actual_length += size;
1406 if (usb_pipeisoc(urb->pipe)) {
1407 urb->iso_frame_desc[td->iso_cnt].actual_length = size;
1408 urb->iso_frame_desc[td->iso_cnt].status = 0;
1409 td->iso_cnt++;
1410 }
1411
1412 /* check transfer finish */
1413 if (check_transfer_finish(td, urb)) {
1414 disable_irq_ready(r8a66597, pipenum);
1415 enable_irq_empty(r8a66597, pipenum);
1416 if (!usb_pipeisoc(urb->pipe))
1417 enable_irq_nrdy(r8a66597, pipenum);
1418 } else
1419 pipe_irq_enable(r8a66597, urb, pipenum);
1420}
1421
1422
888fda47 1423static void check_next_phase(struct r8a66597 *r8a66597, int status)
5d304358
YS
1424{
1425 struct r8a66597_td *td = r8a66597_get_td(r8a66597, 0);
1426 struct urb *urb;
1427 u8 finish = 0;
1428
1429 if (unlikely(!td))
1430 return;
1431 urb = td->urb;
1432
1433 switch (td->type) {
1434 case USB_PID_IN:
1435 case USB_PID_OUT:
5d304358
YS
1436 if (check_transfer_finish(td, urb))
1437 td->type = USB_PID_ACK;
1438 break;
1439 case USB_PID_SETUP:
eb231054 1440 if (urb->transfer_buffer_length == urb->actual_length)
5d304358 1441 td->type = USB_PID_ACK;
eb231054 1442 else if (usb_pipeout(urb->pipe))
5d304358
YS
1443 td->type = USB_PID_OUT;
1444 else
1445 td->type = USB_PID_IN;
1446 break;
1447 case USB_PID_ACK:
1448 finish = 1;
5d304358
YS
1449 break;
1450 }
1451
888fda47
AS
1452 if (finish || status != 0 || urb->unlinked)
1453 finish_request(r8a66597, td, 0, urb, status);
5d304358
YS
1454 else
1455 start_transfer(r8a66597, td);
1456}
1457
888fda47 1458static int get_urb_error(struct r8a66597 *r8a66597, u16 pipenum)
5d304358
YS
1459{
1460 struct r8a66597_td *td = r8a66597_get_td(r8a66597, pipenum);
1461
888fda47 1462 if (td) {
5d304358
YS
1463 u16 pid = r8a66597_read(r8a66597, td->pipe->pipectr) & PID;
1464
1465 if (pid == PID_NAK)
888fda47 1466 return -ECONNRESET;
5d304358 1467 else
888fda47 1468 return -EPIPE;
5d304358 1469 }
888fda47 1470 return 0;
5d304358
YS
1471}
1472
1473static void irq_pipe_ready(struct r8a66597 *r8a66597)
1474{
1475 u16 check;
1476 u16 pipenum;
1477 u16 mask;
1478 struct r8a66597_td *td;
1479
1480 mask = r8a66597_read(r8a66597, BRDYSTS)
1481 & r8a66597_read(r8a66597, BRDYENB);
e294531d 1482 r8a66597_write(r8a66597, ~mask, BRDYSTS);
5d304358
YS
1483 if (mask & BRDY0) {
1484 td = r8a66597_get_td(r8a66597, 0);
1485 if (td && td->type == USB_PID_IN)
1486 packet_read(r8a66597, 0);
1487 else
1488 pipe_irq_disable(r8a66597, 0);
888fda47 1489 check_next_phase(r8a66597, 0);
5d304358
YS
1490 }
1491
1492 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1493 check = 1 << pipenum;
1494 if (mask & check) {
1495 td = r8a66597_get_td(r8a66597, pipenum);
1496 if (unlikely(!td))
1497 continue;
1498
1499 if (td->type == USB_PID_IN)
1500 packet_read(r8a66597, pipenum);
1501 else if (td->type == USB_PID_OUT)
1502 packet_write(r8a66597, pipenum);
1503 }
1504 }
1505}
1506
1507static void irq_pipe_empty(struct r8a66597 *r8a66597)
1508{
1509 u16 tmp;
1510 u16 check;
1511 u16 pipenum;
1512 u16 mask;
1513 struct r8a66597_td *td;
1514
1515 mask = r8a66597_read(r8a66597, BEMPSTS)
1516 & r8a66597_read(r8a66597, BEMPENB);
e294531d 1517 r8a66597_write(r8a66597, ~mask, BEMPSTS);
5d304358
YS
1518 if (mask & BEMP0) {
1519 cfifo_change(r8a66597, 0);
1520 td = r8a66597_get_td(r8a66597, 0);
1521 if (td && td->type != USB_PID_OUT)
1522 disable_irq_empty(r8a66597, 0);
888fda47 1523 check_next_phase(r8a66597, 0);
5d304358
YS
1524 }
1525
1526 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1527 check = 1 << pipenum;
1528 if (mask & check) {
1529 struct r8a66597_td *td;
1530 td = r8a66597_get_td(r8a66597, pipenum);
1531 if (unlikely(!td))
1532 continue;
1533
1534 tmp = r8a66597_read(r8a66597, td->pipe->pipectr);
1535 if ((tmp & INBUFM) == 0) {
1536 disable_irq_empty(r8a66597, pipenum);
1537 pipe_irq_disable(r8a66597, pipenum);
888fda47
AS
1538 finish_request(r8a66597, td, pipenum, td->urb,
1539 0);
5d304358
YS
1540 }
1541 }
1542 }
1543}
1544
1545static void irq_pipe_nrdy(struct r8a66597 *r8a66597)
1546{
1547 u16 check;
1548 u16 pipenum;
1549 u16 mask;
888fda47 1550 int status;
5d304358
YS
1551
1552 mask = r8a66597_read(r8a66597, NRDYSTS)
1553 & r8a66597_read(r8a66597, NRDYENB);
e294531d 1554 r8a66597_write(r8a66597, ~mask, NRDYSTS);
5d304358
YS
1555 if (mask & NRDY0) {
1556 cfifo_change(r8a66597, 0);
888fda47 1557 status = get_urb_error(r8a66597, 0);
5d304358 1558 pipe_irq_disable(r8a66597, 0);
888fda47 1559 check_next_phase(r8a66597, status);
5d304358
YS
1560 }
1561
1562 for (pipenum = 1; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1563 check = 1 << pipenum;
1564 if (mask & check) {
1565 struct r8a66597_td *td;
1566 td = r8a66597_get_td(r8a66597, pipenum);
1567 if (unlikely(!td))
1568 continue;
1569
888fda47 1570 status = get_urb_error(r8a66597, pipenum);
5d304358
YS
1571 pipe_irq_disable(r8a66597, pipenum);
1572 pipe_stop(r8a66597, td->pipe);
888fda47 1573 finish_request(r8a66597, td, pipenum, td->urb, status);
5d304358
YS
1574 }
1575 }
1576}
1577
5d304358
YS
1578static irqreturn_t r8a66597_irq(struct usb_hcd *hcd)
1579{
1580 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1581 u16 intsts0, intsts1, intsts2;
1582 u16 intenb0, intenb1, intenb2;
1583 u16 mask0, mask1, mask2;
888fda47 1584 int status;
5d304358
YS
1585
1586 spin_lock(&r8a66597->lock);
1587
1588 intsts0 = r8a66597_read(r8a66597, INTSTS0);
1589 intsts1 = r8a66597_read(r8a66597, INTSTS1);
1590 intsts2 = r8a66597_read(r8a66597, INTSTS2);
1591 intenb0 = r8a66597_read(r8a66597, INTENB0);
1592 intenb1 = r8a66597_read(r8a66597, INTENB1);
1593 intenb2 = r8a66597_read(r8a66597, INTENB2);
1594
1595 mask2 = intsts2 & intenb2;
1596 mask1 = intsts1 & intenb1;
1597 mask0 = intsts0 & intenb0 & (BEMP | NRDY | BRDY);
1598 if (mask2) {
1599 if (mask2 & ATTCH) {
e294531d 1600 r8a66597_write(r8a66597, ~ATTCH, INTSTS2);
5d304358
YS
1601 r8a66597_bclr(r8a66597, ATTCHE, INTENB2);
1602
1603 /* start usb bus sampling */
54d0be9e 1604 start_root_hub_sampling(r8a66597, 1, 1);
5d304358
YS
1605 }
1606 if (mask2 & DTCH) {
e294531d 1607 r8a66597_write(r8a66597, ~DTCH, INTSTS2);
5d304358
YS
1608 r8a66597_bclr(r8a66597, DTCHE, INTENB2);
1609 r8a66597_usb_disconnect(r8a66597, 1);
1610 }
1611 }
1612
1613 if (mask1) {
1614 if (mask1 & ATTCH) {
e294531d 1615 r8a66597_write(r8a66597, ~ATTCH, INTSTS1);
5d304358
YS
1616 r8a66597_bclr(r8a66597, ATTCHE, INTENB1);
1617
1618 /* start usb bus sampling */
54d0be9e 1619 start_root_hub_sampling(r8a66597, 0, 1);
5d304358
YS
1620 }
1621 if (mask1 & DTCH) {
e294531d 1622 r8a66597_write(r8a66597, ~DTCH, INTSTS1);
5d304358
YS
1623 r8a66597_bclr(r8a66597, DTCHE, INTENB1);
1624 r8a66597_usb_disconnect(r8a66597, 0);
1625 }
1626 if (mask1 & SIGN) {
e294531d 1627 r8a66597_write(r8a66597, ~SIGN, INTSTS1);
888fda47
AS
1628 status = get_urb_error(r8a66597, 0);
1629 check_next_phase(r8a66597, status);
5d304358
YS
1630 }
1631 if (mask1 & SACK) {
e294531d 1632 r8a66597_write(r8a66597, ~SACK, INTSTS1);
888fda47 1633 check_next_phase(r8a66597, 0);
5d304358
YS
1634 }
1635 }
1636 if (mask0) {
1637 if (mask0 & BRDY)
1638 irq_pipe_ready(r8a66597);
1639 if (mask0 & BEMP)
1640 irq_pipe_empty(r8a66597);
1641 if (mask0 & NRDY)
1642 irq_pipe_nrdy(r8a66597);
1643 }
1644
1645 spin_unlock(&r8a66597->lock);
1646 return IRQ_HANDLED;
1647}
1648
1649/* this function must be called with interrupt disabled */
1650static void r8a66597_root_hub_control(struct r8a66597 *r8a66597, int port)
1651{
1652 u16 tmp;
1653 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
1654
1655 if (rh->port & (1 << USB_PORT_FEAT_RESET)) {
1656 unsigned long dvstctr_reg = get_dvstctr_reg(port);
1657
1658 tmp = r8a66597_read(r8a66597, dvstctr_reg);
1659 if ((tmp & USBRST) == USBRST) {
1660 r8a66597_mdfy(r8a66597, UACT, USBRST | UACT,
1661 dvstctr_reg);
29fab0cd 1662 r8a66597_root_hub_start_polling(r8a66597);
5d304358
YS
1663 } else
1664 r8a66597_usb_connect(r8a66597, port);
1665 }
1666
29fab0cd
YS
1667 if (!(rh->port & (1 << USB_PORT_FEAT_CONNECTION))) {
1668 r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port));
1669 r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port));
1670 }
1671
5d304358
YS
1672 if (rh->scount > 0) {
1673 tmp = r8a66597_read(r8a66597, get_syssts_reg(port)) & LNST;
1674 if (tmp == rh->old_syssts) {
1675 rh->scount--;
29fab0cd
YS
1676 if (rh->scount == 0)
1677 r8a66597_check_syssts(r8a66597, port, tmp);
1678 else
1679 r8a66597_root_hub_start_polling(r8a66597);
5d304358
YS
1680 } else {
1681 rh->scount = R8A66597_MAX_SAMPLING;
1682 rh->old_syssts = tmp;
29fab0cd 1683 r8a66597_root_hub_start_polling(r8a66597);
5d304358
YS
1684 }
1685 }
1686}
1687
6d879107
YS
1688static void r8a66597_interval_timer(unsigned long _r8a66597)
1689{
1690 struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597;
1691 unsigned long flags;
1692 u16 pipenum;
1693 struct r8a66597_td *td;
1694
1695 spin_lock_irqsave(&r8a66597->lock, flags);
1696
1697 for (pipenum = 0; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1698 if (!(r8a66597->interval_map & (1 << pipenum)))
1699 continue;
1700 if (timer_pending(&r8a66597->interval_timer[pipenum]))
1701 continue;
1702
1703 td = r8a66597_get_td(r8a66597, pipenum);
1704 if (td)
1705 start_transfer(r8a66597, td);
1706 }
1707
1708 spin_unlock_irqrestore(&r8a66597->lock, flags);
1709}
1710
5d304358
YS
1711static void r8a66597_td_timer(unsigned long _r8a66597)
1712{
1713 struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597;
1714 unsigned long flags;
1715 u16 pipenum;
1716 struct r8a66597_td *td, *new_td = NULL;
1717 struct r8a66597_pipe *pipe;
1718
1719 spin_lock_irqsave(&r8a66597->lock, flags);
1720 for (pipenum = 0; pipenum < R8A66597_MAX_NUM_PIPE; pipenum++) {
1721 if (!(r8a66597->timeout_map & (1 << pipenum)))
1722 continue;
1723 if (timer_pending(&r8a66597->td_timer[pipenum]))
1724 continue;
1725
1726 td = r8a66597_get_td(r8a66597, pipenum);
1727 if (!td) {
1728 r8a66597->timeout_map &= ~(1 << pipenum);
1729 continue;
1730 }
1731
1732 if (td->urb->actual_length) {
1733 set_td_timer(r8a66597, td);
1734 break;
1735 }
1736
1737 pipe = td->pipe;
1738 pipe_stop(r8a66597, pipe);
1739
1740 new_td = td;
1741 do {
1742 list_move_tail(&new_td->queue,
1743 &r8a66597->pipe_queue[pipenum]);
1744 new_td = r8a66597_get_td(r8a66597, pipenum);
1745 if (!new_td) {
1746 new_td = td;
1747 break;
1748 }
1749 } while (td != new_td && td->address == new_td->address);
1750
1751 start_transfer(r8a66597, new_td);
1752
1753 if (td == new_td)
1754 r8a66597->timeout_map &= ~(1 << pipenum);
1755 else
1756 set_td_timer(r8a66597, new_td);
1757 break;
1758 }
1759 spin_unlock_irqrestore(&r8a66597->lock, flags);
1760}
1761
1762static void r8a66597_timer(unsigned long _r8a66597)
1763{
1764 struct r8a66597 *r8a66597 = (struct r8a66597 *)_r8a66597;
1765 unsigned long flags;
58639646 1766 int port;
5d304358
YS
1767
1768 spin_lock_irqsave(&r8a66597->lock, flags);
1769
58639646
YS
1770 for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)
1771 r8a66597_root_hub_control(r8a66597, port);
5d304358
YS
1772
1773 spin_unlock_irqrestore(&r8a66597->lock, flags);
1774}
1775
1776static int check_pipe_config(struct r8a66597 *r8a66597, struct urb *urb)
1777{
1778 struct r8a66597_device *dev = get_urb_to_r8a66597_dev(r8a66597, urb);
1779
1780 if (dev && dev->address && dev->state != USB_STATE_CONFIGURED &&
1781 (urb->dev->state == USB_STATE_CONFIGURED))
1782 return 1;
1783 else
1784 return 0;
1785}
1786
1787static int r8a66597_start(struct usb_hcd *hcd)
1788{
1789 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
5d304358
YS
1790
1791 hcd->state = HC_STATE_RUNNING;
e294531d 1792 return enable_controller(r8a66597);
5d304358
YS
1793}
1794
1795static void r8a66597_stop(struct usb_hcd *hcd)
1796{
1797 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1798
1799 disable_controller(r8a66597);
1800}
1801
1802static void set_address_zero(struct r8a66597 *r8a66597, struct urb *urb)
1803{
1804 unsigned int usb_address = usb_pipedevice(urb->pipe);
1805 u16 root_port, hub_port;
1806
1807 if (usb_address == 0) {
1808 get_port_number(urb->dev->devpath,
1809 &root_port, &hub_port);
1810 set_devadd_reg(r8a66597, 0,
1811 get_r8a66597_usb_speed(urb->dev->speed),
1812 get_parent_r8a66597_address(r8a66597, urb->dev),
1813 hub_port, root_port);
1814 }
1815}
1816
1817static struct r8a66597_td *r8a66597_make_td(struct r8a66597 *r8a66597,
1818 struct urb *urb,
e294531d 1819 struct usb_host_endpoint *hep)
5d304358
YS
1820{
1821 struct r8a66597_td *td;
1822 u16 pipenum;
1823
e294531d 1824 td = kzalloc(sizeof(struct r8a66597_td), GFP_ATOMIC);
5d304358
YS
1825 if (td == NULL)
1826 return NULL;
1827
1828 pipenum = r8a66597_get_pipenum(urb, hep);
1829 td->pipenum = pipenum;
1830 td->pipe = hep->hcpriv;
1831 td->urb = urb;
1832 td->address = get_urb_to_r8a66597_addr(r8a66597, urb);
1833 td->maxpacket = usb_maxpacket(urb->dev, urb->pipe,
1834 !usb_pipein(urb->pipe));
1835 if (usb_pipecontrol(urb->pipe))
1836 td->type = USB_PID_SETUP;
1837 else if (usb_pipein(urb->pipe))
1838 td->type = USB_PID_IN;
1839 else
1840 td->type = USB_PID_OUT;
1841 INIT_LIST_HEAD(&td->queue);
1842
1843 return td;
1844}
1845
1846static int r8a66597_urb_enqueue(struct usb_hcd *hcd,
5d304358
YS
1847 struct urb *urb,
1848 gfp_t mem_flags)
1849{
e9df41c5 1850 struct usb_host_endpoint *hep = urb->ep;
5d304358
YS
1851 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1852 struct r8a66597_td *td = NULL;
e9df41c5 1853 int ret, request = 0;
5d304358
YS
1854 unsigned long flags;
1855
1856 spin_lock_irqsave(&r8a66597->lock, flags);
1857 if (!get_urb_to_r8a66597_dev(r8a66597, urb)) {
1858 ret = -ENODEV;
e9df41c5 1859 goto error_not_linked;
5d304358
YS
1860 }
1861
e9df41c5
AS
1862 ret = usb_hcd_link_urb_to_ep(hcd, urb);
1863 if (ret)
1864 goto error_not_linked;
1865
5d304358 1866 if (!hep->hcpriv) {
e294531d
YS
1867 hep->hcpriv = kzalloc(sizeof(struct r8a66597_pipe),
1868 GFP_ATOMIC);
5d304358
YS
1869 if (!hep->hcpriv) {
1870 ret = -ENOMEM;
1871 goto error;
1872 }
1873 set_pipe_reg_addr(hep->hcpriv, R8A66597_PIPE_NO_DMA);
1874 if (usb_pipeendpoint(urb->pipe))
1875 init_pipe_info(r8a66597, urb, hep, &hep->desc);
1876 }
1877
1878 if (unlikely(check_pipe_config(r8a66597, urb)))
1879 init_pipe_config(r8a66597, urb);
1880
1881 set_address_zero(r8a66597, urb);
e294531d 1882 td = r8a66597_make_td(r8a66597, urb, hep);
5d304358
YS
1883 if (td == NULL) {
1884 ret = -ENOMEM;
1885 goto error;
1886 }
1887 if (list_empty(&r8a66597->pipe_queue[td->pipenum]))
1888 request = 1;
1889 list_add_tail(&td->queue, &r8a66597->pipe_queue[td->pipenum]);
5d304358 1890 urb->hcpriv = td;
5d304358
YS
1891
1892 if (request) {
6d879107
YS
1893 if (td->pipe->info.timer_interval) {
1894 r8a66597->interval_map |= 1 << td->pipenum;
1895 mod_timer(&r8a66597->interval_timer[td->pipenum],
1896 jiffies + msecs_to_jiffies(
1897 td->pipe->info.timer_interval));
1898 } else {
1899 ret = start_transfer(r8a66597, td);
1900 if (ret < 0) {
1901 list_del(&td->queue);
1902 kfree(td);
1903 }
5d304358
YS
1904 }
1905 } else
1906 set_td_timer(r8a66597, td);
1907
1908error:
e9df41c5
AS
1909 if (ret)
1910 usb_hcd_unlink_urb_from_ep(hcd, urb);
1911error_not_linked:
5d304358
YS
1912 spin_unlock_irqrestore(&r8a66597->lock, flags);
1913 return ret;
1914}
1915
e9df41c5
AS
1916static int r8a66597_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,
1917 int status)
5d304358
YS
1918{
1919 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1920 struct r8a66597_td *td;
1921 unsigned long flags;
e9df41c5 1922 int rc;
5d304358
YS
1923
1924 spin_lock_irqsave(&r8a66597->lock, flags);
e9df41c5
AS
1925 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1926 if (rc)
1927 goto done;
1928
5d304358
YS
1929 if (urb->hcpriv) {
1930 td = urb->hcpriv;
1931 pipe_stop(r8a66597, td->pipe);
1932 pipe_irq_disable(r8a66597, td->pipenum);
1933 disable_irq_empty(r8a66597, td->pipenum);
888fda47 1934 finish_request(r8a66597, td, td->pipenum, urb, status);
5d304358 1935 }
e9df41c5 1936 done:
5d304358 1937 spin_unlock_irqrestore(&r8a66597->lock, flags);
e9df41c5 1938 return rc;
5d304358
YS
1939}
1940
1941static void r8a66597_endpoint_disable(struct usb_hcd *hcd,
1942 struct usb_host_endpoint *hep)
1943{
1944 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1945 struct r8a66597_pipe *pipe = (struct r8a66597_pipe *)hep->hcpriv;
1946 struct r8a66597_td *td;
1947 struct urb *urb = NULL;
1948 u16 pipenum;
1949 unsigned long flags;
1950
1951 if (pipe == NULL)
1952 return;
1953 pipenum = pipe->info.pipenum;
1954
1955 if (pipenum == 0) {
1956 kfree(hep->hcpriv);
1957 hep->hcpriv = NULL;
1958 return;
1959 }
1960
1961 spin_lock_irqsave(&r8a66597->lock, flags);
1962 pipe_stop(r8a66597, pipe);
1963 pipe_irq_disable(r8a66597, pipenum);
1964 disable_irq_empty(r8a66597, pipenum);
1965 td = r8a66597_get_td(r8a66597, pipenum);
1966 if (td)
1967 urb = td->urb;
888fda47 1968 finish_request(r8a66597, td, pipenum, urb, -ESHUTDOWN);
5d304358
YS
1969 kfree(hep->hcpriv);
1970 hep->hcpriv = NULL;
1971 spin_unlock_irqrestore(&r8a66597->lock, flags);
1972}
1973
1974static int r8a66597_get_frame(struct usb_hcd *hcd)
1975{
1976 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1977 return r8a66597_read(r8a66597, FRMNUM) & 0x03FF;
1978}
1979
1980static void collect_usb_address_map(struct usb_device *udev, unsigned long *map)
1981{
1982 int chix;
1983
1984 if (udev->state == USB_STATE_CONFIGURED &&
1985 udev->parent && udev->parent->devnum > 1 &&
1986 udev->parent->descriptor.bDeviceClass == USB_CLASS_HUB)
1987 map[udev->devnum/32] |= (1 << (udev->devnum % 32));
1988
1989 for (chix = 0; chix < udev->maxchild; chix++) {
1990 struct usb_device *childdev = udev->children[chix];
1991
1992 if (childdev)
1993 collect_usb_address_map(childdev, map);
1994 }
1995}
1996
1997/* this function must be called with interrupt disabled */
1998static struct r8a66597_device *get_r8a66597_device(struct r8a66597 *r8a66597,
1999 int addr)
2000{
2001 struct r8a66597_device *dev;
2002 struct list_head *list = &r8a66597->child_device;
2003
2004 list_for_each_entry(dev, list, device_list) {
2005 if (!dev)
2006 continue;
2007 if (dev->usb_address != addr)
2008 continue;
2009
2010 return dev;
2011 }
2012
802f389a 2013 printk(KERN_ERR "r8a66597: get_r8a66597_device fail.(%d)\n", addr);
5d304358
YS
2014 return NULL;
2015}
2016
2017static void update_usb_address_map(struct r8a66597 *r8a66597,
2018 struct usb_device *root_hub,
2019 unsigned long *map)
2020{
2021 int i, j, addr;
2022 unsigned long diff;
2023 unsigned long flags;
2024
2025 for (i = 0; i < 4; i++) {
2026 diff = r8a66597->child_connect_map[i] ^ map[i];
2027 if (!diff)
2028 continue;
2029
2030 for (j = 0; j < 32; j++) {
2031 if (!(diff & (1 << j)))
2032 continue;
2033
2034 addr = i * 32 + j;
2035 if (map[i] & (1 << j))
2036 set_child_connect_map(r8a66597, addr);
2037 else {
2038 struct r8a66597_device *dev;
2039
2040 spin_lock_irqsave(&r8a66597->lock, flags);
2041 dev = get_r8a66597_device(r8a66597, addr);
2042 disable_r8a66597_pipe_all(r8a66597, dev);
2043 free_usb_address(r8a66597, dev);
2044 put_child_connect_map(r8a66597, addr);
2045 spin_unlock_irqrestore(&r8a66597->lock, flags);
2046 }
2047 }
2048 }
2049}
2050
2051static void r8a66597_check_detect_child(struct r8a66597 *r8a66597,
2052 struct usb_hcd *hcd)
2053{
2054 struct usb_bus *bus;
2055 unsigned long now_map[4];
2056
2057 memset(now_map, 0, sizeof(now_map));
2058
2059 list_for_each_entry(bus, &usb_bus_list, bus_list) {
2060 if (!bus->root_hub)
2061 continue;
2062
2063 if (bus->busnum != hcd->self.busnum)
2064 continue;
2065
2066 collect_usb_address_map(bus->root_hub, now_map);
2067 update_usb_address_map(r8a66597, bus->root_hub, now_map);
2068 }
2069}
2070
2071static int r8a66597_hub_status_data(struct usb_hcd *hcd, char *buf)
2072{
2073 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2074 unsigned long flags;
2075 int i;
2076
2077 r8a66597_check_detect_child(r8a66597, hcd);
2078
2079 spin_lock_irqsave(&r8a66597->lock, flags);
2080
2081 *buf = 0; /* initialize (no change) */
2082
2083 for (i = 0; i < R8A66597_MAX_ROOT_HUB; i++) {
2084 if (r8a66597->root_hub[i].port & 0xffff0000)
2085 *buf |= 1 << (i + 1);
2086 }
2087
2088 spin_unlock_irqrestore(&r8a66597->lock, flags);
2089
2090 return (*buf != 0);
2091}
2092
2093static void r8a66597_hub_descriptor(struct r8a66597 *r8a66597,
2094 struct usb_hub_descriptor *desc)
2095{
2096 desc->bDescriptorType = 0x29;
2097 desc->bHubContrCurrent = 0;
2098 desc->bNbrPorts = R8A66597_MAX_ROOT_HUB;
2099 desc->bDescLength = 9;
2100 desc->bPwrOn2PwrGood = 0;
2101 desc->wHubCharacteristics = cpu_to_le16(0x0011);
2102 desc->bitmap[0] = ((1 << R8A66597_MAX_ROOT_HUB) - 1) << 1;
2103 desc->bitmap[1] = ~0;
2104}
2105
2106static int r8a66597_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
2107 u16 wIndex, char *buf, u16 wLength)
2108{
2109 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2110 int ret;
2111 int port = (wIndex & 0x00FF) - 1;
2112 struct r8a66597_root_hub *rh = &r8a66597->root_hub[port];
2113 unsigned long flags;
2114
2115 ret = 0;
2116
2117 spin_lock_irqsave(&r8a66597->lock, flags);
2118 switch (typeReq) {
2119 case ClearHubFeature:
2120 case SetHubFeature:
2121 switch (wValue) {
2122 case C_HUB_OVER_CURRENT:
2123 case C_HUB_LOCAL_POWER:
2124 break;
2125 default:
2126 goto error;
2127 }
2128 break;
2129 case ClearPortFeature:
2130 if (wIndex > R8A66597_MAX_ROOT_HUB)
2131 goto error;
2132 if (wLength != 0)
2133 goto error;
2134
2135 switch (wValue) {
2136 case USB_PORT_FEAT_ENABLE:
2137 rh->port &= (1 << USB_PORT_FEAT_POWER);
2138 break;
2139 case USB_PORT_FEAT_SUSPEND:
2140 break;
2141 case USB_PORT_FEAT_POWER:
2142 r8a66597_port_power(r8a66597, port, 0);
2143 break;
2144 case USB_PORT_FEAT_C_ENABLE:
2145 case USB_PORT_FEAT_C_SUSPEND:
2146 case USB_PORT_FEAT_C_CONNECTION:
2147 case USB_PORT_FEAT_C_OVER_CURRENT:
2148 case USB_PORT_FEAT_C_RESET:
2149 break;
2150 default:
2151 goto error;
2152 }
2153 rh->port &= ~(1 << wValue);
2154 break;
2155 case GetHubDescriptor:
2156 r8a66597_hub_descriptor(r8a66597,
2157 (struct usb_hub_descriptor *)buf);
2158 break;
2159 case GetHubStatus:
2160 *buf = 0x00;
2161 break;
2162 case GetPortStatus:
2163 if (wIndex > R8A66597_MAX_ROOT_HUB)
2164 goto error;
fd05e720 2165 *(__le32 *)buf = cpu_to_le32(rh->port);
5d304358
YS
2166 break;
2167 case SetPortFeature:
2168 if (wIndex > R8A66597_MAX_ROOT_HUB)
2169 goto error;
2170 if (wLength != 0)
2171 goto error;
2172
2173 switch (wValue) {
2174 case USB_PORT_FEAT_SUSPEND:
2175 break;
2176 case USB_PORT_FEAT_POWER:
2177 r8a66597_port_power(r8a66597, port, 1);
2178 rh->port |= (1 << USB_PORT_FEAT_POWER);
2179 break;
2180 case USB_PORT_FEAT_RESET: {
2181 struct r8a66597_device *dev = rh->dev;
2182
2183 rh->port |= (1 << USB_PORT_FEAT_RESET);
2184
2185 disable_r8a66597_pipe_all(r8a66597, dev);
2186 free_usb_address(r8a66597, dev);
2187
2188 r8a66597_mdfy(r8a66597, USBRST, USBRST | UACT,
2189 get_dvstctr_reg(port));
2190 mod_timer(&r8a66597->rh_timer,
2191 jiffies + msecs_to_jiffies(50));
2192 }
2193 break;
2194 default:
2195 goto error;
2196 }
2197 rh->port |= 1 << wValue;
2198 break;
2199 default:
2200error:
2201 ret = -EPIPE;
2202 break;
2203 }
2204
2205 spin_unlock_irqrestore(&r8a66597->lock, flags);
2206 return ret;
2207}
2208
2209static struct hc_driver r8a66597_hc_driver = {
2210 .description = hcd_name,
2211 .hcd_priv_size = sizeof(struct r8a66597),
2212 .irq = r8a66597_irq,
2213
2214 /*
2215 * generic hardware linkage
2216 */
2217 .flags = HCD_USB2,
2218
2219 .start = r8a66597_start,
2220 .stop = r8a66597_stop,
2221
2222 /*
2223 * managing i/o requests and associated device resources
2224 */
2225 .urb_enqueue = r8a66597_urb_enqueue,
2226 .urb_dequeue = r8a66597_urb_dequeue,
2227 .endpoint_disable = r8a66597_endpoint_disable,
2228
2229 /*
2230 * periodic schedule support
2231 */
2232 .get_frame_number = r8a66597_get_frame,
2233
2234 /*
2235 * root hub support
2236 */
2237 .hub_status_data = r8a66597_hub_status_data,
2238 .hub_control = r8a66597_hub_control,
2239};
2240
2241#if defined(CONFIG_PM)
2242static int r8a66597_suspend(struct platform_device *pdev, pm_message_t state)
2243{
5d304358
YS
2244 return 0;
2245}
2246
2247static int r8a66597_resume(struct platform_device *pdev)
2248{
5d304358
YS
2249 return 0;
2250}
2251#else /* if defined(CONFIG_PM) */
2252#define r8a66597_suspend NULL
2253#define r8a66597_resume NULL
2254#endif
2255
2256static int __init_or_module r8a66597_remove(struct platform_device *pdev)
2257{
2258 struct r8a66597 *r8a66597 = dev_get_drvdata(&pdev->dev);
2259 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
2260
2261 del_timer_sync(&r8a66597->rh_timer);
5d304358 2262 usb_remove_hcd(hcd);
ca0677a2 2263 iounmap((void *)r8a66597->reg);
5d304358
YS
2264 usb_put_hcd(hcd);
2265 return 0;
2266}
2267
2268#define resource_len(r) (((r)->end - (r)->start) + 1)
2269static int __init r8a66597_probe(struct platform_device *pdev)
2270{
27140219 2271 struct resource *res = NULL, *ires;
5d304358
YS
2272 int irq = -1;
2273 void __iomem *reg = NULL;
2274 struct usb_hcd *hcd = NULL;
2275 struct r8a66597 *r8a66597;
2276 int ret = 0;
2277 int i;
0bf32b80 2278 unsigned long irq_trigger;
5d304358
YS
2279
2280 if (pdev->dev.dma_mask) {
2281 ret = -EINVAL;
802f389a 2282 dev_err(&pdev->dev, "dma not supported\n");
5d304358
YS
2283 goto clean_up;
2284 }
2285
2286 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2287 (char *)hcd_name);
2288 if (!res) {
2289 ret = -ENODEV;
802f389a 2290 dev_err(&pdev->dev, "platform_get_resource_byname error.\n");
5d304358
YS
2291 goto clean_up;
2292 }
2293
27140219
MZ
2294 ires = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2295 if (!ires) {
5d304358 2296 ret = -ENODEV;
802f389a
GKH
2297 dev_err(&pdev->dev,
2298 "platform_get_resource IORESOURCE_IRQ error.\n");
5d304358
YS
2299 goto clean_up;
2300 }
2301
27140219
MZ
2302 irq = ires->start;
2303 irq_trigger = ires->flags & IRQF_TRIGGER_MASK;
2304
5d304358
YS
2305 reg = ioremap(res->start, resource_len(res));
2306 if (reg == NULL) {
2307 ret = -ENOMEM;
802f389a 2308 dev_err(&pdev->dev, "ioremap error.\n");
5d304358
YS
2309 goto clean_up;
2310 }
2311
2312 /* initialize hcd */
2313 hcd = usb_create_hcd(&r8a66597_hc_driver, &pdev->dev, (char *)hcd_name);
2314 if (!hcd) {
2315 ret = -ENOMEM;
802f389a 2316 dev_err(&pdev->dev, "Failed to create hcd\n");
5d304358
YS
2317 goto clean_up;
2318 }
2319 r8a66597 = hcd_to_r8a66597(hcd);
2320 memset(r8a66597, 0, sizeof(struct r8a66597));
2321 dev_set_drvdata(&pdev->dev, r8a66597);
2322
2323 spin_lock_init(&r8a66597->lock);
2324 init_timer(&r8a66597->rh_timer);
2325 r8a66597->rh_timer.function = r8a66597_timer;
2326 r8a66597->rh_timer.data = (unsigned long)r8a66597;
2327 r8a66597->reg = (unsigned long)reg;
2328
2329 for (i = 0; i < R8A66597_MAX_NUM_PIPE; i++) {
2330 INIT_LIST_HEAD(&r8a66597->pipe_queue[i]);
2331 init_timer(&r8a66597->td_timer[i]);
2332 r8a66597->td_timer[i].function = r8a66597_td_timer;
2333 r8a66597->td_timer[i].data = (unsigned long)r8a66597;
6d879107
YS
2334 setup_timer(&r8a66597->interval_timer[i],
2335 r8a66597_interval_timer,
2336 (unsigned long)r8a66597);
5d304358
YS
2337 }
2338 INIT_LIST_HEAD(&r8a66597->child_device);
2339
2340 hcd->rsrc_start = res->start;
27140219
MZ
2341
2342 /* irq_sense setting on cmdline takes precedence over resource
2343 * settings, so the introduction of irqflags in IRQ resourse
2344 * won't disturb existing setups */
2345 switch (irq_sense) {
2346 case INTL:
2347 irq_trigger = IRQF_TRIGGER_LOW;
2348 break;
2349 case 0:
2350 irq_trigger = IRQF_TRIGGER_FALLING;
2351 break;
2352 case 0xff:
2353 if (irq_trigger)
2354 irq_sense = (irq_trigger & IRQF_TRIGGER_LOW) ?
2355 INTL : 0;
2356 else {
2357 irq_sense = INTL;
2358 irq_trigger = IRQF_TRIGGER_LOW;
2359 }
2360 break;
2361 default:
802f389a 2362 dev_err(&pdev->dev, "Unknown irq_sense value.\n");
27140219
MZ
2363 }
2364
0bf32b80 2365 ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | irq_trigger);
5d304358 2366 if (ret != 0) {
802f389a 2367 dev_err(&pdev->dev, "Failed to add hcd\n");
5d304358
YS
2368 goto clean_up;
2369 }
2370
2371 return 0;
2372
2373clean_up:
2374 if (reg)
2375 iounmap(reg);
5d304358
YS
2376
2377 return ret;
2378}
2379
2380static struct platform_driver r8a66597_driver = {
2381 .probe = r8a66597_probe,
2382 .remove = r8a66597_remove,
2383 .suspend = r8a66597_suspend,
2384 .resume = r8a66597_resume,
2385 .driver = {
2386 .name = (char *) hcd_name,
f4fce61d 2387 .owner = THIS_MODULE,
5d304358
YS
2388 },
2389};
2390
2391static int __init r8a66597_init(void)
2392{
2393 if (usb_disabled())
2394 return -ENODEV;
2395
5909f6ea
GKH
2396 printk(KERN_INFO KBUILD_MODNAME ": driver %s, %s\n", hcd_name,
2397 DRIVER_VERSION);
5d304358
YS
2398 return platform_driver_register(&r8a66597_driver);
2399}
2400module_init(r8a66597_init);
2401
2402static void __exit r8a66597_cleanup(void)
2403{
2404 platform_driver_unregister(&r8a66597_driver);
2405}
2406module_exit(r8a66597_cleanup);
2407