Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 1 | if ARCH_MESON |
| 2 | |
| 3 | config MESON_GXBB |
| 4 | bool "Support Meson GXBaby" |
| 5 | select ARM64 |
Beniamino Galvani | b67bfaf | 2018-06-14 13:43:39 +0200 | [diff] [blame^] | 6 | select CLK |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 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 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 13 | config MESON_GXL |
| 14 | bool "Support Meson GXL" |
| 15 | select ARM64 |
Beniamino Galvani | b67bfaf | 2018-06-14 13:43:39 +0200 | [diff] [blame^] | 16 | select CLK |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 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 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 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 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 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 | |
Neil Armstrong | 514ad81 | 2017-11-27 10:16:19 +0100 | [diff] [blame] | 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 | |
Neil Armstrong | 83256d8 | 2017-11-27 10:16:20 +0100 | [diff] [blame] | 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 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 57 | endif |
| 58 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 59 | config SYS_SOC |
| 60 | default "meson" |
| 61 | |
| 62 | config SYS_MALLOC_F_LEN |
| 63 | default 0x1000 |
| 64 | |
Carlo Caione | 6ac0699 | 2016-06-10 20:18:23 +0200 | [diff] [blame] | 65 | source "board/amlogic/odroid-c2/Kconfig" |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 66 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 67 | source "board/amlogic/p212/Kconfig" |
| 68 | |
Neil Armstrong | 514ad81 | 2017-11-27 10:16:19 +0100 | [diff] [blame] | 69 | source "board/amlogic/libretech-cc/Kconfig" |
| 70 | |
Neil Armstrong | 83256d8 | 2017-11-27 10:16:20 +0100 | [diff] [blame] | 71 | source "board/amlogic/khadas-vim/Kconfig" |
| 72 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 73 | endif |