Kconfig 3.5 KB
Newer Older
1 2
config ARCH_SHMOBILE
	bool
3
	select ZONE_DMA if ARM_LPAE
4

5 6
config PM_RCAR
	bool
7
	select PM_GENERIC_DOMAINS if PM
8

9 10
config PM_RMOBILE
	bool
11
	select PM_GENERIC_DOMAINS
12

13 14
config ARCH_RCAR_GEN1
	bool
15
	select PM_RCAR if PM || SMP
16 17 18
	select RENESAS_INTC_IRQPIN
	select SYS_SUPPORTS_SH_TMU

19 20
config ARCH_RCAR_GEN2
	bool
21
	select PM_RCAR if PM || SMP
22 23
	select RENESAS_IRQC
	select SYS_SUPPORTS_SH_CMT
24
	select PCI_DOMAINS if PCI
25

26 27
config ARCH_RMOBILE
	bool
28
	select PM_RMOBILE if PM
29 30 31
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_TMU

32
menuconfig ARCH_SHMOBILE_MULTI
33
	bool "Renesas ARM SoCs" if ARCH_MULTI_V7
34
	depends on MMU
35
	select ARCH_SHMOBILE
36
	select HAVE_ARM_SCU if SMP
37
	select HAVE_ARM_TWD if SMP
38
	select ARM_GIC
39
	select ARCH_DMA_ADDR_T_64BIT if ARM_LPAE
40
	select NO_IOPORT_MAP
41 42 43 44 45
	select PINCTRL
	select ARCH_REQUIRE_GPIOLIB

if ARCH_SHMOBILE_MULTI

46
#comment "Renesas ARM SoCs System Type"
47

48 49
config ARCH_EMEV2
	bool "Emma Mobile EV2"
50
	select SYS_SUPPORTS_EM_STI
51

52 53
config ARCH_R7S72100
	bool "RZ/A1H (R7S72100)"
54
	select PM_GENERIC_DOMAINS if PM
55
	select SYS_SUPPORTS_SH_MTU2
56

57 58 59 60 61
config ARCH_R8A73A4
	bool "R-Mobile APE6 (R8A73A40)"
	select ARCH_RMOBILE
	select RENESAS_IRQC

62 63 64 65 66
config ARCH_R8A7740
	bool "R-Mobile A1 (R8A77400)"
	select ARCH_RMOBILE
	select RENESAS_INTC_IRQPIN

67 68 69 70
config ARCH_R8A7778
	bool "R-Car M1A (R8A77781)"
	select ARCH_RCAR_GEN1

71 72
config ARCH_R8A7779
	bool "R-Car H1 (R8A77790)"
73
	select ARCH_RCAR_GEN1
74

75 76
config ARCH_R8A7790
	bool "R-Car H2 (R8A77900)"
77
	select ARCH_RCAR_GEN2
78
	select I2C
79

80
config ARCH_R8A7791
81
	bool "R-Car M2-W (R8A77910)"
82
	select ARCH_RCAR_GEN2
83
	select I2C
84

85 86 87
config ARCH_R8A7793
	bool "R-Car M2-N (R8A7793)"
	select ARCH_RCAR_GEN2
88
	select I2C
89

90 91 92
config ARCH_R8A7794
	bool "R-Car E2 (R8A77940)"
	select ARCH_RCAR_GEN2
93

94 95 96 97 98
config ARCH_SH73A0
	bool "SH-Mobile AG5 (R8A73A00)"
	select ARCH_RMOBILE
	select RENESAS_INTC_IRQPIN

99
comment "Renesas ARM SoCs System Configuration"
100 101
endif

102
if ARCH_SHMOBILE_LEGACY
103

104
comment "Renesas ARM SoCs System Type"
105

106
config ARCH_R8A7778
107
	bool "R-Car M1A (R8A77781)"
108
	select ARCH_RCAR_GEN1
109
	select ARCH_WANT_OPTIONAL_GPIOLIB
110
	select ARM_GIC
111

112 113
config ARCH_R8A7779
	bool "R-Car H1 (R8A77790)"
114
	select ARCH_RCAR_GEN1
115 116
	select ARCH_WANT_OPTIONAL_GPIOLIB
	select ARM_GIC
117

118
comment "Renesas ARM SoCs Board Type"
119

120 121 122 123
config MACH_BOCKW
	bool "BOCK-W platform"
	depends on ARCH_R8A7778
	select ARCH_REQUIRE_GPIOLIB
124
	select REGULATOR_FIXED_VOLTAGE if REGULATOR
125
	select SND_SOC_AK4554 if SND_SIMPLE_CARD
126
	select SND_SOC_AK4642 if SND_SIMPLE_CARD && I2C
127
	select USE_OF
128

129 130 131 132 133 134 135 136 137 138 139 140 141
config MACH_BOCKW_REFERENCE
	bool "BOCK-W  - Reference Device Tree Implementation"
	depends on ARCH_R8A7778
	select ARCH_REQUIRE_GPIOLIB
	select REGULATOR_FIXED_VOLTAGE if REGULATOR
	select USE_OF
	---help---
	   Use reference implementation of BockW board support
	   which makes use of device tree at the expense
	   of not supporting a number of devices.

	   This is intended to aid developers

142
comment "Renesas ARM SoCs System Configuration"
143

144 145 146 147
config CPU_HAS_INTEVT
        bool
	default y

148 149 150 151 152 153 154
config SH_CLK_CPG
	bool

source "drivers/sh/Kconfig"

endif

155
if ARCH_SHMOBILE
156

157 158
menu "Timer and clock configuration"

159 160 161 162 163 164 165 166
config SHMOBILE_TIMER_HZ
	int "Kernel HZ (jiffies per second)"
	range 32 1024
	default "128"
	help
	  Allows the configuration of the timer frequency. It is customary
	  to have the timer interrupt run at 1000 Hz or 100 Hz, but in the
	  case of low timer frequencies other values may be more suitable.
167 168
	  Renesas ARM SoC systems using a 32768 Hz RCLK for clock events may
	  want to select a HZ value such as 128 that can evenly divide RCLK.
169 170
	  A HZ value that does not divide evenly may cause timer drift.

171 172 173
endmenu

endif