Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 - 2009 |
| 4 | * Windriver, <www.windriver.com> |
| 5 | * Tom Rix <Tom.Rix@windriver.com> |
| 6 | * |
| 7 | * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
| 8 | * |
| 9 | * Copyright 2014 Linaro, Ltd. |
| 10 | * Rob Herring <robh@kernel.org> |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 11 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 12 | #include <command.h> |
Steve Rae | 56ad792 | 2014-08-26 11:47:29 -0700 | [diff] [blame] | 13 | #include <config.h> |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 14 | #include <common.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 15 | #include <env.h> |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 16 | #include <errno.h> |
Maxime Ripard | 00e8eb7 | 2015-10-15 14:34:13 +0200 | [diff] [blame] | 17 | #include <fastboot.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 18 | #include <log.h> |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 19 | #include <malloc.h> |
| 20 | #include <linux/usb/ch9.h> |
| 21 | #include <linux/usb/gadget.h> |
| 22 | #include <linux/usb/composite.h> |
| 23 | #include <linux/compiler.h> |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 24 | #include <g_dnl.h> |
| 25 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 26 | #define FASTBOOT_INTERFACE_CLASS 0xff |
| 27 | #define FASTBOOT_INTERFACE_SUB_CLASS 0x42 |
| 28 | #define FASTBOOT_INTERFACE_PROTOCOL 0x03 |
| 29 | |
| 30 | #define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_2_0 (0x0200) |
| 31 | #define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_1_1 (0x0040) |
| 32 | #define TX_ENDPOINT_MAXIMUM_PACKET_SIZE (0x0040) |
| 33 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 34 | #define EP_BUFFER_SIZE 4096 |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 35 | /* |
| 36 | * EP_BUFFER_SIZE must always be an integral multiple of maxpacket size |
| 37 | * (64 or 512 or 1024), else we break on certain controllers like DWC3 |
| 38 | * that expect bulk OUT requests to be divisible by maxpacket size. |
| 39 | */ |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 40 | |
| 41 | struct f_fastboot { |
| 42 | struct usb_function usb_function; |
| 43 | |
Steve Rae | 56ad792 | 2014-08-26 11:47:29 -0700 | [diff] [blame] | 44 | /* IN/OUT EP's and corresponding requests */ |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 45 | struct usb_ep *in_ep, *out_ep; |
| 46 | struct usb_request *in_req, *out_req; |
| 47 | }; |
| 48 | |
Li Jun | 2afadd6 | 2021-01-25 21:43:51 +0800 | [diff] [blame] | 49 | static char fb_ext_prop_name[] = "DeviceInterfaceGUID"; |
| 50 | static char fb_ext_prop_data[] = "{4866319A-F4D6-4374-93B9-DC2DEB361BA9}"; |
| 51 | |
| 52 | static struct usb_os_desc_ext_prop fb_ext_prop = { |
| 53 | .type = 1, /* NUL-terminated Unicode String (REG_SZ) */ |
| 54 | .name = fb_ext_prop_name, |
| 55 | .data = fb_ext_prop_data, |
| 56 | }; |
| 57 | |
| 58 | /* 16 bytes of "Compatible ID" and "Subcompatible ID" */ |
| 59 | static char fb_cid[16] = {'W', 'I', 'N', 'U', 'S', 'B'}; |
| 60 | static struct usb_os_desc fb_os_desc = { |
| 61 | .ext_compat_id = fb_cid, |
| 62 | }; |
| 63 | |
| 64 | static struct usb_os_desc_table fb_os_desc_table = { |
| 65 | .os_desc = &fb_os_desc, |
| 66 | }; |
| 67 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 68 | static inline struct f_fastboot *func_to_fastboot(struct usb_function *f) |
| 69 | { |
| 70 | return container_of(f, struct f_fastboot, usb_function); |
| 71 | } |
| 72 | |
| 73 | static struct f_fastboot *fastboot_func; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 74 | |
| 75 | static struct usb_endpoint_descriptor fs_ep_in = { |
| 76 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 77 | .bDescriptorType = USB_DT_ENDPOINT, |
| 78 | .bEndpointAddress = USB_DIR_IN, |
| 79 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 80 | .wMaxPacketSize = cpu_to_le16(64), |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | static struct usb_endpoint_descriptor fs_ep_out = { |
| 84 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 85 | .bDescriptorType = USB_DT_ENDPOINT, |
| 86 | .bEndpointAddress = USB_DIR_OUT, |
| 87 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 88 | .wMaxPacketSize = cpu_to_le16(64), |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 89 | }; |
| 90 | |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 91 | static struct usb_endpoint_descriptor hs_ep_in = { |
| 92 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 93 | .bDescriptorType = USB_DT_ENDPOINT, |
| 94 | .bEndpointAddress = USB_DIR_IN, |
| 95 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 96 | .wMaxPacketSize = cpu_to_le16(512), |
| 97 | }; |
| 98 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 99 | static struct usb_endpoint_descriptor hs_ep_out = { |
| 100 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 101 | .bDescriptorType = USB_DT_ENDPOINT, |
| 102 | .bEndpointAddress = USB_DIR_OUT, |
| 103 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 104 | .wMaxPacketSize = cpu_to_le16(512), |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static struct usb_interface_descriptor interface_desc = { |
| 108 | .bLength = USB_DT_INTERFACE_SIZE, |
| 109 | .bDescriptorType = USB_DT_INTERFACE, |
| 110 | .bInterfaceNumber = 0x00, |
| 111 | .bAlternateSetting = 0x00, |
| 112 | .bNumEndpoints = 0x02, |
| 113 | .bInterfaceClass = FASTBOOT_INTERFACE_CLASS, |
| 114 | .bInterfaceSubClass = FASTBOOT_INTERFACE_SUB_CLASS, |
| 115 | .bInterfaceProtocol = FASTBOOT_INTERFACE_PROTOCOL, |
| 116 | }; |
| 117 | |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 118 | static struct usb_descriptor_header *fb_fs_function[] = { |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 119 | (struct usb_descriptor_header *)&interface_desc, |
| 120 | (struct usb_descriptor_header *)&fs_ep_in, |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 121 | (struct usb_descriptor_header *)&fs_ep_out, |
qianfan Zhao | 64b3169 | 2022-08-22 09:18:31 +0800 | [diff] [blame] | 122 | NULL, |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | static struct usb_descriptor_header *fb_hs_function[] = { |
| 126 | (struct usb_descriptor_header *)&interface_desc, |
| 127 | (struct usb_descriptor_header *)&hs_ep_in, |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 128 | (struct usb_descriptor_header *)&hs_ep_out, |
| 129 | NULL, |
| 130 | }; |
| 131 | |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 132 | /* Super speed */ |
| 133 | static struct usb_endpoint_descriptor ss_ep_in = { |
| 134 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 135 | .bDescriptorType = USB_DT_ENDPOINT, |
| 136 | .bEndpointAddress = USB_DIR_IN, |
| 137 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 138 | .wMaxPacketSize = cpu_to_le16(1024), |
| 139 | }; |
| 140 | |
| 141 | static struct usb_endpoint_descriptor ss_ep_out = { |
| 142 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 143 | .bDescriptorType = USB_DT_ENDPOINT, |
| 144 | .bEndpointAddress = USB_DIR_OUT, |
| 145 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 146 | .wMaxPacketSize = cpu_to_le16(1024), |
| 147 | }; |
| 148 | |
| 149 | static struct usb_ss_ep_comp_descriptor fb_ss_bulk_comp_desc = { |
| 150 | .bLength = sizeof(fb_ss_bulk_comp_desc), |
| 151 | .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, |
| 152 | }; |
| 153 | |
| 154 | static struct usb_descriptor_header *fb_ss_function[] = { |
| 155 | (struct usb_descriptor_header *)&interface_desc, |
| 156 | (struct usb_descriptor_header *)&ss_ep_in, |
| 157 | (struct usb_descriptor_header *)&fb_ss_bulk_comp_desc, |
| 158 | (struct usb_descriptor_header *)&ss_ep_out, |
| 159 | (struct usb_descriptor_header *)&fb_ss_bulk_comp_desc, |
| 160 | NULL, |
| 161 | }; |
| 162 | |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 163 | static struct usb_endpoint_descriptor * |
| 164 | fb_ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *fs, |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 165 | struct usb_endpoint_descriptor *hs, |
| 166 | struct usb_endpoint_descriptor *ss) |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 167 | { |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 168 | if (gadget_is_superspeed(g) && g->speed >= USB_SPEED_SUPER) |
| 169 | return ss; |
| 170 | |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 171 | if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH) |
| 172 | return hs; |
| 173 | return fs; |
| 174 | } |
| 175 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 176 | /* |
| 177 | * static strings, in UTF-8 |
| 178 | */ |
| 179 | static const char fastboot_name[] = "Android Fastboot"; |
| 180 | |
| 181 | static struct usb_string fastboot_string_defs[] = { |
| 182 | [0].s = fastboot_name, |
| 183 | { } /* end of list */ |
| 184 | }; |
| 185 | |
| 186 | static struct usb_gadget_strings stringtab_fastboot = { |
| 187 | .language = 0x0409, /* en-us */ |
| 188 | .strings = fastboot_string_defs, |
| 189 | }; |
| 190 | |
| 191 | static struct usb_gadget_strings *fastboot_strings[] = { |
| 192 | &stringtab_fastboot, |
| 193 | NULL, |
| 194 | }; |
| 195 | |
| 196 | static void rx_handler_command(struct usb_ep *ep, struct usb_request *req); |
| 197 | |
| 198 | static void fastboot_complete(struct usb_ep *ep, struct usb_request *req) |
| 199 | { |
| 200 | int status = req->status; |
| 201 | if (!status) |
| 202 | return; |
| 203 | printf("status: %d ep '%s' trans: %d\n", status, ep->name, req->actual); |
| 204 | } |
| 205 | |
| 206 | static int fastboot_bind(struct usb_configuration *c, struct usb_function *f) |
| 207 | { |
| 208 | int id; |
| 209 | struct usb_gadget *gadget = c->cdev->gadget; |
| 210 | struct f_fastboot *f_fb = func_to_fastboot(f); |
Dileep Katta | 447c975 | 2015-02-13 14:33:43 +0800 | [diff] [blame] | 211 | const char *s; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 212 | |
| 213 | /* DYNAMIC interface numbers assignments */ |
| 214 | id = usb_interface_id(c, f); |
| 215 | if (id < 0) |
| 216 | return id; |
| 217 | interface_desc.bInterfaceNumber = id; |
| 218 | |
Li Jun | 2afadd6 | 2021-01-25 21:43:51 +0800 | [diff] [blame] | 219 | /* Enable OS and Extended Properties Feature Descriptor */ |
| 220 | c->cdev->use_os_string = 1; |
| 221 | f->os_desc_table = &fb_os_desc_table; |
| 222 | f->os_desc_n = 1; |
| 223 | f->os_desc_table->if_id = id; |
| 224 | INIT_LIST_HEAD(&fb_os_desc.ext_prop); |
| 225 | fb_ext_prop.name_len = strlen(fb_ext_prop.name) * 2 + 2; |
| 226 | fb_os_desc.ext_prop_len = 10 + fb_ext_prop.name_len; |
| 227 | fb_os_desc.ext_prop_count = 1; |
| 228 | fb_ext_prop.data_len = strlen(fb_ext_prop.data) * 2 + 2; |
| 229 | fb_os_desc.ext_prop_len += fb_ext_prop.data_len + 4; |
| 230 | list_add_tail(&fb_ext_prop.entry, &fb_os_desc.ext_prop); |
| 231 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 232 | id = usb_string_id(c->cdev); |
| 233 | if (id < 0) |
| 234 | return id; |
| 235 | fastboot_string_defs[0].id = id; |
| 236 | interface_desc.iInterface = id; |
| 237 | |
| 238 | f_fb->in_ep = usb_ep_autoconfig(gadget, &fs_ep_in); |
| 239 | if (!f_fb->in_ep) |
| 240 | return -ENODEV; |
| 241 | f_fb->in_ep->driver_data = c->cdev; |
| 242 | |
| 243 | f_fb->out_ep = usb_ep_autoconfig(gadget, &fs_ep_out); |
| 244 | if (!f_fb->out_ep) |
| 245 | return -ENODEV; |
| 246 | f_fb->out_ep->driver_data = c->cdev; |
| 247 | |
Roger Quadros | bf4b41a | 2016-04-12 15:51:48 +0300 | [diff] [blame] | 248 | f->descriptors = fb_fs_function; |
| 249 | |
| 250 | if (gadget_is_dualspeed(gadget)) { |
| 251 | /* Assume endpoint addresses are the same for both speeds */ |
| 252 | hs_ep_in.bEndpointAddress = fs_ep_in.bEndpointAddress; |
| 253 | hs_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress; |
| 254 | /* copy HS descriptors */ |
| 255 | f->hs_descriptors = fb_hs_function; |
| 256 | } |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 257 | |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 258 | if (gadget_is_superspeed(gadget)) { |
| 259 | ss_ep_in.bEndpointAddress = fs_ep_in.bEndpointAddress; |
| 260 | ss_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress; |
| 261 | f->ss_descriptors = fb_ss_function; |
| 262 | } |
| 263 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 264 | s = env_get("serial#"); |
Dileep Katta | 447c975 | 2015-02-13 14:33:43 +0800 | [diff] [blame] | 265 | if (s) |
| 266 | g_dnl_set_serialnumber((char *)s); |
| 267 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static void fastboot_unbind(struct usb_configuration *c, struct usb_function *f) |
| 272 | { |
Li Jun | 2afadd6 | 2021-01-25 21:43:51 +0800 | [diff] [blame] | 273 | f->os_desc_table = NULL; |
| 274 | list_del(&fb_os_desc.ext_prop); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 275 | memset(fastboot_func, 0, sizeof(*fastboot_func)); |
| 276 | } |
| 277 | |
| 278 | static void fastboot_disable(struct usb_function *f) |
| 279 | { |
| 280 | struct f_fastboot *f_fb = func_to_fastboot(f); |
| 281 | |
| 282 | usb_ep_disable(f_fb->out_ep); |
| 283 | usb_ep_disable(f_fb->in_ep); |
| 284 | |
| 285 | if (f_fb->out_req) { |
| 286 | free(f_fb->out_req->buf); |
| 287 | usb_ep_free_request(f_fb->out_ep, f_fb->out_req); |
| 288 | f_fb->out_req = NULL; |
| 289 | } |
| 290 | if (f_fb->in_req) { |
| 291 | free(f_fb->in_req->buf); |
| 292 | usb_ep_free_request(f_fb->in_ep, f_fb->in_req); |
| 293 | f_fb->in_req = NULL; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | static struct usb_request *fastboot_start_ep(struct usb_ep *ep) |
| 298 | { |
| 299 | struct usb_request *req; |
| 300 | |
| 301 | req = usb_ep_alloc_request(ep, 0); |
| 302 | if (!req) |
| 303 | return NULL; |
| 304 | |
| 305 | req->length = EP_BUFFER_SIZE; |
| 306 | req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE, EP_BUFFER_SIZE); |
| 307 | if (!req->buf) { |
| 308 | usb_ep_free_request(ep, req); |
| 309 | return NULL; |
| 310 | } |
| 311 | |
| 312 | memset(req->buf, 0, req->length); |
| 313 | return req; |
| 314 | } |
| 315 | |
| 316 | static int fastboot_set_alt(struct usb_function *f, |
| 317 | unsigned interface, unsigned alt) |
| 318 | { |
| 319 | int ret; |
| 320 | struct usb_composite_dev *cdev = f->config->cdev; |
| 321 | struct usb_gadget *gadget = cdev->gadget; |
| 322 | struct f_fastboot *f_fb = func_to_fastboot(f); |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 323 | const struct usb_endpoint_descriptor *d; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 324 | |
| 325 | debug("%s: func: %s intf: %d alt: %d\n", |
| 326 | __func__, f->name, interface, alt); |
| 327 | |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 328 | d = fb_ep_desc(gadget, &fs_ep_out, &hs_ep_out, &ss_ep_out); |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 329 | ret = usb_ep_enable(f_fb->out_ep, d); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 330 | if (ret) { |
| 331 | puts("failed to enable out ep\n"); |
| 332 | return ret; |
| 333 | } |
| 334 | |
| 335 | f_fb->out_req = fastboot_start_ep(f_fb->out_ep); |
| 336 | if (!f_fb->out_req) { |
| 337 | puts("failed to alloc out req\n"); |
| 338 | ret = -EINVAL; |
| 339 | goto err; |
| 340 | } |
| 341 | f_fb->out_req->complete = rx_handler_command; |
| 342 | |
Li Jun | 394d009 | 2021-01-25 21:43:55 +0800 | [diff] [blame] | 343 | d = fb_ep_desc(gadget, &fs_ep_in, &hs_ep_in, &ss_ep_in); |
Roger Quadros | 9ab3fdf | 2016-04-13 11:30:00 +0300 | [diff] [blame] | 344 | ret = usb_ep_enable(f_fb->in_ep, d); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 345 | if (ret) { |
| 346 | puts("failed to enable in ep\n"); |
| 347 | goto err; |
| 348 | } |
| 349 | |
| 350 | f_fb->in_req = fastboot_start_ep(f_fb->in_ep); |
| 351 | if (!f_fb->in_req) { |
| 352 | puts("failed alloc req in\n"); |
| 353 | ret = -EINVAL; |
| 354 | goto err; |
| 355 | } |
| 356 | f_fb->in_req->complete = fastboot_complete; |
| 357 | |
| 358 | ret = usb_ep_queue(f_fb->out_ep, f_fb->out_req, 0); |
| 359 | if (ret) |
| 360 | goto err; |
| 361 | |
| 362 | return 0; |
| 363 | err: |
| 364 | fastboot_disable(f); |
| 365 | return ret; |
| 366 | } |
| 367 | |
| 368 | static int fastboot_add(struct usb_configuration *c) |
| 369 | { |
| 370 | struct f_fastboot *f_fb = fastboot_func; |
| 371 | int status; |
| 372 | |
| 373 | debug("%s: cdev: 0x%p\n", __func__, c->cdev); |
| 374 | |
| 375 | if (!f_fb) { |
| 376 | f_fb = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*f_fb)); |
| 377 | if (!f_fb) |
| 378 | return -ENOMEM; |
| 379 | |
| 380 | fastboot_func = f_fb; |
| 381 | memset(f_fb, 0, sizeof(*f_fb)); |
| 382 | } |
| 383 | |
| 384 | f_fb->usb_function.name = "f_fastboot"; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 385 | f_fb->usb_function.bind = fastboot_bind; |
| 386 | f_fb->usb_function.unbind = fastboot_unbind; |
| 387 | f_fb->usb_function.set_alt = fastboot_set_alt; |
| 388 | f_fb->usb_function.disable = fastboot_disable; |
| 389 | f_fb->usb_function.strings = fastboot_strings; |
| 390 | |
| 391 | status = usb_add_function(c, &f_fb->usb_function); |
| 392 | if (status) { |
| 393 | free(f_fb); |
Andy Shevchenko | ab81b2a | 2020-12-03 17:32:05 +0200 | [diff] [blame] | 394 | fastboot_func = NULL; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | return status; |
| 398 | } |
| 399 | DECLARE_GADGET_BIND_CALLBACK(usb_dnl_fastboot, fastboot_add); |
| 400 | |
Steve Rae | 56ad792 | 2014-08-26 11:47:29 -0700 | [diff] [blame] | 401 | static int fastboot_tx_write(const char *buffer, unsigned int buffer_size) |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 402 | { |
| 403 | struct usb_request *in_req = fastboot_func->in_req; |
| 404 | int ret; |
| 405 | |
| 406 | memcpy(in_req->buf, buffer, buffer_size); |
| 407 | in_req->length = buffer_size; |
Paul Kocialkowski | 2032bfd | 2015-07-04 16:46:16 +0200 | [diff] [blame] | 408 | |
| 409 | usb_ep_dequeue(fastboot_func->in_ep, in_req); |
| 410 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 411 | ret = usb_ep_queue(fastboot_func->in_ep, in_req, 0); |
| 412 | if (ret) |
| 413 | printf("Error %d on queue\n", ret); |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | static int fastboot_tx_write_str(const char *buffer) |
| 418 | { |
| 419 | return fastboot_tx_write(buffer, strlen(buffer)); |
| 420 | } |
| 421 | |
| 422 | static void compl_do_reset(struct usb_ep *ep, struct usb_request *req) |
| 423 | { |
| 424 | do_reset(NULL, 0, 0, NULL); |
| 425 | } |
| 426 | |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 427 | static unsigned int rx_bytes_expected(struct usb_ep *ep) |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 428 | { |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 429 | int rx_remain = fastboot_data_remaining(); |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 430 | unsigned int rem; |
Li Jun | a4b9f4d | 2021-01-25 21:43:59 +0800 | [diff] [blame] | 431 | unsigned int maxpacket = usb_endpoint_maxp(ep->desc); |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 432 | |
| 433 | if (rx_remain <= 0) |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 434 | return 0; |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 435 | else if (rx_remain > EP_BUFFER_SIZE) |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 436 | return EP_BUFFER_SIZE; |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 437 | |
| 438 | /* |
| 439 | * Some controllers e.g. DWC3 don't like OUT transfers to be |
| 440 | * not ending in maxpacket boundary. So just make them happy by |
| 441 | * always requesting for integral multiple of maxpackets. |
| 442 | * This shouldn't bother controllers that don't care about it. |
| 443 | */ |
| 444 | rem = rx_remain % maxpacket; |
| 445 | if (rem > 0) |
Dileep Katta | 50b4c17 | 2015-02-17 02:02:36 +0530 | [diff] [blame] | 446 | rx_remain = rx_remain + (maxpacket - rem); |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 447 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 448 | return rx_remain; |
| 449 | } |
| 450 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 451 | static void rx_handler_dl_image(struct usb_ep *ep, struct usb_request *req) |
| 452 | { |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 453 | char response[FASTBOOT_RESPONSE_LEN] = {0}; |
| 454 | unsigned int transfer_size = fastboot_data_remaining(); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 455 | const unsigned char *buffer = req->buf; |
| 456 | unsigned int buffer_size = req->actual; |
| 457 | |
| 458 | if (req->status != 0) { |
| 459 | printf("Bad status: %d\n", req->status); |
| 460 | return; |
| 461 | } |
| 462 | |
| 463 | if (buffer_size < transfer_size) |
| 464 | transfer_size = buffer_size; |
| 465 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 466 | fastboot_data_download(buffer, transfer_size, response); |
| 467 | if (response[0]) { |
| 468 | fastboot_tx_write_str(response); |
| 469 | } else if (!fastboot_data_remaining()) { |
| 470 | fastboot_data_complete(response); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 471 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 472 | /* |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 473 | * Reset global transfer variable |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 474 | */ |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 475 | req->complete = rx_handler_command; |
| 476 | req->length = EP_BUFFER_SIZE; |
| 477 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 478 | fastboot_tx_write_str(response); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 479 | } else { |
Roger Quadros | aefb021 | 2016-04-19 10:16:59 +0300 | [diff] [blame] | 480 | req->length = rx_bytes_expected(ep); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 481 | } |
| 482 | |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 483 | req->actual = 0; |
| 484 | usb_ep_queue(ep, req, 0); |
| 485 | } |
| 486 | |
Rob Herring | 5aba398 | 2014-12-10 14:43:04 -0600 | [diff] [blame] | 487 | static void do_exit_on_complete(struct usb_ep *ep, struct usb_request *req) |
| 488 | { |
| 489 | g_dnl_trigger_detach(); |
| 490 | } |
| 491 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 492 | static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req) |
Rob Herring | 5aba398 | 2014-12-10 14:43:04 -0600 | [diff] [blame] | 493 | { |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 494 | fastboot_boot(); |
| 495 | do_exit_on_complete(ep, req); |
Rob Herring | 5aba398 | 2014-12-10 14:43:04 -0600 | [diff] [blame] | 496 | } |
| 497 | |
Heiko Schocher | 3a99448 | 2021-02-10 09:29:03 +0100 | [diff] [blame] | 498 | #if CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT) |
| 499 | static void do_acmd_complete(struct usb_ep *ep, struct usb_request *req) |
| 500 | { |
| 501 | /* When usb dequeue complete will be called |
| 502 | * Need status value before call run_command. |
| 503 | * otherwise, host can't get last message. |
| 504 | */ |
| 505 | if (req->status == 0) |
| 506 | fastboot_acmd_complete(); |
| 507 | } |
| 508 | #endif |
| 509 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 510 | static void rx_handler_command(struct usb_ep *ep, struct usb_request *req) |
Steve Rae | bfb9ba4 | 2014-08-26 11:47:28 -0700 | [diff] [blame] | 511 | { |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 512 | char *cmdbuf = req->buf; |
| 513 | char response[FASTBOOT_RESPONSE_LEN] = {0}; |
| 514 | int cmd = -1; |
Steve Rae | bfb9ba4 | 2014-08-26 11:47:28 -0700 | [diff] [blame] | 515 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 516 | if (req->status != 0 || req->length == 0) |
Steve Rae | bfb9ba4 | 2014-08-26 11:47:28 -0700 | [diff] [blame] | 517 | return; |
Steve Rae | bfb9ba4 | 2014-08-26 11:47:28 -0700 | [diff] [blame] | 518 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 519 | if (req->actual < req->length) { |
| 520 | cmdbuf[req->actual] = '\0'; |
| 521 | cmd = fastboot_handle_command(cmdbuf, response); |
| 522 | } else { |
| 523 | pr_err("buffer overflow"); |
| 524 | fastboot_fail("buffer overflow", response); |
Michael Scott | 7e23abf | 2015-01-26 15:49:00 -0600 | [diff] [blame] | 525 | } |
Michael Scott | 7e23abf | 2015-01-26 15:49:00 -0600 | [diff] [blame] | 526 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 527 | if (!strncmp("DATA", response, 4)) { |
| 528 | req->complete = rx_handler_dl_image; |
| 529 | req->length = rx_bytes_expected(ep); |
Dileep Katta | b122820 | 2015-02-17 18:48:23 +0530 | [diff] [blame] | 530 | } |
| 531 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 532 | if (!strncmp("OKAY", response, 4)) { |
| 533 | switch (cmd) { |
| 534 | case FASTBOOT_COMMAND_BOOT: |
| 535 | fastboot_func->in_req->complete = do_bootm_on_complete; |
| 536 | break; |
Paul Kocialkowski | 4a126b6 | 2015-07-04 16:46:15 +0200 | [diff] [blame] | 537 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 538 | case FASTBOOT_COMMAND_CONTINUE: |
| 539 | fastboot_func->in_req->complete = do_exit_on_complete; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 540 | break; |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 541 | |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 542 | case FASTBOOT_COMMAND_REBOOT: |
| 543 | case FASTBOOT_COMMAND_REBOOT_BOOTLOADER: |
Roman Kovalivskyi | b30b97b | 2020-07-28 23:35:33 +0300 | [diff] [blame] | 544 | case FASTBOOT_COMMAND_REBOOT_FASTBOOTD: |
| 545 | case FASTBOOT_COMMAND_REBOOT_RECOVERY: |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 546 | fastboot_func->in_req->complete = compl_do_reset; |
Mattijs Korpershoek | e9621d8 | 2022-10-07 11:38:22 +0200 | [diff] [blame] | 547 | g_dnl_trigger_detach(); |
Alex Kiernan | e80d294 | 2018-05-29 15:30:55 +0000 | [diff] [blame] | 548 | break; |
Heiko Schocher | 3a99448 | 2021-02-10 09:29:03 +0100 | [diff] [blame] | 549 | #if CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT) |
| 550 | case FASTBOOT_COMMAND_ACMD: |
| 551 | fastboot_func->in_req->complete = do_acmd_complete; |
| 552 | break; |
| 553 | #endif |
Eric Nelson | 3d626cd | 2014-10-01 14:30:56 -0700 | [diff] [blame] | 554 | } |
Steve Rae | 56ad792 | 2014-08-26 11:47:29 -0700 | [diff] [blame] | 555 | } |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 556 | |
yurii.pidhornyi | 5953ffa | 2020-08-20 18:41:18 +0300 | [diff] [blame] | 557 | fastboot_tx_write_str(response); |
| 558 | |
Paul Kocialkowski | 4a126b6 | 2015-07-04 16:46:15 +0200 | [diff] [blame] | 559 | *cmdbuf = '\0'; |
| 560 | req->actual = 0; |
| 561 | usb_ep_queue(ep, req, 0); |
Sebastian Siewior | 9d4471e | 2014-05-05 15:08:10 -0500 | [diff] [blame] | 562 | } |