aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/davinci/da8xxevm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/davinci/da8xxevm/Kconfig')
-rw-r--r--roms/u-boot/board/davinci/da8xxevm/Kconfig51
1 files changed, 51 insertions, 0 deletions
diff --git a/roms/u-boot/board/davinci/da8xxevm/Kconfig b/roms/u-boot/board/davinci/da8xxevm/Kconfig
new file mode 100644
index 000000000..bb1188b4e
--- /dev/null
+++ b/roms/u-boot/board/davinci/da8xxevm/Kconfig
@@ -0,0 +1,51 @@
+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
+
+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"