Kconfig (bf61c8840efe60fd8f91446860b63338fb424158) | Kconfig (a29da136de345f074d0c64f1c3b38eef30116b32) |
---|---|
1menu "Versatile platform type" 2 depends on ARCH_VERSATILE 3 4config ARCH_VERSATILE_PB 5 bool "Support Versatile Platform Baseboard for ARM926EJ-S" 6 default y | 1config ARCH_VERSATILE 2 bool "ARM Ltd. Versatile family" 3 depends on ARCH_MULTI_V5 4 select ARM_AMBA 5 select ARM_TIMER_SP804 6 select ARM_VIC 7 select CLKSRC_VERSATILE 8 select COMMON_CLK_VERSATILE |
7 select CPU_ARM926T | 9 select CPU_ARM926T |
10 select ICST |
|
8 select MIGHT_HAVE_PCI | 11 select MIGHT_HAVE_PCI |
12 select PLAT_VERSATILE 13 select VERSATILE_FPGA_IRQ |
|
9 help | 14 help |
10 Include support for the ARM(R) Versatile Platform Baseboard 11 for the ARM926EJ-S. | 15 This enables support for ARM Ltd Versatile board. |
12 | 16 |
13config MACH_VERSATILE_AB 14 bool "Support Versatile Application Baseboard for ARM926EJ-S" 15 select CPU_ARM926T 16 help 17 Include support for the ARM(R) Versatile Application Baseboard 18 for the ARM926EJ-S. 19 20config MACH_VERSATILE_DT 21 bool "Support Versatile platform from device tree" 22 select CPU_ARM926T 23 select USE_OF 24 help 25 Include support for the ARM(R) Versatile/PB platform, 26 using the device tree for discovery 27 28config MACH_VERSATILE_AUTO 29 def_bool y 30 depends on !ARCH_VERSATILE_PB && !MACH_VERSATILE_AB 31 select MACH_VERSATILE_DT 32 33endmenu | |