Newer
Older
barebox / arch / arm / mach-rockchip / Kconfig
@Wadim Egorov Wadim Egorov on 1 Sep 2016 658 bytes ARM: Add phyCORE-RK3288 SOM support

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

choice
	prompt "Select Rockchip SoC"

config ARCH_RK3188
	bool "Rockchip RK3188 SoCs"

config ARCH_RK3288
	bool "Rockchip RK3288 SoCs"
	select CLOCKSOURCE_ROCKCHIP
endchoice

comment "select Rockchip boards:"

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

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

endmenu