blob: ffa4d4865a61e72930f5888f25de2060e55b5f52 [file] [log] [blame]
Stefan Bosch95e9a8e2020-07-10 19:07:26 +02001if ARCH_NEXELL
2
3config ARCH_S5P4418
4 bool "Nexell S5P4418 SoC"
5 select CPU_V7A
6 select OF_CONTROL
7 select OF_SEPARATE
8 select NX_GPIO
9 select PL011_SERIAL
10 select PL011_SERIAL_FLUSH_ON_INIT
11 help
12 Enable support for Nexell S5P4418 SoC.
13
14config ARCH_S5P6818
15 bool "Nexell S5P6818 SoC"
16 select ARM64
17 select ARMV8_MULTIENTRY
18 help
19 Enable support for Nexell S5P6818 SoC.
20
21menu "Nexell S5P4418/S5P6818"
22 depends on ARCH_NEXELL
23
24choice
25 prompt "Nexell S5P4418/S5P6818 board select"
26 optional
27
28config TARGET_NANOPI2
29 bool "FriendlyARM NanoPi2 / NanoPC-T2 Board"
30 select ARCH_S5P4418
31 help
32 Enable support for FriendlyARM NanoPi2 and NanoPC-T2 Boards.
33
34endchoice
35
36config SYS_BOARD
37 default "nanopi2"
38
39config SYS_VENDOR
40 default "friendlyarm"
41
42config SYS_SOC
43 default "nexell"
44
45config SYS_CONFIG_NAME
46 default "s5p4418_nanopi2"
47
48endmenu
49
50config SYS_PLLFIN
51 int
52
53config TIMER_SYS_TICK_CH
54 int
55
56source "board/friendlyarm/Kconfig"
57
58endif