1
2
3
4
5
6
7
8
9
10
11
12
13
14
15typedef __u32 __bitwise __hc32;
16typedef __u16 __bitwise __hc16;
17
18
19
20
21
22
23
24
25struct ed {
26
27 __hc32 hwINFO;
28
29#define ED_DEQUEUE (1 << 27)
30
31#define ED_ISO (1 << 15)
32#define ED_SKIP (1 << 14)
33#define ED_LOWSPEED (1 << 13)
34#define ED_OUT (0x01 << 11)
35#define ED_IN (0x02 << 11)
36 __hc32 hwTailP;
37 __hc32 hwHeadP;
38#define ED_C (0x02)
39#define ED_H (0x01)
40 __hc32 hwNextED;
41
42
43 dma_addr_t dma;
44 struct td *dummy;
45
46
47 struct ed *ed_next;
48 struct ed *ed_prev;
49 struct list_head td_list;
50
51
52
53
54 u8 state;
55#define ED_IDLE 0x00
56#define ED_UNLINK 0x01
57#define ED_OPER 0x02
58
59 u8 type;
60
61
62 u8 branch;
63 u16 interval;
64 u16 load;
65 u16 last_iso;
66
67
68 u16 tick;
69} __attribute__ ((aligned(16)));
70
71#define ED_MASK ((u32)~0x0f)
72
73
74
75
76
77
78
79struct td {
80
81 __hc32 hwINFO;
82
83
84#define TD_CC 0xf0000000
85#define TD_CC_GET(td_p) ((td_p >>28) & 0x0f)
86
87#define TD_DI 0x00E00000
88#define TD_DI_SET(X) (((X) & 0x07)<< 21)
89
90
91
92#define TD_DONE 0x00020000
93#define TD_ISO 0x00010000
94
95
96#define TD_EC 0x0C000000
97#define TD_T 0x03000000
98#define TD_T_DATA0 0x02000000
99#define TD_T_DATA1 0x03000000
100#define TD_T_TOGGLE 0x00000000
101#define TD_DP 0x00180000
102#define TD_DP_SETUP 0x00000000
103#define TD_DP_IN 0x00100000
104#define TD_DP_OUT 0x00080000
105
106#define TD_R 0x00040000
107
108
109
110 __hc32 hwCBP;
111 __hc32 hwNextTD;
112 __hc32 hwBE;
113
114
115#define MAXPSW 1
116 __hc16 hwPSW [MAXPSW];
117
118
119 __u8 index;
120 struct ed *ed;
121 struct td *td_hash;
122 struct td *next_dl_td;
123 struct urb *urb;
124
125 dma_addr_t td_dma;
126 dma_addr_t data_dma;
127
128 struct list_head td_list;
129} __attribute__ ((aligned(32)));
130
131#define TD_MASK ((u32)~0x1f)
132
133
134
135
136#define TD_CC_NOERROR 0x00
137#define TD_CC_CRC 0x01
138#define TD_CC_BITSTUFFING 0x02
139#define TD_CC_DATATOGGLEM 0x03
140#define TD_CC_STALL 0x04
141#define TD_DEVNOTRESP 0x05
142#define TD_PIDCHECKFAIL 0x06
143#define TD_UNEXPECTEDPID 0x07
144#define TD_DATAOVERRUN 0x08
145#define TD_DATAUNDERRUN 0x09
146
147#define TD_BUFFEROVERRUN 0x0C
148#define TD_BUFFERUNDERRUN 0x0D
149
150#define TD_NOTACCESSED 0x0F
151
152
153
154static const int cc_to_error [16] = {
155 0,
156 -EILSEQ,
157 -EPROTO,
158 -EILSEQ,
159 -EPIPE,
160 -ETIMEDOUT,
161 -EPROTO,
162 -EPROTO,
163 -EOVERFLOW,
164 -EREMOTEIO,
165 -EIO,
166 -EIO,
167 -ECOMM,
168 -ENOSR,
169 -EALREADY,
170 -EALREADY
171};
172
173
174
175
176
177
178
179struct ohci_hcca {
180#define NUM_INTS 32
181 __hc32 int_table [NUM_INTS];
182
183
184
185
186
187
188 __hc32 frame_no;
189 __hc32 done_head;
190 u8 reserved_for_hc [116];
191 u8 what [4];
192} __attribute__ ((aligned(256)));
193
194#define ohci_frame_no(ohci) ((u16)hc32_to_cpup(ohci,&(ohci)->hcca->frame_no))
195
196
197
198
199
200
201struct ohci_regs {
202
203 __hc32 revision;
204 __hc32 control;
205 __hc32 cmdstatus;
206 __hc32 intrstatus;
207 __hc32 intrenable;
208 __hc32 intrdisable;
209
210
211 __hc32 hcca;
212 __hc32 ed_periodcurrent;
213 __hc32 ed_controlhead;
214 __hc32 ed_controlcurrent;
215 __hc32 ed_bulkhead;
216 __hc32 ed_bulkcurrent;
217 __hc32 donehead;
218
219
220 __hc32 fminterval;
221 __hc32 fmremaining;
222 __hc32 fmnumber;
223 __hc32 periodicstart;
224 __hc32 lsthresh;
225
226
227 struct ohci_roothub_regs {
228 __hc32 a;
229 __hc32 b;
230 __hc32 status;
231#define MAX_ROOT_PORTS 15
232 __hc32 portstatus [MAX_ROOT_PORTS];
233 } roothub;
234
235
236
237} __attribute__ ((aligned(32)));
238
239
240
241
242
243
244
245#define OHCI_CTRL_CBSR (3 << 0)
246#define OHCI_CTRL_PLE (1 << 2)
247#define OHCI_CTRL_IE (1 << 3)
248#define OHCI_CTRL_CLE (1 << 4)
249#define OHCI_CTRL_BLE (1 << 5)
250#define OHCI_CTRL_HCFS (3 << 6)
251#define OHCI_CTRL_IR (1 << 8)
252#define OHCI_CTRL_RWC (1 << 9)
253#define OHCI_CTRL_RWE (1 << 10)
254
255
256# define OHCI_USB_RESET (0 << 6)
257# define OHCI_USB_RESUME (1 << 6)
258# define OHCI_USB_OPER (2 << 6)
259# define OHCI_USB_SUSPEND (3 << 6)
260
261
262
263
264#define OHCI_HCR (1 << 0)
265#define OHCI_CLF (1 << 1)
266#define OHCI_BLF (1 << 2)
267#define OHCI_OCR (1 << 3)
268#define OHCI_SOC (3 << 16)
269
270
271
272
273
274
275
276#define OHCI_INTR_SO (1 << 0)
277#define OHCI_INTR_WDH (1 << 1)
278#define OHCI_INTR_SF (1 << 2)
279#define OHCI_INTR_RD (1 << 3)
280#define OHCI_INTR_UE (1 << 4)
281#define OHCI_INTR_FNO (1 << 5)
282#define OHCI_INTR_RHSC (1 << 6)
283#define OHCI_INTR_OC (1 << 30)
284#define OHCI_INTR_MIE (1 << 31)
285
286
287
288
289
290#define RH_PS_CCS 0x00000001
291#define RH_PS_PES 0x00000002
292#define RH_PS_PSS 0x00000004
293#define RH_PS_POCI 0x00000008
294#define RH_PS_PRS 0x00000010
295#define RH_PS_PPS 0x00000100
296#define RH_PS_LSDA 0x00000200
297#define RH_PS_CSC 0x00010000
298#define RH_PS_PESC 0x00020000
299#define RH_PS_PSSC 0x00040000
300#define RH_PS_OCIC 0x00080000
301#define RH_PS_PRSC 0x00100000
302
303
304#define RH_HS_LPS 0x00000001
305#define RH_HS_OCI 0x00000002
306#define RH_HS_DRWE 0x00008000
307#define RH_HS_LPSC 0x00010000
308#define RH_HS_OCIC 0x00020000
309#define RH_HS_CRWE 0x80000000
310
311
312#define RH_B_DR 0x0000ffff
313#define RH_B_PPCM 0xffff0000
314
315
316#define RH_A_NDP (0xff << 0)
317#define RH_A_PSM (1 << 8)
318#define RH_A_NPS (1 << 9)
319#define RH_A_DT (1 << 10)
320#define RH_A_OCPM (1 << 11)
321#define RH_A_NOCP (1 << 12)
322#define RH_A_POTPGT (0xff << 24)
323
324
325
326typedef struct urb_priv {
327 struct ed *ed;
328 u16 length;
329 u16 td_cnt;
330 struct list_head pending;
331 struct td *td [0];
332
333} urb_priv_t;
334
335#define TD_HASH_SIZE 64
336
337#define TD_HASH_FUNC(td_dma) ((td_dma ^ (td_dma >> 6)) % TD_HASH_SIZE)
338
339
340
341
342
343
344
345
346
347struct ohci_hcd {
348 spinlock_t lock;
349
350
351
352
353 struct ohci_regs __iomem *regs;
354
355
356
357
358
359
360 struct ohci_hcca *hcca;
361 dma_addr_t hcca_dma;
362
363 struct ed *ed_rm_list;
364
365 struct ed *ed_bulktail;
366 struct ed *ed_controltail;
367 struct ed *periodic [NUM_INTS];
368
369
370
371
372
373 struct otg_transceiver *transceiver;
374 unsigned power_budget;
375
376
377
378
379 struct dma_pool *td_cache;
380 struct dma_pool *ed_cache;
381 struct td *td_hash [TD_HASH_SIZE];
382 struct list_head pending;
383
384
385
386
387 int load [NUM_INTS];
388 u32 hc_control;
389 unsigned long next_statechange;
390 u32 fminterval;
391
392 struct work_struct rh_resume;
393
394 unsigned long flags;
395#define OHCI_QUIRK_AMD756 0x01
396#define OHCI_QUIRK_SUPERIO 0x02
397#define OHCI_QUIRK_INITRESET 0x04
398#define OHCI_BIG_ENDIAN 0x08
399
400
401};
402
403
404static inline struct ohci_hcd *hcd_to_ohci (struct usb_hcd *hcd)
405{
406 return (struct ohci_hcd *) (hcd->hcd_priv);
407}
408static inline struct usb_hcd *ohci_to_hcd (const struct ohci_hcd *ohci)
409{
410 return container_of ((void *) ohci, struct usb_hcd, hcd_priv);
411}
412
413
414
415#ifndef DEBUG
416#define STUB_DEBUG_FILES
417#endif
418
419#define ohci_dbg(ohci, fmt, args...) \
420 dev_dbg (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
421#define ohci_err(ohci, fmt, args...) \
422 dev_err (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
423#define ohci_info(ohci, fmt, args...) \
424 dev_info (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
425#define ohci_warn(ohci, fmt, args...) \
426 dev_warn (ohci_to_hcd(ohci)->self.controller , fmt , ## args )
427
428#ifdef OHCI_VERBOSE_DEBUG
429# define ohci_vdbg ohci_dbg
430#else
431# define ohci_vdbg(ohci, fmt, args...) do { } while (0)
432#endif
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447#ifdef CONFIG_USB_OHCI_BIG_ENDIAN
448
449#ifdef CONFIG_USB_OHCI_LITTLE_ENDIAN
450#define big_endian(ohci) (ohci->flags & OHCI_BIG_ENDIAN)
451#else
452#define big_endian(ohci) 1
453#endif
454
455
456
457
458
459#if defined(CONFIG_PPC)
460#define readl_be(addr) in_be32((__force unsigned *)addr)
461#define writel_be(val, addr) out_be32((__force unsigned *)addr, val)
462#endif
463
464static inline unsigned int ohci_readl (const struct ohci_hcd *ohci,
465 __hc32 __iomem * regs)
466{
467 return big_endian(ohci) ? readl_be (regs) : readl ((__force u32 *)regs);
468}
469
470static inline void ohci_writel (const struct ohci_hcd *ohci,
471 const unsigned int val, __hc32 __iomem *regs)
472{
473 big_endian(ohci) ? writel_be (val, regs) :
474 writel (val, (__force u32 *)regs);
475}
476
477#else
478
479#define big_endian(ohci) 0
480
481#ifdef CONFIG_ARCH_LH7A404
482
483
484
485
486
487static inline unsigned int
488ohci_readl (const struct ohci_hcd *ohci, const __hc32 *regs)
489{
490 *(volatile __force unsigned int*) regs;
491 return *(volatile __force unsigned int*) regs;
492}
493#else
494
495
496static inline unsigned int
497ohci_readl (const struct ohci_hcd *ohci, __hc32 __iomem * regs)
498{
499 return readl(regs);
500}
501#endif
502
503static inline void ohci_writel (const struct ohci_hcd *ohci,
504 const unsigned int val, __hc32 __iomem *regs)
505{
506 writel (val, regs);
507}
508
509#endif
510
511
512
513
514static inline __hc16 cpu_to_hc16 (const struct ohci_hcd *ohci, const u16 x)
515{
516 return big_endian(ohci) ? (__force __hc16)cpu_to_be16(x) : (__force __hc16)cpu_to_le16(x);
517}
518
519static inline __hc16 cpu_to_hc16p (const struct ohci_hcd *ohci, const u16 *x)
520{
521 return big_endian(ohci) ? cpu_to_be16p(x) : cpu_to_le16p(x);
522}
523
524static inline __hc32 cpu_to_hc32 (const struct ohci_hcd *ohci, const u32 x)
525{
526 return big_endian(ohci) ? (__force __hc32)cpu_to_be32(x) : (__force __hc32)cpu_to_le32(x);
527}
528
529static inline __hc32 cpu_to_hc32p (const struct ohci_hcd *ohci, const u32 *x)
530{
531 return big_endian(ohci) ? cpu_to_be32p(x) : cpu_to_le32p(x);
532}
533
534
535static inline u16 hc16_to_cpu (const struct ohci_hcd *ohci, const __hc16 x)
536{
537 return big_endian(ohci) ? be16_to_cpu((__force __be16)x) : le16_to_cpu((__force __le16)x);
538}
539
540static inline u16 hc16_to_cpup (const struct ohci_hcd *ohci, const __hc16 *x)
541{
542 return big_endian(ohci) ? be16_to_cpup((__force __be16 *)x) : le16_to_cpup((__force __le16 *)x);
543}
544
545static inline u32 hc32_to_cpu (const struct ohci_hcd *ohci, const __hc32 x)
546{
547 return big_endian(ohci) ? be32_to_cpu((__force __be32)x) : le32_to_cpu((__force __le32)x);
548}
549
550static inline u32 hc32_to_cpup (const struct ohci_hcd *ohci, const __hc32 *x)
551{
552 return big_endian(ohci) ? be32_to_cpup((__force __be32 *)x) : le32_to_cpup((__force __le32 *)x);
553}
554
555
556
557static inline void disable (struct ohci_hcd *ohci)
558{
559 ohci_to_hcd(ohci)->state = USB_STATE_HALT;
560}
561
562#define FI 0x2edf
563#define FSMP(fi) (0x7fff & ((6 * ((fi) - 210)) / 7))
564#define LSTHRESH 0x628
565
566static inline void periodic_reinit (struct ohci_hcd *ohci)
567{
568 u32 fi = ohci->fminterval & 0x0ffff;
569
570 ohci_writel (ohci, ((9 * fi) / 10) & 0x3fff,
571 &ohci->regs->periodicstart);
572}
573
574
575
576
577
578#define read_roothub(hc, register, mask) ({ \
579 u32 temp = ohci_readl (hc, &hc->regs->roothub.register); \
580 if (temp == -1) \
581 disable (hc); \
582 else if (hc->flags & OHCI_QUIRK_AMD756) \
583 while (temp & mask) \
584 temp = ohci_readl (hc, &hc->regs->roothub.register); \
585 temp; })
586
587static u32 roothub_a (struct ohci_hcd *hc)
588 { return read_roothub (hc, a, 0xfc0fe000); }
589static inline u32 roothub_b (struct ohci_hcd *hc)
590 { return ohci_readl (hc, &hc->regs->roothub.b); }
591static inline u32 roothub_status (struct ohci_hcd *hc)
592 { return ohci_readl (hc, &hc->regs->roothub.status); }
593static u32 roothub_portstatus (struct ohci_hcd *hc, int i)
594 { return read_roothub (hc, portstatus [i], 0xffe0fce0); }
595