Merge branch 'master' of git://git.denx.de/u-boot-usb
- DFU updates
This commit is contained in:
commit
a74a2134b2
28
cmd/dfu.c
28
cmd/dfu.c
@ -30,28 +30,35 @@ static int do_dfu(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||||||
#if defined(CONFIG_DFU_OVER_USB) || defined(CONFIG_DFU_OVER_TFTP)
|
#if defined(CONFIG_DFU_OVER_USB) || defined(CONFIG_DFU_OVER_TFTP)
|
||||||
char *interface = NULL;
|
char *interface = NULL;
|
||||||
char *devstring = NULL;
|
char *devstring = NULL;
|
||||||
|
#if defined(CONFIG_DFU_TIMEOUT) || defined(CONFIG_DFU_OVER_TFTP)
|
||||||
|
unsigned long value = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (argc >= 4) {
|
if (argc >= 4) {
|
||||||
interface = argv[2];
|
interface = argv[2];
|
||||||
devstring = argv[3];
|
devstring = argv[3];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(CONFIG_DFU_TIMEOUT) || defined(CONFIG_DFU_OVER_TFTP)
|
||||||
|
if (argc == 5 || argc == 3)
|
||||||
|
value = simple_strtoul(argv[argc - 1], NULL, 0);
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
#ifdef CONFIG_DFU_OVER_TFTP
|
#ifdef CONFIG_DFU_OVER_TFTP
|
||||||
unsigned long addr = 0;
|
if (!strcmp(argv[1], "tftp"))
|
||||||
if (!strcmp(argv[1], "tftp")) {
|
return update_tftp(value, interface, devstring);
|
||||||
if (argc == 5 || argc == 3)
|
|
||||||
addr = simple_strtoul(argv[argc - 1], NULL, 0);
|
|
||||||
|
|
||||||
return update_tftp(addr, interface, devstring);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DFU_OVER_USB
|
#ifdef CONFIG_DFU_OVER_USB
|
||||||
ret = dfu_init_env_entities(interface, devstring);
|
ret = dfu_init_env_entities(interface, devstring);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
dfu_set_timeout(value * 1000);
|
||||||
|
#endif
|
||||||
|
|
||||||
ret = CMD_RET_SUCCESS;
|
ret = CMD_RET_SUCCESS;
|
||||||
if (strcmp(argv[argc - 1], "list") == 0) {
|
if (strcmp(argv[argc - 1], "list") == 0) {
|
||||||
dfu_show_entities();
|
dfu_show_entities();
|
||||||
@ -72,10 +79,17 @@ U_BOOT_CMD(dfu, CONFIG_SYS_MAXARGS, 1, do_dfu,
|
|||||||
"Device Firmware Upgrade",
|
"Device Firmware Upgrade",
|
||||||
""
|
""
|
||||||
#ifdef CONFIG_DFU_OVER_USB
|
#ifdef CONFIG_DFU_OVER_USB
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
"<USB_controller> [<interface> <dev>] [<timeout>] [list]\n"
|
||||||
|
#else
|
||||||
"<USB_controller> [<interface> <dev>] [list]\n"
|
"<USB_controller> [<interface> <dev>] [list]\n"
|
||||||
|
#endif
|
||||||
" - device firmware upgrade via <USB_controller>\n"
|
" - device firmware upgrade via <USB_controller>\n"
|
||||||
" on device <dev>, attached to interface\n"
|
" on device <dev>, attached to interface\n"
|
||||||
" <interface>\n"
|
" <interface>\n"
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
" [<timeout>] - specify inactivity timeout in seconds\n"
|
||||||
|
#endif
|
||||||
" [list] - list available alt settings\n"
|
" [list] - list available alt settings\n"
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DFU_OVER_TFTP
|
#ifdef CONFIG_DFU_OVER_TFTP
|
||||||
|
17
common/dfu.c
17
common/dfu.c
@ -35,6 +35,10 @@ int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
|
|||||||
return CMD_RET_FAILURE;
|
return CMD_RET_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
unsigned long start_time = get_timer(0);
|
||||||
|
#endif
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
if (g_dnl_detach()) {
|
if (g_dnl_detach()) {
|
||||||
/*
|
/*
|
||||||
@ -79,6 +83,19 @@ int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
unsigned long wait_time = dfu_get_timeout();
|
||||||
|
|
||||||
|
if (wait_time) {
|
||||||
|
unsigned long current_time = get_timer(start_time);
|
||||||
|
|
||||||
|
if (current_time > wait_time) {
|
||||||
|
debug("Inactivity timeout, abort DFU\n");
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
WATCHDOG_RESET();
|
WATCHDOG_RESET();
|
||||||
usb_gadget_handle_interrupts(usbctrl_index);
|
usb_gadget_handle_interrupts(usbctrl_index);
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,7 @@ CONFIG_SYS_REDUNDAND_ENVIRONMENT=y
|
|||||||
CONFIG_ENV_OFFSET_REDUND=0x600000
|
CONFIG_ENV_OFFSET_REDUND=0x600000
|
||||||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
||||||
CONFIG_CPU=y
|
CONFIG_CPU=y
|
||||||
|
CONFIG_DFU_TIMEOUT=y
|
||||||
CONFIG_DFU_MMC=y
|
CONFIG_DFU_MMC=y
|
||||||
CONFIG_DFU_RAM=y
|
CONFIG_DFU_RAM=y
|
||||||
CONFIG_SUPPORT_EMMC_BOOT=y
|
CONFIG_SUPPORT_EMMC_BOOT=y
|
||||||
|
@ -43,6 +43,7 @@ Configuration Options:
|
|||||||
CONFIG_DFU_RAM
|
CONFIG_DFU_RAM
|
||||||
CONFIG_DFU_SF
|
CONFIG_DFU_SF
|
||||||
CONFIG_DFU_SF_PART
|
CONFIG_DFU_SF_PART
|
||||||
|
CONFIG_DFU_TIMEOUT
|
||||||
CONFIG_DFU_VIRTUAL
|
CONFIG_DFU_VIRTUAL
|
||||||
CONFIG_CMD_DFU
|
CONFIG_CMD_DFU
|
||||||
|
|
||||||
@ -70,12 +71,15 @@ Commands:
|
|||||||
dfu <USB_controller> [<interface> <dev>] list
|
dfu <USB_controller> [<interface> <dev>] list
|
||||||
list the alternate device defined in "dfu_alt_info"
|
list the alternate device defined in "dfu_alt_info"
|
||||||
|
|
||||||
dfu <USB_controller> [<interface> <dev>]
|
dfu <USB_controller> [<interface> <dev>] [<timeout>]
|
||||||
start the dfu stack on the USB instance with the selected medium
|
start the dfu stack on the USB instance with the selected medium
|
||||||
backend and use the "dfu_alt_info" variable to configure the
|
backend and use the "dfu_alt_info" variable to configure the
|
||||||
alternate setting and link each one with the medium
|
alternate setting and link each one with the medium
|
||||||
The dfu command continue until receive a ^C in console or
|
The dfu command continue until receive a ^C in console or
|
||||||
a DFU detach transaction from HOST.
|
a DFU detach transaction from HOST. If CONFIG_DFU_TIMEOUT option
|
||||||
|
is enabled and <timeout> parameter is present in the command line,
|
||||||
|
the DFU operation will be aborted automatically after <timeout>
|
||||||
|
seconds of waiting remote to initiate DFU session.
|
||||||
|
|
||||||
The possible values of <interface> are :
|
The possible values of <interface> are :
|
||||||
(with <USB controller> = 0 in the dfu command example)
|
(with <USB controller> = 0 in the dfu command example)
|
||||||
|
@ -23,6 +23,12 @@ config DFU_TFTP
|
|||||||
|
|
||||||
Detailed description of this feature can be found at ./doc/README.dfutftp
|
Detailed description of this feature can be found at ./doc/README.dfutftp
|
||||||
|
|
||||||
|
config DFU_TIMEOUT
|
||||||
|
bool "Timeout waiting for DFU"
|
||||||
|
help
|
||||||
|
This option adds an optional timeout parameter for DFU which, if set,
|
||||||
|
will cause DFU to only wait for that many seconds before exiting.
|
||||||
|
|
||||||
config DFU_MMC
|
config DFU_MMC
|
||||||
bool "MMC back end for DFU"
|
bool "MMC back end for DFU"
|
||||||
help
|
help
|
||||||
|
@ -21,6 +21,9 @@ static LIST_HEAD(dfu_list);
|
|||||||
static int dfu_alt_num;
|
static int dfu_alt_num;
|
||||||
static int alt_num_cnt;
|
static int alt_num_cnt;
|
||||||
static struct hash_algo *dfu_hash_algo;
|
static struct hash_algo *dfu_hash_algo;
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
static unsigned long dfu_timeout = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The purpose of the dfu_flush_callback() function is to
|
* The purpose of the dfu_flush_callback() function is to
|
||||||
@ -58,6 +61,18 @@ __weak bool dfu_usb_get_reset(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
void dfu_set_timeout(unsigned long timeout)
|
||||||
|
{
|
||||||
|
dfu_timeout = timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long dfu_get_timeout(void)
|
||||||
|
{
|
||||||
|
return dfu_timeout;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int dfu_find_alt_num(const char *s)
|
static int dfu_find_alt_num(const char *s)
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@ -171,7 +171,6 @@ const char *dfu_get_dev_type(enum dfu_device_type t);
|
|||||||
const char *dfu_get_layout(enum dfu_layout l);
|
const char *dfu_get_layout(enum dfu_layout l);
|
||||||
struct dfu_entity *dfu_get_entity(int alt);
|
struct dfu_entity *dfu_get_entity(int alt);
|
||||||
char *dfu_extract_token(char** e, int *n);
|
char *dfu_extract_token(char** e, int *n);
|
||||||
void dfu_trigger_reset(void);
|
|
||||||
int dfu_get_alt(char *name);
|
int dfu_get_alt(char *name);
|
||||||
int dfu_init_env_entities(char *interface, char *devstr);
|
int dfu_init_env_entities(char *interface, char *devstr);
|
||||||
unsigned char *dfu_get_buf(struct dfu_entity *dfu);
|
unsigned char *dfu_get_buf(struct dfu_entity *dfu);
|
||||||
@ -179,6 +178,11 @@ unsigned char *dfu_free_buf(void);
|
|||||||
unsigned long dfu_get_buf_size(void);
|
unsigned long dfu_get_buf_size(void);
|
||||||
bool dfu_usb_get_reset(void);
|
bool dfu_usb_get_reset(void);
|
||||||
|
|
||||||
|
#ifdef CONFIG_DFU_TIMEOUT
|
||||||
|
unsigned long dfu_get_timeout(void);
|
||||||
|
void dfu_set_timeout(unsigned long);
|
||||||
|
#endif
|
||||||
|
|
||||||
int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
||||||
int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
||||||
int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num);
|
||||||
|
Loading…
Reference in New Issue
Block a user