diff options
author | Fabien Parent <fparent@baylibre.com> | 2020-10-16 17:40:08 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-18 14:59:19 -0500 |
commit | d67393503be80ea742ee0a2819a50298f1bbdfd8 (patch) | |
tree | 13917e81a9121475859962e960130b6b581d2625 | |
parent | c2984eb38ee308d0a16d3048d2eb61167fa4c6e6 (diff) | |
download | u-boot-d67393503be80ea742ee0a2819a50298f1bbdfd8.tar.gz |
configs: pumpkin: enable USB gadget
Enable USB gadget on pumpkin. This requires to also enable
BOARD_LATE_INIT since the init is done in board_late_init function.
Signed-off-by: Fabien Parent <fparent@baylibre.com>
-rw-r--r-- | configs/pumpkin_defconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/pumpkin_defconfig b/configs/pumpkin_defconfig index ab50124af2..14608afaf6 100644 --- a/configs/pumpkin_defconfig +++ b/configs/pumpkin_defconfig @@ -17,6 +17,7 @@ CONFIG_FIT=y # CONFIG_ARCH_FIXUP_FDT_MEMORY is not set CONFIG_DEFAULT_FDT_FILE="mt8516-pumpkin" # CONFIG_DISPLAY_BOARDINFO is not set +CONFIG_BOARD_LATE_INIT=y CONFIG_HUSH_PARSER=y # CONFIG_CMD_BDI is not set # CONFIG_CMD_CONSOLE is not set @@ -59,6 +60,13 @@ CONFIG_BAUDRATE=921600 CONFIG_DM_SERIAL=y CONFIG_DEBUG_UART_ANNOUNCE=y CONFIG_MTK_SERIAL=y +CONFIG_USB=y +CONFIG_DM_USB=y +CONFIG_USB_MUSB_GADGET=y +CONFIG_USB_MUSB_MT85XX=y +CONFIG_USB_GADGET=y +CONFIG_USB_GADGET_VENDOR_NUM=0x0e8d +CONFIG_USB_GADGET_PRODUCT_NUM=0x201c CONFIG_WDT=y CONFIG_WDT_MTK=y # CONFIG_EFI_LOADER is not set |