2 * (C) Copyright 2008 - 2009
3 * Windriver, <www.windriver.com>
4 * Tom Rix <Tom.Rix@windriver.com>
6 * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 * Copyright 2014 Linaro, Ltd.
9 * Rob Herring <robh@kernel.org>
11 * SPDX-License-Identifier: GPL-2.0+
17 #include <linux/usb/ch9.h>
18 #include <linux/usb/gadget.h>
19 #include <linux/usb/composite.h>
20 #include <linux/compiler.h>
23 #ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
27 #define FASTBOOT_VERSION "0.4"
29 #define FASTBOOT_INTERFACE_CLASS 0xff
30 #define FASTBOOT_INTERFACE_SUB_CLASS 0x42
31 #define FASTBOOT_INTERFACE_PROTOCOL 0x03
33 #define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_2_0 (0x0200)
34 #define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_1_1 (0x0040)
35 #define TX_ENDPOINT_MAXIMUM_PACKET_SIZE (0x0040)
37 /* The 64 defined bytes plus \0 */
38 #define RESPONSE_LEN (64 + 1)
40 #define EP_BUFFER_SIZE 4096
43 struct usb_function usb_function;
45 /* IN/OUT EP's and corresponding requests */
46 struct usb_ep *in_ep, *out_ep;
47 struct usb_request *in_req, *out_req;
50 static inline struct f_fastboot *func_to_fastboot(struct usb_function *f)
52 return container_of(f, struct f_fastboot, usb_function);
55 static struct f_fastboot *fastboot_func;
56 static unsigned int download_size;
57 static unsigned int download_bytes;
58 static bool is_high_speed;
60 static struct usb_endpoint_descriptor fs_ep_in = {
61 .bLength = USB_DT_ENDPOINT_SIZE,
62 .bDescriptorType = USB_DT_ENDPOINT,
63 .bEndpointAddress = USB_DIR_IN,
64 .bmAttributes = USB_ENDPOINT_XFER_BULK,
65 .wMaxPacketSize = TX_ENDPOINT_MAXIMUM_PACKET_SIZE,
69 static struct usb_endpoint_descriptor fs_ep_out = {
70 .bLength = USB_DT_ENDPOINT_SIZE,
71 .bDescriptorType = USB_DT_ENDPOINT,
72 .bEndpointAddress = USB_DIR_OUT,
73 .bmAttributes = USB_ENDPOINT_XFER_BULK,
74 .wMaxPacketSize = RX_ENDPOINT_MAXIMUM_PACKET_SIZE_1_1,
78 static struct usb_endpoint_descriptor hs_ep_out = {
79 .bLength = USB_DT_ENDPOINT_SIZE,
80 .bDescriptorType = USB_DT_ENDPOINT,
81 .bEndpointAddress = USB_DIR_OUT,
82 .bmAttributes = USB_ENDPOINT_XFER_BULK,
83 .wMaxPacketSize = RX_ENDPOINT_MAXIMUM_PACKET_SIZE_2_0,
87 static struct usb_interface_descriptor interface_desc = {
88 .bLength = USB_DT_INTERFACE_SIZE,
89 .bDescriptorType = USB_DT_INTERFACE,
90 .bInterfaceNumber = 0x00,
91 .bAlternateSetting = 0x00,
92 .bNumEndpoints = 0x02,
93 .bInterfaceClass = FASTBOOT_INTERFACE_CLASS,
94 .bInterfaceSubClass = FASTBOOT_INTERFACE_SUB_CLASS,
95 .bInterfaceProtocol = FASTBOOT_INTERFACE_PROTOCOL,
98 static struct usb_descriptor_header *fb_runtime_descs[] = {
99 (struct usb_descriptor_header *)&interface_desc,
100 (struct usb_descriptor_header *)&fs_ep_in,
101 (struct usb_descriptor_header *)&hs_ep_out,
106 * static strings, in UTF-8
108 static const char fastboot_name[] = "Android Fastboot";
110 static struct usb_string fastboot_string_defs[] = {
111 [0].s = fastboot_name,
112 { } /* end of list */
115 static struct usb_gadget_strings stringtab_fastboot = {
116 .language = 0x0409, /* en-us */
117 .strings = fastboot_string_defs,
120 static struct usb_gadget_strings *fastboot_strings[] = {
125 static void rx_handler_command(struct usb_ep *ep, struct usb_request *req);
127 static void fastboot_complete(struct usb_ep *ep, struct usb_request *req)
129 int status = req->status;
132 printf("status: %d ep '%s' trans: %d\n", status, ep->name, req->actual);
135 static int fastboot_bind(struct usb_configuration *c, struct usb_function *f)
138 struct usb_gadget *gadget = c->cdev->gadget;
139 struct f_fastboot *f_fb = func_to_fastboot(f);
142 /* DYNAMIC interface numbers assignments */
143 id = usb_interface_id(c, f);
146 interface_desc.bInterfaceNumber = id;
148 id = usb_string_id(c->cdev);
151 fastboot_string_defs[0].id = id;
152 interface_desc.iInterface = id;
154 f_fb->in_ep = usb_ep_autoconfig(gadget, &fs_ep_in);
157 f_fb->in_ep->driver_data = c->cdev;
159 f_fb->out_ep = usb_ep_autoconfig(gadget, &fs_ep_out);
162 f_fb->out_ep->driver_data = c->cdev;
164 hs_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress;
166 s = getenv("serial#");
168 g_dnl_set_serialnumber((char *)s);
173 static void fastboot_unbind(struct usb_configuration *c, struct usb_function *f)
175 memset(fastboot_func, 0, sizeof(*fastboot_func));
178 static void fastboot_disable(struct usb_function *f)
180 struct f_fastboot *f_fb = func_to_fastboot(f);
182 usb_ep_disable(f_fb->out_ep);
183 usb_ep_disable(f_fb->in_ep);
186 free(f_fb->out_req->buf);
187 usb_ep_free_request(f_fb->out_ep, f_fb->out_req);
188 f_fb->out_req = NULL;
191 free(f_fb->in_req->buf);
192 usb_ep_free_request(f_fb->in_ep, f_fb->in_req);
197 static struct usb_request *fastboot_start_ep(struct usb_ep *ep)
199 struct usb_request *req;
201 req = usb_ep_alloc_request(ep, 0);
205 req->length = EP_BUFFER_SIZE;
206 req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE, EP_BUFFER_SIZE);
208 usb_ep_free_request(ep, req);
212 memset(req->buf, 0, req->length);
216 static int fastboot_set_alt(struct usb_function *f,
217 unsigned interface, unsigned alt)
220 struct usb_composite_dev *cdev = f->config->cdev;
221 struct usb_gadget *gadget = cdev->gadget;
222 struct f_fastboot *f_fb = func_to_fastboot(f);
224 debug("%s: func: %s intf: %d alt: %d\n",
225 __func__, f->name, interface, alt);
227 /* make sure we don't enable the ep twice */
228 if (gadget->speed == USB_SPEED_HIGH) {
229 ret = usb_ep_enable(f_fb->out_ep, &hs_ep_out);
230 is_high_speed = true;
232 ret = usb_ep_enable(f_fb->out_ep, &fs_ep_out);
233 is_high_speed = false;
236 puts("failed to enable out ep\n");
240 f_fb->out_req = fastboot_start_ep(f_fb->out_ep);
241 if (!f_fb->out_req) {
242 puts("failed to alloc out req\n");
246 f_fb->out_req->complete = rx_handler_command;
248 ret = usb_ep_enable(f_fb->in_ep, &fs_ep_in);
250 puts("failed to enable in ep\n");
254 f_fb->in_req = fastboot_start_ep(f_fb->in_ep);
256 puts("failed alloc req in\n");
260 f_fb->in_req->complete = fastboot_complete;
262 ret = usb_ep_queue(f_fb->out_ep, f_fb->out_req, 0);
272 static int fastboot_add(struct usb_configuration *c)
274 struct f_fastboot *f_fb = fastboot_func;
277 debug("%s: cdev: 0x%p\n", __func__, c->cdev);
280 f_fb = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*f_fb));
284 fastboot_func = f_fb;
285 memset(f_fb, 0, sizeof(*f_fb));
288 f_fb->usb_function.name = "f_fastboot";
289 f_fb->usb_function.hs_descriptors = fb_runtime_descs;
290 f_fb->usb_function.bind = fastboot_bind;
291 f_fb->usb_function.unbind = fastboot_unbind;
292 f_fb->usb_function.set_alt = fastboot_set_alt;
293 f_fb->usb_function.disable = fastboot_disable;
294 f_fb->usb_function.strings = fastboot_strings;
296 status = usb_add_function(c, &f_fb->usb_function);
299 fastboot_func = f_fb;
304 DECLARE_GADGET_BIND_CALLBACK(usb_dnl_fastboot, fastboot_add);
306 static int fastboot_tx_write(const char *buffer, unsigned int buffer_size)
308 struct usb_request *in_req = fastboot_func->in_req;
311 memcpy(in_req->buf, buffer, buffer_size);
312 in_req->length = buffer_size;
313 ret = usb_ep_queue(fastboot_func->in_ep, in_req, 0);
315 printf("Error %d on queue\n", ret);
319 static int fastboot_tx_write_str(const char *buffer)
321 return fastboot_tx_write(buffer, strlen(buffer));
324 static void compl_do_reset(struct usb_ep *ep, struct usb_request *req)
326 do_reset(NULL, 0, 0, NULL);
329 static void cb_reboot(struct usb_ep *ep, struct usb_request *req)
331 fastboot_func->in_req->complete = compl_do_reset;
332 fastboot_tx_write_str("OKAY");
335 static int strcmp_l1(const char *s1, const char *s2)
339 return strncmp(s1, s2, strlen(s1));
342 static void cb_getvar(struct usb_ep *ep, struct usb_request *req)
344 char *cmd = req->buf;
345 char response[RESPONSE_LEN];
349 strcpy(response, "OKAY");
350 chars_left = sizeof(response) - strlen(response) - 1;
354 error("missing variable\n");
355 fastboot_tx_write_str("FAILmissing var");
359 if (!strcmp_l1("version", cmd)) {
360 strncat(response, FASTBOOT_VERSION, chars_left);
361 } else if (!strcmp_l1("bootloader-version", cmd)) {
362 strncat(response, U_BOOT_VERSION, chars_left);
363 } else if (!strcmp_l1("downloadsize", cmd) ||
364 !strcmp_l1("max-download-size", cmd)) {
367 sprintf(str_num, "0x%08x", CONFIG_USB_FASTBOOT_BUF_SIZE);
368 strncat(response, str_num, chars_left);
369 } else if (!strcmp_l1("serialno", cmd)) {
370 s = getenv("serial#");
372 strncat(response, s, chars_left);
374 strcpy(response, "FAILValue not set");
376 error("unknown variable: %s\n", cmd);
377 strcpy(response, "FAILVariable not implemented");
379 fastboot_tx_write_str(response);
382 static unsigned int rx_bytes_expected(unsigned int maxpacket)
384 int rx_remain = download_size - download_bytes;
388 if (rx_remain > EP_BUFFER_SIZE)
389 return EP_BUFFER_SIZE;
390 if (rx_remain < maxpacket) {
391 rx_remain = maxpacket;
392 } else if (rx_remain % maxpacket != 0) {
393 rem = rx_remain % maxpacket;
394 rx_remain = rx_remain + (maxpacket - rem);
399 #define BYTES_PER_DOT 0x20000
400 static void rx_handler_dl_image(struct usb_ep *ep, struct usb_request *req)
402 char response[RESPONSE_LEN];
403 unsigned int transfer_size = download_size - download_bytes;
404 const unsigned char *buffer = req->buf;
405 unsigned int buffer_size = req->actual;
406 unsigned int pre_dot_num, now_dot_num;
409 if (req->status != 0) {
410 printf("Bad status: %d\n", req->status);
414 if (buffer_size < transfer_size)
415 transfer_size = buffer_size;
417 memcpy((void *)CONFIG_USB_FASTBOOT_BUF_ADDR + download_bytes,
418 buffer, transfer_size);
420 pre_dot_num = download_bytes / BYTES_PER_DOT;
421 download_bytes += transfer_size;
422 now_dot_num = download_bytes / BYTES_PER_DOT;
424 if (pre_dot_num != now_dot_num) {
426 if (!(now_dot_num % 74))
430 /* Check if transfer is done */
431 if (download_bytes >= download_size) {
433 * Reset global transfer variable, keep download_bytes because
434 * it will be used in the next possible flashing command
437 req->complete = rx_handler_command;
438 req->length = EP_BUFFER_SIZE;
440 sprintf(response, "OKAY");
441 fastboot_tx_write_str(response);
443 printf("\ndownloading of %d bytes finished\n", download_bytes);
445 max = is_high_speed ? hs_ep_out.wMaxPacketSize :
446 fs_ep_out.wMaxPacketSize;
447 req->length = rx_bytes_expected(max);
448 if (req->length < ep->maxpacket)
449 req->length = ep->maxpacket;
453 usb_ep_queue(ep, req, 0);
456 static void cb_download(struct usb_ep *ep, struct usb_request *req)
458 char *cmd = req->buf;
459 char response[RESPONSE_LEN];
463 download_size = simple_strtoul(cmd, NULL, 16);
466 printf("Starting download of %d bytes\n", download_size);
468 if (0 == download_size) {
469 sprintf(response, "FAILdata invalid size");
470 } else if (download_size > CONFIG_USB_FASTBOOT_BUF_SIZE) {
472 sprintf(response, "FAILdata too large");
474 sprintf(response, "DATA%08x", download_size);
475 req->complete = rx_handler_dl_image;
476 max = is_high_speed ? hs_ep_out.wMaxPacketSize :
477 fs_ep_out.wMaxPacketSize;
478 req->length = rx_bytes_expected(max);
479 if (req->length < ep->maxpacket)
480 req->length = ep->maxpacket;
482 fastboot_tx_write_str(response);
485 static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req)
487 char boot_addr_start[12];
488 char *bootm_args[] = { "bootm", boot_addr_start, NULL };
490 puts("Booting kernel..\n");
492 sprintf(boot_addr_start, "0x%lx", load_addr);
493 do_bootm(NULL, 0, 2, bootm_args);
495 /* This only happens if image is somehow faulty so we start over */
496 do_reset(NULL, 0, 0, NULL);
499 static void cb_boot(struct usb_ep *ep, struct usb_request *req)
501 fastboot_func->in_req->complete = do_bootm_on_complete;
502 fastboot_tx_write_str("OKAY");
505 static void do_exit_on_complete(struct usb_ep *ep, struct usb_request *req)
507 g_dnl_trigger_detach();
510 static void cb_continue(struct usb_ep *ep, struct usb_request *req)
512 fastboot_func->in_req->complete = do_exit_on_complete;
513 fastboot_tx_write_str("OKAY");
516 #ifdef CONFIG_FASTBOOT_FLASH
517 static void cb_flash(struct usb_ep *ep, struct usb_request *req)
519 char *cmd = req->buf;
520 char response[RESPONSE_LEN];
524 error("missing partition name\n");
525 fastboot_tx_write_str("FAILmissing partition name");
529 strcpy(response, "FAILno flash device defined");
530 #ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
531 fb_mmc_flash_write(cmd, (void *)CONFIG_USB_FASTBOOT_BUF_ADDR,
532 download_bytes, response);
534 fastboot_tx_write_str(response);
538 static void cb_oem(struct usb_ep *ep, struct usb_request *req)
540 char *cmd = req->buf;
541 #ifdef CONFIG_FASTBOOT_FLASH
542 if (strncmp("format", cmd + 4, 6) == 0) {
544 sprintf(cmdbuf, "gpt write mmc %x $partitions",
545 CONFIG_FASTBOOT_FLASH_MMC_DEV);
546 if (run_command(cmdbuf, 0))
547 fastboot_tx_write_str("FAIL");
549 fastboot_tx_write_str("OKAY");
552 if (strncmp("unlock", cmd + 4, 8) == 0) {
553 fastboot_tx_write_str("FAILnot implemented");
556 fastboot_tx_write_str("FAILunknown oem command");
560 #ifdef CONFIG_FASTBOOT_FLASH
561 static void cb_erase(struct usb_ep *ep, struct usb_request *req)
563 char *cmd = req->buf;
564 char response[RESPONSE_LEN];
568 error("missing partition name");
569 fastboot_tx_write_str("FAILmissing partition name");
573 strcpy(response, "FAILno flash device defined");
575 #ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
576 fb_mmc_erase(cmd, response);
578 fastboot_tx_write_str(response);
582 struct cmd_dispatch_info {
584 void (*cb)(struct usb_ep *ep, struct usb_request *req);
587 static const struct cmd_dispatch_info cmd_dispatch_info[] = {
604 #ifdef CONFIG_FASTBOOT_FLASH
619 static void rx_handler_command(struct usb_ep *ep, struct usb_request *req)
621 char *cmdbuf = req->buf;
622 void (*func_cb)(struct usb_ep *ep, struct usb_request *req) = NULL;
625 for (i = 0; i < ARRAY_SIZE(cmd_dispatch_info); i++) {
626 if (!strcmp_l1(cmd_dispatch_info[i].cmd, cmdbuf)) {
627 func_cb = cmd_dispatch_info[i].cb;
633 error("unknown command: %s\n", cmdbuf);
634 fastboot_tx_write_str("FAILunknown command");
636 if (req->actual < req->length) {
637 u8 *buf = (u8 *)req->buf;
638 buf[req->actual] = 0;
641 error("buffer overflow\n");
642 fastboot_tx_write_str("FAILbuffer overflow");
646 if (req->status == 0) {
649 usb_ep_queue(ep, req, 0);