blob: 0350787daa79f3de397b19f6d4b14db22c070d3e [file] [log] [blame]
Beniamino Galvanibfcef282016-05-08 08:30:16 +02001if ARCH_MESON
2
3config MESON_GXBB
4 bool "Support Meson GXBaby"
5 select ARM64
6 select DM
7 select DM_SERIAL
8 help
9 The Amlogic Meson GXBaby (S905) is an ARM SoC with a
10 quad-core Cortex-A53 CPU and a Mali-450 GPU.
11
Neil Armstrongcade8652017-10-12 15:50:32 +020012config MESON_GXL
13 bool "Support Meson GXL"
14 select ARM64
15 select DM
16 select DM_SERIAL
17 help
18 The Amlogic Meson GXL (S905X and S905X) is an ARM SoC with a
19 quad-core Cortex-A53 CPU and a Mali-450 GPU.
20
Beniamino Galvanibfcef282016-05-08 08:30:16 +020021if MESON_GXBB
22
23config TARGET_ODROID_C2
24 bool "ODROID-C2"
25 help
26 ODROID-C2 is a single board computer based on Meson GXBaby
27 with 2 GiB of RAM, Gigabit Ethernet, HDMI, 4 USB, micro-SD
28 slot, eMMC, IR receiver and a 40-pin GPIO header.
29
30endif
31
Neil Armstrongcade8652017-10-12 15:50:32 +020032if MESON_GXL
33
34config TARGET_P212
35 bool "P212"
36 help
37 P212 is a reference dessign board based on Meson GXL S905X SoC
38 with 2 GiB of RAM, Ethernet, HDMI, 2 USB, micro-SD slot,
39 eMMC, IR receiver, CVBS+Audio jack and a SDIO WiFi module.
40
Neil Armstrong96e7b5a2017-11-27 10:16:19 +010041config TARGET_LIBRETECH_CC
42 bool "LIBRETECH-CC"
43 help
44 LibreTech CC is a single board computer based on Meson GXL
45 with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
46 eMMC, IR receiver and a 40-pin GPIO header.
47
Neil Armstrong5ff2ee42017-11-27 10:16:20 +010048config TARGET_KHADAS_VIM
49 bool "KHADAS-VIM"
50 help
51 Khadas VIM is a single board computer based on Meson GXL
52 with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
53 eMMC, IR receiver and a 40-pin GPIO header.
54
Neil Armstrongcade8652017-10-12 15:50:32 +020055endif
56
Beniamino Galvanibfcef282016-05-08 08:30:16 +020057config SYS_SOC
58 default "meson"
59
60config SYS_MALLOC_F_LEN
61 default 0x1000
62
Carlo Caione1e237372016-06-10 20:18:23 +020063source "board/amlogic/odroid-c2/Kconfig"
Beniamino Galvanibfcef282016-05-08 08:30:16 +020064
Neil Armstrongcade8652017-10-12 15:50:32 +020065source "board/amlogic/p212/Kconfig"
66
Neil Armstrong96e7b5a2017-11-27 10:16:19 +010067source "board/amlogic/libretech-cc/Kconfig"
68
Neil Armstrong5ff2ee42017-11-27 10:16:20 +010069source "board/amlogic/khadas-vim/Kconfig"
70
Beniamino Galvanibfcef282016-05-08 08:30:16 +020071endif