Commit 2a37b1ae authored by Jayachandran C's avatar Jayachandran C Committed by John Crispin

MIPS: Netlogic: Move from u32 cpumask to cpumask_t

Initial code to support more than 32 cpus. The platform CPU mask
is updated from 32-bit mask to cpumask_t. Convert places that use
cpu_/cpus_ functions to use cpumask_* functions.
Signed-off-by: default avatarJayachandran C <jchandra@broadcom.com>
Patchwork: http://patchwork.linux-mips.org/patch/4464Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
parent 7143246e
...@@ -45,6 +45,8 @@ ...@@ -45,6 +45,8 @@
#define BOOT_NMI_HANDLER 8 #define BOOT_NMI_HANDLER 8
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <linux/cpumask.h>
struct irq_desc; struct irq_desc;
extern struct plat_smp_ops nlm_smp_ops; extern struct plat_smp_ops nlm_smp_ops;
extern char nlm_reset_entry[], nlm_reset_entry_end[]; extern char nlm_reset_entry[], nlm_reset_entry_end[];
...@@ -52,7 +54,7 @@ void nlm_smp_function_ipi_handler(unsigned int irq, struct irq_desc *desc); ...@@ -52,7 +54,7 @@ void nlm_smp_function_ipi_handler(unsigned int irq, struct irq_desc *desc);
void nlm_smp_resched_ipi_handler(unsigned int irq, struct irq_desc *desc); void nlm_smp_resched_ipi_handler(unsigned int irq, struct irq_desc *desc);
void nlm_smp_irq_init(void); void nlm_smp_irq_init(void);
void nlm_boot_secondary_cpus(void); void nlm_boot_secondary_cpus(void);
int nlm_wakeup_secondary_cpus(u32 wakeup_mask); int nlm_wakeup_secondary_cpus(void);
void nlm_rmiboot_preboot(void); void nlm_rmiboot_preboot(void);
static inline void static inline void
...@@ -71,6 +73,7 @@ unsigned int nlm_get_cpu_frequency(void); ...@@ -71,6 +73,7 @@ unsigned int nlm_get_cpu_frequency(void);
extern unsigned long nlm_common_ebase; extern unsigned long nlm_common_ebase;
extern int nlm_threads_per_core; extern int nlm_threads_per_core;
extern uint32_t nlm_cpumask, nlm_coremask; extern uint32_t nlm_coremask;
extern cpumask_t nlm_cpumask;
#endif #endif
#endif /* _NETLOGIC_COMMON_H_ */ #endif /* _NETLOGIC_COMMON_H_ */
...@@ -160,9 +160,9 @@ void __init nlm_smp_setup(void) ...@@ -160,9 +160,9 @@ void __init nlm_smp_setup(void)
int num_cpus, i; int num_cpus, i;
boot_cpu = hard_smp_processor_id(); boot_cpu = hard_smp_processor_id();
cpus_clear(phys_cpu_present_map); cpumask_clear(&phys_cpu_present_map);
cpu_set(boot_cpu, phys_cpu_present_map); cpumask_set_cpu(boot_cpu, &phys_cpu_present_map);
__cpu_number_map[boot_cpu] = 0; __cpu_number_map[boot_cpu] = 0;
__cpu_logical_map[0] = boot_cpu; __cpu_logical_map[0] = boot_cpu;
set_cpu_possible(0, true); set_cpu_possible(0, true);
...@@ -174,7 +174,7 @@ void __init nlm_smp_setup(void) ...@@ -174,7 +174,7 @@ void __init nlm_smp_setup(void)
* it is only set for ASPs (see smpboot.S) * it is only set for ASPs (see smpboot.S)
*/ */
if (nlm_cpu_ready[i]) { if (nlm_cpu_ready[i]) {
cpu_set(i, phys_cpu_present_map); cpumask_set_cpu(i, &phys_cpu_present_map);
__cpu_number_map[i] = num_cpus; __cpu_number_map[i] = num_cpus;
__cpu_logical_map[num_cpus] = i; __cpu_logical_map[num_cpus] = i;
set_cpu_possible(num_cpus, true); set_cpu_possible(num_cpus, true);
...@@ -183,19 +183,22 @@ void __init nlm_smp_setup(void) ...@@ -183,19 +183,22 @@ void __init nlm_smp_setup(void)
} }
pr_info("Phys CPU present map: %lx, possible map %lx\n", pr_info("Phys CPU present map: %lx, possible map %lx\n",
(unsigned long)phys_cpu_present_map.bits[0], (unsigned long)cpumask_bits(&phys_cpu_present_map)[0],
(unsigned long)cpumask_bits(cpu_possible_mask)[0]); (unsigned long)cpumask_bits(cpu_possible_mask)[0]);
pr_info("Detected %i Slave CPU(s)\n", num_cpus); pr_info("Detected %i Slave CPU(s)\n", num_cpus);
nlm_set_nmi_handler(nlm_boot_secondary_cpus); nlm_set_nmi_handler(nlm_boot_secondary_cpus);
} }
static int nlm_parse_cpumask(u32 cpu_mask) static int nlm_parse_cpumask(cpumask_t *wakeup_mask)
{ {
uint32_t core0_thr_mask, core_thr_mask; uint32_t core0_thr_mask, core_thr_mask;
int threadmode, i; int threadmode, i, j;
core0_thr_mask = cpu_mask & 0xf; core0_thr_mask = 0;
for (i = 0; i < 4; i++)
if (cpumask_test_cpu(i, wakeup_mask))
core0_thr_mask |= (1 << i);
switch (core0_thr_mask) { switch (core0_thr_mask) {
case 1: case 1:
nlm_threads_per_core = 1; nlm_threads_per_core = 1;
...@@ -214,25 +217,23 @@ static int nlm_parse_cpumask(u32 cpu_mask) ...@@ -214,25 +217,23 @@ static int nlm_parse_cpumask(u32 cpu_mask)
} }
/* Verify other cores CPU masks */ /* Verify other cores CPU masks */
nlm_coremask = 1; for (i = 0; i < NR_CPUS; i += 4) {
nlm_cpumask = core0_thr_mask; core_thr_mask = 0;
for (i = 1; i < 8; i++) { for (j = 0; j < 4; j++)
core_thr_mask = (cpu_mask >> (i * 4)) & 0xf; if (cpumask_test_cpu(i + j, wakeup_mask))
if (core_thr_mask) { core_thr_mask |= (1 << j);
if (core_thr_mask != core0_thr_mask) if (core_thr_mask != 0 && core_thr_mask != core0_thr_mask)
goto unsupp; goto unsupp;
nlm_coremask |= 1 << i;
nlm_cpumask |= core0_thr_mask << (4 * i);
}
} }
return threadmode; return threadmode;
unsupp: unsupp:
panic("Unsupported CPU mask %x\n", cpu_mask); panic("Unsupported CPU mask %lx\n",
(unsigned long)cpumask_bits(wakeup_mask)[0]);
return 0; return 0;
} }
int __cpuinit nlm_wakeup_secondary_cpus(u32 wakeup_mask) int __cpuinit nlm_wakeup_secondary_cpus(void)
{ {
unsigned long reset_vec; unsigned long reset_vec;
char *reset_data; char *reset_data;
...@@ -244,7 +245,7 @@ int __cpuinit nlm_wakeup_secondary_cpus(u32 wakeup_mask) ...@@ -244,7 +245,7 @@ int __cpuinit nlm_wakeup_secondary_cpus(u32 wakeup_mask)
(nlm_reset_entry_end - nlm_reset_entry)); (nlm_reset_entry_end - nlm_reset_entry));
/* verify the mask and setup core config variables */ /* verify the mask and setup core config variables */
threadmode = nlm_parse_cpumask(wakeup_mask); threadmode = nlm_parse_cpumask(&nlm_cpumask);
/* Setup CPU init parameters */ /* Setup CPU init parameters */
reset_data = (char *)CKSEG1ADDR(RESET_DATA_PHYS); reset_data = (char *)CKSEG1ADDR(RESET_DATA_PHYS);
......
...@@ -55,7 +55,8 @@ ...@@ -55,7 +55,8 @@
unsigned long nlm_common_ebase = 0x0; unsigned long nlm_common_ebase = 0x0;
/* default to uniprocessor */ /* default to uniprocessor */
uint32_t nlm_coremask = 1, nlm_cpumask = 1; uint32_t nlm_coremask = 1;
cpumask_t nlm_cpumask = CPU_MASK_CPU0;
int nlm_threads_per_core = 1; int nlm_threads_per_core = 1;
extern u32 __dtb_start[]; extern u32 __dtb_start[];
...@@ -115,7 +116,8 @@ void __init prom_init(void) ...@@ -115,7 +116,8 @@ void __init prom_init(void)
nlm_common_ebase = read_c0_ebase() & (~((1 << 12) - 1)); nlm_common_ebase = read_c0_ebase() & (~((1 << 12) - 1));
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
nlm_wakeup_secondary_cpus(0xffffffff); cpumask_setall(&nlm_cpumask);
nlm_wakeup_secondary_cpus();
/* update TLB size after waking up threads */ /* update TLB size after waking up threads */
current_cpu_data.tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1; current_cpu_data.tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
......
...@@ -51,45 +51,66 @@ ...@@ -51,45 +51,66 @@
#include <asm/netlogic/xlp-hal/xlp.h> #include <asm/netlogic/xlp-hal/xlp.h>
#include <asm/netlogic/xlp-hal/sys.h> #include <asm/netlogic/xlp-hal/sys.h>
static void xlp_enable_secondary_cores(void) static int xlp_wakeup_core(uint64_t sysbase, int core)
{ {
uint32_t core, value, coremask, syscoremask; uint32_t coremask, value;
int count; int count;
/* read cores in reset from SYS block */ coremask = (1 << core);
syscoremask = nlm_read_sys_reg(nlm_sys_base, SYS_CPU_RESET);
/* update user specified */
nlm_coremask = nlm_coremask & (syscoremask | 1);
for (core = 1; core < 8; core++) {
coremask = 1 << core;
if ((nlm_coremask & coremask) == 0)
continue;
/* Enable CPU clock */ /* Enable CPU clock */
value = nlm_read_sys_reg(nlm_sys_base, SYS_CORE_DFS_DIS_CTRL); value = nlm_read_sys_reg(sysbase, SYS_CORE_DFS_DIS_CTRL);
value &= ~coremask; value &= ~coremask;
nlm_write_sys_reg(nlm_sys_base, SYS_CORE_DFS_DIS_CTRL, value); nlm_write_sys_reg(sysbase, SYS_CORE_DFS_DIS_CTRL, value);
/* Remove CPU Reset */ /* Remove CPU Reset */
value = nlm_read_sys_reg(nlm_sys_base, SYS_CPU_RESET); value = nlm_read_sys_reg(sysbase, SYS_CPU_RESET);
value &= ~coremask; value &= ~coremask;
nlm_write_sys_reg(nlm_sys_base, SYS_CPU_RESET, value); nlm_write_sys_reg(sysbase, SYS_CPU_RESET, value);
/* Poll for CPU to mark itself coherent */ /* Poll for CPU to mark itself coherent */
count = 100000; count = 100000;
do { do {
value = nlm_read_sys_reg(nlm_sys_base, value = nlm_read_sys_reg(sysbase, SYS_CPU_NONCOHERENT_MODE);
SYS_CPU_NONCOHERENT_MODE); } while ((value & coremask) != 0 && --count > 0);
} while ((value & coremask) != 0 && count-- > 0);
return count != 0;
}
static void xlp_enable_secondary_cores(const cpumask_t *wakeup_mask)
{
uint64_t syspcibase, sysbase;
uint32_t syscoremask;
int core, n;
if (count == 0) for (n = 0; n < 4; n++) {
syspcibase = nlm_get_sys_pcibase(n);
if (nlm_read_reg(syspcibase, 0) == 0xffffffff)
break;
/* read cores in reset from SYS and account for boot cpu */
sysbase = nlm_get_sys_regbase(n);
syscoremask = nlm_read_sys_reg(sysbase, SYS_CPU_RESET);
if (n == 0)
syscoremask |= 1;
for (core = 0; core < 8; core++) {
/* see if the core exists */
if ((syscoremask & (1 << core)) == 0)
continue;
/* see if at least the first thread is enabled */
if (!cpumask_test_cpu((n * 8 + core) * 4, wakeup_mask))
continue;
/* wake up the core */
if (!xlp_wakeup_core(sysbase, core))
pr_err("Failed to enable core %d\n", core); pr_err("Failed to enable core %d\n", core);
} }
}
} }
void xlp_wakeup_secondary_cpus(void) void xlp_wakeup_secondary_cpus()
{ {
/* /*
* In case of u-boot, the secondaries are in reset * In case of u-boot, the secondaries are in reset
...@@ -98,5 +119,5 @@ void xlp_wakeup_secondary_cpus(void) ...@@ -98,5 +119,5 @@ void xlp_wakeup_secondary_cpus(void)
xlp_boot_core0_siblings(); xlp_boot_core0_siblings();
/* now get other cores out of reset */ /* now get other cores out of reset */
xlp_enable_secondary_cores(); xlp_enable_secondary_cores(&nlm_cpumask);
} }
...@@ -57,8 +57,9 @@ struct psb_info nlm_prom_info; ...@@ -57,8 +57,9 @@ struct psb_info nlm_prom_info;
unsigned long nlm_common_ebase = 0x0; unsigned long nlm_common_ebase = 0x0;
/* default to uniprocessor */ /* default to uniprocessor */
uint32_t nlm_coremask = 1, nlm_cpumask = 1; uint32_t nlm_coremask = 1;
int nlm_threads_per_core = 1; int nlm_threads_per_core = 1;
cpumask_t nlm_cpumask = CPU_MASK_CPU0;
static void __init nlm_early_serial_setup(void) static void __init nlm_early_serial_setup(void)
{ {
...@@ -178,7 +179,7 @@ static void prom_add_memory(void) ...@@ -178,7 +179,7 @@ static void prom_add_memory(void)
void __init prom_init(void) void __init prom_init(void)
{ {
int *argv, *envp; /* passed as 32 bit ptrs */ int i, *argv, *envp; /* passed as 32 bit ptrs */
struct psb_info *prom_infop; struct psb_info *prom_infop;
/* truncate to 32 bit and sign extend all args */ /* truncate to 32 bit and sign extend all args */
...@@ -195,7 +196,10 @@ void __init prom_init(void) ...@@ -195,7 +196,10 @@ void __init prom_init(void)
prom_add_memory(); prom_add_memory();
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
nlm_wakeup_secondary_cpus(nlm_prom_info.online_cpu_map); for (i = 0; i < 32; i++)
if (nlm_prom_info.online_cpu_map & (1 << i))
cpumask_set_cpu(i, &nlm_cpumask);
nlm_wakeup_secondary_cpus();
register_smp_ops(&nlm_smp_ops); register_smp_ops(&nlm_smp_ops);
#endif #endif
} }
...@@ -59,7 +59,7 @@ int __cpuinit xlr_wakeup_secondary_cpus(void) ...@@ -59,7 +59,7 @@ int __cpuinit xlr_wakeup_secondary_cpus(void)
boot_cpu = hard_smp_processor_id(); boot_cpu = hard_smp_processor_id();
nlm_set_nmi_handler(nlm_rmiboot_preboot); nlm_set_nmi_handler(nlm_rmiboot_preboot);
for (i = 0; i < NR_CPUS; i++) { for (i = 0; i < NR_CPUS; i++) {
if (i == boot_cpu || (nlm_cpumask & (1u << i)) == 0) if (i == boot_cpu || !cpumask_test_cpu(i, &nlm_cpumask))
continue; continue;
nlm_pic_send_ipi(nlm_pic_base, i, 1, 1); /* send NMI */ nlm_pic_send_ipi(nlm_pic_base, i, 1, 1); /* send NMI */
} }
......
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