blob: 2c6b3d55213b49f16ee256548279b1742111bd20 [file] [log] [blame]
Colin Cross1cea7322010-02-21 17:46:23 -08001/*
2 * linux/arch/arm/mach-tegra/platsmp.c
3 *
4 * Copyright (C) 2002 ARM Ltd.
5 * All Rights Reserved
6 *
7 * Copyright (C) 2009 Palm
8 * All Rights Reserved
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14#include <linux/init.h>
15#include <linux/errno.h>
16#include <linux/delay.h>
17#include <linux/device.h>
18#include <linux/jiffies.h>
19#include <linux/smp.h>
20#include <linux/io.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060021#include <linux/irqchip/arm-gic.h>
Prashant Gaikwad89572c72013-01-11 13:16:21 +053022#include <linux/clk/tegra.h>
Colin Cross1cea7322010-02-21 17:46:23 -080023
24#include <asm/cacheflush.h>
Colin Cross1cea7322010-02-21 17:46:23 -080025#include <asm/mach-types.h>
Colin Cross1cea7322010-02-21 17:46:23 -080026#include <asm/smp_scu.h>
Joseph Lo130bfed2013-01-03 15:31:31 +080027#include <asm/smp_plat.h>
Colin Cross1cea7322010-02-21 17:46:23 -080028
Peter De Schrijver86e51a22012-02-10 01:47:50 +020029#include <mach/powergate.h>
Colin Cross1cea7322010-02-21 17:46:23 -080030
Peter De Schrijverb36ab972012-02-10 01:47:45 +020031#include "fuse.h"
32#include "flowctrl.h"
33#include "reset.h"
34
Marc Zyngiera1725732011-09-08 13:15:22 +010035#include "common.h"
Stephen Warren2be39c02012-10-04 14:24:09 -060036#include "iomap.h"
Marc Zyngiera1725732011-09-08 13:15:22 +010037
Colin Cross1cea7322010-02-21 17:46:23 -080038extern void tegra_secondary_startup(void);
39
Joseph Lo130bfed2013-01-03 15:31:31 +080040static cpumask_t tegra_cpu_init_mask;
Colin Cross1cea7322010-02-21 17:46:23 -080041
42#define EVP_CPU_RESET_VECTOR \
43 (IO_ADDRESS(TEGRA_EXCEPTION_VECTORS_BASE) + 0x100)
Peter De Schrijverb36ab972012-02-10 01:47:45 +020044
Marc Zyngiera1725732011-09-08 13:15:22 +010045static void __cpuinit tegra_secondary_init(unsigned int cpu)
Colin Cross1cea7322010-02-21 17:46:23 -080046{
Colin Cross1cea7322010-02-21 17:46:23 -080047 /*
48 * if any interrupts are already enabled for the primary
49 * core (e.g. timer irq), then they will not have been enabled
50 * for us: do so
51 */
Russell King38489532010-12-04 16:01:03 +000052 gic_secondary_init(0);
Colin Cross1cea7322010-02-21 17:46:23 -080053
Joseph Lo130bfed2013-01-03 15:31:31 +080054 cpumask_set_cpu(cpu, &tegra_cpu_init_mask);
Peter De Schrijverb36ab972012-02-10 01:47:45 +020055}
56
57static int tegra20_power_up_cpu(unsigned int cpu)
58{
Peter De Schrijverb36ab972012-02-10 01:47:45 +020059 /* Enable the CPU clock. */
Joseph Lobb603272012-08-16 17:31:49 +080060 tegra_enable_cpu_clock(cpu);
Peter De Schrijverb36ab972012-02-10 01:47:45 +020061
62 /* Clear flow controller CSR. */
63 flowctrl_write_cpu_csr(cpu, 0);
64
65 return 0;
Colin Cross1cea7322010-02-21 17:46:23 -080066}
67
Peter De Schrijver86e51a22012-02-10 01:47:50 +020068static int tegra30_power_up_cpu(unsigned int cpu)
69{
Peter De Schrijver86e51a22012-02-10 01:47:50 +020070 int ret, pwrgateid;
71 unsigned long timeout;
72
73 pwrgateid = tegra_cpu_powergate_id(cpu);
74 if (pwrgateid < 0)
75 return pwrgateid;
76
Joseph Lo130bfed2013-01-03 15:31:31 +080077 /*
78 * The power up sequence of cold boot CPU and warm boot CPU
79 * was different.
80 *
81 * For warm boot CPU that was resumed from CPU hotplug, the
82 * power will be resumed automatically after un-halting the
83 * flow controller of the warm boot CPU. We need to wait for
84 * the confirmaiton that the CPU is powered then removing
85 * the IO clamps.
86 * For cold boot CPU, do not wait. After the cold boot CPU be
87 * booted, it will run to tegra_secondary_init() and set
88 * tegra_cpu_init_mask which influences what tegra30_power_up_cpu()
89 * next time around.
90 */
91 if (cpumask_test_cpu(cpu, &tegra_cpu_init_mask)) {
Joseph Lo13958682013-01-07 10:56:14 +080092 timeout = jiffies + msecs_to_jiffies(50);
Joseph Lo130bfed2013-01-03 15:31:31 +080093 do {
94 if (!tegra_powergate_is_powered(pwrgateid))
95 goto remove_clamps;
96 udelay(10);
97 } while (time_before(jiffies, timeout));
98 }
99
100 /*
101 * The power status of the cold boot CPU is power gated as
102 * default. To power up the cold boot CPU, the power should
103 * be un-gated by un-toggling the power gate register
104 * manually.
105 */
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200106 if (!tegra_powergate_is_powered(pwrgateid)) {
107 ret = tegra_powergate_power_on(pwrgateid);
108 if (ret)
109 return ret;
110
111 /* Wait for the power to come up. */
Joseph Lo13958682013-01-07 10:56:14 +0800112 timeout = jiffies + msecs_to_jiffies(100);
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200113 while (tegra_powergate_is_powered(pwrgateid)) {
114 if (time_after(jiffies, timeout))
115 return -ETIMEDOUT;
116 udelay(10);
117 }
118 }
119
Joseph Lo130bfed2013-01-03 15:31:31 +0800120remove_clamps:
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200121 /* CPU partition is powered. Enable the CPU clock. */
Joseph Lobb603272012-08-16 17:31:49 +0800122 tegra_enable_cpu_clock(cpu);
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200123 udelay(10);
124
125 /* Remove I/O clamps. */
126 ret = tegra_powergate_remove_clamping(pwrgateid);
127 udelay(10);
128
129 /* Clear flow controller CSR. */
130 flowctrl_write_cpu_csr(cpu, 0);
131
132 return 0;
133}
134
Marc Zyngiera1725732011-09-08 13:15:22 +0100135static int __cpuinit tegra_boot_secondary(unsigned int cpu, struct task_struct *idle)
Colin Cross1cea7322010-02-21 17:46:23 -0800136{
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200137 int status;
138
Joseph Lo130bfed2013-01-03 15:31:31 +0800139 cpu = cpu_logical_map(cpu);
140
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200141 /*
142 * Force the CPU into reset. The CPU must remain in reset when the
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200143 * flow controller state is cleared (which will cause the flow
144 * controller to stop driving reset if the CPU has been power-gated
145 * via the flow controller). This will have no effect on first boot
146 * of the CPU since it should already be in reset.
147 */
Joseph Lobb603272012-08-16 17:31:49 +0800148 tegra_put_cpu_in_reset(cpu);
Colin Cross1cea7322010-02-21 17:46:23 -0800149
150 /*
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200151 * Unhalt the CPU. If the flow controller was used to power-gate the
152 * CPU this will cause the flow controller to stop driving reset.
153 * The CPU will remain in reset because the clock and reset block
154 * is now driving reset.
Colin Cross1cea7322010-02-21 17:46:23 -0800155 */
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200156 flowctrl_write_cpu_halt(cpu, 0);
Colin Cross1cea7322010-02-21 17:46:23 -0800157
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200158 switch (tegra_chip_id) {
159 case TEGRA20:
160 status = tegra20_power_up_cpu(cpu);
161 break;
Peter De Schrijver86e51a22012-02-10 01:47:50 +0200162 case TEGRA30:
163 status = tegra30_power_up_cpu(cpu);
164 break;
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200165 default:
166 status = -EINVAL;
167 break;
Colin Cross1cea7322010-02-21 17:46:23 -0800168 }
169
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200170 if (status)
171 goto done;
Colin Cross1cea7322010-02-21 17:46:23 -0800172
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200173 /* Take the CPU out of reset. */
Joseph Lobb603272012-08-16 17:31:49 +0800174 tegra_cpu_out_of_reset(cpu);
Peter De Schrijverb36ab972012-02-10 01:47:45 +0200175done:
176 return status;
Colin Cross1cea7322010-02-21 17:46:23 -0800177}
178
Marc Zyngiera1725732011-09-08 13:15:22 +0100179static void __init tegra_smp_prepare_cpus(unsigned int max_cpus)
Colin Cross1cea7322010-02-21 17:46:23 -0800180{
Joseph Lo130bfed2013-01-03 15:31:31 +0800181 /* Always mark the boot CPU (CPU0) as initialized. */
182 cpumask_set_cpu(0, &tegra_cpu_init_mask);
183
Hiroshi Doyu909444a2013-01-22 07:52:02 +0200184 if (scu_a9_has_base())
185 scu_enable(IO_ADDRESS(scu_a9_get_base()));
Colin Cross1cea7322010-02-21 17:46:23 -0800186}
Marc Zyngiera1725732011-09-08 13:15:22 +0100187
188struct smp_operations tegra_smp_ops __initdata = {
Marc Zyngiera1725732011-09-08 13:15:22 +0100189 .smp_prepare_cpus = tegra_smp_prepare_cpus,
190 .smp_secondary_init = tegra_secondary_init,
191 .smp_boot_secondary = tegra_boot_secondary,
192#ifdef CONFIG_HOTPLUG_CPU
Joseph Lob8119432013-01-03 14:43:00 +0800193 .cpu_kill = tegra_cpu_kill,
Marc Zyngiera1725732011-09-08 13:15:22 +0100194 .cpu_die = tegra_cpu_die,
Olof Johansson25468fe2012-09-22 00:06:21 -0700195 .cpu_disable = tegra_cpu_disable,
Marc Zyngiera1725732011-09-08 13:15:22 +0100196#endif
197};