Hi Eddie, > this patch implement rockusb protocol on the device side. this is > based on USB download gadget infrastructure. the rockusb function > implements the rd, wl, rid commands. it can work with rkdeveloptool > > Signed-off-by: Eddie Cai <eddie.cai.li...@gmail.com>
I've check this code with checkpatch: lukma@jawa:~/work/embedded/u-boot-denx (github-dfu-testing)$ ./scripts/checkpatch.pl 0001-usb-rockchip-add-the-rockusb-gadget.patch No typos will be found - file '/home/lukma/work/embedded/u-boot-denx/spelling.txt': No such file or directory WARNING: missing space after enum definition #76: FILE: arch/arm/include/asm/arch-rockchip/f_rockusb.h:39: +enum rkusb_command{ WARNING: please, no spaces at the start of a line #111: FILE: arch/arm/include/asm/arch-rockchip/f_rockusb.h:74: + enum rkusb_command cmd;$ [And the list is "a bit" longer .... ] Please check all patches with checkpatch.pl before sending them to ML. I've also gave it a try with build tests [1]: https://travis-ci.org/lmajewski/u-boot-dfu/builds/228507332 It seems like it introduces some issues with other boards - for example "siemens": https://travis-ci.org/lmajewski/u-boot-dfu/jobs/228507333 Please pay attention to build your code against other boards, which use USB gadget infrastructure. For your convenience - please find attached patch to modify u-boot's vanilla version of .travis.yml file to perform build tests. Best regards, Ćukasz Majewski > > Changes in v4: > -use enum instead of macro > define -move some structure define and macro to > f_rockusb.h -add some function comment as Simon > required -address other comment from > Simon -fix build error as Lukasz point out > > Changes in v3: > -split the macro to f_rockusb.h > -use ALLOC_CACHE_ALIGN_BUFFER to define cache safe struct inside the > function. -fix checkpatch error > --- > arch/arm/include/asm/arch-rockchip/f_rockusb.h | 122 +++++ > drivers/usb/gadget/Kconfig | 6 + > drivers/usb/gadget/Makefile | 1 + > drivers/usb/gadget/f_rockusb.c | 680 > +++++++++++++++++++++++++ 4 files changed, 809 insertions(+) > create mode 100644 arch/arm/include/asm/arch-rockchip/f_rockusb.h > create mode 100644 drivers/usb/gadget/f_rockusb.c > > diff --git a/arch/arm/include/asm/arch-rockchip/f_rockusb.h > b/arch/arm/include/asm/arch-rockchip/f_rockusb.h new file mode 100644 > index 0000000..18d7c11 > --- /dev/null > +++ b/arch/arm/include/asm/arch-rockchip/f_rockusb.h > @@ -0,0 +1,122 @@ > +/* > + * (C) Copyright 2017 > + * > + * Eddie Cai <eddie.cai.li...@gmail.com> > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#ifndef __F_ROCKUSB_H > +#define __F_ROCKUSB_H > +#define ROCKUSB_VERSION "0.1" > + > +#define ROCKUSB_INTERFACE_CLASS 0xff > +#define ROCKUSB_INTERFACE_SUB_CLASS 0x06 > +#define ROCKUSB_INTERFACE_PROTOCOL 0x05 > + > +#define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_2_0 (0x0200) > +#define RX_ENDPOINT_MAXIMUM_PACKET_SIZE_1_1 (0x0040) > +#define TX_ENDPOINT_MAXIMUM_PACKET_SIZE (0x0040) > + > +#define EP_BUFFER_SIZE 4096 > +/* > + * EP_BUFFER_SIZE must always be an integral multiple of maxpacket > size > + * (64 or 512 or 1024), else we break on certain controllers like > DWC3 > + * that expect bulk OUT requests to be divisible by maxpacket size. > + */ > + > +#define CONFIG_ROCKUSB_BUF_ADDR CONFIG_SYS_LOAD_ADDR > +#define CONFIG_ROCKUSB_BUF_SIZE 0x08000000 > + > +#define RKUSB_STATUS_IDLE 0 > +#define RKUSB_STATUS_CMD 1 > +#define RKUSB_STATUS_RXDATA 2 > +#define RKUSB_STATUS_TXDATA 3 > +#define RKUSB_STATUS_CSW 4 > +#define RKUSB_STATUS_RXDATA_PREPARE 5 > +#define RKUSB_STATUS_TXDATA_PREPARE 6 > + > +enum rkusb_command{ > +K_FW_TEST_UNIT_READY = 0x00, > +K_FW_READ_FLASH_ID = 0x01, > +K_FW_SET_DEVICE_ID = 0x02, > +K_FW_TEST_BAD_BLOCK = 0x03, > +K_FW_READ_10 = 0x04, > +K_FW_WRITE_10 = 0x05, > +K_FW_ERASE_10 = 0x06, > +K_FW_WRITE_SPARE = 0x07, > +K_FW_READ_SPARE = 0x08, > + > +K_FW_ERASE_10_FORCE = 0x0b, > +K_FW_GET_VERSION = 0x0c, > + > +K_FW_LBA_READ_10 = 0x14, > +K_FW_LBA_WRITE_10 = 0x15, > +K_FW_ERASE_SYS_DISK = 0x16, > +K_FW_SDRAM_READ_10 = 0x17, > +K_FW_SDRAM_WRITE_10 = 0x18, > +K_FW_SDRAM_EXECUTE = 0x19, > +K_FW_READ_FLASH_INFO = 0x1A, > +K_FW_GET_CHIP_VER = 0x1B, > +K_FW_LOW_FORMAT = 0x1C, > +K_FW_SET_RESET_FLAG = 0x1E, > +K_FW_SPI_READ_10 = 0x21, > +K_FW_SPI_WRITE_10 = 0x22, > + > +K_FW_SESSION = 0X30, > +K_FW_RESET = 0xff, > +}; > + > +#define CBW_DIRECTION_OUT 0x00 > +#define CBW_DIRECTION_IN 0x80 > + > +struct cmd_dispatch_info { > + enum rkusb_command cmd; > + /* call back function to handle rockusb command */ > + void (*cb)(struct usb_ep *ep, struct usb_request *req); > +}; > + > +/* Bulk-only data structures */ > + > +/* Command Block Wrapper */ > +struct fsg_bulk_cb_wrap { > + __le32 signature; /* Contains 'USBC' */ > + u32 tag; /* Unique per command id */ > + __le32 data_transfer_length; /* Size of the data */ > + u8 flags; /* Direction in bit 7 */ > + u8 lun; /* lun (normally 0) */ > + u8 length; /* Of the CDB, <= > MAX_COMMAND_SIZE */ > + u8 CDB[16]; /* Command Data Block */ > +}; > + > +#define USB_BULK_CB_WRAP_LEN 31 > +#define USB_BULK_CB_SIG 0x43425355 /* Spells out USBC */ > +#define USB_BULK_IN_FLAG 0x80 > + > +/* Command status Wrapper */ > +struct bulk_cs_wrap { > + __le32 signature; /* Should = 'USBS' */ > + u32 tag; /* Same as original command > */ > + __le32 residue; /* Amount not transferred */ > + u8 status; /* See below */ > +}; > + > +#define USB_BULK_CS_WRAP_LEN 13 > +#define USB_BULK_CS_SIG 0x53425355 /* Spells out 'USBS' > */ +#define USB_STATUS_PASS 0 > +#define USB_STATUS_FAIL 1 > +#define USB_STATUS_PHASE_ERROR 2 > + > +#define CSW_GOOD 0x00 > +#define CSW_FAIL 0x01 > + > +struct f_rockusb { > + struct usb_function usb_function; > + /* IN/OUT EP's and corresponding requests */ > + struct usb_ep *in_ep, *out_ep; > + struct usb_request *in_req, *out_req; > +}; > +/* init rockusb device, tell rockusb which device you want to > read/write*/ +void rockusb_dev_init(char *dev_type, int dev_index); > +#endif /* __F_ROCKUSB_H */ > + > diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig > index 261ed12..30da8f4 100644 > --- a/drivers/usb/gadget/Kconfig > +++ b/drivers/usb/gadget/Kconfig > @@ -112,6 +112,12 @@ config G_DNL_VENDOR_NUM > config G_DNL_PRODUCT_NUM > hex "Product ID of USB device" > > +config USB_FUNCTION_ROCKUSB > + bool "Enable USB rockusb gadget" > + default y > + help > + This enables the USB part of the rockusb gadget. > + > config USBNET_DEVADDR > string "USB Gadget Ethernet device mac address" > default "de:ad:be:ef:00:01" > diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile > index 0fbbb7c..0eb27a3 100644 > --- a/drivers/usb/gadget/Makefile > +++ b/drivers/usb/gadget/Makefile > @@ -28,6 +28,7 @@ obj-$(CONFIG_USB_FUNCTION_THOR) += f_thor.o > obj-$(CONFIG_USB_FUNCTION_DFU) += f_dfu.o > obj-$(CONFIG_USB_FUNCTION_MASS_STORAGE) += f_mass_storage.o > obj-$(CONFIG_USB_FUNCTION_FASTBOOT) += f_fastboot.o > +obj-$(CONFIG_USB_FUNCTION_ROCKUSB) += f_rockusb.o > endif > endif > ifdef CONFIG_USB_ETHER > diff --git a/drivers/usb/gadget/f_rockusb.c > b/drivers/usb/gadget/f_rockusb.c new file mode 100644 > index 0000000..e5ef643 > --- /dev/null > +++ b/drivers/usb/gadget/f_rockusb.c > @@ -0,0 +1,680 @@ > +/* > + * (C) Copyright 2017 > + * > + * Eddie Cai <eddie.cai.li...@gmail.com> > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#include <config.h> > +#include <common.h> > +#include <errno.h> > +#include <malloc.h> > +#include <memalign.h> > +#include <linux/usb/ch9.h> > +#include <linux/usb/gadget.h> > +#include <linux/usb/composite.h> > +#include <linux/compiler.h> > +#include <version.h> > +#include <g_dnl.h> > +#include <asm/arch/f_rockusb.h> > + > +static inline struct f_rockusb *func_to_rockusb(struct usb_function > *f) +{ > + return container_of(f, struct f_rockusb, usb_function); > +} > + > +static struct usb_endpoint_descriptor fs_ep_in = { > + .bLength = USB_DT_ENDPOINT_SIZE, > + .bDescriptorType = USB_DT_ENDPOINT, > + .bEndpointAddress = USB_DIR_IN, > + .bmAttributes = USB_ENDPOINT_XFER_BULK, > + .wMaxPacketSize = cpu_to_le16(64), > +}; > + > +static struct usb_endpoint_descriptor fs_ep_out = { > + .bLength = USB_DT_ENDPOINT_SIZE, > + .bDescriptorType = USB_DT_ENDPOINT, > + .bEndpointAddress = USB_DIR_OUT, > + .bmAttributes = USB_ENDPOINT_XFER_BULK, > + .wMaxPacketSize = cpu_to_le16(64), > +}; > + > +static struct usb_endpoint_descriptor hs_ep_in = { > + .bLength = USB_DT_ENDPOINT_SIZE, > + .bDescriptorType = USB_DT_ENDPOINT, > + .bEndpointAddress = USB_DIR_IN, > + .bmAttributes = USB_ENDPOINT_XFER_BULK, > + .wMaxPacketSize = cpu_to_le16(512), > +}; > + > +static struct usb_endpoint_descriptor hs_ep_out = { > + .bLength = USB_DT_ENDPOINT_SIZE, > + .bDescriptorType = USB_DT_ENDPOINT, > + .bEndpointAddress = USB_DIR_OUT, > + .bmAttributes = USB_ENDPOINT_XFER_BULK, > + .wMaxPacketSize = cpu_to_le16(512), > +}; > + > +static struct usb_interface_descriptor interface_desc = { > + .bLength = USB_DT_INTERFACE_SIZE, > + .bDescriptorType = USB_DT_INTERFACE, > + .bInterfaceNumber = 0x00, > + .bAlternateSetting = 0x00, > + .bNumEndpoints = 0x02, > + .bInterfaceClass = ROCKUSB_INTERFACE_CLASS, > + .bInterfaceSubClass = ROCKUSB_INTERFACE_SUB_CLASS, > + .bInterfaceProtocol = ROCKUSB_INTERFACE_PROTOCOL, > +}; > + > +static struct usb_descriptor_header *rkusb_fs_function[] = { > + (struct usb_descriptor_header *)&interface_desc, > + (struct usb_descriptor_header *)&fs_ep_in, > + (struct usb_descriptor_header *)&fs_ep_out, > +}; > + > +static struct usb_descriptor_header *rkusb_hs_function[] = { > + (struct usb_descriptor_header *)&interface_desc, > + (struct usb_descriptor_header *)&hs_ep_in, > + (struct usb_descriptor_header *)&hs_ep_out, > + NULL, > +}; > + > +static const char rkusb_name[] = "Rockchip Rockusb"; > + > +static struct usb_string rkusb_string_defs[] = { > + [0].s = rkusb_name, > + { } /* end of list */ > +}; > + > +static struct usb_gadget_strings stringtab_rkusb = { > + .language = 0x0409, /* en-us */ > + .strings = rkusb_string_defs, > +}; > + > +static struct usb_gadget_strings *rkusb_strings[] = { > + &stringtab_rkusb, > + NULL, > +}; > + > +static struct f_rockusb *rockusb_func = 0; > +static char *rockusb_dev_type = 0; > +static unsigned int rockusb_dev_index; > +static unsigned int download_tag; > +static unsigned int download_lba; > +static unsigned int download_size; > +static unsigned int download_bytes; > +static int reboot_flag; > +struct blk_desc *download_desc = 0; > +static void rx_handler_command(struct usb_ep *ep, struct usb_request > *req); +static int rockusb_tx_write_csw(u32 tag, int residue, u8 > status, int size); + > +static struct usb_endpoint_descriptor *rkusb_ep_desc( > +struct usb_gadget *g, > +struct usb_endpoint_descriptor *fs, > +struct usb_endpoint_descriptor *hs) > +{ > + if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH) > + return hs; > + return fs; > +} > + > +static void rockusb_complete(struct usb_ep *ep, struct usb_request > *req) +{ > + int status = req->status; > + if (!status) > + return; > + debug("status: %d ep '%s' trans: %d\n", status, ep->name, > req->actual); +} > + > +/* config the rockusb device*/ > +static int rockusb_bind(struct usb_configuration *c, struct > usb_function *f) +{ > + int id; > + struct usb_gadget *gadget = c->cdev->gadget; > + struct f_rockusb *f_rkusb = func_to_rockusb(f); > + const char *s; > + > + id = usb_interface_id(c, f); > + if (id < 0) > + return id; > + interface_desc.bInterfaceNumber = id; > + > + id = usb_string_id(c->cdev); > + if (id < 0) > + return id; > + > + rkusb_string_defs[0].id = id; > + interface_desc.iInterface = id; > + > + f_rkusb->in_ep = usb_ep_autoconfig(gadget, &fs_ep_in); > + if (!f_rkusb->in_ep) > + return -ENODEV; > + f_rkusb->in_ep->driver_data = c->cdev; > + > + f_rkusb->out_ep = usb_ep_autoconfig(gadget, &fs_ep_out); > + if (!f_rkusb->out_ep) > + return -ENODEV; > + f_rkusb->out_ep->driver_data = c->cdev; > + > + f->descriptors = rkusb_fs_function; > + > + if (gadget_is_dualspeed(gadget)) { > + hs_ep_in.bEndpointAddress = > fs_ep_in.bEndpointAddress; > + hs_ep_out.bEndpointAddress = > fs_ep_out.bEndpointAddress; > + f->hs_descriptors = rkusb_hs_function; > + } > + > + s = getenv("serial#"); > + if (s) > + g_dnl_set_serialnumber((char *)s); > + > + return 0; > +} > + > +static void rockusb_unbind(struct usb_configuration *c, struct > usb_function *f) +{ > + /* clear the configuration*/ > + memset(rockusb_func, 0, sizeof(*rockusb_func)); > +} > + > +static void rockusb_disable(struct usb_function *f) > +{ > + struct f_rockusb *f_rkusb = func_to_rockusb(f); > + > + usb_ep_disable(f_rkusb->out_ep); > + usb_ep_disable(f_rkusb->in_ep); > + > + if (f_rkusb->out_req) { > + free(f_rkusb->out_req->buf); > + usb_ep_free_request(f_rkusb->out_ep, > f_rkusb->out_req); > + f_rkusb->out_req = NULL; > + } > + if (f_rkusb->in_req) { > + free(f_rkusb->in_req->buf); > + usb_ep_free_request(f_rkusb->in_ep, f_rkusb->in_req); > + f_rkusb->in_req = NULL; > + } > +} > + > +static struct usb_request *rockusb_start_ep(struct usb_ep *ep) > +{ > + struct usb_request *req; > + > + req = usb_ep_alloc_request(ep, 0); > + if (!req) > + return NULL; > + > + req->length = EP_BUFFER_SIZE; > + req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE, > EP_BUFFER_SIZE); > + if (!req->buf) { > + usb_ep_free_request(ep, req); > + return NULL; > + } > + memset(req->buf, 0, req->length); > + > + return req; > +} > + > +static int rockusb_set_alt(struct usb_function *f, > + unsigned interface, unsigned alt) > +{ > + int ret; > + struct usb_composite_dev *cdev = f->config->cdev; > + struct usb_gadget *gadget = cdev->gadget; > + struct f_rockusb *f_rkusb = func_to_rockusb(f); > + const struct usb_endpoint_descriptor *d; > + > + debug("%s: func: %s intf: %d alt: %d\n", > + __func__, f->name, interface, alt); > + > + d = rkusb_ep_desc(gadget, &fs_ep_out, &hs_ep_out); > + ret = usb_ep_enable(f_rkusb->out_ep, d); > + if (ret) { > + printf("failed to enable out ep\n"); > + return ret; > + } > + > + f_rkusb->out_req = rockusb_start_ep(f_rkusb->out_ep); > + if (!f_rkusb->out_req) { > + printf("failed to alloc out req\n"); > + ret = -EINVAL; > + goto err; > + } > + f_rkusb->out_req->complete = rx_handler_command; > + > + d = rkusb_ep_desc(gadget, &fs_ep_in, &hs_ep_in); > + ret = usb_ep_enable(f_rkusb->in_ep, d); > + if (ret) { > + printf("failed to enable in ep\n"); > + goto err; > + } > + > + f_rkusb->in_req = rockusb_start_ep(f_rkusb->in_ep); > + if (!f_rkusb->in_req) { > + printf("failed alloc req in\n"); > + ret = -EINVAL; > + goto err; > + } > + f_rkusb->in_req->complete = rockusb_complete; > + > + ret = usb_ep_queue(f_rkusb->out_ep, f_rkusb->out_req, 0); > + if (ret) > + goto err; > + > + return 0; > +err: > + rockusb_disable(f); > + return ret; > +} > + > +static int rockusb_add(struct usb_configuration *c) > +{ > + struct f_rockusb *f_rkusb = rockusb_func; > + int status; > + > + debug("%s: cdev: 0x%p\n", __func__, c->cdev); > + > + if (!f_rkusb) { > + f_rkusb = memalign(CONFIG_SYS_CACHELINE_SIZE, > sizeof(*f_rkusb)); > + if (!f_rkusb) > + return -ENOMEM; > + > + rockusb_func = f_rkusb; > + memset(f_rkusb, 0, sizeof(*f_rkusb)); > + } > + > + f_rkusb->usb_function.name = "f_rockusb"; > + f_rkusb->usb_function.bind = rockusb_bind; > + f_rkusb->usb_function.unbind = rockusb_unbind; > + f_rkusb->usb_function.set_alt = rockusb_set_alt; > + f_rkusb->usb_function.disable = rockusb_disable; > + f_rkusb->usb_function.strings = rkusb_strings; > + > + status = usb_add_function(c, &f_rkusb->usb_function); > + if (status) { > + free(f_rkusb); > + rockusb_func = f_rkusb; > + } > + return status; > +} > + > +void rockusb_dev_init(char *dev_type, int dev_index) > +{ > + rockusb_dev_type = dev_type; > + rockusb_dev_index = dev_index; > +} > + > +DECLARE_GADGET_BIND_CALLBACK(usb_dnl_rockusb, rockusb_add); > + > +static int rockusb_tx_write(const char *buffer, unsigned int > buffer_size) +{ > + struct usb_request *in_req = rockusb_func->in_req; > + int ret; > + > + memcpy(in_req->buf, buffer, buffer_size); > + in_req->length = buffer_size; > + usb_ep_dequeue(rockusb_func->in_ep, in_req); > + ret = usb_ep_queue(rockusb_func->in_ep, in_req, 0); > + if (ret) > + printf("Error %d on queue\n", ret); > + return 0; > +} > + > +static int rockusb_tx_write_str(const char *buffer) > +{ > + return rockusb_tx_write(buffer, strlen(buffer)); > +} > + > +#ifdef DEBUG > +static void printcbw(char *buf) > +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + > + memcpy((char *)cbw, buf, USB_BULK_CB_WRAP_LEN); > + > + debug("cbw: signature:%x\n", cbw->signature); > + debug("cbw: tag=%x\n", cbw->tag); > + debug("cbw: data_transfer_length=%d\n", > cbw->data_transfer_length); > + debug("cbw: flags=%x\n", cbw->flags); > + debug("cbw: lun=%d\n", cbw->lun); > + debug("cbw: length=%d\n", cbw->length); > + debug("cbw: ucOperCode=%x\n", cbw->CDB[0]); > + debug("cbw: ucReserved=%x\n", cbw->CDB[1]); > + debug("cbw: dwAddress:%x %x %x %x\n", cbw->CDB[5], > cbw->CDB[4], > + cbw->CDB[3], cbw->CDB[2]); > + debug("cbw: ucReserved2=%x\n", cbw->CDB[6]); > + debug("cbw: uslength:%x %x\n", cbw->CDB[8], cbw->CDB[7]); > +} > + > +static void printcsw(char *buf) > +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct bulk_cs_wrap, csw, > + sizeof(struct bulk_cs_wrap)); > + memcpy((char *)csw, buf, USB_BULK_CS_WRAP_LEN); > + debug("csw: signature:%x\n", csw->signature); > + debug("csw: tag:%x\n", csw->tag); > + debug("csw: residue:%x\n", csw->residue); > + debug("csw: status:%x\n", csw->status); > +} > +#endif > + > +static int rockusb_tx_write_csw(u32 tag, int residue, u8 status, int > size) +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct bulk_cs_wrap, csw, > + sizeof(struct bulk_cs_wrap)); > + csw->signature = cpu_to_le32(USB_BULK_CS_SIG); > + csw->tag = tag; > + csw->residue = cpu_to_be32(residue); > + csw->status = status; > +#ifdef DEBUG > + printcsw((char *)&csw); > +#endif > + return rockusb_tx_write((char *)csw, size); > +} > + > +static unsigned int rx_bytes_expected(struct usb_ep *ep) > +{ > + int rx_remain = download_size - download_bytes; > + unsigned int rem; > + unsigned int maxpacket = ep->maxpacket; > + > + if (rx_remain <= 0) > + return 0; > + else if (rx_remain > EP_BUFFER_SIZE) > + return EP_BUFFER_SIZE; > + > + rem = rx_remain % maxpacket; > + if (rem > 0) > + rx_remain = rx_remain + (maxpacket - rem); > + > + return rx_remain; > +} > + > +/* usb_request complete call back to handle down load image */ > +static void rx_handler_dl_image(struct usb_ep *ep, struct > usb_request *req) +{ > + unsigned int transfer_size = download_size - download_bytes; > + const unsigned char *buffer = req->buf; > + unsigned int buffer_size = req->actual; > + > + if (!download_desc) { > + printf("rx_handler_dl_image blk_get_dev\n"); > + download_desc = blk_get_dev(rockusb_dev_type, > + rockusb_dev_index); > + if (!download_desc || > + download_desc->type == DEV_TYPE_UNKNOWN) { > + error("invalid mmc device\n"); > + rockusb_tx_write_csw(download_tag, 0, > CSW_FAIL, > + USB_BULK_CS_WRAP_LEN); > + return; > + } > + } > + > + if (req->status != 0) { > + printf("Bad status: %d\n", req->status); > + rockusb_tx_write_csw(download_tag, 0, > + CSW_FAIL, USB_BULK_CS_WRAP_LEN); > + return; > + } > + > + if (buffer_size < transfer_size) > + transfer_size = buffer_size; > + > + memcpy((void *)CONFIG_ROCKUSB_BUF_ADDR + download_bytes, > + buffer, transfer_size); > + download_bytes += transfer_size; > + > + /* Check if transfer is done */ > + if (download_bytes >= download_size) { > + int blks = 0, blkcnt = download_size/512; > + printf("download %d bytes finished, start writing to > lba %x\n", > + download_bytes, download_lba); > + blks = blk_dwrite(download_desc, download_lba, > blkcnt, > + (char > *)CONFIG_ROCKUSB_BUF_ADDR); > + if (blks != blkcnt) { > + error("failed writing to device %s: %d\n", > + rockusb_dev_type, rockusb_dev_index); > + rockusb_tx_write_csw(download_tag, 0, > + CSW_FAIL, > USB_BULK_CS_WRAP_LEN); > + return; > + } > + > + req->complete = rx_handler_command; > + req->length = EP_BUFFER_SIZE; > + download_size = 0; > + printf("done\n"); > + rockusb_tx_write_csw(download_tag, 0, CSW_GOOD, > + USB_BULK_CS_WRAP_LEN); > + } else { > + req->length = rx_bytes_expected(ep); > + } > + > + req->actual = 0; > + usb_ep_queue(ep, req, 0); > +} > + > +static void cb_test_unit_ready(struct usb_ep *ep, struct usb_request > *req) +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > + > + rockusb_tx_write_csw(cbw->tag, cbw->data_transfer_length, > + CSW_GOOD, USB_BULK_CS_WRAP_LEN); > +} > + > +static void cb_read_storage_id(struct usb_ep *ep, struct usb_request > *req) +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + char emmc_id[] = "EMMC "; > + > + printf("cb_read_storage_id\n"); > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > + rockusb_tx_write_str(emmc_id); > + rockusb_tx_write_csw(cbw->tag, cbw->data_transfer_length, > CSW_GOOD, > + USB_BULK_CS_WRAP_LEN); > +} > + > +static void cb_write_lba(struct usb_ep *ep, struct usb_request *req) > +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + int sector_count; > + > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > + sector_count = (int)get_unaligned_be16(&cbw->CDB[7]); > + download_lba = get_unaligned_be32(&cbw->CDB[2]); > + download_size = sector_count * 512; > + download_bytes = 0; > + download_tag = cbw->tag; > + if ((0 == download_size) || (download_size > > CONFIG_ROCKUSB_BUF_SIZE)) { > + rockusb_tx_write_csw(cbw->tag, > cbw->data_transfer_length, > + CSW_FAIL, USB_BULK_CS_WRAP_LEN); > + } else { > + req->complete = rx_handler_dl_image; > + req->length = rx_bytes_expected(ep); > + } > +} > + > +int __weak rkusb_set_reboot_flag(int flag) > +{ > + printf("rkusb_set_reboot_flag: %d\n", reboot_flag); > + return -ENOSYS; > +} > + > +static void compl_do_reset(struct usb_ep *ep, struct usb_request > *req) +{ > + rkusb_set_reboot_flag(reboot_flag); > + do_reset(NULL, 0, 0, NULL); > +} > + > +static void cb_reboot(struct usb_ep *ep, struct usb_request *req) > +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + reboot_flag = 0; > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > + reboot_flag = cbw->CDB[1]; > + rockusb_func->in_req->complete = compl_do_reset; > + rockusb_tx_write_csw(cbw->tag, cbw->data_transfer_length, > CSW_GOOD, > + USB_BULK_CS_WRAP_LEN); > +} > + > +static void cb_not_support(struct usb_ep *ep, struct usb_request > *req) +{ > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > + printf("Rockusb command %x not support yet\n", cbw->CDB[0]); > + rockusb_tx_write_csw(cbw->tag, 0, CSW_FAIL, > USB_BULK_CS_WRAP_LEN); +} > + > +static const struct cmd_dispatch_info cmd_dispatch_info[] = { > + { > + .cmd = K_FW_TEST_UNIT_READY, > + .cb = cb_test_unit_ready, > + }, > + { > + .cmd = K_FW_READ_FLASH_ID, > + .cb = cb_read_storage_id, > + }, > + { > + .cmd = K_FW_SET_DEVICE_ID, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_TEST_BAD_BLOCK, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_READ_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_WRITE_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_ERASE_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_WRITE_SPARE, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_READ_SPARE, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_ERASE_10_FORCE, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_GET_VERSION, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_LBA_READ_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_LBA_WRITE_10, > + .cb = cb_write_lba, > + }, > + { > + .cmd = K_FW_ERASE_SYS_DISK, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SDRAM_READ_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SDRAM_WRITE_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SDRAM_EXECUTE, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_READ_FLASH_INFO, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_GET_CHIP_VER, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_LOW_FORMAT, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SET_RESET_FLAG, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SPI_READ_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SPI_WRITE_10, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_SESSION, > + .cb = cb_not_support, > + }, > + { > + .cmd = K_FW_RESET, > + .cb = cb_reboot, > + }, > +}; > + > +static void rx_handler_command(struct usb_ep *ep, struct usb_request > *req) +{ > + void (*func_cb)(struct usb_ep *ep, struct usb_request *req) > = NULL; > + ALLOC_CACHE_ALIGN_BUFFER(struct fsg_bulk_cb_wrap, cbw, > + sizeof(struct fsg_bulk_cb_wrap)); > + char *cmdbuf = req->buf; > + int i; > + > + if (req->status || req->length == 0) > + return; > + > + memcpy((char *)cbw, req->buf, USB_BULK_CB_WRAP_LEN); > +#ifdef DEBUG > + printcbw(req->buf); > +#endif > + > + for (i = 0; i < ARRAY_SIZE(cmd_dispatch_info); i++) { > + if (cmd_dispatch_info[i].cmd == cbw->CDB[0]) { > + func_cb = cmd_dispatch_info[i].cb; > + break; > + } > + } > + > + if (!func_cb) { > + error("unknown command: %s", (char *)req->buf); > + rockusb_tx_write_str("FAILunknown command"); > + } else { > + if (req->actual < req->length) { > + u8 *buf = (u8 *)req->buf; > + buf[req->actual] = 0; > + func_cb(ep, req); > + } else { > + error("buffer overflow"); > + rockusb_tx_write_str("FAILbuffer overflow"); > + } > + } > + > + *cmdbuf = '\0'; > + req->actual = 0; > + usb_ep_queue(ep, req, 0); > +} Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
>From 575cba056450215061bdc97a44c1e0d45c0d4310 Mon Sep 17 00:00:00 2001 From: Lukasz Majewski <lu...@denx.de> Date: Fri, 21 Apr 2017 12:55:15 +0200 Subject: [PATCH] ci: travis: Modify original .travis.yml to build for DFU Signed-off-by: Lukasz Majewski <lu...@denx.de> --- .travis.yml | 276 +++++------------------------------------------------------- 1 file changed, 23 insertions(+), 253 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6898a2..73c408d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,13 @@ +# DFU testing travis.yml script +# +# Lukasz Majewski <lu...@denx.de> +# +# Based on: # Copyright Roger Meier <r.me...@siemens.com> +# # SPDX-License-Identifier: GPL-2.0+ -# build U-Boot on Travis CI - https://travis-ci.org/ +# build U-Boot DFU on Travis CI - https://travis-ci.org/ sudo: required dist: trusty @@ -37,10 +43,13 @@ install: - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname` - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname` # prepare buildman environment - - echo -e "[toolchain]\nroot = /usr" > ~/.buildman - - echo -e "aarch64 = /tmp/gcc-linaro-6.3.1-2017.02-x86_64_aarch64-linux-gnu" >> ~/.buildman - - echo -e "arm = /tmp/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf" >> ~/.buildman - - echo -e "\n[toolchain-alias]\nsh = sh4\nopenrisc = or32" >> ~/.buildman + - export BUILDMAN_ROOT="root:" + - export BUILDMAN_ARM="arm:" + - echo -e "[toolchain]\n${BUILDMAN_ROOT} /\n" > ~/.buildman + - echo -e "${BUILDMAN_ARM} /opt/eldk-5.4/armv5te/sysroots/i686-eldk-linux/usr/bin/armv5te-linux-gnueabi/\n" >> ~/.buildman + - export BUILDMAN_ALIAS_ARM="arm:" + - echo -e "\n\n[toolchain-alias]\n" >> ~/.buildman + - echo -e "${BUILDMAN_ALIAS_ARM} armv5te\n" >> ~/.buildman - cat ~/.buildman - virtualenv /tmp/venv - . /tmp/venv/bin/activate @@ -59,33 +68,8 @@ env: before_script: # install toolchains based on TOOLCHAIN} variable - - if [[ "${TOOLCHAIN}" == *avr32* ]]; then ./tools/buildman/buildman --fetch-arch avr32 ; fi - - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi - - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi - - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi - - if [[ "${TOOLCHAIN}" == *or32* ]]; then ./tools/buildman/buildman --fetch-arch or32 ; fi - - if [[ "${TOOLCHAIN}" == *sh4* ]]; then ./tools/buildman/buildman --fetch-arch sh4 ; fi - - if [[ "${TOOLCHAIN}" == *x86_64* ]]; then - ./tools/buildman/buildman --fetch-arch x86_64; - echo -e "\n[toolchain-prefix]\nx86 = ${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-" >> ~/.buildman; - fi - - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi - # If TOOLCHAIN is unset, we're on some flavour of ARM. - - if [[ "${TOOLCHAIN}" == "" ]]; then - wget http://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/aarch64-linux-gnu/gcc-linaro-6.3.1-2017.02-x86_64_aarch64-linux-gnu.tar.xz && - wget http://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz && - tar -C /tmp -xf gcc-linaro-6.3.1-2017.02-x86_64_aarch64-linux-gnu.tar.xz && - tar -C /tmp -xf gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz; - fi - - if [[ "${QEMU_TARGET}" != "" ]]; then - git clone git://git.qemu.org/qemu.git /tmp/qemu; - pushd /tmp/qemu; - git submodule update --init dtc && - git checkout v2.8.0-rc3 && - ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} && - make -j4 all install; - popd; - fi + - if [[ "${TOOLCHAIN}" == *arm* ]]; then wget ftp://ftp.denx.de/pub/eldk/5.4/targets/armv5te/eldk-eglibc-i686-arm-toolchain-gmae-5.4.sh ; fi + - if [[ "${TOOLCHAIN}" == *arm* ]]; then sh eldk-eglibc-i686-arm-toolchain-gmae-5.4.sh -y ; fi script: # Comments must be outside the command strings below, or the Travis parser @@ -93,25 +77,7 @@ script: # # Exit code 129 means warnings only. - if [[ "${BUILDMAN}" != "" ]]; then - set +e; - tools/buildman/buildman -P ${BUILDMAN}; - ret=$?; - if [[ $ret -ne 0 && $ret -ne 129 ]]; then - tools/buildman/buildman -sdeP ${BUILDMAN}; - exit $ret; - fi; - fi - # "not a_test_which_does_not_exist" is a dummy -k parameter which will - # never prevent any test from running. That way, we can always pass - # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom - # value. - - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/${TEST_PY_BD}; - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/; - cp ~/grub2-arm/usr/lib/grub2/arm-efi/grub.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi; - if [[ "${TEST_PY_BD}" != "" ]]; then - ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} - -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}" - --build-dir "$UBOOT_TRAVIS_BUILD_DIR"; + tools/buildman/buildman ${BUILDMAN}; fi matrix: @@ -119,211 +85,15 @@ matrix: # we need to build by vendor due to 50min time limit for builds # each env setting here is a dedicated build - env: - - BUILDMAN="arm11" - - env: - - BUILDMAN="arm7" - - env: - - BUILDMAN="arm920t" - - env: - - JOB="arm926ejs" - BUILDMAN="arm926ejs -x mx,siemens,atmel" - - env: - - BUILDMAN="arm946es" - - env: - - BUILDMAN="atmel -x avr32" - - env: - - BUILDMAN="avr32" - TOOLCHAIN="avr32" - - env: - - BUILDMAN="denx" - - env: - - JOB="Freescale ARM32" - BUILDMAN="freescale -x powerpc,m68k,aarch64" - - env: - - JOB="Freescale AArch64" - BUILDMAN="freescale&aarch64" - - env: - - JOB="i.MX6 (non-Freescale)" - BUILDMAN="mx6 -x freescale" - - env: - - JOB="i.MX (non-Freescale, non-i.MX6)" - BUILDMAN="mx -x freescale,mx6" - - env: - - BUILDMAN="samsung" - - env: - - BUILDMAN="sun4i" - - env: - - BUILDMAN="sun5i" - - env: - - BUILDMAN="sun6i" - - env: - - BUILDMAN="sun7i" - - env: - - BUILDMAN="sun8i" - - env: - - BUILDMAN="sun9i" - - env: - - BUILDMAN="sun50i" - - env: - - JOB="Catch-all ARM" - BUILDMAN="arm -x arm11,arm7,arm9,aarch64,atmel,denx,freescale,kirkwood,mvebu,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap3,omap4,omap5,pxa,rockchip" - - env: - - BUILDMAN="sandbox x86" - TOOLCHAIN="x86_64" - - env: - - BUILDMAN="kirkwood" - - env: - - BUILDMAN="mvebu" - - env: - - BUILDMAN="pxa" - - env: - - BUILDMAN="m68k" - TOOLCHAIN="m68k" - - env: - - BUILDMAN="microblaze" - TOOLCHAIN="microblaze" - - env: - - BUILDMAN="mips" - TOOLCHAIN="mips" - - env: - - BUILDMAN="mpc512x" - - env: - - BUILDMAN="mpc5xx" - - env: - - BUILDMAN="mpc5xxx" - - env: - - BUILDMAN="mpc8260" - - env: - - BUILDMAN="mpc83xx" - - env: - - BUILDMAN="mpc85xx -x freescale" - - env: - - BUILDMAN="mpc85xx -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x sbc8548 -x bsc91*" - - env: - - BUILDMAN="t208xrdb t4qds t102*" - - env: - - BUILDMAN="p1_p2_rdb_pc" - - env: - - BUILDMAN="p1010rdb" - - env: - - BUILDMAN="corenet_ds b4860qds sbc8548 bsc91*" - - env: - - BUILDMAN="mpc86xx" - - env: - - BUILDMAN="mpc8xx" - - env: - BUILDMAN="siemens" + TOOLCHAIN="arm" - env: - - BUILDMAN="tegra" - - env: - - JOB="am33xx" - BUILDMAN="am33xx -x siemens" - - env: - - BUILDMAN="omap3" - - env: - - BUILDMAN="omap4" - - env: - - BUILDMAN="omap5" - - env: - - BUILDMAN="uniphier" - - env: - - BUILDMAN="aarch64 -x tegra,freescale,mvebu,uniphier,sunxi,samsung,rockchip" + - BUILDMAN="ti" + TOOLCHAIN="arm" - env: - BUILDMAN="rockchip" + TOOLCHAIN="arm" - env: - - BUILDMAN="sh4" - TOOLCHAIN="sh4" - - env: - - BUILDMAN="xtensa" - TOOLCHAIN="xtensa" - - # QA jobs for code analytics - # static code analysis with cppcheck (we can add --enable=all later) - - env: - - JOB="cppcheck" - script: - - cppcheck --force --quiet --inline-suppr . - # search for TODO within source tree - - env: - - JOB="grep TODO" - script: - - grep -r TODO . - # search for FIXME within source tree - - env: - - JOB="grep FIXME HACK" - script: - - grep -r FIXME . - # search for HACK within source tree and ignore HACKKIT board - script: - - grep -r HACK . | grep -v HACKKIT - # some statistics about the code base - - env: - - JOB="sloccount" - script: - - sloccount . - - # test/py - - env: - - TEST_PY_BD="sandbox" - BUILDMAN="^sandbox$" - TOOLCHAIN="x86_64" - - env: - - TEST_PY_BD="vexpress_ca15_tc2" - TEST_PY_ID="--id qemu" - QEMU_TARGET="arm-softmmu" - BUILDMAN="^vexpress_ca15_tc2$" - - env: - - TEST_PY_BD="vexpress_ca9x4" - TEST_PY_ID="--id qemu" - QEMU_TARGET="arm-softmmu" - BUILDMAN="^vexpress_ca9x4$" - - env: - - TEST_PY_BD="integratorcp_cm926ejs" - TEST_PY_TEST_SPEC="not sleep" - TEST_PY_ID="--id qemu" - QEMU_TARGET="arm-softmmu" - BUILDMAN="^integratorcp_cm926ejs$" - - env: - - TEST_PY_BD="qemu_mips" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="mips-softmmu" - BUILDMAN="^qemu_mips$" - TOOLCHAIN="mips" - - env: - - TEST_PY_BD="qemu_mipsel" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="mipsel-softmmu" - BUILDMAN="^qemu_mipsel$" - TOOLCHAIN="mips" - - env: - - TEST_PY_BD="qemu_mips64" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="mips64-softmmu" - BUILDMAN="^qemu_mips64$" - TOOLCHAIN="mips" - - env: - - TEST_PY_BD="qemu_mips64el" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="mips64el-softmmu" - BUILDMAN="^qemu_mips64el$" - TOOLCHAIN="mips" - - env: - - TEST_PY_BD="qemu-ppce500" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="ppc-softmmu" - BUILDMAN="^qemu-ppce500$" - - env: - - TEST_PY_BD="qemu-x86" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="i386-softmmu" - BUILDMAN="^qemu-x86$" - TOOLCHAIN="x86_64" - BUILD_ROM="yes" - - env: - - TEST_PY_BD="zynq_zc702" - TEST_PY_TEST_SPEC="not sleep" - QEMU_TARGET="arm-softmmu" - TEST_PY_ID="--id qemu" - BUILDMAN="^zynq_zc702$" + - BUILDMAN="trats2 odroid-xu3" + TOOLCHAIN="arm" -# TODO make it perfect ;-r -- 2.1.4
_______________________________________________ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot