blob: 9a00eee9acc842993b9114b09f69998901a9cc06 [file] [log] [blame]
Marc Zyngierd329de32013-01-02 15:24:22 +00001/*
2 * Spin Table SMP initialisation
3 *
4 * Copyright (C) 2013 ARM Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
Mark Rutland652af892013-10-24 20:30:16 +010019#include <linux/delay.h>
Marc Zyngierd329de32013-01-02 15:24:22 +000020#include <linux/init.h>
21#include <linux/of.h>
22#include <linux/smp.h>
Mark Rutland113954c2014-07-30 11:59:02 +010023#include <linux/types.h>
Marc Zyngierd329de32013-01-02 15:24:22 +000024
25#include <asm/cacheflush.h>
Mark Rutlandcd1aebf2013-10-24 20:30:15 +010026#include <asm/cpu_ops.h>
Mark Rutland652af892013-10-24 20:30:16 +010027#include <asm/cputype.h>
Paul Walmsley59c68322015-01-05 17:38:42 -070028#include <asm/io.h>
Mark Rutland652af892013-10-24 20:30:16 +010029#include <asm/smp_plat.h>
30
31extern void secondary_holding_pen(void);
James Morseb6113032016-08-24 18:27:29 +010032volatile unsigned long __section(".mmuoff.data.read")
33secondary_holding_pen_release = INVALID_HWID;
Marc Zyngierd329de32013-01-02 15:24:22 +000034
35static phys_addr_t cpu_release_addr[NR_CPUS];
Mark Rutland652af892013-10-24 20:30:16 +010036
37/*
38 * Write secondary_holding_pen_release in a way that is guaranteed to be
39 * visible to all observers, irrespective of whether they're taking part
40 * in coherency or not. This is necessary for the hotplug code to work
41 * reliably.
42 */
43static void write_pen_release(u64 val)
44{
45 void *start = (void *)&secondary_holding_pen_release;
46 unsigned long size = sizeof(secondary_holding_pen_release);
47
48 secondary_holding_pen_release = val;
49 __flush_dcache_area(start, size);
50}
51
Marc Zyngierd329de32013-01-02 15:24:22 +000052
Lorenzo Pieralisi819a8822015-05-13 14:12:46 +010053static int smp_spin_table_cpu_init(unsigned int cpu)
Marc Zyngierd329de32013-01-02 15:24:22 +000054{
Lorenzo Pieralisi819a8822015-05-13 14:12:46 +010055 struct device_node *dn;
Masahiro Yamada2fee7d52016-04-20 10:23:31 +090056 int ret;
Lorenzo Pieralisi819a8822015-05-13 14:12:46 +010057
58 dn = of_get_cpu_node(cpu, NULL);
59 if (!dn)
60 return -ENODEV;
61
Marc Zyngierd329de32013-01-02 15:24:22 +000062 /*
63 * Determine the address from which the CPU is polling.
64 */
Masahiro Yamada2fee7d52016-04-20 10:23:31 +090065 ret = of_property_read_u64(dn, "cpu-release-addr",
66 &cpu_release_addr[cpu]);
67 if (ret)
Marc Zyngierd329de32013-01-02 15:24:22 +000068 pr_err("CPU %d: missing or invalid cpu-release-addr property\n",
69 cpu);
70
Masahiro Yamada2fee7d52016-04-20 10:23:31 +090071 of_node_put(dn);
Marc Zyngierd329de32013-01-02 15:24:22 +000072
Masahiro Yamada2fee7d52016-04-20 10:23:31 +090073 return ret;
Marc Zyngierd329de32013-01-02 15:24:22 +000074}
75
Mark Rutlandcd1aebf2013-10-24 20:30:15 +010076static int smp_spin_table_cpu_prepare(unsigned int cpu)
Marc Zyngierd329de32013-01-02 15:24:22 +000077{
Mark Rutland113954c2014-07-30 11:59:02 +010078 __le64 __iomem *release_addr;
Marc Zyngierd329de32013-01-02 15:24:22 +000079
80 if (!cpu_release_addr[cpu])
81 return -ENODEV;
82
Mark Rutland113954c2014-07-30 11:59:02 +010083 /*
84 * The cpu-release-addr may or may not be inside the linear mapping.
85 * As ioremap_cache will either give us a new mapping or reuse the
86 * existing linear mapping, we can use it to cover both cases. In
87 * either case the memory will be MT_NORMAL.
88 */
89 release_addr = ioremap_cache(cpu_release_addr[cpu],
90 sizeof(*release_addr));
91 if (!release_addr)
92 return -ENOMEM;
Matthew Leach710be9a2013-10-11 14:52:18 +010093
94 /*
95 * We write the release address as LE regardless of the native
96 * endianess of the kernel. Therefore, any boot-loaders that
97 * read this address need to convert this address to the
98 * boot-loader's endianess before jumping. This is mandated by
99 * the boot protocol.
100 */
Mark Rutland113954c2014-07-30 11:59:02 +0100101 writeq_relaxed(__pa(secondary_holding_pen), release_addr);
102 __flush_dcache_area((__force void *)release_addr,
103 sizeof(*release_addr));
Marc Zyngierd329de32013-01-02 15:24:22 +0000104
105 /*
106 * Send an event to wake up the secondary CPU.
107 */
108 sev();
109
Mark Rutland113954c2014-07-30 11:59:02 +0100110 iounmap(release_addr);
111
Marc Zyngierd329de32013-01-02 15:24:22 +0000112 return 0;
113}
114
Mark Rutland652af892013-10-24 20:30:16 +0100115static int smp_spin_table_cpu_boot(unsigned int cpu)
116{
Mark Rutland652af892013-10-24 20:30:16 +0100117 /*
118 * Update the pen release flag.
119 */
120 write_pen_release(cpu_logical_map(cpu));
121
122 /*
123 * Send an event, causing the secondaries to read pen_release.
124 */
125 sev();
126
Catalin Marinas64001112014-04-04 11:49:05 +0100127 return 0;
Mark Rutland652af892013-10-24 20:30:16 +0100128}
129
Mark Rutlandcd1aebf2013-10-24 20:30:15 +0100130const struct cpu_operations smp_spin_table_ops = {
Marc Zyngierd329de32013-01-02 15:24:22 +0000131 .name = "spin-table",
Mark Rutlandcd1aebf2013-10-24 20:30:15 +0100132 .cpu_init = smp_spin_table_cpu_init,
133 .cpu_prepare = smp_spin_table_cpu_prepare,
Mark Rutland652af892013-10-24 20:30:16 +0100134 .cpu_boot = smp_spin_table_cpu_boot,
Marc Zyngierd329de32013-01-02 15:24:22 +0000135};