[c56dbe0] | 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 | */
|
---|
[f123909] | 28 | /** @addtogroup drvusbuhcirh
|
---|
[c56dbe0] | 29 | * @{
|
---|
| 30 | */
|
---|
| 31 | /** @file
|
---|
[f123909] | 32 | * @brief UHCI root hub driver
|
---|
[c56dbe0] | 33 | */
|
---|
[1256a0a] | 34 | #include <errno.h>
|
---|
[540abef] | 35 | #include <str_error.h>
|
---|
[eb1a2f4] | 36 | #include <ddi.h>
|
---|
[7ce0fe3] | 37 | #include <usb/debug.h>
|
---|
[1256a0a] | 38 |
|
---|
| 39 | #include "root_hub.h"
|
---|
| 40 |
|
---|
[f123909] | 41 | /** Initialize UHCI root hub instance.
|
---|
[275bf456] | 42 | *
|
---|
| 43 | * @param[in] instance Driver memory structure to use.
|
---|
| 44 | * @param[in] addr Address of I/O registers.
|
---|
| 45 | * @param[in] size Size of available I/O space.
|
---|
[540abef] | 46 | * @param[in] rh Pointer to DDF instance of the root hub driver.
|
---|
[275bf456] | 47 | * @return Error code.
|
---|
| 48 | */
|
---|
[1256a0a] | 49 | int uhci_root_hub_init(
|
---|
[eb1a2f4] | 50 | uhci_root_hub_t *instance, void *addr, size_t size, ddf_dev_t *rh)
|
---|
[1256a0a] | 51 | {
|
---|
| 52 | assert(instance);
|
---|
| 53 | assert(rh);
|
---|
| 54 |
|
---|
[275bf456] | 55 | /* Allow access to root hub port registers */
|
---|
| 56 | assert(sizeof(port_status_t) * UHCI_ROOT_HUB_PORT_COUNT <= size);
|
---|
[1256a0a] | 57 | port_status_t *regs;
|
---|
[f9c03b5] | 58 | int ret = pio_enable(addr, size, (void**)®s);
|
---|
[1256a0a] | 59 | if (ret < 0) {
|
---|
[275bf456] | 60 | usb_log_error(
|
---|
[540abef] | 61 | "Failed(%d) to gain access to port registers at %p: %s.\n",
|
---|
| 62 | ret, regs, str_error(ret));
|
---|
[1256a0a] | 63 | return ret;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[f123909] | 66 | /* Initialize root hub ports */
|
---|
[1256a0a] | 67 | unsigned i = 0;
|
---|
| 68 | for (; i < UHCI_ROOT_HUB_PORT_COUNT; ++i) {
|
---|
[dced52a] | 69 | ret = uhci_port_init(
|
---|
[540abef] | 70 | &instance->ports[i], ®s[i], i, ROOT_HUB_WAIT_USEC, rh);
|
---|
[1256a0a] | 71 | if (ret != EOK) {
|
---|
| 72 | unsigned j = 0;
|
---|
| 73 | for (;j < i; ++j)
|
---|
| 74 | uhci_port_fini(&instance->ports[j]);
|
---|
| 75 | return ret;
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | return EOK;
|
---|
| 80 | }
|
---|
| 81 | /*----------------------------------------------------------------------------*/
|
---|
[f123909] | 82 | /** Cleanup UHCI root hub instance.
|
---|
[275bf456] | 83 | *
|
---|
[f123909] | 84 | * @param[in] instance Root hub structure to use.
|
---|
[275bf456] | 85 | */
|
---|
[f9c03b5] | 86 | void uhci_root_hub_fini(uhci_root_hub_t* instance)
|
---|
[1256a0a] | 87 | {
|
---|
[275bf456] | 88 | assert(instance);
|
---|
| 89 | unsigned i = 0;
|
---|
| 90 | for (; i < UHCI_ROOT_HUB_PORT_COUNT; ++i) {
|
---|
| 91 | uhci_port_fini(&instance->ports[i]);
|
---|
| 92 | }
|
---|
[1256a0a] | 93 | }
|
---|
| 94 | /*----------------------------------------------------------------------------*/
|
---|
[c56dbe0] | 95 | /**
|
---|
| 96 | * @}
|
---|
| 97 | */
|
---|