[40a5d40] | 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 | /**
|
---|
[0969e45e] | 29 | * @addtogroup drvusbehci
|
---|
[40a5d40] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /**
|
---|
| 33 | * @file
|
---|
[0969e45e] | 34 | * PCI related functions needed by the EHCI driver.
|
---|
[40a5d40] | 35 | */
|
---|
| 36 | #include <errno.h>
|
---|
| 37 | #include <assert.h>
|
---|
| 38 | #include <as.h>
|
---|
| 39 | #include <devman.h>
|
---|
| 40 | #include <ddi.h>
|
---|
| 41 | #include <libarch/ddi.h>
|
---|
| 42 | #include <device/hw_res.h>
|
---|
| 43 |
|
---|
| 44 | #include <usb/debug.h>
|
---|
| 45 | #include <pci_dev_iface.h>
|
---|
| 46 |
|
---|
| 47 | #include "pci.h"
|
---|
| 48 |
|
---|
| 49 | #define PAGE_SIZE_MASK 0xfffff000
|
---|
[13927cf] | 50 |
|
---|
[40a5d40] | 51 | #define HCC_PARAMS_OFFSET 0x8
|
---|
| 52 | #define HCC_PARAMS_EECP_MASK 0xff
|
---|
| 53 | #define HCC_PARAMS_EECP_OFFSET 8
|
---|
| 54 |
|
---|
[0d3167e] | 55 | #define CMD_OFFSET 0x0
|
---|
[a948c23] | 56 | #define STS_OFFSET 0x4
|
---|
[17d1542] | 57 | #define INT_OFFSET 0x8
|
---|
[a948c23] | 58 | #define CFG_OFFSET 0x40
|
---|
[0d3167e] | 59 |
|
---|
[40a5d40] | 60 | #define USBCMD_RUN 1
|
---|
[17d1542] | 61 | #define USBSTS_HALTED (1 << 12)
|
---|
[40a5d40] | 62 |
|
---|
| 63 | #define USBLEGSUP_OFFSET 0
|
---|
| 64 | #define USBLEGSUP_BIOS_CONTROL (1 << 16)
|
---|
| 65 | #define USBLEGSUP_OS_CONTROL (1 << 24)
|
---|
| 66 | #define USBLEGCTLSTS_OFFSET 4
|
---|
| 67 |
|
---|
[17d1542] | 68 | #define DEFAULT_WAIT 1000
|
---|
[40a5d40] | 69 | #define WAIT_STEP 10
|
---|
| 70 |
|
---|
[17d1542] | 71 | #define PCI_READ(size) \
|
---|
| 72 | do { \
|
---|
| 73 | const int parent_phone = \
|
---|
| 74 | devman_parent_device_connect(dev->handle, IPC_FLAG_BLOCKING);\
|
---|
| 75 | if (parent_phone < 0) {\
|
---|
| 76 | return parent_phone; \
|
---|
| 77 | } \
|
---|
| 78 | sysarg_t add = (sysarg_t)address; \
|
---|
| 79 | sysarg_t val; \
|
---|
| 80 | const int ret = \
|
---|
| 81 | async_req_2_1(parent_phone, DEV_IFACE_ID(PCI_DEV_IFACE), \
|
---|
| 82 | IPC_M_CONFIG_SPACE_READ_##size, add, &val); \
|
---|
| 83 | assert(value); \
|
---|
| 84 | *value = val; \
|
---|
| 85 | async_hangup(parent_phone); \
|
---|
| 86 | return ret; \
|
---|
| 87 | } while(0)
|
---|
| 88 |
|
---|
[c060090] | 89 | static int pci_read32(const ddf_dev_t *dev, int address, uint32_t *value)
|
---|
[17d1542] | 90 | {
|
---|
| 91 | PCI_READ(32);
|
---|
| 92 | }
|
---|
[c060090] | 93 | static int pci_read16(const ddf_dev_t *dev, int address, uint16_t *value)
|
---|
[17d1542] | 94 | {
|
---|
| 95 | PCI_READ(16);
|
---|
| 96 | }
|
---|
[c060090] | 97 | static int pci_read8(const ddf_dev_t *dev, int address, uint8_t *value)
|
---|
[17d1542] | 98 | {
|
---|
| 99 | PCI_READ(8);
|
---|
| 100 | }
|
---|
| 101 | #define PCI_WRITE(size) \
|
---|
| 102 | do { \
|
---|
| 103 | const int parent_phone = \
|
---|
| 104 | devman_parent_device_connect(dev->handle, IPC_FLAG_BLOCKING);\
|
---|
| 105 | if (parent_phone < 0) {\
|
---|
| 106 | return parent_phone; \
|
---|
| 107 | } \
|
---|
| 108 | sysarg_t add = (sysarg_t)address; \
|
---|
| 109 | sysarg_t val = value; \
|
---|
| 110 | const int ret = \
|
---|
| 111 | async_req_3_0(parent_phone, DEV_IFACE_ID(PCI_DEV_IFACE), \
|
---|
| 112 | IPC_M_CONFIG_SPACE_WRITE_##size, add, val); \
|
---|
| 113 | async_hangup(parent_phone); \
|
---|
| 114 | return ret; \
|
---|
| 115 | } while(0)
|
---|
| 116 |
|
---|
[c060090] | 117 | static int pci_write32(const ddf_dev_t *dev, int address, uint32_t value)
|
---|
[17d1542] | 118 | {
|
---|
| 119 | PCI_WRITE(32);
|
---|
| 120 | }
|
---|
[c060090] | 121 | static int pci_write16(const ddf_dev_t *dev, int address, uint16_t value)
|
---|
[17d1542] | 122 | {
|
---|
| 123 | PCI_WRITE(16);
|
---|
| 124 | }
|
---|
[c060090] | 125 | static int pci_write8(const ddf_dev_t *dev, int address, uint8_t value)
|
---|
[17d1542] | 126 | {
|
---|
| 127 | PCI_WRITE(8);
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[40a5d40] | 130 | /** Get address of registers and IRQ for given device.
|
---|
| 131 | *
|
---|
| 132 | * @param[in] dev Device asking for the addresses.
|
---|
[13927cf] | 133 | * @param[out] mem_reg_address Base address of the memory range.
|
---|
| 134 | * @param[out] mem_reg_size Size of the memory range.
|
---|
[40a5d40] | 135 | * @param[out] irq_no IRQ assigned to the device.
|
---|
| 136 | * @return Error code.
|
---|
| 137 | */
|
---|
[c060090] | 138 | int pci_get_my_registers(const ddf_dev_t *dev,
|
---|
[40a5d40] | 139 | uintptr_t *mem_reg_address, size_t *mem_reg_size, int *irq_no)
|
---|
| 140 | {
|
---|
| 141 | assert(dev != NULL);
|
---|
| 142 |
|
---|
[17d1542] | 143 | const int parent_phone =
|
---|
| 144 | devman_parent_device_connect(dev->handle, IPC_FLAG_BLOCKING);
|
---|
[40a5d40] | 145 | if (parent_phone < 0) {
|
---|
| 146 | return parent_phone;
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | int rc;
|
---|
| 150 |
|
---|
| 151 | hw_resource_list_t hw_resources;
|
---|
| 152 | rc = hw_res_get_resource_list(parent_phone, &hw_resources);
|
---|
| 153 | if (rc != EOK) {
|
---|
[4ed80ce8] | 154 | async_hangup(parent_phone);
|
---|
| 155 | return rc;
|
---|
[40a5d40] | 156 | }
|
---|
| 157 |
|
---|
| 158 | uintptr_t mem_address = 0;
|
---|
| 159 | size_t mem_size = 0;
|
---|
| 160 | bool mem_found = false;
|
---|
| 161 |
|
---|
| 162 | int irq = 0;
|
---|
| 163 | bool irq_found = false;
|
---|
| 164 |
|
---|
| 165 | size_t i;
|
---|
| 166 | for (i = 0; i < hw_resources.count; i++) {
|
---|
| 167 | hw_resource_t *res = &hw_resources.resources[i];
|
---|
[4ed80ce8] | 168 | switch (res->type)
|
---|
| 169 | {
|
---|
| 170 | case INTERRUPT:
|
---|
| 171 | irq = res->res.interrupt.irq;
|
---|
| 172 | irq_found = true;
|
---|
| 173 | usb_log_debug2("Found interrupt: %d.\n", irq);
|
---|
| 174 | break;
|
---|
| 175 |
|
---|
| 176 | case MEM_RANGE:
|
---|
| 177 | if (res->res.mem_range.address != 0
|
---|
| 178 | && res->res.mem_range.size != 0 ) {
|
---|
| 179 | mem_address = res->res.mem_range.address;
|
---|
| 180 | mem_size = res->res.mem_range.size;
|
---|
[4125b7d] | 181 | usb_log_debug2("Found mem: %" PRIxn" %zu.\n",
|
---|
[4ed80ce8] | 182 | mem_address, mem_size);
|
---|
| 183 | mem_found = true;
|
---|
[40a5d40] | 184 | }
|
---|
[4ed80ce8] | 185 | default:
|
---|
| 186 | break;
|
---|
[40a5d40] | 187 | }
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[4ed80ce8] | 190 | if (mem_found && irq_found) {
|
---|
| 191 | *mem_reg_address = mem_address;
|
---|
| 192 | *mem_reg_size = mem_size;
|
---|
| 193 | *irq_no = irq;
|
---|
| 194 | rc = EOK;
|
---|
| 195 | } else {
|
---|
[40a5d40] | 196 | rc = ENOENT;
|
---|
| 197 | }
|
---|
| 198 |
|
---|
| 199 | async_hangup(parent_phone);
|
---|
| 200 | return rc;
|
---|
| 201 | }
|
---|
| 202 | /*----------------------------------------------------------------------------*/
|
---|
[13927cf] | 203 | /** Calls the PCI driver with a request to enable interrupts
|
---|
| 204 | *
|
---|
| 205 | * @param[in] device Device asking for interrupts
|
---|
| 206 | * @return Error code.
|
---|
| 207 | */
|
---|
[c060090] | 208 | int pci_enable_interrupts(const ddf_dev_t *device)
|
---|
[40a5d40] | 209 | {
|
---|
[17d1542] | 210 | const int parent_phone =
|
---|
[4ed80ce8] | 211 | devman_parent_device_connect(device->handle, IPC_FLAG_BLOCKING);
|
---|
| 212 | if (parent_phone < 0) {
|
---|
| 213 | return parent_phone;
|
---|
| 214 | }
|
---|
[17d1542] | 215 | const bool enabled = hw_res_enable_interrupt(parent_phone);
|
---|
[40a5d40] | 216 | async_hangup(parent_phone);
|
---|
| 217 | return enabled ? EOK : EIO;
|
---|
| 218 | }
|
---|
| 219 | /*----------------------------------------------------------------------------*/
|
---|
[13927cf] | 220 | /** Implements BIOS handoff routine as decribed in EHCI spec
|
---|
| 221 | *
|
---|
| 222 | * @param[in] device Device asking for interrupts
|
---|
| 223 | * @return Error code.
|
---|
| 224 | */
|
---|
[c060090] | 225 | int pci_disable_legacy(
|
---|
| 226 | const ddf_dev_t *device, uintptr_t reg_base, size_t reg_size, int irq)
|
---|
[40a5d40] | 227 | {
|
---|
| 228 | assert(device);
|
---|
[17d1542] | 229 | (void) pci_read16;
|
---|
| 230 | (void) pci_read8;
|
---|
| 231 | (void) pci_write16;
|
---|
[40a5d40] | 232 |
|
---|
[17d1542] | 233 | #define CHECK_RET_RETURN(ret, message...) \
|
---|
[4ed80ce8] | 234 | if (ret != EOK) { \
|
---|
| 235 | usb_log_error(message); \
|
---|
| 236 | return ret; \
|
---|
| 237 | } else (void)0
|
---|
| 238 |
|
---|
[c060090] | 239 | /* Map EHCI registers */
|
---|
[17d1542] | 240 | void *regs = NULL;
|
---|
[c060090] | 241 | int ret = pio_enable((void*)reg_base, reg_size, ®s);
|
---|
[17d1542] | 242 | CHECK_RET_RETURN(ret, "Failed(%d) to map registers %p.\n",
|
---|
| 243 | ret, (void *) reg_base);
|
---|
[40a5d40] | 244 |
|
---|
[4ed80ce8] | 245 | const uint32_t hcc_params =
|
---|
[17d1542] | 246 | *(uint32_t*)(regs + HCC_PARAMS_OFFSET);
|
---|
[40a5d40] | 247 | usb_log_debug("Value of hcc params register: %x.\n", hcc_params);
|
---|
[13927cf] | 248 |
|
---|
| 249 | /* Read value of EHCI Extended Capabilities Pointer
|
---|
[17d1542] | 250 | * position of EEC registers (points to PCI config space) */
|
---|
| 251 | const uint32_t eecp =
|
---|
[4ed80ce8] | 252 | (hcc_params >> HCC_PARAMS_EECP_OFFSET) & HCC_PARAMS_EECP_MASK;
|
---|
[40a5d40] | 253 | usb_log_debug("Value of EECP: %x.\n", eecp);
|
---|
| 254 |
|
---|
[13927cf] | 255 | /* Read the first EEC. i.e. Legacy Support register */
|
---|
[17d1542] | 256 | uint32_t usblegsup;
|
---|
| 257 | ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
|
---|
| 258 | CHECK_RET_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret);
|
---|
| 259 | usb_log_debug("USBLEGSUP: %" PRIxn ".\n", usblegsup);
|
---|
[40a5d40] | 260 |
|
---|
[13927cf] | 261 | /* Request control from firmware/BIOS, by writing 1 to highest byte.
|
---|
| 262 | * (OS Control semaphore)*/
|
---|
[17d1542] | 263 | usb_log_debug("Requesting OS control.\n");
|
---|
| 264 | ret = pci_write8(device, eecp + USBLEGSUP_OFFSET + 3, 1);
|
---|
| 265 | CHECK_RET_RETURN(ret, "Failed(%d) to request OS EHCI control.\n", ret);
|
---|
[40a5d40] | 266 |
|
---|
[4ed80ce8] | 267 | size_t wait = 0;
|
---|
[13927cf] | 268 | /* Wait for BIOS to release control. */
|
---|
[17d1542] | 269 | ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
|
---|
| 270 | while ((wait < DEFAULT_WAIT) && (usblegsup & USBLEGSUP_BIOS_CONTROL)) {
|
---|
[40a5d40] | 271 | async_usleep(WAIT_STEP);
|
---|
[17d1542] | 272 | ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
|
---|
[40a5d40] | 273 | wait += WAIT_STEP;
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[13927cf] | 276 |
|
---|
[17d1542] | 277 | if ((usblegsup & USBLEGSUP_BIOS_CONTROL) == 0) {
|
---|
[4125b7d] | 278 | usb_log_info("BIOS released control after %zu usec.\n", wait);
|
---|
[4ed80ce8] | 279 | } else {
|
---|
[13927cf] | 280 | /* BIOS failed to hand over control, this should not happen. */
|
---|
[67352d2] | 281 | usb_log_warning( "BIOS failed to release control after "
|
---|
[4125b7d] | 282 | "%zu usecs, force it.\n", wait);
|
---|
[17d1542] | 283 | ret = pci_write32(device, eecp + USBLEGSUP_OFFSET,
|
---|
[40a5d40] | 284 | USBLEGSUP_OS_CONTROL);
|
---|
[17d1542] | 285 | CHECK_RET_RETURN(ret, "Failed(%d) to force OS control.\n", ret);
|
---|
| 286 | /* Check capability type here, A value of 01h
|
---|
| 287 | * identifies the capability as Legacy Support.
|
---|
| 288 | * This extended capability requires one
|
---|
| 289 | * additional 32-bit register for control/status information,
|
---|
| 290 | * and this register is located at offset EECP+04h
|
---|
| 291 | * */
|
---|
| 292 | if ((usblegsup & 0xff) == 1) {
|
---|
| 293 | /* Read the second EEC
|
---|
| 294 | * Legacy Support and Control register */
|
---|
| 295 | uint32_t usblegctlsts;
|
---|
| 296 | ret = pci_read32(
|
---|
| 297 | device, eecp + USBLEGCTLSTS_OFFSET, &usblegctlsts);
|
---|
| 298 | CHECK_RET_RETURN(ret,
|
---|
| 299 | "Failed(%d) to get USBLEGCTLSTS.\n", ret);
|
---|
| 300 | usb_log_debug("USBLEGCTLSTS: %" PRIxn ".\n",
|
---|
| 301 | usblegctlsts);
|
---|
| 302 | /* Zero SMI enables in legacy control register.
|
---|
| 303 | * It should prevent pre-OS code from interfering. */
|
---|
| 304 | ret = pci_write32(device, eecp + USBLEGCTLSTS_OFFSET,
|
---|
| 305 | 0xe0000000); /* three upper bits are WC */
|
---|
| 306 | CHECK_RET_RETURN(ret,
|
---|
| 307 | "Failed(%d) zero USBLEGCTLSTS.\n", ret);
|
---|
[c060090] | 308 | udelay(10);
|
---|
[17d1542] | 309 | ret = pci_read32(
|
---|
| 310 | device, eecp + USBLEGCTLSTS_OFFSET, &usblegctlsts);
|
---|
| 311 | CHECK_RET_RETURN(ret,
|
---|
| 312 | "Failed(%d) to get USBLEGCTLSTS 2.\n", ret);
|
---|
| 313 | usb_log_debug("Zeroed USBLEGCTLSTS: %" PRIxn ".\n",
|
---|
| 314 | usblegctlsts);
|
---|
| 315 | }
|
---|
[40a5d40] | 316 | }
|
---|
| 317 |
|
---|
| 318 |
|
---|
[13927cf] | 319 | /* Read again Legacy Support register */
|
---|
[17d1542] | 320 | ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
|
---|
| 321 | CHECK_RET_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret);
|
---|
| 322 | usb_log_debug("USBLEGSUP: %" PRIxn ".\n", usblegsup);
|
---|
[40a5d40] | 323 |
|
---|
[67352d2] | 324 | /*
|
---|
| 325 | * TURN OFF EHCI FOR NOW, DRIVER WILL REINITIALIZE IT
|
---|
| 326 | */
|
---|
[40a5d40] | 327 |
|
---|
[13927cf] | 328 | /* Get size of capability registers in memory space. */
|
---|
[17d1542] | 329 | const unsigned operation_offset = *(uint8_t*)regs;
|
---|
[40a5d40] | 330 | usb_log_debug("USBCMD offset: %d.\n", operation_offset);
|
---|
[13927cf] | 331 |
|
---|
| 332 | /* Zero USBCMD register. */
|
---|
[40a5d40] | 333 | volatile uint32_t *usbcmd =
|
---|
[17d1542] | 334 | (uint32_t*)((uint8_t*)regs + operation_offset + CMD_OFFSET);
|
---|
[a948c23] | 335 | volatile uint32_t *usbsts =
|
---|
[17d1542] | 336 | (uint32_t*)((uint8_t*)regs + operation_offset + STS_OFFSET);
|
---|
| 337 | volatile uint32_t *usbconf =
|
---|
| 338 | (uint32_t*)((uint8_t*)regs + operation_offset + CFG_OFFSET);
|
---|
| 339 | volatile uint32_t *usbint =
|
---|
| 340 | (uint32_t*)((uint8_t*)regs + operation_offset + INT_OFFSET);
|
---|
[40a5d40] | 341 | usb_log_debug("USBCMD value: %x.\n", *usbcmd);
|
---|
| 342 | if (*usbcmd & USBCMD_RUN) {
|
---|
[17d1542] | 343 | *usbsts = 0x3f; /* ack all interrupts */
|
---|
| 344 | *usbint = 0; /* disable all interrutps */
|
---|
| 345 | *usbconf = 0; /* relase control of RH ports */
|
---|
[c060090] | 346 |
|
---|
| 347 | *usbcmd = 0;
|
---|
| 348 | /* Wait until hc is halted */
|
---|
| 349 | while ((*usbsts & USBSTS_HALTED) == 0);
|
---|
[40a5d40] | 350 | usb_log_info("EHCI turned off.\n");
|
---|
| 351 | } else {
|
---|
| 352 | usb_log_info("EHCI was not running.\n");
|
---|
| 353 | }
|
---|
[17d1542] | 354 | usb_log_debug("Registers: \n"
|
---|
| 355 | "\t USBCMD: %x(0x00080000 = at least 1ms between interrupts)\n"
|
---|
| 356 | "\t USBSTS: %x(0x00001000 = HC halted)\n"
|
---|
| 357 | "\t USBINT: %x(0x0 = no interrupts).\n"
|
---|
| 358 | "\t CONFIG: %x(0x0 = ports controlled by companion hc).\n",
|
---|
| 359 | *usbcmd, *usbsts, *usbint, *usbconf);
|
---|
[40a5d40] | 360 |
|
---|
[4ed80ce8] | 361 | return ret;
|
---|
[17d1542] | 362 | #undef CHECK_RET_RETURN
|
---|
[40a5d40] | 363 | }
|
---|
| 364 | /*----------------------------------------------------------------------------*/
|
---|
| 365 | /**
|
---|
| 366 | * @}
|
---|
| 367 | */
|
---|
| 368 |
|
---|
| 369 | /**
|
---|
| 370 | * @}
|
---|
| 371 | */
|
---|