blob: 8ba55aab9f8fd96b78cb0af4aaad0fa0b93690a1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sebastian Siewior9d4471e2014-05-05 15:08:10 -05002/*
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 Siewior9d4471e2014-05-05 15:08:10 -050011 */
Simon Glassed38aef2020-05-10 11:40:03 -060012#include <command.h>
Steve Rae56ad7922014-08-26 11:47:29 -070013#include <config.h>
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050014#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060015#include <env.h>
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050016#include <errno.h>
Maxime Ripard00e8eb72015-10-15 14:34:13 +020017#include <fastboot.h>
Simon Glass0f2af882020-05-10 11:40:05 -060018#include <log.h>
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050019#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 Siewior9d4471e2014-05-05 15:08:10 -050024#include <g_dnl.h>
25
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050026#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 Siewior9d4471e2014-05-05 15:08:10 -050034#define EP_BUFFER_SIZE 4096
Roger Quadrosaefb0212016-04-19 10:16:59 +030035/*
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 Siewior9d4471e2014-05-05 15:08:10 -050040
41struct f_fastboot {
42 struct usb_function usb_function;
43
Steve Rae56ad7922014-08-26 11:47:29 -070044 /* IN/OUT EP's and corresponding requests */
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050045 struct usb_ep *in_ep, *out_ep;
46 struct usb_request *in_req, *out_req;
47};
48
Li Jun2afadd62021-01-25 21:43:51 +080049static char fb_ext_prop_name[] = "DeviceInterfaceGUID";
50static char fb_ext_prop_data[] = "{4866319A-F4D6-4374-93B9-DC2DEB361BA9}";
51
52static 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" */
59static char fb_cid[16] = {'W', 'I', 'N', 'U', 'S', 'B'};
60static struct usb_os_desc fb_os_desc = {
61 .ext_compat_id = fb_cid,
62};
63
64static struct usb_os_desc_table fb_os_desc_table = {
65 .os_desc = &fb_os_desc,
66};
67
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050068static inline struct f_fastboot *func_to_fastboot(struct usb_function *f)
69{
70 return container_of(f, struct f_fastboot, usb_function);
71}
72
73static struct f_fastboot *fastboot_func;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050074
75static 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 Quadrosbf4b41a2016-04-12 15:51:48 +030080 .wMaxPacketSize = cpu_to_le16(64),
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050081};
82
83static 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 Quadrosbf4b41a2016-04-12 15:51:48 +030088 .wMaxPacketSize = cpu_to_le16(64),
Sebastian Siewior9d4471e2014-05-05 15:08:10 -050089};
90
Roger Quadrosbf4b41a2016-04-12 15:51:48 +030091static 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 Siewior9d4471e2014-05-05 15:08:10 -050099static 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 Quadrosbf4b41a2016-04-12 15:51:48 +0300104 .wMaxPacketSize = cpu_to_le16(512),
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500105};
106
107static 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 Quadrosbf4b41a2016-04-12 15:51:48 +0300118static struct usb_descriptor_header *fb_fs_function[] = {
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500119 (struct usb_descriptor_header *)&interface_desc,
120 (struct usb_descriptor_header *)&fs_ep_in,
Roger Quadrosbf4b41a2016-04-12 15:51:48 +0300121 (struct usb_descriptor_header *)&fs_ep_out,
122};
123
124static struct usb_descriptor_header *fb_hs_function[] = {
125 (struct usb_descriptor_header *)&interface_desc,
126 (struct usb_descriptor_header *)&hs_ep_in,
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500127 (struct usb_descriptor_header *)&hs_ep_out,
128 NULL,
129};
130
Li Jun394d0092021-01-25 21:43:55 +0800131/* Super speed */
132static struct usb_endpoint_descriptor ss_ep_in = {
133 .bLength = USB_DT_ENDPOINT_SIZE,
134 .bDescriptorType = USB_DT_ENDPOINT,
135 .bEndpointAddress = USB_DIR_IN,
136 .bmAttributes = USB_ENDPOINT_XFER_BULK,
137 .wMaxPacketSize = cpu_to_le16(1024),
138};
139
140static struct usb_endpoint_descriptor ss_ep_out = {
141 .bLength = USB_DT_ENDPOINT_SIZE,
142 .bDescriptorType = USB_DT_ENDPOINT,
143 .bEndpointAddress = USB_DIR_OUT,
144 .bmAttributes = USB_ENDPOINT_XFER_BULK,
145 .wMaxPacketSize = cpu_to_le16(1024),
146};
147
148static struct usb_ss_ep_comp_descriptor fb_ss_bulk_comp_desc = {
149 .bLength = sizeof(fb_ss_bulk_comp_desc),
150 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
151};
152
153static struct usb_descriptor_header *fb_ss_function[] = {
154 (struct usb_descriptor_header *)&interface_desc,
155 (struct usb_descriptor_header *)&ss_ep_in,
156 (struct usb_descriptor_header *)&fb_ss_bulk_comp_desc,
157 (struct usb_descriptor_header *)&ss_ep_out,
158 (struct usb_descriptor_header *)&fb_ss_bulk_comp_desc,
159 NULL,
160};
161
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300162static struct usb_endpoint_descriptor *
163fb_ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *fs,
Li Jun394d0092021-01-25 21:43:55 +0800164 struct usb_endpoint_descriptor *hs,
165 struct usb_endpoint_descriptor *ss)
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300166{
Li Jun394d0092021-01-25 21:43:55 +0800167 if (gadget_is_superspeed(g) && g->speed >= USB_SPEED_SUPER)
168 return ss;
169
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300170 if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH)
171 return hs;
172 return fs;
173}
174
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500175/*
176 * static strings, in UTF-8
177 */
178static const char fastboot_name[] = "Android Fastboot";
179
180static struct usb_string fastboot_string_defs[] = {
181 [0].s = fastboot_name,
182 { } /* end of list */
183};
184
185static struct usb_gadget_strings stringtab_fastboot = {
186 .language = 0x0409, /* en-us */
187 .strings = fastboot_string_defs,
188};
189
190static struct usb_gadget_strings *fastboot_strings[] = {
191 &stringtab_fastboot,
192 NULL,
193};
194
195static void rx_handler_command(struct usb_ep *ep, struct usb_request *req);
196
197static void fastboot_complete(struct usb_ep *ep, struct usb_request *req)
198{
199 int status = req->status;
200 if (!status)
201 return;
202 printf("status: %d ep '%s' trans: %d\n", status, ep->name, req->actual);
203}
204
205static int fastboot_bind(struct usb_configuration *c, struct usb_function *f)
206{
207 int id;
208 struct usb_gadget *gadget = c->cdev->gadget;
209 struct f_fastboot *f_fb = func_to_fastboot(f);
Dileep Katta447c9752015-02-13 14:33:43 +0800210 const char *s;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500211
212 /* DYNAMIC interface numbers assignments */
213 id = usb_interface_id(c, f);
214 if (id < 0)
215 return id;
216 interface_desc.bInterfaceNumber = id;
217
Li Jun2afadd62021-01-25 21:43:51 +0800218 /* Enable OS and Extended Properties Feature Descriptor */
219 c->cdev->use_os_string = 1;
220 f->os_desc_table = &fb_os_desc_table;
221 f->os_desc_n = 1;
222 f->os_desc_table->if_id = id;
223 INIT_LIST_HEAD(&fb_os_desc.ext_prop);
224 fb_ext_prop.name_len = strlen(fb_ext_prop.name) * 2 + 2;
225 fb_os_desc.ext_prop_len = 10 + fb_ext_prop.name_len;
226 fb_os_desc.ext_prop_count = 1;
227 fb_ext_prop.data_len = strlen(fb_ext_prop.data) * 2 + 2;
228 fb_os_desc.ext_prop_len += fb_ext_prop.data_len + 4;
229 list_add_tail(&fb_ext_prop.entry, &fb_os_desc.ext_prop);
230
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500231 id = usb_string_id(c->cdev);
232 if (id < 0)
233 return id;
234 fastboot_string_defs[0].id = id;
235 interface_desc.iInterface = id;
236
237 f_fb->in_ep = usb_ep_autoconfig(gadget, &fs_ep_in);
238 if (!f_fb->in_ep)
239 return -ENODEV;
240 f_fb->in_ep->driver_data = c->cdev;
241
242 f_fb->out_ep = usb_ep_autoconfig(gadget, &fs_ep_out);
243 if (!f_fb->out_ep)
244 return -ENODEV;
245 f_fb->out_ep->driver_data = c->cdev;
246
Roger Quadrosbf4b41a2016-04-12 15:51:48 +0300247 f->descriptors = fb_fs_function;
248
249 if (gadget_is_dualspeed(gadget)) {
250 /* Assume endpoint addresses are the same for both speeds */
251 hs_ep_in.bEndpointAddress = fs_ep_in.bEndpointAddress;
252 hs_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress;
253 /* copy HS descriptors */
254 f->hs_descriptors = fb_hs_function;
255 }
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500256
Li Jun394d0092021-01-25 21:43:55 +0800257 if (gadget_is_superspeed(gadget)) {
258 ss_ep_in.bEndpointAddress = fs_ep_in.bEndpointAddress;
259 ss_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress;
260 f->ss_descriptors = fb_ss_function;
261 }
262
Simon Glass64b723f2017-08-03 12:22:12 -0600263 s = env_get("serial#");
Dileep Katta447c9752015-02-13 14:33:43 +0800264 if (s)
265 g_dnl_set_serialnumber((char *)s);
266
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500267 return 0;
268}
269
270static void fastboot_unbind(struct usb_configuration *c, struct usb_function *f)
271{
Li Jun2afadd62021-01-25 21:43:51 +0800272 f->os_desc_table = NULL;
273 list_del(&fb_os_desc.ext_prop);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500274 memset(fastboot_func, 0, sizeof(*fastboot_func));
275}
276
277static void fastboot_disable(struct usb_function *f)
278{
279 struct f_fastboot *f_fb = func_to_fastboot(f);
280
281 usb_ep_disable(f_fb->out_ep);
282 usb_ep_disable(f_fb->in_ep);
283
284 if (f_fb->out_req) {
285 free(f_fb->out_req->buf);
286 usb_ep_free_request(f_fb->out_ep, f_fb->out_req);
287 f_fb->out_req = NULL;
288 }
289 if (f_fb->in_req) {
290 free(f_fb->in_req->buf);
291 usb_ep_free_request(f_fb->in_ep, f_fb->in_req);
292 f_fb->in_req = NULL;
293 }
294}
295
296static struct usb_request *fastboot_start_ep(struct usb_ep *ep)
297{
298 struct usb_request *req;
299
300 req = usb_ep_alloc_request(ep, 0);
301 if (!req)
302 return NULL;
303
304 req->length = EP_BUFFER_SIZE;
305 req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE, EP_BUFFER_SIZE);
306 if (!req->buf) {
307 usb_ep_free_request(ep, req);
308 return NULL;
309 }
310
311 memset(req->buf, 0, req->length);
312 return req;
313}
314
315static int fastboot_set_alt(struct usb_function *f,
316 unsigned interface, unsigned alt)
317{
318 int ret;
319 struct usb_composite_dev *cdev = f->config->cdev;
320 struct usb_gadget *gadget = cdev->gadget;
321 struct f_fastboot *f_fb = func_to_fastboot(f);
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300322 const struct usb_endpoint_descriptor *d;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500323
324 debug("%s: func: %s intf: %d alt: %d\n",
325 __func__, f->name, interface, alt);
326
Li Jun394d0092021-01-25 21:43:55 +0800327 d = fb_ep_desc(gadget, &fs_ep_out, &hs_ep_out, &ss_ep_out);
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300328 ret = usb_ep_enable(f_fb->out_ep, d);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500329 if (ret) {
330 puts("failed to enable out ep\n");
331 return ret;
332 }
333
334 f_fb->out_req = fastboot_start_ep(f_fb->out_ep);
335 if (!f_fb->out_req) {
336 puts("failed to alloc out req\n");
337 ret = -EINVAL;
338 goto err;
339 }
340 f_fb->out_req->complete = rx_handler_command;
341
Li Jun394d0092021-01-25 21:43:55 +0800342 d = fb_ep_desc(gadget, &fs_ep_in, &hs_ep_in, &ss_ep_in);
Roger Quadros9ab3fdf2016-04-13 11:30:00 +0300343 ret = usb_ep_enable(f_fb->in_ep, d);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500344 if (ret) {
345 puts("failed to enable in ep\n");
346 goto err;
347 }
348
349 f_fb->in_req = fastboot_start_ep(f_fb->in_ep);
350 if (!f_fb->in_req) {
351 puts("failed alloc req in\n");
352 ret = -EINVAL;
353 goto err;
354 }
355 f_fb->in_req->complete = fastboot_complete;
356
357 ret = usb_ep_queue(f_fb->out_ep, f_fb->out_req, 0);
358 if (ret)
359 goto err;
360
361 return 0;
362err:
363 fastboot_disable(f);
364 return ret;
365}
366
367static int fastboot_add(struct usb_configuration *c)
368{
369 struct f_fastboot *f_fb = fastboot_func;
370 int status;
371
372 debug("%s: cdev: 0x%p\n", __func__, c->cdev);
373
374 if (!f_fb) {
375 f_fb = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*f_fb));
376 if (!f_fb)
377 return -ENOMEM;
378
379 fastboot_func = f_fb;
380 memset(f_fb, 0, sizeof(*f_fb));
381 }
382
383 f_fb->usb_function.name = "f_fastboot";
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500384 f_fb->usb_function.bind = fastboot_bind;
385 f_fb->usb_function.unbind = fastboot_unbind;
386 f_fb->usb_function.set_alt = fastboot_set_alt;
387 f_fb->usb_function.disable = fastboot_disable;
388 f_fb->usb_function.strings = fastboot_strings;
389
390 status = usb_add_function(c, &f_fb->usb_function);
391 if (status) {
392 free(f_fb);
Andy Shevchenkoab81b2a2020-12-03 17:32:05 +0200393 fastboot_func = NULL;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500394 }
395
396 return status;
397}
398DECLARE_GADGET_BIND_CALLBACK(usb_dnl_fastboot, fastboot_add);
399
Steve Rae56ad7922014-08-26 11:47:29 -0700400static int fastboot_tx_write(const char *buffer, unsigned int buffer_size)
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500401{
402 struct usb_request *in_req = fastboot_func->in_req;
403 int ret;
404
405 memcpy(in_req->buf, buffer, buffer_size);
406 in_req->length = buffer_size;
Paul Kocialkowski2032bfd2015-07-04 16:46:16 +0200407
408 usb_ep_dequeue(fastboot_func->in_ep, in_req);
409
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500410 ret = usb_ep_queue(fastboot_func->in_ep, in_req, 0);
411 if (ret)
412 printf("Error %d on queue\n", ret);
413 return 0;
414}
415
416static int fastboot_tx_write_str(const char *buffer)
417{
418 return fastboot_tx_write(buffer, strlen(buffer));
419}
420
421static void compl_do_reset(struct usb_ep *ep, struct usb_request *req)
422{
423 do_reset(NULL, 0, 0, NULL);
424}
425
Roger Quadrosaefb0212016-04-19 10:16:59 +0300426static unsigned int rx_bytes_expected(struct usb_ep *ep)
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500427{
Alex Kiernane80d2942018-05-29 15:30:55 +0000428 int rx_remain = fastboot_data_remaining();
Roger Quadrosaefb0212016-04-19 10:16:59 +0300429 unsigned int rem;
Li Juna4b9f4d2021-01-25 21:43:59 +0800430 unsigned int maxpacket = usb_endpoint_maxp(ep->desc);
Roger Quadrosaefb0212016-04-19 10:16:59 +0300431
432 if (rx_remain <= 0)
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500433 return 0;
Roger Quadrosaefb0212016-04-19 10:16:59 +0300434 else if (rx_remain > EP_BUFFER_SIZE)
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500435 return EP_BUFFER_SIZE;
Roger Quadrosaefb0212016-04-19 10:16:59 +0300436
437 /*
438 * Some controllers e.g. DWC3 don't like OUT transfers to be
439 * not ending in maxpacket boundary. So just make them happy by
440 * always requesting for integral multiple of maxpackets.
441 * This shouldn't bother controllers that don't care about it.
442 */
443 rem = rx_remain % maxpacket;
444 if (rem > 0)
Dileep Katta50b4c172015-02-17 02:02:36 +0530445 rx_remain = rx_remain + (maxpacket - rem);
Roger Quadrosaefb0212016-04-19 10:16:59 +0300446
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500447 return rx_remain;
448}
449
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500450static void rx_handler_dl_image(struct usb_ep *ep, struct usb_request *req)
451{
Alex Kiernane80d2942018-05-29 15:30:55 +0000452 char response[FASTBOOT_RESPONSE_LEN] = {0};
453 unsigned int transfer_size = fastboot_data_remaining();
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500454 const unsigned char *buffer = req->buf;
455 unsigned int buffer_size = req->actual;
456
457 if (req->status != 0) {
458 printf("Bad status: %d\n", req->status);
459 return;
460 }
461
462 if (buffer_size < transfer_size)
463 transfer_size = buffer_size;
464
Alex Kiernane80d2942018-05-29 15:30:55 +0000465 fastboot_data_download(buffer, transfer_size, response);
466 if (response[0]) {
467 fastboot_tx_write_str(response);
468 } else if (!fastboot_data_remaining()) {
469 fastboot_data_complete(response);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500470
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500471 /*
Alex Kiernane80d2942018-05-29 15:30:55 +0000472 * Reset global transfer variable
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500473 */
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500474 req->complete = rx_handler_command;
475 req->length = EP_BUFFER_SIZE;
476
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500477 fastboot_tx_write_str(response);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500478 } else {
Roger Quadrosaefb0212016-04-19 10:16:59 +0300479 req->length = rx_bytes_expected(ep);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500480 }
481
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500482 req->actual = 0;
483 usb_ep_queue(ep, req, 0);
484}
485
Rob Herring5aba3982014-12-10 14:43:04 -0600486static void do_exit_on_complete(struct usb_ep *ep, struct usb_request *req)
487{
488 g_dnl_trigger_detach();
489}
490
Alex Kiernane80d2942018-05-29 15:30:55 +0000491static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req)
Rob Herring5aba3982014-12-10 14:43:04 -0600492{
Alex Kiernane80d2942018-05-29 15:30:55 +0000493 fastboot_boot();
494 do_exit_on_complete(ep, req);
Rob Herring5aba3982014-12-10 14:43:04 -0600495}
496
Heiko Schocher3a994482021-02-10 09:29:03 +0100497#if CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT)
498static void do_acmd_complete(struct usb_ep *ep, struct usb_request *req)
499{
500 /* When usb dequeue complete will be called
501 * Need status value before call run_command.
502 * otherwise, host can't get last message.
503 */
504 if (req->status == 0)
505 fastboot_acmd_complete();
506}
507#endif
508
Alex Kiernane80d2942018-05-29 15:30:55 +0000509static void rx_handler_command(struct usb_ep *ep, struct usb_request *req)
Steve Raebfb9ba42014-08-26 11:47:28 -0700510{
Alex Kiernane80d2942018-05-29 15:30:55 +0000511 char *cmdbuf = req->buf;
512 char response[FASTBOOT_RESPONSE_LEN] = {0};
513 int cmd = -1;
Steve Raebfb9ba42014-08-26 11:47:28 -0700514
Alex Kiernane80d2942018-05-29 15:30:55 +0000515 if (req->status != 0 || req->length == 0)
Steve Raebfb9ba42014-08-26 11:47:28 -0700516 return;
Steve Raebfb9ba42014-08-26 11:47:28 -0700517
Alex Kiernane80d2942018-05-29 15:30:55 +0000518 if (req->actual < req->length) {
519 cmdbuf[req->actual] = '\0';
520 cmd = fastboot_handle_command(cmdbuf, response);
521 } else {
522 pr_err("buffer overflow");
523 fastboot_fail("buffer overflow", response);
Michael Scott7e23abf2015-01-26 15:49:00 -0600524 }
Michael Scott7e23abf2015-01-26 15:49:00 -0600525
Alex Kiernane80d2942018-05-29 15:30:55 +0000526 if (!strncmp("DATA", response, 4)) {
527 req->complete = rx_handler_dl_image;
528 req->length = rx_bytes_expected(ep);
Dileep Kattab1228202015-02-17 18:48:23 +0530529 }
530
Alex Kiernane80d2942018-05-29 15:30:55 +0000531 if (!strncmp("OKAY", response, 4)) {
532 switch (cmd) {
533 case FASTBOOT_COMMAND_BOOT:
534 fastboot_func->in_req->complete = do_bootm_on_complete;
535 break;
Paul Kocialkowski4a126b62015-07-04 16:46:15 +0200536
Alex Kiernane80d2942018-05-29 15:30:55 +0000537 case FASTBOOT_COMMAND_CONTINUE:
538 fastboot_func->in_req->complete = do_exit_on_complete;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500539 break;
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500540
Alex Kiernane80d2942018-05-29 15:30:55 +0000541 case FASTBOOT_COMMAND_REBOOT:
542 case FASTBOOT_COMMAND_REBOOT_BOOTLOADER:
Roman Kovalivskyib30b97b2020-07-28 23:35:33 +0300543 case FASTBOOT_COMMAND_REBOOT_FASTBOOTD:
544 case FASTBOOT_COMMAND_REBOOT_RECOVERY:
Alex Kiernane80d2942018-05-29 15:30:55 +0000545 fastboot_func->in_req->complete = compl_do_reset;
546 break;
Heiko Schocher3a994482021-02-10 09:29:03 +0100547#if CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT)
548 case FASTBOOT_COMMAND_ACMD:
549 fastboot_func->in_req->complete = do_acmd_complete;
550 break;
551#endif
Eric Nelson3d626cd2014-10-01 14:30:56 -0700552 }
Steve Rae56ad7922014-08-26 11:47:29 -0700553 }
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500554
yurii.pidhornyi5953ffa2020-08-20 18:41:18 +0300555 fastboot_tx_write_str(response);
556
Paul Kocialkowski4a126b62015-07-04 16:46:15 +0200557 *cmdbuf = '\0';
558 req->actual = 0;
559 usb_ep_queue(ep, req, 0);
Sebastian Siewior9d4471e2014-05-05 15:08:10 -0500560}