Commit 80579e1f authored by Paul Mackerras's avatar Paul Mackerras

powerpc: 32-bit CHRP SMP fixes

Untested, but "should" work...  at least this way it compiles.
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent eef69e3c
...@@ -1110,22 +1110,22 @@ static int __init early_init_dt_scan_cpus(unsigned long node, ...@@ -1110,22 +1110,22 @@ static int __init early_init_dt_scan_cpus(unsigned long node,
} }
#endif #endif
#ifdef CONFIG_PPC64 boot_cpuid = 0;
boot_cpuid_phys = 0;
if (initial_boot_params && initial_boot_params->version >= 2) { if (initial_boot_params && initial_boot_params->version >= 2) {
/* version 2 of the kexec param format adds the phys cpuid /* version 2 of the kexec param format adds the phys cpuid
* of booted proc. * of booted proc.
*/ */
boot_cpuid_phys = initial_boot_params->boot_cpuid_phys; boot_cpuid_phys = initial_boot_params->boot_cpuid_phys;
boot_cpuid = 0;
} else { } else {
/* Check if it's the boot-cpu, set it's hw index in paca now */ /* Check if it's the boot-cpu, set it's hw index now */
if (get_flat_dt_prop(node, "linux,boot-cpu", NULL) != NULL) { if (get_flat_dt_prop(node, "linux,boot-cpu", NULL) != NULL) {
prop = get_flat_dt_prop(node, "reg", NULL); prop = get_flat_dt_prop(node, "reg", NULL);
set_hard_smp_processor_id(0, prop == NULL ? 0 : *prop); if (prop != NULL)
boot_cpuid_phys = get_hard_smp_processor_id(0); boot_cpuid_phys = *prop;
} }
} }
#endif set_hard_smp_processor_id(0, boot_cpuid_phys);
#ifdef CONFIG_ALTIVEC #ifdef CONFIG_ALTIVEC
/* Check if we have a VMX and eventually update CPU features */ /* Check if we have a VMX and eventually update CPU features */
......
...@@ -59,6 +59,10 @@ struct ide_machdep_calls ppc_ide_md; ...@@ -59,6 +59,10 @@ struct ide_machdep_calls ppc_ide_md;
int __irq_offset_value; int __irq_offset_value;
EXPORT_SYMBOL(__irq_offset_value); EXPORT_SYMBOL(__irq_offset_value);
int boot_cpuid;
EXPORT_SYMBOL_GPL(boot_cpuid);
int boot_cpuid_phys;
unsigned long ISA_DMA_THRESHOLD; unsigned long ISA_DMA_THRESHOLD;
unsigned int DMA_MODE_READ; unsigned int DMA_MODE_READ;
unsigned int DMA_MODE_WRITE; unsigned int DMA_MODE_WRITE;
......
...@@ -32,15 +32,44 @@ ...@@ -32,15 +32,44 @@
#include <asm/time.h> #include <asm/time.h>
#include <asm/open_pic.h> #include <asm/open_pic.h>
#include <asm/machdep.h> #include <asm/machdep.h>
#include <asm/smp.h>
#include <asm/mpic.h>
extern unsigned long smp_chrp_cpu_nr; extern unsigned long smp_chrp_cpu_nr;
static int __init smp_chrp_probe(void) static int __init smp_chrp_probe(void)
{ {
if (smp_chrp_cpu_nr > 1) struct device_node *cpus = NULL;
openpic_request_IPIs(); unsigned int *reg;
int reglen;
int ncpus = 0;
int cpuid;
unsigned int phys;
/* Count CPUs in the device-tree */
cpuid = 1; /* the boot cpu is logical cpu 0 */
while ((cpus = of_find_node_by_type(cpus, "cpu")) != NULL) {
phys = ncpus;
reg = (unsigned int *) get_property(cpus, "reg", &reglen);
if (reg && reglen >= sizeof(unsigned int))
/* hmmm, not having a reg property would be bad */
phys = *reg;
if (phys != boot_cpuid_phys) {
set_hard_smp_processor_id(cpuid, phys);
++cpuid;
}
++ncpus;
}
printk(KERN_INFO "CHRP SMP probe found %d cpus\n", ncpus);
/* Nothing more to do if less than 2 of them */
if (ncpus <= 1)
return 1;
mpic_request_ipis();
return smp_chrp_cpu_nr; return ncpus;
} }
static void __devinit smp_chrp_kick_cpu(int nr) static void __devinit smp_chrp_kick_cpu(int nr)
...@@ -51,8 +80,7 @@ static void __devinit smp_chrp_kick_cpu(int nr) ...@@ -51,8 +80,7 @@ static void __devinit smp_chrp_kick_cpu(int nr)
static void __devinit smp_chrp_setup_cpu(int cpu_nr) static void __devinit smp_chrp_setup_cpu(int cpu_nr)
{ {
if (OpenPIC_Addr) mpic_setup_this_cpu();
do_openpic_setup_cpu();
} }
static DEFINE_SPINLOCK(timebase_lock); static DEFINE_SPINLOCK(timebase_lock);
...@@ -85,7 +113,7 @@ void __devinit smp_chrp_take_timebase(void) ...@@ -85,7 +113,7 @@ void __devinit smp_chrp_take_timebase(void)
/* CHRP with openpic */ /* CHRP with openpic */
struct smp_ops_t chrp_smp_ops = { struct smp_ops_t chrp_smp_ops = {
.message_pass = smp_openpic_message_pass, .message_pass = smp_mpic_message_pass,
.probe = smp_chrp_probe, .probe = smp_chrp_probe,
.kick_cpu = smp_chrp_kick_cpu, .kick_cpu = smp_chrp_kick_cpu,
.setup_cpu = smp_chrp_setup_cpu, .setup_cpu = smp_chrp_setup_cpu,
......
...@@ -53,6 +53,8 @@ extern int __cpu_up(unsigned int cpu); ...@@ -53,6 +53,8 @@ extern int __cpu_up(unsigned int cpu);
extern int smp_hw_index[]; extern int smp_hw_index[];
#define hard_smp_processor_id() (smp_hw_index[smp_processor_id()]) #define hard_smp_processor_id() (smp_hw_index[smp_processor_id()])
#define get_hard_smp_processor_id(cpu) (smp_hw_index[(cpu)]) #define get_hard_smp_processor_id(cpu) (smp_hw_index[(cpu)])
#define set_hard_smp_processor_id(cpu, phys)\
(smp_hw_index[(cpu)] = (phys))
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
...@@ -60,9 +62,15 @@ extern int smp_hw_index[]; ...@@ -60,9 +62,15 @@ extern int smp_hw_index[];
static inline void cpu_die(void) { } static inline void cpu_die(void) { }
#define get_hard_smp_processor_id(cpu) 0 #define get_hard_smp_processor_id(cpu) 0
#define set_hard_smp_processor_id(cpu, phys)
#define hard_smp_processor_id() 0 #define hard_smp_processor_id() 0
#endif /* !(CONFIG_SMP) */ #endif /* !(CONFIG_SMP) */
#ifndef __ASSEMBLY__
extern int boot_cpuid;
extern int boot_cpuid_phys;
#endif
#endif /* !(_PPC_SMP_H) */ #endif /* !(_PPC_SMP_H) */
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment