summaryrefslogtreecommitdiff
path: root/board/out4/o4-imx6ull-nano/Kconfig
diff options
context:
space:
mode:
authorOleh Kravchenko <oleg@kaa.org.ua>2021-05-15 00:18:31 +0300
committerStefano Babic <sbabic@denx.de>2021-06-09 14:32:42 +0300
commit3675ac081ad5129cbcb22b06fb6d8e3264a30d20 (patch)
treef6c0ce968e229d83060eb31324684cdf5f474480 /board/out4/o4-imx6ull-nano/Kconfig
parente2017ef6edcbab4d644579fb59429259d33b815a (diff)
downloadu-boot-3675ac081ad5129cbcb22b06fb6d8e3264a30d20.tar.xz
Add out4.ru O4-iMX-NANO board
Board designed for quick prototyping and has one microSD port, 2 Ethernet ports, 2 USB ports, I2C, SPI, CAN, RS-485, GPIO, UART interfaces, and 2 RGB LEDs. Signed-off-by: Oleh Kravchenko <oleg@kaa.org.ua> Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/out4/o4-imx6ull-nano/Kconfig')
-rw-r--r--board/out4/o4-imx6ull-nano/Kconfig57
1 files changed, 57 insertions, 0 deletions
diff --git a/board/out4/o4-imx6ull-nano/Kconfig b/board/out4/o4-imx6ull-nano/Kconfig
new file mode 100644
index 0000000000..c2497d521f
--- /dev/null
+++ b/board/out4/o4-imx6ull-nano/Kconfig
@@ -0,0 +1,57 @@
+if TARGET_O4_IMX6ULL_NANO
+
+config SYS_BOARD
+ default "o4-imx6ull-nano"
+
+config SYS_VENDOR
+ default "out4"
+
+config SYS_CONFIG_NAME
+ default "o4-imx6ull-nano"
+
+choice
+ prompt "Memory model"
+ default K4B4G1646D_BCMA
+ help
+ Memory type setup.
+
+ Please choose correct memory model here.
+
+config K4B4G1646D_BCMA
+ bool "K4B4G1646D-BCMA 256Mx16 (512 MiB/chip)"
+ help
+ Samsung DDR3 SDRAM
+ K4B4G1646D-BCMA
+
+config MT41K256M16HA_125E
+ bool "MT41K256M16HA-125:E 256Mx16 (512 MiB/chip)"
+ help
+ Micron DDR3L SDRAM
+ MT41K256M16HA-125:E
+
+endchoice
+
+choice
+ prompt "Mainboard model"
+ default O4_IMX_NANO
+ help
+ Mainboard setup.
+
+ Please choose correct main board model here.
+
+config O4_IMX_NANO
+ bool "O4-iMX-NANO"
+ help
+ A baseboard for EV-iMX280-NANO module:
+ https://out4.ru/products/board/18-o4-imx-nano.html
+
+endchoice
+
+config IMX_CONFIG
+ default "board/out4/o4-imx6ull-nano/K4B4G1646D-BCMA.cfg" if K4B4G1646D_BCMA
+ default "board/out4/o4-imx6ull-nano/MT41K256M16HA-125E.cfg" if MT41K256M16HA_125E
+
+config DEFAULT_DEVICE_TREE
+ default "o4-imx-nano" if O4_IMX_NANO
+
+endif