mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
7842b6a91e
SYS_ARCH_TIMER guards the usage of the ARM Generic Timer (aka arch timer) in U-Boot. At the moment it is mandatory for ARMv8 and used by a few ARMv7 boards. Add a proper Kconfig symbol to express this dependency properly, allowing certain board configuration to later disable arch timer in case there are any problems with it. Signed-off-by: Andre Przywara <andre.przywara@arm.com> [tuomas: rebase + fix conflicts and resync with moveconfig & use select] Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
18 lines
249 B
Text
18 lines
249 B
Text
if ARCH_MX7ULP
|
|
|
|
config SYS_SOC
|
|
default "mx7ulp"
|
|
|
|
choice
|
|
prompt "MX7ULP board select"
|
|
optional
|
|
|
|
config TARGET_MX7ULP_EVK
|
|
bool "Support mx7ulp EVK board"
|
|
select SYS_ARCH_TIMER
|
|
|
|
endchoice
|
|
|
|
source "board/freescale/mx7ulp_evk/Kconfig"
|
|
|
|
endif
|