Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2011, Marvell Semiconductor Inc. |
| 4 | * Lei Wen <leiwen@marvell.com> |
| 5 | * |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 6 | * Back ported to the 8xx platform (from the 8260 platform) by |
| 7 | * Murray.Jensen@cmst.csiro.au, 27-Jan-01. |
| 8 | */ |
| 9 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 10 | #include <command.h> |
| 11 | #include <config.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 13 | #include <net.h> |
| 14 | #include <malloc.h> |
Simon Holesch | f487522 | 2023-11-20 01:08:34 +0100 | [diff] [blame] | 15 | #include <wait_bit.h> |
Troy Kisky | f157394 | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 18 | #include <linux/delay.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 20 | #include <asm/io.h> |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 21 | #include <asm/unaligned.h> |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 22 | #include <linux/types.h> |
Troy Kisky | f157394 | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 23 | #include <linux/usb/ch9.h> |
| 24 | #include <linux/usb/gadget.h> |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 25 | #include <usb/ci_udc.h> |
Troy Kisky | f157394 | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 26 | #include "../host/ehci.h" |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 27 | #include "ci_udc.h" |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 28 | |
Marek Vasut | 9d64ac9 | 2013-07-10 03:16:38 +0200 | [diff] [blame] | 29 | /* |
| 30 | * Check if the system has too long cachelines. If the cachelines are |
| 31 | * longer then 128b, the driver will not be able flush/invalidate data |
| 32 | * cache over separate QH entries. We use 128b because one QH entry is |
| 33 | * 64b long and there are always two QH list entries for each endpoint. |
| 34 | */ |
| 35 | #if ARCH_DMA_MINALIGN > 128 |
| 36 | #error This driver can not work on systems with caches longer than 128b |
| 37 | #endif |
| 38 | |
Stephen Warren | fe52910 | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 39 | /* |
Stephen Warren | d13034e | 2014-07-01 11:41:16 -0600 | [diff] [blame] | 40 | * Every QTD must be individually aligned, since we can program any |
| 41 | * QTD's address into HW. Cache flushing requires ARCH_DMA_MINALIGN, |
| 42 | * and the USB HW requires 32-byte alignment. Align to both: |
Stephen Warren | fe52910 | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 43 | */ |
| 44 | #define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32) |
Stephen Warren | d13034e | 2014-07-01 11:41:16 -0600 | [diff] [blame] | 45 | /* Each QTD is this size */ |
| 46 | #define ILIST_ENT_RAW_SZ sizeof(struct ept_queue_item) |
| 47 | /* |
| 48 | * Align the size of the QTD too, so we can add this value to each |
| 49 | * QTD's address to get another aligned address. |
| 50 | */ |
| 51 | #define ILIST_ENT_SZ roundup(ILIST_ENT_RAW_SZ, ILIST_ALIGN) |
| 52 | /* For each endpoint, we need 2 QTDs, one for each of IN and OUT */ |
| 53 | #define ILIST_SZ (NUM_ENDPOINTS * 2 * ILIST_ENT_SZ) |
Stephen Warren | fe52910 | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 54 | |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 55 | #define EP_MAX_LENGTH_TRANSFER 0x4000 |
| 56 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 57 | #ifndef DEBUG |
| 58 | #define DBG(x...) do {} while (0) |
| 59 | #else |
| 60 | #define DBG(x...) printf(x) |
| 61 | static const char *reqname(unsigned r) |
| 62 | { |
| 63 | switch (r) { |
| 64 | case USB_REQ_GET_STATUS: return "GET_STATUS"; |
| 65 | case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE"; |
| 66 | case USB_REQ_SET_FEATURE: return "SET_FEATURE"; |
| 67 | case USB_REQ_SET_ADDRESS: return "SET_ADDRESS"; |
| 68 | case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR"; |
| 69 | case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR"; |
| 70 | case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION"; |
| 71 | case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION"; |
| 72 | case USB_REQ_GET_INTERFACE: return "GET_INTERFACE"; |
| 73 | case USB_REQ_SET_INTERFACE: return "SET_INTERFACE"; |
| 74 | default: return "*UNKNOWN*"; |
| 75 | } |
| 76 | } |
| 77 | #endif |
| 78 | |
Stephen Warren | b3dc422 | 2014-05-29 14:53:01 -0600 | [diff] [blame] | 79 | static struct usb_endpoint_descriptor ep0_desc = { |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 80 | .bLength = sizeof(struct usb_endpoint_descriptor), |
| 81 | .bDescriptorType = USB_DT_ENDPOINT, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 82 | .bEndpointAddress = USB_DIR_IN, |
| 83 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 84 | }; |
| 85 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 86 | static int ci_pullup(struct usb_gadget *gadget, int is_on); |
| 87 | static int ci_ep_enable(struct usb_ep *ep, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 88 | const struct usb_endpoint_descriptor *desc); |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 89 | static int ci_ep_disable(struct usb_ep *ep); |
| 90 | static int ci_ep_queue(struct usb_ep *ep, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 91 | struct usb_request *req, gfp_t gfp_flags); |
Peng Fan | 0afb2a9 | 2015-08-28 09:20:30 +0800 | [diff] [blame] | 92 | static int ci_ep_dequeue(struct usb_ep *ep, struct usb_request *req); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 93 | static struct usb_request * |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 94 | ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags); |
| 95 | static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 96 | |
Adam Ford | 469d7f5 | 2022-03-04 16:59:02 -0600 | [diff] [blame] | 97 | static const struct usb_gadget_ops ci_udc_ops = { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 98 | .pullup = ci_pullup, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
Adam Ford | 469d7f5 | 2022-03-04 16:59:02 -0600 | [diff] [blame] | 101 | static const struct usb_ep_ops ci_ep_ops = { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 102 | .enable = ci_ep_enable, |
| 103 | .disable = ci_ep_disable, |
| 104 | .queue = ci_ep_queue, |
Peng Fan | 0afb2a9 | 2015-08-28 09:20:30 +0800 | [diff] [blame] | 105 | .dequeue = ci_ep_dequeue, |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 106 | .alloc_request = ci_ep_alloc_request, |
| 107 | .free_request = ci_ep_free_request, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
Ramon Fried | 5d4eb84 | 2018-09-21 13:35:52 +0300 | [diff] [blame] | 110 | __weak void ci_init_after_reset(struct ehci_ctrl *ctrl) |
| 111 | { |
| 112 | } |
| 113 | |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 114 | /* Init values for USB endpoints. */ |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 115 | static const struct usb_ep ci_ep_init[5] = { |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 116 | [0] = { /* EP 0 */ |
| 117 | .maxpacket = 64, |
| 118 | .name = "ep0", |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 119 | .ops = &ci_ep_ops, |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 120 | }, |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 121 | [1] = { |
| 122 | .maxpacket = 512, |
| 123 | .name = "ep1in-bulk", |
| 124 | .ops = &ci_ep_ops, |
| 125 | }, |
| 126 | [2] = { |
| 127 | .maxpacket = 512, |
| 128 | .name = "ep2out-bulk", |
| 129 | .ops = &ci_ep_ops, |
| 130 | }, |
| 131 | [3] = { |
| 132 | .maxpacket = 512, |
| 133 | .name = "ep3in-int", |
| 134 | .ops = &ci_ep_ops, |
| 135 | }, |
| 136 | [4] = { |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 137 | .maxpacket = 512, |
| 138 | .name = "ep-", |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 139 | .ops = &ci_ep_ops, |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 140 | }, |
| 141 | }; |
| 142 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 143 | static struct ci_drv controller = { |
Marek Vasut | be0b0e7 | 2013-07-10 03:16:35 +0200 | [diff] [blame] | 144 | .gadget = { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 145 | .name = "ci_udc", |
| 146 | .ops = &ci_udc_ops, |
Troy Kisky | 4b4df47 | 2013-09-25 18:41:09 -0700 | [diff] [blame] | 147 | .is_dualspeed = 1, |
Li Jun | 3c5a857 | 2021-01-25 21:43:58 +0800 | [diff] [blame] | 148 | .max_speed = USB_SPEED_HIGH, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 149 | }, |
| 150 | }; |
| 151 | |
Marek Vasut | 9212f89 | 2013-07-10 03:16:39 +0200 | [diff] [blame] | 152 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 153 | * ci_get_qh() - return queue head for endpoint |
Marek Vasut | 9212f89 | 2013-07-10 03:16:39 +0200 | [diff] [blame] | 154 | * @ep_num: Endpoint number |
| 155 | * @dir_in: Direction of the endpoint (IN = 1, OUT = 0) |
| 156 | * |
| 157 | * This function returns the QH associated with particular endpoint |
| 158 | * and it's direction. |
| 159 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 160 | static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in) |
Marek Vasut | 9212f89 | 2013-07-10 03:16:39 +0200 | [diff] [blame] | 161 | { |
| 162 | return &controller.epts[(ep_num * 2) + dir_in]; |
| 163 | } |
| 164 | |
Marek Vasut | a6f6b08 | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 165 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 166 | * ci_get_qtd() - return queue item for endpoint |
Marek Vasut | a6f6b08 | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 167 | * @ep_num: Endpoint number |
| 168 | * @dir_in: Direction of the endpoint (IN = 1, OUT = 0) |
| 169 | * |
| 170 | * This function returns the QH associated with particular endpoint |
| 171 | * and it's direction. |
| 172 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 173 | static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in) |
Marek Vasut | a6f6b08 | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 174 | { |
Stephen Warren | b8a872c | 2014-07-01 11:41:17 -0600 | [diff] [blame] | 175 | int index = (ep_num * 2) + dir_in; |
| 176 | uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ); |
| 177 | return (struct ept_queue_item *)imem; |
Marek Vasut | a6f6b08 | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 180 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 181 | * ci_flush_qh - flush cache over queue head |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 182 | * @ep_num: Endpoint number |
| 183 | * |
| 184 | * This function flushes cache over QH for particular endpoint. |
| 185 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 186 | static void ci_flush_qh(int ep_num) |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 187 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 188 | struct ept_queue_head *head = ci_get_qh(ep_num, 0); |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 189 | const unsigned long start = (unsigned long)head; |
| 190 | const unsigned long end = start + 2 * sizeof(*head); |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 191 | |
| 192 | flush_dcache_range(start, end); |
| 193 | } |
| 194 | |
| 195 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 196 | * ci_invalidate_qh - invalidate cache over queue head |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 197 | * @ep_num: Endpoint number |
| 198 | * |
| 199 | * This function invalidates cache over QH for particular endpoint. |
| 200 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 201 | static void ci_invalidate_qh(int ep_num) |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 202 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 203 | struct ept_queue_head *head = ci_get_qh(ep_num, 0); |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 204 | unsigned long start = (unsigned long)head; |
| 205 | unsigned long end = start + 2 * sizeof(*head); |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 206 | |
| 207 | invalidate_dcache_range(start, end); |
| 208 | } |
| 209 | |
| 210 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 211 | * ci_flush_qtd - flush cache over queue item |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 212 | * @ep_num: Endpoint number |
| 213 | * |
| 214 | * This function flushes cache over qTD pair for particular endpoint. |
| 215 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 216 | static void ci_flush_qtd(int ep_num) |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 217 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 218 | struct ept_queue_item *item = ci_get_qtd(ep_num, 0); |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 219 | const unsigned long start = (unsigned long)item; |
| 220 | const unsigned long end = start + 2 * ILIST_ENT_SZ; |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 221 | |
| 222 | flush_dcache_range(start, end); |
| 223 | } |
| 224 | |
| 225 | /** |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 226 | * ci_flush_td - flush cache over queue item |
| 227 | * @td: td pointer |
| 228 | * |
| 229 | * This function flushes cache for particular transfer descriptor. |
| 230 | */ |
| 231 | static void ci_flush_td(struct ept_queue_item *td) |
| 232 | { |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 233 | const unsigned long start = (unsigned long)td; |
| 234 | const unsigned long end = (unsigned long)td + ILIST_ENT_SZ; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 235 | flush_dcache_range(start, end); |
| 236 | } |
| 237 | |
| 238 | /** |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 239 | * ci_invalidate_qtd - invalidate cache over queue item |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 240 | * @ep_num: Endpoint number |
| 241 | * |
| 242 | * This function invalidates cache over qTD pair for particular endpoint. |
| 243 | */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 244 | static void ci_invalidate_qtd(int ep_num) |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 245 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 246 | struct ept_queue_item *item = ci_get_qtd(ep_num, 0); |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 247 | const unsigned long start = (unsigned long)item; |
| 248 | const unsigned long end = start + 2 * ILIST_ENT_SZ; |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 249 | |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 250 | invalidate_dcache_range(start, end); |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * ci_invalidate_td - invalidate cache over queue item |
| 255 | * @td: td pointer |
| 256 | * |
| 257 | * This function invalidates cache for particular transfer descriptor. |
| 258 | */ |
| 259 | static void ci_invalidate_td(struct ept_queue_item *td) |
| 260 | { |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 261 | const unsigned long start = (unsigned long)td; |
| 262 | const unsigned long end = start + ILIST_ENT_SZ; |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 263 | invalidate_dcache_range(start, end); |
| 264 | } |
| 265 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 266 | static struct usb_request * |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 267 | ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 268 | { |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 269 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Rob Herring | c267e7b | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 270 | int num = -1; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 271 | struct ci_req *ci_req; |
| 272 | |
Rob Herring | c267e7b | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 273 | if (ci_ep->desc) |
| 274 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 275 | |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 276 | if (num == 0 && controller.ep0_req) |
| 277 | return &controller.ep0_req->req; |
| 278 | |
Stephen Warren | 1d0788f | 2014-07-01 11:41:18 -0600 | [diff] [blame] | 279 | ci_req = calloc(1, sizeof(*ci_req)); |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 280 | if (!ci_req) |
| 281 | return NULL; |
| 282 | |
| 283 | INIT_LIST_HEAD(&ci_req->queue); |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 284 | |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 285 | if (num == 0) |
| 286 | controller.ep0_req = ci_req; |
| 287 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 288 | return &ci_req->req; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 291 | static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 292 | { |
Stephen Warren | 10fecbd | 2014-06-10 11:02:36 -0600 | [diff] [blame] | 293 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
| 294 | struct ci_req *ci_req = container_of(req, struct ci_req, req); |
Rob Herring | c267e7b | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 295 | int num = -1; |
| 296 | |
| 297 | if (ci_ep->desc) |
| 298 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
Stephen Warren | 10fecbd | 2014-06-10 11:02:36 -0600 | [diff] [blame] | 299 | |
Stephen Warren | f66ae99 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 300 | if (num == 0) { |
| 301 | if (!controller.ep0_req) |
| 302 | return; |
Stephen Warren | 10fecbd | 2014-06-10 11:02:36 -0600 | [diff] [blame] | 303 | controller.ep0_req = 0; |
Stephen Warren | f66ae99 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 304 | } |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 305 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 306 | if (ci_req->b_buf) |
| 307 | free(ci_req->b_buf); |
| 308 | free(ci_req); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 311 | static void ep_enable(int num, int in, int maxpacket) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 312 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 313 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 314 | unsigned n; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 315 | |
| 316 | n = readl(&udc->epctrl[num]); |
| 317 | if (in) |
| 318 | n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK); |
| 319 | else |
| 320 | n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK); |
| 321 | |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 322 | if (num != 0) { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 323 | struct ept_queue_head *head = ci_get_qh(num, in); |
Troy Kisky | 06bb97a | 2013-10-10 15:28:02 -0700 | [diff] [blame] | 324 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 325 | head->config = CFG_MAX_PKT(maxpacket) | CFG_ZLT; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 326 | ci_flush_qh(num); |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 327 | } |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 328 | writel(n, &udc->epctrl[num]); |
| 329 | } |
| 330 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 331 | static int ci_ep_enable(struct usb_ep *ep, |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 332 | const struct usb_endpoint_descriptor *desc) |
| 333 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 334 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 335 | int num, in; |
| 336 | num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 337 | in = (desc->bEndpointAddress & USB_DIR_IN) != 0; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 338 | ci_ep->desc = desc; |
Li Jun | fd892c3 | 2021-01-25 21:44:00 +0800 | [diff] [blame] | 339 | ep->desc = desc; |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 340 | |
| 341 | if (num) { |
| 342 | int max = get_unaligned_le16(&desc->wMaxPacketSize); |
| 343 | |
| 344 | if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL)) |
| 345 | max = 64; |
| 346 | if (ep->maxpacket != max) { |
| 347 | DBG("%s: from %d to %d\n", __func__, |
| 348 | ep->maxpacket, max); |
| 349 | ep->maxpacket = max; |
| 350 | } |
| 351 | } |
| 352 | ep_enable(num, in, ep->maxpacket); |
| 353 | DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
Simon Holesch | f487522 | 2023-11-20 01:08:34 +0100 | [diff] [blame] | 357 | static int ep_disable(int num, int in) |
| 358 | { |
| 359 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
| 360 | unsigned int ep_bit, enable_bit; |
| 361 | int err; |
| 362 | |
| 363 | if (in) { |
| 364 | ep_bit = EPT_TX(num); |
| 365 | enable_bit = CTRL_TXE; |
| 366 | } else { |
| 367 | ep_bit = EPT_RX(num); |
| 368 | enable_bit = CTRL_RXE; |
| 369 | } |
| 370 | |
| 371 | /* clear primed buffers */ |
| 372 | do { |
| 373 | writel(ep_bit, &udc->epflush); |
| 374 | err = wait_for_bit_le32(&udc->epflush, ep_bit, false, 1000, false); |
| 375 | if (err) |
| 376 | return err; |
| 377 | } while (readl(&udc->epstat) & ep_bit); |
| 378 | |
| 379 | /* clear enable bit */ |
| 380 | clrbits_le32(&udc->epctrl[num], enable_bit); |
| 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 385 | static int ci_ep_disable(struct usb_ep *ep) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 386 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 387 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Simon Holesch | f487522 | 2023-11-20 01:08:34 +0100 | [diff] [blame] | 388 | int num, in, err; |
| 389 | |
| 390 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 391 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
| 392 | |
| 393 | err = ep_disable(num, in); |
| 394 | if (err) |
| 395 | return err; |
Troy Kisky | 3549407 | 2013-09-25 18:41:15 -0700 | [diff] [blame] | 396 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 397 | ci_ep->desc = NULL; |
Li Jun | fd892c3 | 2021-01-25 21:44:00 +0800 | [diff] [blame] | 398 | ep->desc = NULL; |
Simon Holesch | f487522 | 2023-11-20 01:08:34 +0100 | [diff] [blame] | 399 | ci_ep->req_primed = false; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 400 | return 0; |
| 401 | } |
| 402 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 403 | static int ci_bounce(struct ci_req *ci_req, int in) |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 404 | { |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 405 | struct usb_request *req = &ci_req->req; |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 406 | unsigned long addr = (unsigned long)req->buf; |
| 407 | unsigned long hwaddr; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 408 | uint32_t aligned_used_len; |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 409 | |
| 410 | /* Input buffer address is not aligned. */ |
| 411 | if (addr & (ARCH_DMA_MINALIGN - 1)) |
| 412 | goto align; |
| 413 | |
| 414 | /* Input buffer length is not aligned. */ |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 415 | if (req->length & (ARCH_DMA_MINALIGN - 1)) |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 416 | goto align; |
| 417 | |
| 418 | /* The buffer is well aligned, only flush cache. */ |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 419 | ci_req->hw_len = req->length; |
| 420 | ci_req->hw_buf = req->buf; |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 421 | goto flush; |
| 422 | |
| 423 | align: |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 424 | if (ci_req->b_buf && req->length > ci_req->b_len) { |
| 425 | free(ci_req->b_buf); |
| 426 | ci_req->b_buf = 0; |
| 427 | } |
| 428 | if (!ci_req->b_buf) { |
| 429 | ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN); |
| 430 | ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len); |
| 431 | if (!ci_req->b_buf) |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 432 | return -ENOMEM; |
| 433 | } |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 434 | ci_req->hw_len = ci_req->b_len; |
| 435 | ci_req->hw_buf = ci_req->b_buf; |
| 436 | |
Troy Kisky | 1567b88 | 2013-10-10 15:28:01 -0700 | [diff] [blame] | 437 | if (in) |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 438 | memcpy(ci_req->hw_buf, req->buf, req->length); |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 439 | |
| 440 | flush: |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 441 | hwaddr = (unsigned long)ci_req->hw_buf; |
Marek Vasut | 98a80cd | 2022-01-28 04:39:09 +0100 | [diff] [blame] | 442 | if (!hwaddr) |
| 443 | return 0; |
| 444 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 445 | aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN); |
| 446 | flush_dcache_range(hwaddr, hwaddr + aligned_used_len); |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 447 | |
| 448 | return 0; |
| 449 | } |
| 450 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 451 | static void ci_debounce(struct ci_req *ci_req, int in) |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 452 | { |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 453 | struct usb_request *req = &ci_req->req; |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 454 | unsigned long addr = (unsigned long)req->buf; |
| 455 | unsigned long hwaddr = (unsigned long)ci_req->hw_buf; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 456 | uint32_t aligned_used_len; |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 457 | |
Marek Vasut | 98a80cd | 2022-01-28 04:39:09 +0100 | [diff] [blame] | 458 | if (in || !hwaddr) |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 459 | return; |
| 460 | |
| 461 | aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN); |
| 462 | invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len); |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 463 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 464 | if (addr == hwaddr) |
| 465 | return; /* not a bounce */ |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 466 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 467 | memcpy(req->buf, ci_req->hw_buf, req->actual); |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 468 | } |
| 469 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 470 | static void ci_ep_submit_next_request(struct ci_ep *ci_ep) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 471 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 472 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 473 | struct ept_queue_item *item; |
| 474 | struct ept_queue_head *head; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 475 | int bit, num, len, in; |
| 476 | struct ci_req *ci_req; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 477 | u8 *buf; |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 478 | uint32_t len_left, len_this_dtd; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 479 | struct ept_queue_item *dtd, *qtd; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 480 | |
| 481 | ci_ep->req_primed = true; |
| 482 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 483 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 484 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
| 485 | item = ci_get_qtd(num, in); |
| 486 | head = ci_get_qh(num, in); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 487 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 488 | ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue); |
| 489 | len = ci_req->req.length; |
Marek Vasut | e0fc582 | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 490 | |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 491 | head->next = (unsigned long)item; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 492 | head->info = 0; |
| 493 | |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 494 | ci_req->dtd_count = 0; |
| 495 | buf = ci_req->hw_buf; |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 496 | len_left = len; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 497 | dtd = item; |
| 498 | |
| 499 | do { |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 500 | len_this_dtd = min(len_left, (unsigned)EP_MAX_LENGTH_TRANSFER); |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 501 | |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 502 | dtd->info = INFO_BYTES(len_this_dtd) | INFO_ACTIVE; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 503 | dtd->page0 = (unsigned long)buf; |
| 504 | dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000; |
| 505 | dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000; |
| 506 | dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000; |
| 507 | dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000; |
| 508 | |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 509 | len_left -= len_this_dtd; |
| 510 | buf += len_this_dtd; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 511 | |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 512 | if (len_left) { |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 513 | qtd = (struct ept_queue_item *) |
| 514 | memalign(ILIST_ALIGN, ILIST_ENT_SZ); |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 515 | dtd->next = (unsigned long)qtd; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 516 | dtd = qtd; |
| 517 | memset(dtd, 0, ILIST_ENT_SZ); |
| 518 | } |
| 519 | |
| 520 | ci_req->dtd_count++; |
Stephen Warren | ea6bf69 | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 521 | } while (len_left); |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 522 | |
| 523 | item = dtd; |
Stephen Warren | a9e91da | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 524 | /* |
| 525 | * When sending the data for an IN transaction, the attached host |
| 526 | * knows that all data for the IN is sent when one of the following |
| 527 | * occurs: |
| 528 | * a) A zero-length packet is transmitted. |
| 529 | * b) A packet with length that isn't an exact multiple of the ep's |
| 530 | * maxpacket is transmitted. |
| 531 | * c) Enough data is sent to exactly fill the host's maximum expected |
| 532 | * IN transaction size. |
| 533 | * |
| 534 | * One of these conditions MUST apply at the end of an IN transaction, |
| 535 | * or the transaction will not be considered complete by the host. If |
| 536 | * none of (a)..(c) already applies, then we must force (a) to apply |
| 537 | * by explicitly sending an extra zero-length packet. |
| 538 | */ |
| 539 | /* IN !a !b !c */ |
| 540 | if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) { |
| 541 | /* |
| 542 | * Each endpoint has 2 items allocated, even though typically |
| 543 | * only 1 is used at a time since either an IN or an OUT but |
| 544 | * not both is queued. For an IN transaction, item currently |
| 545 | * points at the second of these items, so we know that we |
Stephen Warren | 6667e23 | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 546 | * can use the other to transmit the extra zero-length packet. |
Stephen Warren | a9e91da | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 547 | */ |
Stephen Warren | 6667e23 | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 548 | struct ept_queue_item *other_item = ci_get_qtd(num, 0); |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 549 | item->next = (unsigned long)other_item; |
Stephen Warren | 6667e23 | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 550 | item = other_item; |
Stephen Warren | a9e91da | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 551 | item->info = INFO_ACTIVE; |
| 552 | } |
| 553 | |
| 554 | item->next = TERMINATE; |
| 555 | item->info |= INFO_IOC; |
| 556 | |
| 557 | ci_flush_qtd(num); |
| 558 | |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 559 | item = (struct ept_queue_item *)(unsigned long)head->next; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 560 | while (item->next != TERMINATE) { |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 561 | ci_flush_td((struct ept_queue_item *)(unsigned long)item->next); |
| 562 | item = (struct ept_queue_item *)(unsigned long)item->next; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 563 | } |
| 564 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 565 | DBG("ept%d %s queue len %x, req %p, buffer %p\n", |
| 566 | num, in ? "in" : "out", len, ci_req, ci_req->hw_buf); |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 567 | ci_flush_qh(num); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 568 | |
| 569 | if (in) |
| 570 | bit = EPT_TX(num); |
| 571 | else |
| 572 | bit = EPT_RX(num); |
| 573 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 574 | writel(bit, &udc->epprime); |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 575 | } |
| 576 | |
Peng Fan | 0afb2a9 | 2015-08-28 09:20:30 +0800 | [diff] [blame] | 577 | static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) |
| 578 | { |
| 579 | struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep); |
| 580 | struct ci_req *ci_req; |
| 581 | |
| 582 | list_for_each_entry(ci_req, &ci_ep->queue, queue) { |
| 583 | if (&ci_req->req == _req) |
| 584 | break; |
| 585 | } |
| 586 | |
| 587 | if (&ci_req->req != _req) |
| 588 | return -EINVAL; |
| 589 | |
| 590 | list_del_init(&ci_req->queue); |
| 591 | |
| 592 | if (ci_req->req.status == -EINPROGRESS) { |
| 593 | ci_req->req.status = -ECONNRESET; |
| 594 | if (ci_req->req.complete) |
| 595 | ci_req->req.complete(_ep, _req); |
| 596 | } |
| 597 | |
| 598 | return 0; |
| 599 | } |
| 600 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 601 | static int ci_ep_queue(struct usb_ep *ep, |
| 602 | struct usb_request *req, gfp_t gfp_flags) |
| 603 | { |
| 604 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
| 605 | struct ci_req *ci_req = container_of(req, struct ci_req, req); |
| 606 | int in, ret; |
| 607 | int __maybe_unused num; |
| 608 | |
| 609 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 610 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
| 611 | |
Stephen Warren | 62237cf | 2014-05-29 14:53:00 -0600 | [diff] [blame] | 612 | if (!num && ci_ep->req_primed) { |
| 613 | /* |
| 614 | * The flipping of ep0 between IN and OUT relies on |
| 615 | * ci_ep_queue consuming the current IN/OUT setting |
| 616 | * immediately. If this is deferred to a later point when the |
| 617 | * req is pulled out of ci_req->queue, then the IN/OUT setting |
| 618 | * may have been changed since the req was queued, and state |
| 619 | * will get out of sync. This condition doesn't occur today, |
| 620 | * but could if bugs were introduced later, and this error |
| 621 | * check will save a lot of debugging time. |
| 622 | */ |
| 623 | printf("%s: ep0 transaction already in progress\n", __func__); |
| 624 | return -EPROTO; |
| 625 | } |
| 626 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 627 | ret = ci_bounce(ci_req, in); |
| 628 | if (ret) |
| 629 | return ret; |
| 630 | |
| 631 | DBG("ept%d %s pre-queue req %p, buffer %p\n", |
| 632 | num, in ? "in" : "out", ci_req, ci_req->hw_buf); |
| 633 | list_add_tail(&ci_req->queue, &ci_ep->queue); |
| 634 | |
| 635 | if (!ci_ep->req_primed) |
| 636 | ci_ep_submit_next_request(ci_ep); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 637 | |
| 638 | return 0; |
| 639 | } |
| 640 | |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 641 | static void flip_ep0_direction(void) |
| 642 | { |
| 643 | if (ep0_desc.bEndpointAddress == USB_DIR_IN) { |
Stephen Warren | fa51417 | 2014-06-25 11:03:18 -0600 | [diff] [blame] | 644 | DBG("%s: Flipping ep0 to OUT\n", __func__); |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 645 | ep0_desc.bEndpointAddress = 0; |
| 646 | } else { |
Stephen Warren | fa51417 | 2014-06-25 11:03:18 -0600 | [diff] [blame] | 647 | DBG("%s: Flipping ep0 to IN\n", __func__); |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 648 | ep0_desc.bEndpointAddress = USB_DIR_IN; |
| 649 | } |
| 650 | } |
| 651 | |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 652 | static void handle_ep_complete(struct ci_ep *ci_ep) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 653 | { |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 654 | struct ept_queue_item *item, *next_td; |
| 655 | int num, in, len, j; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 656 | struct ci_req *ci_req; |
| 657 | |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 658 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 659 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 660 | item = ci_get_qtd(num, in); |
| 661 | ci_invalidate_qtd(num); |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 662 | ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue); |
Wolfgang Denk | bd8ec7e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 663 | |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 664 | next_td = item; |
| 665 | len = 0; |
| 666 | for (j = 0; j < ci_req->dtd_count; j++) { |
| 667 | ci_invalidate_td(next_td); |
| 668 | item = next_td; |
| 669 | len += (item->info >> 16) & 0x7fff; |
| 670 | if (item->info & 0xff) |
| 671 | printf("EP%d/%s FAIL info=%x pg0=%x\n", |
| 672 | num, in ? "in" : "out", item->info, item->page0); |
| 673 | if (j != ci_req->dtd_count - 1) |
Stephen Warren | e0fa3b8 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 674 | next_td = (struct ept_queue_item *)(unsigned long) |
| 675 | item->next; |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 676 | if (j != 0) |
| 677 | free(item); |
| 678 | } |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 679 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 680 | list_del_init(&ci_req->queue); |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 681 | ci_ep->req_primed = false; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 682 | |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 683 | if (!list_empty(&ci_ep->queue)) |
| 684 | ci_ep_submit_next_request(ci_ep); |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 685 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 686 | ci_req->req.actual = ci_req->req.length - len; |
| 687 | ci_debounce(ci_req, in); |
Troy Kisky | 1567b88 | 2013-10-10 15:28:01 -0700 | [diff] [blame] | 688 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 689 | DBG("ept%d %s req %p, complete %x\n", |
| 690 | num, in ? "in" : "out", ci_req, len); |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 691 | if (num != 0 || controller.ep0_data_phase) |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 692 | ci_req->req.complete(&ci_ep->ep, &ci_req->req); |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 693 | if (num == 0 && controller.ep0_data_phase) { |
| 694 | /* |
| 695 | * Data Stage is complete, so flip ep0 dir for Status Stage, |
| 696 | * which always transfers a packet in the opposite direction. |
| 697 | */ |
| 698 | DBG("%s: flip ep0 dir for Status Stage\n", __func__); |
| 699 | flip_ep0_direction(); |
| 700 | controller.ep0_data_phase = false; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 701 | ci_req->req.length = 0; |
Stephen Warren | 192e8eb | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 702 | usb_ep_queue(&ci_ep->ep, &ci_req->req, 0); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 703 | } |
| 704 | } |
| 705 | |
| 706 | #define SETUP(type, request) (((type) << 8) | (request)) |
| 707 | |
| 708 | static void handle_setup(void) |
| 709 | { |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 710 | struct ci_ep *ci_ep = &controller.ep[0]; |
| 711 | struct ci_req *ci_req; |
| 712 | struct usb_request *req; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 713 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 714 | struct ept_queue_head *head; |
| 715 | struct usb_ctrlrequest r; |
| 716 | int status = 0; |
| 717 | int num, in, _num, _in, i; |
| 718 | char *buf; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 719 | |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 720 | ci_req = controller.ep0_req; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 721 | req = &ci_req->req; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 722 | head = ci_get_qh(0, 0); /* EP0 OUT */ |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 723 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 724 | ci_invalidate_qh(0); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 725 | memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest)); |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 726 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 727 | writel(EPT_RX(0), &udc->epsetupstat); |
| 728 | #else |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 729 | writel(EPT_RX(0), &udc->epstat); |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 730 | #endif |
Stephen Warren | aa449fa | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 731 | DBG("handle setup %s, %x, %x index %x value %x length %x\n", |
| 732 | reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex, |
| 733 | r.wValue, r.wLength); |
| 734 | |
| 735 | /* Set EP0 dir for Data Stage based on Setup Stage data */ |
| 736 | if (r.bRequestType & USB_DIR_IN) { |
| 737 | DBG("%s: Set ep0 to IN for Data Stage\n", __func__); |
| 738 | ep0_desc.bEndpointAddress = USB_DIR_IN; |
| 739 | } else { |
| 740 | DBG("%s: Set ep0 to OUT for Data Stage\n", __func__); |
| 741 | ep0_desc.bEndpointAddress = 0; |
| 742 | } |
| 743 | if (r.wLength) { |
| 744 | controller.ep0_data_phase = true; |
| 745 | } else { |
| 746 | /* 0 length -> no Data Stage. Flip dir for Status Stage */ |
| 747 | DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__); |
| 748 | flip_ep0_direction(); |
| 749 | controller.ep0_data_phase = false; |
| 750 | } |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 751 | |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 752 | list_del_init(&ci_req->queue); |
| 753 | ci_ep->req_primed = false; |
| 754 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 755 | switch (SETUP(r.bRequestType, r.bRequest)) { |
| 756 | case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE): |
| 757 | _num = r.wIndex & 15; |
| 758 | _in = !!(r.wIndex & 0x80); |
| 759 | |
| 760 | if ((r.wValue == 0) && (r.wLength == 0)) { |
| 761 | req->length = 0; |
| 762 | for (i = 0; i < NUM_ENDPOINTS; i++) { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 763 | struct ci_ep *ep = &controller.ep[i]; |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 764 | |
| 765 | if (!ep->desc) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 766 | continue; |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 767 | num = ep->desc->bEndpointAddress |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 768 | & USB_ENDPOINT_NUMBER_MASK; |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 769 | in = (ep->desc->bEndpointAddress |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 770 | & USB_DIR_IN) != 0; |
| 771 | if ((num == _num) && (in == _in)) { |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 772 | ep_enable(num, in, ep->ep.maxpacket); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 773 | usb_ep_queue(controller.gadget.ep0, |
| 774 | req, 0); |
| 775 | break; |
| 776 | } |
| 777 | } |
| 778 | } |
| 779 | return; |
| 780 | |
| 781 | case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS): |
| 782 | /* |
| 783 | * write address delayed (will take effect |
| 784 | * after the next IN txn) |
| 785 | */ |
| 786 | writel((r.wValue << 25) | (1 << 24), &udc->devaddr); |
| 787 | req->length = 0; |
| 788 | usb_ep_queue(controller.gadget.ep0, req, 0); |
| 789 | return; |
| 790 | |
| 791 | case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS): |
| 792 | req->length = 2; |
| 793 | buf = (char *)req->buf; |
| 794 | buf[0] = 1 << USB_DEVICE_SELF_POWERED; |
| 795 | buf[1] = 0; |
| 796 | usb_ep_queue(controller.gadget.ep0, req, 0); |
| 797 | return; |
| 798 | } |
| 799 | /* pass request up to the gadget driver */ |
| 800 | if (controller.driver) |
| 801 | status = controller.driver->setup(&controller.gadget, &r); |
| 802 | else |
| 803 | status = -ENODEV; |
| 804 | |
| 805 | if (!status) |
| 806 | return; |
| 807 | DBG("STALL reqname %s type %x value %x, index %x\n", |
| 808 | reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex); |
| 809 | writel((1<<16) | (1 << 0), &udc->epctrl[0]); |
| 810 | } |
| 811 | |
| 812 | static void stop_activity(void) |
| 813 | { |
| 814 | int i, num, in; |
| 815 | struct ept_queue_head *head; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 816 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 817 | writel(readl(&udc->epcomp), &udc->epcomp); |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 818 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 819 | writel(readl(&udc->epsetupstat), &udc->epsetupstat); |
| 820 | #endif |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 821 | writel(readl(&udc->epstat), &udc->epstat); |
| 822 | writel(0xffffffff, &udc->epflush); |
| 823 | |
| 824 | /* error out any pending reqs */ |
| 825 | for (i = 0; i < NUM_ENDPOINTS; i++) { |
| 826 | if (i != 0) |
| 827 | writel(0, &udc->epctrl[i]); |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 828 | if (controller.ep[i].desc) { |
| 829 | num = controller.ep[i].desc->bEndpointAddress |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 830 | & USB_ENDPOINT_NUMBER_MASK; |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 831 | in = (controller.ep[i].desc->bEndpointAddress |
| 832 | & USB_DIR_IN) != 0; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 833 | head = ci_get_qh(num, in); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 834 | head->info = INFO_ACTIVE; |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 835 | ci_flush_qh(num); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | void udc_irq(void) |
| 841 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 842 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 843 | unsigned n = readl(&udc->usbsts); |
| 844 | writel(n, &udc->usbsts); |
| 845 | int bit, i, num, in; |
| 846 | |
| 847 | n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI); |
| 848 | if (n == 0) |
| 849 | return; |
| 850 | |
| 851 | if (n & STS_URI) { |
| 852 | DBG("-- reset --\n"); |
| 853 | stop_activity(); |
| 854 | } |
| 855 | if (n & STS_SLI) |
| 856 | DBG("-- suspend --\n"); |
| 857 | |
| 858 | if (n & STS_PCI) { |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 859 | int max = 64; |
| 860 | int speed = USB_SPEED_FULL; |
| 861 | |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 862 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 863 | bit = (readl(&udc->hostpc1_devlc) >> 25) & 3; |
| 864 | #else |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 865 | bit = (readl(&udc->portsc) >> 26) & 3; |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 866 | #endif |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 867 | DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full"); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 868 | if (bit == 2) { |
Troy Kisky | 256a317 | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 869 | speed = USB_SPEED_HIGH; |
| 870 | max = 512; |
| 871 | } |
| 872 | controller.gadget.speed = speed; |
| 873 | for (i = 1; i < NUM_ENDPOINTS; i++) { |
| 874 | if (controller.ep[i].ep.maxpacket > max) |
| 875 | controller.ep[i].ep.maxpacket = max; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 876 | } |
| 877 | } |
| 878 | |
| 879 | if (n & STS_UEI) |
| 880 | printf("<UEI %x>\n", readl(&udc->epcomp)); |
| 881 | |
| 882 | if ((n & STS_UI) || (n & STS_UEI)) { |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 883 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 884 | n = readl(&udc->epsetupstat); |
| 885 | #else |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 886 | n = readl(&udc->epstat); |
Stephen Warren | e13a704 | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 887 | #endif |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 888 | if (n & EPT_RX(0)) |
| 889 | handle_setup(); |
| 890 | |
| 891 | n = readl(&udc->epcomp); |
| 892 | if (n != 0) |
| 893 | writel(n, &udc->epcomp); |
| 894 | |
| 895 | for (i = 0; i < NUM_ENDPOINTS && n; i++) { |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 896 | if (controller.ep[i].desc) { |
| 897 | num = controller.ep[i].desc->bEndpointAddress |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 898 | & USB_ENDPOINT_NUMBER_MASK; |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 899 | in = (controller.ep[i].desc->bEndpointAddress |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 900 | & USB_DIR_IN) != 0; |
| 901 | bit = (in) ? EPT_TX(num) : EPT_RX(num); |
| 902 | if (n & bit) |
Marek Vasut | 9837732 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 903 | handle_ep_complete(&controller.ep[i]); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 904 | } |
| 905 | } |
| 906 | } |
| 907 | } |
| 908 | |
Marek Vasut | 283bbec | 2023-09-01 11:50:03 +0200 | [diff] [blame] | 909 | int dm_usb_gadget_handle_interrupts(struct udevice *dev) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 910 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 911 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Marek Vasut | 283bbec | 2023-09-01 11:50:03 +0200 | [diff] [blame] | 912 | u32 value; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 913 | |
| 914 | value = readl(&udc->usbsts); |
| 915 | if (value) |
| 916 | udc_irq(); |
| 917 | |
| 918 | return value; |
| 919 | } |
| 920 | |
Stephen Warren | 6e9aa0d | 2014-06-10 11:02:35 -0600 | [diff] [blame] | 921 | void udc_disconnect(void) |
| 922 | { |
| 923 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
| 924 | /* disable pullup */ |
| 925 | stop_activity(); |
| 926 | writel(USBCMD_FS2, &udc->usbcmd); |
| 927 | udelay(800); |
| 928 | if (controller.driver) |
| 929 | controller.driver->disconnect(&controller.gadget); |
| 930 | } |
| 931 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 932 | static int ci_pullup(struct usb_gadget *gadget, int is_on) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 933 | { |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 934 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 935 | if (is_on) { |
| 936 | /* RESET */ |
| 937 | writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd); |
| 938 | udelay(200); |
| 939 | |
Ramon Fried | 5d4eb84 | 2018-09-21 13:35:52 +0300 | [diff] [blame] | 940 | ci_init_after_reset(controller.ctrl); |
| 941 | |
Rob Herring | 7f40623 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 942 | writel((unsigned long)controller.epts, &udc->epinitaddr); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 943 | |
| 944 | /* select DEVICE mode */ |
| 945 | writel(USBMODE_DEVICE, &udc->usbmode); |
| 946 | |
Eric Nelson | fe24e16 | 2014-09-28 18:35:14 -0700 | [diff] [blame] | 947 | #if !defined(CONFIG_USB_GADGET_DUALSPEED) |
| 948 | /* Port force Full-Speed Connect */ |
| 949 | setbits_le32(&udc->portsc, PFSC); |
| 950 | #endif |
| 951 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 952 | writel(0xffffffff, &udc->epflush); |
| 953 | |
| 954 | /* Turn on the USB connection by enabling the pullup resistor */ |
Ramon Fried | 8c09fce | 2018-09-21 13:35:56 +0300 | [diff] [blame] | 955 | setbits_le32(&udc->usbcmd, USBCMD_ITC(MICRO_8FRAME) | |
| 956 | USBCMD_RUN); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 957 | } else { |
Stephen Warren | 6e9aa0d | 2014-06-10 11:02:35 -0600 | [diff] [blame] | 958 | udc_disconnect(); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | return 0; |
| 962 | } |
| 963 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 964 | static int ci_udc_probe(void) |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 965 | { |
| 966 | struct ept_queue_head *head; |
| 967 | int i; |
Marek Vasut | 456707d | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 968 | |
Marek Vasut | 806d76c | 2013-07-10 03:16:34 +0200 | [diff] [blame] | 969 | const int num = 2 * NUM_ENDPOINTS; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 970 | |
Marek Vasut | 456707d | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 971 | const int eplist_min_align = 4096; |
| 972 | const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN); |
| 973 | const int eplist_raw_sz = num * sizeof(struct ept_queue_head); |
| 974 | const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN); |
| 975 | |
| 976 | /* The QH list must be aligned to 4096 bytes. */ |
| 977 | controller.epts = memalign(eplist_align, eplist_sz); |
| 978 | if (!controller.epts) |
| 979 | return -ENOMEM; |
| 980 | memset(controller.epts, 0, eplist_sz); |
| 981 | |
Stephen Warren | fe52910 | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 982 | controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ); |
Marek Vasut | b62fa7d | 2013-07-10 03:16:40 +0200 | [diff] [blame] | 983 | if (!controller.items_mem) { |
| 984 | free(controller.epts); |
| 985 | return -ENOMEM; |
| 986 | } |
Stephen Warren | fe52910 | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 987 | memset(controller.items_mem, 0, ILIST_SZ); |
Marek Vasut | b62fa7d | 2013-07-10 03:16:40 +0200 | [diff] [blame] | 988 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 989 | for (i = 0; i < 2 * NUM_ENDPOINTS; i++) { |
| 990 | /* |
Marek Vasut | 456707d | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 991 | * Configure QH for each endpoint. The structure of the QH list |
| 992 | * is such that each two subsequent fields, N and N+1 where N is |
| 993 | * even, in the QH list represent QH for one endpoint. The Nth |
| 994 | * entry represents OUT configuration and the N+1th entry does |
| 995 | * represent IN configuration of the endpoint. |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 996 | */ |
Marek Vasut | 393004e | 2013-07-10 03:16:36 +0200 | [diff] [blame] | 997 | head = controller.epts + i; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 998 | if (i < 2) |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 999 | head->config = CFG_MAX_PKT(EP0_MAX_PACKET_SIZE) |
| 1000 | | CFG_ZLT | CFG_IOS; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1001 | else |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 1002 | head->config = CFG_MAX_PKT(EP_MAX_PACKET_SIZE) |
| 1003 | | CFG_ZLT; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1004 | head->next = TERMINATE; |
| 1005 | head->info = 0; |
| 1006 | |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 1007 | if (i & 1) { |
Stephen Warren | bec1c13 | 2014-07-01 11:41:13 -0600 | [diff] [blame] | 1008 | ci_flush_qh(i / 2); |
| 1009 | ci_flush_qtd(i / 2); |
Marek Vasut | 5846534 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 1010 | } |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | INIT_LIST_HEAD(&controller.gadget.ep_list); |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1014 | |
| 1015 | /* Init EP 0 */ |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 1016 | memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init)); |
Stephen Warren | b3dc422 | 2014-05-29 14:53:01 -0600 | [diff] [blame] | 1017 | controller.ep[0].desc = &ep0_desc; |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 1018 | INIT_LIST_HEAD(&controller.ep[0].queue); |
| 1019 | controller.ep[0].req_primed = false; |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1020 | controller.gadget.ep0 = &controller.ep[0].ep; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1021 | INIT_LIST_HEAD(&controller.gadget.ep0->ep_list); |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1022 | |
Siva Durga Prasad Paladugu | 2c24ed1 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 1023 | /* Init EP 1..3 */ |
| 1024 | for (i = 1; i < 4; i++) { |
| 1025 | memcpy(&controller.ep[i].ep, &ci_ep_init[i], |
| 1026 | sizeof(*ci_ep_init)); |
| 1027 | INIT_LIST_HEAD(&controller.ep[i].queue); |
| 1028 | controller.ep[i].req_primed = false; |
| 1029 | list_add_tail(&controller.ep[i].ep.ep_list, |
| 1030 | &controller.gadget.ep_list); |
| 1031 | } |
| 1032 | |
| 1033 | /* Init EP 4..n */ |
| 1034 | for (i = 4; i < NUM_ENDPOINTS; i++) { |
| 1035 | memcpy(&controller.ep[i].ep, &ci_ep_init[4], |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 1036 | sizeof(*ci_ep_init)); |
Stephen Warren | aa5e864 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 1037 | INIT_LIST_HEAD(&controller.ep[i].queue); |
| 1038 | controller.ep[i].req_primed = false; |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1039 | list_add_tail(&controller.ep[i].ep.ep_list, |
| 1040 | &controller.gadget.ep_list); |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1041 | } |
Marek Vasut | e126341 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1042 | |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 1043 | ci_ep_alloc_request(&controller.ep[0].ep, 0); |
| 1044 | if (!controller.ep0_req) { |
Stephen Warren | c5d619b | 2014-06-10 11:02:37 -0600 | [diff] [blame] | 1045 | free(controller.items_mem); |
Stephen Warren | 9ac8b54 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 1046 | free(controller.epts); |
| 1047 | return -ENOMEM; |
| 1048 | } |
| 1049 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1050 | return 0; |
| 1051 | } |
| 1052 | |
| 1053 | int usb_gadget_register_driver(struct usb_gadget_driver *driver) |
| 1054 | { |
Marek Vasut | 1f4b491 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1055 | int ret; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1056 | |
Marek Vasut | fe67fe7 | 2013-07-10 03:16:33 +0200 | [diff] [blame] | 1057 | if (!driver) |
| 1058 | return -EINVAL; |
| 1059 | if (!driver->bind || !driver->setup || !driver->disconnect) |
| 1060 | return -EINVAL; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1061 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1062 | #if CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | 444b1e0 | 2015-03-25 12:22:32 -0600 | [diff] [blame] | 1063 | ret = usb_setup_ehci_gadget(&controller.ctrl); |
| 1064 | #else |
Troy Kisky | 8f9c49d | 2013-10-10 15:27:56 -0700 | [diff] [blame] | 1065 | ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl); |
Simon Glass | 444b1e0 | 2015-03-25 12:22:32 -0600 | [diff] [blame] | 1066 | #endif |
Marek Vasut | 1f4b491 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1067 | if (ret) |
| 1068 | return ret; |
| 1069 | |
Marek Vasut | 9ba8997 | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 1070 | ret = ci_udc_probe(); |
Ye.Li | 560bee9 | 2015-12-31 15:24:45 +0800 | [diff] [blame] | 1071 | if (ret) { |
| 1072 | DBG("udc probe failed, returned %d\n", ret); |
| 1073 | return ret; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1074 | } |
Marek Vasut | 1f4b491 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1075 | |
| 1076 | ret = driver->bind(&controller.gadget); |
| 1077 | if (ret) { |
| 1078 | DBG("driver->bind() returned %d\n", ret); |
| 1079 | return ret; |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1080 | } |
| 1081 | controller.driver = driver; |
| 1082 | |
| 1083 | return 0; |
| 1084 | } |
| 1085 | |
| 1086 | int usb_gadget_unregister_driver(struct usb_gadget_driver *driver) |
| 1087 | { |
Stephen Warren | 9c7ebe7 | 2014-06-10 11:02:38 -0600 | [diff] [blame] | 1088 | udc_disconnect(); |
| 1089 | |
Stephen Warren | f66ae99 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 1090 | driver->unbind(&controller.gadget); |
| 1091 | controller.driver = NULL; |
| 1092 | |
Stephen Warren | 9c7ebe7 | 2014-06-10 11:02:38 -0600 | [diff] [blame] | 1093 | ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req); |
| 1094 | free(controller.items_mem); |
| 1095 | free(controller.epts); |
| 1096 | |
Ye Li | 68801eb | 2020-06-29 10:12:59 +0800 | [diff] [blame] | 1097 | #if CONFIG_IS_ENABLED(DM_USB) |
| 1098 | usb_remove_ehci_gadget(&controller.ctrl); |
| 1099 | #else |
| 1100 | usb_lowlevel_stop(0); |
| 1101 | controller.ctrl = NULL; |
| 1102 | #endif |
| 1103 | |
Lei Wen | a91ee2a | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1104 | return 0; |
| 1105 | } |
Stephen Warren | fb12f45 | 2014-08-25 14:02:15 -0600 | [diff] [blame] | 1106 | |
| 1107 | bool dfu_usb_get_reset(void) |
| 1108 | { |
| 1109 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
| 1110 | |
| 1111 | return !!(readl(&udc->usbsts) & STS_URI); |
| 1112 | } |