aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter De Schrijver <pdeschrijver@nvidia.com>2012-02-09 18:47:50 -0500
committerOlof Johansson <olof@lixom.net>2012-02-26 17:44:46 -0500
commit86e51a2ee471062184d2f74b46c45d344a2b9b38 (patch)
tree515e410e2fa652b368e31f350c50b73d477d8521
parent65fe31da5cede3597938b0f3bba99f604369018d (diff)
ARM: tegra: support for secondary cores on Tegra30
Add support for bringing up secondary cores on Tegra30. On Tegra30 secondary CPU cores are powergated, so we need to turn on the domains before we can bring the CPU cores online. Bringing secondary cores online happens early during the sytem boot, so we call powergating initialization from platform early_init function. Based on work by: Scott Williams <scwilliams@nvidia.com> Colin Cross <ccross@android.com> Alex Frid <afrid@nvidia.com> Signed-off-by: Peter De Schrijver <pdeschrijver@nvidia.com> Acked-by: Stephen Warren <swarren@nvidia.com> Tested-by: Stephen Warren <swarren@nvidia.com> Acked-by: Colin Cross <ccross@android.com> Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r--arch/arm/mach-tegra/headsmp.S32
-rw-r--r--arch/arm/mach-tegra/platsmp.c50
2 files changed, 81 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/headsmp.S b/arch/arm/mach-tegra/headsmp.S
index 37d6dd96d62f..fef9c2c51370 100644
--- a/arch/arm/mach-tegra/headsmp.S
+++ b/arch/arm/mach-tegra/headsmp.S
@@ -164,6 +164,38 @@ __die:
164 str r1, [r7, #0x340] @ CLK_RST_CPU_CMPLX_SET 164 str r1, [r7, #0x340] @ CLK_RST_CPU_CMPLX_SET
165#endif 165#endif
1661: 1661:
167#ifdef CONFIG_ARCH_TEGRA_3x_SOC
168 mov32 r6, TEGRA_FLOW_CTRL_BASE
169
170 cmp r10, #0
171 moveq r1, #FLOW_CTRL_HALT_CPU0_EVENTS
172 moveq r2, #FLOW_CTRL_CPU0_CSR
173 movne r1, r10, lsl #3
174 addne r2, r1, #(FLOW_CTRL_CPU1_CSR-8)
175 addne r1, r1, #(FLOW_CTRL_HALT_CPU1_EVENTS-8)
176
177 /* Clear CPU "event" and "interrupt" flags and power gate
178 it when halting but not before it is in the "WFI" state. */
179 ldr r0, [r6, +r2]
180 orr r0, r0, #FLOW_CTRL_CSR_INTR_FLAG | FLOW_CTRL_CSR_EVENT_FLAG
181 orr r0, r0, #FLOW_CTRL_CSR_ENABLE
182 str r0, [r6, +r2]
183
184 /* Unconditionally halt this CPU */
185 mov r0, #FLOW_CTRL_WAITEVENT
186 str r0, [r6, +r1]
187 ldr r0, [r6, +r1] @ memory barrier
188
189 dsb
190 isb
191 wfi @ CPU should be power gated here
192
193 /* If the CPU didn't power gate above just kill it's clock. */
194
195 mov r0, r11, lsl #8
196 str r0, [r7, #348] @ CLK_CPU_CMPLX_SET
197#endif
198
167 /* If the CPU still isn't dead, just spin here. */ 199 /* If the CPU still isn't dead, just spin here. */
168 b . 200 b .
169ENDPROC(__tegra_cpu_reset_handler) 201ENDPROC(__tegra_cpu_reset_handler)
diff --git a/arch/arm/mach-tegra/platsmp.c b/arch/arm/mach-tegra/platsmp.c
index 79a241a6320f..1a208dbf682f 100644
--- a/arch/arm/mach-tegra/platsmp.c
+++ b/arch/arm/mach-tegra/platsmp.c
@@ -24,7 +24,9 @@
24#include <asm/mach-types.h> 24#include <asm/mach-types.h>
25#include <asm/smp_scu.h> 25#include <asm/smp_scu.h>
26 26
27#include <mach/clk.h>
27#include <mach/iomap.h> 28#include <mach/iomap.h>
29#include <mach/powergate.h>
28 30
29#include "fuse.h" 31#include "fuse.h"
30#include "flowctrl.h" 32#include "flowctrl.h"
@@ -42,6 +44,8 @@ static void __iomem *scu_base = IO_ADDRESS(TEGRA_ARM_PERIF_BASE);
42 (IO_ADDRESS(TEGRA_CLK_RESET_BASE) + 0x340) 44 (IO_ADDRESS(TEGRA_CLK_RESET_BASE) + 0x340)
43#define CLK_RST_CONTROLLER_RST_CPU_CMPLX_CLR \ 45#define CLK_RST_CONTROLLER_RST_CPU_CMPLX_CLR \
44 (IO_ADDRESS(TEGRA_CLK_RESET_BASE) + 0x344) 46 (IO_ADDRESS(TEGRA_CLK_RESET_BASE) + 0x344)
47#define CLK_RST_CONTROLLER_CLK_CPU_CMPLX_CLR \
48 (IO_ADDRESS(TEGRA_CLK_RESET_BASE) + 0x34c)
45 49
46#define CPU_CLOCK(cpu) (0x1<<(8+cpu)) 50#define CPU_CLOCK(cpu) (0x1<<(8+cpu))
47#define CPU_RESET(cpu) (0x1111ul<<(cpu)) 51#define CPU_RESET(cpu) (0x1111ul<<(cpu))
@@ -73,11 +77,52 @@ static int tegra20_power_up_cpu(unsigned int cpu)
73 return 0; 77 return 0;
74} 78}
75 79
80static int tegra30_power_up_cpu(unsigned int cpu)
81{
82 u32 reg;
83 int ret, pwrgateid;
84 unsigned long timeout;
85
86 pwrgateid = tegra_cpu_powergate_id(cpu);
87 if (pwrgateid < 0)
88 return pwrgateid;
89
90 /* If this is the first boot, toggle powergates directly. */
91 if (!tegra_powergate_is_powered(pwrgateid)) {
92 ret = tegra_powergate_power_on(pwrgateid);
93 if (ret)
94 return ret;
95
96 /* Wait for the power to come up. */
97 timeout = jiffies + 10*HZ;
98 while (tegra_powergate_is_powered(pwrgateid)) {
99 if (time_after(jiffies, timeout))
100 return -ETIMEDOUT;
101 udelay(10);
102 }
103 }
104
105 /* CPU partition is powered. Enable the CPU clock. */
106 writel(CPU_CLOCK(cpu), CLK_RST_CONTROLLER_CLK_CPU_CMPLX_CLR);
107 reg = readl(CLK_RST_CONTROLLER_CLK_CPU_CMPLX_CLR);
108 udelay(10);
109
110 /* Remove I/O clamps. */
111 ret = tegra_powergate_remove_clamping(pwrgateid);
112 udelay(10);
113
114 /* Clear flow controller CSR. */
115 flowctrl_write_cpu_csr(cpu, 0);
116
117 return 0;
118}
119
76int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) 120int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
77{ 121{
78 int status; 122 int status;
79 123
80 /* Force the CPU into reset. The CPU must remain in reset when the 124 /*
125 * Force the CPU into reset. The CPU must remain in reset when the
81 * flow controller state is cleared (which will cause the flow 126 * flow controller state is cleared (which will cause the flow
82 * controller to stop driving reset if the CPU has been power-gated 127 * controller to stop driving reset if the CPU has been power-gated
83 * via the flow controller). This will have no effect on first boot 128 * via the flow controller). This will have no effect on first boot
@@ -98,6 +143,9 @@ int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
98 case TEGRA20: 143 case TEGRA20:
99 status = tegra20_power_up_cpu(cpu); 144 status = tegra20_power_up_cpu(cpu);
100 break; 145 break;
146 case TEGRA30:
147 status = tegra30_power_up_cpu(cpu);
148 break;
101 default: 149 default:
102 status = -EINVAL; 150 status = -EINVAL;
103 break; 151 break;