1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-1.0+ */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun * OHCI HCD (Host Controller Driver) for USB.
4*4882a593Smuzhiyun *
5*4882a593Smuzhiyun * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
6*4882a593Smuzhiyun * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * This file is licenced under the GPL.
9*4882a593Smuzhiyun */
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun /*
12*4882a593Smuzhiyun * __hc32 and __hc16 are "Host Controller" types, they may be equivalent to
13*4882a593Smuzhiyun * __leXX (normally) or __beXX (given OHCI_BIG_ENDIAN), depending on the
14*4882a593Smuzhiyun * host controller implementation.
15*4882a593Smuzhiyun */
16*4882a593Smuzhiyun typedef __u32 __bitwise __hc32;
17*4882a593Smuzhiyun typedef __u16 __bitwise __hc16;
18*4882a593Smuzhiyun
19*4882a593Smuzhiyun /*
20*4882a593Smuzhiyun * OHCI Endpoint Descriptor (ED) ... holds TD queue
21*4882a593Smuzhiyun * See OHCI spec, section 4.2
22*4882a593Smuzhiyun *
23*4882a593Smuzhiyun * This is a "Queue Head" for those transfers, which is why
24*4882a593Smuzhiyun * both EHCI and UHCI call similar structures a "QH".
25*4882a593Smuzhiyun */
26*4882a593Smuzhiyun struct ed {
27*4882a593Smuzhiyun /* first fields are hardware-specified */
28*4882a593Smuzhiyun __hc32 hwINFO; /* endpoint config bitmap */
29*4882a593Smuzhiyun /* info bits defined by hcd */
30*4882a593Smuzhiyun #define ED_DEQUEUE (1 << 27)
31*4882a593Smuzhiyun /* info bits defined by the hardware */
32*4882a593Smuzhiyun #define ED_ISO (1 << 15)
33*4882a593Smuzhiyun #define ED_SKIP (1 << 14)
34*4882a593Smuzhiyun #define ED_LOWSPEED (1 << 13)
35*4882a593Smuzhiyun #define ED_OUT (0x01 << 11)
36*4882a593Smuzhiyun #define ED_IN (0x02 << 11)
37*4882a593Smuzhiyun __hc32 hwTailP; /* tail of TD list */
38*4882a593Smuzhiyun __hc32 hwHeadP; /* head of TD list (hc r/w) */
39*4882a593Smuzhiyun #define ED_C (0x02) /* toggle carry */
40*4882a593Smuzhiyun #define ED_H (0x01) /* halted */
41*4882a593Smuzhiyun __hc32 hwNextED; /* next ED in list */
42*4882a593Smuzhiyun
43*4882a593Smuzhiyun /* rest are purely for the driver's use */
44*4882a593Smuzhiyun dma_addr_t dma; /* addr of ED */
45*4882a593Smuzhiyun struct td *dummy; /* next TD to activate */
46*4882a593Smuzhiyun
47*4882a593Smuzhiyun /* host's view of schedule */
48*4882a593Smuzhiyun struct ed *ed_next; /* on schedule or rm_list */
49*4882a593Smuzhiyun struct ed *ed_prev; /* for non-interrupt EDs */
50*4882a593Smuzhiyun struct list_head td_list; /* "shadow list" of our TDs */
51*4882a593Smuzhiyun struct list_head in_use_list;
52*4882a593Smuzhiyun
53*4882a593Smuzhiyun /* create --> IDLE --> OPER --> ... --> IDLE --> destroy
54*4882a593Smuzhiyun * usually: OPER --> UNLINK --> (IDLE | OPER) --> ...
55*4882a593Smuzhiyun */
56*4882a593Smuzhiyun u8 state; /* ED_{IDLE,UNLINK,OPER} */
57*4882a593Smuzhiyun #define ED_IDLE 0x00 /* NOT linked to HC */
58*4882a593Smuzhiyun #define ED_UNLINK 0x01 /* being unlinked from hc */
59*4882a593Smuzhiyun #define ED_OPER 0x02 /* IS linked to hc */
60*4882a593Smuzhiyun
61*4882a593Smuzhiyun u8 type; /* PIPE_{BULK,...} */
62*4882a593Smuzhiyun
63*4882a593Smuzhiyun /* periodic scheduling params (for intr and iso) */
64*4882a593Smuzhiyun u8 branch;
65*4882a593Smuzhiyun u16 interval;
66*4882a593Smuzhiyun u16 load;
67*4882a593Smuzhiyun u16 last_iso; /* iso only */
68*4882a593Smuzhiyun
69*4882a593Smuzhiyun /* HC may see EDs on rm_list until next frame (frame_no == tick) */
70*4882a593Smuzhiyun u16 tick;
71*4882a593Smuzhiyun
72*4882a593Smuzhiyun /* Detect TDs not added to the done queue */
73*4882a593Smuzhiyun unsigned takeback_wdh_cnt;
74*4882a593Smuzhiyun struct td *pending_td;
75*4882a593Smuzhiyun #define OKAY_TO_TAKEBACK(ohci, ed) \
76*4882a593Smuzhiyun ((int) (ohci->wdh_cnt - ed->takeback_wdh_cnt) >= 0)
77*4882a593Smuzhiyun
78*4882a593Smuzhiyun } __attribute__ ((aligned(16)));
79*4882a593Smuzhiyun
80*4882a593Smuzhiyun #define ED_MASK ((u32)~0x0f) /* strip hw status in low addr bits */
81*4882a593Smuzhiyun
82*4882a593Smuzhiyun
83*4882a593Smuzhiyun /*
84*4882a593Smuzhiyun * OHCI Transfer Descriptor (TD) ... one per transfer segment
85*4882a593Smuzhiyun * See OHCI spec, sections 4.3.1 (general = control/bulk/interrupt)
86*4882a593Smuzhiyun * and 4.3.2 (iso)
87*4882a593Smuzhiyun */
88*4882a593Smuzhiyun struct td {
89*4882a593Smuzhiyun /* first fields are hardware-specified */
90*4882a593Smuzhiyun __hc32 hwINFO; /* transfer info bitmask */
91*4882a593Smuzhiyun
92*4882a593Smuzhiyun /* hwINFO bits for both general and iso tds: */
93*4882a593Smuzhiyun #define TD_CC 0xf0000000 /* condition code */
94*4882a593Smuzhiyun #define TD_CC_GET(td_p) ((td_p >>28) & 0x0f)
95*4882a593Smuzhiyun //#define TD_CC_SET(td_p, cc) (td_p) = ((td_p) & 0x0fffffff) | (((cc) & 0x0f) << 28)
96*4882a593Smuzhiyun #define TD_DI 0x00E00000 /* frames before interrupt */
97*4882a593Smuzhiyun #define TD_DI_SET(X) (((X) & 0x07)<< 21)
98*4882a593Smuzhiyun /* these two bits are available for definition/use by HCDs in both
99*4882a593Smuzhiyun * general and iso tds ... others are available for only one type
100*4882a593Smuzhiyun */
101*4882a593Smuzhiyun #define TD_DONE 0x00020000 /* retired to donelist */
102*4882a593Smuzhiyun #define TD_ISO 0x00010000 /* copy of ED_ISO */
103*4882a593Smuzhiyun
104*4882a593Smuzhiyun /* hwINFO bits for general tds: */
105*4882a593Smuzhiyun #define TD_EC 0x0C000000 /* error count */
106*4882a593Smuzhiyun #define TD_T 0x03000000 /* data toggle state */
107*4882a593Smuzhiyun #define TD_T_DATA0 0x02000000 /* DATA0 */
108*4882a593Smuzhiyun #define TD_T_DATA1 0x03000000 /* DATA1 */
109*4882a593Smuzhiyun #define TD_T_TOGGLE 0x00000000 /* uses ED_C */
110*4882a593Smuzhiyun #define TD_DP 0x00180000 /* direction/pid */
111*4882a593Smuzhiyun #define TD_DP_SETUP 0x00000000 /* SETUP pid */
112*4882a593Smuzhiyun #define TD_DP_IN 0x00100000 /* IN pid */
113*4882a593Smuzhiyun #define TD_DP_OUT 0x00080000 /* OUT pid */
114*4882a593Smuzhiyun /* 0x00180000 rsvd */
115*4882a593Smuzhiyun #define TD_R 0x00040000 /* round: short packets OK? */
116*4882a593Smuzhiyun
117*4882a593Smuzhiyun /* (no hwINFO #defines yet for iso tds) */
118*4882a593Smuzhiyun
119*4882a593Smuzhiyun __hc32 hwCBP; /* Current Buffer Pointer (or 0) */
120*4882a593Smuzhiyun __hc32 hwNextTD; /* Next TD Pointer */
121*4882a593Smuzhiyun __hc32 hwBE; /* Memory Buffer End Pointer */
122*4882a593Smuzhiyun
123*4882a593Smuzhiyun /* PSW is only for ISO. Only 1 PSW entry is used, but on
124*4882a593Smuzhiyun * big-endian PPC hardware that's the second entry.
125*4882a593Smuzhiyun */
126*4882a593Smuzhiyun #define MAXPSW 2
127*4882a593Smuzhiyun __hc16 hwPSW [MAXPSW];
128*4882a593Smuzhiyun
129*4882a593Smuzhiyun /* rest are purely for the driver's use */
130*4882a593Smuzhiyun __u8 index;
131*4882a593Smuzhiyun struct ed *ed;
132*4882a593Smuzhiyun struct td *td_hash; /* dma-->td hashtable */
133*4882a593Smuzhiyun struct td *next_dl_td;
134*4882a593Smuzhiyun struct urb *urb;
135*4882a593Smuzhiyun
136*4882a593Smuzhiyun dma_addr_t td_dma; /* addr of this TD */
137*4882a593Smuzhiyun dma_addr_t data_dma; /* addr of data it points to */
138*4882a593Smuzhiyun
139*4882a593Smuzhiyun struct list_head td_list; /* "shadow list", TDs on same ED */
140*4882a593Smuzhiyun } __attribute__ ((aligned(32))); /* c/b/i need 16; only iso needs 32 */
141*4882a593Smuzhiyun
142*4882a593Smuzhiyun #define TD_MASK ((u32)~0x1f) /* strip hw status in low addr bits */
143*4882a593Smuzhiyun
144*4882a593Smuzhiyun /*
145*4882a593Smuzhiyun * Hardware transfer status codes -- CC from td->hwINFO or td->hwPSW
146*4882a593Smuzhiyun */
147*4882a593Smuzhiyun #define TD_CC_NOERROR 0x00
148*4882a593Smuzhiyun #define TD_CC_CRC 0x01
149*4882a593Smuzhiyun #define TD_CC_BITSTUFFING 0x02
150*4882a593Smuzhiyun #define TD_CC_DATATOGGLEM 0x03
151*4882a593Smuzhiyun #define TD_CC_STALL 0x04
152*4882a593Smuzhiyun #define TD_DEVNOTRESP 0x05
153*4882a593Smuzhiyun #define TD_PIDCHECKFAIL 0x06
154*4882a593Smuzhiyun #define TD_UNEXPECTEDPID 0x07
155*4882a593Smuzhiyun #define TD_DATAOVERRUN 0x08
156*4882a593Smuzhiyun #define TD_DATAUNDERRUN 0x09
157*4882a593Smuzhiyun /* 0x0A, 0x0B reserved for hardware */
158*4882a593Smuzhiyun #define TD_BUFFEROVERRUN 0x0C
159*4882a593Smuzhiyun #define TD_BUFFERUNDERRUN 0x0D
160*4882a593Smuzhiyun /* 0x0E, 0x0F reserved for HCD */
161*4882a593Smuzhiyun #define TD_NOTACCESSED 0x0F
162*4882a593Smuzhiyun
163*4882a593Smuzhiyun
164*4882a593Smuzhiyun /* map OHCI TD status codes (CC) to errno values */
165*4882a593Smuzhiyun static const int __maybe_unused cc_to_error [16] = {
166*4882a593Smuzhiyun /* No Error */ 0,
167*4882a593Smuzhiyun /* CRC Error */ -EILSEQ,
168*4882a593Smuzhiyun /* Bit Stuff */ -EPROTO,
169*4882a593Smuzhiyun /* Data Togg */ -EILSEQ,
170*4882a593Smuzhiyun /* Stall */ -EPIPE,
171*4882a593Smuzhiyun /* DevNotResp */ -ETIME,
172*4882a593Smuzhiyun /* PIDCheck */ -EPROTO,
173*4882a593Smuzhiyun /* UnExpPID */ -EPROTO,
174*4882a593Smuzhiyun /* DataOver */ -EOVERFLOW,
175*4882a593Smuzhiyun /* DataUnder */ -EREMOTEIO,
176*4882a593Smuzhiyun /* (for hw) */ -EIO,
177*4882a593Smuzhiyun /* (for hw) */ -EIO,
178*4882a593Smuzhiyun /* BufferOver */ -ECOMM,
179*4882a593Smuzhiyun /* BuffUnder */ -ENOSR,
180*4882a593Smuzhiyun /* (for HCD) */ -EALREADY,
181*4882a593Smuzhiyun /* (for HCD) */ -EALREADY
182*4882a593Smuzhiyun };
183*4882a593Smuzhiyun
184*4882a593Smuzhiyun
185*4882a593Smuzhiyun /*
186*4882a593Smuzhiyun * The HCCA (Host Controller Communications Area) is a 256 byte
187*4882a593Smuzhiyun * structure defined section 4.4.1 of the OHCI spec. The HC is
188*4882a593Smuzhiyun * told the base address of it. It must be 256-byte aligned.
189*4882a593Smuzhiyun */
190*4882a593Smuzhiyun struct ohci_hcca {
191*4882a593Smuzhiyun #define NUM_INTS 32
192*4882a593Smuzhiyun __hc32 int_table [NUM_INTS]; /* periodic schedule */
193*4882a593Smuzhiyun
194*4882a593Smuzhiyun /*
195*4882a593Smuzhiyun * OHCI defines u16 frame_no, followed by u16 zero pad.
196*4882a593Smuzhiyun * Since some processors can't do 16 bit bus accesses,
197*4882a593Smuzhiyun * portable access must be a 32 bits wide.
198*4882a593Smuzhiyun */
199*4882a593Smuzhiyun __hc32 frame_no; /* current frame number */
200*4882a593Smuzhiyun __hc32 done_head; /* info returned for an interrupt */
201*4882a593Smuzhiyun u8 reserved_for_hc [116];
202*4882a593Smuzhiyun u8 what [4]; /* spec only identifies 252 bytes :) */
203*4882a593Smuzhiyun } __attribute__ ((aligned(256)));
204*4882a593Smuzhiyun
205*4882a593Smuzhiyun /*
206*4882a593Smuzhiyun * This is the structure of the OHCI controller's memory mapped I/O region.
207*4882a593Smuzhiyun * You must use readl() and writel() (in <asm/io.h>) to access these fields!!
208*4882a593Smuzhiyun * Layout is in section 7 (and appendix B) of the spec.
209*4882a593Smuzhiyun */
210*4882a593Smuzhiyun struct ohci_regs {
211*4882a593Smuzhiyun /* control and status registers (section 7.1) */
212*4882a593Smuzhiyun __hc32 revision;
213*4882a593Smuzhiyun __hc32 control;
214*4882a593Smuzhiyun __hc32 cmdstatus;
215*4882a593Smuzhiyun __hc32 intrstatus;
216*4882a593Smuzhiyun __hc32 intrenable;
217*4882a593Smuzhiyun __hc32 intrdisable;
218*4882a593Smuzhiyun
219*4882a593Smuzhiyun /* memory pointers (section 7.2) */
220*4882a593Smuzhiyun __hc32 hcca;
221*4882a593Smuzhiyun __hc32 ed_periodcurrent;
222*4882a593Smuzhiyun __hc32 ed_controlhead;
223*4882a593Smuzhiyun __hc32 ed_controlcurrent;
224*4882a593Smuzhiyun __hc32 ed_bulkhead;
225*4882a593Smuzhiyun __hc32 ed_bulkcurrent;
226*4882a593Smuzhiyun __hc32 donehead;
227*4882a593Smuzhiyun
228*4882a593Smuzhiyun /* frame counters (section 7.3) */
229*4882a593Smuzhiyun __hc32 fminterval;
230*4882a593Smuzhiyun __hc32 fmremaining;
231*4882a593Smuzhiyun __hc32 fmnumber;
232*4882a593Smuzhiyun __hc32 periodicstart;
233*4882a593Smuzhiyun __hc32 lsthresh;
234*4882a593Smuzhiyun
235*4882a593Smuzhiyun /* Root hub ports (section 7.4) */
236*4882a593Smuzhiyun struct ohci_roothub_regs {
237*4882a593Smuzhiyun __hc32 a;
238*4882a593Smuzhiyun __hc32 b;
239*4882a593Smuzhiyun __hc32 status;
240*4882a593Smuzhiyun #define MAX_ROOT_PORTS 15 /* maximum OHCI root hub ports (RH_A_NDP) */
241*4882a593Smuzhiyun __hc32 portstatus [MAX_ROOT_PORTS];
242*4882a593Smuzhiyun } roothub;
243*4882a593Smuzhiyun
244*4882a593Smuzhiyun /* and optional "legacy support" registers (appendix B) at 0x0100 */
245*4882a593Smuzhiyun
246*4882a593Smuzhiyun } __attribute__ ((aligned(32)));
247*4882a593Smuzhiyun
248*4882a593Smuzhiyun
249*4882a593Smuzhiyun /* OHCI CONTROL AND STATUS REGISTER MASKS */
250*4882a593Smuzhiyun
251*4882a593Smuzhiyun /*
252*4882a593Smuzhiyun * HcControl (control) register masks
253*4882a593Smuzhiyun */
254*4882a593Smuzhiyun #define OHCI_CTRL_CBSR (3 << 0) /* control/bulk service ratio */
255*4882a593Smuzhiyun #define OHCI_CTRL_PLE (1 << 2) /* periodic list enable */
256*4882a593Smuzhiyun #define OHCI_CTRL_IE (1 << 3) /* isochronous enable */
257*4882a593Smuzhiyun #define OHCI_CTRL_CLE (1 << 4) /* control list enable */
258*4882a593Smuzhiyun #define OHCI_CTRL_BLE (1 << 5) /* bulk list enable */
259*4882a593Smuzhiyun #define OHCI_CTRL_HCFS (3 << 6) /* host controller functional state */
260*4882a593Smuzhiyun #define OHCI_CTRL_IR (1 << 8) /* interrupt routing */
261*4882a593Smuzhiyun #define OHCI_CTRL_RWC (1 << 9) /* remote wakeup connected */
262*4882a593Smuzhiyun #define OHCI_CTRL_RWE (1 << 10) /* remote wakeup enable */
263*4882a593Smuzhiyun
264*4882a593Smuzhiyun /* pre-shifted values for HCFS */
265*4882a593Smuzhiyun # define OHCI_USB_RESET (0 << 6)
266*4882a593Smuzhiyun # define OHCI_USB_RESUME (1 << 6)
267*4882a593Smuzhiyun # define OHCI_USB_OPER (2 << 6)
268*4882a593Smuzhiyun # define OHCI_USB_SUSPEND (3 << 6)
269*4882a593Smuzhiyun
270*4882a593Smuzhiyun /*
271*4882a593Smuzhiyun * HcCommandStatus (cmdstatus) register masks
272*4882a593Smuzhiyun */
273*4882a593Smuzhiyun #define OHCI_HCR (1 << 0) /* host controller reset */
274*4882a593Smuzhiyun #define OHCI_CLF (1 << 1) /* control list filled */
275*4882a593Smuzhiyun #define OHCI_BLF (1 << 2) /* bulk list filled */
276*4882a593Smuzhiyun #define OHCI_OCR (1 << 3) /* ownership change request */
277*4882a593Smuzhiyun #define OHCI_SOC (3 << 16) /* scheduling overrun count */
278*4882a593Smuzhiyun
279*4882a593Smuzhiyun /*
280*4882a593Smuzhiyun * masks used with interrupt registers:
281*4882a593Smuzhiyun * HcInterruptStatus (intrstatus)
282*4882a593Smuzhiyun * HcInterruptEnable (intrenable)
283*4882a593Smuzhiyun * HcInterruptDisable (intrdisable)
284*4882a593Smuzhiyun */
285*4882a593Smuzhiyun #define OHCI_INTR_SO (1 << 0) /* scheduling overrun */
286*4882a593Smuzhiyun #define OHCI_INTR_WDH (1 << 1) /* writeback of done_head */
287*4882a593Smuzhiyun #define OHCI_INTR_SF (1 << 2) /* start frame */
288*4882a593Smuzhiyun #define OHCI_INTR_RD (1 << 3) /* resume detect */
289*4882a593Smuzhiyun #define OHCI_INTR_UE (1 << 4) /* unrecoverable error */
290*4882a593Smuzhiyun #define OHCI_INTR_FNO (1 << 5) /* frame number overflow */
291*4882a593Smuzhiyun #define OHCI_INTR_RHSC (1 << 6) /* root hub status change */
292*4882a593Smuzhiyun #define OHCI_INTR_OC (1 << 30) /* ownership change */
293*4882a593Smuzhiyun #define OHCI_INTR_MIE (1 << 31) /* master interrupt enable */
294*4882a593Smuzhiyun
295*4882a593Smuzhiyun
296*4882a593Smuzhiyun /* OHCI ROOT HUB REGISTER MASKS */
297*4882a593Smuzhiyun
298*4882a593Smuzhiyun /* roothub.portstatus [i] bits */
299*4882a593Smuzhiyun #define RH_PS_CCS 0x00000001 /* current connect status */
300*4882a593Smuzhiyun #define RH_PS_PES 0x00000002 /* port enable status*/
301*4882a593Smuzhiyun #define RH_PS_PSS 0x00000004 /* port suspend status */
302*4882a593Smuzhiyun #define RH_PS_POCI 0x00000008 /* port over current indicator */
303*4882a593Smuzhiyun #define RH_PS_PRS 0x00000010 /* port reset status */
304*4882a593Smuzhiyun #define RH_PS_PPS 0x00000100 /* port power status */
305*4882a593Smuzhiyun #define RH_PS_LSDA 0x00000200 /* low speed device attached */
306*4882a593Smuzhiyun #define RH_PS_CSC 0x00010000 /* connect status change */
307*4882a593Smuzhiyun #define RH_PS_PESC 0x00020000 /* port enable status change */
308*4882a593Smuzhiyun #define RH_PS_PSSC 0x00040000 /* port suspend status change */
309*4882a593Smuzhiyun #define RH_PS_OCIC 0x00080000 /* over current indicator change */
310*4882a593Smuzhiyun #define RH_PS_PRSC 0x00100000 /* port reset status change */
311*4882a593Smuzhiyun
312*4882a593Smuzhiyun /* roothub.status bits */
313*4882a593Smuzhiyun #define RH_HS_LPS 0x00000001 /* local power status */
314*4882a593Smuzhiyun #define RH_HS_OCI 0x00000002 /* over current indicator */
315*4882a593Smuzhiyun #define RH_HS_DRWE 0x00008000 /* device remote wakeup enable */
316*4882a593Smuzhiyun #define RH_HS_LPSC 0x00010000 /* local power status change */
317*4882a593Smuzhiyun #define RH_HS_OCIC 0x00020000 /* over current indicator change */
318*4882a593Smuzhiyun #define RH_HS_CRWE 0x80000000 /* clear remote wakeup enable */
319*4882a593Smuzhiyun
320*4882a593Smuzhiyun /* roothub.b masks */
321*4882a593Smuzhiyun #define RH_B_DR 0x0000ffff /* device removable flags */
322*4882a593Smuzhiyun #define RH_B_PPCM 0xffff0000 /* port power control mask */
323*4882a593Smuzhiyun
324*4882a593Smuzhiyun /* roothub.a masks */
325*4882a593Smuzhiyun #define RH_A_NDP (0xff << 0) /* number of downstream ports */
326*4882a593Smuzhiyun #define RH_A_PSM (1 << 8) /* power switching mode */
327*4882a593Smuzhiyun #define RH_A_NPS (1 << 9) /* no power switching */
328*4882a593Smuzhiyun #define RH_A_DT (1 << 10) /* device type (mbz) */
329*4882a593Smuzhiyun #define RH_A_OCPM (1 << 11) /* over current protection mode */
330*4882a593Smuzhiyun #define RH_A_NOCP (1 << 12) /* no over current protection */
331*4882a593Smuzhiyun #define RH_A_POTPGT (0xff << 24) /* power on to power good time */
332*4882a593Smuzhiyun
333*4882a593Smuzhiyun
334*4882a593Smuzhiyun /* hcd-private per-urb state */
335*4882a593Smuzhiyun typedef struct urb_priv {
336*4882a593Smuzhiyun struct ed *ed;
337*4882a593Smuzhiyun u16 length; // # tds in this request
338*4882a593Smuzhiyun u16 td_cnt; // tds already serviced
339*4882a593Smuzhiyun struct list_head pending;
340*4882a593Smuzhiyun struct td *td[]; // all TDs in this request
341*4882a593Smuzhiyun
342*4882a593Smuzhiyun } urb_priv_t;
343*4882a593Smuzhiyun
344*4882a593Smuzhiyun #define TD_HASH_SIZE 64 /* power'o'two */
345*4882a593Smuzhiyun // sizeof (struct td) ~= 64 == 2^6 ...
346*4882a593Smuzhiyun #define TD_HASH_FUNC(td_dma) ((td_dma ^ (td_dma >> 6)) % TD_HASH_SIZE)
347*4882a593Smuzhiyun
348*4882a593Smuzhiyun
349*4882a593Smuzhiyun /*
350*4882a593Smuzhiyun * This is the full ohci controller description
351*4882a593Smuzhiyun *
352*4882a593Smuzhiyun * Note how the "proper" USB information is just
353*4882a593Smuzhiyun * a subset of what the full implementation needs. (Linus)
354*4882a593Smuzhiyun */
355*4882a593Smuzhiyun
356*4882a593Smuzhiyun enum ohci_rh_state {
357*4882a593Smuzhiyun OHCI_RH_HALTED,
358*4882a593Smuzhiyun OHCI_RH_SUSPENDED,
359*4882a593Smuzhiyun OHCI_RH_RUNNING
360*4882a593Smuzhiyun };
361*4882a593Smuzhiyun
362*4882a593Smuzhiyun struct ohci_hcd {
363*4882a593Smuzhiyun spinlock_t lock;
364*4882a593Smuzhiyun
365*4882a593Smuzhiyun /*
366*4882a593Smuzhiyun * I/O memory used to communicate with the HC (dma-consistent)
367*4882a593Smuzhiyun */
368*4882a593Smuzhiyun struct ohci_regs __iomem *regs;
369*4882a593Smuzhiyun
370*4882a593Smuzhiyun /*
371*4882a593Smuzhiyun * main memory used to communicate with the HC (dma-consistent).
372*4882a593Smuzhiyun * hcd adds to schedule for a live hc any time, but removals finish
373*4882a593Smuzhiyun * only at the start of the next frame.
374*4882a593Smuzhiyun */
375*4882a593Smuzhiyun struct ohci_hcca *hcca;
376*4882a593Smuzhiyun dma_addr_t hcca_dma;
377*4882a593Smuzhiyun
378*4882a593Smuzhiyun struct ed *ed_rm_list; /* to be removed */
379*4882a593Smuzhiyun
380*4882a593Smuzhiyun struct ed *ed_bulktail; /* last in bulk list */
381*4882a593Smuzhiyun struct ed *ed_controltail; /* last in ctrl list */
382*4882a593Smuzhiyun struct ed *periodic [NUM_INTS]; /* shadow int_table */
383*4882a593Smuzhiyun
384*4882a593Smuzhiyun void (*start_hnp)(struct ohci_hcd *ohci);
385*4882a593Smuzhiyun
386*4882a593Smuzhiyun /*
387*4882a593Smuzhiyun * memory management for queue data structures
388*4882a593Smuzhiyun *
389*4882a593Smuzhiyun * @td_cache and @ed_cache are %NULL if &usb_hcd.localmem_pool is used.
390*4882a593Smuzhiyun */
391*4882a593Smuzhiyun struct dma_pool *td_cache;
392*4882a593Smuzhiyun struct dma_pool *ed_cache;
393*4882a593Smuzhiyun struct td *td_hash [TD_HASH_SIZE];
394*4882a593Smuzhiyun struct td *dl_start, *dl_end; /* the done list */
395*4882a593Smuzhiyun struct list_head pending;
396*4882a593Smuzhiyun struct list_head eds_in_use; /* all EDs with at least 1 TD */
397*4882a593Smuzhiyun
398*4882a593Smuzhiyun /*
399*4882a593Smuzhiyun * driver state
400*4882a593Smuzhiyun */
401*4882a593Smuzhiyun enum ohci_rh_state rh_state;
402*4882a593Smuzhiyun int num_ports;
403*4882a593Smuzhiyun int load [NUM_INTS];
404*4882a593Smuzhiyun u32 hc_control; /* copy of hc control reg */
405*4882a593Smuzhiyun unsigned long next_statechange; /* suspend/resume */
406*4882a593Smuzhiyun u32 fminterval; /* saved register */
407*4882a593Smuzhiyun unsigned autostop:1; /* rh auto stopping/stopped */
408*4882a593Smuzhiyun unsigned working:1;
409*4882a593Smuzhiyun unsigned restart_work:1;
410*4882a593Smuzhiyun
411*4882a593Smuzhiyun unsigned long flags; /* for HC bugs */
412*4882a593Smuzhiyun #define OHCI_QUIRK_AMD756 0x01 /* erratum #4 */
413*4882a593Smuzhiyun #define OHCI_QUIRK_SUPERIO 0x02 /* natsemi */
414*4882a593Smuzhiyun #define OHCI_QUIRK_INITRESET 0x04 /* SiS, OPTi, ... */
415*4882a593Smuzhiyun #define OHCI_QUIRK_BE_DESC 0x08 /* BE descriptors */
416*4882a593Smuzhiyun #define OHCI_QUIRK_BE_MMIO 0x10 /* BE registers */
417*4882a593Smuzhiyun #define OHCI_QUIRK_ZFMICRO 0x20 /* Compaq ZFMicro chipset*/
418*4882a593Smuzhiyun #define OHCI_QUIRK_NEC 0x40 /* lost interrupts */
419*4882a593Smuzhiyun #define OHCI_QUIRK_FRAME_NO 0x80 /* no big endian frame_no shift */
420*4882a593Smuzhiyun #define OHCI_QUIRK_HUB_POWER 0x100 /* distrust firmware power/oc setup */
421*4882a593Smuzhiyun #define OHCI_QUIRK_AMD_PLL 0x200 /* AMD PLL quirk*/
422*4882a593Smuzhiyun #define OHCI_QUIRK_AMD_PREFETCH 0x400 /* pre-fetch for ISO transfer */
423*4882a593Smuzhiyun #define OHCI_QUIRK_GLOBAL_SUSPEND 0x800 /* must suspend ports */
424*4882a593Smuzhiyun #define OHCI_QUIRK_QEMU 0x1000 /* relax timing expectations */
425*4882a593Smuzhiyun
426*4882a593Smuzhiyun // there are also chip quirks/bugs in init logic
427*4882a593Smuzhiyun
428*4882a593Smuzhiyun unsigned prev_frame_no;
429*4882a593Smuzhiyun unsigned wdh_cnt, prev_wdh_cnt;
430*4882a593Smuzhiyun u32 prev_donehead;
431*4882a593Smuzhiyun struct timer_list io_watchdog;
432*4882a593Smuzhiyun
433*4882a593Smuzhiyun struct work_struct nec_work; /* Worker for NEC quirk */
434*4882a593Smuzhiyun
435*4882a593Smuzhiyun struct dentry *debug_dir;
436*4882a593Smuzhiyun
437*4882a593Smuzhiyun /* platform-specific data -- must come last */
438*4882a593Smuzhiyun unsigned long priv[] __aligned(sizeof(s64));
439*4882a593Smuzhiyun
440*4882a593Smuzhiyun };
441*4882a593Smuzhiyun
442*4882a593Smuzhiyun #ifdef CONFIG_USB_PCI
quirk_nec(struct ohci_hcd * ohci)443*4882a593Smuzhiyun static inline int quirk_nec(struct ohci_hcd *ohci)
444*4882a593Smuzhiyun {
445*4882a593Smuzhiyun return ohci->flags & OHCI_QUIRK_NEC;
446*4882a593Smuzhiyun }
quirk_zfmicro(struct ohci_hcd * ohci)447*4882a593Smuzhiyun static inline int quirk_zfmicro(struct ohci_hcd *ohci)
448*4882a593Smuzhiyun {
449*4882a593Smuzhiyun return ohci->flags & OHCI_QUIRK_ZFMICRO;
450*4882a593Smuzhiyun }
quirk_amdiso(struct ohci_hcd * ohci)451*4882a593Smuzhiyun static inline int quirk_amdiso(struct ohci_hcd *ohci)
452*4882a593Smuzhiyun {
453*4882a593Smuzhiyun return ohci->flags & OHCI_QUIRK_AMD_PLL;
454*4882a593Smuzhiyun }
quirk_amdprefetch(struct ohci_hcd * ohci)455*4882a593Smuzhiyun static inline int quirk_amdprefetch(struct ohci_hcd *ohci)
456*4882a593Smuzhiyun {
457*4882a593Smuzhiyun return ohci->flags & OHCI_QUIRK_AMD_PREFETCH;
458*4882a593Smuzhiyun }
459*4882a593Smuzhiyun #else
quirk_nec(struct ohci_hcd * ohci)460*4882a593Smuzhiyun static inline int quirk_nec(struct ohci_hcd *ohci)
461*4882a593Smuzhiyun {
462*4882a593Smuzhiyun return 0;
463*4882a593Smuzhiyun }
quirk_zfmicro(struct ohci_hcd * ohci)464*4882a593Smuzhiyun static inline int quirk_zfmicro(struct ohci_hcd *ohci)
465*4882a593Smuzhiyun {
466*4882a593Smuzhiyun return 0;
467*4882a593Smuzhiyun }
quirk_amdiso(struct ohci_hcd * ohci)468*4882a593Smuzhiyun static inline int quirk_amdiso(struct ohci_hcd *ohci)
469*4882a593Smuzhiyun {
470*4882a593Smuzhiyun return 0;
471*4882a593Smuzhiyun }
quirk_amdprefetch(struct ohci_hcd * ohci)472*4882a593Smuzhiyun static inline int quirk_amdprefetch(struct ohci_hcd *ohci)
473*4882a593Smuzhiyun {
474*4882a593Smuzhiyun return 0;
475*4882a593Smuzhiyun }
476*4882a593Smuzhiyun #endif
477*4882a593Smuzhiyun
478*4882a593Smuzhiyun /* convert between an hcd pointer and the corresponding ohci_hcd */
hcd_to_ohci(struct usb_hcd * hcd)479*4882a593Smuzhiyun static inline struct ohci_hcd *hcd_to_ohci (struct usb_hcd *hcd)
480*4882a593Smuzhiyun {
481*4882a593Smuzhiyun return (struct ohci_hcd *) (hcd->hcd_priv);
482*4882a593Smuzhiyun }
ohci_to_hcd(const struct ohci_hcd * ohci)483*4882a593Smuzhiyun static inline struct usb_hcd *ohci_to_hcd (const struct ohci_hcd *ohci)
484*4882a593Smuzhiyun {
485*4882a593Smuzhiyun return container_of ((void *) ohci, struct usb_hcd, hcd_priv);
486*4882a593Smuzhiyun }
487*4882a593Smuzhiyun
488*4882a593Smuzhiyun /*-------------------------------------------------------------------------*/
489*4882a593Smuzhiyun
490*4882a593Smuzhiyun #define ohci_dbg(ohci, fmt, args...) \
491*4882a593Smuzhiyun dev_dbg (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
492*4882a593Smuzhiyun #define ohci_err(ohci, fmt, args...) \
493*4882a593Smuzhiyun dev_err (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
494*4882a593Smuzhiyun #define ohci_info(ohci, fmt, args...) \
495*4882a593Smuzhiyun dev_info (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
496*4882a593Smuzhiyun #define ohci_warn(ohci, fmt, args...) \
497*4882a593Smuzhiyun dev_warn (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
498*4882a593Smuzhiyun
499*4882a593Smuzhiyun /*-------------------------------------------------------------------------*/
500*4882a593Smuzhiyun
501*4882a593Smuzhiyun /*
502*4882a593Smuzhiyun * While most USB host controllers implement their registers and
503*4882a593Smuzhiyun * in-memory communication descriptors in little-endian format,
504*4882a593Smuzhiyun * a minority (notably the IBM STB04XXX and the Motorola MPC5200
505*4882a593Smuzhiyun * processors) implement them in big endian format.
506*4882a593Smuzhiyun *
507*4882a593Smuzhiyun * In addition some more exotic implementations like the Toshiba
508*4882a593Smuzhiyun * Spider (aka SCC) cell southbridge are "mixed" endian, that is,
509*4882a593Smuzhiyun * they have a different endianness for registers vs. in-memory
510*4882a593Smuzhiyun * descriptors.
511*4882a593Smuzhiyun *
512*4882a593Smuzhiyun * This attempts to support either format at compile time without a
513*4882a593Smuzhiyun * runtime penalty, or both formats with the additional overhead
514*4882a593Smuzhiyun * of checking a flag bit.
515*4882a593Smuzhiyun *
516*4882a593Smuzhiyun * That leads to some tricky Kconfig rules howevber. There are
517*4882a593Smuzhiyun * different defaults based on some arch/ppc platforms, though
518*4882a593Smuzhiyun * the basic rules are:
519*4882a593Smuzhiyun *
520*4882a593Smuzhiyun * Controller type Kconfig options needed
521*4882a593Smuzhiyun * --------------- ----------------------
522*4882a593Smuzhiyun * little endian CONFIG_USB_OHCI_LITTLE_ENDIAN
523*4882a593Smuzhiyun *
524*4882a593Smuzhiyun * fully big endian CONFIG_USB_OHCI_BIG_ENDIAN_DESC _and_
525*4882a593Smuzhiyun * CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
526*4882a593Smuzhiyun *
527*4882a593Smuzhiyun * mixed endian CONFIG_USB_OHCI_LITTLE_ENDIAN _and_
528*4882a593Smuzhiyun * CONFIG_USB_OHCI_BIG_ENDIAN_{MMIO,DESC}
529*4882a593Smuzhiyun *
530*4882a593Smuzhiyun * (If you have a mixed endian controller, you -must- also define
531*4882a593Smuzhiyun * CONFIG_USB_OHCI_LITTLE_ENDIAN or things will not work when building
532*4882a593Smuzhiyun * both your mixed endian and a fully big endian controller support in
533*4882a593Smuzhiyun * the same kernel image).
534*4882a593Smuzhiyun */
535*4882a593Smuzhiyun
536*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_BIG_ENDIAN_DESC
537*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_LITTLE_ENDIAN
538*4882a593Smuzhiyun #define big_endian_desc(ohci) (ohci->flags & OHCI_QUIRK_BE_DESC)
539*4882a593Smuzhiyun #else
540*4882a593Smuzhiyun #define big_endian_desc(ohci) 1 /* only big endian */
541*4882a593Smuzhiyun #endif
542*4882a593Smuzhiyun #else
543*4882a593Smuzhiyun #define big_endian_desc(ohci) 0 /* only little endian */
544*4882a593Smuzhiyun #endif
545*4882a593Smuzhiyun
546*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
547*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_LITTLE_ENDIAN
548*4882a593Smuzhiyun #define big_endian_mmio(ohci) (ohci->flags & OHCI_QUIRK_BE_MMIO)
549*4882a593Smuzhiyun #else
550*4882a593Smuzhiyun #define big_endian_mmio(ohci) 1 /* only big endian */
551*4882a593Smuzhiyun #endif
552*4882a593Smuzhiyun #else
553*4882a593Smuzhiyun #define big_endian_mmio(ohci) 0 /* only little endian */
554*4882a593Smuzhiyun #endif
555*4882a593Smuzhiyun
556*4882a593Smuzhiyun /*
557*4882a593Smuzhiyun * Big-endian read/write functions are arch-specific.
558*4882a593Smuzhiyun * Other arches can be added if/when they're needed.
559*4882a593Smuzhiyun *
560*4882a593Smuzhiyun */
_ohci_readl(const struct ohci_hcd * ohci,__hc32 __iomem * regs)561*4882a593Smuzhiyun static inline unsigned int _ohci_readl (const struct ohci_hcd *ohci,
562*4882a593Smuzhiyun __hc32 __iomem * regs)
563*4882a593Smuzhiyun {
564*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
565*4882a593Smuzhiyun return big_endian_mmio(ohci) ?
566*4882a593Smuzhiyun readl_be (regs) :
567*4882a593Smuzhiyun readl (regs);
568*4882a593Smuzhiyun #else
569*4882a593Smuzhiyun return readl (regs);
570*4882a593Smuzhiyun #endif
571*4882a593Smuzhiyun }
572*4882a593Smuzhiyun
_ohci_writel(const struct ohci_hcd * ohci,const unsigned int val,__hc32 __iomem * regs)573*4882a593Smuzhiyun static inline void _ohci_writel (const struct ohci_hcd *ohci,
574*4882a593Smuzhiyun const unsigned int val, __hc32 __iomem *regs)
575*4882a593Smuzhiyun {
576*4882a593Smuzhiyun #ifdef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
577*4882a593Smuzhiyun big_endian_mmio(ohci) ?
578*4882a593Smuzhiyun writel_be (val, regs) :
579*4882a593Smuzhiyun writel (val, regs);
580*4882a593Smuzhiyun #else
581*4882a593Smuzhiyun writel (val, regs);
582*4882a593Smuzhiyun #endif
583*4882a593Smuzhiyun }
584*4882a593Smuzhiyun
585*4882a593Smuzhiyun #define ohci_readl(o,r) _ohci_readl(o,r)
586*4882a593Smuzhiyun #define ohci_writel(o,v,r) _ohci_writel(o,v,r)
587*4882a593Smuzhiyun
588*4882a593Smuzhiyun
589*4882a593Smuzhiyun /*-------------------------------------------------------------------------*/
590*4882a593Smuzhiyun
591*4882a593Smuzhiyun /* cpu to ohci */
cpu_to_hc16(const struct ohci_hcd * ohci,const u16 x)592*4882a593Smuzhiyun static inline __hc16 cpu_to_hc16 (const struct ohci_hcd *ohci, const u16 x)
593*4882a593Smuzhiyun {
594*4882a593Smuzhiyun return big_endian_desc(ohci) ?
595*4882a593Smuzhiyun (__force __hc16)cpu_to_be16(x) :
596*4882a593Smuzhiyun (__force __hc16)cpu_to_le16(x);
597*4882a593Smuzhiyun }
598*4882a593Smuzhiyun
cpu_to_hc16p(const struct ohci_hcd * ohci,const u16 * x)599*4882a593Smuzhiyun static inline __hc16 cpu_to_hc16p (const struct ohci_hcd *ohci, const u16 *x)
600*4882a593Smuzhiyun {
601*4882a593Smuzhiyun return big_endian_desc(ohci) ?
602*4882a593Smuzhiyun cpu_to_be16p(x) :
603*4882a593Smuzhiyun cpu_to_le16p(x);
604*4882a593Smuzhiyun }
605*4882a593Smuzhiyun
cpu_to_hc32(const struct ohci_hcd * ohci,const u32 x)606*4882a593Smuzhiyun static inline __hc32 cpu_to_hc32 (const struct ohci_hcd *ohci, const u32 x)
607*4882a593Smuzhiyun {
608*4882a593Smuzhiyun return big_endian_desc(ohci) ?
609*4882a593Smuzhiyun (__force __hc32)cpu_to_be32(x) :
610*4882a593Smuzhiyun (__force __hc32)cpu_to_le32(x);
611*4882a593Smuzhiyun }
612*4882a593Smuzhiyun
cpu_to_hc32p(const struct ohci_hcd * ohci,const u32 * x)613*4882a593Smuzhiyun static inline __hc32 cpu_to_hc32p (const struct ohci_hcd *ohci, const u32 *x)
614*4882a593Smuzhiyun {
615*4882a593Smuzhiyun return big_endian_desc(ohci) ?
616*4882a593Smuzhiyun cpu_to_be32p(x) :
617*4882a593Smuzhiyun cpu_to_le32p(x);
618*4882a593Smuzhiyun }
619*4882a593Smuzhiyun
620*4882a593Smuzhiyun /* ohci to cpu */
hc16_to_cpu(const struct ohci_hcd * ohci,const __hc16 x)621*4882a593Smuzhiyun static inline u16 hc16_to_cpu (const struct ohci_hcd *ohci, const __hc16 x)
622*4882a593Smuzhiyun {
623*4882a593Smuzhiyun return big_endian_desc(ohci) ?
624*4882a593Smuzhiyun be16_to_cpu((__force __be16)x) :
625*4882a593Smuzhiyun le16_to_cpu((__force __le16)x);
626*4882a593Smuzhiyun }
627*4882a593Smuzhiyun
hc16_to_cpup(const struct ohci_hcd * ohci,const __hc16 * x)628*4882a593Smuzhiyun static inline u16 hc16_to_cpup (const struct ohci_hcd *ohci, const __hc16 *x)
629*4882a593Smuzhiyun {
630*4882a593Smuzhiyun return big_endian_desc(ohci) ?
631*4882a593Smuzhiyun be16_to_cpup((__force __be16 *)x) :
632*4882a593Smuzhiyun le16_to_cpup((__force __le16 *)x);
633*4882a593Smuzhiyun }
634*4882a593Smuzhiyun
hc32_to_cpu(const struct ohci_hcd * ohci,const __hc32 x)635*4882a593Smuzhiyun static inline u32 hc32_to_cpu (const struct ohci_hcd *ohci, const __hc32 x)
636*4882a593Smuzhiyun {
637*4882a593Smuzhiyun return big_endian_desc(ohci) ?
638*4882a593Smuzhiyun be32_to_cpu((__force __be32)x) :
639*4882a593Smuzhiyun le32_to_cpu((__force __le32)x);
640*4882a593Smuzhiyun }
641*4882a593Smuzhiyun
hc32_to_cpup(const struct ohci_hcd * ohci,const __hc32 * x)642*4882a593Smuzhiyun static inline u32 hc32_to_cpup (const struct ohci_hcd *ohci, const __hc32 *x)
643*4882a593Smuzhiyun {
644*4882a593Smuzhiyun return big_endian_desc(ohci) ?
645*4882a593Smuzhiyun be32_to_cpup((__force __be32 *)x) :
646*4882a593Smuzhiyun le32_to_cpup((__force __le32 *)x);
647*4882a593Smuzhiyun }
648*4882a593Smuzhiyun
649*4882a593Smuzhiyun /*-------------------------------------------------------------------------*/
650*4882a593Smuzhiyun
651*4882a593Smuzhiyun /*
652*4882a593Smuzhiyun * The HCCA frame number is 16 bits, but is accessed as 32 bits since not all
653*4882a593Smuzhiyun * hardware handles 16 bit reads. Depending on the SoC implementation, the
654*4882a593Smuzhiyun * frame number can wind up in either bits [31:16] (default) or
655*4882a593Smuzhiyun * [15:0] (OHCI_QUIRK_FRAME_NO) on big endian hosts.
656*4882a593Smuzhiyun *
657*4882a593Smuzhiyun * Somewhat similarly, the 16-bit PSW fields in a transfer descriptor are
658*4882a593Smuzhiyun * reordered on BE.
659*4882a593Smuzhiyun */
660*4882a593Smuzhiyun
ohci_frame_no(const struct ohci_hcd * ohci)661*4882a593Smuzhiyun static inline u16 ohci_frame_no(const struct ohci_hcd *ohci)
662*4882a593Smuzhiyun {
663*4882a593Smuzhiyun u32 tmp;
664*4882a593Smuzhiyun if (big_endian_desc(ohci)) {
665*4882a593Smuzhiyun tmp = be32_to_cpup((__force __be32 *)&ohci->hcca->frame_no);
666*4882a593Smuzhiyun if (!(ohci->flags & OHCI_QUIRK_FRAME_NO))
667*4882a593Smuzhiyun tmp >>= 16;
668*4882a593Smuzhiyun } else
669*4882a593Smuzhiyun tmp = le32_to_cpup((__force __le32 *)&ohci->hcca->frame_no);
670*4882a593Smuzhiyun
671*4882a593Smuzhiyun return (u16)tmp;
672*4882a593Smuzhiyun }
673*4882a593Smuzhiyun
ohci_hwPSWp(const struct ohci_hcd * ohci,const struct td * td,int index)674*4882a593Smuzhiyun static inline __hc16 *ohci_hwPSWp(const struct ohci_hcd *ohci,
675*4882a593Smuzhiyun const struct td *td, int index)
676*4882a593Smuzhiyun {
677*4882a593Smuzhiyun return (__hc16 *)(big_endian_desc(ohci) ?
678*4882a593Smuzhiyun &td->hwPSW[index ^ 1] : &td->hwPSW[index]);
679*4882a593Smuzhiyun }
680*4882a593Smuzhiyun
ohci_hwPSW(const struct ohci_hcd * ohci,const struct td * td,int index)681*4882a593Smuzhiyun static inline u16 ohci_hwPSW(const struct ohci_hcd *ohci,
682*4882a593Smuzhiyun const struct td *td, int index)
683*4882a593Smuzhiyun {
684*4882a593Smuzhiyun return hc16_to_cpup(ohci, ohci_hwPSWp(ohci, td, index));
685*4882a593Smuzhiyun }
686*4882a593Smuzhiyun
687*4882a593Smuzhiyun /*-------------------------------------------------------------------------*/
688*4882a593Smuzhiyun
689*4882a593Smuzhiyun #define FI 0x2edf /* 12000 bits per frame (-1) */
690*4882a593Smuzhiyun #define FSMP(fi) (0x7fff & ((6 * ((fi) - 210)) / 7))
691*4882a593Smuzhiyun #define FIT (1 << 31)
692*4882a593Smuzhiyun #define LSTHRESH 0x628 /* lowspeed bit threshold */
693*4882a593Smuzhiyun
periodic_reinit(struct ohci_hcd * ohci)694*4882a593Smuzhiyun static inline void periodic_reinit (struct ohci_hcd *ohci)
695*4882a593Smuzhiyun {
696*4882a593Smuzhiyun u32 fi = ohci->fminterval & 0x03fff;
697*4882a593Smuzhiyun u32 fit = ohci_readl(ohci, &ohci->regs->fminterval) & FIT;
698*4882a593Smuzhiyun
699*4882a593Smuzhiyun ohci_writel (ohci, (fit ^ FIT) | ohci->fminterval,
700*4882a593Smuzhiyun &ohci->regs->fminterval);
701*4882a593Smuzhiyun ohci_writel (ohci, ((9 * fi) / 10) & 0x3fff,
702*4882a593Smuzhiyun &ohci->regs->periodicstart);
703*4882a593Smuzhiyun }
704*4882a593Smuzhiyun
705*4882a593Smuzhiyun /* AMD-756 (D2 rev) reports corrupt register contents in some cases.
706*4882a593Smuzhiyun * The erratum (#4) description is incorrect. AMD's workaround waits
707*4882a593Smuzhiyun * till some bits (mostly reserved) are clear; ok for all revs.
708*4882a593Smuzhiyun */
709*4882a593Smuzhiyun #define read_roothub(hc, register, mask) ({ \
710*4882a593Smuzhiyun u32 temp = ohci_readl (hc, &hc->regs->roothub.register); \
711*4882a593Smuzhiyun if (temp == -1) \
712*4882a593Smuzhiyun hc->rh_state = OHCI_RH_HALTED; \
713*4882a593Smuzhiyun else if (hc->flags & OHCI_QUIRK_AMD756) \
714*4882a593Smuzhiyun while (temp & mask) \
715*4882a593Smuzhiyun temp = ohci_readl (hc, &hc->regs->roothub.register); \
716*4882a593Smuzhiyun temp; })
717*4882a593Smuzhiyun
roothub_a(struct ohci_hcd * hc)718*4882a593Smuzhiyun static inline u32 roothub_a (struct ohci_hcd *hc)
719*4882a593Smuzhiyun { return read_roothub (hc, a, 0xfc0fe000); }
roothub_b(struct ohci_hcd * hc)720*4882a593Smuzhiyun static inline u32 roothub_b (struct ohci_hcd *hc)
721*4882a593Smuzhiyun { return ohci_readl (hc, &hc->regs->roothub.b); }
roothub_status(struct ohci_hcd * hc)722*4882a593Smuzhiyun static inline u32 roothub_status (struct ohci_hcd *hc)
723*4882a593Smuzhiyun { return ohci_readl (hc, &hc->regs->roothub.status); }
roothub_portstatus(struct ohci_hcd * hc,int i)724*4882a593Smuzhiyun static inline u32 roothub_portstatus (struct ohci_hcd *hc, int i)
725*4882a593Smuzhiyun { return read_roothub (hc, portstatus [i], 0xffe0fce0); }
726*4882a593Smuzhiyun
727*4882a593Smuzhiyun /* Declarations of things exported for use by ohci platform drivers */
728*4882a593Smuzhiyun
729*4882a593Smuzhiyun struct ohci_driver_overrides {
730*4882a593Smuzhiyun const char *product_desc;
731*4882a593Smuzhiyun size_t extra_priv_size;
732*4882a593Smuzhiyun int (*reset)(struct usb_hcd *hcd);
733*4882a593Smuzhiyun };
734*4882a593Smuzhiyun
735*4882a593Smuzhiyun extern void ohci_init_driver(struct hc_driver *drv,
736*4882a593Smuzhiyun const struct ohci_driver_overrides *over);
737*4882a593Smuzhiyun extern int ohci_restart(struct ohci_hcd *ohci);
738*4882a593Smuzhiyun extern int ohci_setup(struct usb_hcd *hcd);
739*4882a593Smuzhiyun extern int ohci_suspend(struct usb_hcd *hcd, bool do_wakeup);
740*4882a593Smuzhiyun extern int ohci_resume(struct usb_hcd *hcd, bool hibernated);
741*4882a593Smuzhiyun extern int ohci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
742*4882a593Smuzhiyun u16 wIndex, char *buf, u16 wLength);
743*4882a593Smuzhiyun extern int ohci_hub_status_data(struct usb_hcd *hcd, char *buf);
744