-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds support for Microwatt systems with more than one core, and updates the device tree for a 2-core version. The secondary CPUs are started and sent to spin in __secondary_hold very early on, in the platform probe function. The reason for doing this is so that they are there when smp_release_cpus() gets called, which is before the platform init_smp function or even the platform setup_arch function gets called. Note that having two CPUs in the device tree doesn't preclude operation with only one CPU. The SYSCON_CPU_CTRL register has a read-only field which indicates the number of CPU cores, so microwatt_init_smp() will only start as many CPU cores as are present in the system, and any extra CPU device-tree nodes will just be ignored. Signed-off-by: Paul Mackerras <paulus@ozlabs.org> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Link: https://patch.msgid.link/Z5xt8aooKyXZv6Kf@thinks.paulus.ozlabs.org
- Loading branch information
Paul Mackerras
authored and
Madhavan Srinivasan
committed
Feb 26, 2025
1 parent
3d45a3d
commit aca95fb
Showing
6 changed files
with
124 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
obj-y += setup.o rng.o | ||
obj-$(CONFIG_SMP) += smp.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
#define _MICROWATT_H | ||
|
||
void microwatt_rng_init(void); | ||
void microwatt_init_smp(void); | ||
|
||
#endif /* _MICROWATT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
/* | ||
* SMP support functions for Microwatt | ||
* Copyright 2025 Paul Mackerras <paulus@ozlabs.org> | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/smp.h> | ||
#include <linux/io.h> | ||
#include <asm/early_ioremap.h> | ||
#include <asm/ppc-opcode.h> | ||
#include <asm/reg.h> | ||
#include <asm/smp.h> | ||
#include <asm/xics.h> | ||
|
||
#include "microwatt.h" | ||
|
||
static void __init microwatt_smp_probe(void) | ||
{ | ||
xics_smp_probe(); | ||
} | ||
|
||
static void microwatt_smp_setup_cpu(int cpu) | ||
{ | ||
if (cpu != 0) | ||
xics_setup_cpu(); | ||
} | ||
|
||
static struct smp_ops_t microwatt_smp_ops = { | ||
.probe = microwatt_smp_probe, | ||
.message_pass = NULL, /* Use smp_muxed_ipi_message_pass */ | ||
.kick_cpu = smp_generic_kick_cpu, | ||
.setup_cpu = microwatt_smp_setup_cpu, | ||
}; | ||
|
||
/* XXX get from device tree */ | ||
#define SYSCON_BASE 0xc0000000 | ||
#define SYSCON_LENGTH 0x100 | ||
|
||
#define SYSCON_CPU_CTRL 0x58 | ||
|
||
void __init microwatt_init_smp(void) | ||
{ | ||
volatile unsigned char __iomem *syscon; | ||
int ncpus; | ||
int timeout; | ||
|
||
syscon = early_ioremap(SYSCON_BASE, SYSCON_LENGTH); | ||
if (syscon == NULL) { | ||
pr_err("Failed to map SYSCON\n"); | ||
return; | ||
} | ||
ncpus = (readl(syscon + SYSCON_CPU_CTRL) >> 8) & 0xff; | ||
if (ncpus < 2) | ||
goto out; | ||
|
||
smp_ops = µwatt_smp_ops; | ||
|
||
/* | ||
* Write two instructions at location 0: | ||
* mfspr r3, PIR | ||
* b __secondary_hold | ||
*/ | ||
*(unsigned int *)KERNELBASE = PPC_RAW_MFSPR(3, SPRN_PIR); | ||
*(unsigned int *)(KERNELBASE+4) = PPC_RAW_BRANCH(&__secondary_hold - (char *)(KERNELBASE+4)); | ||
|
||
/* enable the other CPUs, they start at location 0 */ | ||
writel((1ul << ncpus) - 1, syscon + SYSCON_CPU_CTRL); | ||
|
||
timeout = 10000; | ||
while (!__secondary_hold_acknowledge) { | ||
if (--timeout == 0) | ||
break; | ||
barrier(); | ||
} | ||
|
||
out: | ||
early_iounmap((void *)syscon, SYSCON_LENGTH); | ||
} |