source: mainline/uspace/drv/bus/usb/ohci/hc.c@ fc6e607

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fc6e607 was 7d5708d, checked in by Jan Vesely <jano.vesely@…>, 14 years ago

OHCI: Root hub: Final touches.

Simplify mask size computation.
Remove useless bit_field_size variable in create_hub_descriptor,
value in instance→interrupt_mask_size can be used.
Set interrupt endpoint max packet size to match mask size.
rh_request always returns EOK as errors are indicated via
usb_transfer_batch mechanism, change return type to void.
Get rid of request_without_data function and consolidate request type switch
into one function.
Use new get_feature/set_feature functions to replace the functionality
of removed request_without_data.
Rename:

port_feature_set_request ⇒ set_feature_port
port_feature_clear_request ⇒ clear_feature_port

  • Property mode set to 100644
File size: 21.1 KB
Line 
1/*
2 * Copyright (c) 2011 Jan Vesely
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/** @addtogroup drvusbohcihc
29 * @{
30 */
31/** @file
32 * @brief OHCI Host controller driver routines
33 */
34#include <errno.h>
35#include <str_error.h>
36#include <adt/list.h>
37#include <libarch/ddi.h>
38
39#include <usb/debug.h>
40#include <usb/usb.h>
41#include <usb/ddfiface.h>
42
43#include "hc.h"
44#include "hcd_endpoint.h"
45
46#define OHCI_USED_INTERRUPTS \
47 (I_SO | I_WDH | I_UE | I_RHSC)
48
49static const irq_cmd_t ohci_irq_commands[] =
50{
51 { .cmd = CMD_MEM_READ_32, .dstarg = 1, .addr = NULL /*filled later*/ },
52 { .cmd = CMD_BTEST, .srcarg = 1, .dstarg = 2, .value = OHCI_USED_INTERRUPTS },
53 { .cmd = CMD_PREDICATE, .srcarg = 2, .value = 2 },
54 { .cmd = CMD_MEM_WRITE_A_32, .srcarg = 1, .addr = NULL /*filled later*/ },
55 { .cmd = CMD_ACCEPT },
56};
57
58static void hc_gain_control(hc_t *instance);
59static void hc_start(hc_t *instance);
60static int hc_init_transfer_lists(hc_t *instance);
61static int hc_init_memory(hc_t *instance);
62static int interrupt_emulator(hc_t *instance);
63
64/*----------------------------------------------------------------------------*/
65/** Get number of commands used in IRQ code.
66 * @return Number of commands.
67 */
68size_t hc_irq_cmd_count(void)
69{
70 return sizeof(ohci_irq_commands) / sizeof(irq_cmd_t);
71}
72/*----------------------------------------------------------------------------*/
73/** Generate IRQ code commands.
74 * @param[out] cmds Place to store the commands.
75 * @param[in] cmd_size Size of the place (bytes).
76 * @param[in] regs Physical address of device's registers.
77 * @param[in] reg_size Size of the register area (bytes).
78 *
79 * @return Error code.
80 */
81int hc_get_irq_commands(
82 irq_cmd_t cmds[], size_t cmd_size, uintptr_t regs, size_t reg_size)
83{
84 if (cmd_size < sizeof(ohci_irq_commands)
85 || reg_size < sizeof(ohci_regs_t))
86 return EOVERFLOW;
87
88 /* Create register mapping to use in IRQ handler.
89 * This mapping should be present in kernel only.
90 * Remove it from here when kernel knows how to create mappings
91 * and accepts physical addresses in IRQ code.
92 * TODO: remove */
93 ohci_regs_t *registers;
94 const int ret = pio_enable((void*)regs, reg_size, (void**)&registers);
95
96 /* Some bogus access to force create mapping. DO NOT remove,
97 * unless whole virtual addresses in irq is replaced
98 * NOTE: Compiler won't remove this as ohci_regs_t members
99 * are declared volatile. */
100 registers->revision;
101
102 if (ret != EOK)
103 return ret;
104
105 memcpy(cmds, ohci_irq_commands, sizeof(ohci_irq_commands));
106
107 void *address = (void*)&registers->interrupt_status;
108 cmds[0].addr = address;
109 cmds[3].addr = address;
110 return EOK;
111}
112/*----------------------------------------------------------------------------*/
113/** Announce OHCI root hub to the DDF
114 *
115 * @param[in] instance OHCI driver intance
116 * @param[in] hub_fun DDF fuction representing OHCI root hub
117 * @return Error code
118 */
119int hc_register_hub(hc_t *instance, ddf_fun_t *hub_fun)
120{
121 assert(instance);
122 assert(hub_fun);
123
124 const usb_address_t hub_address =
125 device_keeper_get_free_address(&instance->manager, USB_SPEED_FULL);
126 if (hub_address <= 0) {
127 usb_log_error("Failed to get OHCI root hub address: %s\n",
128 str_error(hub_address));
129 return hub_address;
130 }
131 instance->rh.address = hub_address;
132 usb_device_keeper_bind(
133 &instance->manager, hub_address, hub_fun->handle);
134
135#define CHECK_RET_RELEASE(ret, message...) \
136if (ret != EOK) { \
137 usb_log_error(message); \
138 hc_remove_endpoint(instance, hub_address, 0, USB_DIRECTION_BOTH); \
139 usb_device_keeper_release(&instance->manager, hub_address); \
140 return ret; \
141} else (void)0
142
143 int ret = hc_add_endpoint(instance, hub_address, 0, USB_SPEED_FULL,
144 USB_TRANSFER_CONTROL, USB_DIRECTION_BOTH, 64, 0, 0);
145 CHECK_RET_RELEASE(ret,
146 "Failed to add OHCI root hub endpoint 0: %s.\n", str_error(ret));
147
148 char *match_str = NULL;
149 /* DDF needs heap allocated string. */
150 ret = asprintf(&match_str, "usb&class=hub");
151 ret = ret > 0 ? 0 : ret;
152 CHECK_RET_RELEASE(ret,
153 "Failed to create match-id string: %s.\n", str_error(ret));
154
155 ret = ddf_fun_add_match_id(hub_fun, match_str, 100);
156 CHECK_RET_RELEASE(ret,
157 "Failed to add root hub match-id: %s.\n", str_error(ret));
158
159 ret = ddf_fun_bind(hub_fun);
160 CHECK_RET_RELEASE(ret,
161 "Failed to bind root hub function: %s.\n", str_error(ret));
162
163 return EOK;
164#undef CHECK_RET_RELEASE
165}
166/*----------------------------------------------------------------------------*/
167/** Initialize OHCI hc driver structure
168 *
169 * @param[in] instance Memory place for the structure.
170 * @param[in] regs Address of the memory mapped I/O registers.
171 * @param[in] reg_size Size of the memory mapped area.
172 * @param[in] interrupts True if w interrupts should be used
173 * @return Error code
174 */
175int hc_init(hc_t *instance, uintptr_t regs, size_t reg_size, bool interrupts)
176{
177 assert(instance);
178
179#define CHECK_RET_RETURN(ret, message...) \
180if (ret != EOK) { \
181 usb_log_error(message); \
182 return ret; \
183} else (void)0
184
185 int ret =
186 pio_enable((void*)regs, reg_size, (void**)&instance->registers);
187 CHECK_RET_RETURN(ret,
188 "Failed to gain access to device registers: %s.\n", str_error(ret));
189
190 list_initialize(&instance->pending_batches);
191 usb_device_keeper_init(&instance->manager);
192
193 ret = usb_endpoint_manager_init(&instance->ep_manager,
194 BANDWIDTH_AVAILABLE_USB11);
195 CHECK_RET_RETURN(ret, "Failed to initialize endpoint manager: %s.\n",
196 str_error(ret));
197
198 ret = hc_init_memory(instance);
199 CHECK_RET_RETURN(ret, "Failed to create OHCI memory structures: %s.\n",
200 str_error(ret));
201#undef CHECK_RET_RETURN
202
203 fibril_mutex_initialize(&instance->guard);
204
205 hc_gain_control(instance);
206
207 if (!interrupts) {
208 instance->interrupt_emulator =
209 fibril_create((int(*)(void*))interrupt_emulator, instance);
210 fibril_add_ready(instance->interrupt_emulator);
211 }
212
213 rh_init(&instance->rh, instance->registers);
214 hc_start(instance);
215
216 return EOK;
217}
218/*----------------------------------------------------------------------------*/
219/** Create and register endpoint structures.
220 *
221 * @param[in] instance OHCI driver structure.
222 * @param[in] address USB address of the device.
223 * @param[in] endpoint USB endpoint number.
224 * @param[in] speed Communication speeed of the device.
225 * @param[in] type Endpoint's transfer type.
226 * @param[in] direction Endpoint's direction.
227 * @param[in] mps Maximum packet size the endpoint accepts.
228 * @param[in] size Maximum allowed buffer size.
229 * @param[in] interval Time between transfers(interrupt transfers only).
230 * @return Error code
231 */
232int hc_add_endpoint(
233 hc_t *instance, usb_address_t address, usb_endpoint_t endpoint,
234 usb_speed_t speed, usb_transfer_type_t type, usb_direction_t direction,
235 size_t mps, size_t size, unsigned interval)
236{
237 endpoint_t *ep =
238 endpoint_get(address, endpoint, direction, type, speed, mps);
239 if (ep == NULL)
240 return ENOMEM;
241
242 hcd_endpoint_t *hcd_ep = hcd_endpoint_assign(ep);
243 if (hcd_ep == NULL) {
244 endpoint_destroy(ep);
245 return ENOMEM;
246 }
247
248 int ret =
249 usb_endpoint_manager_register_ep(&instance->ep_manager, ep, size);
250 if (ret != EOK) {
251 hcd_endpoint_clear(ep);
252 endpoint_destroy(ep);
253 return ret;
254 }
255
256 /* Enqueue hcd_ep */
257 switch (ep->transfer_type) {
258 case USB_TRANSFER_CONTROL:
259 instance->registers->control &= ~C_CLE;
260 endpoint_list_add_ep(
261 &instance->lists[ep->transfer_type], hcd_ep);
262 instance->registers->control_current = 0;
263 instance->registers->control |= C_CLE;
264 break;
265 case USB_TRANSFER_BULK:
266 instance->registers->control &= ~C_BLE;
267 endpoint_list_add_ep(
268 &instance->lists[ep->transfer_type], hcd_ep);
269 instance->registers->control |= C_BLE;
270 break;
271 case USB_TRANSFER_ISOCHRONOUS:
272 case USB_TRANSFER_INTERRUPT:
273 instance->registers->control &= (~C_PLE & ~C_IE);
274 endpoint_list_add_ep(
275 &instance->lists[ep->transfer_type], hcd_ep);
276 instance->registers->control |= C_PLE | C_IE;
277 break;
278 }
279
280 return EOK;
281}
282/*----------------------------------------------------------------------------*/
283/** Dequeue and delete endpoint structures
284 *
285 * @param[in] instance OHCI hc driver structure.
286 * @param[in] address USB address of the device.
287 * @param[in] endpoint USB endpoint number.
288 * @param[in] direction Direction of the endpoint.
289 * @return Error code
290 */
291int hc_remove_endpoint(hc_t *instance, usb_address_t address,
292 usb_endpoint_t endpoint, usb_direction_t direction)
293{
294 assert(instance);
295 fibril_mutex_lock(&instance->guard);
296 endpoint_t *ep = usb_endpoint_manager_get_ep(&instance->ep_manager,
297 address, endpoint, direction, NULL);
298 if (ep == NULL) {
299 usb_log_error("Endpoint unregister failed: No such EP.\n");
300 fibril_mutex_unlock(&instance->guard);
301 return ENOENT;
302 }
303
304 hcd_endpoint_t *hcd_ep = hcd_endpoint_get(ep);
305 if (hcd_ep) {
306 /* Dequeue hcd_ep */
307 switch (ep->transfer_type) {
308 case USB_TRANSFER_CONTROL:
309 instance->registers->control &= ~C_CLE;
310 endpoint_list_remove_ep(
311 &instance->lists[ep->transfer_type], hcd_ep);
312 instance->registers->control_current = 0;
313 instance->registers->control |= C_CLE;
314 break;
315 case USB_TRANSFER_BULK:
316 instance->registers->control &= ~C_BLE;
317 endpoint_list_remove_ep(
318 &instance->lists[ep->transfer_type], hcd_ep);
319 instance->registers->control |= C_BLE;
320 break;
321 case USB_TRANSFER_ISOCHRONOUS:
322 case USB_TRANSFER_INTERRUPT:
323 instance->registers->control &= (~C_PLE & ~C_IE);
324 endpoint_list_remove_ep(
325 &instance->lists[ep->transfer_type], hcd_ep);
326 instance->registers->control |= C_PLE | C_IE;
327 break;
328 default:
329 break;
330 }
331 hcd_endpoint_clear(ep);
332 } else {
333 usb_log_warning("Endpoint without hcd equivalent structure.\n");
334 }
335 int ret = usb_endpoint_manager_unregister_ep(&instance->ep_manager,
336 address, endpoint, direction);
337 fibril_mutex_unlock(&instance->guard);
338 return ret;
339}
340/*----------------------------------------------------------------------------*/
341/** Get access to endpoint structures
342 *
343 * @param[in] instance OHCI hc driver structure.
344 * @param[in] address USB address of the device.
345 * @param[in] endpoint USB endpoint number.
346 * @param[in] direction Direction of the endpoint.
347 * @param[out] bw Reserved bandwidth.
348 * @return Error code
349 */
350endpoint_t * hc_get_endpoint(hc_t *instance, usb_address_t address,
351 usb_endpoint_t endpoint, usb_direction_t direction, size_t *bw)
352{
353 assert(instance);
354 fibril_mutex_lock(&instance->guard);
355 endpoint_t *ep = usb_endpoint_manager_get_ep(&instance->ep_manager,
356 address, endpoint, direction, bw);
357 fibril_mutex_unlock(&instance->guard);
358 return ep;
359}
360/*----------------------------------------------------------------------------*/
361/** Add USB transfer to the schedule.
362 *
363 * @param[in] instance OHCI hc driver structure.
364 * @param[in] batch Batch representing the transfer.
365 * @return Error code.
366 */
367int hc_schedule(hc_t *instance, usb_transfer_batch_t *batch)
368{
369 assert(instance);
370 assert(batch);
371 assert(batch->ep);
372
373 /* Check for root hub communication */
374 if (batch->ep->address == instance->rh.address) {
375 rh_request(&instance->rh, batch);
376 return EOK;
377 }
378
379 fibril_mutex_lock(&instance->guard);
380 list_append(&batch->link, &instance->pending_batches);
381 batch_commit(batch);
382
383 /* Control and bulk schedules need a kick to start working */
384 switch (batch->ep->transfer_type)
385 {
386 case USB_TRANSFER_CONTROL:
387 instance->registers->command_status |= CS_CLF;
388 break;
389 case USB_TRANSFER_BULK:
390 instance->registers->command_status |= CS_BLF;
391 break;
392 default:
393 break;
394 }
395 fibril_mutex_unlock(&instance->guard);
396 return EOK;
397}
398/*----------------------------------------------------------------------------*/
399/** Interrupt handling routine
400 *
401 * @param[in] instance OHCI hc driver structure.
402 * @param[in] status Value of the status register at the time of interrupt.
403 */
404void hc_interrupt(hc_t *instance, uint32_t status)
405{
406 assert(instance);
407 if ((status & ~I_SF) == 0) /* ignore sof status */
408 return;
409 usb_log_debug2("OHCI(%p) interrupt: %x.\n", instance, status);
410 if (status & I_RHSC)
411 rh_interrupt(&instance->rh);
412
413 if (status & I_WDH) {
414 fibril_mutex_lock(&instance->guard);
415 usb_log_debug2("HCCA: %p-%#" PRIx32 " (%p).\n", instance->hcca,
416 instance->registers->hcca,
417 (void *) addr_to_phys(instance->hcca));
418 usb_log_debug2("Periodic current: %#" PRIx32 ".\n",
419 instance->registers->periodic_current);
420
421 link_t *current = instance->pending_batches.head.next;
422 while (current != &instance->pending_batches.head) {
423 link_t *next = current->next;
424 usb_transfer_batch_t *batch =
425 usb_transfer_batch_from_link(current);
426
427 if (batch_is_complete(batch)) {
428 list_remove(current);
429 usb_transfer_batch_finish(batch);
430 }
431
432 current = next;
433 }
434 fibril_mutex_unlock(&instance->guard);
435 }
436
437 if (status & I_UE) {
438 hc_start(instance);
439 }
440
441}
442/*----------------------------------------------------------------------------*/
443/** Check status register regularly
444 *
445 * @param[in] instance OHCI hc driver structure.
446 * @return Error code
447 */
448int interrupt_emulator(hc_t *instance)
449{
450 assert(instance);
451 usb_log_info("Started interrupt emulator.\n");
452 while (1) {
453 const uint32_t status = instance->registers->interrupt_status;
454 instance->registers->interrupt_status = status;
455 hc_interrupt(instance, status);
456 async_usleep(10000);
457 }
458 return EOK;
459}
460/*----------------------------------------------------------------------------*/
461/** Turn off any (BIOS)driver that might be in control of the device.
462 *
463 * This function implements routines described in chapter 5.1.1.3 of the OHCI
464 * specification (page 40, pdf page 54).
465 *
466 * @param[in] instance OHCI hc driver structure.
467 */
468void hc_gain_control(hc_t *instance)
469{
470 assert(instance);
471
472 usb_log_debug("Requesting OHCI control.\n");
473 if (instance->registers->revision & R_LEGACY_FLAG) {
474 /* Turn off legacy emulation, it should be enough to zero
475 * the lowest bit, but it caused problems. Thus clear all
476 * except GateA20 (causes restart on some hw).
477 * See page 145 of the specs for details.
478 */
479 volatile uint32_t *ohci_emulation_reg =
480 (uint32_t*)((char*)instance->registers + LEGACY_REGS_OFFSET);
481 usb_log_debug("OHCI legacy register %p: %x.\n",
482 ohci_emulation_reg, *ohci_emulation_reg);
483 /* Zero everything but A20State */
484 *ohci_emulation_reg &= 0x100;
485 usb_log_debug(
486 "OHCI legacy register (should be 0 or 0x100) %p: %x.\n",
487 ohci_emulation_reg, *ohci_emulation_reg);
488 }
489
490 /* Interrupt routing enabled => smm driver is active */
491 if (instance->registers->control & C_IR) {
492 usb_log_debug("SMM driver: request ownership change.\n");
493 instance->registers->command_status |= CS_OCR;
494 /* Hope that SMM actually knows its stuff or we can hang here */
495 while (instance->registers->control & C_IR) {
496 async_usleep(1000);
497 }
498 usb_log_info("SMM driver: Ownership taken.\n");
499 C_HCFS_SET(instance->registers->control, C_HCFS_RESET);
500 async_usleep(50000);
501 return;
502 }
503
504 const unsigned hc_status = C_HCFS_GET(instance->registers->control);
505 /* Interrupt routing disabled && status != USB_RESET => BIOS active */
506 if (hc_status != C_HCFS_RESET) {
507 usb_log_debug("BIOS driver found.\n");
508 if (hc_status == C_HCFS_OPERATIONAL) {
509 usb_log_info("BIOS driver: HC operational.\n");
510 return;
511 }
512 /* HC is suspended assert resume for 20ms, */
513 C_HCFS_SET(instance->registers->control, C_HCFS_RESUME);
514 async_usleep(20000);
515 usb_log_info("BIOS driver: HC resumed.\n");
516 return;
517 }
518
519 /* HC is in reset (hw startup) => no other driver
520 * maintain reset for at least the time specified in USB spec (50 ms)*/
521 usb_log_debug("Host controller found in reset state.\n");
522 async_usleep(50000);
523}
524/*----------------------------------------------------------------------------*/
525/** OHCI hw initialization routine.
526 *
527 * @param[in] instance OHCI hc driver structure.
528 */
529void hc_start(hc_t *instance)
530{
531 /* OHCI guide page 42 */
532 assert(instance);
533 usb_log_debug2("Started hc initialization routine.\n");
534
535 /* Save contents of fm_interval register */
536 const uint32_t fm_interval = instance->registers->fm_interval;
537 usb_log_debug2("Old value of HcFmInterval: %x.\n", fm_interval);
538
539 /* Reset hc */
540 usb_log_debug2("HC reset.\n");
541 size_t time = 0;
542 instance->registers->command_status = CS_HCR;
543 while (instance->registers->command_status & CS_HCR) {
544 async_usleep(10);
545 time += 10;
546 }
547 usb_log_debug2("HC reset complete in %zu us.\n", time);
548
549 /* Restore fm_interval */
550 instance->registers->fm_interval = fm_interval;
551 assert((instance->registers->command_status & CS_HCR) == 0);
552
553 /* hc is now in suspend state */
554 usb_log_debug2("HC should be in suspend state(%x).\n",
555 instance->registers->control);
556
557 /* Use HCCA */
558 instance->registers->hcca = addr_to_phys(instance->hcca);
559
560 /* Use queues */
561 instance->registers->bulk_head =
562 instance->lists[USB_TRANSFER_BULK].list_head_pa;
563 usb_log_debug2("Bulk HEAD set to: %p (%#" PRIx32 ").\n",
564 instance->lists[USB_TRANSFER_BULK].list_head,
565 instance->lists[USB_TRANSFER_BULK].list_head_pa);
566
567 instance->registers->control_head =
568 instance->lists[USB_TRANSFER_CONTROL].list_head_pa;
569 usb_log_debug2("Control HEAD set to: %p (%#" PRIx32 ").\n",
570 instance->lists[USB_TRANSFER_CONTROL].list_head,
571 instance->lists[USB_TRANSFER_CONTROL].list_head_pa);
572
573 /* Enable queues */
574 instance->registers->control |= (C_PLE | C_IE | C_CLE | C_BLE);
575 usb_log_debug2("All queues enabled(%x).\n",
576 instance->registers->control);
577
578 /* Enable interrupts */
579 instance->registers->interrupt_enable = OHCI_USED_INTERRUPTS;
580 usb_log_debug2("Enabled interrupts: %x.\n",
581 instance->registers->interrupt_enable);
582 instance->registers->interrupt_enable = I_MI;
583
584 /* Set periodic start to 90% */
585 uint32_t frame_length = ((fm_interval >> FMI_FI_SHIFT) & FMI_FI_MASK);
586 instance->registers->periodic_start = (frame_length / 10) * 9;
587 usb_log_debug2("All periodic start set to: %x(%u - 90%% of %d).\n",
588 instance->registers->periodic_start,
589 instance->registers->periodic_start, frame_length);
590
591 C_HCFS_SET(instance->registers->control, C_HCFS_OPERATIONAL);
592 usb_log_debug("OHCI HC up and running (ctl_reg=0x%x).\n",
593 instance->registers->control);
594}
595/*----------------------------------------------------------------------------*/
596/** Initialize schedule queues
597 *
598 * @param[in] instance OHCI hc driver structure
599 * @return Error code
600 */
601int hc_init_transfer_lists(hc_t *instance)
602{
603 assert(instance);
604#define SETUP_ENDPOINT_LIST(type) \
605do { \
606 const char *name = usb_str_transfer_type(type); \
607 int ret = endpoint_list_init(&instance->lists[type], name); \
608 if (ret != EOK) { \
609 usb_log_error("Failed to setup %s endpoint list: %s.\n", \
610 name, str_error(ret)); \
611 endpoint_list_fini(&instance->lists[USB_TRANSFER_ISOCHRONOUS]);\
612 endpoint_list_fini(&instance->lists[USB_TRANSFER_INTERRUPT]); \
613 endpoint_list_fini(&instance->lists[USB_TRANSFER_CONTROL]); \
614 endpoint_list_fini(&instance->lists[USB_TRANSFER_BULK]); \
615 return ret; \
616 } \
617} while (0)
618
619 SETUP_ENDPOINT_LIST(USB_TRANSFER_ISOCHRONOUS);
620 SETUP_ENDPOINT_LIST(USB_TRANSFER_INTERRUPT);
621 SETUP_ENDPOINT_LIST(USB_TRANSFER_CONTROL);
622 SETUP_ENDPOINT_LIST(USB_TRANSFER_BULK);
623#undef SETUP_ENDPOINT_LIST
624 endpoint_list_set_next(&instance->lists[USB_TRANSFER_INTERRUPT],
625 &instance->lists[USB_TRANSFER_ISOCHRONOUS]);
626
627 return EOK;
628}
629/*----------------------------------------------------------------------------*/
630/** Initialize memory structures used by the OHCI hcd.
631 *
632 * @param[in] instance OHCI hc driver structure.
633 * @return Error code.
634 */
635int hc_init_memory(hc_t *instance)
636{
637 assert(instance);
638
639 bzero(&instance->rh, sizeof(instance->rh));
640 /* Init queues */
641 const int ret = hc_init_transfer_lists(instance);
642 if (ret != EOK) {
643 return ret;
644 }
645
646 /*Init HCCA */
647 instance->hcca = malloc32(sizeof(hcca_t));
648 if (instance->hcca == NULL)
649 return ENOMEM;
650 bzero(instance->hcca, sizeof(hcca_t));
651 usb_log_debug2("OHCI HCCA initialized at %p.\n", instance->hcca);
652
653 unsigned i = 0;
654 for (; i < 32; ++i) {
655 instance->hcca->int_ep[i] =
656 instance->lists[USB_TRANSFER_INTERRUPT].list_head_pa;
657 }
658 usb_log_debug2("Interrupt HEADs set to: %p (%#" PRIx32 ").\n",
659 instance->lists[USB_TRANSFER_INTERRUPT].list_head,
660 instance->lists[USB_TRANSFER_INTERRUPT].list_head_pa);
661
662 return EOK;
663}
664
665/**
666 * @}
667 */
Note: See TracBrowser for help on using the repository browser.