9a06ccc8610e38f3f6dca7b9e187879d9445499e
[oweals/u-boot.git] / arch / arm / mach-meson / Kconfig
1 if ARCH_MESON
2
3 config MESON_GXBB
4         bool "Support Meson GXBaby"
5         select ARM64
6         select CLK
7         select DM
8         select DM_SERIAL
9         help
10           The Amlogic Meson GXBaby (S905) is an ARM SoC with a
11           quad-core Cortex-A53 CPU and a Mali-450 GPU.
12
13 config MESON_GXL
14         bool "Support Meson GXL"
15         select ARM64
16         select CLK
17         select DM
18         select DM_SERIAL
19         help
20           The Amlogic Meson GXL (S905X and S905X) is an ARM SoC with a
21           quad-core Cortex-A53 CPU and a Mali-450 GPU.
22
23 if MESON_GXBB
24
25 config TARGET_ODROID_C2
26         bool "ODROID-C2"
27         help
28           ODROID-C2 is a single board computer based on Meson GXBaby
29           with 2 GiB of RAM, Gigabit Ethernet, HDMI, 4 USB, micro-SD
30           slot, eMMC, IR receiver and a 40-pin GPIO header.
31
32 endif
33
34 if MESON_GXL
35
36 config TARGET_P212
37         bool "P212"
38         help
39           P212 is a reference dessign board based on Meson GXL S905X SoC
40           with 2 GiB of RAM, Ethernet, HDMI, 2 USB, micro-SD slot,
41           eMMC, IR receiver, CVBS+Audio jack and a SDIO WiFi module.
42
43 config TARGET_LIBRETECH_CC
44         bool "LIBRETECH-CC"
45         help
46           LibreTech CC is a single board computer based on Meson GXL
47           with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
48           eMMC, IR receiver and a 40-pin GPIO header.
49
50 config TARGET_KHADAS_VIM
51         bool "KHADAS-VIM"
52         help
53           Khadas VIM is a single board computer based on Meson GXL
54           with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
55           eMMC, IR receiver and a 40-pin GPIO header.
56
57 endif
58
59 config SYS_SOC
60         default "meson"
61
62 config SYS_MALLOC_F_LEN
63         default 0x1000
64
65 source "board/amlogic/odroid-c2/Kconfig"
66
67 source "board/amlogic/p212/Kconfig"
68
69 source "board/amlogic/libretech-cc/Kconfig"
70
71 source "board/amlogic/khadas-vim/Kconfig"
72
73 endif