2 * ADM5120 HCD (Host Controller Driver) for USB
4 * Copyright (C) 2007,2008 Gabor Juhos <juhosg at openwrt.org>
6 * This file was derived from: drivers/usb/host/ohci-hcd.c
7 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
8 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
10 * [ Initialisation is based on Linus' ]
11 * [ uhci code and gregs ahcd fragments ]
12 * [ (C) Copyright 1999 Linus Torvalds ]
13 * [ (C) Copyright 1999 Gregory P. Smith]
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License version 2 as published
17 * by the Free Software Foundation.
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/pci.h>
24 #include <linux/kernel.h>
25 #include <linux/delay.h>
26 #include <linux/ioport.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/errno.h>
30 #include <linux/init.h>
31 #include <linux/timer.h>
32 #include <linux/list.h>
33 #include <linux/usb.h>
34 #include <linux/usb/otg.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/dmapool.h>
37 #include <linux/reboot.h>
41 #include <asm/system.h>
42 #include <asm/unaligned.h>
43 #include <asm/byteorder.h>
45 #include "../core/hcd.h"
46 #include "../core/hub.h"
48 #define DRIVER_VERSION "0.24.0"
49 #define DRIVER_AUTHOR "Gabor Juhos <juhosg at openwrt.org>"
50 #define DRIVER_DESC "ADMtek USB 1.1 Host Controller Driver"
52 /*-------------------------------------------------------------------------*/
54 #undef ADMHC_VERBOSE_DEBUG /* not always helpful */
56 /* For initializing controller (mask in an HCFS mode too) */
57 #define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
59 #define ADMHC_INTR_INIT \
60 ( ADMHC_INTR_MIE | ADMHC_INTR_INSM | ADMHC_INTR_FATI \
61 | ADMHC_INTR_RESI | ADMHC_INTR_TDC | ADMHC_INTR_BABI )
63 /*-------------------------------------------------------------------------*/
65 static const char hcd_name
[] = "admhc-hcd";
67 #define STATECHANGE_DELAY msecs_to_jiffies(300)
71 static void admhc_dump(struct admhcd
*ahcd
, int verbose
);
72 static int admhc_init(struct admhcd
*ahcd
);
73 static void admhc_stop(struct usb_hcd
*hcd
);
75 #include "adm5120-dbg.c"
76 #include "adm5120-mem.c"
77 #include "adm5120-pm.c"
78 #include "adm5120-hub.c"
79 #include "adm5120-q.c"
81 /*-------------------------------------------------------------------------*/
84 * queue up an urb for anything except the root hub
86 static int admhc_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
89 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
91 struct urb_priv
*urb_priv
;
92 unsigned int pipe
= urb
->pipe
;
97 #ifdef ADMHC_VERBOSE_DEBUG
98 spin_lock_irqsave(&ahcd
->lock
, flags
);
99 urb_print(ahcd
, urb
, "ENQEUE", usb_pipein(pipe
), -EINPROGRESS
);
100 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
103 /* every endpoint has an ed, locate and maybe (re)initialize it */
104 ed
= ed_get(ahcd
, urb
->ep
, urb
->dev
, pipe
, urb
->interval
);
108 /* for the private part of the URB we need the number of TDs */
111 if (urb
->transfer_buffer_length
> TD_DATALEN_MAX
)
112 /* td_submit_urb() doesn't yet handle these */
115 /* 1 TD for setup, 1 for ACK, plus ... */
119 /* one TD for every 4096 Bytes (can be upto 8K) */
120 td_cnt
+= urb
->transfer_buffer_length
/ TD_DATALEN_MAX
;
121 /* ... and for any remaining bytes ... */
122 if ((urb
->transfer_buffer_length
% TD_DATALEN_MAX
) != 0)
124 /* ... and maybe a zero length packet to wrap it up */
127 else if ((urb
->transfer_flags
& URB_ZERO_PACKET
) != 0
128 && (urb
->transfer_buffer_length
129 % usb_maxpacket(urb
->dev
, pipe
,
130 usb_pipeout (pipe
))) == 0)
135 * for Interrupt IN/OUT transactions, each ED contains
137 * TODO: check transfer_buffer_length?
141 case PIPE_ISOCHRONOUS
:
142 /* number of packets from URB */
143 td_cnt
= urb
->number_of_packets
;
147 urb_priv
= urb_priv_alloc(ahcd
, td_cnt
, mem_flags
);
153 spin_lock_irqsave(&ahcd
->lock
, flags
);
154 /* don't submit to a dead HC */
155 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
159 if (!HC_IS_RUNNING(hcd
->state
)) {
164 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
168 /* schedule the ed if needed */
169 if (ed
->state
== ED_IDLE
) {
170 ret
= ed_schedule(ahcd
, ed
);
172 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
175 if (ed
->type
== PIPE_ISOCHRONOUS
) {
176 u16 frame
= admhc_frame_no(ahcd
);
178 /* delay a few frames before the first TD */
179 frame
+= max_t (u16
, 8, ed
->interval
);
180 frame
&= ~(ed
->interval
- 1);
182 urb
->start_frame
= frame
;
184 /* yes, only URB_ISO_ASAP is supported, and
185 * urb->start_frame is never used as input.
188 } else if (ed
->type
== PIPE_ISOCHRONOUS
)
189 urb
->start_frame
= ed
->last_iso
+ ed
->interval
;
191 /* fill the TDs and link them to the ed; and
192 * enable that part of the schedule, if needed
193 * and update count of queued periodic urbs
195 urb
->hcpriv
= urb_priv
;
196 td_submit_urb(ahcd
, urb
);
198 #ifdef ADMHC_VERBOSE_DEBUG
199 admhc_dump_ed(ahcd
, "admhc_urb_enqueue", urb_priv
->ed
, 1);
204 urb_priv_free(ahcd
, urb_priv
);
206 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
211 * decouple the URB from the HC queues (TDs, urb_priv);
212 * reporting is always done
213 * asynchronously, and we might be dealing with an urb that's
214 * partially transferred, or an ED with other urbs being unlinked.
216 static int admhc_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
,
219 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
223 spin_lock_irqsave(&ahcd
->lock
, flags
);
225 #ifdef ADMHC_VERBOSE_DEBUG
226 urb_print(ahcd
, urb
, "DEQUEUE", 1, status
);
228 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
232 } else if (HC_IS_RUNNING(hcd
->state
)) {
233 struct urb_priv
*urb_priv
;
235 /* Unless an IRQ completed the unlink while it was being
236 * handed to us, flag it for unlink and giveback, and force
237 * some upcoming INTR_SF to call finish_unlinks()
239 urb_priv
= urb
->hcpriv
;
241 if (urb_priv
->ed
->state
== ED_OPER
)
242 start_ed_unlink(ahcd
, urb_priv
->ed
);
246 * with HC dead, we won't respect hc queue pointers
247 * any more ... just clean up every urb's memory.
250 finish_urb(ahcd
, urb
, status
);
252 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
257 /*-------------------------------------------------------------------------*/
259 /* frees config/altsetting state for endpoints,
260 * including ED memory, dummy TD, and bulk/intr data toggle
263 static void admhc_endpoint_disable(struct usb_hcd
*hcd
,
264 struct usb_host_endpoint
*ep
)
266 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
268 struct ed
*ed
= ep
->hcpriv
;
269 unsigned limit
= 1000;
271 /* ASSERT: any requests/urbs are being unlinked */
272 /* ASSERT: nobody can be submitting urbs for this any more */
277 #ifdef ADMHC_VERBOSE_DEBUG
278 spin_lock_irqsave(&ahcd
->lock
, flags
);
279 admhc_dump_ed(ahcd
, "EP-DISABLE", ed
, 1);
280 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
284 spin_lock_irqsave(&ahcd
->lock
, flags
);
286 if (!HC_IS_RUNNING(hcd
->state
)) {
289 finish_unlinks(ahcd
, 0);
293 case ED_UNLINK
: /* wait for hw to finish? */
294 /* major IRQ delivery trouble loses INTR_SOFI too... */
296 admhc_warn(ahcd
, "IRQ INTR_SOFI lossage\n");
299 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
300 schedule_timeout_uninterruptible(1);
302 case ED_IDLE
: /* fully unlinked */
303 if (list_empty(&ed
->td_list
)) {
304 td_free (ahcd
, ed
->dummy
);
308 /* else FALL THROUGH */
310 /* caller was supposed to have unlinked any requests;
311 * that's not our job. can't recover; must leak ed.
313 admhc_err(ahcd
, "leak ed %p (#%02x) state %d%s\n",
314 ed
, ep
->desc
.bEndpointAddress
, ed
->state
,
315 list_empty(&ed
->td_list
) ? "" : " (has tds)");
316 td_free(ahcd
, ed
->dummy
);
322 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
326 static int admhc_get_frame_number(struct usb_hcd
*hcd
)
328 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
330 return admhc_frame_no(ahcd
);
333 static void admhc_usb_reset(struct admhcd
*ahcd
)
336 ahcd
->hc_control
= admhc_readl(ahcd
, &ahcd
->regs
->control
);
337 ahcd
->hc_control
&= OHCI_CTRL_RWC
;
338 admhc_writel(ahcd
, ahcd
->hc_control
, &ahcd
->regs
->control
);
341 ahcd
->host_control
= ADMHC_BUSS_RESET
;
342 admhc_writel(ahcd
, ahcd
->host_control
,&ahcd
->regs
->host_control
);
346 /* admhc_shutdown forcibly disables IRQs and DMA, helping kexec and
347 * other cases where the next software may expect clean state from the
348 * "firmware". this is bus-neutral, unlike shutdown() methods.
351 admhc_shutdown(struct usb_hcd
*hcd
)
355 ahcd
= hcd_to_admhcd(hcd
);
356 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
357 admhc_dma_disable(ahcd
);
358 admhc_usb_reset(ahcd
);
359 /* flush the writes */
360 admhc_writel_flush(ahcd
);
363 /*-------------------------------------------------------------------------*
365 *-------------------------------------------------------------------------*/
367 static void admhc_eds_cleanup(struct admhcd
*ahcd
)
369 if (ahcd
->ed_tails
[PIPE_INTERRUPT
]) {
370 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_INTERRUPT
]);
371 ahcd
->ed_tails
[PIPE_INTERRUPT
] = NULL
;
374 if (ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]) {
375 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]);
376 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
] = NULL
;
379 if (ahcd
->ed_tails
[PIPE_CONTROL
]) {
380 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_CONTROL
]);
381 ahcd
->ed_tails
[PIPE_CONTROL
] = NULL
;
384 if (ahcd
->ed_tails
[PIPE_BULK
]) {
385 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_BULK
]);
386 ahcd
->ed_tails
[PIPE_BULK
] = NULL
;
389 ahcd
->ed_head
= NULL
;
392 #define ED_DUMMY_INFO (ED_SPEED_FULL | ED_SKIP)
394 static int admhc_eds_init(struct admhcd
*ahcd
)
398 ed
= ed_create(ahcd
, PIPE_INTERRUPT
, ED_DUMMY_INFO
);
402 ahcd
->ed_tails
[PIPE_INTERRUPT
] = ed
;
404 ed
= ed_create(ahcd
, PIPE_ISOCHRONOUS
, ED_DUMMY_INFO
);
408 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
] = ed
;
409 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_INTERRUPT
];
410 ahcd
->ed_tails
[PIPE_INTERRUPT
]->ed_next
= ed
;
411 ahcd
->ed_tails
[PIPE_INTERRUPT
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
413 ed
= ed_create(ahcd
, PIPE_CONTROL
, ED_DUMMY_INFO
);
417 ahcd
->ed_tails
[PIPE_CONTROL
] = ed
;
418 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_ISOCHRONOUS
];
419 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]->ed_next
= ed
;
420 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
422 ed
= ed_create(ahcd
, PIPE_BULK
, ED_DUMMY_INFO
);
426 ahcd
->ed_tails
[PIPE_BULK
] = ed
;
427 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_CONTROL
];
428 ahcd
->ed_tails
[PIPE_CONTROL
]->ed_next
= ed
;
429 ahcd
->ed_tails
[PIPE_CONTROL
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
431 ahcd
->ed_head
= ahcd
->ed_tails
[PIPE_INTERRUPT
];
433 #ifdef ADMHC_VERBOSE_DEBUG
434 admhc_dump_ed(ahcd
, "ed intr", ahcd
->ed_tails
[PIPE_INTERRUPT
], 1);
435 admhc_dump_ed(ahcd
, "ed isoc", ahcd
->ed_tails
[PIPE_ISOCHRONOUS
], 1);
436 admhc_dump_ed(ahcd
, "ed ctrl", ahcd
->ed_tails
[PIPE_CONTROL
], 1);
437 admhc_dump_ed(ahcd
, "ed bulk", ahcd
->ed_tails
[PIPE_BULK
], 1);
443 admhc_eds_cleanup(ahcd
);
447 /* init memory, and kick BIOS/SMM off */
449 static int admhc_init(struct admhcd
*ahcd
)
451 struct usb_hcd
*hcd
= admhcd_to_hcd(ahcd
);
455 ahcd
->regs
= hcd
->regs
;
457 /* Disable HC interrupts */
458 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
460 /* Read the number of ports unless overridden */
461 if (ahcd
->num_ports
== 0)
462 ahcd
->num_ports
= admhc_read_rhdesc(ahcd
) & ADMHC_RH_NUMP
;
464 ret
= admhc_mem_init(ahcd
);
468 /* init dummy endpoints */
469 ret
= admhc_eds_init(ahcd
);
473 create_debug_files(ahcd
);
482 /*-------------------------------------------------------------------------*/
484 /* Start an OHCI controller, set the BUS operational
485 * resets USB and controller
488 static int admhc_run(struct admhcd
*ahcd
)
491 int first
= ahcd
->fminterval
== 0;
492 struct usb_hcd
*hcd
= admhcd_to_hcd(ahcd
);
496 /* boot firmware should have set this up (5.1.1.3.1) */
498 temp
= admhc_readl(ahcd
, &ahcd
->regs
->fminterval
);
499 ahcd
->fminterval
= temp
& ADMHC_SFI_FI_MASK
;
500 if (ahcd
->fminterval
!= FI
)
501 admhc_dbg(ahcd
, "fminterval delta %d\n",
502 ahcd
->fminterval
- FI
);
504 (FSLDP(ahcd
->fminterval
) << ADMHC_SFI_FSLDP_SHIFT
);
505 /* also: power/overcurrent flags in rhdesc */
508 #if 0 /* TODO: not applicable */
509 /* Reset USB nearly "by the book". RemoteWakeupConnected was
510 * saved if boot firmware (BIOS/SMM/...) told us it's connected,
511 * or if bus glue did the same (e.g. for PCI add-in cards with
514 if ((ahcd
->hc_control
& OHCI_CTRL_RWC
) != 0
515 && !device_may_wakeup(hcd
->self
.controller
))
516 device_init_wakeup(hcd
->self
.controller
, 1);
519 switch (ahcd
->host_control
& ADMHC_HC_BUSS
) {
520 case ADMHC_BUSS_OPER
:
523 case ADMHC_BUSS_SUSPEND
:
525 case ADMHC_BUSS_RESUME
:
526 ahcd
->host_control
= ADMHC_BUSS_RESUME
;
527 temp
= 10 /* msec wait */;
529 /* case ADMHC_BUSS_RESET: */
531 ahcd
->host_control
= ADMHC_BUSS_RESET
;
532 temp
= 50 /* msec wait */;
535 admhc_writel(ahcd
, ahcd
->host_control
, &ahcd
->regs
->host_control
);
537 /* flush the writes */
538 admhc_writel_flush(ahcd
);
541 temp
= admhc_read_rhdesc(ahcd
);
542 if (!(temp
& ADMHC_RH_NPS
)) {
543 /* power down each port */
544 for (temp
= 0; temp
< ahcd
->num_ports
; temp
++)
545 admhc_write_portstatus(ahcd
, temp
, ADMHC_PS_CPP
);
547 /* flush those writes */
548 admhc_writel_flush(ahcd
);
550 /* 2msec timelimit here means no irqs/preempt */
551 spin_lock_irq(&ahcd
->lock
);
553 admhc_writel(ahcd
, ADMHC_CTRL_SR
, &ahcd
->regs
->gencontrol
);
554 temp
= 30; /* ... allow extra time */
555 while ((admhc_readl(ahcd
, &ahcd
->regs
->gencontrol
) & ADMHC_CTRL_SR
) != 0) {
557 spin_unlock_irq(&ahcd
->lock
);
558 admhc_err(ahcd
, "USB HC reset timed out!\n");
564 /* enable HOST mode, before access any host specific register */
565 admhc_writel(ahcd
, ADMHC_CTRL_UHFE
, &ahcd
->regs
->gencontrol
);
567 /* Tell the controller where the descriptor list is */
568 admhc_writel(ahcd
, (u32
)ahcd
->ed_head
->dma
, &ahcd
->regs
->hosthead
);
570 periodic_reinit(ahcd
);
572 /* use rhsc irqs after khubd is fully initialized */
574 hcd
->uses_new_polling
= 1;
577 /* wake on ConnectStatusChange, matching external hubs */
578 admhc_writel(ahcd
, RH_HS_DRWE
, &ahcd
->regs
->roothub
.status
);
580 /* FIXME roothub_write_status (ahcd, ADMHC_RH_DRWE); */
583 /* Choose the interrupts we care about now, others later on demand */
584 admhc_intr_ack(ahcd
, ~0);
585 admhc_intr_enable(ahcd
, ADMHC_INTR_INIT
);
587 admhc_writel(ahcd
, ADMHC_RH_NPS
| ADMHC_RH_LPSC
, &ahcd
->regs
->rhdesc
);
589 /* flush those writes */
590 admhc_writel_flush(ahcd
);
592 /* start controller operations */
593 ahcd
->host_control
= ADMHC_BUSS_OPER
;
594 admhc_writel(ahcd
, ahcd
->host_control
, &ahcd
->regs
->host_control
);
597 while ((admhc_readl(ahcd
, &ahcd
->regs
->host_control
)
598 & ADMHC_HC_BUSS
) != ADMHC_BUSS_OPER
) {
600 spin_unlock_irq(&ahcd
->lock
);
601 admhc_err(ahcd
, "unable to setup operational mode!\n");
607 hcd
->state
= HC_STATE_RUNNING
;
609 ahcd
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
612 /* FIXME: enabling DMA is always failed here for an unknown reason */
613 admhc_dma_enable(ahcd
);
616 while ((admhc_readl(ahcd
, &ahcd
->regs
->host_control
)
617 & ADMHC_HC_DMAE
) != ADMHC_HC_DMAE
) {
619 spin_unlock_irq(&ahcd
->lock
);
620 admhc_err(ahcd
, "unable to enable DMA!\n");
629 spin_unlock_irq(&ahcd
->lock
);
631 mdelay(ADMHC_POTPGT
);
636 /*-------------------------------------------------------------------------*/
638 /* an interrupt happens */
640 static irqreturn_t
admhc_irq(struct usb_hcd
*hcd
)
642 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
643 struct admhcd_regs __iomem
*regs
= ahcd
->regs
;
646 ints
= admhc_readl(ahcd
, ®s
->int_status
);
647 if ((ints
& ADMHC_INTR_INTA
) == 0) {
648 /* no unmasked interrupt status is set */
652 ints
&= admhc_readl(ahcd
, ®s
->int_enable
);
654 if (ints
& ADMHC_INTR_FATI
) {
655 /* e.g. due to PCI Master/Target Abort */
657 admhc_err(ahcd
, "Fatal Error, controller disabled\n");
659 admhc_usb_reset(ahcd
);
662 if (ints
& ADMHC_INTR_BABI
) {
663 admhc_intr_disable(ahcd
, ADMHC_INTR_BABI
);
664 admhc_intr_ack(ahcd
, ADMHC_INTR_BABI
);
665 admhc_err(ahcd
, "Babble Detected\n");
668 if (ints
& ADMHC_INTR_INSM
) {
669 admhc_vdbg(ahcd
, "Root Hub Status Change\n");
670 ahcd
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
671 admhc_intr_ack(ahcd
, ADMHC_INTR_RESI
| ADMHC_INTR_INSM
);
673 /* NOTE: Vendors didn't always make the same implementation
674 * choices for RHSC. Many followed the spec; RHSC triggers
675 * on an edge, like setting and maybe clearing a port status
676 * change bit. With others it's level-triggered, active
677 * until khubd clears all the port status change bits. We'll
678 * always disable it here and rely on polling until khubd
681 admhc_intr_disable(ahcd
, ADMHC_INTR_INSM
);
682 usb_hcd_poll_rh_status(hcd
);
683 } else if (ints
& ADMHC_INTR_RESI
) {
684 /* For connect and disconnect events, we expect the controller
685 * to turn on RHSC along with RD. But for remote wakeup events
686 * this might not happen.
688 admhc_vdbg(ahcd
, "Resume Detect\n");
689 admhc_intr_ack(ahcd
, ADMHC_INTR_RESI
);
691 if (ahcd
->autostop
) {
692 spin_lock(&ahcd
->lock
);
693 admhc_rh_resume(ahcd
);
694 spin_unlock(&ahcd
->lock
);
696 usb_hcd_resume_root_hub(hcd
);
699 if (ints
& ADMHC_INTR_TDC
) {
700 admhc_vdbg(ahcd
, "Transfer Descriptor Complete\n");
701 admhc_intr_ack(ahcd
, ADMHC_INTR_TDC
);
702 if (HC_IS_RUNNING(hcd
->state
))
703 admhc_intr_disable(ahcd
, ADMHC_INTR_TDC
);
704 spin_lock(&ahcd
->lock
);
705 admhc_td_complete(ahcd
);
706 spin_unlock(&ahcd
->lock
);
707 if (HC_IS_RUNNING(hcd
->state
))
708 admhc_intr_enable(ahcd
, ADMHC_INTR_TDC
);
711 if (ints
& ADMHC_INTR_SO
) {
712 /* could track INTR_SO to reduce available PCI/... bandwidth */
713 admhc_vdbg(ahcd
, "Schedule Overrun\n");
717 spin_lock(&ahcd
->lock
);
718 if (ahcd
->ed_rm_list
)
719 finish_unlinks(ahcd
, admhc_frame_no(ahcd
));
721 if ((ints
& ADMHC_INTR_SOFI
) != 0 && !ahcd
->ed_rm_list
722 && HC_IS_RUNNING(hcd
->state
))
723 admhc_intr_disable(ahcd
, ADMHC_INTR_SOFI
);
724 spin_unlock(&ahcd
->lock
);
726 if (ints
& ADMHC_INTR_SOFI
) {
727 admhc_vdbg(ahcd
, "Start Of Frame\n");
728 spin_lock(&ahcd
->lock
);
730 /* handle any pending ED removes */
731 finish_unlinks(ahcd
, admhc_frameno(ahcd
));
733 /* leaving INTR_SOFI enabled when there's still unlinking
734 * to be done in the (next frame).
736 if ((ahcd
->ed_rm_list
== NULL
) ||
737 HC_IS_RUNNING(hcd
->state
) == 0)
739 * disable INTR_SOFI if there are no unlinking to be
740 * done (in the next frame)
742 admhc_intr_disable(ahcd
, ADMHC_INTR_SOFI
);
744 spin_unlock(&ahcd
->lock
);
748 if (HC_IS_RUNNING(hcd
->state
)) {
749 admhc_intr_ack(ahcd
, ints
);
750 admhc_intr_enable(ahcd
, ADMHC_INTR_MIE
);
751 admhc_writel_flush(ahcd
);
757 /*-------------------------------------------------------------------------*/
759 static void admhc_stop(struct usb_hcd
*hcd
)
761 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
765 flush_scheduled_work();
767 admhc_usb_reset(ahcd
);
768 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
770 free_irq(hcd
->irq
, hcd
);
773 remove_debug_files(ahcd
);
774 admhc_eds_cleanup(ahcd
);
775 admhc_mem_cleanup(ahcd
);
778 /*-------------------------------------------------------------------------*/
780 #ifdef CONFIG_MIPS_ADM5120
781 #include "adm5120-drv.c"
782 #define PLATFORM_DRIVER usb_hcd_adm5120_driver
785 #if !defined(PLATFORM_DRIVER)
786 #error "missing bus glue for admhc-hcd"
789 #define DRIVER_INFO DRIVER_DESC " version " DRIVER_VERSION
791 static int __init
admhc_hcd_mod_init(void)
798 pr_info("%s: " DRIVER_INFO
"\n", hcd_name
);
799 pr_info("%s: block sizes: ed %Zd td %Zd\n", hcd_name
,
800 sizeof (struct ed
), sizeof (struct td
));
802 #ifdef PLATFORM_DRIVER
803 ret
= platform_driver_register(&PLATFORM_DRIVER
);
810 #ifdef PLATFORM_DRIVER
811 platform_driver_unregister(&PLATFORM_DRIVER
);
816 module_init(admhc_hcd_mod_init
);
818 static void __exit
admhc_hcd_mod_exit(void)
820 platform_driver_unregister(&PLATFORM_DRIVER
);
822 module_exit(admhc_hcd_mod_exit
);
824 MODULE_AUTHOR(DRIVER_AUTHOR
);
825 MODULE_DESCRIPTION(DRIVER_INFO
);
826 MODULE_VERSION(DRIVER_VERSION
);
827 MODULE_LICENSE("GPL v2");
This page took 0.084345 seconds and 5 git commands to generate.