mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 04:14:34 +00:00
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>
This commit is contained in:
parent
b43295a277
commit
08d01cda45
3 changed files with 30 additions and 16 deletions
7
README
7
README
|
@ -629,13 +629,6 @@ The following options need to be configured:
|
||||||
variable usbtty to be cdc_acm should suffice. The following
|
variable usbtty to be cdc_acm should suffice. The following
|
||||||
might be defined in YourBoardName.h
|
might be defined in YourBoardName.h
|
||||||
|
|
||||||
CONFIG_USB_DEVICE
|
|
||||||
Define this to build a UDC device
|
|
||||||
|
|
||||||
CONFIG_USB_TTY
|
|
||||||
Define this to have a tty type of device available to
|
|
||||||
talk to the UDC device
|
|
||||||
|
|
||||||
CONFIG_USBD_HS
|
CONFIG_USBD_HS
|
||||||
Define this to enable the high speed support for usb
|
Define this to enable the high speed support for usb
|
||||||
device and usbtty. If this feature is enabled, a routine
|
device and usbtty. If this feature is enabled, a routine
|
||||||
|
|
|
@ -1,5 +1,35 @@
|
||||||
if TARGET_NOKIA_RX51
|
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
|
config NR_DRAM_BANKS
|
||||||
default 2
|
default 2
|
||||||
|
|
||||||
|
|
|
@ -49,15 +49,6 @@
|
||||||
|
|
||||||
#define CFG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
|
#define CFG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
|
||||||
|
|
||||||
/* USB device configuration */
|
|
||||||
#define CONFIG_USB_DEVICE
|
|
||||||
#define CONFIG_USB_TTY
|
|
||||||
#define CONFIG_USBD_VENDORID 0x0421
|
|
||||||
#define CONFIG_USBD_PRODUCTID_CDCACM 0x01c8
|
|
||||||
#define CONFIG_USBD_PRODUCTID_GSERIAL 0x01c8
|
|
||||||
#define CONFIG_USBD_MANUFACTURER "Nokia"
|
|
||||||
#define CONFIG_USBD_PRODUCT_NAME "N900 (U-Boot)"
|
|
||||||
|
|
||||||
#define GPIO_SLIDE 71
|
#define GPIO_SLIDE 71
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue