Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 2 | /*- |
| 3 | * Copyright (c) 2007-2008, Juniper Networks, Inc. |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 4 | * Copyright (c) 2008, Excito Elektronik i Skåne AB |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 5 | * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it> |
| 6 | * |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 7 | * All rights reserved. |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 8 | */ |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 9 | #include <common.h> |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 11 | #include <errno.h> |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 12 | #include <asm/byteorder.h> |
Lucas Stach | 835e11e | 2012-09-06 08:00:13 +0200 | [diff] [blame] | 13 | #include <asm/unaligned.h> |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 14 | #include <usb.h> |
| 15 | #include <asm/io.h> |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 16 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 17 | #include <memalign.h> |
Stefan Roese | 86b34cf | 2010-11-26 15:43:28 +0100 | [diff] [blame] | 18 | #include <watchdog.h> |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 19 | #include <linux/compiler.h> |
Jean-Christophe PLAGNIOL-VILLARD | 8f6bcf4 | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 20 | |
| 21 | #include "ehci.h" |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 22 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 23 | #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT |
| 24 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 25 | #endif |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 26 | |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 27 | /* |
| 28 | * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt. |
| 29 | * Let's time out after 8 to have a little safety margin on top of that. |
| 30 | */ |
| 31 | #define HCHALT_TIMEOUT (8 * 1000) |
| 32 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 33 | #ifndef CONFIG_DM_USB |
Marek Vasut | fd349a1 | 2013-07-10 03:16:31 +0200 | [diff] [blame] | 34 | static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT]; |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 35 | #endif |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 36 | |
| 37 | #define ALIGN_END_ADDR(type, ptr, size) \ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 38 | ((unsigned long)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN)) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 39 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 40 | static struct descriptor { |
| 41 | struct usb_hub_descriptor hub; |
| 42 | struct usb_device_descriptor device; |
| 43 | struct usb_linux_config_descriptor config; |
| 44 | struct usb_linux_interface_descriptor interface; |
| 45 | struct usb_endpoint_descriptor endpoint; |
| 46 | } __attribute__ ((packed)) descriptor = { |
| 47 | { |
| 48 | 0x8, /* bDescLength */ |
| 49 | 0x29, /* bDescriptorType: hub descriptor */ |
| 50 | 2, /* bNrPorts -- runtime modified */ |
| 51 | 0, /* wHubCharacteristics */ |
Vincent Palatin | 8277b50 | 2011-12-05 14:52:22 -0800 | [diff] [blame] | 52 | 10, /* bPwrOn2PwrGood */ |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 53 | 0, /* bHubCntrCurrent */ |
Bin Meng | 0d66b3a | 2017-07-19 21:50:00 +0800 | [diff] [blame] | 54 | { /* Device removable */ |
| 55 | } /* at most 7 ports! XXX */ |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 56 | }, |
| 57 | { |
| 58 | 0x12, /* bLength */ |
| 59 | 1, /* bDescriptorType: UDESC_DEVICE */ |
Sergei Shtylyov | fa30a27 | 2010-02-27 21:29:42 +0300 | [diff] [blame] | 60 | cpu_to_le16(0x0200), /* bcdUSB: v2.0 */ |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 61 | 9, /* bDeviceClass: UDCLASS_HUB */ |
| 62 | 0, /* bDeviceSubClass: UDSUBCLASS_HUB */ |
| 63 | 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */ |
| 64 | 64, /* bMaxPacketSize: 64 bytes */ |
| 65 | 0x0000, /* idVendor */ |
| 66 | 0x0000, /* idProduct */ |
Sergei Shtylyov | fa30a27 | 2010-02-27 21:29:42 +0300 | [diff] [blame] | 67 | cpu_to_le16(0x0100), /* bcdDevice */ |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 68 | 1, /* iManufacturer */ |
| 69 | 2, /* iProduct */ |
| 70 | 0, /* iSerialNumber */ |
| 71 | 1 /* bNumConfigurations: 1 */ |
| 72 | }, |
| 73 | { |
| 74 | 0x9, |
| 75 | 2, /* bDescriptorType: UDESC_CONFIG */ |
| 76 | cpu_to_le16(0x19), |
| 77 | 1, /* bNumInterface */ |
| 78 | 1, /* bConfigurationValue */ |
| 79 | 0, /* iConfiguration */ |
| 80 | 0x40, /* bmAttributes: UC_SELF_POWER */ |
| 81 | 0 /* bMaxPower */ |
| 82 | }, |
| 83 | { |
| 84 | 0x9, /* bLength */ |
| 85 | 4, /* bDescriptorType: UDESC_INTERFACE */ |
| 86 | 0, /* bInterfaceNumber */ |
| 87 | 0, /* bAlternateSetting */ |
| 88 | 1, /* bNumEndpoints */ |
| 89 | 9, /* bInterfaceClass: UICLASS_HUB */ |
| 90 | 0, /* bInterfaceSubClass: UISUBCLASS_HUB */ |
| 91 | 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */ |
| 92 | 0 /* iInterface */ |
| 93 | }, |
| 94 | { |
| 95 | 0x7, /* bLength */ |
| 96 | 5, /* bDescriptorType: UDESC_ENDPOINT */ |
| 97 | 0x81, /* bEndpointAddress: |
| 98 | * UE_DIR_IN | EHCI_INTR_ENDPT |
| 99 | */ |
| 100 | 3, /* bmAttributes: UE_INTERRUPT */ |
Tom Rix | 83b9e1d | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 101 | 8, /* wMaxPacketSize */ |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 102 | 255 /* bInterval */ |
| 103 | }, |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 104 | }; |
| 105 | |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 106 | #if defined(CONFIG_EHCI_IS_TDI) |
| 107 | #define ehci_is_TDI() (1) |
| 108 | #else |
| 109 | #define ehci_is_TDI() (0) |
| 110 | #endif |
| 111 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 112 | static struct ehci_ctrl *ehci_get_ctrl(struct usb_device *udev) |
| 113 | { |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 114 | #ifdef CONFIG_DM_USB |
Hans de Goede | 6be39d1 | 2015-05-05 11:54:33 +0200 | [diff] [blame] | 115 | return dev_get_priv(usb_get_bus(udev->dev)); |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 116 | #else |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 117 | return udev->controller; |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 118 | #endif |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 119 | } |
| 120 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 121 | static int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg) |
Jim Lin | 54f3dfe | 2013-03-27 00:52:32 +0000 | [diff] [blame] | 122 | { |
| 123 | return PORTSC_PSPD(reg); |
| 124 | } |
| 125 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 126 | static void ehci_set_usbmode(struct ehci_ctrl *ctrl) |
Jim Lin | 54f3dfe | 2013-03-27 00:52:32 +0000 | [diff] [blame] | 127 | { |
| 128 | uint32_t tmp; |
| 129 | uint32_t *reg_ptr; |
| 130 | |
Simon Glass | 2d387ab | 2015-03-25 12:22:23 -0600 | [diff] [blame] | 131 | reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd + USBMODE); |
Jim Lin | 54f3dfe | 2013-03-27 00:52:32 +0000 | [diff] [blame] | 132 | tmp = ehci_readl(reg_ptr); |
| 133 | tmp |= USBMODE_CM_HC; |
| 134 | #if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN) |
| 135 | tmp |= USBMODE_BE; |
Marek Vasut | d9fa048 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 136 | #else |
| 137 | tmp &= ~USBMODE_BE; |
Jim Lin | 54f3dfe | 2013-03-27 00:52:32 +0000 | [diff] [blame] | 138 | #endif |
| 139 | ehci_writel(reg_ptr, tmp); |
| 140 | } |
| 141 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 142 | static void ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg, |
Simon Glass | cc0dc6b | 2015-03-25 12:22:21 -0600 | [diff] [blame] | 143 | uint32_t *reg) |
Marek Vasut | 0973477 | 2011-07-11 02:37:01 +0200 | [diff] [blame] | 144 | { |
| 145 | mdelay(50); |
| 146 | } |
| 147 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 148 | static uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port) |
Simon Glass | 0bec128 | 2015-03-25 12:22:17 -0600 | [diff] [blame] | 149 | { |
Bin Meng | c6336ee | 2017-07-19 21:50:05 +0800 | [diff] [blame] | 150 | int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams)); |
| 151 | |
| 152 | if (port < 0 || port >= max_ports) { |
Simon Glass | 0bec128 | 2015-03-25 12:22:17 -0600 | [diff] [blame] | 153 | /* Printing the message would cause a scan failure! */ |
Bin Meng | c6336ee | 2017-07-19 21:50:05 +0800 | [diff] [blame] | 154 | debug("The request port(%u) exceeds maximum port number\n", |
| 155 | port); |
Simon Glass | 0bec128 | 2015-03-25 12:22:17 -0600 | [diff] [blame] | 156 | return NULL; |
| 157 | } |
| 158 | |
Simon Glass | dfbf186 | 2015-03-25 12:22:24 -0600 | [diff] [blame] | 159 | return (uint32_t *)&ctrl->hcor->or_portsc[port]; |
Simon Glass | 0bec128 | 2015-03-25 12:22:17 -0600 | [diff] [blame] | 160 | } |
| 161 | |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 162 | static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec) |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 163 | { |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 164 | uint32_t result; |
| 165 | do { |
| 166 | result = ehci_readl(ptr); |
Wolfgang Denk | cdc5a7a | 2010-10-22 14:23:00 +0200 | [diff] [blame] | 167 | udelay(5); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 168 | if (result == ~(uint32_t)0) |
| 169 | return -1; |
| 170 | result &= mask; |
| 171 | if (result == done) |
| 172 | return 0; |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 173 | usec--; |
| 174 | } while (usec > 0); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 175 | return -1; |
| 176 | } |
| 177 | |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 178 | static int ehci_reset(struct ehci_ctrl *ctrl) |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 179 | { |
| 180 | uint32_t cmd; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 181 | int ret = 0; |
| 182 | |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 183 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Stefan Roese | 745af44 | 2010-11-26 15:44:00 +0100 | [diff] [blame] | 184 | cmd = (cmd & ~CMD_RUN) | CMD_RESET; |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 185 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
| 186 | ret = handshake((uint32_t *)&ctrl->hcor->or_usbcmd, |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 187 | CMD_RESET, 0, 250 * 1000); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 188 | if (ret < 0) { |
| 189 | printf("EHCI fail to reset\n"); |
| 190 | goto out; |
| 191 | } |
| 192 | |
Jim Lin | 54f3dfe | 2013-03-27 00:52:32 +0000 | [diff] [blame] | 193 | if (ehci_is_TDI()) |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 194 | ctrl->ops.set_usb_mode(ctrl); |
Simon Glass | 5978cdb | 2012-02-27 10:52:47 +0000 | [diff] [blame] | 195 | |
| 196 | #ifdef CONFIG_USB_EHCI_TXFIFO_THRESH |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 197 | cmd = ehci_readl(&ctrl->hcor->or_txfilltuning); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 198 | cmd &= ~TXFIFO_THRESH_MASK; |
Simon Glass | 5978cdb | 2012-02-27 10:52:47 +0000 | [diff] [blame] | 199 | cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH); |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 200 | ehci_writel(&ctrl->hcor->or_txfilltuning, cmd); |
Simon Glass | 5978cdb | 2012-02-27 10:52:47 +0000 | [diff] [blame] | 201 | #endif |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 202 | out: |
| 203 | return ret; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 204 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 205 | |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 206 | static int ehci_shutdown(struct ehci_ctrl *ctrl) |
| 207 | { |
| 208 | int i, ret = 0; |
| 209 | uint32_t cmd, reg; |
Bin Meng | c6336ee | 2017-07-19 21:50:05 +0800 | [diff] [blame] | 210 | int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams)); |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 211 | |
| 212 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Peng Fan | ba397ba | 2016-06-15 13:15:46 +0800 | [diff] [blame] | 213 | /* If not run, directly return */ |
| 214 | if (!(cmd & CMD_RUN)) |
| 215 | return 0; |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 216 | cmd &= ~(CMD_PSE | CMD_ASE); |
| 217 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
| 218 | ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0, |
| 219 | 100 * 1000); |
| 220 | |
| 221 | if (!ret) { |
Bin Meng | c6336ee | 2017-07-19 21:50:05 +0800 | [diff] [blame] | 222 | for (i = 0; i < max_ports; i++) { |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 223 | reg = ehci_readl(&ctrl->hcor->or_portsc[i]); |
| 224 | reg |= EHCI_PS_SUSP; |
| 225 | ehci_writel(&ctrl->hcor->or_portsc[i], reg); |
| 226 | } |
| 227 | |
| 228 | cmd &= ~CMD_RUN; |
| 229 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
| 230 | ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT, |
| 231 | HCHALT_TIMEOUT); |
| 232 | } |
| 233 | |
| 234 | if (ret) |
| 235 | puts("EHCI failed to shut down host controller.\n"); |
| 236 | |
| 237 | return ret; |
| 238 | } |
| 239 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 240 | static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz) |
| 241 | { |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 242 | uint32_t delta, next; |
Marek Vasut | cadf42c | 2016-02-26 19:23:27 +0100 | [diff] [blame] | 243 | unsigned long addr = (unsigned long)buf; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 244 | int idx; |
| 245 | |
Ilya Yanok | fb11371 | 2012-07-15 04:43:49 +0000 | [diff] [blame] | 246 | if (addr != ALIGN(addr, ARCH_DMA_MINALIGN)) |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 247 | debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf); |
| 248 | |
Ilya Yanok | fb11371 | 2012-07-15 04:43:49 +0000 | [diff] [blame] | 249 | flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN)); |
| 250 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 251 | idx = 0; |
Benoît Thébaudeau | e68f48a | 2012-07-19 22:16:38 +0200 | [diff] [blame] | 252 | while (idx < QT_BUFFER_CNT) { |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 253 | td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr)); |
Wolfgang Denk | ebb829f | 2010-10-19 16:13:15 +0200 | [diff] [blame] | 254 | td->qt_buffer_hi[idx] = 0; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 255 | next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 256 | delta = next - addr; |
| 257 | if (delta >= sz) |
| 258 | break; |
| 259 | sz -= delta; |
| 260 | addr = next; |
| 261 | idx++; |
| 262 | } |
| 263 | |
Benoît Thébaudeau | e68f48a | 2012-07-19 22:16:38 +0200 | [diff] [blame] | 264 | if (idx == QT_BUFFER_CNT) { |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 265 | printf("out of buffer pointers (%zu bytes left)\n", sz); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 266 | return -1; |
| 267 | } |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
Ilya Yanok | a1cf10f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 272 | static inline u8 ehci_encode_speed(enum usb_device_speed speed) |
| 273 | { |
| 274 | #define QH_HIGH_SPEED 2 |
| 275 | #define QH_FULL_SPEED 0 |
| 276 | #define QH_LOW_SPEED 1 |
| 277 | if (speed == USB_SPEED_HIGH) |
| 278 | return QH_HIGH_SPEED; |
| 279 | if (speed == USB_SPEED_LOW) |
| 280 | return QH_LOW_SPEED; |
| 281 | return QH_FULL_SPEED; |
| 282 | } |
| 283 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 284 | static void ehci_update_endpt2_dev_n_port(struct usb_device *udev, |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 285 | struct QH *qh) |
| 286 | { |
Stefan Brüns | a010568 | 2015-12-22 01:21:03 +0100 | [diff] [blame] | 287 | uint8_t portnr = 0; |
| 288 | uint8_t hubaddr = 0; |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 289 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 290 | if (udev->speed != USB_SPEED_LOW && udev->speed != USB_SPEED_FULL) |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 291 | return; |
| 292 | |
Stefan Brüns | a010568 | 2015-12-22 01:21:03 +0100 | [diff] [blame] | 293 | usb_find_usb2_hub_address_port(udev, &hubaddr, &portnr); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 294 | |
Stefan Brüns | a010568 | 2015-12-22 01:21:03 +0100 | [diff] [blame] | 295 | qh->qh_endpt2 |= cpu_to_hc32(QH_ENDPT2_PORTNUM(portnr) | |
| 296 | QH_ENDPT2_HUBADDR(hubaddr)); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 299 | static int |
| 300 | ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer, |
| 301 | int length, struct devrequest *req) |
| 302 | { |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 303 | ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 304 | struct qTD *qtd; |
| 305 | int qtd_count = 0; |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 306 | int qtd_counter = 0; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 307 | volatile struct qTD *vtd; |
| 308 | unsigned long ts; |
| 309 | uint32_t *tdp; |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 310 | uint32_t endpt, maxpacket, token, usbsts; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 311 | uint32_t c, toggle; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 312 | uint32_t cmd; |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 313 | int timeout; |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 314 | int ret = 0; |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 315 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 316 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 317 | debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe, |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 318 | buffer, length, req); |
| 319 | if (req != NULL) |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 320 | debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n", |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 321 | req->request, req->request, |
| 322 | req->requesttype, req->requesttype, |
| 323 | le16_to_cpu(req->value), le16_to_cpu(req->value), |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 324 | le16_to_cpu(req->index)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 325 | |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 326 | #define PKT_ALIGN 512 |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 327 | /* |
| 328 | * The USB transfer is split into qTD transfers. Eeach qTD transfer is |
| 329 | * described by a transfer descriptor (the qTD). The qTDs form a linked |
| 330 | * list with a queue head (QH). |
| 331 | * |
| 332 | * Each qTD transfer starts with a new USB packet, i.e. a packet cannot |
| 333 | * have its beginning in a qTD transfer and its end in the following |
| 334 | * one, so the qTD transfer lengths have to be chosen accordingly. |
| 335 | * |
| 336 | * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to |
| 337 | * single pages. The first data buffer can start at any offset within a |
| 338 | * page (not considering the cache-line alignment issues), while the |
| 339 | * following buffers must be page-aligned. There is no alignment |
| 340 | * constraint on the size of a qTD transfer. |
| 341 | */ |
| 342 | if (req != NULL) |
| 343 | /* 1 qTD will be needed for SETUP, and 1 for ACK. */ |
| 344 | qtd_count += 1 + 1; |
| 345 | if (length > 0 || req == NULL) { |
| 346 | /* |
| 347 | * Determine the qTD transfer size that will be used for the |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 348 | * data payload (not considering the first qTD transfer, which |
| 349 | * may be longer or shorter, and the final one, which may be |
| 350 | * shorter). |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 351 | * |
| 352 | * In order to keep each packet within a qTD transfer, the qTD |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 353 | * transfer size is aligned to PKT_ALIGN, which is a multiple of |
| 354 | * wMaxPacketSize (except in some cases for interrupt transfers, |
| 355 | * see comment in submit_int_msg()). |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 356 | * |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 357 | * By default, i.e. if the input buffer is aligned to PKT_ALIGN, |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 358 | * QT_BUFFER_CNT full pages will be used. |
| 359 | */ |
| 360 | int xfr_sz = QT_BUFFER_CNT; |
| 361 | /* |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 362 | * However, if the input buffer is not aligned to PKT_ALIGN, the |
| 363 | * qTD transfer size will be one page shorter, and the first qTD |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 364 | * data buffer of each transfer will be page-unaligned. |
| 365 | */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 366 | if ((unsigned long)buffer & (PKT_ALIGN - 1)) |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 367 | xfr_sz--; |
| 368 | /* Convert the qTD transfer size to bytes. */ |
| 369 | xfr_sz *= EHCI_PAGE_SIZE; |
| 370 | /* |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 371 | * Approximate by excess the number of qTDs that will be |
| 372 | * required for the data payload. The exact formula is way more |
| 373 | * complicated and saves at most 2 qTDs, i.e. a total of 128 |
| 374 | * bytes. |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 375 | */ |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 376 | qtd_count += 2 + length / xfr_sz; |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 377 | } |
| 378 | /* |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 379 | * Threshold value based on the worst-case total size of the allocated qTDs for |
| 380 | * a mass-storage transfer of 65535 blocks of 512 bytes. |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 381 | */ |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 382 | #if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024 |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 383 | #warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI |
| 384 | #endif |
| 385 | qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD)); |
| 386 | if (qtd == NULL) { |
| 387 | printf("unable to allocate TDs\n"); |
| 388 | return -1; |
| 389 | } |
| 390 | |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 391 | memset(qh, 0, sizeof(struct QH)); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 392 | memset(qtd, 0, qtd_count * sizeof(*qtd)); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 393 | |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 394 | toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
| 395 | |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 396 | /* |
| 397 | * Setup QH (3.6 in ehci-r10.pdf) |
| 398 | * |
| 399 | * qh_link ................. 03-00 H |
| 400 | * qh_endpt1 ............... 07-04 H |
| 401 | * qh_endpt2 ............... 0B-08 H |
| 402 | * - qh_curtd |
| 403 | * qh_overlay.qt_next ...... 13-10 H |
| 404 | * - qh_overlay.qt_altnext |
| 405 | */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 406 | qh->qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH); |
Ilya Yanok | a1cf10f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 407 | c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe); |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 408 | maxpacket = usb_maxpacket(dev, pipe); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 409 | endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) | |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 410 | QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) | |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 411 | QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) | |
Ilya Yanok | a1cf10f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 412 | QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) | |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 413 | QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) | |
| 414 | QH_ENDPT1_DEVADDR(usb_pipedevice(pipe)); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 415 | qh->qh_endpt1 = cpu_to_hc32(endpt); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 416 | endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 417 | qh->qh_endpt2 = cpu_to_hc32(endpt); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 418 | ehci_update_endpt2_dev_n_port(dev, qh); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 419 | qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
Stephen Warren | 1907e5a | 2014-02-07 09:53:50 -0700 | [diff] [blame] | 420 | qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 421 | |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 422 | tdp = &qh->qh_overlay.qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 423 | if (req != NULL) { |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 424 | /* |
| 425 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 426 | * |
| 427 | * qt_next ................ 03-00 H |
| 428 | * qt_altnext ............. 07-04 H |
| 429 | * qt_token ............... 0B-08 H |
| 430 | * |
| 431 | * [ buffer, buffer_hi ] loaded with "req". |
| 432 | */ |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 433 | qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 434 | qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 435 | token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) | |
| 436 | QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) | |
| 437 | QT_TOKEN_PID(QT_TOKEN_PID_SETUP) | |
| 438 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 439 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 440 | if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) { |
| 441 | printf("unable to construct SETUP TD\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 442 | goto fail; |
| 443 | } |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 444 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 445 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 446 | tdp = &qtd[qtd_counter++].qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 447 | toggle = 1; |
| 448 | } |
| 449 | |
| 450 | if (length > 0 || req == NULL) { |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 451 | uint8_t *buf_ptr = buffer; |
| 452 | int left_length = length; |
| 453 | |
| 454 | do { |
| 455 | /* |
| 456 | * Determine the size of this qTD transfer. By default, |
| 457 | * QT_BUFFER_CNT full pages can be used. |
| 458 | */ |
| 459 | int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE; |
| 460 | /* |
| 461 | * However, if the input buffer is not page-aligned, the |
| 462 | * portion of the first page before the buffer start |
| 463 | * offset within that page is unusable. |
| 464 | */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 465 | xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 466 | /* |
| 467 | * In order to keep each packet within a qTD transfer, |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 468 | * align the qTD transfer size to PKT_ALIGN. |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 469 | */ |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 470 | xfr_bytes &= ~(PKT_ALIGN - 1); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 471 | /* |
| 472 | * This transfer may be shorter than the available qTD |
| 473 | * transfer size that has just been computed. |
| 474 | */ |
| 475 | xfr_bytes = min(xfr_bytes, left_length); |
| 476 | |
| 477 | /* |
| 478 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 479 | * |
| 480 | * qt_next ................ 03-00 H |
| 481 | * qt_altnext ............. 07-04 H |
| 482 | * qt_token ............... 0B-08 H |
| 483 | * |
| 484 | * [ buffer, buffer_hi ] loaded with "buffer". |
| 485 | */ |
| 486 | qtd[qtd_counter].qt_next = |
| 487 | cpu_to_hc32(QT_NEXT_TERMINATE); |
| 488 | qtd[qtd_counter].qt_altnext = |
| 489 | cpu_to_hc32(QT_NEXT_TERMINATE); |
| 490 | token = QT_TOKEN_DT(toggle) | |
| 491 | QT_TOKEN_TOTALBYTES(xfr_bytes) | |
| 492 | QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) | |
| 493 | QT_TOKEN_CERR(3) | |
| 494 | QT_TOKEN_PID(usb_pipein(pipe) ? |
| 495 | QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) | |
| 496 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
| 497 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
| 498 | if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr, |
| 499 | xfr_bytes)) { |
| 500 | printf("unable to construct DATA TD\n"); |
| 501 | goto fail; |
| 502 | } |
| 503 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 504 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 505 | tdp = &qtd[qtd_counter++].qt_next; |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 506 | /* |
| 507 | * Data toggle has to be adjusted since the qTD transfer |
| 508 | * size is not always an even multiple of |
| 509 | * wMaxPacketSize. |
| 510 | */ |
| 511 | if ((xfr_bytes / maxpacket) & 1) |
| 512 | toggle ^= 1; |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 513 | buf_ptr += xfr_bytes; |
| 514 | left_length -= xfr_bytes; |
| 515 | } while (left_length > 0); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | if (req != NULL) { |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 519 | /* |
| 520 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 521 | * |
| 522 | * qt_next ................ 03-00 H |
| 523 | * qt_altnext ............. 07-04 H |
| 524 | * qt_token ............... 0B-08 H |
| 525 | */ |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 526 | qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 527 | qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 528 | token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) | |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 529 | QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) | |
| 530 | QT_TOKEN_PID(usb_pipein(pipe) ? |
| 531 | QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) | |
| 532 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 533 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 534 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 535 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 536 | tdp = &qtd[qtd_counter++].qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 537 | } |
| 538 | |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 539 | ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(qh) | QH_LINK_TYPE_QH); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 540 | |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 541 | /* Flush dcache */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 542 | flush_dcache_range((unsigned long)&ctrl->qh_list, |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 543 | ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 544 | flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1)); |
| 545 | flush_dcache_range((unsigned long)qtd, |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 546 | ALIGN_END_ADDR(struct qTD, qtd, qtd_count)); |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 547 | |
Ilya Yanok | 84309bb | 2012-07-15 22:12:08 +0000 | [diff] [blame] | 548 | /* Set async. queue head pointer. */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 549 | ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(&ctrl->qh_list)); |
Ilya Yanok | 84309bb | 2012-07-15 22:12:08 +0000 | [diff] [blame] | 550 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 551 | usbsts = ehci_readl(&ctrl->hcor->or_usbsts); |
| 552 | ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 553 | |
| 554 | /* Enable async. schedule. */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 555 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 556 | cmd |= CMD_ASE; |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 557 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 558 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 559 | ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS, |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 560 | 100 * 1000); |
| 561 | if (ret < 0) { |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 562 | printf("EHCI fail timeout STS_ASS set\n"); |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 563 | goto fail; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 564 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 565 | |
| 566 | /* Wait for TDs to be processed. */ |
| 567 | ts = get_timer(0); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 568 | vtd = &qtd[qtd_counter - 1]; |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 569 | timeout = USB_TIMEOUT_MS(pipe); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 570 | do { |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 571 | /* Invalidate dcache */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 572 | invalidate_dcache_range((unsigned long)&ctrl->qh_list, |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 573 | ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 574 | invalidate_dcache_range((unsigned long)qh, |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 575 | ALIGN_END_ADDR(struct QH, qh, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 576 | invalidate_dcache_range((unsigned long)qtd, |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 577 | ALIGN_END_ADDR(struct qTD, qtd, qtd_count)); |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 578 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 579 | token = hc32_to_cpu(vtd->qt_token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 580 | if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 581 | break; |
Stefan Roese | 86b34cf | 2010-11-26 15:43:28 +0100 | [diff] [blame] | 582 | WATCHDOG_RESET(); |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 583 | } while (get_timer(ts) < timeout); |
| 584 | |
Ilya Yanok | fb11371 | 2012-07-15 04:43:49 +0000 | [diff] [blame] | 585 | /* |
| 586 | * Invalidate the memory area occupied by buffer |
| 587 | * Don't try to fix the buffer alignment, if it isn't properly |
| 588 | * aligned it's upper layer's fault so let invalidate_dcache_range() |
| 589 | * vow about it. But we have to fix the length as it's actual |
| 590 | * transfer length and can be unaligned. This is potentially |
| 591 | * dangerous operation, it's responsibility of the calling |
| 592 | * code to make sure enough space is reserved. |
| 593 | */ |
Dirk Behme | 78c7356 | 2017-11-17 15:28:36 +0100 | [diff] [blame] | 594 | if (buffer != NULL && length > 0) |
| 595 | invalidate_dcache_range((unsigned long)buffer, |
| 596 | ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN)); |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 597 | |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 598 | /* Check that the TD processing happened */ |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 599 | if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 600 | printf("EHCI timed out on TD - token=%#x\n", token); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 601 | |
| 602 | /* Disable async schedule. */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 603 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 604 | cmd &= ~CMD_ASE; |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 605 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 606 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 607 | ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0, |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 608 | 100 * 1000); |
| 609 | if (ret < 0) { |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 610 | printf("EHCI fail timeout STS_ASS reset\n"); |
Michael Trimarchi | 6d4b91c | 2008-12-31 10:33:22 +0100 | [diff] [blame] | 611 | goto fail; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 612 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 613 | |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 614 | token = hc32_to_cpu(qh->qh_overlay.qt_token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 615 | if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) { |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 616 | debug("TOKEN=%#x\n", token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 617 | switch (QT_TOKEN_GET_STATUS(token) & |
| 618 | ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 619 | case 0: |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 620 | toggle = QT_TOKEN_GET_DT(token); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 621 | usb_settoggle(dev, usb_pipeendpoint(pipe), |
| 622 | usb_pipeout(pipe), toggle); |
| 623 | dev->status = 0; |
| 624 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 625 | case QT_TOKEN_STATUS_HALTED: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 626 | dev->status = USB_ST_STALLED; |
| 627 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 628 | case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR: |
| 629 | case QT_TOKEN_STATUS_DATBUFERR: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 630 | dev->status = USB_ST_BUF_ERR; |
| 631 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 632 | case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET: |
| 633 | case QT_TOKEN_STATUS_BABBLEDET: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 634 | dev->status = USB_ST_BABBLE_DET; |
| 635 | break; |
| 636 | default: |
| 637 | dev->status = USB_ST_CRC_ERR; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 638 | if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED) |
Anatolij Gustschin | e1e0931 | 2010-11-02 11:47:29 +0100 | [diff] [blame] | 639 | dev->status |= USB_ST_STALLED; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 640 | break; |
| 641 | } |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 642 | dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 643 | } else { |
| 644 | dev->act_len = 0; |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 645 | #ifndef CONFIG_USB_EHCI_FARADAY |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 646 | debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n", |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 647 | dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts), |
| 648 | ehci_readl(&ctrl->hcor->or_portsc[0]), |
| 649 | ehci_readl(&ctrl->hcor->or_portsc[1])); |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 650 | #endif |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 651 | } |
| 652 | |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 653 | free(qtd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 654 | return (dev->status != USB_ST_NOT_PROC) ? 0 : -1; |
| 655 | |
| 656 | fail: |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 657 | free(qtd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 658 | return -1; |
| 659 | } |
| 660 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 661 | static int ehci_submit_root(struct usb_device *dev, unsigned long pipe, |
| 662 | void *buffer, int length, struct devrequest *req) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 663 | { |
| 664 | uint8_t tmpbuf[4]; |
| 665 | u16 typeReq; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 666 | void *srcptr = NULL; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 667 | int len, srclen; |
| 668 | uint32_t reg; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 669 | uint32_t *status_reg; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 670 | int port = le16_to_cpu(req->index) & 0xff; |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 671 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 672 | |
| 673 | srclen = 0; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 674 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 675 | debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n", |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 676 | req->request, req->request, |
| 677 | req->requesttype, req->requesttype, |
| 678 | le16_to_cpu(req->value), le16_to_cpu(req->index)); |
| 679 | |
Prafulla Wadaskar | 2281029 | 2009-07-17 19:56:30 +0530 | [diff] [blame] | 680 | typeReq = req->request | req->requesttype << 8; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 681 | |
Prafulla Wadaskar | 2281029 | 2009-07-17 19:56:30 +0530 | [diff] [blame] | 682 | switch (typeReq) { |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 683 | case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8): |
| 684 | case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
| 685 | case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 686 | status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1); |
Kuo-Jung Su | 6a656df | 2013-05-15 15:29:21 +0800 | [diff] [blame] | 687 | if (!status_reg) |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 688 | return -1; |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 689 | break; |
| 690 | default: |
| 691 | status_reg = NULL; |
| 692 | break; |
| 693 | } |
| 694 | |
| 695 | switch (typeReq) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 696 | case DeviceRequest | USB_REQ_GET_DESCRIPTOR: |
| 697 | switch (le16_to_cpu(req->value) >> 8) { |
| 698 | case USB_DT_DEVICE: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 699 | debug("USB_DT_DEVICE request\n"); |
| 700 | srcptr = &descriptor.device; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 701 | srclen = descriptor.device.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 702 | break; |
| 703 | case USB_DT_CONFIG: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 704 | debug("USB_DT_CONFIG config\n"); |
| 705 | srcptr = &descriptor.config; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 706 | srclen = descriptor.config.bLength + |
| 707 | descriptor.interface.bLength + |
| 708 | descriptor.endpoint.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 709 | break; |
| 710 | case USB_DT_STRING: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 711 | debug("USB_DT_STRING config\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 712 | switch (le16_to_cpu(req->value) & 0xff) { |
| 713 | case 0: /* Language */ |
| 714 | srcptr = "\4\3\1\0"; |
| 715 | srclen = 4; |
| 716 | break; |
| 717 | case 1: /* Vendor */ |
| 718 | srcptr = "\16\3u\0-\0b\0o\0o\0t\0"; |
| 719 | srclen = 14; |
| 720 | break; |
| 721 | case 2: /* Product */ |
| 722 | srcptr = "\52\3E\0H\0C\0I\0 " |
| 723 | "\0H\0o\0s\0t\0 " |
| 724 | "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0"; |
| 725 | srclen = 42; |
| 726 | break; |
| 727 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 728 | debug("unknown value DT_STRING %x\n", |
| 729 | le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 730 | goto unknown; |
| 731 | } |
| 732 | break; |
| 733 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 734 | debug("unknown value %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 735 | goto unknown; |
| 736 | } |
| 737 | break; |
| 738 | case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8): |
| 739 | switch (le16_to_cpu(req->value) >> 8) { |
| 740 | case USB_DT_HUB: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 741 | debug("USB_DT_HUB config\n"); |
| 742 | srcptr = &descriptor.hub; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 743 | srclen = descriptor.hub.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 744 | break; |
| 745 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 746 | debug("unknown value %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 747 | goto unknown; |
| 748 | } |
| 749 | break; |
| 750 | case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8): |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 751 | debug("USB_REQ_SET_ADDRESS\n"); |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 752 | ctrl->rootdev = le16_to_cpu(req->value); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 753 | break; |
| 754 | case DeviceOutRequest | USB_REQ_SET_CONFIGURATION: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 755 | debug("USB_REQ_SET_CONFIGURATION\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 756 | /* Nothing to do */ |
| 757 | break; |
| 758 | case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8): |
| 759 | tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */ |
| 760 | tmpbuf[1] = 0; |
| 761 | srcptr = tmpbuf; |
| 762 | srclen = 2; |
| 763 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 764 | case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8): |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 765 | memset(tmpbuf, 0, 4); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 766 | reg = ehci_readl(status_reg); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 767 | if (reg & EHCI_PS_CS) |
| 768 | tmpbuf[0] |= USB_PORT_STAT_CONNECTION; |
| 769 | if (reg & EHCI_PS_PE) |
| 770 | tmpbuf[0] |= USB_PORT_STAT_ENABLE; |
| 771 | if (reg & EHCI_PS_SUSP) |
| 772 | tmpbuf[0] |= USB_PORT_STAT_SUSPEND; |
| 773 | if (reg & EHCI_PS_OCA) |
| 774 | tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT; |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 775 | if (reg & EHCI_PS_PR) |
| 776 | tmpbuf[0] |= USB_PORT_STAT_RESET; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 777 | if (reg & EHCI_PS_PP) |
| 778 | tmpbuf[1] |= USB_PORT_STAT_POWER >> 8; |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 779 | |
| 780 | if (ehci_is_TDI()) { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 781 | switch (ctrl->ops.get_port_speed(ctrl, reg)) { |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 782 | case PORTSC_PSPD_FS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 783 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 784 | case PORTSC_PSPD_LS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 785 | tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8; |
| 786 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 787 | case PORTSC_PSPD_HS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 788 | default: |
| 789 | tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8; |
| 790 | break; |
| 791 | } |
| 792 | } else { |
| 793 | tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8; |
| 794 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 795 | |
| 796 | if (reg & EHCI_PS_CSC) |
| 797 | tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION; |
| 798 | if (reg & EHCI_PS_PEC) |
| 799 | tmpbuf[2] |= USB_PORT_STAT_C_ENABLE; |
| 800 | if (reg & EHCI_PS_OCC) |
| 801 | tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 802 | if (ctrl->portreset & (1 << port)) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 803 | tmpbuf[2] |= USB_PORT_STAT_C_RESET; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 804 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 805 | srcptr = tmpbuf; |
| 806 | srclen = 4; |
| 807 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 808 | case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 809 | reg = ehci_readl(status_reg); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 810 | reg &= ~EHCI_PS_CLEAR; |
| 811 | switch (le16_to_cpu(req->value)) { |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 812 | case USB_PORT_FEAT_ENABLE: |
| 813 | reg |= EHCI_PS_PE; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 814 | ehci_writel(status_reg, reg); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 815 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 816 | case USB_PORT_FEAT_POWER: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 817 | if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) { |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 818 | reg |= EHCI_PS_PP; |
| 819 | ehci_writel(status_reg, reg); |
| 820 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 821 | break; |
| 822 | case USB_PORT_FEAT_RESET: |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 823 | if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS && |
| 824 | !ehci_is_TDI() && |
| 825 | EHCI_PS_IS_LOWSPEED(reg)) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 826 | /* Low speed device, give up ownership. */ |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 827 | debug("port %d low speed --> companion\n", |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 828 | port - 1); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 829 | reg |= EHCI_PS_PO; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 830 | ehci_writel(status_reg, reg); |
Hans de Goede | 63f34ca | 2015-05-10 14:10:16 +0200 | [diff] [blame] | 831 | return -ENXIO; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 832 | } else { |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 833 | int ret; |
| 834 | |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 835 | reg |= EHCI_PS_PR; |
| 836 | reg &= ~EHCI_PS_PE; |
| 837 | ehci_writel(status_reg, reg); |
| 838 | /* |
| 839 | * caller must wait, then call GetPortStatus |
| 840 | * usb 2.0 specification say 50 ms resets on |
| 841 | * root |
| 842 | */ |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 843 | ctrl->ops.powerup_fixup(ctrl, status_reg, ®); |
Marek Vasut | 0973477 | 2011-07-11 02:37:01 +0200 | [diff] [blame] | 844 | |
Chris Zhang | fddf6d6 | 2010-01-06 13:34:04 -0800 | [diff] [blame] | 845 | ehci_writel(status_reg, reg & ~EHCI_PS_PR); |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 846 | /* |
| 847 | * A host controller must terminate the reset |
| 848 | * and stabilize the state of the port within |
| 849 | * 2 milliseconds |
| 850 | */ |
| 851 | ret = handshake(status_reg, EHCI_PS_PR, 0, |
| 852 | 2 * 1000); |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 853 | if (!ret) { |
| 854 | reg = ehci_readl(status_reg); |
| 855 | if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) |
| 856 | == EHCI_PS_CS && !ehci_is_TDI()) { |
| 857 | debug("port %d full speed --> companion\n", port - 1); |
| 858 | reg &= ~EHCI_PS_CLEAR; |
| 859 | reg |= EHCI_PS_PO; |
| 860 | ehci_writel(status_reg, reg); |
Hans de Goede | 63f34ca | 2015-05-10 14:10:16 +0200 | [diff] [blame] | 861 | return -ENXIO; |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 862 | } else { |
| 863 | ctrl->portreset |= 1 << port; |
| 864 | } |
| 865 | } else { |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 866 | printf("port(%d) reset error\n", |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 867 | port - 1); |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 868 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 869 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 870 | break; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 871 | case USB_PORT_FEAT_TEST: |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 872 | ehci_shutdown(ctrl); |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 873 | reg &= ~(0xf << 16); |
| 874 | reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16; |
| 875 | ehci_writel(status_reg, reg); |
| 876 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 877 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 878 | debug("unknown feature %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 879 | goto unknown; |
| 880 | } |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 881 | /* unblock posted writes */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 882 | (void) ehci_readl(&ctrl->hcor->or_usbcmd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 883 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 884 | case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 885 | reg = ehci_readl(status_reg); |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 886 | reg &= ~EHCI_PS_CLEAR; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 887 | switch (le16_to_cpu(req->value)) { |
| 888 | case USB_PORT_FEAT_ENABLE: |
| 889 | reg &= ~EHCI_PS_PE; |
| 890 | break; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 891 | case USB_PORT_FEAT_C_ENABLE: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 892 | reg |= EHCI_PS_PE; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 893 | break; |
| 894 | case USB_PORT_FEAT_POWER: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 895 | if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 896 | reg &= ~EHCI_PS_PP; |
| 897 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 898 | case USB_PORT_FEAT_C_CONNECTION: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 899 | reg |= EHCI_PS_CSC; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 900 | break; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 901 | case USB_PORT_FEAT_OVER_CURRENT: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 902 | reg |= EHCI_PS_OCC; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 903 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 904 | case USB_PORT_FEAT_C_RESET: |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 905 | ctrl->portreset &= ~(1 << port); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 906 | break; |
| 907 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 908 | debug("unknown feature %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 909 | goto unknown; |
| 910 | } |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 911 | ehci_writel(status_reg, reg); |
| 912 | /* unblock posted write */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 913 | (void) ehci_readl(&ctrl->hcor->or_usbcmd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 914 | break; |
| 915 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 916 | debug("Unknown request\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 917 | goto unknown; |
| 918 | } |
| 919 | |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 920 | mdelay(1); |
Masahiro Yamada | db20464 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 921 | len = min3(srclen, (int)le16_to_cpu(req->length), length); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 922 | if (srcptr != NULL && len > 0) |
| 923 | memcpy(buffer, srcptr, len); |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 924 | else |
| 925 | debug("Len is 0\n"); |
| 926 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 927 | dev->act_len = len; |
| 928 | dev->status = 0; |
| 929 | return 0; |
| 930 | |
| 931 | unknown: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 932 | debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n", |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 933 | req->requesttype, req->request, le16_to_cpu(req->value), |
| 934 | le16_to_cpu(req->index), le16_to_cpu(req->length)); |
| 935 | |
| 936 | dev->act_len = 0; |
| 937 | dev->status = USB_ST_STALLED; |
| 938 | return -1; |
| 939 | } |
| 940 | |
Masahiro Yamada | 6d8e433 | 2017-06-22 16:35:14 +0900 | [diff] [blame] | 941 | static const struct ehci_ops default_ehci_ops = { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 942 | .set_usb_mode = ehci_set_usbmode, |
| 943 | .get_port_speed = ehci_get_port_speed, |
| 944 | .powerup_fixup = ehci_powerup_fixup, |
| 945 | .get_portsc_register = ehci_get_portsc_register, |
| 946 | }; |
| 947 | |
| 948 | static void ehci_setup_ops(struct ehci_ctrl *ctrl, const struct ehci_ops *ops) |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 949 | { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 950 | if (!ops) { |
| 951 | ctrl->ops = default_ehci_ops; |
| 952 | } else { |
| 953 | ctrl->ops = *ops; |
| 954 | if (!ctrl->ops.set_usb_mode) |
| 955 | ctrl->ops.set_usb_mode = ehci_set_usbmode; |
| 956 | if (!ctrl->ops.get_port_speed) |
| 957 | ctrl->ops.get_port_speed = ehci_get_port_speed; |
| 958 | if (!ctrl->ops.powerup_fixup) |
| 959 | ctrl->ops.powerup_fixup = ehci_powerup_fixup; |
| 960 | if (!ctrl->ops.get_portsc_register) |
| 961 | ctrl->ops.get_portsc_register = |
| 962 | ehci_get_portsc_register; |
| 963 | } |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 964 | } |
| 965 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 966 | #ifndef CONFIG_DM_USB |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 967 | void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops) |
| 968 | { |
| 969 | struct ehci_ctrl *ctrl = &ehcic[index]; |
| 970 | |
| 971 | ctrl->priv = priv; |
| 972 | ehci_setup_ops(ctrl, ops); |
| 973 | } |
| 974 | |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 975 | void *ehci_get_controller_priv(int index) |
| 976 | { |
| 977 | return ehcic[index].priv; |
| 978 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 979 | #endif |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 980 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 981 | static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 982 | { |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 983 | struct QH *qh_list; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 984 | struct QH *periodic; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 985 | uint32_t reg; |
| 986 | uint32_t cmd; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 987 | int i; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 988 | |
Vincent Palatin | 0d6f77c | 2012-12-12 17:55:22 -0800 | [diff] [blame] | 989 | /* Set the high address word (aka segment) for 64-bit controller */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 990 | if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1) |
| 991 | ehci_writel(&ctrl->hcor->or_ctrldssegment, 0); |
Stefan Roese | 2e98fc7 | 2009-01-21 17:12:10 +0100 | [diff] [blame] | 992 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 993 | qh_list = &ctrl->qh_list; |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 994 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 995 | /* Set head of reclaim list */ |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 996 | memset(qh_list, 0, sizeof(*qh_list)); |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 997 | qh_list->qh_link = cpu_to_hc32(virt_to_phys(qh_list) | QH_LINK_TYPE_QH); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 998 | qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) | |
| 999 | QH_ENDPT1_EPS(USB_SPEED_HIGH)); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 1000 | qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1001 | qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 1002 | qh_list->qh_overlay.qt_token = |
| 1003 | cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1004 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1005 | flush_dcache_range((unsigned long)qh_list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1006 | ALIGN_END_ADDR(struct QH, qh_list, 1)); |
| 1007 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1008 | /* Set async. queue head pointer. */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 1009 | ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1010 | |
| 1011 | /* |
| 1012 | * Set up periodic list |
| 1013 | * Step 1: Parent QH for all periodic transfers. |
| 1014 | */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1015 | ctrl->periodic_schedules = 0; |
| 1016 | periodic = &ctrl->periodic_queue; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1017 | memset(periodic, 0, sizeof(*periodic)); |
| 1018 | periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE); |
| 1019 | periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1020 | periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1021 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1022 | flush_dcache_range((unsigned long)periodic, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1023 | ALIGN_END_ADDR(struct QH, periodic, 1)); |
| 1024 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1025 | /* |
| 1026 | * Step 2: Setup frame-list: Every microframe, USB tries the same list. |
| 1027 | * In particular, device specifications on polling frequency |
| 1028 | * are disregarded. Keyboards seem to send NAK/NYet reliably |
| 1029 | * when polled with an empty buffer. |
| 1030 | * |
| 1031 | * Split Transactions will be spread across microframes using |
| 1032 | * S-mask and C-mask. |
| 1033 | */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1034 | if (ctrl->periodic_list == NULL) |
| 1035 | ctrl->periodic_list = memalign(4096, 1024 * 4); |
Nikita Kiryanov | 2f13e44 | 2013-07-29 13:27:40 +0300 | [diff] [blame] | 1036 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1037 | if (!ctrl->periodic_list) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1038 | return -ENOMEM; |
| 1039 | for (i = 0; i < 1024; i++) { |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1040 | ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1041 | | QH_LINK_TYPE_QH); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1042 | } |
| 1043 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1044 | flush_dcache_range((unsigned long)ctrl->periodic_list, |
| 1045 | ALIGN_END_ADDR(uint32_t, ctrl->periodic_list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1046 | 1024)); |
| 1047 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1048 | /* Set periodic list base address */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1049 | ehci_writel(&ctrl->hcor->or_periodiclistbase, |
| 1050 | (unsigned long)ctrl->periodic_list); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1051 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1052 | reg = ehci_readl(&ctrl->hccr->cr_hcsparams); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1053 | descriptor.hub.bNbrPorts = HCS_N_PORTS(reg); |
Lucas Stach | f5b3408 | 2012-09-28 00:26:19 +0200 | [diff] [blame] | 1054 | debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1055 | /* Port Indicators */ |
| 1056 | if (HCS_INDICATOR(reg)) |
Lucas Stach | 835e11e | 2012-09-06 08:00:13 +0200 | [diff] [blame] | 1057 | put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) |
| 1058 | | 0x80, &descriptor.hub.wHubCharacteristics); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1059 | /* Port Power Control */ |
| 1060 | if (HCS_PPC(reg)) |
Lucas Stach | 835e11e | 2012-09-06 08:00:13 +0200 | [diff] [blame] | 1061 | put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) |
| 1062 | | 0x01, &descriptor.hub.wHubCharacteristics); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1063 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1064 | /* Start the host controller. */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1065 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Wolfgang Denk | fb718e1 | 2009-02-12 00:08:39 +0100 | [diff] [blame] | 1066 | /* |
| 1067 | * Philips, Intel, and maybe others need CMD_RUN before the |
| 1068 | * root hub will detect new devices (why?); NEC doesn't |
| 1069 | */ |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1070 | cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET); |
| 1071 | cmd |= CMD_RUN; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1072 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1073 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1074 | if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) { |
| 1075 | /* take control over the ports */ |
| 1076 | cmd = ehci_readl(&ctrl->hcor->or_configflag); |
| 1077 | cmd |= FLAG_CF; |
| 1078 | ehci_writel(&ctrl->hcor->or_configflag, cmd); |
| 1079 | } |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 1080 | |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1081 | /* unblock posted write */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1082 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 1083 | mdelay(5); |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1084 | reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase)); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1085 | printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1086 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1087 | return 0; |
| 1088 | } |
| 1089 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1090 | #ifndef CONFIG_DM_USB |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1091 | int usb_lowlevel_stop(int index) |
| 1092 | { |
| 1093 | ehci_shutdown(&ehcic[index]); |
| 1094 | return ehci_hcd_stop(index); |
| 1095 | } |
| 1096 | |
| 1097 | int usb_lowlevel_init(int index, enum usb_init_type init, void **controller) |
| 1098 | { |
| 1099 | struct ehci_ctrl *ctrl = &ehcic[index]; |
| 1100 | uint tweaks = 0; |
| 1101 | int rc; |
| 1102 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 1103 | /** |
| 1104 | * Set ops to default_ehci_ops, ehci_hcd_init should call |
| 1105 | * ehci_set_controller_priv to change any of these function pointers. |
| 1106 | */ |
| 1107 | ctrl->ops = default_ehci_ops; |
| 1108 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1109 | rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor); |
| 1110 | if (rc) |
| 1111 | return rc; |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1112 | if (!ctrl->hccr || !ctrl->hcor) |
| 1113 | return -1; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1114 | if (init == USB_INIT_DEVICE) |
| 1115 | goto done; |
| 1116 | |
| 1117 | /* EHCI spec section 4.1 */ |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 1118 | if (ehci_reset(ctrl)) |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1119 | return -1; |
| 1120 | |
| 1121 | #if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET) |
| 1122 | rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor); |
| 1123 | if (rc) |
| 1124 | return rc; |
| 1125 | #endif |
| 1126 | #ifdef CONFIG_USB_EHCI_FARADAY |
| 1127 | tweaks |= EHCI_TWEAK_NO_INIT_CF; |
| 1128 | #endif |
| 1129 | rc = ehci_common_init(ctrl, tweaks); |
| 1130 | if (rc) |
| 1131 | return rc; |
| 1132 | |
| 1133 | ctrl->rootdev = 0; |
Troy Kisky | 7d6bbb9 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 1134 | done: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 1135 | *controller = &ehcic[index]; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1136 | return 0; |
| 1137 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1138 | #endif |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1139 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1140 | static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 1141 | void *buffer, int length) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1142 | { |
| 1143 | |
| 1144 | if (usb_pipetype(pipe) != PIPE_BULK) { |
| 1145 | debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe)); |
| 1146 | return -1; |
| 1147 | } |
| 1148 | return ehci_submit_async(dev, pipe, buffer, length, NULL); |
| 1149 | } |
| 1150 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1151 | static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe, |
| 1152 | void *buffer, int length, |
| 1153 | struct devrequest *setup) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1154 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1155 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1156 | |
| 1157 | if (usb_pipetype(pipe) != PIPE_CONTROL) { |
| 1158 | debug("non-control pipe (type=%lu)", usb_pipetype(pipe)); |
| 1159 | return -1; |
| 1160 | } |
| 1161 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 1162 | if (usb_pipedevice(pipe) == ctrl->rootdev) { |
| 1163 | if (!ctrl->rootdev) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1164 | dev->speed = USB_SPEED_HIGH; |
| 1165 | return ehci_submit_root(dev, pipe, buffer, length, setup); |
| 1166 | } |
| 1167 | return ehci_submit_async(dev, pipe, buffer, length, setup); |
| 1168 | } |
| 1169 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1170 | struct int_queue { |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1171 | int elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1172 | unsigned long pipe; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1173 | struct QH *first; |
| 1174 | struct QH *current; |
| 1175 | struct QH *last; |
| 1176 | struct qTD *tds; |
| 1177 | }; |
| 1178 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1179 | #define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1180 | |
| 1181 | static int |
| 1182 | enable_periodic(struct ehci_ctrl *ctrl) |
| 1183 | { |
| 1184 | uint32_t cmd; |
| 1185 | struct ehci_hcor *hcor = ctrl->hcor; |
| 1186 | int ret; |
| 1187 | |
| 1188 | cmd = ehci_readl(&hcor->or_usbcmd); |
| 1189 | cmd |= CMD_PSE; |
| 1190 | ehci_writel(&hcor->or_usbcmd, cmd); |
| 1191 | |
| 1192 | ret = handshake((uint32_t *)&hcor->or_usbsts, |
| 1193 | STS_PSS, STS_PSS, 100 * 1000); |
| 1194 | if (ret < 0) { |
| 1195 | printf("EHCI failed: timeout when enabling periodic list\n"); |
| 1196 | return -ETIMEDOUT; |
| 1197 | } |
| 1198 | udelay(1000); |
| 1199 | return 0; |
| 1200 | } |
| 1201 | |
| 1202 | static int |
| 1203 | disable_periodic(struct ehci_ctrl *ctrl) |
| 1204 | { |
| 1205 | uint32_t cmd; |
| 1206 | struct ehci_hcor *hcor = ctrl->hcor; |
| 1207 | int ret; |
| 1208 | |
| 1209 | cmd = ehci_readl(&hcor->or_usbcmd); |
| 1210 | cmd &= ~CMD_PSE; |
| 1211 | ehci_writel(&hcor->or_usbcmd, cmd); |
| 1212 | |
| 1213 | ret = handshake((uint32_t *)&hcor->or_usbsts, |
| 1214 | STS_PSS, 0, 100 * 1000); |
| 1215 | if (ret < 0) { |
| 1216 | printf("EHCI failed: timeout when disabling periodic list\n"); |
| 1217 | return -ETIMEDOUT; |
| 1218 | } |
| 1219 | return 0; |
| 1220 | } |
| 1221 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1222 | static struct int_queue *_ehci_create_int_queue(struct usb_device *dev, |
| 1223 | unsigned long pipe, int queuesize, int elementsize, |
| 1224 | void *buffer, int interval) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1225 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1226 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1227 | struct int_queue *result = NULL; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1228 | uint32_t i, toggle; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1229 | |
Hans de Goede | 7f7cb73 | 2014-09-24 14:06:04 +0200 | [diff] [blame] | 1230 | /* |
| 1231 | * Interrupt transfers requiring several transactions are not supported |
| 1232 | * because bInterval is ignored. |
| 1233 | * |
| 1234 | * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2 |
| 1235 | * <= PKT_ALIGN if several qTDs are required, while the USB |
| 1236 | * specification does not constrain this for interrupt transfers. That |
| 1237 | * means that ehci_submit_async() would support interrupt transfers |
| 1238 | * requiring several transactions only as long as the transfer size does |
| 1239 | * not require more than a single qTD. |
| 1240 | */ |
| 1241 | if (elementsize > usb_maxpacket(dev, pipe)) { |
| 1242 | printf("%s: xfers requiring several transactions are not supported.\n", |
| 1243 | __func__); |
| 1244 | return NULL; |
| 1245 | } |
| 1246 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1247 | debug("Enter create_int_queue\n"); |
| 1248 | if (usb_pipetype(pipe) != PIPE_INTERRUPT) { |
| 1249 | debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe)); |
| 1250 | return NULL; |
| 1251 | } |
| 1252 | |
| 1253 | /* limit to 4 full pages worth of data - |
| 1254 | * we can safely fit them in a single TD, |
| 1255 | * no matter the alignment |
| 1256 | */ |
| 1257 | if (elementsize >= 16384) { |
| 1258 | debug("too large elements for interrupt transfers\n"); |
| 1259 | return NULL; |
| 1260 | } |
| 1261 | |
| 1262 | result = malloc(sizeof(*result)); |
| 1263 | if (!result) { |
| 1264 | debug("ehci intr queue: out of memory\n"); |
| 1265 | goto fail1; |
| 1266 | } |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1267 | result->elementsize = elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1268 | result->pipe = pipe; |
Stephen Warren | d7fe61d | 2014-02-06 13:13:06 -0700 | [diff] [blame] | 1269 | result->first = memalign(USB_DMA_MINALIGN, |
| 1270 | sizeof(struct QH) * queuesize); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1271 | if (!result->first) { |
| 1272 | debug("ehci intr queue: out of memory\n"); |
| 1273 | goto fail2; |
| 1274 | } |
| 1275 | result->current = result->first; |
| 1276 | result->last = result->first + queuesize - 1; |
Stephen Warren | d7fe61d | 2014-02-06 13:13:06 -0700 | [diff] [blame] | 1277 | result->tds = memalign(USB_DMA_MINALIGN, |
| 1278 | sizeof(struct qTD) * queuesize); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1279 | if (!result->tds) { |
| 1280 | debug("ehci intr queue: out of memory\n"); |
| 1281 | goto fail3; |
| 1282 | } |
| 1283 | memset(result->first, 0, sizeof(struct QH) * queuesize); |
| 1284 | memset(result->tds, 0, sizeof(struct qTD) * queuesize); |
| 1285 | |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1286 | toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
| 1287 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1288 | for (i = 0; i < queuesize; i++) { |
| 1289 | struct QH *qh = result->first + i; |
| 1290 | struct qTD *td = result->tds + i; |
| 1291 | void **buf = &qh->buffer; |
| 1292 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1293 | qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1294 | if (i == queuesize - 1) |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1295 | qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1296 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1297 | qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td); |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1298 | qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1299 | qh->qh_endpt1 = |
| 1300 | cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */ |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1301 | (usb_maxpacket(dev, pipe) << 16) | /* MPS */ |
| 1302 | (1 << 14) | |
| 1303 | QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) | |
| 1304 | (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1305 | (usb_pipedevice(pipe) << 0)); |
| 1306 | qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */ |
| 1307 | (1 << 0)); /* S-mask: microframe 0 */ |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1308 | if (dev->speed == USB_SPEED_LOW || |
| 1309 | dev->speed == USB_SPEED_FULL) { |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 1310 | /* C-mask: microframes 2-4 */ |
| 1311 | qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1312 | } |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 1313 | ehci_update_endpt2_dev_n_port(dev, qh); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1314 | |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1315 | td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1316 | td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1317 | debug("communication direction is '%s'\n", |
| 1318 | usb_pipein(pipe) ? "in" : "out"); |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1319 | td->qt_token = cpu_to_hc32( |
| 1320 | QT_TOKEN_DT(toggle) | |
| 1321 | (elementsize << 16) | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1322 | ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1323 | 0x80); /* active */ |
| 1324 | td->qt_buffer[0] = |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1325 | cpu_to_hc32((unsigned long)buffer + i * elementsize); |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1326 | td->qt_buffer[1] = |
| 1327 | cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff); |
| 1328 | td->qt_buffer[2] = |
| 1329 | cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff); |
| 1330 | td->qt_buffer[3] = |
| 1331 | cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff); |
| 1332 | td->qt_buffer[4] = |
| 1333 | cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1334 | |
| 1335 | *buf = buffer + i * elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1336 | toggle ^= 1; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1339 | flush_dcache_range((unsigned long)buffer, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1340 | ALIGN_END_ADDR(char, buffer, |
| 1341 | queuesize * elementsize)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1342 | flush_dcache_range((unsigned long)result->first, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1343 | ALIGN_END_ADDR(struct QH, result->first, |
| 1344 | queuesize)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1345 | flush_dcache_range((unsigned long)result->tds, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1346 | ALIGN_END_ADDR(struct qTD, result->tds, |
| 1347 | queuesize)); |
| 1348 | |
Hans de Goede | 8ba55ed | 2014-09-24 14:06:03 +0200 | [diff] [blame] | 1349 | if (ctrl->periodic_schedules > 0) { |
| 1350 | if (disable_periodic(ctrl) < 0) { |
| 1351 | debug("FATAL: periodic should never fail, but did"); |
| 1352 | goto fail3; |
| 1353 | } |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | /* hook up to periodic list */ |
| 1357 | struct QH *list = &ctrl->periodic_queue; |
| 1358 | result->last->qh_link = list->qh_link; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1359 | list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1360 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1361 | flush_dcache_range((unsigned long)result->last, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1362 | ALIGN_END_ADDR(struct QH, result->last, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1363 | flush_dcache_range((unsigned long)list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1364 | ALIGN_END_ADDR(struct QH, list, 1)); |
| 1365 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1366 | if (enable_periodic(ctrl) < 0) { |
| 1367 | debug("FATAL: periodic should never fail, but did"); |
| 1368 | goto fail3; |
| 1369 | } |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1370 | ctrl->periodic_schedules++; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1371 | |
| 1372 | debug("Exit create_int_queue\n"); |
| 1373 | return result; |
| 1374 | fail3: |
| 1375 | if (result->tds) |
| 1376 | free(result->tds); |
| 1377 | fail2: |
| 1378 | if (result->first) |
| 1379 | free(result->first); |
| 1380 | if (result) |
| 1381 | free(result); |
| 1382 | fail1: |
| 1383 | return NULL; |
| 1384 | } |
| 1385 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1386 | static void *_ehci_poll_int_queue(struct usb_device *dev, |
| 1387 | struct int_queue *queue) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1388 | { |
| 1389 | struct QH *cur = queue->current; |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1390 | struct qTD *cur_td; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1391 | uint32_t token, toggle; |
| 1392 | unsigned long pipe = queue->pipe; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1393 | |
| 1394 | /* depleted queue */ |
| 1395 | if (cur == NULL) { |
| 1396 | debug("Exit poll_int_queue with completed queue\n"); |
| 1397 | return NULL; |
| 1398 | } |
| 1399 | /* still active */ |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1400 | cur_td = &queue->tds[queue->current - queue->first]; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1401 | invalidate_dcache_range((unsigned long)cur_td, |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1402 | ALIGN_END_ADDR(struct qTD, cur_td, 1)); |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1403 | token = hc32_to_cpu(cur_td->qt_token); |
| 1404 | if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) { |
| 1405 | debug("Exit poll_int_queue with no completed intr transfer. token is %x\n", token); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1406 | return NULL; |
| 1407 | } |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1408 | |
| 1409 | toggle = QT_TOKEN_GET_DT(token); |
| 1410 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle); |
| 1411 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1412 | if (!(cur->qh_link & QH_LINK_TERMINATE)) |
| 1413 | queue->current++; |
| 1414 | else |
| 1415 | queue->current = NULL; |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1416 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1417 | invalidate_dcache_range((unsigned long)cur->buffer, |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1418 | ALIGN_END_ADDR(char, cur->buffer, |
| 1419 | queue->elementsize)); |
| 1420 | |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1421 | debug("Exit poll_int_queue with completed intr transfer. token is %x at %p (first at %p)\n", |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1422 | token, cur, queue->first); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1423 | return cur->buffer; |
| 1424 | } |
| 1425 | |
| 1426 | /* Do not free buffers associated with QHs, they're owned by someone else */ |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1427 | static int _ehci_destroy_int_queue(struct usb_device *dev, |
| 1428 | struct int_queue *queue) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1429 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1430 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1431 | int result = -1; |
| 1432 | unsigned long timeout; |
| 1433 | |
| 1434 | if (disable_periodic(ctrl) < 0) { |
| 1435 | debug("FATAL: periodic should never fail, but did"); |
| 1436 | goto out; |
| 1437 | } |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1438 | ctrl->periodic_schedules--; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1439 | |
| 1440 | struct QH *cur = &ctrl->periodic_queue; |
| 1441 | timeout = get_timer(0) + 500; /* abort after 500ms */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1442 | while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1443 | debug("considering %p, with qh_link %x\n", cur, cur->qh_link); |
| 1444 | if (NEXT_QH(cur) == queue->first) { |
| 1445 | debug("found candidate. removing from chain\n"); |
| 1446 | cur->qh_link = queue->last->qh_link; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1447 | flush_dcache_range((unsigned long)cur, |
Hans de Goede | 8e00cf6 | 2014-09-20 16:51:23 +0200 | [diff] [blame] | 1448 | ALIGN_END_ADDR(struct QH, cur, 1)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1449 | result = 0; |
| 1450 | break; |
| 1451 | } |
| 1452 | cur = NEXT_QH(cur); |
| 1453 | if (get_timer(0) > timeout) { |
| 1454 | printf("Timeout destroying interrupt endpoint queue\n"); |
| 1455 | result = -1; |
| 1456 | goto out; |
| 1457 | } |
| 1458 | } |
| 1459 | |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1460 | if (ctrl->periodic_schedules > 0) { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1461 | result = enable_periodic(ctrl); |
| 1462 | if (result < 0) |
| 1463 | debug("FATAL: periodic should never fail, but did"); |
| 1464 | } |
| 1465 | |
| 1466 | out: |
| 1467 | free(queue->tds); |
| 1468 | free(queue->first); |
| 1469 | free(queue); |
| 1470 | |
| 1471 | return result; |
| 1472 | } |
| 1473 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1474 | static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
| 1475 | void *buffer, int length, int interval) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1476 | { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1477 | void *backbuffer; |
| 1478 | struct int_queue *queue; |
| 1479 | unsigned long timeout; |
| 1480 | int result = 0, ret; |
| 1481 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1482 | debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d", |
| 1483 | dev, pipe, buffer, length, interval); |
Benoît Thébaudeau | 58c4dfb | 2012-08-09 23:50:44 +0200 | [diff] [blame] | 1484 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1485 | queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval); |
Hans de Goede | 7f7cb73 | 2014-09-24 14:06:04 +0200 | [diff] [blame] | 1486 | if (!queue) |
| 1487 | return -1; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1488 | |
| 1489 | timeout = get_timer(0) + USB_TIMEOUT_MS(pipe); |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1490 | while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1491 | if (get_timer(0) > timeout) { |
| 1492 | printf("Timeout poll on interrupt endpoint\n"); |
| 1493 | result = -ETIMEDOUT; |
| 1494 | break; |
| 1495 | } |
| 1496 | |
| 1497 | if (backbuffer != buffer) { |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1498 | debug("got wrong buffer back (%p instead of %p)\n", |
| 1499 | backbuffer, buffer); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1500 | return -EINVAL; |
| 1501 | } |
| 1502 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1503 | ret = _ehci_destroy_int_queue(dev, queue); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1504 | if (ret < 0) |
| 1505 | return ret; |
| 1506 | |
| 1507 | /* everything worked out fine */ |
| 1508 | return result; |
Marek Vasut | 9b315fe | 2011-09-25 21:07:56 +0200 | [diff] [blame] | 1509 | } |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1510 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1511 | #ifndef CONFIG_DM_USB |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1512 | int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 1513 | void *buffer, int length) |
| 1514 | { |
| 1515 | return _ehci_submit_bulk_msg(dev, pipe, buffer, length); |
| 1516 | } |
| 1517 | |
| 1518 | int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
| 1519 | int length, struct devrequest *setup) |
| 1520 | { |
| 1521 | return _ehci_submit_control_msg(dev, pipe, buffer, length, setup); |
| 1522 | } |
| 1523 | |
| 1524 | int submit_int_msg(struct usb_device *dev, unsigned long pipe, |
| 1525 | void *buffer, int length, int interval) |
| 1526 | { |
| 1527 | return _ehci_submit_int_msg(dev, pipe, buffer, length, interval); |
| 1528 | } |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1529 | |
| 1530 | struct int_queue *create_int_queue(struct usb_device *dev, |
| 1531 | unsigned long pipe, int queuesize, int elementsize, |
| 1532 | void *buffer, int interval) |
| 1533 | { |
| 1534 | return _ehci_create_int_queue(dev, pipe, queuesize, elementsize, |
| 1535 | buffer, interval); |
| 1536 | } |
| 1537 | |
| 1538 | void *poll_int_queue(struct usb_device *dev, struct int_queue *queue) |
| 1539 | { |
| 1540 | return _ehci_poll_int_queue(dev, queue); |
| 1541 | } |
| 1542 | |
| 1543 | int destroy_int_queue(struct usb_device *dev, struct int_queue *queue) |
| 1544 | { |
| 1545 | return _ehci_destroy_int_queue(dev, queue); |
| 1546 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1547 | #endif |
| 1548 | |
| 1549 | #ifdef CONFIG_DM_USB |
| 1550 | static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev, |
| 1551 | unsigned long pipe, void *buffer, int length, |
| 1552 | struct devrequest *setup) |
| 1553 | { |
| 1554 | debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__, |
| 1555 | dev->name, udev, udev->dev->name, udev->portnr); |
| 1556 | |
| 1557 | return _ehci_submit_control_msg(udev, pipe, buffer, length, setup); |
| 1558 | } |
| 1559 | |
| 1560 | static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev, |
| 1561 | unsigned long pipe, void *buffer, int length) |
| 1562 | { |
| 1563 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1564 | return _ehci_submit_bulk_msg(udev, pipe, buffer, length); |
| 1565 | } |
| 1566 | |
| 1567 | static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev, |
| 1568 | unsigned long pipe, void *buffer, int length, |
| 1569 | int interval) |
| 1570 | { |
| 1571 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1572 | return _ehci_submit_int_msg(udev, pipe, buffer, length, interval); |
| 1573 | } |
| 1574 | |
Hans de Goede | 0a7fa27 | 2015-05-10 14:10:18 +0200 | [diff] [blame] | 1575 | static struct int_queue *ehci_create_int_queue(struct udevice *dev, |
| 1576 | struct usb_device *udev, unsigned long pipe, int queuesize, |
| 1577 | int elementsize, void *buffer, int interval) |
| 1578 | { |
| 1579 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1580 | return _ehci_create_int_queue(udev, pipe, queuesize, elementsize, |
| 1581 | buffer, interval); |
| 1582 | } |
| 1583 | |
| 1584 | static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev, |
| 1585 | struct int_queue *queue) |
| 1586 | { |
| 1587 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1588 | return _ehci_poll_int_queue(udev, queue); |
| 1589 | } |
| 1590 | |
| 1591 | static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev, |
| 1592 | struct int_queue *queue) |
| 1593 | { |
| 1594 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1595 | return _ehci_destroy_int_queue(udev, queue); |
| 1596 | } |
| 1597 | |
Bin Meng | 0441b87 | 2017-09-07 06:13:19 -0700 | [diff] [blame] | 1598 | static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size) |
| 1599 | { |
| 1600 | /* |
| 1601 | * EHCD can handle any transfer length as long as there is enough |
| 1602 | * free heap space left, hence set the theoretical max number here. |
| 1603 | */ |
| 1604 | *size = SIZE_MAX; |
| 1605 | |
| 1606 | return 0; |
| 1607 | } |
| 1608 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1609 | int ehci_register(struct udevice *dev, struct ehci_hccr *hccr, |
| 1610 | struct ehci_hcor *hcor, const struct ehci_ops *ops, |
| 1611 | uint tweaks, enum usb_init_type init) |
| 1612 | { |
Hans de Goede | 76bc7f4 | 2015-05-05 11:54:35 +0200 | [diff] [blame] | 1613 | struct usb_bus_priv *priv = dev_get_uclass_priv(dev); |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1614 | struct ehci_ctrl *ctrl = dev_get_priv(dev); |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1615 | int ret = -1; |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1616 | |
| 1617 | debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__, |
| 1618 | dev->name, ctrl, hccr, hcor, init); |
| 1619 | |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1620 | if (!ctrl || !hccr || !hcor) |
| 1621 | goto err; |
| 1622 | |
Hans de Goede | 76bc7f4 | 2015-05-05 11:54:35 +0200 | [diff] [blame] | 1623 | priv->desc_before_addr = true; |
| 1624 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1625 | ehci_setup_ops(ctrl, ops); |
| 1626 | ctrl->hccr = hccr; |
| 1627 | ctrl->hcor = hcor; |
| 1628 | ctrl->priv = ctrl; |
| 1629 | |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1630 | ctrl->init = init; |
| 1631 | if (ctrl->init == USB_INIT_DEVICE) |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1632 | goto done; |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1633 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1634 | ret = ehci_reset(ctrl); |
| 1635 | if (ret) |
| 1636 | goto err; |
| 1637 | |
Mateusz Kulikowski | 3e13f39 | 2016-04-03 13:38:26 +0200 | [diff] [blame] | 1638 | if (ctrl->ops.init_after_reset) { |
| 1639 | ret = ctrl->ops.init_after_reset(ctrl); |
Mateusz Kulikowski | aab5a5a | 2016-03-31 23:12:17 +0200 | [diff] [blame] | 1640 | if (ret) |
| 1641 | goto err; |
| 1642 | } |
| 1643 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1644 | ret = ehci_common_init(ctrl, tweaks); |
| 1645 | if (ret) |
| 1646 | goto err; |
| 1647 | done: |
| 1648 | return 0; |
| 1649 | err: |
| 1650 | free(ctrl); |
| 1651 | debug("%s: failed, ret=%d\n", __func__, ret); |
| 1652 | return ret; |
| 1653 | } |
| 1654 | |
| 1655 | int ehci_deregister(struct udevice *dev) |
| 1656 | { |
| 1657 | struct ehci_ctrl *ctrl = dev_get_priv(dev); |
| 1658 | |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1659 | if (ctrl->init == USB_INIT_DEVICE) |
| 1660 | return 0; |
| 1661 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1662 | ehci_shutdown(ctrl); |
| 1663 | |
| 1664 | return 0; |
| 1665 | } |
| 1666 | |
| 1667 | struct dm_usb_ops ehci_usb_ops = { |
| 1668 | .control = ehci_submit_control_msg, |
| 1669 | .bulk = ehci_submit_bulk_msg, |
| 1670 | .interrupt = ehci_submit_int_msg, |
Hans de Goede | 0a7fa27 | 2015-05-10 14:10:18 +0200 | [diff] [blame] | 1671 | .create_int_queue = ehci_create_int_queue, |
| 1672 | .poll_int_queue = ehci_poll_int_queue, |
| 1673 | .destroy_int_queue = ehci_destroy_int_queue, |
Bin Meng | 0441b87 | 2017-09-07 06:13:19 -0700 | [diff] [blame] | 1674 | .get_max_xfer_size = ehci_get_max_xfer_size, |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1675 | }; |
| 1676 | |
| 1677 | #endif |
Marek Vasut | d9af6cd | 2018-08-08 14:29:55 +0200 | [diff] [blame^] | 1678 | |
| 1679 | #ifdef CONFIG_PHY |
| 1680 | int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index) |
| 1681 | { |
| 1682 | int ret; |
| 1683 | |
| 1684 | if (!phy) |
| 1685 | return 0; |
| 1686 | |
| 1687 | ret = generic_phy_get_by_index(dev, index, phy); |
| 1688 | if (ret) { |
| 1689 | if (ret != -ENOENT) { |
| 1690 | dev_err(dev, "failed to get usb phy\n"); |
| 1691 | return ret; |
| 1692 | } |
| 1693 | } else { |
| 1694 | ret = generic_phy_init(phy); |
| 1695 | if (ret) { |
| 1696 | dev_err(dev, "failed to init usb phy\n"); |
| 1697 | return ret; |
| 1698 | } |
| 1699 | |
| 1700 | ret = generic_phy_power_on(phy); |
| 1701 | if (ret) { |
| 1702 | dev_err(dev, "failed to power on usb phy\n"); |
| 1703 | return generic_phy_exit(phy); |
| 1704 | } |
| 1705 | } |
| 1706 | |
| 1707 | return 0; |
| 1708 | } |
| 1709 | |
| 1710 | int ehci_shutdown_phy(struct udevice *dev, struct phy *phy) |
| 1711 | { |
| 1712 | int ret = 0; |
| 1713 | |
| 1714 | if (!phy) |
| 1715 | return 0; |
| 1716 | |
| 1717 | if (generic_phy_valid(phy)) { |
| 1718 | ret = generic_phy_power_off(phy); |
| 1719 | if (ret) { |
| 1720 | dev_err(dev, "failed to power off usb phy\n"); |
| 1721 | return ret; |
| 1722 | } |
| 1723 | |
| 1724 | ret = generic_phy_exit(phy); |
| 1725 | if (ret) { |
| 1726 | dev_err(dev, "failed to power off usb phy\n"); |
| 1727 | return ret; |
| 1728 | } |
| 1729 | } |
| 1730 | |
| 1731 | return 0; |
| 1732 | } |
| 1733 | #else |
| 1734 | int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index) |
| 1735 | { |
| 1736 | return 0; |
| 1737 | } |
| 1738 | |
| 1739 | int ehci_shutdown_phy(struct udevice *dev, struct phy *phy) |
| 1740 | { |
| 1741 | return 0; |
| 1742 | } |
| 1743 | #endif |