Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Lei Wen | 26cc512 | 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 | 26cc512 | 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 | |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
| 12 | #include <config.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 13 | #include <cpu_func.h> |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 14 | #include <net.h> |
| 15 | #include <malloc.h> |
Troy Kisky | 0f740cb | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 18 | #include <linux/delay.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 20 | #include <asm/io.h> |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 21 | #include <asm/unaligned.h> |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 22 | #include <linux/types.h> |
Troy Kisky | 0f740cb | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 23 | #include <linux/usb/ch9.h> |
| 24 | #include <linux/usb/gadget.h> |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 25 | #include <usb/ci_udc.h> |
Troy Kisky | 0f740cb | 2013-10-10 15:28:03 -0700 | [diff] [blame] | 26 | #include "../host/ehci.h" |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 27 | #include "ci_udc.h" |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 28 | |
Marek Vasut | 5804b88 | 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 | 06b38fc | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 39 | /* |
Stephen Warren | 7e54188 | 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 | 06b38fc | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 43 | */ |
| 44 | #define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32) |
Stephen Warren | 7e54188 | 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 | 06b38fc | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 54 | |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 55 | #define EP_MAX_LENGTH_TRANSFER 0x4000 |
| 56 | |
Lei Wen | 26cc512 | 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 | 054731b | 2014-05-29 14:53:01 -0600 | [diff] [blame] | 79 | static struct usb_endpoint_descriptor ep0_desc = { |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 80 | .bLength = sizeof(struct usb_endpoint_descriptor), |
| 81 | .bDescriptorType = USB_DT_ENDPOINT, |
| 82 | .bEndpointAddress = USB_DIR_IN, |
| 83 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 84 | }; |
| 85 | |
Marek Vasut | f016f8c | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 88 | const struct usb_endpoint_descriptor *desc); |
Marek Vasut | f016f8c | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 91 | struct usb_request *req, gfp_t gfp_flags); |
Peng Fan | 70eaeb0 | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 93 | static struct usb_request * |
Marek Vasut | f016f8c | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 96 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 97 | static struct usb_gadget_ops ci_udc_ops = { |
| 98 | .pullup = ci_pullup, |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 101 | static struct usb_ep_ops ci_ep_ops = { |
| 102 | .enable = ci_ep_enable, |
| 103 | .disable = ci_ep_disable, |
| 104 | .queue = ci_ep_queue, |
Peng Fan | 70eaeb0 | 2015-08-28 09:20:30 +0800 | [diff] [blame] | 105 | .dequeue = ci_ep_dequeue, |
Marek Vasut | f016f8c | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
Ramon Fried | 8164952 | 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 | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 114 | /* Init values for USB endpoints. */ |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 115 | static const struct usb_ep ci_ep_init[5] = { |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 116 | [0] = { /* EP 0 */ |
| 117 | .maxpacket = 64, |
| 118 | .name = "ep0", |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 119 | .ops = &ci_ep_ops, |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 120 | }, |
Siva Durga Prasad Paladugu | 6a13241 | 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 | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 137 | .maxpacket = 512, |
| 138 | .name = "ep-", |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 139 | .ops = &ci_ep_ops, |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 140 | }, |
| 141 | }; |
| 142 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 143 | static struct ci_drv controller = { |
Marek Vasut | fe48f05 | 2013-07-10 03:16:35 +0200 | [diff] [blame] | 144 | .gadget = { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 145 | .name = "ci_udc", |
| 146 | .ops = &ci_udc_ops, |
Troy Kisky | 5a90443 | 2013-09-25 18:41:09 -0700 | [diff] [blame] | 147 | .is_dualspeed = 1, |
Li Jun | 54b22f4 | 2021-01-25 21:43:58 +0800 | [diff] [blame] | 148 | .max_speed = USB_SPEED_HIGH, |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 149 | }, |
| 150 | }; |
| 151 | |
Marek Vasut | b5cd45b | 2013-07-10 03:16:39 +0200 | [diff] [blame] | 152 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 153 | * ci_get_qh() - return queue head for endpoint |
Marek Vasut | b5cd45b | 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 | f016f8c | 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 | b5cd45b | 2013-07-10 03:16:39 +0200 | [diff] [blame] | 161 | { |
| 162 | return &controller.epts[(ep_num * 2) + dir_in]; |
| 163 | } |
| 164 | |
Marek Vasut | ede709c | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 165 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 166 | * ci_get_qtd() - return queue item for endpoint |
Marek Vasut | ede709c | 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 | f016f8c | 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 | ede709c | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 174 | { |
Stephen Warren | 6ac15fd | 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 | ede709c | 2013-07-10 03:16:41 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 180 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 181 | * ci_flush_qh - flush cache over queue head |
Marek Vasut | f19a343 | 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 | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 186 | static void ci_flush_qh(int ep_num) |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 187 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 188 | struct ept_queue_head *head = ci_get_qh(ep_num, 0); |
Rob Herring | f72d832 | 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 | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 191 | |
| 192 | flush_dcache_range(start, end); |
| 193 | } |
| 194 | |
| 195 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 196 | * ci_invalidate_qh - invalidate cache over queue head |
Marek Vasut | f19a343 | 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 | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 201 | static void ci_invalidate_qh(int ep_num) |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 202 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 203 | struct ept_queue_head *head = ci_get_qh(ep_num, 0); |
Rob Herring | f72d832 | 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 | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 206 | |
| 207 | invalidate_dcache_range(start, end); |
| 208 | } |
| 209 | |
| 210 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 211 | * ci_flush_qtd - flush cache over queue item |
Marek Vasut | f19a343 | 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 | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 216 | static void ci_flush_qtd(int ep_num) |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 217 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 218 | struct ept_queue_item *item = ci_get_qtd(ep_num, 0); |
Rob Herring | f72d832 | 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 | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 221 | |
| 222 | flush_dcache_range(start, end); |
| 223 | } |
| 224 | |
| 225 | /** |
Siva Durga Prasad Paladugu | 6a13241 | 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 | 85a9ea3 | 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 | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 235 | flush_dcache_range(start, end); |
| 236 | } |
| 237 | |
| 238 | /** |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 239 | * ci_invalidate_qtd - invalidate cache over queue item |
Marek Vasut | f19a343 | 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 | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 244 | static void ci_invalidate_qtd(int ep_num) |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 245 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 246 | struct ept_queue_item *item = ci_get_qtd(ep_num, 0); |
Rob Herring | f72d832 | 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 | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 249 | |
| 250 | invalidate_dcache_range(start, end); |
| 251 | } |
| 252 | |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 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 | 85a9ea3 | 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; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 263 | invalidate_dcache_range(start, end); |
| 264 | } |
| 265 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 266 | static struct usb_request * |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 267 | ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 268 | { |
Stephen Warren | a2d8f92 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 269 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Rob Herring | 58d6d13 | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 270 | int num = -1; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 271 | struct ci_req *ci_req; |
| 272 | |
Rob Herring | 58d6d13 | 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 | a2d8f92 | 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 | 639e990 | 2014-07-01 11:41:18 -0600 | [diff] [blame] | 279 | ci_req = calloc(1, sizeof(*ci_req)); |
Stephen Warren | 2813006 | 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 | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 284 | |
Stephen Warren | a2d8f92 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 285 | if (num == 0) |
| 286 | controller.ep0_req = ci_req; |
| 287 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 288 | return &ci_req->req; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Stephen Warren | 2813006 | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 292 | { |
Stephen Warren | bdf8161 | 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 | 58d6d13 | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 295 | int num = -1; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 296 | |
Rob Herring | 58d6d13 | 2015-07-24 10:14:21 -0500 | [diff] [blame] | 297 | if (ci_ep->desc) |
| 298 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 299 | |
Stephen Warren | fb22ae6 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 300 | if (num == 0) { |
| 301 | if (!controller.ep0_req) |
| 302 | return; |
Stephen Warren | bdf8161 | 2014-06-10 11:02:36 -0600 | [diff] [blame] | 303 | controller.ep0_req = 0; |
Stephen Warren | fb22ae6 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 304 | } |
Stephen Warren | bdf8161 | 2014-06-10 11:02:36 -0600 | [diff] [blame] | 305 | |
Stephen Warren | 2813006 | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 311 | static void ep_enable(int num, int in, int maxpacket) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 312 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 313 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 314 | unsigned n; |
Lei Wen | 26cc512 | 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 | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 322 | if (num != 0) { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 323 | struct ept_queue_head *head = ci_get_qh(num, in); |
Troy Kisky | 7b7924c | 2013-10-10 15:28:02 -0700 | [diff] [blame] | 324 | |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 325 | head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 326 | ci_flush_qh(num); |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 327 | } |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 328 | writel(n, &udc->epctrl[num]); |
| 329 | } |
| 330 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 331 | static int ci_ep_enable(struct usb_ep *ep, |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 332 | const struct usb_endpoint_descriptor *desc) |
| 333 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 334 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Lei Wen | 26cc512 | 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 | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 338 | ci_ep->desc = desc; |
Li Jun | 723fd56 | 2021-01-25 21:44:00 +0800 | [diff] [blame] | 339 | ep->desc = desc; |
Troy Kisky | 3b59abf | 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 | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 357 | static int ci_ep_disable(struct usb_ep *ep) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 358 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 359 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
Troy Kisky | b065eb7 | 2013-09-25 18:41:15 -0700 | [diff] [blame] | 360 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 361 | ci_ep->desc = NULL; |
Li Jun | 723fd56 | 2021-01-25 21:44:00 +0800 | [diff] [blame] | 362 | ep->desc = NULL; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 363 | return 0; |
| 364 | } |
| 365 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 366 | static int ci_bounce(struct ci_req *ci_req, int in) |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 367 | { |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 368 | struct usb_request *req = &ci_req->req; |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 369 | unsigned long addr = (unsigned long)req->buf; |
| 370 | unsigned long hwaddr; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 371 | uint32_t aligned_used_len; |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 372 | |
| 373 | /* Input buffer address is not aligned. */ |
| 374 | if (addr & (ARCH_DMA_MINALIGN - 1)) |
| 375 | goto align; |
| 376 | |
| 377 | /* Input buffer length is not aligned. */ |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 378 | if (req->length & (ARCH_DMA_MINALIGN - 1)) |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 379 | goto align; |
| 380 | |
| 381 | /* The buffer is well aligned, only flush cache. */ |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 382 | ci_req->hw_len = req->length; |
| 383 | ci_req->hw_buf = req->buf; |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 384 | goto flush; |
| 385 | |
| 386 | align: |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 387 | if (ci_req->b_buf && req->length > ci_req->b_len) { |
| 388 | free(ci_req->b_buf); |
| 389 | ci_req->b_buf = 0; |
| 390 | } |
| 391 | if (!ci_req->b_buf) { |
| 392 | ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN); |
| 393 | ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len); |
| 394 | if (!ci_req->b_buf) |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 395 | return -ENOMEM; |
| 396 | } |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 397 | ci_req->hw_len = ci_req->b_len; |
| 398 | ci_req->hw_buf = ci_req->b_buf; |
| 399 | |
Troy Kisky | 1ebf027 | 2013-10-10 15:28:01 -0700 | [diff] [blame] | 400 | if (in) |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 401 | memcpy(ci_req->hw_buf, req->buf, req->length); |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 402 | |
| 403 | flush: |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 404 | hwaddr = (unsigned long)ci_req->hw_buf; |
Marek Vasut | 1f54025 | 2022-01-28 04:39:09 +0100 | [diff] [blame] | 405 | if (!hwaddr) |
| 406 | return 0; |
| 407 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 408 | aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN); |
| 409 | flush_dcache_range(hwaddr, hwaddr + aligned_used_len); |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 414 | static void ci_debounce(struct ci_req *ci_req, int in) |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 415 | { |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 416 | struct usb_request *req = &ci_req->req; |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 417 | unsigned long addr = (unsigned long)req->buf; |
| 418 | unsigned long hwaddr = (unsigned long)ci_req->hw_buf; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 419 | uint32_t aligned_used_len; |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 420 | |
Marek Vasut | 1f54025 | 2022-01-28 04:39:09 +0100 | [diff] [blame] | 421 | if (in || !hwaddr) |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 422 | return; |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 423 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 424 | aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN); |
| 425 | invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len); |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 426 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 427 | if (addr == hwaddr) |
| 428 | return; /* not a bounce */ |
| 429 | |
| 430 | memcpy(req->buf, ci_req->hw_buf, req->actual); |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 431 | } |
| 432 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 433 | static void ci_ep_submit_next_request(struct ci_ep *ci_ep) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 434 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 435 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 436 | struct ept_queue_item *item; |
| 437 | struct ept_queue_head *head; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 438 | int bit, num, len, in; |
| 439 | struct ci_req *ci_req; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 440 | u8 *buf; |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 441 | uint32_t len_left, len_this_dtd; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 442 | struct ept_queue_item *dtd, *qtd; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 443 | |
| 444 | ci_ep->req_primed = true; |
| 445 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 446 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 447 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
| 448 | item = ci_get_qtd(num, in); |
| 449 | head = ci_get_qh(num, in); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 450 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 451 | ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue); |
| 452 | len = ci_req->req.length; |
Marek Vasut | 6dd30af | 2013-07-10 03:16:43 +0200 | [diff] [blame] | 453 | |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 454 | head->next = (unsigned long)item; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 455 | head->info = 0; |
| 456 | |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 457 | ci_req->dtd_count = 0; |
| 458 | buf = ci_req->hw_buf; |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 459 | len_left = len; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 460 | dtd = item; |
| 461 | |
| 462 | do { |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 463 | len_this_dtd = min(len_left, (unsigned)EP_MAX_LENGTH_TRANSFER); |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 464 | |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 465 | dtd->info = INFO_BYTES(len_this_dtd) | INFO_ACTIVE; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 466 | dtd->page0 = (unsigned long)buf; |
| 467 | dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000; |
| 468 | dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000; |
| 469 | dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000; |
| 470 | dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000; |
| 471 | |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 472 | len_left -= len_this_dtd; |
| 473 | buf += len_this_dtd; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 474 | |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 475 | if (len_left) { |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 476 | qtd = (struct ept_queue_item *) |
| 477 | memalign(ILIST_ALIGN, ILIST_ENT_SZ); |
Stephen Warren | 85a9ea3 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 478 | dtd->next = (unsigned long)qtd; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 479 | dtd = qtd; |
| 480 | memset(dtd, 0, ILIST_ENT_SZ); |
| 481 | } |
| 482 | |
| 483 | ci_req->dtd_count++; |
Stephen Warren | b337b3b | 2015-09-11 17:10:02 -0600 | [diff] [blame] | 484 | } while (len_left); |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 485 | |
| 486 | item = dtd; |
Stephen Warren | e0672b3 | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 487 | /* |
| 488 | * When sending the data for an IN transaction, the attached host |
| 489 | * knows that all data for the IN is sent when one of the following |
| 490 | * occurs: |
| 491 | * a) A zero-length packet is transmitted. |
| 492 | * b) A packet with length that isn't an exact multiple of the ep's |
| 493 | * maxpacket is transmitted. |
| 494 | * c) Enough data is sent to exactly fill the host's maximum expected |
| 495 | * IN transaction size. |
| 496 | * |
| 497 | * One of these conditions MUST apply at the end of an IN transaction, |
| 498 | * or the transaction will not be considered complete by the host. If |
| 499 | * none of (a)..(c) already applies, then we must force (a) to apply |
| 500 | * by explicitly sending an extra zero-length packet. |
| 501 | */ |
| 502 | /* IN !a !b !c */ |
| 503 | if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) { |
| 504 | /* |
| 505 | * Each endpoint has 2 items allocated, even though typically |
| 506 | * only 1 is used at a time since either an IN or an OUT but |
| 507 | * not both is queued. For an IN transaction, item currently |
| 508 | * points at the second of these items, so we know that we |
Stephen Warren | 8d7c39d | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 509 | * can use the other to transmit the extra zero-length packet. |
Stephen Warren | e0672b3 | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 510 | */ |
Stephen Warren | 8d7c39d | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 511 | struct ept_queue_item *other_item = ci_get_qtd(num, 0); |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 512 | item->next = (unsigned long)other_item; |
Stephen Warren | 8d7c39d | 2014-07-01 11:41:14 -0600 | [diff] [blame] | 513 | item = other_item; |
Stephen Warren | e0672b3 | 2014-06-10 15:27:39 -0600 | [diff] [blame] | 514 | item->info = INFO_ACTIVE; |
| 515 | } |
| 516 | |
| 517 | item->next = TERMINATE; |
| 518 | item->info |= INFO_IOC; |
| 519 | |
| 520 | ci_flush_qtd(num); |
| 521 | |
Stephen Warren | 85a9ea3 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 522 | item = (struct ept_queue_item *)(unsigned long)head->next; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 523 | while (item->next != TERMINATE) { |
Stephen Warren | 85a9ea3 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 524 | ci_flush_td((struct ept_queue_item *)(unsigned long)item->next); |
| 525 | item = (struct ept_queue_item *)(unsigned long)item->next; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 526 | } |
| 527 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 528 | DBG("ept%d %s queue len %x, req %p, buffer %p\n", |
| 529 | num, in ? "in" : "out", len, ci_req, ci_req->hw_buf); |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 530 | ci_flush_qh(num); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 531 | |
| 532 | if (in) |
| 533 | bit = EPT_TX(num); |
| 534 | else |
| 535 | bit = EPT_RX(num); |
| 536 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 537 | writel(bit, &udc->epprime); |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 538 | } |
| 539 | |
Peng Fan | 70eaeb0 | 2015-08-28 09:20:30 +0800 | [diff] [blame] | 540 | static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) |
| 541 | { |
| 542 | struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep); |
| 543 | struct ci_req *ci_req; |
| 544 | |
| 545 | list_for_each_entry(ci_req, &ci_ep->queue, queue) { |
| 546 | if (&ci_req->req == _req) |
| 547 | break; |
| 548 | } |
| 549 | |
| 550 | if (&ci_req->req != _req) |
| 551 | return -EINVAL; |
| 552 | |
| 553 | list_del_init(&ci_req->queue); |
| 554 | |
| 555 | if (ci_req->req.status == -EINPROGRESS) { |
| 556 | ci_req->req.status = -ECONNRESET; |
| 557 | if (ci_req->req.complete) |
| 558 | ci_req->req.complete(_ep, _req); |
| 559 | } |
| 560 | |
| 561 | return 0; |
| 562 | } |
| 563 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 564 | static int ci_ep_queue(struct usb_ep *ep, |
| 565 | struct usb_request *req, gfp_t gfp_flags) |
| 566 | { |
| 567 | struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); |
| 568 | struct ci_req *ci_req = container_of(req, struct ci_req, req); |
| 569 | int in, ret; |
| 570 | int __maybe_unused num; |
| 571 | |
| 572 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 573 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
| 574 | |
Stephen Warren | 7484d84 | 2014-05-29 14:53:00 -0600 | [diff] [blame] | 575 | if (!num && ci_ep->req_primed) { |
| 576 | /* |
| 577 | * The flipping of ep0 between IN and OUT relies on |
| 578 | * ci_ep_queue consuming the current IN/OUT setting |
| 579 | * immediately. If this is deferred to a later point when the |
| 580 | * req is pulled out of ci_req->queue, then the IN/OUT setting |
| 581 | * may have been changed since the req was queued, and state |
| 582 | * will get out of sync. This condition doesn't occur today, |
| 583 | * but could if bugs were introduced later, and this error |
| 584 | * check will save a lot of debugging time. |
| 585 | */ |
| 586 | printf("%s: ep0 transaction already in progress\n", __func__); |
| 587 | return -EPROTO; |
| 588 | } |
| 589 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 590 | ret = ci_bounce(ci_req, in); |
| 591 | if (ret) |
| 592 | return ret; |
| 593 | |
| 594 | DBG("ept%d %s pre-queue req %p, buffer %p\n", |
| 595 | num, in ? "in" : "out", ci_req, ci_req->hw_buf); |
| 596 | list_add_tail(&ci_req->queue, &ci_ep->queue); |
| 597 | |
| 598 | if (!ci_ep->req_primed) |
| 599 | ci_ep_submit_next_request(ci_ep); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 600 | |
| 601 | return 0; |
| 602 | } |
| 603 | |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 604 | static void flip_ep0_direction(void) |
| 605 | { |
| 606 | if (ep0_desc.bEndpointAddress == USB_DIR_IN) { |
Stephen Warren | 83c3750 | 2014-06-25 11:03:18 -0600 | [diff] [blame] | 607 | DBG("%s: Flipping ep0 to OUT\n", __func__); |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 608 | ep0_desc.bEndpointAddress = 0; |
| 609 | } else { |
Stephen Warren | 83c3750 | 2014-06-25 11:03:18 -0600 | [diff] [blame] | 610 | DBG("%s: Flipping ep0 to IN\n", __func__); |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 611 | ep0_desc.bEndpointAddress = USB_DIR_IN; |
| 612 | } |
| 613 | } |
| 614 | |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 615 | static void handle_ep_complete(struct ci_ep *ci_ep) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 616 | { |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 617 | struct ept_queue_item *item, *next_td; |
| 618 | int num, in, len, j; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 619 | struct ci_req *ci_req; |
| 620 | |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 621 | num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; |
| 622 | in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 623 | item = ci_get_qtd(num, in); |
| 624 | ci_invalidate_qtd(num); |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 625 | ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue); |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 626 | |
| 627 | next_td = item; |
| 628 | len = 0; |
| 629 | for (j = 0; j < ci_req->dtd_count; j++) { |
| 630 | ci_invalidate_td(next_td); |
| 631 | item = next_td; |
| 632 | len += (item->info >> 16) & 0x7fff; |
| 633 | if (item->info & 0xff) |
| 634 | printf("EP%d/%s FAIL info=%x pg0=%x\n", |
| 635 | num, in ? "in" : "out", item->info, item->page0); |
| 636 | if (j != ci_req->dtd_count - 1) |
Stephen Warren | 85a9ea3 | 2015-07-22 15:16:20 -0600 | [diff] [blame] | 637 | next_td = (struct ept_queue_item *)(unsigned long) |
| 638 | item->next; |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 639 | if (j != 0) |
| 640 | free(item); |
| 641 | } |
| 642 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 643 | list_del_init(&ci_req->queue); |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 644 | ci_ep->req_primed = false; |
Troy Kisky | 1ebf027 | 2013-10-10 15:28:01 -0700 | [diff] [blame] | 645 | |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 646 | if (!list_empty(&ci_ep->queue)) |
| 647 | ci_ep_submit_next_request(ci_ep); |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 648 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 649 | ci_req->req.actual = ci_req->req.length - len; |
| 650 | ci_debounce(ci_req, in); |
| 651 | |
| 652 | DBG("ept%d %s req %p, complete %x\n", |
| 653 | num, in ? "in" : "out", ci_req, len); |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 654 | if (num != 0 || controller.ep0_data_phase) |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 655 | ci_req->req.complete(&ci_ep->ep, &ci_req->req); |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 656 | if (num == 0 && controller.ep0_data_phase) { |
| 657 | /* |
| 658 | * Data Stage is complete, so flip ep0 dir for Status Stage, |
| 659 | * which always transfers a packet in the opposite direction. |
| 660 | */ |
| 661 | DBG("%s: flip ep0 dir for Status Stage\n", __func__); |
| 662 | flip_ep0_direction(); |
| 663 | controller.ep0_data_phase = false; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 664 | ci_req->req.length = 0; |
Stephen Warren | dcb89b5 | 2014-07-01 14:22:27 -0600 | [diff] [blame] | 665 | usb_ep_queue(&ci_ep->ep, &ci_req->req, 0); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 666 | } |
| 667 | } |
| 668 | |
| 669 | #define SETUP(type, request) (((type) << 8) | (request)) |
| 670 | |
| 671 | static void handle_setup(void) |
| 672 | { |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 673 | struct ci_ep *ci_ep = &controller.ep[0]; |
| 674 | struct ci_req *ci_req; |
| 675 | struct usb_request *req; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 676 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 677 | struct ept_queue_head *head; |
| 678 | struct usb_ctrlrequest r; |
| 679 | int status = 0; |
| 680 | int num, in, _num, _in, i; |
| 681 | char *buf; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 682 | |
Stephen Warren | a2d8f92 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 683 | ci_req = controller.ep0_req; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 684 | req = &ci_req->req; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 685 | head = ci_get_qh(0, 0); /* EP0 OUT */ |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 686 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 687 | ci_invalidate_qh(0); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 688 | memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest)); |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 689 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 690 | writel(EPT_RX(0), &udc->epsetupstat); |
| 691 | #else |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 692 | writel(EPT_RX(0), &udc->epstat); |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 693 | #endif |
Stephen Warren | 006c702 | 2014-05-29 14:53:03 -0600 | [diff] [blame] | 694 | DBG("handle setup %s, %x, %x index %x value %x length %x\n", |
| 695 | reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex, |
| 696 | r.wValue, r.wLength); |
| 697 | |
| 698 | /* Set EP0 dir for Data Stage based on Setup Stage data */ |
| 699 | if (r.bRequestType & USB_DIR_IN) { |
| 700 | DBG("%s: Set ep0 to IN for Data Stage\n", __func__); |
| 701 | ep0_desc.bEndpointAddress = USB_DIR_IN; |
| 702 | } else { |
| 703 | DBG("%s: Set ep0 to OUT for Data Stage\n", __func__); |
| 704 | ep0_desc.bEndpointAddress = 0; |
| 705 | } |
| 706 | if (r.wLength) { |
| 707 | controller.ep0_data_phase = true; |
| 708 | } else { |
| 709 | /* 0 length -> no Data Stage. Flip dir for Status Stage */ |
| 710 | DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__); |
| 711 | flip_ep0_direction(); |
| 712 | controller.ep0_data_phase = false; |
| 713 | } |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 714 | |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 715 | list_del_init(&ci_req->queue); |
| 716 | ci_ep->req_primed = false; |
| 717 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 718 | switch (SETUP(r.bRequestType, r.bRequest)) { |
| 719 | case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE): |
| 720 | _num = r.wIndex & 15; |
| 721 | _in = !!(r.wIndex & 0x80); |
| 722 | |
| 723 | if ((r.wValue == 0) && (r.wLength == 0)) { |
| 724 | req->length = 0; |
| 725 | for (i = 0; i < NUM_ENDPOINTS; i++) { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 726 | struct ci_ep *ep = &controller.ep[i]; |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 727 | |
| 728 | if (!ep->desc) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 729 | continue; |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 730 | num = ep->desc->bEndpointAddress |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 731 | & USB_ENDPOINT_NUMBER_MASK; |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 732 | in = (ep->desc->bEndpointAddress |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 733 | & USB_DIR_IN) != 0; |
| 734 | if ((num == _num) && (in == _in)) { |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 735 | ep_enable(num, in, ep->ep.maxpacket); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 736 | usb_ep_queue(controller.gadget.ep0, |
| 737 | req, 0); |
| 738 | break; |
| 739 | } |
| 740 | } |
| 741 | } |
| 742 | return; |
| 743 | |
| 744 | case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS): |
| 745 | /* |
| 746 | * write address delayed (will take effect |
| 747 | * after the next IN txn) |
| 748 | */ |
| 749 | writel((r.wValue << 25) | (1 << 24), &udc->devaddr); |
| 750 | req->length = 0; |
| 751 | usb_ep_queue(controller.gadget.ep0, req, 0); |
| 752 | return; |
| 753 | |
| 754 | case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS): |
| 755 | req->length = 2; |
| 756 | buf = (char *)req->buf; |
| 757 | buf[0] = 1 << USB_DEVICE_SELF_POWERED; |
| 758 | buf[1] = 0; |
| 759 | usb_ep_queue(controller.gadget.ep0, req, 0); |
| 760 | return; |
| 761 | } |
| 762 | /* pass request up to the gadget driver */ |
| 763 | if (controller.driver) |
| 764 | status = controller.driver->setup(&controller.gadget, &r); |
| 765 | else |
| 766 | status = -ENODEV; |
| 767 | |
| 768 | if (!status) |
| 769 | return; |
| 770 | DBG("STALL reqname %s type %x value %x, index %x\n", |
| 771 | reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex); |
| 772 | writel((1<<16) | (1 << 0), &udc->epctrl[0]); |
| 773 | } |
| 774 | |
| 775 | static void stop_activity(void) |
| 776 | { |
| 777 | int i, num, in; |
| 778 | struct ept_queue_head *head; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 779 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 780 | writel(readl(&udc->epcomp), &udc->epcomp); |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 781 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 782 | writel(readl(&udc->epsetupstat), &udc->epsetupstat); |
| 783 | #endif |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 784 | writel(readl(&udc->epstat), &udc->epstat); |
| 785 | writel(0xffffffff, &udc->epflush); |
| 786 | |
| 787 | /* error out any pending reqs */ |
| 788 | for (i = 0; i < NUM_ENDPOINTS; i++) { |
| 789 | if (i != 0) |
| 790 | writel(0, &udc->epctrl[i]); |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 791 | if (controller.ep[i].desc) { |
| 792 | num = controller.ep[i].desc->bEndpointAddress |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 793 | & USB_ENDPOINT_NUMBER_MASK; |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 794 | in = (controller.ep[i].desc->bEndpointAddress |
| 795 | & USB_DIR_IN) != 0; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 796 | head = ci_get_qh(num, in); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 797 | head->info = INFO_ACTIVE; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 798 | ci_flush_qh(num); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 799 | } |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | void udc_irq(void) |
| 804 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 805 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 806 | unsigned n = readl(&udc->usbsts); |
| 807 | writel(n, &udc->usbsts); |
| 808 | int bit, i, num, in; |
| 809 | |
| 810 | n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI); |
| 811 | if (n == 0) |
| 812 | return; |
| 813 | |
| 814 | if (n & STS_URI) { |
| 815 | DBG("-- reset --\n"); |
| 816 | stop_activity(); |
| 817 | } |
| 818 | if (n & STS_SLI) |
| 819 | DBG("-- suspend --\n"); |
| 820 | |
| 821 | if (n & STS_PCI) { |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 822 | int max = 64; |
| 823 | int speed = USB_SPEED_FULL; |
| 824 | |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 825 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 826 | bit = (readl(&udc->hostpc1_devlc) >> 25) & 3; |
| 827 | #else |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 828 | bit = (readl(&udc->portsc) >> 26) & 3; |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 829 | #endif |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 830 | DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full"); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 831 | if (bit == 2) { |
Troy Kisky | 3b59abf | 2013-10-10 15:28:00 -0700 | [diff] [blame] | 832 | speed = USB_SPEED_HIGH; |
| 833 | max = 512; |
| 834 | } |
| 835 | controller.gadget.speed = speed; |
| 836 | for (i = 1; i < NUM_ENDPOINTS; i++) { |
| 837 | if (controller.ep[i].ep.maxpacket > max) |
| 838 | controller.ep[i].ep.maxpacket = max; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 839 | } |
| 840 | } |
| 841 | |
| 842 | if (n & STS_UEI) |
| 843 | printf("<UEI %x>\n", readl(&udc->epcomp)); |
| 844 | |
| 845 | if ((n & STS_UI) || (n & STS_UEI)) { |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 846 | #ifdef CONFIG_CI_UDC_HAS_HOSTPC |
| 847 | n = readl(&udc->epsetupstat); |
| 848 | #else |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 849 | n = readl(&udc->epstat); |
Stephen Warren | fcf2ede | 2014-04-24 17:52:39 -0600 | [diff] [blame] | 850 | #endif |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 851 | if (n & EPT_RX(0)) |
| 852 | handle_setup(); |
| 853 | |
| 854 | n = readl(&udc->epcomp); |
| 855 | if (n != 0) |
| 856 | writel(n, &udc->epcomp); |
| 857 | |
| 858 | for (i = 0; i < NUM_ENDPOINTS && n; i++) { |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 859 | if (controller.ep[i].desc) { |
| 860 | num = controller.ep[i].desc->bEndpointAddress |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 861 | & USB_ENDPOINT_NUMBER_MASK; |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 862 | in = (controller.ep[i].desc->bEndpointAddress |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 863 | & USB_DIR_IN) != 0; |
| 864 | bit = (in) ? EPT_TX(num) : EPT_RX(num); |
| 865 | if (n & bit) |
Marek Vasut | 532d846 | 2013-07-10 03:16:29 +0200 | [diff] [blame] | 866 | handle_ep_complete(&controller.ep[i]); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 867 | } |
| 868 | } |
| 869 | } |
| 870 | } |
| 871 | |
Kishon Vijay Abraham I | 2d48aa6 | 2015-02-23 18:40:23 +0530 | [diff] [blame] | 872 | int usb_gadget_handle_interrupts(int index) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 873 | { |
| 874 | u32 value; |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 875 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 876 | |
| 877 | value = readl(&udc->usbsts); |
| 878 | if (value) |
| 879 | udc_irq(); |
| 880 | |
| 881 | return value; |
| 882 | } |
| 883 | |
Stephen Warren | 43a8f25 | 2014-06-10 11:02:35 -0600 | [diff] [blame] | 884 | void udc_disconnect(void) |
| 885 | { |
| 886 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
| 887 | /* disable pullup */ |
| 888 | stop_activity(); |
| 889 | writel(USBCMD_FS2, &udc->usbcmd); |
| 890 | udelay(800); |
| 891 | if (controller.driver) |
| 892 | controller.driver->disconnect(&controller.gadget); |
| 893 | } |
| 894 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 895 | static int ci_pullup(struct usb_gadget *gadget, int is_on) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 896 | { |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 897 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 898 | if (is_on) { |
| 899 | /* RESET */ |
| 900 | writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd); |
| 901 | udelay(200); |
| 902 | |
Ramon Fried | 8164952 | 2018-09-21 13:35:52 +0300 | [diff] [blame] | 903 | ci_init_after_reset(controller.ctrl); |
| 904 | |
Rob Herring | f72d832 | 2015-03-17 15:46:35 -0500 | [diff] [blame] | 905 | writel((unsigned long)controller.epts, &udc->epinitaddr); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 906 | |
| 907 | /* select DEVICE mode */ |
| 908 | writel(USBMODE_DEVICE, &udc->usbmode); |
| 909 | |
Eric Nelson | e206799 | 2014-09-28 18:35:14 -0700 | [diff] [blame] | 910 | #if !defined(CONFIG_USB_GADGET_DUALSPEED) |
| 911 | /* Port force Full-Speed Connect */ |
| 912 | setbits_le32(&udc->portsc, PFSC); |
| 913 | #endif |
| 914 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 915 | writel(0xffffffff, &udc->epflush); |
| 916 | |
| 917 | /* Turn on the USB connection by enabling the pullup resistor */ |
Ramon Fried | 30b3241 | 2018-09-21 13:35:56 +0300 | [diff] [blame] | 918 | setbits_le32(&udc->usbcmd, USBCMD_ITC(MICRO_8FRAME) | |
| 919 | USBCMD_RUN); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 920 | } else { |
Stephen Warren | 43a8f25 | 2014-06-10 11:02:35 -0600 | [diff] [blame] | 921 | udc_disconnect(); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | return 0; |
| 925 | } |
| 926 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 927 | static int ci_udc_probe(void) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 928 | { |
| 929 | struct ept_queue_head *head; |
| 930 | int i; |
Marek Vasut | ab65da1 | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 931 | |
Marek Vasut | f646317 | 2013-07-10 03:16:34 +0200 | [diff] [blame] | 932 | const int num = 2 * NUM_ENDPOINTS; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 933 | |
Marek Vasut | ab65da1 | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 934 | const int eplist_min_align = 4096; |
| 935 | const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN); |
| 936 | const int eplist_raw_sz = num * sizeof(struct ept_queue_head); |
| 937 | const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN); |
| 938 | |
| 939 | /* The QH list must be aligned to 4096 bytes. */ |
| 940 | controller.epts = memalign(eplist_align, eplist_sz); |
| 941 | if (!controller.epts) |
| 942 | return -ENOMEM; |
| 943 | memset(controller.epts, 0, eplist_sz); |
| 944 | |
Stephen Warren | 06b38fc | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 945 | controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ); |
Marek Vasut | 8a095a6 | 2013-07-10 03:16:40 +0200 | [diff] [blame] | 946 | if (!controller.items_mem) { |
| 947 | free(controller.epts); |
| 948 | return -ENOMEM; |
| 949 | } |
Stephen Warren | 06b38fc | 2014-07-01 11:41:15 -0600 | [diff] [blame] | 950 | memset(controller.items_mem, 0, ILIST_SZ); |
Marek Vasut | 8a095a6 | 2013-07-10 03:16:40 +0200 | [diff] [blame] | 951 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 952 | for (i = 0; i < 2 * NUM_ENDPOINTS; i++) { |
| 953 | /* |
Marek Vasut | ab65da1 | 2013-07-10 03:16:37 +0200 | [diff] [blame] | 954 | * Configure QH for each endpoint. The structure of the QH list |
| 955 | * is such that each two subsequent fields, N and N+1 where N is |
| 956 | * even, in the QH list represent QH for one endpoint. The Nth |
| 957 | * entry represents OUT configuration and the N+1th entry does |
| 958 | * represent IN configuration of the endpoint. |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 959 | */ |
Marek Vasut | ab52df1 | 2013-07-10 03:16:36 +0200 | [diff] [blame] | 960 | head = controller.epts + i; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 961 | if (i < 2) |
| 962 | head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE) |
| 963 | | CONFIG_ZLT | CONFIG_IOS; |
| 964 | else |
| 965 | head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE) |
| 966 | | CONFIG_ZLT; |
| 967 | head->next = TERMINATE; |
| 968 | head->info = 0; |
| 969 | |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 970 | if (i & 1) { |
Stephen Warren | d7beeb9 | 2014-07-01 11:41:13 -0600 | [diff] [blame] | 971 | ci_flush_qh(i / 2); |
| 972 | ci_flush_qtd(i / 2); |
Marek Vasut | f19a343 | 2013-07-10 03:16:42 +0200 | [diff] [blame] | 973 | } |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | INIT_LIST_HEAD(&controller.gadget.ep_list); |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 977 | |
| 978 | /* Init EP 0 */ |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 979 | memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init)); |
Stephen Warren | 054731b | 2014-05-29 14:53:01 -0600 | [diff] [blame] | 980 | controller.ep[0].desc = &ep0_desc; |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 981 | INIT_LIST_HEAD(&controller.ep[0].queue); |
| 982 | controller.ep[0].req_primed = false; |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 983 | controller.gadget.ep0 = &controller.ep[0].ep; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 984 | INIT_LIST_HEAD(&controller.gadget.ep0->ep_list); |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 985 | |
Siva Durga Prasad Paladugu | 6a13241 | 2015-04-29 10:42:10 +0530 | [diff] [blame] | 986 | /* Init EP 1..3 */ |
| 987 | for (i = 1; i < 4; i++) { |
| 988 | memcpy(&controller.ep[i].ep, &ci_ep_init[i], |
| 989 | sizeof(*ci_ep_init)); |
| 990 | INIT_LIST_HEAD(&controller.ep[i].queue); |
| 991 | controller.ep[i].req_primed = false; |
| 992 | list_add_tail(&controller.ep[i].ep.ep_list, |
| 993 | &controller.gadget.ep_list); |
| 994 | } |
| 995 | |
| 996 | /* Init EP 4..n */ |
| 997 | for (i = 4; i < NUM_ENDPOINTS; i++) { |
| 998 | memcpy(&controller.ep[i].ep, &ci_ep_init[4], |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 999 | sizeof(*ci_ep_init)); |
Stephen Warren | 2813006 | 2014-05-05 17:48:11 -0600 | [diff] [blame] | 1000 | INIT_LIST_HEAD(&controller.ep[i].queue); |
| 1001 | controller.ep[i].req_primed = false; |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1002 | list_add_tail(&controller.ep[i].ep.ep_list, |
| 1003 | &controller.gadget.ep_list); |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1004 | } |
Marek Vasut | 2ea4b44 | 2013-07-10 03:16:30 +0200 | [diff] [blame] | 1005 | |
Stephen Warren | a2d8f92 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 1006 | ci_ep_alloc_request(&controller.ep[0].ep, 0); |
| 1007 | if (!controller.ep0_req) { |
Stephen Warren | 9a7d34b | 2014-06-10 11:02:37 -0600 | [diff] [blame] | 1008 | free(controller.items_mem); |
Stephen Warren | a2d8f92 | 2014-05-29 14:53:02 -0600 | [diff] [blame] | 1009 | free(controller.epts); |
| 1010 | return -ENOMEM; |
| 1011 | } |
| 1012 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1013 | return 0; |
| 1014 | } |
| 1015 | |
| 1016 | int usb_gadget_register_driver(struct usb_gadget_driver *driver) |
| 1017 | { |
Marek Vasut | be7ed25 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1018 | int ret; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1019 | |
Marek Vasut | d766303 | 2013-07-10 03:16:33 +0200 | [diff] [blame] | 1020 | if (!driver) |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1021 | return -EINVAL; |
Marek Vasut | d766303 | 2013-07-10 03:16:33 +0200 | [diff] [blame] | 1022 | if (!driver->bind || !driver->setup || !driver->disconnect) |
| 1023 | return -EINVAL; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1024 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1025 | #if CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | fbeceb2 | 2015-03-25 12:22:32 -0600 | [diff] [blame] | 1026 | ret = usb_setup_ehci_gadget(&controller.ctrl); |
| 1027 | #else |
Troy Kisky | 06d513e | 2013-10-10 15:27:56 -0700 | [diff] [blame] | 1028 | ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl); |
Simon Glass | fbeceb2 | 2015-03-25 12:22:32 -0600 | [diff] [blame] | 1029 | #endif |
Marek Vasut | be7ed25 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1030 | if (ret) |
| 1031 | return ret; |
| 1032 | |
Marek Vasut | f016f8c | 2014-02-06 02:43:45 +0100 | [diff] [blame] | 1033 | ret = ci_udc_probe(); |
Ye.Li | 8991fde | 2015-12-31 15:24:45 +0800 | [diff] [blame] | 1034 | if (ret) { |
| 1035 | DBG("udc probe failed, returned %d\n", ret); |
| 1036 | return ret; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1037 | } |
Marek Vasut | be7ed25 | 2013-07-10 03:16:32 +0200 | [diff] [blame] | 1038 | |
| 1039 | ret = driver->bind(&controller.gadget); |
| 1040 | if (ret) { |
| 1041 | DBG("driver->bind() returned %d\n", ret); |
| 1042 | return ret; |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1043 | } |
| 1044 | controller.driver = driver; |
| 1045 | |
| 1046 | return 0; |
| 1047 | } |
| 1048 | |
| 1049 | int usb_gadget_unregister_driver(struct usb_gadget_driver *driver) |
| 1050 | { |
Stephen Warren | b7c0051 | 2014-06-10 11:02:38 -0600 | [diff] [blame] | 1051 | udc_disconnect(); |
| 1052 | |
Stephen Warren | fb22ae6 | 2014-06-23 12:02:48 -0600 | [diff] [blame] | 1053 | driver->unbind(&controller.gadget); |
| 1054 | controller.driver = NULL; |
| 1055 | |
Stephen Warren | b7c0051 | 2014-06-10 11:02:38 -0600 | [diff] [blame] | 1056 | ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req); |
| 1057 | free(controller.items_mem); |
| 1058 | free(controller.epts); |
| 1059 | |
Ye Li | 1468a1c | 2020-06-29 10:12:59 +0800 | [diff] [blame] | 1060 | #if CONFIG_IS_ENABLED(DM_USB) |
| 1061 | usb_remove_ehci_gadget(&controller.ctrl); |
| 1062 | #else |
| 1063 | usb_lowlevel_stop(0); |
| 1064 | controller.ctrl = NULL; |
| 1065 | #endif |
| 1066 | |
Lei Wen | 26cc512 | 2011-10-05 08:11:40 -0700 | [diff] [blame] | 1067 | return 0; |
| 1068 | } |
Stephen Warren | 842ef9a | 2014-08-25 14:02:15 -0600 | [diff] [blame] | 1069 | |
| 1070 | bool dfu_usb_get_reset(void) |
| 1071 | { |
| 1072 | struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; |
| 1073 | |
| 1074 | return !!(readl(&udc->usbsts) & STS_URI); |
| 1075 | } |