2013-01-02 23:24:22 +08:00
|
|
|
/*
|
|
|
|
* Spin Table SMP initialisation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 ARM Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
#include <linux/delay.h>
|
2013-01-02 23:24:22 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/smp.h>
|
2014-07-30 18:59:02 +08:00
|
|
|
#include <linux/types.h>
|
2013-01-02 23:24:22 +08:00
|
|
|
|
|
|
|
#include <asm/cacheflush.h>
|
2013-10-25 03:30:15 +08:00
|
|
|
#include <asm/cpu_ops.h>
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
#include <asm/cputype.h>
|
2015-01-06 08:38:42 +08:00
|
|
|
#include <asm/io.h>
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
#include <asm/smp_plat.h>
|
|
|
|
|
|
|
|
extern void secondary_holding_pen(void);
|
|
|
|
volatile unsigned long secondary_holding_pen_release = INVALID_HWID;
|
2013-01-02 23:24:22 +08:00
|
|
|
|
|
|
|
static phys_addr_t cpu_release_addr[NR_CPUS];
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Write secondary_holding_pen_release in a way that is guaranteed to be
|
|
|
|
* visible to all observers, irrespective of whether they're taking part
|
|
|
|
* in coherency or not. This is necessary for the hotplug code to work
|
|
|
|
* reliably.
|
|
|
|
*/
|
|
|
|
static void write_pen_release(u64 val)
|
|
|
|
{
|
|
|
|
void *start = (void *)&secondary_holding_pen_release;
|
|
|
|
unsigned long size = sizeof(secondary_holding_pen_release);
|
|
|
|
|
|
|
|
secondary_holding_pen_release = val;
|
|
|
|
__flush_dcache_area(start, size);
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:24:22 +08:00
|
|
|
|
2015-05-13 21:12:46 +08:00
|
|
|
static int smp_spin_table_cpu_init(unsigned int cpu)
|
2013-01-02 23:24:22 +08:00
|
|
|
{
|
2015-05-13 21:12:46 +08:00
|
|
|
struct device_node *dn;
|
|
|
|
|
|
|
|
dn = of_get_cpu_node(cpu, NULL);
|
|
|
|
if (!dn)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2013-01-02 23:24:22 +08:00
|
|
|
/*
|
|
|
|
* Determine the address from which the CPU is polling.
|
|
|
|
*/
|
|
|
|
if (of_property_read_u64(dn, "cpu-release-addr",
|
|
|
|
&cpu_release_addr[cpu])) {
|
|
|
|
pr_err("CPU %d: missing or invalid cpu-release-addr property\n",
|
|
|
|
cpu);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-25 03:30:15 +08:00
|
|
|
static int smp_spin_table_cpu_prepare(unsigned int cpu)
|
2013-01-02 23:24:22 +08:00
|
|
|
{
|
2014-07-30 18:59:02 +08:00
|
|
|
__le64 __iomem *release_addr;
|
2013-01-02 23:24:22 +08:00
|
|
|
|
|
|
|
if (!cpu_release_addr[cpu])
|
|
|
|
return -ENODEV;
|
|
|
|
|
2014-07-30 18:59:02 +08:00
|
|
|
/*
|
|
|
|
* The cpu-release-addr may or may not be inside the linear mapping.
|
|
|
|
* As ioremap_cache will either give us a new mapping or reuse the
|
|
|
|
* existing linear mapping, we can use it to cover both cases. In
|
|
|
|
* either case the memory will be MT_NORMAL.
|
|
|
|
*/
|
|
|
|
release_addr = ioremap_cache(cpu_release_addr[cpu],
|
|
|
|
sizeof(*release_addr));
|
|
|
|
if (!release_addr)
|
|
|
|
return -ENOMEM;
|
2013-10-11 21:52:18 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We write the release address as LE regardless of the native
|
|
|
|
* endianess of the kernel. Therefore, any boot-loaders that
|
|
|
|
* read this address need to convert this address to the
|
|
|
|
* boot-loader's endianess before jumping. This is mandated by
|
|
|
|
* the boot protocol.
|
|
|
|
*/
|
2014-07-30 18:59:02 +08:00
|
|
|
writeq_relaxed(__pa(secondary_holding_pen), release_addr);
|
|
|
|
__flush_dcache_area((__force void *)release_addr,
|
|
|
|
sizeof(*release_addr));
|
2013-01-02 23:24:22 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Send an event to wake up the secondary CPU.
|
|
|
|
*/
|
|
|
|
sev();
|
|
|
|
|
2014-07-30 18:59:02 +08:00
|
|
|
iounmap(release_addr);
|
|
|
|
|
2013-01-02 23:24:22 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
static int smp_spin_table_cpu_boot(unsigned int cpu)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Update the pen release flag.
|
|
|
|
*/
|
|
|
|
write_pen_release(cpu_logical_map(cpu));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send an event, causing the secondaries to read pen_release.
|
|
|
|
*/
|
|
|
|
sev();
|
|
|
|
|
2014-04-04 18:49:05 +08:00
|
|
|
return 0;
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
}
|
|
|
|
|
2013-10-25 03:30:15 +08:00
|
|
|
const struct cpu_operations smp_spin_table_ops = {
|
2013-01-02 23:24:22 +08:00
|
|
|
.name = "spin-table",
|
2013-10-25 03:30:15 +08:00
|
|
|
.cpu_init = smp_spin_table_cpu_init,
|
|
|
|
.cpu_prepare = smp_spin_table_cpu_prepare,
|
arm64: factor out spin-table boot method
The arm64 kernel has an internal holding pen, which is necessary for
some systems where we can't bring CPUs online individually and must hold
multiple CPUs in a safe area until the kernel is able to handle them.
The current SMP infrastructure for arm64 is closely coupled to this
holding pen, and alternative boot methods must launch CPUs into the pen,
where they sit before they are launched into the kernel proper.
With PSCI (and possibly other future boot methods), we can bring CPUs
online individually, and need not perform the secondary_holding_pen
dance. Instead, this patch factors the holding pen management code out
to the spin-table boot method code, as it is the only boot method
requiring the pen.
A new entry point for secondaries, secondary_entry is added for other
boot methods to use, which bypasses the holding pen and its associated
overhead when bringing CPUs online. The smp.pen.text section is also
removed, as the pen can live in head.text without problem.
The cpu_operations structure is extended with two new functions,
cpu_boot and cpu_postboot, for bringing a cpu into the kernel and
performing any post-boot cleanup required by a bootmethod (e.g.
resetting the secondary_holding_pen_release to INVALID_HWID).
Documentation is added for cpu_operations.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
2013-10-25 03:30:16 +08:00
|
|
|
.cpu_boot = smp_spin_table_cpu_boot,
|
2013-01-02 23:24:22 +08:00
|
|
|
};
|