aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-u8500/Kconfig
blob: 5ba8328b782ec475d85f4d8d7d45c22036d73d1b (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
if ARCH_U8500

config UX500_SOC_DB8500
	bool
	depends on (MACH_U8500_MOP || MACH_U8500_SIMULATOR)
	default y

config UX500_SOC_DB5500
	bool
	default y
	depends on MACH_U5500_SIMULATOR

choice
	prompt "Ux500 target platform"
	default MACH_U8500_MOP

config MACH_U8500_SIMULATOR
	bool "U8500 Simulator (SVP8500)"
	select CPU_V7
	select ARM_GIC
	select SMP
	help
		Supports Simulation for u8500 platform

config MACH_U5500_SIMULATOR
	bool "U5500 Simulator (SVP5500)"
	select CPU_V7
	select ARM_GIC
	select SMP
	help
		Supports Simulation for u5500(FairBanks) platform

config MACH_U8500_MOP
	bool "U8500 MOP500/HREF"
	select CPU_V7
	select ARM_GIC
	select SMP
	help
		Supports MOP500 target board

endchoice

config U8500_CPUIDLE
    tristate "CPUIdle support"
    depends on UX500_SOC_DB8500 && CPU_IDLE
    select GENERIC_CLOCKEVENTS_BROADCAST
    help
        Add support for CPUIdle for U8500

config U8500_CPUFREQ
    tristate "CPUFreq support"
    depends on UX500_SOC_DB8500 && CPU_FREQ
    default y
    help
        Add support for CPU Frequency scaling for U8500

config U8500_PM
	bool
	depends on UX500_SOC_DB8500 && PM

config ARCH_HAS_CPU_IDLE_WAIT
    def_bool y

source "arch/arm/mach-u8500/Kconfig-arch"

config FORCE_MAX_ZONEORDER
    int "Maximum zone order"
    default "12"

endif