mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
af9d238c6a
For unknown reasons, we have to enable three symbols for a platform to use a reset controller driver, otherwise we get a Kconfig warning: warning: (MACH_OX810SE) selects RESET_OXNAS which has unmet direct dependencies (RESET_CONTROLLER) This selects the other two symbols for oxnas. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Neil Armstrong <narmstrong@baylibre.com>
27 lines
614 B
Plaintext
27 lines
614 B
Plaintext
menuconfig ARCH_OXNAS
|
|
bool "Oxford Semiconductor OXNAS Family SoCs"
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select GPIOLIB
|
|
select PINCTRL
|
|
depends on ARCH_MULTI_V5
|
|
help
|
|
Support for OxNas SoC family developed by Oxford Semiconductor.
|
|
|
|
if ARCH_OXNAS
|
|
|
|
config MACH_OX810SE
|
|
bool "Support OX810SE Based Products"
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select COMMON_CLK_OXNAS
|
|
select CPU_ARM926T
|
|
select MFD_SYSCON
|
|
select OXNAS_RPS_TIMER
|
|
select PINCTRL_OXNAS
|
|
select RESET_CONTROLLER
|
|
select RESET_OXNAS
|
|
select VERSATILE_FPGA_IRQ
|
|
help
|
|
Include Support for the Oxford Semiconductor OX810SE SoC Based Products.
|
|
|
|
endif
|