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 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 33 | #if !CONFIG_IS_ENABLED(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 | { |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 114 | #if CONFIG_IS_ENABLED(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; |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 310 | uint32_t endpt, maxpacket, token, usbsts, qhtoken; |
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) | |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 412 | QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) | |
| 413 | QH_ENDPT1_DEVADDR(usb_pipedevice(pipe)); |
Chris Packham | 434f058 | 2018-10-04 20:03:53 +1300 | [diff] [blame] | 414 | |
| 415 | /* Force FS for fsl HS quirk */ |
| 416 | if (!ctrl->has_fsl_erratum_a005275) |
| 417 | endpt |= QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)); |
| 418 | else |
| 419 | endpt |= QH_ENDPT1_EPS(ehci_encode_speed(QH_FULL_SPEED)); |
| 420 | |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 421 | qh->qh_endpt1 = cpu_to_hc32(endpt); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 422 | 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] | 423 | qh->qh_endpt2 = cpu_to_hc32(endpt); |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 424 | ehci_update_endpt2_dev_n_port(dev, qh); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 425 | qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
Stephen Warren | 1907e5a | 2014-02-07 09:53:50 -0700 | [diff] [blame] | 426 | qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 427 | |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 428 | tdp = &qh->qh_overlay.qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 429 | if (req != NULL) { |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 430 | /* |
| 431 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 432 | * |
| 433 | * qt_next ................ 03-00 H |
| 434 | * qt_altnext ............. 07-04 H |
| 435 | * qt_token ............... 0B-08 H |
| 436 | * |
| 437 | * [ buffer, buffer_hi ] loaded with "req". |
| 438 | */ |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 439 | qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 440 | 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] | 441 | token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) | |
| 442 | QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) | |
| 443 | QT_TOKEN_PID(QT_TOKEN_PID_SETUP) | |
| 444 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 445 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 446 | if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) { |
| 447 | printf("unable to construct SETUP TD\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 448 | goto fail; |
| 449 | } |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 450 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 451 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 452 | tdp = &qtd[qtd_counter++].qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 453 | toggle = 1; |
| 454 | } |
| 455 | |
| 456 | if (length > 0 || req == NULL) { |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 457 | uint8_t *buf_ptr = buffer; |
| 458 | int left_length = length; |
| 459 | |
| 460 | do { |
| 461 | /* |
| 462 | * Determine the size of this qTD transfer. By default, |
| 463 | * QT_BUFFER_CNT full pages can be used. |
| 464 | */ |
| 465 | int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE; |
| 466 | /* |
| 467 | * However, if the input buffer is not page-aligned, the |
| 468 | * portion of the first page before the buffer start |
| 469 | * offset within that page is unusable. |
| 470 | */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 471 | xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 472 | /* |
| 473 | * In order to keep each packet within a qTD transfer, |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 474 | * align the qTD transfer size to PKT_ALIGN. |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 475 | */ |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 476 | xfr_bytes &= ~(PKT_ALIGN - 1); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 477 | /* |
| 478 | * This transfer may be shorter than the available qTD |
| 479 | * transfer size that has just been computed. |
| 480 | */ |
| 481 | xfr_bytes = min(xfr_bytes, left_length); |
| 482 | |
| 483 | /* |
| 484 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 485 | * |
| 486 | * qt_next ................ 03-00 H |
| 487 | * qt_altnext ............. 07-04 H |
| 488 | * qt_token ............... 0B-08 H |
| 489 | * |
| 490 | * [ buffer, buffer_hi ] loaded with "buffer". |
| 491 | */ |
| 492 | qtd[qtd_counter].qt_next = |
| 493 | cpu_to_hc32(QT_NEXT_TERMINATE); |
| 494 | qtd[qtd_counter].qt_altnext = |
| 495 | cpu_to_hc32(QT_NEXT_TERMINATE); |
| 496 | token = QT_TOKEN_DT(toggle) | |
| 497 | QT_TOKEN_TOTALBYTES(xfr_bytes) | |
| 498 | QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) | |
| 499 | QT_TOKEN_CERR(3) | |
| 500 | QT_TOKEN_PID(usb_pipein(pipe) ? |
| 501 | QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) | |
| 502 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
| 503 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
| 504 | if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr, |
| 505 | xfr_bytes)) { |
| 506 | printf("unable to construct DATA TD\n"); |
| 507 | goto fail; |
| 508 | } |
| 509 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 510 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 511 | tdp = &qtd[qtd_counter++].qt_next; |
Benoît Thébaudeau | 4e23df1 | 2012-08-10 18:27:23 +0200 | [diff] [blame] | 512 | /* |
| 513 | * Data toggle has to be adjusted since the qTD transfer |
| 514 | * size is not always an even multiple of |
| 515 | * wMaxPacketSize. |
| 516 | */ |
| 517 | if ((xfr_bytes / maxpacket) & 1) |
| 518 | toggle ^= 1; |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 519 | buf_ptr += xfr_bytes; |
| 520 | left_length -= xfr_bytes; |
| 521 | } while (left_length > 0); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | if (req != NULL) { |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 525 | /* |
| 526 | * Setup request qTD (3.5 in ehci-r10.pdf) |
| 527 | * |
| 528 | * qt_next ................ 03-00 H |
| 529 | * qt_altnext ............. 07-04 H |
| 530 | * qt_token ............... 0B-08 H |
| 531 | */ |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 532 | qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 533 | 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] | 534 | token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) | |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 535 | QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) | |
| 536 | QT_TOKEN_PID(usb_pipein(pipe) ? |
| 537 | QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) | |
| 538 | QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 539 | qtd[qtd_counter].qt_token = cpu_to_hc32(token); |
Marek Vasut | 285c8b3 | 2012-04-09 04:13:00 +0200 | [diff] [blame] | 540 | /* Update previous qTD! */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 541 | *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter])); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 542 | tdp = &qtd[qtd_counter++].qt_next; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 543 | } |
| 544 | |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 545 | 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] | 546 | |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 547 | /* Flush dcache */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 548 | flush_dcache_range((unsigned long)&ctrl->qh_list, |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 549 | ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 550 | flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1)); |
| 551 | flush_dcache_range((unsigned long)qtd, |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 552 | ALIGN_END_ADDR(struct qTD, qtd, qtd_count)); |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 553 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 554 | usbsts = ehci_readl(&ctrl->hcor->or_usbsts); |
| 555 | ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 556 | |
| 557 | /* Enable async. schedule. */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 558 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 559 | if (!(cmd & CMD_ASE)) { |
| 560 | cmd |= CMD_ASE; |
| 561 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 562 | |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 563 | ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS, |
| 564 | 100 * 1000); |
| 565 | if (ret < 0) { |
| 566 | printf("EHCI fail timeout STS_ASS set\n"); |
| 567 | goto fail; |
| 568 | } |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 569 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 570 | |
| 571 | /* Wait for TDs to be processed. */ |
| 572 | ts = get_timer(0); |
Marek Vasut | 4f66831 | 2012-04-08 23:32:05 +0200 | [diff] [blame] | 573 | vtd = &qtd[qtd_counter - 1]; |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 574 | timeout = USB_TIMEOUT_MS(pipe); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 575 | do { |
Stefan Roese | 25983c1 | 2009-01-21 17:12:19 +0100 | [diff] [blame] | 576 | /* Invalidate dcache */ |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 577 | invalidate_dcache_range((unsigned long)&ctrl->qh_list, |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 578 | ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 579 | invalidate_dcache_range((unsigned long)qh, |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 580 | ALIGN_END_ADDR(struct QH, qh, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 581 | invalidate_dcache_range((unsigned long)qtd, |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 582 | ALIGN_END_ADDR(struct qTD, qtd, qtd_count)); |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 583 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 584 | token = hc32_to_cpu(vtd->qt_token); |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 585 | if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 586 | break; |
Stefan Roese | 86b34cf | 2010-11-26 15:43:28 +0100 | [diff] [blame] | 587 | WATCHDOG_RESET(); |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 588 | } while (get_timer(ts) < timeout); |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 589 | qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token); |
| 590 | |
| 591 | ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH); |
| 592 | flush_dcache_range((unsigned long)&ctrl->qh_list, |
| 593 | ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1)); |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 594 | |
Ilya Yanok | fb11371 | 2012-07-15 04:43:49 +0000 | [diff] [blame] | 595 | /* |
| 596 | * Invalidate the memory area occupied by buffer |
| 597 | * Don't try to fix the buffer alignment, if it isn't properly |
| 598 | * aligned it's upper layer's fault so let invalidate_dcache_range() |
| 599 | * vow about it. But we have to fix the length as it's actual |
| 600 | * transfer length and can be unaligned. This is potentially |
| 601 | * dangerous operation, it's responsibility of the calling |
| 602 | * code to make sure enough space is reserved. |
| 603 | */ |
Dirk Behme | 78c7356 | 2017-11-17 15:28:36 +0100 | [diff] [blame] | 604 | if (buffer != NULL && length > 0) |
| 605 | invalidate_dcache_range((unsigned long)buffer, |
| 606 | ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN)); |
Marek Vasut | ff24dc3 | 2012-04-09 04:07:46 +0200 | [diff] [blame] | 607 | |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 608 | /* Check that the TD processing happened */ |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 609 | if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) |
Simon Glass | fd7f513 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 610 | printf("EHCI timed out on TD - token=%#x\n", token); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 611 | |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 612 | if (!(QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_ACTIVE)) { |
| 613 | debug("TOKEN=%#x\n", qhtoken); |
| 614 | switch (QT_TOKEN_GET_STATUS(qhtoken) & |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 615 | ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 616 | case 0: |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 617 | toggle = QT_TOKEN_GET_DT(qhtoken); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 618 | usb_settoggle(dev, usb_pipeendpoint(pipe), |
| 619 | usb_pipeout(pipe), toggle); |
| 620 | dev->status = 0; |
| 621 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 622 | case QT_TOKEN_STATUS_HALTED: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 623 | dev->status = USB_ST_STALLED; |
| 624 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 625 | case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR: |
| 626 | case QT_TOKEN_STATUS_DATBUFERR: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 627 | dev->status = USB_ST_BUF_ERR; |
| 628 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 629 | case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET: |
| 630 | case QT_TOKEN_STATUS_BABBLEDET: |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 631 | dev->status = USB_ST_BABBLE_DET; |
| 632 | break; |
| 633 | default: |
| 634 | dev->status = USB_ST_CRC_ERR; |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 635 | if (QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_HALTED) |
Anatolij Gustschin | e1e0931 | 2010-11-02 11:47:29 +0100 | [diff] [blame] | 636 | dev->status |= USB_ST_STALLED; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 637 | break; |
| 638 | } |
Marek Vasut | 569c2a5 | 2019-10-06 16:13:38 +0200 | [diff] [blame^] | 639 | dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(qhtoken); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 640 | } else { |
| 641 | dev->act_len = 0; |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 642 | #ifndef CONFIG_USB_EHCI_FARADAY |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 643 | debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n", |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 644 | dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts), |
| 645 | ehci_readl(&ctrl->hcor->or_portsc[0]), |
| 646 | ehci_readl(&ctrl->hcor->or_portsc[1])); |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 647 | #endif |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 648 | } |
| 649 | |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 650 | free(qtd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 651 | return (dev->status != USB_ST_NOT_PROC) ? 0 : -1; |
| 652 | |
| 653 | fail: |
Benoît Thébaudeau | b39f8b5 | 2012-08-10 18:22:32 +0200 | [diff] [blame] | 654 | free(qtd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 655 | return -1; |
| 656 | } |
| 657 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 658 | static int ehci_submit_root(struct usb_device *dev, unsigned long pipe, |
| 659 | void *buffer, int length, struct devrequest *req) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 660 | { |
| 661 | uint8_t tmpbuf[4]; |
| 662 | u16 typeReq; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 663 | void *srcptr = NULL; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 664 | int len, srclen; |
| 665 | uint32_t reg; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 666 | uint32_t *status_reg; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 667 | int port = le16_to_cpu(req->index) & 0xff; |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 668 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 669 | |
| 670 | srclen = 0; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 671 | |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 672 | debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n", |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 673 | req->request, req->request, |
| 674 | req->requesttype, req->requesttype, |
| 675 | le16_to_cpu(req->value), le16_to_cpu(req->index)); |
| 676 | |
Prafulla Wadaskar | 2281029 | 2009-07-17 19:56:30 +0530 | [diff] [blame] | 677 | typeReq = req->request | req->requesttype << 8; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 678 | |
Prafulla Wadaskar | 2281029 | 2009-07-17 19:56:30 +0530 | [diff] [blame] | 679 | switch (typeReq) { |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 680 | case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8): |
| 681 | case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
| 682 | case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 683 | status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1); |
Kuo-Jung Su | 6a656df | 2013-05-15 15:29:21 +0800 | [diff] [blame] | 684 | if (!status_reg) |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 685 | return -1; |
Kuo-Jung Su | 9930e9f | 2013-05-15 15:29:20 +0800 | [diff] [blame] | 686 | break; |
| 687 | default: |
| 688 | status_reg = NULL; |
| 689 | break; |
| 690 | } |
| 691 | |
| 692 | switch (typeReq) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 693 | case DeviceRequest | USB_REQ_GET_DESCRIPTOR: |
| 694 | switch (le16_to_cpu(req->value) >> 8) { |
| 695 | case USB_DT_DEVICE: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 696 | debug("USB_DT_DEVICE request\n"); |
| 697 | srcptr = &descriptor.device; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 698 | srclen = descriptor.device.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 699 | break; |
| 700 | case USB_DT_CONFIG: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 701 | debug("USB_DT_CONFIG config\n"); |
| 702 | srcptr = &descriptor.config; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 703 | srclen = descriptor.config.bLength + |
| 704 | descriptor.interface.bLength + |
| 705 | descriptor.endpoint.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 706 | break; |
| 707 | case USB_DT_STRING: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 708 | debug("USB_DT_STRING config\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 709 | switch (le16_to_cpu(req->value) & 0xff) { |
| 710 | case 0: /* Language */ |
| 711 | srcptr = "\4\3\1\0"; |
| 712 | srclen = 4; |
| 713 | break; |
| 714 | case 1: /* Vendor */ |
| 715 | srcptr = "\16\3u\0-\0b\0o\0o\0t\0"; |
| 716 | srclen = 14; |
| 717 | break; |
| 718 | case 2: /* Product */ |
| 719 | srcptr = "\52\3E\0H\0C\0I\0 " |
| 720 | "\0H\0o\0s\0t\0 " |
| 721 | "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0"; |
| 722 | srclen = 42; |
| 723 | break; |
| 724 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 725 | debug("unknown value DT_STRING %x\n", |
| 726 | le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 727 | goto unknown; |
| 728 | } |
| 729 | break; |
| 730 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 731 | debug("unknown value %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 732 | goto unknown; |
| 733 | } |
| 734 | break; |
| 735 | case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8): |
| 736 | switch (le16_to_cpu(req->value) >> 8) { |
| 737 | case USB_DT_HUB: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 738 | debug("USB_DT_HUB config\n"); |
| 739 | srcptr = &descriptor.hub; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 740 | srclen = descriptor.hub.bLength; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 741 | break; |
| 742 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 743 | debug("unknown value %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 744 | goto unknown; |
| 745 | } |
| 746 | break; |
| 747 | case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8): |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 748 | debug("USB_REQ_SET_ADDRESS\n"); |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 749 | ctrl->rootdev = le16_to_cpu(req->value); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 750 | break; |
| 751 | case DeviceOutRequest | USB_REQ_SET_CONFIGURATION: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 752 | debug("USB_REQ_SET_CONFIGURATION\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 753 | /* Nothing to do */ |
| 754 | break; |
| 755 | case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8): |
| 756 | tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */ |
| 757 | tmpbuf[1] = 0; |
| 758 | srcptr = tmpbuf; |
| 759 | srclen = 2; |
| 760 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 761 | case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8): |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 762 | memset(tmpbuf, 0, 4); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 763 | reg = ehci_readl(status_reg); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 764 | if (reg & EHCI_PS_CS) |
| 765 | tmpbuf[0] |= USB_PORT_STAT_CONNECTION; |
| 766 | if (reg & EHCI_PS_PE) |
| 767 | tmpbuf[0] |= USB_PORT_STAT_ENABLE; |
| 768 | if (reg & EHCI_PS_SUSP) |
| 769 | tmpbuf[0] |= USB_PORT_STAT_SUSPEND; |
| 770 | if (reg & EHCI_PS_OCA) |
| 771 | tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT; |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 772 | if (reg & EHCI_PS_PR) |
| 773 | tmpbuf[0] |= USB_PORT_STAT_RESET; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 774 | if (reg & EHCI_PS_PP) |
| 775 | tmpbuf[1] |= USB_PORT_STAT_POWER >> 8; |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 776 | |
| 777 | if (ehci_is_TDI()) { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 778 | switch (ctrl->ops.get_port_speed(ctrl, reg)) { |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 779 | case PORTSC_PSPD_FS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 780 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 781 | case PORTSC_PSPD_LS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 782 | tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8; |
| 783 | break; |
Benoît Thébaudeau | 458fb1e | 2012-08-10 18:22:11 +0200 | [diff] [blame] | 784 | case PORTSC_PSPD_HS: |
Stefan Roese | 497f184 | 2009-01-21 17:12:01 +0100 | [diff] [blame] | 785 | default: |
| 786 | tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8; |
| 787 | break; |
| 788 | } |
| 789 | } else { |
| 790 | tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8; |
| 791 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 792 | |
| 793 | if (reg & EHCI_PS_CSC) |
| 794 | tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION; |
| 795 | if (reg & EHCI_PS_PEC) |
| 796 | tmpbuf[2] |= USB_PORT_STAT_C_ENABLE; |
| 797 | if (reg & EHCI_PS_OCC) |
| 798 | tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 799 | if (ctrl->portreset & (1 << port)) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 800 | tmpbuf[2] |= USB_PORT_STAT_C_RESET; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 801 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 802 | srcptr = tmpbuf; |
| 803 | srclen = 4; |
| 804 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 805 | 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] | 806 | reg = ehci_readl(status_reg); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 807 | reg &= ~EHCI_PS_CLEAR; |
| 808 | switch (le16_to_cpu(req->value)) { |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 809 | case USB_PORT_FEAT_ENABLE: |
| 810 | reg |= EHCI_PS_PE; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 811 | ehci_writel(status_reg, reg); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 812 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 813 | case USB_PORT_FEAT_POWER: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 814 | if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) { |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 815 | reg |= EHCI_PS_PP; |
| 816 | ehci_writel(status_reg, reg); |
| 817 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 818 | break; |
| 819 | case USB_PORT_FEAT_RESET: |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 820 | if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS && |
| 821 | !ehci_is_TDI() && |
| 822 | EHCI_PS_IS_LOWSPEED(reg)) { |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 823 | /* Low speed device, give up ownership. */ |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 824 | debug("port %d low speed --> companion\n", |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 825 | port - 1); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 826 | reg |= EHCI_PS_PO; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 827 | ehci_writel(status_reg, reg); |
Hans de Goede | 63f34ca | 2015-05-10 14:10:16 +0200 | [diff] [blame] | 828 | return -ENXIO; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 829 | } else { |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 830 | int ret; |
| 831 | |
Chris Packham | 434f058 | 2018-10-04 20:03:53 +1300 | [diff] [blame] | 832 | /* Disable chirp for HS erratum */ |
| 833 | if (ctrl->has_fsl_erratum_a005275) |
| 834 | reg |= PORTSC_FSL_PFSC; |
| 835 | |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 836 | reg |= EHCI_PS_PR; |
| 837 | reg &= ~EHCI_PS_PE; |
| 838 | ehci_writel(status_reg, reg); |
| 839 | /* |
| 840 | * caller must wait, then call GetPortStatus |
| 841 | * usb 2.0 specification say 50 ms resets on |
| 842 | * root |
| 843 | */ |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 844 | ctrl->ops.powerup_fixup(ctrl, status_reg, ®); |
Marek Vasut | 0973477 | 2011-07-11 02:37:01 +0200 | [diff] [blame] | 845 | |
Chris Zhang | fddf6d6 | 2010-01-06 13:34:04 -0800 | [diff] [blame] | 846 | ehci_writel(status_reg, reg & ~EHCI_PS_PR); |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 847 | /* |
| 848 | * A host controller must terminate the reset |
| 849 | * and stabilize the state of the port within |
| 850 | * 2 milliseconds |
| 851 | */ |
| 852 | ret = handshake(status_reg, EHCI_PS_PR, 0, |
| 853 | 2 * 1000); |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 854 | if (!ret) { |
| 855 | reg = ehci_readl(status_reg); |
| 856 | if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) |
| 857 | == EHCI_PS_CS && !ehci_is_TDI()) { |
| 858 | debug("port %d full speed --> companion\n", port - 1); |
| 859 | reg &= ~EHCI_PS_CLEAR; |
| 860 | reg |= EHCI_PS_PO; |
| 861 | ehci_writel(status_reg, reg); |
Hans de Goede | 63f34ca | 2015-05-10 14:10:16 +0200 | [diff] [blame] | 862 | return -ENXIO; |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 863 | } else { |
| 864 | ctrl->portreset |= 1 << port; |
| 865 | } |
| 866 | } else { |
Sergei Shtylyov | 23dec68 | 2010-02-27 21:33:21 +0300 | [diff] [blame] | 867 | printf("port(%d) reset error\n", |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 868 | port - 1); |
Hans de Goede | b5b3ef2 | 2015-05-10 14:10:13 +0200 | [diff] [blame] | 869 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 870 | } |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 871 | break; |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 872 | case USB_PORT_FEAT_TEST: |
Julius Werner | 5c1a1ad | 2013-09-24 10:53:07 -0700 | [diff] [blame] | 873 | ehci_shutdown(ctrl); |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 874 | reg &= ~(0xf << 16); |
| 875 | reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16; |
| 876 | ehci_writel(status_reg, reg); |
| 877 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 878 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 879 | debug("unknown feature %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 880 | goto unknown; |
| 881 | } |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 882 | /* unblock posted writes */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 883 | (void) ehci_readl(&ctrl->hcor->or_usbcmd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 884 | break; |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 885 | 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] | 886 | reg = ehci_readl(status_reg); |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 887 | reg &= ~EHCI_PS_CLEAR; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 888 | switch (le16_to_cpu(req->value)) { |
| 889 | case USB_PORT_FEAT_ENABLE: |
| 890 | reg &= ~EHCI_PS_PE; |
| 891 | break; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 892 | case USB_PORT_FEAT_C_ENABLE: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 893 | reg |= EHCI_PS_PE; |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 894 | break; |
| 895 | case USB_PORT_FEAT_POWER: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 896 | if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 897 | reg &= ~EHCI_PS_PP; |
| 898 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 899 | case USB_PORT_FEAT_C_CONNECTION: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 900 | reg |= EHCI_PS_CSC; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 901 | break; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 902 | case USB_PORT_FEAT_OVER_CURRENT: |
Simon Glass | 0554ba5 | 2013-05-10 19:49:00 -0700 | [diff] [blame] | 903 | reg |= EHCI_PS_OCC; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 904 | break; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 905 | case USB_PORT_FEAT_C_RESET: |
Julius Werner | d404670 | 2013-02-28 18:08:40 +0000 | [diff] [blame] | 906 | ctrl->portreset &= ~(1 << port); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 907 | break; |
| 908 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 909 | debug("unknown feature %x\n", le16_to_cpu(req->value)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 910 | goto unknown; |
| 911 | } |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 912 | ehci_writel(status_reg, reg); |
| 913 | /* unblock posted write */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 914 | (void) ehci_readl(&ctrl->hcor->or_usbcmd); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 915 | break; |
| 916 | default: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 917 | debug("Unknown request\n"); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 918 | goto unknown; |
| 919 | } |
| 920 | |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 921 | mdelay(1); |
Masahiro Yamada | db20464 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 922 | len = min3(srclen, (int)le16_to_cpu(req->length), length); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 923 | if (srcptr != NULL && len > 0) |
| 924 | memcpy(buffer, srcptr, len); |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 925 | else |
| 926 | debug("Len is 0\n"); |
| 927 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 928 | dev->act_len = len; |
| 929 | dev->status = 0; |
| 930 | return 0; |
| 931 | |
| 932 | unknown: |
michael | 0a32610 | 2008-12-10 17:55:19 +0100 | [diff] [blame] | 933 | debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n", |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 934 | req->requesttype, req->request, le16_to_cpu(req->value), |
| 935 | le16_to_cpu(req->index), le16_to_cpu(req->length)); |
| 936 | |
| 937 | dev->act_len = 0; |
| 938 | dev->status = USB_ST_STALLED; |
| 939 | return -1; |
| 940 | } |
| 941 | |
Masahiro Yamada | 6d8e433 | 2017-06-22 16:35:14 +0900 | [diff] [blame] | 942 | static const struct ehci_ops default_ehci_ops = { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 943 | .set_usb_mode = ehci_set_usbmode, |
| 944 | .get_port_speed = ehci_get_port_speed, |
| 945 | .powerup_fixup = ehci_powerup_fixup, |
| 946 | .get_portsc_register = ehci_get_portsc_register, |
| 947 | }; |
| 948 | |
| 949 | 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] | 950 | { |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 951 | if (!ops) { |
| 952 | ctrl->ops = default_ehci_ops; |
| 953 | } else { |
| 954 | ctrl->ops = *ops; |
| 955 | if (!ctrl->ops.set_usb_mode) |
| 956 | ctrl->ops.set_usb_mode = ehci_set_usbmode; |
| 957 | if (!ctrl->ops.get_port_speed) |
| 958 | ctrl->ops.get_port_speed = ehci_get_port_speed; |
| 959 | if (!ctrl->ops.powerup_fixup) |
| 960 | ctrl->ops.powerup_fixup = ehci_powerup_fixup; |
| 961 | if (!ctrl->ops.get_portsc_register) |
| 962 | ctrl->ops.get_portsc_register = |
| 963 | ehci_get_portsc_register; |
| 964 | } |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 965 | } |
| 966 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 967 | #if !CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 968 | void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops) |
| 969 | { |
| 970 | struct ehci_ctrl *ctrl = &ehcic[index]; |
| 971 | |
| 972 | ctrl->priv = priv; |
| 973 | ehci_setup_ops(ctrl, ops); |
| 974 | } |
| 975 | |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 976 | void *ehci_get_controller_priv(int index) |
| 977 | { |
| 978 | return ehcic[index].priv; |
| 979 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 980 | #endif |
Simon Glass | 0851caa | 2015-03-25 12:22:19 -0600 | [diff] [blame] | 981 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 982 | static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 983 | { |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 984 | struct QH *qh_list; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 985 | struct QH *periodic; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 986 | uint32_t reg; |
| 987 | uint32_t cmd; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 988 | int i; |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 989 | |
Vincent Palatin | 0d6f77c | 2012-12-12 17:55:22 -0800 | [diff] [blame] | 990 | /* Set the high address word (aka segment) for 64-bit controller */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 991 | if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1) |
| 992 | ehci_writel(&ctrl->hcor->or_ctrldssegment, 0); |
Stefan Roese | 2e98fc7 | 2009-01-21 17:12:10 +0100 | [diff] [blame] | 993 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 994 | qh_list = &ctrl->qh_list; |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 995 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 996 | /* Set head of reclaim list */ |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 997 | memset(qh_list, 0, sizeof(*qh_list)); |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 998 | 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] | 999 | qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) | |
| 1000 | QH_ENDPT1_EPS(USB_SPEED_HIGH)); |
Tom Rini | 2cabcf7 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 1001 | qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1002 | 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] | 1003 | qh_list->qh_overlay.qt_token = |
| 1004 | cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED)); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1005 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1006 | flush_dcache_range((unsigned long)qh_list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1007 | ALIGN_END_ADDR(struct QH, qh_list, 1)); |
| 1008 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1009 | /* Set async. queue head pointer. */ |
Marek Vasut | df0b624 | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 1010 | ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1011 | |
| 1012 | /* |
| 1013 | * Set up periodic list |
| 1014 | * Step 1: Parent QH for all periodic transfers. |
| 1015 | */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1016 | ctrl->periodic_schedules = 0; |
| 1017 | periodic = &ctrl->periodic_queue; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1018 | memset(periodic, 0, sizeof(*periodic)); |
| 1019 | periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE); |
| 1020 | periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1021 | periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1022 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1023 | flush_dcache_range((unsigned long)periodic, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1024 | ALIGN_END_ADDR(struct QH, periodic, 1)); |
| 1025 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1026 | /* |
| 1027 | * Step 2: Setup frame-list: Every microframe, USB tries the same list. |
| 1028 | * In particular, device specifications on polling frequency |
| 1029 | * are disregarded. Keyboards seem to send NAK/NYet reliably |
| 1030 | * when polled with an empty buffer. |
| 1031 | * |
| 1032 | * Split Transactions will be spread across microframes using |
| 1033 | * S-mask and C-mask. |
| 1034 | */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1035 | if (ctrl->periodic_list == NULL) |
| 1036 | ctrl->periodic_list = memalign(4096, 1024 * 4); |
Nikita Kiryanov | 2f13e44 | 2013-07-29 13:27:40 +0300 | [diff] [blame] | 1037 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1038 | if (!ctrl->periodic_list) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1039 | return -ENOMEM; |
| 1040 | for (i = 0; i < 1024; i++) { |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1041 | ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1042 | | QH_LINK_TYPE_QH); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1045 | flush_dcache_range((unsigned long)ctrl->periodic_list, |
| 1046 | ALIGN_END_ADDR(uint32_t, ctrl->periodic_list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1047 | 1024)); |
| 1048 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1049 | /* Set periodic list base address */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1050 | ehci_writel(&ctrl->hcor->or_periodiclistbase, |
| 1051 | (unsigned long)ctrl->periodic_list); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1052 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1053 | reg = ehci_readl(&ctrl->hccr->cr_hcsparams); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1054 | descriptor.hub.bNbrPorts = HCS_N_PORTS(reg); |
Lucas Stach | f5b3408 | 2012-09-28 00:26:19 +0200 | [diff] [blame] | 1055 | debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1056 | /* Port Indicators */ |
| 1057 | if (HCS_INDICATOR(reg)) |
Lucas Stach | 835e11e | 2012-09-06 08:00:13 +0200 | [diff] [blame] | 1058 | put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) |
| 1059 | | 0x80, &descriptor.hub.wHubCharacteristics); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1060 | /* Port Power Control */ |
| 1061 | if (HCS_PPC(reg)) |
Lucas Stach | 835e11e | 2012-09-06 08:00:13 +0200 | [diff] [blame] | 1062 | put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) |
| 1063 | | 0x01, &descriptor.hub.wHubCharacteristics); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1064 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1065 | /* Start the host controller. */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1066 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Wolfgang Denk | fb718e1 | 2009-02-12 00:08:39 +0100 | [diff] [blame] | 1067 | /* |
| 1068 | * Philips, Intel, and maybe others need CMD_RUN before the |
| 1069 | * root hub will detect new devices (why?); NEC doesn't |
| 1070 | */ |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1071 | cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET); |
| 1072 | cmd |= CMD_RUN; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1073 | ehci_writel(&ctrl->hcor->or_usbcmd, cmd); |
michael | 0bf2a03 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 1074 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1075 | if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) { |
| 1076 | /* take control over the ports */ |
| 1077 | cmd = ehci_readl(&ctrl->hcor->or_configflag); |
| 1078 | cmd |= FLAG_CF; |
| 1079 | ehci_writel(&ctrl->hcor->or_configflag, cmd); |
| 1080 | } |
Kuo-Jung Su | b5d59de | 2013-05-15 15:29:23 +0800 | [diff] [blame] | 1081 | |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1082 | /* unblock posted write */ |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1083 | cmd = ehci_readl(&ctrl->hcor->or_usbcmd); |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 1084 | mdelay(5); |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1085 | reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase)); |
Remy Böhmer | 33e8748 | 2008-12-13 22:51:58 +0100 | [diff] [blame] | 1086 | printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1087 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1088 | return 0; |
| 1089 | } |
| 1090 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1091 | #if !CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1092 | int usb_lowlevel_stop(int index) |
| 1093 | { |
| 1094 | ehci_shutdown(&ehcic[index]); |
| 1095 | return ehci_hcd_stop(index); |
| 1096 | } |
| 1097 | |
| 1098 | int usb_lowlevel_init(int index, enum usb_init_type init, void **controller) |
| 1099 | { |
| 1100 | struct ehci_ctrl *ctrl = &ehcic[index]; |
| 1101 | uint tweaks = 0; |
| 1102 | int rc; |
| 1103 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 1104 | /** |
| 1105 | * Set ops to default_ehci_ops, ehci_hcd_init should call |
| 1106 | * ehci_set_controller_priv to change any of these function pointers. |
| 1107 | */ |
| 1108 | ctrl->ops = default_ehci_ops; |
| 1109 | |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1110 | rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor); |
| 1111 | if (rc) |
| 1112 | return rc; |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1113 | if (!ctrl->hccr || !ctrl->hcor) |
| 1114 | return -1; |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1115 | if (init == USB_INIT_DEVICE) |
| 1116 | goto done; |
| 1117 | |
| 1118 | /* EHCI spec section 4.1 */ |
Simon Glass | 302696b | 2015-03-25 12:22:28 -0600 | [diff] [blame] | 1119 | if (ehci_reset(ctrl)) |
Simon Glass | ccc40fd | 2015-03-25 12:22:26 -0600 | [diff] [blame] | 1120 | return -1; |
| 1121 | |
| 1122 | #if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET) |
| 1123 | rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor); |
| 1124 | if (rc) |
| 1125 | return rc; |
| 1126 | #endif |
| 1127 | #ifdef CONFIG_USB_EHCI_FARADAY |
| 1128 | tweaks |= EHCI_TWEAK_NO_INIT_CF; |
| 1129 | #endif |
| 1130 | rc = ehci_common_init(ctrl, tweaks); |
| 1131 | if (rc) |
| 1132 | return rc; |
| 1133 | |
| 1134 | ctrl->rootdev = 0; |
Troy Kisky | 7d6bbb9 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 1135 | done: |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 1136 | *controller = &ehcic[index]; |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1137 | return 0; |
| 1138 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1139 | #endif |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1140 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1141 | static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 1142 | void *buffer, int length) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1143 | { |
| 1144 | |
| 1145 | if (usb_pipetype(pipe) != PIPE_BULK) { |
| 1146 | debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe)); |
| 1147 | return -1; |
| 1148 | } |
| 1149 | return ehci_submit_async(dev, pipe, buffer, length, NULL); |
| 1150 | } |
| 1151 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1152 | static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe, |
| 1153 | void *buffer, int length, |
| 1154 | struct devrequest *setup) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1155 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1156 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1157 | |
| 1158 | if (usb_pipetype(pipe) != PIPE_CONTROL) { |
| 1159 | debug("non-control pipe (type=%lu)", usb_pipetype(pipe)); |
| 1160 | return -1; |
| 1161 | } |
| 1162 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 1163 | if (usb_pipedevice(pipe) == ctrl->rootdev) { |
| 1164 | if (!ctrl->rootdev) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1165 | dev->speed = USB_SPEED_HIGH; |
| 1166 | return ehci_submit_root(dev, pipe, buffer, length, setup); |
| 1167 | } |
| 1168 | return ehci_submit_async(dev, pipe, buffer, length, setup); |
| 1169 | } |
| 1170 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1171 | struct int_queue { |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1172 | int elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1173 | unsigned long pipe; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1174 | struct QH *first; |
| 1175 | struct QH *current; |
| 1176 | struct QH *last; |
| 1177 | struct qTD *tds; |
| 1178 | }; |
| 1179 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1180 | #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] | 1181 | |
| 1182 | static int |
| 1183 | enable_periodic(struct ehci_ctrl *ctrl) |
| 1184 | { |
| 1185 | uint32_t cmd; |
| 1186 | struct ehci_hcor *hcor = ctrl->hcor; |
| 1187 | int ret; |
| 1188 | |
| 1189 | cmd = ehci_readl(&hcor->or_usbcmd); |
| 1190 | cmd |= CMD_PSE; |
| 1191 | ehci_writel(&hcor->or_usbcmd, cmd); |
| 1192 | |
| 1193 | ret = handshake((uint32_t *)&hcor->or_usbsts, |
| 1194 | STS_PSS, STS_PSS, 100 * 1000); |
| 1195 | if (ret < 0) { |
| 1196 | printf("EHCI failed: timeout when enabling periodic list\n"); |
| 1197 | return -ETIMEDOUT; |
| 1198 | } |
| 1199 | udelay(1000); |
| 1200 | return 0; |
| 1201 | } |
| 1202 | |
| 1203 | static int |
| 1204 | disable_periodic(struct ehci_ctrl *ctrl) |
| 1205 | { |
| 1206 | uint32_t cmd; |
| 1207 | struct ehci_hcor *hcor = ctrl->hcor; |
| 1208 | int ret; |
| 1209 | |
| 1210 | cmd = ehci_readl(&hcor->or_usbcmd); |
| 1211 | cmd &= ~CMD_PSE; |
| 1212 | ehci_writel(&hcor->or_usbcmd, cmd); |
| 1213 | |
| 1214 | ret = handshake((uint32_t *)&hcor->or_usbsts, |
| 1215 | STS_PSS, 0, 100 * 1000); |
| 1216 | if (ret < 0) { |
| 1217 | printf("EHCI failed: timeout when disabling periodic list\n"); |
| 1218 | return -ETIMEDOUT; |
| 1219 | } |
| 1220 | return 0; |
| 1221 | } |
| 1222 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1223 | static struct int_queue *_ehci_create_int_queue(struct usb_device *dev, |
| 1224 | unsigned long pipe, int queuesize, int elementsize, |
| 1225 | void *buffer, int interval) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1226 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1227 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1228 | struct int_queue *result = NULL; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1229 | uint32_t i, toggle; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1230 | |
Hans de Goede | 7f7cb73 | 2014-09-24 14:06:04 +0200 | [diff] [blame] | 1231 | /* |
| 1232 | * Interrupt transfers requiring several transactions are not supported |
| 1233 | * because bInterval is ignored. |
| 1234 | * |
| 1235 | * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2 |
| 1236 | * <= PKT_ALIGN if several qTDs are required, while the USB |
| 1237 | * specification does not constrain this for interrupt transfers. That |
| 1238 | * means that ehci_submit_async() would support interrupt transfers |
| 1239 | * requiring several transactions only as long as the transfer size does |
| 1240 | * not require more than a single qTD. |
| 1241 | */ |
| 1242 | if (elementsize > usb_maxpacket(dev, pipe)) { |
| 1243 | printf("%s: xfers requiring several transactions are not supported.\n", |
| 1244 | __func__); |
| 1245 | return NULL; |
| 1246 | } |
| 1247 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1248 | debug("Enter create_int_queue\n"); |
| 1249 | if (usb_pipetype(pipe) != PIPE_INTERRUPT) { |
| 1250 | debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe)); |
| 1251 | return NULL; |
| 1252 | } |
| 1253 | |
| 1254 | /* limit to 4 full pages worth of data - |
| 1255 | * we can safely fit them in a single TD, |
| 1256 | * no matter the alignment |
| 1257 | */ |
| 1258 | if (elementsize >= 16384) { |
| 1259 | debug("too large elements for interrupt transfers\n"); |
| 1260 | return NULL; |
| 1261 | } |
| 1262 | |
| 1263 | result = malloc(sizeof(*result)); |
| 1264 | if (!result) { |
| 1265 | debug("ehci intr queue: out of memory\n"); |
| 1266 | goto fail1; |
| 1267 | } |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1268 | result->elementsize = elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1269 | result->pipe = pipe; |
Stephen Warren | d7fe61d | 2014-02-06 13:13:06 -0700 | [diff] [blame] | 1270 | result->first = memalign(USB_DMA_MINALIGN, |
| 1271 | sizeof(struct QH) * queuesize); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1272 | if (!result->first) { |
| 1273 | debug("ehci intr queue: out of memory\n"); |
| 1274 | goto fail2; |
| 1275 | } |
| 1276 | result->current = result->first; |
| 1277 | result->last = result->first + queuesize - 1; |
Stephen Warren | d7fe61d | 2014-02-06 13:13:06 -0700 | [diff] [blame] | 1278 | result->tds = memalign(USB_DMA_MINALIGN, |
| 1279 | sizeof(struct qTD) * queuesize); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1280 | if (!result->tds) { |
| 1281 | debug("ehci intr queue: out of memory\n"); |
| 1282 | goto fail3; |
| 1283 | } |
| 1284 | memset(result->first, 0, sizeof(struct QH) * queuesize); |
| 1285 | memset(result->tds, 0, sizeof(struct qTD) * queuesize); |
| 1286 | |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1287 | toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); |
| 1288 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1289 | for (i = 0; i < queuesize; i++) { |
| 1290 | struct QH *qh = result->first + i; |
| 1291 | struct qTD *td = result->tds + i; |
| 1292 | void **buf = &qh->buffer; |
| 1293 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1294 | 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] | 1295 | if (i == queuesize - 1) |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1296 | qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1297 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1298 | qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td); |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1299 | qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1300 | qh->qh_endpt1 = |
| 1301 | cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */ |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1302 | (usb_maxpacket(dev, pipe) << 16) | /* MPS */ |
| 1303 | (1 << 14) | |
| 1304 | QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) | |
| 1305 | (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1306 | (usb_pipedevice(pipe) << 0)); |
| 1307 | qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */ |
| 1308 | (1 << 0)); /* S-mask: microframe 0 */ |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1309 | if (dev->speed == USB_SPEED_LOW || |
| 1310 | dev->speed == USB_SPEED_FULL) { |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 1311 | /* C-mask: microframes 2-4 */ |
| 1312 | qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1313 | } |
Hans de Goede | da16677 | 2014-09-20 16:51:22 +0200 | [diff] [blame] | 1314 | ehci_update_endpt2_dev_n_port(dev, qh); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1315 | |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1316 | td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE); |
| 1317 | td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1318 | debug("communication direction is '%s'\n", |
| 1319 | usb_pipein(pipe) ? "in" : "out"); |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1320 | td->qt_token = cpu_to_hc32( |
| 1321 | QT_TOKEN_DT(toggle) | |
| 1322 | (elementsize << 16) | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1323 | ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1324 | 0x80); /* active */ |
| 1325 | td->qt_buffer[0] = |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1326 | cpu_to_hc32((unsigned long)buffer + i * elementsize); |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1327 | td->qt_buffer[1] = |
| 1328 | cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff); |
| 1329 | td->qt_buffer[2] = |
| 1330 | cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff); |
| 1331 | td->qt_buffer[3] = |
| 1332 | cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff); |
| 1333 | td->qt_buffer[4] = |
| 1334 | cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1335 | |
| 1336 | *buf = buffer + i * elementsize; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1337 | toggle ^= 1; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1340 | flush_dcache_range((unsigned long)buffer, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1341 | ALIGN_END_ADDR(char, buffer, |
| 1342 | queuesize * elementsize)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1343 | flush_dcache_range((unsigned long)result->first, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1344 | ALIGN_END_ADDR(struct QH, result->first, |
| 1345 | queuesize)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1346 | flush_dcache_range((unsigned long)result->tds, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1347 | ALIGN_END_ADDR(struct qTD, result->tds, |
| 1348 | queuesize)); |
| 1349 | |
Hans de Goede | 8ba55ed | 2014-09-24 14:06:03 +0200 | [diff] [blame] | 1350 | if (ctrl->periodic_schedules > 0) { |
| 1351 | if (disable_periodic(ctrl) < 0) { |
| 1352 | debug("FATAL: periodic should never fail, but did"); |
| 1353 | goto fail3; |
| 1354 | } |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | /* hook up to periodic list */ |
| 1358 | struct QH *list = &ctrl->periodic_queue; |
| 1359 | result->last->qh_link = list->qh_link; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1360 | 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] | 1361 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1362 | flush_dcache_range((unsigned long)result->last, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1363 | ALIGN_END_ADDR(struct QH, result->last, 1)); |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1364 | flush_dcache_range((unsigned long)list, |
Stephen Warren | 36dad66 | 2013-05-24 15:03:17 -0600 | [diff] [blame] | 1365 | ALIGN_END_ADDR(struct QH, list, 1)); |
| 1366 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1367 | if (enable_periodic(ctrl) < 0) { |
| 1368 | debug("FATAL: periodic should never fail, but did"); |
| 1369 | goto fail3; |
| 1370 | } |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1371 | ctrl->periodic_schedules++; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1372 | |
| 1373 | debug("Exit create_int_queue\n"); |
| 1374 | return result; |
| 1375 | fail3: |
| 1376 | if (result->tds) |
| 1377 | free(result->tds); |
| 1378 | fail2: |
| 1379 | if (result->first) |
| 1380 | free(result->first); |
| 1381 | if (result) |
| 1382 | free(result); |
| 1383 | fail1: |
| 1384 | return NULL; |
| 1385 | } |
| 1386 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1387 | static void *_ehci_poll_int_queue(struct usb_device *dev, |
| 1388 | struct int_queue *queue) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1389 | { |
| 1390 | struct QH *cur = queue->current; |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1391 | struct qTD *cur_td; |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1392 | uint32_t token, toggle; |
| 1393 | unsigned long pipe = queue->pipe; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1394 | |
| 1395 | /* depleted queue */ |
| 1396 | if (cur == NULL) { |
| 1397 | debug("Exit poll_int_queue with completed queue\n"); |
| 1398 | return NULL; |
| 1399 | } |
| 1400 | /* still active */ |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1401 | cur_td = &queue->tds[queue->current - queue->first]; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1402 | invalidate_dcache_range((unsigned long)cur_td, |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1403 | ALIGN_END_ADDR(struct qTD, cur_td, 1)); |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1404 | token = hc32_to_cpu(cur_td->qt_token); |
| 1405 | if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) { |
| 1406 | 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] | 1407 | return NULL; |
| 1408 | } |
Hans de Goede | 61a5a1c | 2015-06-18 22:34:33 +0200 | [diff] [blame] | 1409 | |
| 1410 | toggle = QT_TOKEN_GET_DT(token); |
| 1411 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle); |
| 1412 | |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1413 | if (!(cur->qh_link & QH_LINK_TERMINATE)) |
| 1414 | queue->current++; |
| 1415 | else |
| 1416 | queue->current = NULL; |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1417 | |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1418 | invalidate_dcache_range((unsigned long)cur->buffer, |
Hans de Goede | 8c5c5ca | 2014-09-24 14:06:05 +0200 | [diff] [blame] | 1419 | ALIGN_END_ADDR(char, cur->buffer, |
| 1420 | queue->elementsize)); |
| 1421 | |
Hans de Goede | 9db174c | 2014-09-20 16:51:24 +0200 | [diff] [blame] | 1422 | 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] | 1423 | token, cur, queue->first); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1424 | return cur->buffer; |
| 1425 | } |
| 1426 | |
| 1427 | /* 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] | 1428 | static int _ehci_destroy_int_queue(struct usb_device *dev, |
| 1429 | struct int_queue *queue) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1430 | { |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1431 | struct ehci_ctrl *ctrl = ehci_get_ctrl(dev); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1432 | int result = -1; |
| 1433 | unsigned long timeout; |
| 1434 | |
| 1435 | if (disable_periodic(ctrl) < 0) { |
| 1436 | debug("FATAL: periodic should never fail, but did"); |
| 1437 | goto out; |
| 1438 | } |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1439 | ctrl->periodic_schedules--; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1440 | |
| 1441 | struct QH *cur = &ctrl->periodic_queue; |
| 1442 | timeout = get_timer(0) + 500; /* abort after 500ms */ |
Adrian Cox | 29d0587 | 2014-04-10 13:29:45 +0100 | [diff] [blame] | 1443 | while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1444 | debug("considering %p, with qh_link %x\n", cur, cur->qh_link); |
| 1445 | if (NEXT_QH(cur) == queue->first) { |
| 1446 | debug("found candidate. removing from chain\n"); |
| 1447 | cur->qh_link = queue->last->qh_link; |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1448 | flush_dcache_range((unsigned long)cur, |
Hans de Goede | 8e00cf6 | 2014-09-20 16:51:23 +0200 | [diff] [blame] | 1449 | ALIGN_END_ADDR(struct QH, cur, 1)); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1450 | result = 0; |
| 1451 | break; |
| 1452 | } |
| 1453 | cur = NEXT_QH(cur); |
| 1454 | if (get_timer(0) > timeout) { |
| 1455 | printf("Timeout destroying interrupt endpoint queue\n"); |
| 1456 | result = -1; |
| 1457 | goto out; |
| 1458 | } |
| 1459 | } |
| 1460 | |
Hans de Goede | 8f5f4f7 | 2014-09-20 16:51:25 +0200 | [diff] [blame] | 1461 | if (ctrl->periodic_schedules > 0) { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1462 | result = enable_periodic(ctrl); |
| 1463 | if (result < 0) |
| 1464 | debug("FATAL: periodic should never fail, but did"); |
| 1465 | } |
| 1466 | |
| 1467 | out: |
| 1468 | free(queue->tds); |
| 1469 | free(queue->first); |
| 1470 | free(queue); |
| 1471 | |
| 1472 | return result; |
| 1473 | } |
| 1474 | |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1475 | static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 1476 | void *buffer, int length, int interval, |
| 1477 | bool nonblock) |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1478 | { |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1479 | void *backbuffer; |
| 1480 | struct int_queue *queue; |
| 1481 | unsigned long timeout; |
| 1482 | int result = 0, ret; |
| 1483 | |
Michael Trimarchi | 241f751 | 2008-11-28 13:20:46 +0100 | [diff] [blame] | 1484 | debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d", |
| 1485 | dev, pipe, buffer, length, interval); |
Benoît Thébaudeau | 58c4dfb | 2012-08-09 23:50:44 +0200 | [diff] [blame] | 1486 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1487 | queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval); |
Hans de Goede | 7f7cb73 | 2014-09-24 14:06:04 +0200 | [diff] [blame] | 1488 | if (!queue) |
| 1489 | return -1; |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1490 | |
| 1491 | timeout = get_timer(0) + USB_TIMEOUT_MS(pipe); |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1492 | while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL) |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1493 | if (get_timer(0) > timeout) { |
| 1494 | printf("Timeout poll on interrupt endpoint\n"); |
| 1495 | result = -ETIMEDOUT; |
| 1496 | break; |
| 1497 | } |
| 1498 | |
| 1499 | if (backbuffer != buffer) { |
Rob Herring | f14d54b | 2015-03-17 15:46:37 -0500 | [diff] [blame] | 1500 | debug("got wrong buffer back (%p instead of %p)\n", |
| 1501 | backbuffer, buffer); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1502 | return -EINVAL; |
| 1503 | } |
| 1504 | |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1505 | ret = _ehci_destroy_int_queue(dev, queue); |
Patrick Georgi | e55fdac | 2013-03-06 14:08:31 +0000 | [diff] [blame] | 1506 | if (ret < 0) |
| 1507 | return ret; |
| 1508 | |
| 1509 | /* everything worked out fine */ |
| 1510 | return result; |
Marek Vasut | 9b315fe | 2011-09-25 21:07:56 +0200 | [diff] [blame] | 1511 | } |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1512 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1513 | #if !CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1514 | int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 1515 | void *buffer, int length) |
| 1516 | { |
| 1517 | return _ehci_submit_bulk_msg(dev, pipe, buffer, length); |
| 1518 | } |
| 1519 | |
| 1520 | int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
| 1521 | int length, struct devrequest *setup) |
| 1522 | { |
| 1523 | return _ehci_submit_control_msg(dev, pipe, buffer, length, setup); |
| 1524 | } |
| 1525 | |
| 1526 | int submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 1527 | void *buffer, int length, int interval, bool nonblock) |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1528 | { |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 1529 | return _ehci_submit_int_msg(dev, pipe, buffer, length, interval, |
| 1530 | nonblock); |
Simon Glass | cb7cf60 | 2015-03-25 12:22:25 -0600 | [diff] [blame] | 1531 | } |
Hans de Goede | 53ca9de | 2015-05-11 20:43:52 +0200 | [diff] [blame] | 1532 | |
| 1533 | struct int_queue *create_int_queue(struct usb_device *dev, |
| 1534 | unsigned long pipe, int queuesize, int elementsize, |
| 1535 | void *buffer, int interval) |
| 1536 | { |
| 1537 | return _ehci_create_int_queue(dev, pipe, queuesize, elementsize, |
| 1538 | buffer, interval); |
| 1539 | } |
| 1540 | |
| 1541 | void *poll_int_queue(struct usb_device *dev, struct int_queue *queue) |
| 1542 | { |
| 1543 | return _ehci_poll_int_queue(dev, queue); |
| 1544 | } |
| 1545 | |
| 1546 | int destroy_int_queue(struct usb_device *dev, struct int_queue *queue) |
| 1547 | { |
| 1548 | return _ehci_destroy_int_queue(dev, queue); |
| 1549 | } |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1550 | #endif |
| 1551 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1552 | #if CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1553 | static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev, |
| 1554 | unsigned long pipe, void *buffer, int length, |
| 1555 | struct devrequest *setup) |
| 1556 | { |
| 1557 | debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__, |
| 1558 | dev->name, udev, udev->dev->name, udev->portnr); |
| 1559 | |
| 1560 | return _ehci_submit_control_msg(udev, pipe, buffer, length, setup); |
| 1561 | } |
| 1562 | |
| 1563 | static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev, |
| 1564 | unsigned long pipe, void *buffer, int length) |
| 1565 | { |
| 1566 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1567 | return _ehci_submit_bulk_msg(udev, pipe, buffer, length); |
| 1568 | } |
| 1569 | |
| 1570 | static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev, |
| 1571 | unsigned long pipe, void *buffer, int length, |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 1572 | int interval, bool nonblock) |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1573 | { |
| 1574 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 1575 | return _ehci_submit_int_msg(udev, pipe, buffer, length, interval, |
| 1576 | nonblock); |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1577 | } |
| 1578 | |
Hans de Goede | 0a7fa27 | 2015-05-10 14:10:18 +0200 | [diff] [blame] | 1579 | static struct int_queue *ehci_create_int_queue(struct udevice *dev, |
| 1580 | struct usb_device *udev, unsigned long pipe, int queuesize, |
| 1581 | int elementsize, void *buffer, int interval) |
| 1582 | { |
| 1583 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1584 | return _ehci_create_int_queue(udev, pipe, queuesize, elementsize, |
| 1585 | buffer, interval); |
| 1586 | } |
| 1587 | |
| 1588 | static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev, |
| 1589 | struct int_queue *queue) |
| 1590 | { |
| 1591 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1592 | return _ehci_poll_int_queue(udev, queue); |
| 1593 | } |
| 1594 | |
| 1595 | static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev, |
| 1596 | struct int_queue *queue) |
| 1597 | { |
| 1598 | debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); |
| 1599 | return _ehci_destroy_int_queue(udev, queue); |
| 1600 | } |
| 1601 | |
Bin Meng | 0441b87 | 2017-09-07 06:13:19 -0700 | [diff] [blame] | 1602 | static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size) |
| 1603 | { |
| 1604 | /* |
| 1605 | * EHCD can handle any transfer length as long as there is enough |
| 1606 | * free heap space left, hence set the theoretical max number here. |
| 1607 | */ |
| 1608 | *size = SIZE_MAX; |
| 1609 | |
| 1610 | return 0; |
| 1611 | } |
| 1612 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1613 | int ehci_register(struct udevice *dev, struct ehci_hccr *hccr, |
| 1614 | struct ehci_hcor *hcor, const struct ehci_ops *ops, |
| 1615 | uint tweaks, enum usb_init_type init) |
| 1616 | { |
Hans de Goede | 76bc7f4 | 2015-05-05 11:54:35 +0200 | [diff] [blame] | 1617 | struct usb_bus_priv *priv = dev_get_uclass_priv(dev); |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1618 | struct ehci_ctrl *ctrl = dev_get_priv(dev); |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1619 | int ret = -1; |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1620 | |
| 1621 | debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__, |
| 1622 | dev->name, ctrl, hccr, hcor, init); |
| 1623 | |
Heinrich Schuchardt | ab4304b | 2017-11-20 19:33:39 +0100 | [diff] [blame] | 1624 | if (!ctrl || !hccr || !hcor) |
| 1625 | goto err; |
| 1626 | |
Hans de Goede | 76bc7f4 | 2015-05-05 11:54:35 +0200 | [diff] [blame] | 1627 | priv->desc_before_addr = true; |
| 1628 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1629 | ehci_setup_ops(ctrl, ops); |
| 1630 | ctrl->hccr = hccr; |
| 1631 | ctrl->hcor = hcor; |
| 1632 | ctrl->priv = ctrl; |
| 1633 | |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1634 | ctrl->init = init; |
| 1635 | if (ctrl->init == USB_INIT_DEVICE) |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1636 | goto done; |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1637 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1638 | ret = ehci_reset(ctrl); |
| 1639 | if (ret) |
| 1640 | goto err; |
| 1641 | |
Mateusz Kulikowski | 3e13f39 | 2016-04-03 13:38:26 +0200 | [diff] [blame] | 1642 | if (ctrl->ops.init_after_reset) { |
| 1643 | ret = ctrl->ops.init_after_reset(ctrl); |
Mateusz Kulikowski | aab5a5a | 2016-03-31 23:12:17 +0200 | [diff] [blame] | 1644 | if (ret) |
| 1645 | goto err; |
| 1646 | } |
| 1647 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1648 | ret = ehci_common_init(ctrl, tweaks); |
| 1649 | if (ret) |
| 1650 | goto err; |
| 1651 | done: |
| 1652 | return 0; |
| 1653 | err: |
| 1654 | free(ctrl); |
| 1655 | debug("%s: failed, ret=%d\n", __func__, ret); |
| 1656 | return ret; |
| 1657 | } |
| 1658 | |
| 1659 | int ehci_deregister(struct udevice *dev) |
| 1660 | { |
| 1661 | struct ehci_ctrl *ctrl = dev_get_priv(dev); |
| 1662 | |
Stephen Warren | 71eced3 | 2015-08-20 17:38:05 -0600 | [diff] [blame] | 1663 | if (ctrl->init == USB_INIT_DEVICE) |
| 1664 | return 0; |
| 1665 | |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1666 | ehci_shutdown(ctrl); |
| 1667 | |
| 1668 | return 0; |
| 1669 | } |
| 1670 | |
| 1671 | struct dm_usb_ops ehci_usb_ops = { |
| 1672 | .control = ehci_submit_control_msg, |
| 1673 | .bulk = ehci_submit_bulk_msg, |
| 1674 | .interrupt = ehci_submit_int_msg, |
Hans de Goede | 0a7fa27 | 2015-05-10 14:10:18 +0200 | [diff] [blame] | 1675 | .create_int_queue = ehci_create_int_queue, |
| 1676 | .poll_int_queue = ehci_poll_int_queue, |
| 1677 | .destroy_int_queue = ehci_destroy_int_queue, |
Bin Meng | 0441b87 | 2017-09-07 06:13:19 -0700 | [diff] [blame] | 1678 | .get_max_xfer_size = ehci_get_max_xfer_size, |
Simon Glass | a194b25 | 2015-03-25 12:22:29 -0600 | [diff] [blame] | 1679 | }; |
| 1680 | |
| 1681 | #endif |
Marek Vasut | d9af6cd | 2018-08-08 14:29:55 +0200 | [diff] [blame] | 1682 | |
| 1683 | #ifdef CONFIG_PHY |
| 1684 | int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index) |
| 1685 | { |
| 1686 | int ret; |
| 1687 | |
| 1688 | if (!phy) |
| 1689 | return 0; |
| 1690 | |
| 1691 | ret = generic_phy_get_by_index(dev, index, phy); |
| 1692 | if (ret) { |
| 1693 | if (ret != -ENOENT) { |
| 1694 | dev_err(dev, "failed to get usb phy\n"); |
| 1695 | return ret; |
| 1696 | } |
| 1697 | } else { |
| 1698 | ret = generic_phy_init(phy); |
| 1699 | if (ret) { |
| 1700 | dev_err(dev, "failed to init usb phy\n"); |
| 1701 | return ret; |
| 1702 | } |
| 1703 | |
| 1704 | ret = generic_phy_power_on(phy); |
| 1705 | if (ret) { |
| 1706 | dev_err(dev, "failed to power on usb phy\n"); |
| 1707 | return generic_phy_exit(phy); |
| 1708 | } |
| 1709 | } |
| 1710 | |
| 1711 | return 0; |
| 1712 | } |
| 1713 | |
| 1714 | int ehci_shutdown_phy(struct udevice *dev, struct phy *phy) |
| 1715 | { |
| 1716 | int ret = 0; |
| 1717 | |
| 1718 | if (!phy) |
| 1719 | return 0; |
| 1720 | |
| 1721 | if (generic_phy_valid(phy)) { |
| 1722 | ret = generic_phy_power_off(phy); |
| 1723 | if (ret) { |
| 1724 | dev_err(dev, "failed to power off usb phy\n"); |
| 1725 | return ret; |
| 1726 | } |
| 1727 | |
| 1728 | ret = generic_phy_exit(phy); |
| 1729 | if (ret) { |
| 1730 | dev_err(dev, "failed to power off usb phy\n"); |
| 1731 | return ret; |
| 1732 | } |
| 1733 | } |
| 1734 | |
| 1735 | return 0; |
| 1736 | } |
| 1737 | #else |
| 1738 | int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index) |
| 1739 | { |
| 1740 | return 0; |
| 1741 | } |
| 1742 | |
| 1743 | int ehci_shutdown_phy(struct udevice *dev, struct phy *phy) |
| 1744 | { |
| 1745 | return 0; |
| 1746 | } |
| 1747 | #endif |