2 * Copyright (c) 2001-2002 by David Brownell
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #ifndef __LINUX_EHCI_HCD_H
20 #define __LINUX_EHCI_HCD_H
22 /* definitions used for the EHCI driver */
25 * __hc32 and __hc16 are "Host Controller" types, they may be equivalent to
26 * __leXX (normally) or __beXX (given EHCI_BIG_ENDIAN_DESC), depending on
27 * the host controller implementation.
29 * To facilitate the strongest possible byte-order checking from "sparse"
30 * and so on, we use __leXX unless that's not practical.
32 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
33 typedef __u32 __bitwise __hc32
;
34 typedef __u16 __bitwise __hc16
;
40 /* statistics can be kept for tuning/monitoring */
41 #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
50 unsigned long lost_iaa
;
52 /* termination of urbs from core */
53 unsigned long complete
;
57 /* ehci_hcd->lock guards shared data against other CPUs:
58 * ehci_hcd: async, unlink, periodic (and shadow), ...
59 * usb_host_endpoint: hcpriv
60 * ehci_qh: qh_next, qtd_list
63 * Also, hold this lock when talking to HC registers or
64 * when updating hw_* fields in shared qh/qtd/... structures.
67 #define EHCI_MAX_ROOT_PORTS 15 /* see HCS_N_PORTS */
70 * ehci_rh_state values of EHCI_RH_RUNNING or above mean that the
71 * controller may be doing DMA. Lower values mean there's no DMA.
81 * Timer events, ordered by increasing delay length.
82 * Always update event_delays_ns[] and event_handlers[] (defined in
83 * ehci-timer.c) in parallel with this list.
85 enum ehci_hrtimer_event
{
86 EHCI_HRTIMER_POLL_ASS
, /* Poll for async schedule off */
87 EHCI_HRTIMER_POLL_PSS
, /* Poll for periodic schedule off */
88 EHCI_HRTIMER_POLL_DEAD
, /* Wait for dead controller to stop */
89 EHCI_HRTIMER_UNLINK_INTR
, /* Wait for interrupt QH unlink */
90 EHCI_HRTIMER_FREE_ITDS
, /* Wait for unused iTDs and siTDs */
91 EHCI_HRTIMER_START_UNLINK_INTR
, /* Unlink empty interrupt QHs */
92 EHCI_HRTIMER_ASYNC_UNLINKS
, /* Unlink empty async QHs */
93 EHCI_HRTIMER_IAA_WATCHDOG
, /* Handle lost IAA interrupts */
94 EHCI_HRTIMER_DISABLE_PERIODIC
, /* Wait to disable periodic sched */
95 EHCI_HRTIMER_DISABLE_ASYNC
, /* Wait to disable async sched */
96 EHCI_HRTIMER_IO_WATCHDOG
, /* Check for missing IRQs */
97 EHCI_HRTIMER_NUM_EVENTS
/* Must come last */
99 #define EHCI_HRTIMER_NO_EVENT 99
101 struct ehci_hcd
{ /* one per controller */
103 enum ehci_hrtimer_event next_hrtimer_event
;
104 unsigned enabled_hrtimer_events
;
105 ktime_t hr_timeouts
[EHCI_HRTIMER_NUM_EVENTS
];
106 struct hrtimer hrtimer
;
112 /* glue to PCI and HCD framework */
113 struct ehci_caps __iomem
*caps
;
114 struct ehci_regs __iomem
*regs
;
115 struct ehci_dbg_port __iomem
*debug
;
117 __u32 hcs_params
; /* cached register copy */
119 enum ehci_rh_state rh_state
;
121 /* general schedule support */
124 bool intr_unlinking
:1;
125 bool iaa_in_progress
:1;
126 bool async_unlinking
:1;
128 struct ehci_qh
*qh_scan_next
;
130 /* async schedule support */
131 struct ehci_qh
*async
;
132 struct ehci_qh
*dummy
; /* For AMD quirk use */
133 struct list_head async_unlink
;
134 struct list_head async_idle
;
135 unsigned async_unlink_cycle
;
136 unsigned async_count
; /* async activity count */
138 /* periodic schedule support */
139 #define DEFAULT_I_TDPS 1024 /* some HCs can do less */
140 unsigned periodic_size
;
141 __hc32
*periodic
; /* hw periodic table */
142 dma_addr_t periodic_dma
;
143 struct list_head intr_qh_list
;
144 unsigned i_thresh
; /* uframes HC might cache */
146 union ehci_shadow
*pshadow
; /* mirror hw periodic table */
147 struct list_head intr_unlink_wait
;
148 struct list_head intr_unlink
;
149 unsigned intr_unlink_wait_cycle
;
150 unsigned intr_unlink_cycle
;
151 unsigned now_frame
; /* frame from HC hardware */
152 unsigned last_iso_frame
; /* last frame scanned for iso */
153 unsigned intr_count
; /* intr activity count */
154 unsigned isoc_count
; /* isoc activity count */
155 unsigned periodic_count
; /* periodic activity count */
156 unsigned uframe_periodic_max
; /* max periodic time per uframe */
159 /* list of itds & sitds completed while now_frame was still active */
160 struct list_head cached_itd_list
;
161 struct ehci_itd
*last_itd_to_free
;
162 struct list_head cached_sitd_list
;
163 struct ehci_sitd
*last_sitd_to_free
;
165 /* per root hub port */
166 unsigned long reset_done
[EHCI_MAX_ROOT_PORTS
];
168 /* bit vectors (one bit per port) */
169 unsigned long bus_suspended
; /* which ports were
170 already suspended at the start of a bus suspend */
171 unsigned long companion_ports
; /* which ports are
172 dedicated to the companion controller */
173 unsigned long owned_ports
; /* which ports are
174 owned by the companion during a bus suspend */
175 unsigned long port_c_suspend
; /* which ports have
176 the change-suspend feature turned on */
177 unsigned long suspended_ports
; /* which ports are
179 unsigned long resuming_ports
; /* which ports have
182 /* per-HC memory pools (could be per-bus, but ...) */
183 struct dma_pool
*qh_pool
; /* qh per active urb */
184 struct dma_pool
*qtd_pool
; /* one or more per qh */
185 struct dma_pool
*itd_pool
; /* itd per iso urb */
186 struct dma_pool
*sitd_pool
; /* sitd per split iso urb */
188 unsigned random_frame
;
189 unsigned long next_statechange
;
190 ktime_t last_periodic_enable
;
194 unsigned no_selective_suspend
:1;
195 unsigned has_fsl_port_bug
:1; /* FreeScale */
196 unsigned big_endian_mmio
:1;
197 unsigned big_endian_desc
:1;
198 unsigned big_endian_capbase
:1;
199 unsigned has_amcc_usb23
:1;
200 unsigned need_io_watchdog
:1;
201 unsigned amd_pll_fix
:1;
202 unsigned use_dummy_qh
:1; /* AMD Frame List table quirk*/
203 unsigned has_synopsys_hc_bug
:1; /* Synopsys HC */
204 unsigned frame_index_bug
:1; /* MosChip (AKA NetMos) */
205 unsigned need_oc_pp_cycle
:1; /* MPC834X port power */
206 unsigned imx28_write_fix
:1; /* For Freescale i.MX28 */
208 /* required for usb32 quirk */
209 #define OHCI_CTRL_HCFS (3 << 6)
210 #define OHCI_USB_OPER (2 << 6)
211 #define OHCI_USB_SUSPEND (3 << 6)
213 #define OHCI_HCCTRL_OFFSET 0x4
214 #define OHCI_HCCTRL_LEN 0x4
215 __hc32
*ohci_hcctrl_reg
;
216 unsigned has_hostpc
:1;
217 unsigned has_tdi_phy_lpm
:1;
218 unsigned has_ppcd
:1; /* support per-port change bits */
219 u8 sbrn
; /* packed release number */
223 struct ehci_stats stats
;
224 # define COUNT(x) do { (x)++; } while (0)
226 # define COUNT(x) do {} while (0)
230 #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
231 struct dentry
*debug_dir
;
234 /* platform-specific data -- must come last */
235 unsigned long priv
[0] __aligned(sizeof(s64
));
238 /* convert between an HCD pointer and the corresponding EHCI_HCD */
239 static inline struct ehci_hcd
*hcd_to_ehci (struct usb_hcd
*hcd
)
241 return (struct ehci_hcd
*) (hcd
->hcd_priv
);
243 static inline struct usb_hcd
*ehci_to_hcd (struct ehci_hcd
*ehci
)
245 return container_of ((void *) ehci
, struct usb_hcd
, hcd_priv
);
248 /*-------------------------------------------------------------------------*/
250 #include <linux/usb/ehci_def.h>
252 /*-------------------------------------------------------------------------*/
254 #define QTD_NEXT(ehci, dma) cpu_to_hc32(ehci, (u32)dma)
257 * EHCI Specification 0.95 Section 3.5
258 * QTD: describe data transfer components (buffer, direction, ...)
259 * See Fig 3-6 "Queue Element Transfer Descriptor Block Diagram".
261 * These are associated only with "QH" (Queue Head) structures,
262 * used with control, bulk, and interrupt transfers.
265 /* first part defined by EHCI spec */
266 __hc32 hw_next
; /* see EHCI 3.5.1 */
267 __hc32 hw_alt_next
; /* see EHCI 3.5.2 */
268 __hc32 hw_token
; /* see EHCI 3.5.3 */
269 #define QTD_TOGGLE (1 << 31) /* data toggle */
270 #define QTD_LENGTH(tok) (((tok)>>16) & 0x7fff)
271 #define QTD_IOC (1 << 15) /* interrupt on complete */
272 #define QTD_CERR(tok) (((tok)>>10) & 0x3)
273 #define QTD_PID(tok) (((tok)>>8) & 0x3)
274 #define QTD_STS_ACTIVE (1 << 7) /* HC may execute this */
275 #define QTD_STS_HALT (1 << 6) /* halted on error */
276 #define QTD_STS_DBE (1 << 5) /* data buffer error (in HC) */
277 #define QTD_STS_BABBLE (1 << 4) /* device was babbling (qtd halted) */
278 #define QTD_STS_XACT (1 << 3) /* device gave illegal response */
279 #define QTD_STS_MMF (1 << 2) /* incomplete split transaction */
280 #define QTD_STS_STS (1 << 1) /* split transaction state */
281 #define QTD_STS_PING (1 << 0) /* issue PING? */
283 #define ACTIVE_BIT(ehci) cpu_to_hc32(ehci, QTD_STS_ACTIVE)
284 #define HALT_BIT(ehci) cpu_to_hc32(ehci, QTD_STS_HALT)
285 #define STATUS_BIT(ehci) cpu_to_hc32(ehci, QTD_STS_STS)
287 __hc32 hw_buf
[5]; /* see EHCI 3.5.4 */
288 __hc32 hw_buf_hi
[5]; /* Appendix B */
290 /* the rest is HCD-private */
291 dma_addr_t qtd_dma
; /* qtd address */
292 struct list_head qtd_list
; /* sw qtd list */
293 struct urb
*urb
; /* qtd's urb */
294 size_t length
; /* length of buffer */
295 } __attribute__ ((aligned (32)));
297 /* mask NakCnt+T in qh->hw_alt_next */
298 #define QTD_MASK(ehci) cpu_to_hc32 (ehci, ~0x1f)
300 #define IS_SHORT_READ(token) (QTD_LENGTH (token) != 0 && QTD_PID (token) == 1)
302 /*-------------------------------------------------------------------------*/
304 /* type tag from {qh,itd,sitd,fstn}->hw_next */
305 #define Q_NEXT_TYPE(ehci,dma) ((dma) & cpu_to_hc32(ehci, 3 << 1))
308 * Now the following defines are not converted using the
309 * cpu_to_le32() macro anymore, since we have to support
310 * "dynamic" switching between be and le support, so that the driver
311 * can be used on one system with SoC EHCI controller using big-endian
312 * descriptors as well as a normal little-endian PCI EHCI controller.
314 /* values for that type tag */
315 #define Q_TYPE_ITD (0 << 1)
316 #define Q_TYPE_QH (1 << 1)
317 #define Q_TYPE_SITD (2 << 1)
318 #define Q_TYPE_FSTN (3 << 1)
320 /* next async queue entry, or pointer to interrupt/periodic QH */
321 #define QH_NEXT(ehci,dma) (cpu_to_hc32(ehci, (((u32)dma)&~0x01f)|Q_TYPE_QH))
323 /* for periodic/async schedules and qtd lists, mark end of list */
324 #define EHCI_LIST_END(ehci) cpu_to_hc32(ehci, 1) /* "null pointer" to hw */
327 * Entries in periodic shadow table are pointers to one of four kinds
328 * of data structure. That's dictated by the hardware; a type tag is
329 * encoded in the low bits of the hardware's periodic schedule. Use
330 * Q_NEXT_TYPE to get the tag.
332 * For entries in the async schedule, the type tag always says "qh".
335 struct ehci_qh
*qh
; /* Q_TYPE_QH */
336 struct ehci_itd
*itd
; /* Q_TYPE_ITD */
337 struct ehci_sitd
*sitd
; /* Q_TYPE_SITD */
338 struct ehci_fstn
*fstn
; /* Q_TYPE_FSTN */
339 __hc32
*hw_next
; /* (all types) */
343 /*-------------------------------------------------------------------------*/
346 * EHCI Specification 0.95 Section 3.6
347 * QH: describes control/bulk/interrupt endpoints
348 * See Fig 3-7 "Queue Head Structure Layout".
350 * These appear in both the async and (for interrupt) periodic schedules.
353 /* first part defined by EHCI spec */
355 __hc32 hw_next
; /* see EHCI 3.6.1 */
356 __hc32 hw_info1
; /* see EHCI 3.6.2 */
357 #define QH_CONTROL_EP (1 << 27) /* FS/LS control endpoint */
358 #define QH_HEAD (1 << 15) /* Head of async reclamation list */
359 #define QH_TOGGLE_CTL (1 << 14) /* Data toggle control */
360 #define QH_HIGH_SPEED (2 << 12) /* Endpoint speed */
361 #define QH_LOW_SPEED (1 << 12)
362 #define QH_FULL_SPEED (0 << 12)
363 #define QH_INACTIVATE (1 << 7) /* Inactivate on next transaction */
364 __hc32 hw_info2
; /* see EHCI 3.6.2 */
365 #define QH_SMASK 0x000000ff
366 #define QH_CMASK 0x0000ff00
367 #define QH_HUBADDR 0x007f0000
368 #define QH_HUBPORT 0x3f800000
369 #define QH_MULT 0xc0000000
370 __hc32 hw_current
; /* qtd list - see EHCI 3.6.4 */
372 /* qtd overlay (hardware parts of a struct ehci_qtd) */
377 __hc32 hw_buf_hi
[5];
378 } __attribute__ ((aligned(32)));
381 struct ehci_qh_hw
*hw
; /* Must come first */
382 /* the rest is HCD-private */
383 dma_addr_t qh_dma
; /* address of qh */
384 union ehci_shadow qh_next
; /* ptr to qh; or periodic */
385 struct list_head qtd_list
; /* sw qtd list */
386 struct list_head intr_node
; /* list of intr QHs */
387 struct ehci_qtd
*dummy
;
388 struct list_head unlink_node
;
390 unsigned unlink_cycle
;
393 #define QH_STATE_LINKED 1 /* HC sees this */
394 #define QH_STATE_UNLINK 2 /* HC may still see this */
395 #define QH_STATE_IDLE 3 /* HC doesn't see this */
396 #define QH_STATE_UNLINK_WAIT 4 /* LINKED and on unlink q */
397 #define QH_STATE_COMPLETING 5 /* don't touch token.HALT */
399 u8 xacterrs
; /* XactErr retry counter */
400 #define QH_XACTERR_MAX 32 /* XactErr retry limit */
402 /* periodic schedule info */
403 u8 usecs
; /* intr bandwidth */
404 u8 gap_uf
; /* uframes split/csplit gap */
405 u8 c_usecs
; /* ... split completion bw */
406 u16 tt_usecs
; /* tt downstream bandwidth */
407 unsigned short period
; /* polling interval */
408 unsigned short start
; /* where polling starts */
409 #define NO_FRAME ((unsigned short)~0) /* pick new start */
411 struct usb_device
*dev
; /* access to TT */
412 unsigned is_out
:1; /* bulk or intr OUT */
413 unsigned clearing_tt
:1; /* Clear-TT-Buf in progress */
414 unsigned dequeue_during_giveback
:1;
415 unsigned exception
:1; /* got a fault, or an unlink
419 /*-------------------------------------------------------------------------*/
421 /* description of one iso transaction (up to 3 KB data if highspeed) */
422 struct ehci_iso_packet
{
423 /* These will be copied to iTD when scheduling */
424 u64 bufp
; /* itd->hw_bufp{,_hi}[pg] |= */
425 __hc32 transaction
; /* itd->hw_transaction[i] |= */
426 u8 cross
; /* buf crosses pages */
427 /* for full speed OUT splits */
431 /* temporary schedule data for packets from iso urbs (both speeds)
432 * each packet is one logical usb transaction to the device (not TT),
433 * beginning at stream->next_uframe
435 struct ehci_iso_sched
{
436 struct list_head td_list
;
438 struct ehci_iso_packet packet
[0];
442 * ehci_iso_stream - groups all (s)itds for this endpoint.
443 * acts like a qh would, if EHCI had them for ISO.
445 struct ehci_iso_stream
{
446 /* first field matches ehci_hq, but is NULL */
447 struct ehci_qh_hw
*hw
;
451 struct list_head td_list
; /* queued itds/sitds */
452 struct list_head free_list
; /* list of unused itds/sitds */
453 struct usb_device
*udev
;
454 struct usb_host_endpoint
*ep
;
456 /* output of (re)scheduling */
460 /* the rest is derived from the endpoint descriptor,
461 * trusting urb->interval == f(epdesc->bInterval) and
462 * including the extra info for hw_bufp[0..2]
471 /* This is used to initialize iTD's hw_bufp fields */
476 /* this is used to initialize sITD's tt info */
480 /*-------------------------------------------------------------------------*/
483 * EHCI Specification 0.95 Section 3.3
484 * Fig 3-4 "Isochronous Transaction Descriptor (iTD)"
486 * Schedule records for high speed iso xfers
489 /* first part defined by EHCI spec */
490 __hc32 hw_next
; /* see EHCI 3.3.1 */
491 __hc32 hw_transaction
[8]; /* see EHCI 3.3.2 */
492 #define EHCI_ISOC_ACTIVE (1<<31) /* activate transfer this slot */
493 #define EHCI_ISOC_BUF_ERR (1<<30) /* Data buffer error */
494 #define EHCI_ISOC_BABBLE (1<<29) /* babble detected */
495 #define EHCI_ISOC_XACTERR (1<<28) /* XactErr - transaction error */
496 #define EHCI_ITD_LENGTH(tok) (((tok)>>16) & 0x0fff)
497 #define EHCI_ITD_IOC (1 << 15) /* interrupt on complete */
499 #define ITD_ACTIVE(ehci) cpu_to_hc32(ehci, EHCI_ISOC_ACTIVE)
501 __hc32 hw_bufp
[7]; /* see EHCI 3.3.3 */
502 __hc32 hw_bufp_hi
[7]; /* Appendix B */
504 /* the rest is HCD-private */
505 dma_addr_t itd_dma
; /* for this itd */
506 union ehci_shadow itd_next
; /* ptr to periodic q entry */
509 struct ehci_iso_stream
*stream
; /* endpoint's queue */
510 struct list_head itd_list
; /* list of stream's itds */
512 /* any/all hw_transactions here may be used by that urb */
513 unsigned frame
; /* where scheduled */
515 unsigned index
[8]; /* in urb->iso_frame_desc */
516 } __attribute__ ((aligned (32)));
518 /*-------------------------------------------------------------------------*/
521 * EHCI Specification 0.95 Section 3.4
522 * siTD, aka split-transaction isochronous Transfer Descriptor
523 * ... describe full speed iso xfers through TT in hubs
524 * see Figure 3-5 "Split-transaction Isochronous Transaction Descriptor (siTD)
527 /* first part defined by EHCI spec */
529 /* uses bit field macros above - see EHCI 0.95 Table 3-8 */
530 __hc32 hw_fullspeed_ep
; /* EHCI table 3-9 */
531 __hc32 hw_uframe
; /* EHCI table 3-10 */
532 __hc32 hw_results
; /* EHCI table 3-11 */
533 #define SITD_IOC (1 << 31) /* interrupt on completion */
534 #define SITD_PAGE (1 << 30) /* buffer 0/1 */
535 #define SITD_LENGTH(x) (0x3ff & ((x)>>16))
536 #define SITD_STS_ACTIVE (1 << 7) /* HC may execute this */
537 #define SITD_STS_ERR (1 << 6) /* error from TT */
538 #define SITD_STS_DBE (1 << 5) /* data buffer error (in HC) */
539 #define SITD_STS_BABBLE (1 << 4) /* device was babbling */
540 #define SITD_STS_XACT (1 << 3) /* illegal IN response */
541 #define SITD_STS_MMF (1 << 2) /* incomplete split transaction */
542 #define SITD_STS_STS (1 << 1) /* split transaction state */
544 #define SITD_ACTIVE(ehci) cpu_to_hc32(ehci, SITD_STS_ACTIVE)
546 __hc32 hw_buf
[2]; /* EHCI table 3-12 */
547 __hc32 hw_backpointer
; /* EHCI table 3-13 */
548 __hc32 hw_buf_hi
[2]; /* Appendix B */
550 /* the rest is HCD-private */
552 union ehci_shadow sitd_next
; /* ptr to periodic q entry */
555 struct ehci_iso_stream
*stream
; /* endpoint's queue */
556 struct list_head sitd_list
; /* list of stream's sitds */
559 } __attribute__ ((aligned (32)));
561 /*-------------------------------------------------------------------------*/
564 * EHCI Specification 0.96 Section 3.7
565 * Periodic Frame Span Traversal Node (FSTN)
567 * Manages split interrupt transactions (using TT) that span frame boundaries
568 * into uframes 0/1; see 4.12.2.2. In those uframes, a "save place" FSTN
569 * makes the HC jump (back) to a QH to scan for fs/ls QH completions until
570 * it hits a "restore" FSTN; then it returns to finish other uframe 0/1 work.
573 __hc32 hw_next
; /* any periodic q entry */
574 __hc32 hw_prev
; /* qh or EHCI_LIST_END */
576 /* the rest is HCD-private */
578 union ehci_shadow fstn_next
; /* ptr to periodic q entry */
579 } __attribute__ ((aligned (32)));
581 /*-------------------------------------------------------------------------*/
583 /* Prepare the PORTSC wakeup flags during controller suspend/resume */
585 #define ehci_prepare_ports_for_controller_suspend(ehci, do_wakeup) \
586 ehci_adjust_port_wakeup_flags(ehci, true, do_wakeup);
588 #define ehci_prepare_ports_for_controller_resume(ehci) \
589 ehci_adjust_port_wakeup_flags(ehci, false, false);
591 /*-------------------------------------------------------------------------*/
593 #ifdef CONFIG_USB_EHCI_ROOT_HUB_TT
596 * Some EHCI controllers have a Transaction Translator built into the
597 * root hub. This is a non-standard feature. Each controller will need
598 * to add code to the following inline functions, and call them as
599 * needed (mostly in root hub code).
602 #define ehci_is_TDI(e) (ehci_to_hcd(e)->has_tt)
604 /* Returns the speed of a device attached to a port on the root hub. */
605 static inline unsigned int
606 ehci_port_speed(struct ehci_hcd
*ehci
, unsigned int portsc
)
608 if (ehci_is_TDI(ehci
)) {
609 switch ((portsc
>> (ehci
->has_hostpc
? 25 : 26)) & 3) {
613 return USB_PORT_STAT_LOW_SPEED
;
616 return USB_PORT_STAT_HIGH_SPEED
;
619 return USB_PORT_STAT_HIGH_SPEED
;
624 #define ehci_is_TDI(e) (0)
626 #define ehci_port_speed(ehci, portsc) USB_PORT_STAT_HIGH_SPEED
629 /*-------------------------------------------------------------------------*/
631 #ifdef CONFIG_PPC_83xx
632 /* Some Freescale processors have an erratum in which the TT
633 * port number in the queue head was 0..N-1 instead of 1..N.
635 #define ehci_has_fsl_portno_bug(e) ((e)->has_fsl_port_bug)
637 #define ehci_has_fsl_portno_bug(e) (0)
641 * While most USB host controllers implement their registers in
642 * little-endian format, a minority (celleb companion chip) implement
643 * them in big endian format.
645 * This attempts to support either format at compile time without a
646 * runtime penalty, or both formats with the additional overhead
647 * of checking a flag bit.
649 * ehci_big_endian_capbase is a special quirk for controllers that
650 * implement the HC capability registers as separate registers and not
651 * as fields of a 32-bit register.
654 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
655 #define ehci_big_endian_mmio(e) ((e)->big_endian_mmio)
656 #define ehci_big_endian_capbase(e) ((e)->big_endian_capbase)
658 #define ehci_big_endian_mmio(e) 0
659 #define ehci_big_endian_capbase(e) 0
663 * Big-endian read/write functions are arch-specific.
664 * Other arches can be added if/when they're needed.
666 #if defined(CONFIG_ARM) && defined(CONFIG_ARCH_IXP4XX)
667 #define readl_be(addr) __raw_readl((__force unsigned *)addr)
668 #define writel_be(val, addr) __raw_writel(val, (__force unsigned *)addr)
671 static inline unsigned int ehci_readl(const struct ehci_hcd
*ehci
,
672 __u32 __iomem
* regs
)
674 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
675 return ehci_big_endian_mmio(ehci
) ?
683 #ifdef CONFIG_SOC_IMX28
684 static inline void imx28_ehci_writel(const unsigned int val
,
685 volatile __u32 __iomem
*addr
)
687 __asm__ ("swp %0, %0, [%1]" : : "r"(val
), "r"(addr
));
690 static inline void imx28_ehci_writel(const unsigned int val
,
691 volatile __u32 __iomem
*addr
)
695 static inline void ehci_writel(const struct ehci_hcd
*ehci
,
696 const unsigned int val
, __u32 __iomem
*regs
)
698 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
699 ehci_big_endian_mmio(ehci
) ?
700 writel_be(val
, regs
) :
703 if (ehci
->imx28_write_fix
)
704 imx28_ehci_writel(val
, regs
);
711 * On certain ppc-44x SoC there is a HW issue, that could only worked around with
712 * explicit suspend/operate of OHCI. This function hereby makes sense only on that arch.
713 * Other common bits are dependent on has_amcc_usb23 quirk flag.
716 static inline void set_ohci_hcfs(struct ehci_hcd
*ehci
, int operational
)
720 hc_control
= (readl_be(ehci
->ohci_hcctrl_reg
) & ~OHCI_CTRL_HCFS
);
722 hc_control
|= OHCI_USB_OPER
;
724 hc_control
|= OHCI_USB_SUSPEND
;
726 writel_be(hc_control
, ehci
->ohci_hcctrl_reg
);
727 (void) readl_be(ehci
->ohci_hcctrl_reg
);
730 static inline void set_ohci_hcfs(struct ehci_hcd
*ehci
, int operational
)
734 /*-------------------------------------------------------------------------*/
737 * The AMCC 440EPx not only implements its EHCI registers in big-endian
738 * format, but also its DMA data structures (descriptors).
740 * EHCI controllers accessed through PCI work normally (little-endian
741 * everywhere), so we won't bother supporting a BE-only mode for now.
743 #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_DESC
744 #define ehci_big_endian_desc(e) ((e)->big_endian_desc)
747 static inline __hc32
cpu_to_hc32 (const struct ehci_hcd
*ehci
, const u32 x
)
749 return ehci_big_endian_desc(ehci
)
750 ? (__force __hc32
)cpu_to_be32(x
)
751 : (__force __hc32
)cpu_to_le32(x
);
755 static inline u32
hc32_to_cpu (const struct ehci_hcd
*ehci
, const __hc32 x
)
757 return ehci_big_endian_desc(ehci
)
758 ? be32_to_cpu((__force __be32
)x
)
759 : le32_to_cpu((__force __le32
)x
);
762 static inline u32
hc32_to_cpup (const struct ehci_hcd
*ehci
, const __hc32
*x
)
764 return ehci_big_endian_desc(ehci
)
765 ? be32_to_cpup((__force __be32
*)x
)
766 : le32_to_cpup((__force __le32
*)x
);
772 static inline __hc32
cpu_to_hc32 (const struct ehci_hcd
*ehci
, const u32 x
)
774 return cpu_to_le32(x
);
778 static inline u32
hc32_to_cpu (const struct ehci_hcd
*ehci
, const __hc32 x
)
780 return le32_to_cpu(x
);
783 static inline u32
hc32_to_cpup (const struct ehci_hcd
*ehci
, const __hc32
*x
)
785 return le32_to_cpup(x
);
790 /*-------------------------------------------------------------------------*/
792 #define ehci_dbg(ehci, fmt, args...) \
793 dev_dbg(ehci_to_hcd(ehci)->self.controller , fmt , ## args)
794 #define ehci_err(ehci, fmt, args...) \
795 dev_err(ehci_to_hcd(ehci)->self.controller , fmt , ## args)
796 #define ehci_info(ehci, fmt, args...) \
797 dev_info(ehci_to_hcd(ehci)->self.controller , fmt , ## args)
798 #define ehci_warn(ehci, fmt, args...) \
799 dev_warn(ehci_to_hcd(ehci)->self.controller , fmt , ## args)
802 #if !defined(DEBUG) && !defined(CONFIG_DYNAMIC_DEBUG)
803 #define STUB_DEBUG_FILES
804 #endif /* !DEBUG && !CONFIG_DYNAMIC_DEBUG */
806 /*-------------------------------------------------------------------------*/
808 /* Declarations of things exported for use by ehci platform drivers */
810 struct ehci_driver_overrides
{
811 size_t extra_priv_size
;
812 int (*reset
)(struct usb_hcd
*hcd
);
815 extern void ehci_init_driver(struct hc_driver
*drv
,
816 const struct ehci_driver_overrides
*over
);
817 extern int ehci_setup(struct usb_hcd
*hcd
);
818 extern int ehci_handshake(struct ehci_hcd
*ehci
, void __iomem
*ptr
,
819 u32 mask
, u32 done
, int usec
);
822 extern int ehci_suspend(struct usb_hcd
*hcd
, bool do_wakeup
);
823 extern int ehci_resume(struct usb_hcd
*hcd
, bool hibernated
);
824 #endif /* CONFIG_PM */
826 #endif /* __LINUX_EHCI_HCD_H */