summaryrefslogtreecommitdiff
path: root/arch/arm/mach-nexell/Kconfig
blob: 86a23986373291002a14bb9cb7ed638409f75bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
if ARCH_NEXELL

config ARCH_S5P4418
	bool "Nexell S5P4418 SoC"
	select CPU_V7A
	select OF_CONTROL
	select OF_SEPARATE
	select NX_GPIO
	select PL011_SERIAL
	select PL011_SERIAL_FLUSH_ON_INIT
	help
	  Enable support for Nexell S5P4418 SoC.

config ARCH_S5P6818
	bool "Nexell S5P6818 SoC"
	select ARM64
	select ARMV8_MULTIENTRY
	help
	  Enable support for Nexell S5P6818 SoC.

menu "Nexell S5P4418/S5P6818"
	depends on ARCH_NEXELL

choice
	prompt "Nexell S5P4418/S5P6818 board select"
	optional

config TARGET_NANOPI2
	bool "FriendlyARM NanoPi2 / NanoPC-T2 Board"
	select ARCH_S5P4418
	help
	  Enable support for FriendlyARM NanoPi2 and NanoPC-T2 Boards.

endchoice

config SYS_PLLFIN
	int

config TIMER_SYS_TICK_CH
	int

config SYS_BOARD
	default "nanopi2"

config SYS_VENDOR
	default "friendlyarm"

config SYS_SOC
	default "nexell"

config SYS_CONFIG_NAME
	default "s5p4418_nanopi2"

config SYS_PLLFIN
	default 24000000

config TIMER_SYS_TICK_CH
	default 0

endmenu

source "board/friendlyarm/Kconfig"

endif