mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
a4670f8ebb
With the device tree ported and DM compatible drivers, enable: OF_CONTROL, DM_SPI, DM_SPI_FLASH and DM_SERIAL Note: DM_SERIAL is not enabled for da850evm_direct_nor_defconfig yet. Reviewed-by: Jagan Teki <jagan@openedev.com> Signed-off-by: Adam Ford <aford173@gmail.com>
53 lines
978 B
Text
53 lines
978 B
Text
if TARGET_DA850EVM
|
|
|
|
config SYS_BOARD
|
|
default "da8xxevm"
|
|
|
|
config SYS_VENDOR
|
|
default "davinci"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "da850evm"
|
|
|
|
menuconfig DA850_MAC
|
|
bool "Use MAC Address"
|
|
default y
|
|
|
|
if DA850_MAC
|
|
config MAC_ADDR_IN_SPIFLASH
|
|
bool "MAC address in SPI Flash"
|
|
default y
|
|
help
|
|
The OMAP-L138 and AM1808 SoM are programmed with
|
|
their MAC address in SPI Flash from the factory
|
|
Enable this option to read the MAC from SPI Flash
|
|
|
|
config MAC_ADDR_IN_EEPROM
|
|
bool "MAC address in EEPROM"
|
|
help
|
|
The DA850 EVM comes with SoM are programmed with
|
|
their MAC address in SPI Flash from the factory,
|
|
but the kit has an optional expansion board with
|
|
EEPROM available. Enable this option to read the
|
|
MAC from the EEPROM
|
|
|
|
endif
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_OMAPL138_LCDK
|
|
|
|
config SYS_BOARD
|
|
default "da8xxevm"
|
|
|
|
config SYS_VENDOR
|
|
default "davinci"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "omapl138_lcdk"
|
|
|
|
endif
|
|
|
|
source "board/ti/common/Kconfig"
|