Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 1 | if ARCH_MESON |
| 2 | |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 3 | config MESON64_COMMON |
| 4 | bool |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 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 |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 9 | imply CMD_DM |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 10 | |
| 11 | config MESON_GXBB |
| 12 | bool |
| 13 | select MESON64_COMMON |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 14 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 15 | config MESON_GXL |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 16 | bool |
| 17 | select MESON64_COMMON |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 18 | |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 19 | config MESON_GXM |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 20 | bool |
| 21 | select MESON64_COMMON |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 22 | |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 23 | choice |
| 24 | prompt "Platform select" |
| 25 | default TARGET_ODROID_C2 |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 26 | |
| 27 | config TARGET_ODROID_C2 |
| 28 | bool "ODROID-C2" |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 29 | select MESON_GXBB |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 30 | help |
| 31 | ODROID-C2 is a single board computer based on Meson GXBaby |
| 32 | with 2 GiB of RAM, Gigabit Ethernet, HDMI, 4 USB, micro-SD |
| 33 | slot, eMMC, IR receiver and a 40-pin GPIO header. |
Jerome Brunet | dec9575 | 2018-10-19 13:27:40 +0200 | [diff] [blame^] | 34 | You should also select this TARGET if you have an nanopi-k2 |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 35 | |
| 36 | config TARGET_P212 |
| 37 | bool "P212" |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 38 | select MESON_GXL |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 39 | help |
| 40 | P212 is a reference dessign board based on Meson GXL S905X SoC |
| 41 | with 2 GiB of RAM, Ethernet, HDMI, 2 USB, micro-SD slot, |
| 42 | eMMC, IR receiver, CVBS+Audio jack and a SDIO WiFi module. |
Jerome Brunet | 4191066 | 2018-10-19 12:14:57 +0200 | [diff] [blame] | 43 | You should also select this TARGET if you have Khadas Vim or |
| 44 | a libretech aml-s905x-cc |
Neil Armstrong | 83256d8 | 2017-11-27 10:16:20 +0100 | [diff] [blame] | 45 | |
Neil Armstrong | 716dbbf | 2018-11-09 11:57:47 +0100 | [diff] [blame] | 46 | config TARGET_Q200 |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 47 | bool "KHADAS-VIM2" |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 48 | select MESON_GXM |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 49 | help |
Neil Armstrong | 716dbbf | 2018-11-09 11:57:47 +0100 | [diff] [blame] | 50 | Q200 is a reference dessign board based on Meson GXM |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 51 | with 2/3 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot, |
Neil Armstrong | 716dbbf | 2018-11-09 11:57:47 +0100 | [diff] [blame] | 52 | eMMC, IR receiver. |
| 53 | You should also select this TARGET if you have Khadas Vim2. |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 54 | |
Jerome Brunet | 630239d | 2018-10-05 10:25:47 +0200 | [diff] [blame] | 55 | endchoice |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 56 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 57 | config SYS_SOC |
| 58 | default "meson" |
| 59 | |
| 60 | config SYS_MALLOC_F_LEN |
| 61 | default 0x1000 |
| 62 | |
Carlo Caione | 6ac0699 | 2016-06-10 20:18:23 +0200 | [diff] [blame] | 63 | source "board/amlogic/odroid-c2/Kconfig" |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 64 | |
Neil Armstrong | 4c2ea41 | 2017-10-12 15:50:32 +0200 | [diff] [blame] | 65 | source "board/amlogic/p212/Kconfig" |
| 66 | |
Neil Armstrong | 716dbbf | 2018-11-09 11:57:47 +0100 | [diff] [blame] | 67 | source "board/amlogic/q200/Kconfig" |
Loic Devulder | d17b809 | 2018-10-03 12:02:07 +0200 | [diff] [blame] | 68 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 69 | endif |