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