mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 00:17:23 +00:00
ARM: at91: ma5d4: Enable DFU and UMS
Enable DFU and USB mass storage support for the DENX MA5D4 SoM. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Andreas Bießmann <andreas.devel@googlemail.com>
This commit is contained in:
parent
52a557d64c
commit
cdc12eed1f
2 changed files with 12 additions and 0 deletions
|
@ -43,3 +43,11 @@ CONFIG_USB_GADGET_ATMEL_USBA=y
|
||||||
CONFIG_FAT_WRITE=y
|
CONFIG_FAT_WRITE=y
|
||||||
CONFIG_OF_LIBFDT=y
|
CONFIG_OF_LIBFDT=y
|
||||||
# CONFIG_EFI_LOADER is not set
|
# CONFIG_EFI_LOADER is not set
|
||||||
|
CONFIG_CMD_DFU=y
|
||||||
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
CONFIG_DFU_MMC=y
|
||||||
|
CONFIG_DFU_SF=y
|
||||||
|
CONFIG_USB_GADGET_DOWNLOAD=y
|
||||||
|
CONFIG_G_DNL_MANUFACTURER="AriesEmbedded"
|
||||||
|
CONFIG_G_DNL_VENDOR_NUM=0x0525
|
||||||
|
CONFIG_G_DNL_PRODUCT_NUM=0xa4a5
|
||||||
|
|
|
@ -103,6 +103,9 @@
|
||||||
#define CONFIG_USB_ETHER
|
#define CONFIG_USB_ETHER
|
||||||
#define CONFIG_USB_ETH_RNDIS
|
#define CONFIG_USB_ETH_RNDIS
|
||||||
#define CONFIG_USBNET_MANUFACTURER "AriesEmbedded"
|
#define CONFIG_USBNET_MANUFACTURER "AriesEmbedded"
|
||||||
|
#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
||||||
|
#define CONFIG_SYS_DFU_DATA_BUF_SIZE (1 * 1024 * 1024)
|
||||||
|
#define DFU_DEFAULT_POLL_TIMEOUT 300
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -131,6 +134,7 @@
|
||||||
"bootpart=1:1\0" \
|
"bootpart=1:1\0" \
|
||||||
"rootdev=/dev/mmcblk1p2\0" \
|
"rootdev=/dev/mmcblk1p2\0" \
|
||||||
"netdev=eth0\0" \
|
"netdev=eth0\0" \
|
||||||
|
"dfu_alt_info=mmc raw 0 3867148288\0" \
|
||||||
"kernel_addr_r=0x22000000\0" \
|
"kernel_addr_r=0x22000000\0" \
|
||||||
"update_spi_firmware_spl_addr=0x21000000\0" \
|
"update_spi_firmware_spl_addr=0x21000000\0" \
|
||||||
"update_spi_firmware_spl_filename=boot.bin\0" \
|
"update_spi_firmware_spl_filename=boot.bin\0" \
|
||||||
|
|
Loading…
Reference in a new issue