summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-rockchip/Kconfig
blob: 2e855714f7da5978503d02a578d5fcd7b7896696 (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
65
66
67
68
69
70
# SPDX-License-Identifier: GPL-2.0-only

menu "Rockchip Features"
	depends on ARCH_ROCKCHIP

config ARCH_TEXT_BASE
	hex
	default 0x68000000 if ARCH_RK3188
	default 0x0 if ARCH_RK3288

config RK_TIMER
	hex
	default 1

config ARCH_RK3188
	bool
	select CPU_V7
	select ARM_SMP_TWD
	select ARCH_HAS_L2X0

config ARCH_RK3288
	bool
	select CPU_V7
	select ARM_SMP_TWD
	select ARCH_HAS_L2X0
	select CLOCKSOURCE_ROCKCHIP

config ARCH_RK3568
	bool
	select CPU_V8
	select ARM_ATF
	select SYS_SUPPORTS_64BIT_KERNEL

comment "select Rockchip boards:"

config MACH_RADXA_ROCK
	select ARCH_RK3188
	select I2C
	select MFD_ACT8846
	bool "Radxa rock board"

config MACH_PHYTEC_SOM_RK3288
	select ARCH_RK3288
	select I2C
	bool "RK3288 phyCORE SOM"
	help
	  Say Y here if you are using a RK3288 based Phytecs SOM

config MACH_RK3568_EVB
	select ARCH_RK3568
	bool "RK3568 EVB"
	help
	  Say Y here if you are using a RK3568 EVB

config MACH_PINE64_QUARTZ64
	select ARCH_RK3568
	bool "Pine64 Quartz64"
	help
	  Say Y here if you are using a Pine64 Quartz64

comment "select board features:"

config ARCH_RK3568_OPTEE
	bool "Build rk3568 OP-TEE binary into barebox"
	depends on ARCH_RK3568
	help
	  With this option enabled the RK3568 OP-TEE binary is compiled
	  into barebox and started along with the BL31 trusted firmware.

endmenu