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