fae5aa64fa3ee9cb95019bafe2ad2fdfba3ad22d
2 * OHCI HCD (Host Controller Driver) for USB.
4 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
7 * [ Initialisation is based on Linus' ]
8 * [ uhci code and gregs ahcd fragments ]
9 * [ (C) Copyright 1999 Linus Torvalds ]
10 * [ (C) Copyright 1999 Gregory P. Smith]
13 * OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
14 * interfaces (though some non-x86 Intel chips use it). It supports
15 * smarter hardware than UHCI. A download link for the spec available
16 * through the http://www.usb.org website.
18 * This file is licenced under the GPL.
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 "v0.02"
49 #define DRIVER_AUTHOR "Gabor Juhos <juhosg at openwrt.org>"
50 #define DRIVER_DESC "ADMtek USB 1.1 Host Controller Driver"
52 /*-------------------------------------------------------------------------*/
54 #define ADMHC_VERBOSE_DEBUG /* not always helpful */
55 #undef LATE_ED_SCHEDULE
57 /* For initializing controller (mask in an HCFS mode too) */
58 #define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
60 #define ADMHC_INTR_INIT \
61 ( ADMHC_INTR_MIE | ADMHC_INTR_INSM | ADMHC_INTR_FATI \
62 | ADMHC_INTR_RESI | ADMHC_INTR_TDC | ADMHC_INTR_BABI )
64 /*-------------------------------------------------------------------------*/
66 static const char hcd_name
[] = "admhc-hcd";
68 #define STATECHANGE_DELAY msecs_to_jiffies(300)
72 static void admhc_dump(struct admhcd
*ahcd
, int verbose
);
73 static int admhc_init(struct admhcd
*ahcd
);
74 static void admhc_stop(struct usb_hcd
*hcd
);
76 #include "adm5120-hub.c"
77 #include "adm5120-dbg.c"
78 #include "adm5120-mem.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 usb_host_endpoint
*ep
,
87 struct urb
*urb
, gfp_t mem_flags
)
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
));
100 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
103 /* every endpoint has an ed, locate and maybe (re)initialize it */
104 ed
= ed_get(ahcd
, 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 ... */
117 if (urb
->transfer_buffer_length
)
121 /* one TD for every 4096 Bytes (can be upto 8K) */
122 td_cnt
= urb
->transfer_buffer_length
/ TD_DATALEN_MAX
;
123 /* ... and for any remaining bytes ... */
124 if ((urb
->transfer_buffer_length
% TD_DATALEN_MAX
) != 0)
126 /* ... and maybe a zero length packet to wrap it up */
129 else if ((urb
->transfer_flags
& URB_ZERO_PACKET
) != 0
130 && (urb
->transfer_buffer_length
131 % usb_maxpacket(urb
->dev
, pipe
,
132 usb_pipeout (pipe
))) == 0)
137 * for Interrupt IN/OUT transactions, each ED contains
139 * TODO: check transfer_buffer_length?
143 case PIPE_ISOCHRONOUS
:
144 /* number of packets from URB */
145 td_cnt
= urb
->number_of_packets
;
149 admhc_err(ahcd
, "bad EP type %d", ed
->type
);
153 urb_priv
= urb_priv_alloc(ahcd
, td_cnt
, mem_flags
);
160 spin_lock_irqsave(&ahcd
->lock
, flags
);
161 /* don't submit to a dead HC */
162 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
166 if (!HC_IS_RUNNING(hcd
->state
)) {
171 /* in case of unlink-during-submit */
172 spin_lock(&urb
->lock
);
173 if (urb
->status
!= -EINPROGRESS
) {
174 spin_unlock(&urb
->lock
);
175 urb
->hcpriv
= urb_priv
;
176 finish_urb(ahcd
, urb
);
181 if (ed
->type
== PIPE_ISOCHRONOUS
) {
182 if (ed
->state
== ED_NEW
) {
183 u16 frame
= admhc_frame_no(ahcd
);
185 /* delay a few frames before the first TD */
186 frame
+= max_t (u16
, 8, ed
->interval
);
187 frame
&= ~(ed
->interval
- 1);
189 urb
->start_frame
= frame
;
191 /* yes, only URB_ISO_ASAP is supported, and
192 * urb->start_frame is never used as input.
195 urb
->start_frame
= ed
->last_iso
+ ed
->interval
;
198 urb
->hcpriv
= urb_priv
;
199 td_submit_urb(ahcd
, urb_priv
->urb
);
201 /* append it to the ED's queue */
202 list_add_tail(&urb_priv
->pending
, &ed
->urb_pending
);
204 /* schedule the ED */
205 retval
= ed_schedule(ahcd
, ed
);
208 spin_unlock(&urb
->lock
);
211 urb_priv
= urb
->hcpriv
;
212 urb_priv_free(ahcd
, urb_priv
);
215 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
220 * decouple the URB from the HC queues (TDs, urb_priv); it's
221 * already marked using urb->status. reporting is always done
222 * asynchronously, and we might be dealing with an urb that's
223 * partially transferred, or an ED with other urbs being unlinked.
225 static int admhc_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
)
227 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
235 spin_lock_irqsave(&ahcd
->lock
, flags
);
237 #ifdef ADMHC_VERBOSE_DEBUG
238 urb_print(ahcd
, urb
, "DEQEUE", 1);
241 if (HC_IS_RUNNING(hcd
->state
)) {
242 /* Unless an IRQ completed the unlink while it was being
243 * handed to us, flag it for unlink and giveback, and force
244 * some upcoming INTR_SF to call finish_unlinks()
246 if (up
->ed
->urb_active
!= up
) {
247 list_del(&up
->pending
);
248 finish_urb(ahcd
, urb
);
250 ed_start_deschedule(ahcd
, up
->ed
);
254 * with HC dead, we won't respect hc queue pointers
255 * any more ... just clean up every urb's memory.
257 if (up
->ed
->urb_active
!= up
) {
258 list_del(&up
->pending
);
259 finish_urb(ahcd
, urb
);
261 finish_urb(ahcd
, urb
);
262 up
->ed
->urb_active
= NULL
;
263 up
->ed
->state
= ED_IDLE
;
266 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
271 /*-------------------------------------------------------------------------*/
273 /* frees config/altsetting state for endpoints,
274 * including ED memory, dummy TD, and bulk/intr data toggle
276 static void admhc_endpoint_disable(struct usb_hcd
*hcd
,
277 struct usb_host_endpoint
*ep
)
279 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
281 struct ed
*ed
= ep
->hcpriv
;
282 unsigned limit
= 1000;
284 /* ASSERT: any requests/urbs are being unlinked */
285 /* ASSERT: nobody can be submitting urbs for this any more */
290 #ifdef ADMHC_VERBOSE_DEBUG
291 spin_lock_irqsave(&ahcd
->lock
, flags
);
292 admhc_dump_ed(ahcd
, "EP-DISABLE", ed
, 1);
293 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
297 spin_lock_irqsave(&ahcd
->lock
, flags
);
299 if (!HC_IS_RUNNING(hcd
->state
)) {
301 ed
->state
= ED_UNLINK
;
302 admhc_finish_unlinks(ahcd
, 0);
306 case ED_UNLINK
: /* wait for hw to finish? */
307 /* major IRQ delivery trouble loses INTR_SOFI too... */
309 admhc_warn(ahcd
, "IRQ INTR_SOFI lossage\n");
312 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
313 schedule_timeout_uninterruptible(1);
316 case ED_NEW
: /* fully unlinked */
317 if (list_empty(&ed
->urb_pending
)) {
318 td_free(ahcd
, ed
->dummy
);
322 /* else FALL THROUGH */
324 /* caller was supposed to have unlinked any requests;
325 * that's not our job. can't recover; must leak ed.
327 admhc_err(ahcd
, "leak ed %p (#%02x) %s act %p%s\n",
328 ed
, ep
->desc
.bEndpointAddress
,
329 ed_statestring(ed
->state
),
331 list_empty(&ed
->urb_pending
) ? "" : " (has urbs)");
337 spin_unlock_irqrestore(&ahcd
->lock
, flags
);
341 static int admhc_get_frame(struct usb_hcd
*hcd
)
343 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
345 return admhc_frame_no(ahcd
);
348 static void admhc_usb_reset(struct admhcd
*ahcd
)
350 ahcd
->host_control
= ADMHC_BUSS_RESET
;
351 admhc_writel(ahcd
, ahcd
->host_control
,&ahcd
->regs
->host_control
);
354 /* admhc_shutdown forcibly disables IRQs and DMA, helping kexec and
355 * other cases where the next software may expect clean state from the
356 * "firmware". this is bus-neutral, unlike shutdown() methods.
359 admhc_shutdown(struct usb_hcd
*hcd
)
363 ahcd
= hcd_to_admhcd(hcd
);
364 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
365 admhc_dma_disable(ahcd
);
366 admhc_usb_reset(ahcd
);
367 /* flush the writes */
368 admhc_writel_flush(ahcd
);
371 /*-------------------------------------------------------------------------*
373 *-------------------------------------------------------------------------*/
375 static void admhc_eds_cleanup(struct admhcd
*ahcd
)
377 if (ahcd
->ed_tails
[PIPE_INTERRUPT
]) {
378 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_INTERRUPT
]);
379 ahcd
->ed_tails
[PIPE_INTERRUPT
] = NULL
;
382 if (ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]) {
383 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]);
384 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
] = NULL
;
387 if (ahcd
->ed_tails
[PIPE_CONTROL
]) {
388 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_CONTROL
]);
389 ahcd
->ed_tails
[PIPE_CONTROL
] = NULL
;
392 if (ahcd
->ed_tails
[PIPE_BULK
]) {
393 ed_free(ahcd
, ahcd
->ed_tails
[PIPE_BULK
]);
394 ahcd
->ed_tails
[PIPE_BULK
] = NULL
;
397 ahcd
->ed_head
= NULL
;
400 #define ED_DUMMY_INFO (ED_SPEED_FULL | ED_SKIP)
402 static int admhc_eds_init(struct admhcd
*ahcd
)
406 ed
= ed_create(ahcd
, PIPE_INTERRUPT
, ED_DUMMY_INFO
);
410 ahcd
->ed_tails
[PIPE_INTERRUPT
] = ed
;
412 ed
= ed_create(ahcd
, PIPE_ISOCHRONOUS
, ED_DUMMY_INFO
);
416 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
] = ed
;
417 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_INTERRUPT
];
418 ahcd
->ed_tails
[PIPE_INTERRUPT
]->ed_next
= ed
;
419 ahcd
->ed_tails
[PIPE_INTERRUPT
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
421 ed
= ed_create(ahcd
, PIPE_CONTROL
, ED_DUMMY_INFO
);
425 ahcd
->ed_tails
[PIPE_CONTROL
] = ed
;
426 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_ISOCHRONOUS
];
427 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]->ed_next
= ed
;
428 ahcd
->ed_tails
[PIPE_ISOCHRONOUS
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
430 ed
= ed_create(ahcd
, PIPE_BULK
, ED_DUMMY_INFO
);
434 ahcd
->ed_tails
[PIPE_BULK
] = ed
;
435 ed
->ed_prev
= ahcd
->ed_tails
[PIPE_CONTROL
];
436 ahcd
->ed_tails
[PIPE_CONTROL
]->ed_next
= ed
;
437 ahcd
->ed_tails
[PIPE_CONTROL
]->hwNextED
= cpu_to_hc32(ahcd
, ed
->dma
);
439 ahcd
->ed_head
= ahcd
->ed_tails
[PIPE_INTERRUPT
];
441 #ifdef ADMHC_VERBOSE_DEBUG
442 admhc_dump_ed(ahcd
, "ed intr", ahcd
->ed_tails
[PIPE_INTERRUPT
], 1);
443 admhc_dump_ed(ahcd
, "ed isoc", ahcd
->ed_tails
[PIPE_ISOCHRONOUS
], 1);
444 admhc_dump_ed(ahcd
, "ed ctrl", ahcd
->ed_tails
[PIPE_CONTROL
], 1);
445 admhc_dump_ed(ahcd
, "ed bulk", ahcd
->ed_tails
[PIPE_BULK
], 1);
451 admhc_eds_cleanup(ahcd
);
455 /* init memory, and kick BIOS/SMM off */
457 static int admhc_init(struct admhcd
*ahcd
)
459 struct usb_hcd
*hcd
= admhcd_to_hcd(ahcd
);
463 ahcd
->regs
= hcd
->regs
;
465 /* Disable HC interrupts */
466 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
468 /* Read the number of ports unless overridden */
469 if (ahcd
->num_ports
== 0)
470 ahcd
->num_ports
= admhc_get_rhdesc(ahcd
) & ADMHC_RH_NUMP
;
472 ret
= admhc_mem_init(ahcd
);
476 /* init dummy endpoints */
477 ret
= admhc_eds_init(ahcd
);
481 create_debug_files(ahcd
);
490 /*-------------------------------------------------------------------------*/
492 /* Start an OHCI controller, set the BUS operational
493 * resets USB and controller
496 static int admhc_run(struct admhcd
*ahcd
)
499 int first
= ahcd
->fminterval
== 0;
500 struct usb_hcd
*hcd
= admhcd_to_hcd(ahcd
);
504 /* boot firmware should have set this up (5.1.1.3.1) */
506 temp
= admhc_readl(ahcd
, &ahcd
->regs
->fminterval
);
507 ahcd
->fminterval
= temp
& ADMHC_SFI_FI_MASK
;
508 if (ahcd
->fminterval
!= FI
)
509 admhc_dbg(ahcd
, "fminterval delta %d\n",
510 ahcd
->fminterval
- FI
);
512 (FSLDP (ahcd
->fminterval
) << ADMHC_SFI_FSLDP_SHIFT
);
513 /* also: power/overcurrent flags in rhdesc */
516 switch (ahcd
->host_control
& ADMHC_HC_BUSS
) {
517 case ADMHC_BUSS_OPER
:
520 case ADMHC_BUSS_SUSPEND
:
522 case ADMHC_BUSS_RESUME
:
523 ahcd
->host_control
= ADMHC_BUSS_RESUME
;
524 temp
= 10 /* msec wait */;
526 /* case ADMHC_BUSS_RESET: */
528 ahcd
->host_control
= ADMHC_BUSS_RESET
;
529 temp
= 50 /* msec wait */;
532 admhc_writel(ahcd
, ahcd
->host_control
, &ahcd
->regs
->host_control
);
534 /* flush the writes */
535 admhc_writel_flush(ahcd
);
538 temp
= admhc_get_rhdesc(ahcd
);
539 if (!(temp
& ADMHC_RH_NPS
)) {
540 /* power down each port */
541 for (temp
= 0; temp
< ahcd
->num_ports
; temp
++)
542 admhc_writel(ahcd
, ADMHC_PS_CPP
,
543 &ahcd
->regs
->portstatus
[temp
]);
545 /* flush those writes */
546 admhc_writel_flush(ahcd
);
548 /* 2msec timelimit here means no irqs/preempt */
549 spin_lock_irq(&ahcd
->lock
);
552 admhc_writel(ahcd
, ADMHC_CTRL_SR
, &ahcd
->regs
->gencontrol
);
553 temp
= 30; /* ... allow extra time */
554 while ((admhc_readl(ahcd
, &ahcd
->regs
->gencontrol
) & ADMHC_CTRL_SR
) != 0) {
556 spin_unlock_irq(&ahcd
->lock
);
557 admhc_err(ahcd
, "USB HC reset timed out!\n");
563 /* enable HOST mode, before access any host specific register */
564 admhc_writel(ahcd
, ADMHC_CTRL_UHFE
, &ahcd
->regs
->gencontrol
);
566 /* Tell the controller where the descriptor list is */
567 admhc_writel(ahcd
, (u32
)ahcd
->ed_head
->dma
, &ahcd
->regs
->hosthead
);
569 periodic_reinit(ahcd
);
571 /* use rhsc irqs after khubd is fully initialized */
573 hcd
->uses_new_polling
= 1;
576 /* wake on ConnectStatusChange, matching external hubs */
577 admhc_writel(ahcd
, RH_HS_DRWE
, &ahcd
->regs
->roothub
.status
);
579 /* FIXME roothub_write_status (ahcd, ADMHC_RH_DRWE); */
582 /* Choose the interrupts we care about now, others later on demand */
583 admhc_intr_ack(ahcd
, ~0);
584 admhc_intr_enable(ahcd
, ADMHC_INTR_INIT
);
586 admhc_writel(ahcd
, ADMHC_RH_NPS
| ADMHC_RH_LPSC
, &ahcd
->regs
->rhdesc
);
588 /* flush those writes */
589 admhc_writel_flush(ahcd
);
591 /* start controller operations */
592 ahcd
->host_control
= ADMHC_BUSS_OPER
;
593 admhc_writel(ahcd
, ahcd
->host_control
, &ahcd
->regs
->host_control
);
596 while ((admhc_readl(ahcd
, &ahcd
->regs
->host_control
)
597 & ADMHC_HC_BUSS
) != ADMHC_BUSS_OPER
) {
599 spin_unlock_irq(&ahcd
->lock
);
600 admhc_err(ahcd
, "unable to setup operational mode!\n");
606 hcd
->state
= HC_STATE_RUNNING
;
608 ahcd
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
611 /* FIXME: enabling DMA is always failed here for an unknown reason */
612 admhc_dma_enable(ahcd
);
615 while ((admhc_readl(ahcd
, &ahcd
->regs
->host_control
)
616 & ADMHC_HC_DMAE
) != ADMHC_HC_DMAE
) {
618 spin_unlock_irq(&ahcd
->lock
);
619 admhc_err(ahcd
, "unable to enable DMA!\n");
628 spin_unlock_irq(&ahcd
->lock
);
630 mdelay(ADMHC_POTPGT
);
635 /*-------------------------------------------------------------------------*/
637 /* an interrupt happens */
639 static irqreturn_t
admhc_irq(struct usb_hcd
*hcd
)
641 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
642 struct admhcd_regs __iomem
*regs
= ahcd
->regs
;
645 ints
= admhc_readl(ahcd
, ®s
->int_status
);
646 if ((ints
& ADMHC_INTR_INTA
) == 0) {
647 /* no unmasked interrupt status is set */
651 ints
&= admhc_readl(ahcd
, ®s
->int_enable
);
653 spin_lock(&ahcd
->lock
);
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_MIE
);
664 admhc_err(ahcd
, "Babble Detected\n");
666 admhc_usb_reset(ahcd
);
669 if (ints
& ADMHC_INTR_INSM
) {
670 admhc_vdbg(ahcd
, "Root Hub Status Change\n");
671 ahcd
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
672 admhc_intr_ack(ahcd
, ADMHC_INTR_RESI
| ADMHC_INTR_INSM
);
674 /* NOTE: Vendors didn't always make the same implementation
675 * choices for RHSC. Many followed the spec; RHSC triggers
676 * on an edge, like setting and maybe clearing a port status
677 * change bit. With others it's level-triggered, active
678 * until khubd clears all the port status change bits. We'll
679 * always disable it here and rely on polling until khubd
682 admhc_intr_disable(ahcd
, ADMHC_INTR_INSM
);
683 usb_hcd_poll_rh_status(hcd
);
684 } else if (ints
& ADMHC_INTR_RESI
) {
685 /* For connect and disconnect events, we expect the controller
686 * to turn on RHSC along with RD. But for remote wakeup events
687 * this might not happen.
689 admhc_vdbg(ahcd
, "Resume Detect\n");
690 admhc_intr_ack(ahcd
, ADMHC_INTR_RESI
);
692 if (ahcd
->autostop
) {
693 admhc_rh_resume(ahcd
);
695 usb_hcd_resume_root_hub(hcd
);
698 if (ints
& ADMHC_INTR_TDC
) {
699 admhc_intr_ack(ahcd
, ADMHC_INTR_TDC
);
700 if (HC_IS_RUNNING(hcd
->state
))
701 admhc_intr_disable(ahcd
, ADMHC_INTR_TDC
);
702 admhc_vdbg(ahcd
, "Transfer Descriptor Complete\n");
703 admhc_td_complete(ahcd
);
704 if (HC_IS_RUNNING(hcd
->state
))
705 admhc_intr_enable(ahcd
, ADMHC_INTR_TDC
);
708 if (ints
& ADMHC_INTR_SO
) {
709 /* could track INTR_SO to reduce available PCI/... bandwidth */
710 admhc_vdbg(ahcd
, "Schedule Overrun\n");
713 if (ints
& ADMHC_INTR_SOFI
) {
714 admhc_intr_ack(ahcd
, ADMHC_INTR_SOFI
);
715 /* handle any pending ED removes */
716 admhc_finish_unlinks(ahcd
, admhc_frame_no(ahcd
));
717 admhc_sof_refill(ahcd
);
720 if (HC_IS_RUNNING(hcd
->state
)) {
721 admhc_intr_ack(ahcd
, ints
);
722 admhc_intr_enable(ahcd
, ADMHC_INTR_MIE
);
723 admhc_writel_flush(ahcd
);
725 spin_unlock(&ahcd
->lock
);
730 /*-------------------------------------------------------------------------*/
732 static void admhc_stop(struct usb_hcd
*hcd
)
734 struct admhcd
*ahcd
= hcd_to_admhcd(hcd
);
738 flush_scheduled_work();
740 admhc_usb_reset(ahcd
);
741 admhc_intr_disable(ahcd
, ADMHC_INTR_MIE
);
743 free_irq(hcd
->irq
, hcd
);
746 remove_debug_files(ahcd
);
747 admhc_eds_cleanup(ahcd
);
748 admhc_mem_cleanup(ahcd
);
751 /*-------------------------------------------------------------------------*/
753 /* must not be called from interrupt context */
757 static int admhc_restart(struct admhcd
*ahcd
)
761 struct urb_priv
*priv
;
763 /* mark any devices gone, so they do nothing till khubd disconnects.
764 * recycle any "live" eds/tds (and urbs) right away.
765 * later, khubd disconnect processing will recycle the other state,
766 * (either as disconnect/reconnect, or maybe someday as a reset).
768 spin_lock_irq(&ahcd
->lock
);
770 usb_root_hub_lost_power(admhcd_to_hcd(ahcd
)->self
.root_hub
);
771 if (!list_empty(&ahcd
->pending
))
772 admhc_dbg(ahcd
, "abort schedule...\n");
773 list_for_each_entry(priv
, &ahcd
->pending
, pending
) {
774 struct urb
*urb
= priv
->td
[0]->urb
;
775 struct ed
*ed
= priv
->ed
;
779 ed
->state
= ED_UNLINK
;
780 ed
->hwINFO
|= cpu_to_hc32(ahcd
, ED_DEQUEUE
);
781 ed_deschedule (ahcd
, ed
);
783 ed
->ed_next
= ahcd
->ed_rm_list
;
785 ahcd
->ed_rm_list
= ed
;
790 admhc_dbg(ahcd
, "bogus ed %p state %d\n",
794 spin_lock(&urb
->lock
);
795 urb
->status
= -ESHUTDOWN
;
796 spin_unlock(&urb
->lock
);
798 finish_unlinks(ahcd
, 0);
799 spin_unlock_irq(&ahcd
->lock
);
801 /* paranoia, in case that didn't work: */
803 /* empty the interrupt branches */
804 for (i
= 0; i
< NUM_INTS
; i
++) ahcd
->load
[i
] = 0;
805 for (i
= 0; i
< NUM_INTS
; i
++) ahcd
->hcca
->int_table
[i
] = 0;
807 /* no EDs to remove */
808 ahcd
->ed_rm_list
= NULL
;
810 /* empty control and bulk lists */
811 ahcd
->ed_controltail
= NULL
;
812 ahcd
->ed_bulktail
= NULL
;
814 if ((temp
= admhc_run(ahcd
)) < 0) {
815 admhc_err(ahcd
, "can't restart, %d\n", temp
);
818 /* here we "know" root ports should always stay powered,
819 * and that if we try to turn them back on the root hub
820 * will respond to CSC processing.
824 admhc_writel(ahcd
, RH_PS_PSS
,
825 &ahcd
->regs
->portstatus
[i
]);
826 admhc_dbg(ahcd
, "restart complete\n");
832 /*-------------------------------------------------------------------------*/
834 #ifdef CONFIG_MIPS_ADM5120
835 #include "adm5120-drv.c"
836 #define PLATFORM_DRIVER usb_hcd_adm5120_driver
839 #if !defined(PLATFORM_DRIVER)
840 #error "missing bus glue for admhc-hcd"
843 #define DRIVER_INFO DRIVER_DESC " " DRIVER_VERSION
845 static int __init
admhc_hcd_mod_init(void)
852 pr_info("%s: " DRIVER_INFO
"\n", hcd_name
);
853 pr_info("%s: block sizes: ed %Zd td %Zd\n", hcd_name
,
854 sizeof (struct ed
), sizeof (struct td
));
856 #ifdef PLATFORM_DRIVER
857 retval
= platform_driver_register(&PLATFORM_DRIVER
);
864 #ifdef PLATFORM_DRIVER
865 platform_driver_unregister(&PLATFORM_DRIVER
);
870 module_init(admhc_hcd_mod_init
);
872 static void __exit
admhc_hcd_mod_exit(void)
874 platform_driver_unregister(&PLATFORM_DRIVER
);
876 module_exit(admhc_hcd_mod_exit
);
878 MODULE_AUTHOR(DRIVER_AUTHOR
);
879 MODULE_DESCRIPTION(DRIVER_INFO
);
880 MODULE_LICENSE("GPL");
This page took 0.102831 seconds and 3 git commands to generate.