aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/platsmp.c
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 /arch/arm/mach-tegra/platsmp.c
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>
Diffstat (limited to 'arch/arm/mach-tegra/platsmp.c')
-rw-r--r--arch/arm/mach-tegra/platsmp.c50
1 files changed, 49 insertions, 1 deletions
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;