2 * linux/arch/arm/mach-tegra/platsmp.c
4 * Copyright (C) 2002 ARM Ltd.
7 * Copyright (C) 2009 Palm
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.
15 #include <linux/clk/tegra.h>
16 #include <linux/delay.h>
17 #include <linux/device.h>
18 #include <linux/errno.h>
19 #include <linux/init.h>
21 #include <linux/jiffies.h>
22 #include <linux/smp.h>
24 #include <soc/tegra/fuse.h>
25 #include <soc/tegra/pmc.h>
27 #include <asm/cacheflush.h>
28 #include <asm/mach-types.h>
29 #include <asm/smp_plat.h>
30 #include <asm/smp_scu.h>
37 static cpumask_t tegra_cpu_init_mask;
39 static void tegra_secondary_init(unsigned int cpu)
41 cpumask_set_cpu(cpu, &tegra_cpu_init_mask);
45 static int tegra20_boot_secondary(unsigned int cpu, struct task_struct *idle)
47 cpu = cpu_logical_map(cpu);
50 * Force the CPU into reset. The CPU must remain in reset when
51 * the flow controller state is cleared (which will cause the
52 * flow controller to stop driving reset if the CPU has been
53 * power-gated via the flow controller). This will have no
54 * effect on first boot of the CPU since it should already be
57 tegra_put_cpu_in_reset(cpu);
60 * Unhalt the CPU. If the flow controller was used to
61 * power-gate the CPU this will cause the flow controller to
62 * stop driving reset. The CPU will remain in reset because the
63 * clock and reset block is now driving reset.
65 flowctrl_write_cpu_halt(cpu, 0);
67 tegra_enable_cpu_clock(cpu);
68 flowctrl_write_cpu_csr(cpu, 0); /* Clear flow controller CSR. */
69 tegra_cpu_out_of_reset(cpu);
73 static int tegra30_boot_secondary(unsigned int cpu, struct task_struct *idle)
76 unsigned long timeout;
78 cpu = cpu_logical_map(cpu);
79 tegra_put_cpu_in_reset(cpu);
80 flowctrl_write_cpu_halt(cpu, 0);
83 * The power up sequence of cold boot CPU and warm boot CPU
86 * For warm boot CPU that was resumed from CPU hotplug, the
87 * power will be resumed automatically after un-halting the
88 * flow controller of the warm boot CPU. We need to wait for
89 * the confirmaiton that the CPU is powered then removing
91 * For cold boot CPU, do not wait. After the cold boot CPU be
92 * booted, it will run to tegra_secondary_init() and set
93 * tegra_cpu_init_mask which influences what tegra30_boot_secondary()
96 if (cpumask_test_cpu(cpu, &tegra_cpu_init_mask)) {
97 timeout = jiffies + msecs_to_jiffies(50);
99 if (tegra_pmc_cpu_is_powered(cpu))
102 } while (time_before(jiffies, timeout));
106 * The power status of the cold boot CPU is power gated as
107 * default. To power up the cold boot CPU, the power should
108 * be un-gated by un-toggling the power gate register
111 if (!tegra_pmc_cpu_is_powered(cpu)) {
112 ret = tegra_pmc_cpu_power_on(cpu);
116 /* Wait for the power to come up. */
117 timeout = jiffies + msecs_to_jiffies(100);
118 while (!tegra_pmc_cpu_is_powered(cpu)) {
119 if (time_after(jiffies, timeout))
126 /* CPU partition is powered. Enable the CPU clock. */
127 tegra_enable_cpu_clock(cpu);
130 /* Remove I/O clamps. */
131 ret = tegra_pmc_cpu_remove_clamping(cpu);
137 flowctrl_write_cpu_csr(cpu, 0); /* Clear flow controller CSR. */
138 tegra_cpu_out_of_reset(cpu);
142 static int tegra114_boot_secondary(unsigned int cpu, struct task_struct *idle)
146 cpu = cpu_logical_map(cpu);
148 if (cpumask_test_cpu(cpu, &tegra_cpu_init_mask)) {
151 * The flow controller in charge of the power state and
152 * control for each CPU.
154 /* set SCLK as event trigger for flow controller */
155 flowctrl_write_cpu_csr(cpu, 1);
156 flowctrl_write_cpu_halt(cpu,
157 FLOW_CTRL_WAITEVENT | FLOW_CTRL_SCLK_RESUME);
161 * The CPU is powered up by toggling PMC directly. It will
162 * also initial power state in flow controller. After that,
163 * the CPU's power state is maintained by flow controller.
165 ret = tegra_pmc_cpu_power_on(cpu);
171 static int tegra_boot_secondary(unsigned int cpu,
172 struct task_struct *idle)
174 if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC) && tegra_get_chip_id() == TEGRA20)
175 return tegra20_boot_secondary(cpu, idle);
176 if (IS_ENABLED(CONFIG_ARCH_TEGRA_3x_SOC) && tegra_get_chip_id() == TEGRA30)
177 return tegra30_boot_secondary(cpu, idle);
178 if (IS_ENABLED(CONFIG_ARCH_TEGRA_114_SOC) && tegra_get_chip_id() == TEGRA114)
179 return tegra114_boot_secondary(cpu, idle);
180 if (IS_ENABLED(CONFIG_ARCH_TEGRA_124_SOC) && tegra_get_chip_id() == TEGRA124)
181 return tegra114_boot_secondary(cpu, idle);
186 static void __init tegra_smp_prepare_cpus(unsigned int max_cpus)
188 /* Always mark the boot CPU (CPU0) as initialized. */
189 cpumask_set_cpu(0, &tegra_cpu_init_mask);
191 if (scu_a9_has_base())
192 scu_enable(IO_ADDRESS(scu_a9_get_base()));
195 struct smp_operations tegra_smp_ops __initdata = {
196 .smp_prepare_cpus = tegra_smp_prepare_cpus,
197 .smp_secondary_init = tegra_secondary_init,
198 .smp_boot_secondary = tegra_boot_secondary,
199 #ifdef CONFIG_HOTPLUG_CPU
200 .cpu_kill = tegra_cpu_kill,
201 .cpu_die = tegra_cpu_die,