u-boot/board/nokia/rx51/Kconfig
Tom Rini 08d01cda45 Nokia RX-51: Migrate legacy USB device options to Kconfig
Move a number of legacy USB UDC options to Kconfig, over from the config
header.

Cc: Pali Rohár <pali@kernel.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
2022-12-05 16:08:37 -05:00

49 lines
643 B
Plaintext

if TARGET_NOKIA_RX51
config USB_DEVICE
def_bool y
help
Legacy UDC device support
config USB_TTY
def_bool y
help
Legacy tty type of device available to talk to the UDC device
config USBD_VENDORID
hex
default 0x0421
config USBD_PRODUCTID_CDCACM
hex
default 0x01c8
config USBD_PRODUCTID_GSERIAL
hex
default 0x01c8
config USBD_MANUFACTURER
string
default "Nokia"
config USBD_PRODUCT_NAME
string
default "N900 (U-Boot)"
config NR_DRAM_BANKS
default 2
config SYS_BOARD
default "rx51"
config SYS_VENDOR
default "nokia"
config SYS_CONFIG_NAME
default "nokia_rx51"
config SYS_PROMPT
default "Nokia RX-51 # "
endif