Push 'struct pci_device' into USB code (instead of using u16 bdf).
[seabios.git] / src / usb-ohci.c
1 // Code for handling OHCI USB controllers.
2 //
3 // Copyright (C) 2009  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 #include "util.h" // dprintf
8 #include "pci.h" // pci_bdf_to_bus
9 #include "config.h" // CONFIG_*
10 #include "usb-ohci.h" // struct ohci_hcca
11 #include "pci_regs.h" // PCI_BASE_ADDRESS_0
12 #include "usb.h" // struct usb_s
13 #include "farptr.h" // GET_FLATPTR
14
15 #define FIT                     (1 << 31)
16
17 struct usb_ohci_s {
18     struct usb_s usb;
19     struct ohci_regs *regs;
20 };
21
22
23 /****************************************************************
24  * Root hub
25  ****************************************************************/
26
27 // Check if device attached to port
28 static int
29 ohci_hub_detect(struct usbhub_s *hub, u32 port)
30 {
31     struct usb_ohci_s *cntl = container_of(hub->cntl, struct usb_ohci_s, usb);
32     u32 sts = readl(&cntl->regs->roothub_portstatus[port]);
33     if (!(sts & RH_PS_CCS))
34         // No device.
35         return -1;
36
37     // XXX - need to wait for USB_TIME_ATTDB if just powered up?
38
39     return 0;
40 }
41
42 // Disable port
43 static void
44 ohci_hub_disconnect(struct usbhub_s *hub, u32 port)
45 {
46     struct usb_ohci_s *cntl = container_of(hub->cntl, struct usb_ohci_s, usb);
47     writel(&cntl->regs->roothub_portstatus[port], RH_PS_CCS|RH_PS_LSDA);
48 }
49
50 // Reset device on port
51 static int
52 ohci_hub_reset(struct usbhub_s *hub, u32 port)
53 {
54     struct usb_ohci_s *cntl = container_of(hub->cntl, struct usb_ohci_s, usb);
55     writel(&cntl->regs->roothub_portstatus[port], RH_PS_PRS);
56     u32 sts;
57     u64 end = calc_future_tsc(USB_TIME_DRSTR * 2);
58     for (;;) {
59         sts = readl(&cntl->regs->roothub_portstatus[port]);
60         if (!(sts & RH_PS_PRS))
61             // XXX - need to ensure USB_TIME_DRSTR time in reset?
62             break;
63         if (check_tsc(end)) {
64             // Timeout.
65             warn_timeout();
66             ohci_hub_disconnect(hub, port);
67             return -1;
68         }
69         yield();
70     }
71
72     if ((sts & (RH_PS_CCS|RH_PS_PES)) != (RH_PS_CCS|RH_PS_PES))
73         // Device no longer present
74         return -1;
75
76     return !!(sts & RH_PS_LSDA);
77 }
78
79 static struct usbhub_op_s ohci_HubOp = {
80     .detect = ohci_hub_detect,
81     .reset = ohci_hub_reset,
82     .disconnect = ohci_hub_disconnect,
83 };
84
85 // Find any devices connected to the root hub.
86 static int
87 check_ohci_ports(struct usb_ohci_s *cntl)
88 {
89     ASSERT32FLAT();
90     // Turn on power for all devices on roothub.
91     u32 rha = readl(&cntl->regs->roothub_a);
92     rha &= ~(RH_A_PSM | RH_A_OCPM);
93     writel(&cntl->regs->roothub_status, RH_HS_LPSC);
94     writel(&cntl->regs->roothub_b, RH_B_PPCM);
95     msleep((rha >> 24) * 2);
96     // XXX - need to sleep for USB_TIME_SIGATT if just powered up?
97
98     struct usbhub_s hub;
99     memset(&hub, 0, sizeof(hub));
100     hub.cntl = &cntl->usb;
101     hub.portcount = rha & RH_A_NDP;
102     hub.op = &ohci_HubOp;
103     usb_enumerate(&hub);
104     return hub.devcount;
105 }
106
107
108 /****************************************************************
109  * Setup
110  ****************************************************************/
111
112 static int
113 start_ohci(struct usb_ohci_s *cntl, struct ohci_hcca *hcca)
114 {
115     u32 oldfminterval = readl(&cntl->regs->fminterval);
116     u32 oldrwc = readl(&cntl->regs->control) & OHCI_CTRL_RWC;
117
118     // XXX - check if already running?
119
120     // Do reset
121     writel(&cntl->regs->control, OHCI_USB_RESET | oldrwc);
122     readl(&cntl->regs->control); // flush writes
123     msleep(USB_TIME_DRSTR);
124
125     // Do software init (min 10us, max 2ms)
126     u64 end = calc_future_tsc_usec(10);
127     writel(&cntl->regs->cmdstatus, OHCI_HCR);
128     for (;;) {
129         u32 status = readl(&cntl->regs->cmdstatus);
130         if (! status & OHCI_HCR)
131             break;
132         if (check_tsc(end)) {
133             warn_timeout();
134             return -1;
135         }
136     }
137
138     // Init memory
139     writel(&cntl->regs->ed_controlhead, 0);
140     writel(&cntl->regs->ed_bulkhead, 0);
141     writel(&cntl->regs->hcca, (u32)hcca);
142
143     // Init fminterval
144     u32 fi = oldfminterval & 0x3fff;
145     writel(&cntl->regs->fminterval
146            , (((oldfminterval & FIT) ^ FIT)
147               | fi | (((6 * (fi - 210)) / 7) << 16)));
148     writel(&cntl->regs->periodicstart, ((9 * fi) / 10) & 0x3fff);
149     readl(&cntl->regs->control); // flush writes
150
151     // XXX - verify that fminterval was setup correctly.
152
153     // Go into operational state
154     writel(&cntl->regs->control
155            , (OHCI_CTRL_CBSR | OHCI_CTRL_CLE | OHCI_CTRL_PLE
156               | OHCI_USB_OPER | oldrwc));
157     readl(&cntl->regs->control); // flush writes
158
159     return 0;
160 }
161
162 static void
163 stop_ohci(struct usb_ohci_s *cntl)
164 {
165     u32 oldrwc = readl(&cntl->regs->control) & OHCI_CTRL_RWC;
166     writel(&cntl->regs->control, oldrwc);
167     readl(&cntl->regs->control); // flush writes
168 }
169
170 static void
171 configure_ohci(void *data)
172 {
173     struct usb_ohci_s *cntl = data;
174
175     // Allocate memory
176     struct ohci_hcca *hcca = memalign_high(256, sizeof(*hcca));
177     struct ohci_ed *intr_ed = malloc_high(sizeof(*intr_ed));
178     if (!hcca || !intr_ed) {
179         warn_noalloc();
180         goto free;
181     }
182     memset(hcca, 0, sizeof(*hcca));
183     memset(intr_ed, 0, sizeof(*intr_ed));
184     intr_ed->hwINFO = ED_SKIP;
185     int i;
186     for (i=0; i<ARRAY_SIZE(hcca->int_table); i++)
187         hcca->int_table[i] = (u32)intr_ed;
188
189     int ret = start_ohci(cntl, hcca);
190     if (ret)
191         goto err;
192
193     int count = check_ohci_ports(cntl);
194     free_pipe(cntl->usb.defaultpipe);
195     if (! count)
196         goto err;
197     return;
198
199 err:
200     stop_ohci(cntl);
201 free:
202     free(hcca);
203     free(intr_ed);
204 }
205
206 void
207 ohci_init(struct pci_device *pci, int busid)
208 {
209     if (! CONFIG_USB_OHCI)
210         return;
211     struct usb_ohci_s *cntl = malloc_tmphigh(sizeof(*cntl));
212     memset(cntl, 0, sizeof(*cntl));
213     cntl->usb.busid = busid;
214     cntl->usb.pci = pci;
215     cntl->usb.type = USB_TYPE_OHCI;
216
217     u16 bdf = pci->bdf;
218     u32 baseaddr = pci_config_readl(bdf, PCI_BASE_ADDRESS_0);
219     cntl->regs = (void*)(baseaddr & PCI_BASE_ADDRESS_MEM_MASK);
220
221     dprintf(1, "OHCI init on dev %02x:%02x.%x (regs=%p)\n"
222             , pci_bdf_to_bus(bdf), pci_bdf_to_dev(bdf)
223             , pci_bdf_to_fn(bdf), cntl->regs);
224
225     // Enable bus mastering and memory access.
226     pci_config_maskw(bdf, PCI_COMMAND
227                      , 0, PCI_COMMAND_MASTER|PCI_COMMAND_MEMORY);
228
229     // XXX - check for and disable SMM control?
230
231     // Disable interrupts
232     writel(&cntl->regs->intrdisable, ~0);
233     writel(&cntl->regs->intrstatus, ~0);
234
235     run_thread(configure_ohci, cntl);
236 }
237
238
239 /****************************************************************
240  * End point communication
241  ****************************************************************/
242
243 static int
244 wait_ed(struct ohci_ed *ed)
245 {
246     // XXX - 500ms just a guess
247     u64 end = calc_future_tsc(500);
248     for (;;) {
249         if (ed->hwHeadP == ed->hwTailP)
250             return 0;
251         if (check_tsc(end)) {
252             warn_timeout();
253             return -1;
254         }
255         yield();
256     }
257 }
258
259 // Wait for next USB frame to start - for ensuring safe memory release.
260 static void
261 ohci_waittick(struct usb_ohci_s *cntl)
262 {
263     barrier();
264     struct ohci_hcca *hcca = (void*)cntl->regs->hcca;
265     u32 startframe = hcca->frame_no;
266     u64 end = calc_future_tsc(1000 * 5);
267     for (;;) {
268         if (hcca->frame_no != startframe)
269             break;
270         if (check_tsc(end)) {
271             warn_timeout();
272             return;
273         }
274         yield();
275     }
276 }
277
278 static void
279 signal_freelist(struct usb_ohci_s *cntl)
280 {
281     u32 v = readl(&cntl->regs->control);
282     if (v & OHCI_CTRL_CLE) {
283         writel(&cntl->regs->control, v & ~(OHCI_CTRL_CLE|OHCI_CTRL_BLE));
284         ohci_waittick(cntl);
285         writel(&cntl->regs->ed_controlcurrent, 0);
286         writel(&cntl->regs->ed_bulkcurrent, 0);
287         writel(&cntl->regs->control, v);
288     } else {
289         ohci_waittick(cntl);
290     }
291 }
292
293 struct ohci_pipe {
294     struct ohci_ed ed;
295     struct usb_pipe pipe;
296     void *data;
297     int count;
298     struct ohci_td *tds;
299 };
300
301 void
302 ohci_free_pipe(struct usb_pipe *p)
303 {
304     if (! CONFIG_USB_OHCI)
305         return;
306     dprintf(7, "ohci_free_pipe %p\n", p);
307     struct ohci_pipe *pipe = container_of(p, struct ohci_pipe, pipe);
308     struct usb_ohci_s *cntl = container_of(
309         pipe->pipe.cntl, struct usb_ohci_s, usb);
310
311     u32 *pos = &cntl->regs->ed_controlhead;
312     for (;;) {
313         struct ohci_ed *next = (void*)*pos;
314         if (!next) {
315             // Not found?!  Exit without freeing.
316             warn_internalerror();
317             return;
318         }
319         if (next == &pipe->ed) {
320             *pos = next->hwNextED;
321             signal_freelist(cntl);
322             free(pipe);
323             return;
324         }
325         pos = &next->hwNextED;
326     }
327 }
328
329 struct usb_pipe *
330 ohci_alloc_control_pipe(struct usb_pipe *dummy)
331 {
332     if (! CONFIG_USB_OHCI)
333         return NULL;
334     struct usb_ohci_s *cntl = container_of(
335         dummy->cntl, struct usb_ohci_s, usb);
336     dprintf(7, "ohci_alloc_control_pipe %p\n", &cntl->usb);
337
338     // Allocate a queue head.
339     struct ohci_pipe *pipe = malloc_tmphigh(sizeof(*pipe));
340     if (!pipe) {
341         warn_noalloc();
342         return NULL;
343     }
344     memset(pipe, 0, sizeof(*pipe));
345     memcpy(&pipe->pipe, dummy, sizeof(pipe->pipe));
346     pipe->ed.hwINFO = ED_SKIP;
347
348     // Add queue head to controller list.
349     pipe->ed.hwNextED = cntl->regs->ed_controlhead;
350     barrier();
351     cntl->regs->ed_controlhead = (u32)&pipe->ed;
352     return &pipe->pipe;
353 }
354
355 int
356 ohci_control(struct usb_pipe *p, int dir, const void *cmd, int cmdsize
357              , void *data, int datasize)
358 {
359     if (! CONFIG_USB_OHCI)
360         return -1;
361     dprintf(5, "ohci_control %p\n", p);
362     if (datasize > 4096) {
363         // XXX - should support larger sizes.
364         warn_noalloc();
365         return -1;
366     }
367     struct ohci_pipe *pipe = container_of(p, struct ohci_pipe, pipe);
368     struct usb_ohci_s *cntl = container_of(
369         pipe->pipe.cntl, struct usb_ohci_s, usb);
370     int maxpacket = pipe->pipe.maxpacket;
371     int lowspeed = pipe->pipe.speed;
372     int devaddr = pipe->pipe.devaddr | (pipe->pipe.ep << 7);
373
374     // Setup transfer descriptors
375     struct ohci_td *tds = malloc_tmphigh(sizeof(*tds) * 3);
376     if (!tds) {
377         warn_noalloc();
378         return -1;
379     }
380     struct ohci_td *td = tds;
381     td->hwINFO = TD_DP_SETUP | TD_T_DATA0 | TD_CC;
382     td->hwCBP = (u32)cmd;
383     td->hwNextTD = (u32)&td[1];
384     td->hwBE = (u32)cmd + cmdsize - 1;
385     td++;
386     if (datasize) {
387         td->hwINFO = (dir ? TD_DP_IN : TD_DP_OUT) | TD_T_DATA1 | TD_CC;
388         td->hwCBP = (u32)data;
389         td->hwNextTD = (u32)&td[1];
390         td->hwBE = (u32)data + datasize - 1;
391         td++;
392     }
393     td->hwINFO = (dir ? TD_DP_OUT : TD_DP_IN) | TD_T_DATA1 | TD_CC;
394     td->hwCBP = 0;
395     td->hwNextTD = (u32)&td[1];
396     td->hwBE = 0;
397     td++;
398
399     // Transfer data
400     pipe->ed.hwINFO = ED_SKIP;
401     barrier();
402     pipe->ed.hwHeadP = (u32)tds;
403     pipe->ed.hwTailP = (u32)td;
404     barrier();
405     pipe->ed.hwINFO = devaddr | (maxpacket << 16) | (lowspeed ? ED_LOWSPEED : 0);
406     writel(&cntl->regs->cmdstatus, OHCI_CLF);
407
408     int ret = wait_ed(&pipe->ed);
409     pipe->ed.hwINFO = ED_SKIP;
410     if (ret)
411         ohci_waittick(cntl);
412     free(tds);
413     return ret;
414 }
415
416 struct usb_pipe *
417 ohci_alloc_bulk_pipe(struct usb_pipe *dummy)
418 {
419     if (! CONFIG_USB_OHCI)
420         return NULL;
421     dprintf(1, "OHCI Bulk transfers not supported.\n");
422     return NULL;
423 }
424
425 int
426 ohci_send_bulk(struct usb_pipe *p, int dir, void *data, int datasize)
427 {
428     return -1;
429 }
430
431 struct usb_pipe *
432 ohci_alloc_intr_pipe(struct usb_pipe *dummy, int frameexp)
433 {
434     if (! CONFIG_USB_OHCI)
435         return NULL;
436     struct usb_ohci_s *cntl = container_of(
437         dummy->cntl, struct usb_ohci_s, usb);
438     dprintf(7, "ohci_alloc_intr_pipe %p %d\n", &cntl->usb, frameexp);
439
440     if (frameexp > 5)
441         frameexp = 5;
442     int maxpacket = dummy->maxpacket;
443     int lowspeed = dummy->speed;
444     int devaddr = dummy->devaddr | (dummy->ep << 7);
445     // Determine number of entries needed for 2 timer ticks.
446     int ms = 1<<frameexp;
447     int count = DIV_ROUND_UP(PIT_TICK_INTERVAL * 1000 * 2, PIT_TICK_RATE * ms)+1;
448     struct ohci_pipe *pipe = malloc_low(sizeof(*pipe));
449     struct ohci_td *tds = malloc_low(sizeof(*tds) * count);
450     void *data = malloc_low(maxpacket * count);
451     if (!pipe || !tds || !data)
452         goto err;
453     memset(pipe, 0, sizeof(*pipe));
454     memcpy(&pipe->pipe, dummy, sizeof(pipe->pipe));
455     pipe->data = data;
456     pipe->count = count;
457     pipe->tds = tds;
458
459     struct ohci_ed *ed = &pipe->ed;
460     ed->hwHeadP = (u32)&tds[0];
461     ed->hwTailP = (u32)&tds[count-1];
462     ed->hwINFO = devaddr | (maxpacket << 16) | (lowspeed ? ED_LOWSPEED : 0);
463
464     int i;
465     for (i=0; i<count-1; i++) {
466         tds[i].hwINFO = TD_DP_IN | TD_T_TOGGLE | TD_CC;
467         tds[i].hwCBP = (u32)data + maxpacket * i;
468         tds[i].hwNextTD = (u32)&tds[i+1];
469         tds[i].hwBE = tds[i].hwCBP + maxpacket - 1;
470     }
471
472     // Add to interrupt schedule.
473     barrier();
474     struct ohci_hcca *hcca = (void*)cntl->regs->hcca;
475     if (frameexp == 0) {
476         // Add to existing interrupt entry.
477         struct ohci_ed *intr_ed = (void*)hcca->int_table[0];
478         ed->hwNextED = intr_ed->hwNextED;
479         intr_ed->hwNextED = (u32)ed;
480     } else {
481         int startpos = 1<<(frameexp-1);
482         ed->hwNextED = hcca->int_table[startpos];
483         for (i=startpos; i<ARRAY_SIZE(hcca->int_table); i+=ms)
484             hcca->int_table[i] = (u32)ed;
485     }
486
487     return &pipe->pipe;
488
489 err:
490     free(pipe);
491     free(tds);
492     free(data);
493     return NULL;
494 }
495
496 int
497 ohci_poll_intr(struct usb_pipe *p, void *data)
498 {
499     ASSERT16();
500     if (! CONFIG_USB_OHCI)
501         return -1;
502
503     struct ohci_pipe *pipe = container_of(p, struct ohci_pipe, pipe);
504     struct ohci_td *tds = GET_FLATPTR(pipe->tds);
505     struct ohci_td *head = (void*)(GET_FLATPTR(pipe->ed.hwHeadP) & ~(ED_C|ED_H));
506     struct ohci_td *tail = (void*)GET_FLATPTR(pipe->ed.hwTailP);
507     int count = GET_FLATPTR(pipe->count);
508     int pos = (tail - tds + 1) % count;
509     struct ohci_td *next = &tds[pos];
510     if (head == next)
511         // No intrs found.
512         return -1;
513     // XXX - check for errors.
514
515     // Copy data.
516     int maxpacket = GET_FLATPTR(pipe->pipe.maxpacket);
517     void *pipedata = GET_FLATPTR(pipe->data);
518     void *intrdata = pipedata + maxpacket * pos;
519     memcpy_far(GET_SEG(SS), data
520                , FLATPTR_TO_SEG(intrdata), (void*)FLATPTR_TO_OFFSET(intrdata)
521                , maxpacket);
522
523     // Reenable this td.
524     SET_FLATPTR(tail->hwINFO, TD_DP_IN | TD_T_TOGGLE | TD_CC);
525     intrdata = pipedata + maxpacket * (tail-tds);
526     SET_FLATPTR(tail->hwCBP, (u32)intrdata);
527     SET_FLATPTR(tail->hwNextTD, (u32)next);
528     SET_FLATPTR(tail->hwBE, (u32)intrdata + maxpacket - 1);
529     barrier();
530     SET_FLATPTR(pipe->ed.hwTailP, (u32)next);
531
532     return 0;
533 }