2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General
|
|
|
|
* Public License. See the file "COPYING" in the main directory of this
|
|
|
|
* archive for more details.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 - 2001 by Kanoj Sarcar (kanoj@sgi.com)
|
|
|
|
* Copyright (C) 2000 - 2001 by Silicon Graphics, Inc.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/sched.h>
|
2009-06-19 17:05:26 +04:00
|
|
|
#include <linux/smp.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/mm.h>
|
2017-01-29 05:05:57 +03:00
|
|
|
#include <linux/export.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/cpumask.h>
|
2019-10-22 19:13:15 +03:00
|
|
|
#include <asm/bootinfo.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/cpu.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/pgtable.h>
|
2019-10-22 19:13:15 +03:00
|
|
|
#include <asm/sgialib.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/time.h>
|
2020-01-09 15:33:40 +03:00
|
|
|
#include <asm/sn/agent.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/sn/types.h>
|
|
|
|
#include <asm/sn/klconfig.h>
|
|
|
|
#include <asm/sn/ioc3.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include <asm/sn/gda.h>
|
|
|
|
#include <asm/sn/intr.h>
|
|
|
|
#include <asm/current.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <asm/thread_info.h>
|
|
|
|
#include <asm/sn/launch.h>
|
|
|
|
#include <asm/sn/mapped_kernel.h>
|
|
|
|
|
2019-10-22 19:13:11 +03:00
|
|
|
#include "ip27-common.h"
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#define CPU_NONE (cpuid_t)-1
|
|
|
|
|
2019-10-30 13:51:44 +03:00
|
|
|
static DECLARE_BITMAP(hub_init_mask, MAX_NUMNODES);
|
2005-04-17 02:20:36 +04:00
|
|
|
nasid_t master_nasid = INVALID_NASID;
|
|
|
|
|
2007-10-12 02:46:05 +04:00
|
|
|
struct cpuinfo_ip27 sn_cpu_info[NR_CPUS];
|
|
|
|
EXPORT_SYMBOL_GPL(sn_cpu_info);
|
|
|
|
|
2019-10-03 15:27:24 +03:00
|
|
|
static void per_hub_init(nasid_t nasid)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2019-10-03 15:27:24 +03:00
|
|
|
struct hub_data *hub = hub_data(nasid);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2015-03-05 03:19:17 +03:00
|
|
|
cpumask_set_cpu(smp_processor_id(), &hub->h_cpus);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2019-10-03 15:27:24 +03:00
|
|
|
if (test_and_set_bit(nasid, hub_init_mask))
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* Set CRB timeout at 5ms, (< PI timeout of 10ms)
|
|
|
|
*/
|
|
|
|
REMOTE_HUB_S(nasid, IIO_ICTP, 0x800);
|
|
|
|
REMOTE_HUB_S(nasid, IIO_ICTO, 0xff);
|
|
|
|
|
2019-10-03 15:27:24 +03:00
|
|
|
hub_rtc_init(nasid);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2019-10-31 12:46:04 +03:00
|
|
|
if (nasid) {
|
|
|
|
/* copy exception handlers from first node to current node */
|
|
|
|
memcpy((void *)NODE_OFFSET_TO_K0(nasid, 0),
|
|
|
|
(void *)CKSEG0, 0x200);
|
2005-04-17 02:20:36 +04:00
|
|
|
__flush_cache_all();
|
2019-10-31 12:46:04 +03:00
|
|
|
/* switch to node local exception handlers */
|
|
|
|
REMOTE_HUB_S(nasid, PI_CALIAS_SIZE, PI_CALIAS_SIZE_8K);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code
commit 3747069b25e419f6b51395f48127e9812abc3596 upstream.
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
and are flagged as __cpuinit -- so if we remove the __cpuinit from
the arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
related content into no-ops as early as possible, since that will get
rid of these warnings. In any case, they are temporary and harmless.
Here, we remove all the MIPS __cpuinit from C code and __CPUINIT
from asm files. MIPS is interesting in this respect, because there
are also uasm users hiding behind their own renamed versions of the
__cpuinit macros.
[1] https://lkml.org/lkml/2013/5/20/589
[ralf@linux-mips.org: Folded in Paul's followup fix.]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5494/
Patchwork: https://patchwork.linux-mips.org/patch/5495/
Patchwork: https://patchwork.linux-mips.org/patch/5509/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2013-06-18 17:38:59 +04:00
|
|
|
void per_cpu_init(void)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
2019-10-03 15:27:24 +03:00
|
|
|
nasid_t nasid = get_nasid();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
clear_c0_status(ST0_IM);
|
|
|
|
|
2019-10-03 15:27:24 +03:00
|
|
|
per_hub_init(nasid);
|
2005-03-21 21:59:38 +03:00
|
|
|
|
2020-01-09 15:33:50 +03:00
|
|
|
pr_info("CPU %d clock is %dMHz.\n", cpu, sn_cpu_info[cpu].p_speed);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
install_ipi();
|
|
|
|
|
|
|
|
/* Install our NMI handler if symmon hasn't installed one. */
|
|
|
|
install_cpu_nmi_handler(cputoslice(cpu));
|
|
|
|
|
2019-02-19 18:57:20 +03:00
|
|
|
enable_percpu_irq(IP27_HUB_PEND0_IRQ, IRQ_TYPE_NONE);
|
|
|
|
enable_percpu_irq(IP27_HUB_PEND1_IRQ, IRQ_TYPE_NONE);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-06-18 04:32:22 +04:00
|
|
|
void __init plat_mem_setup(void)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2019-02-19 18:57:15 +03:00
|
|
|
u64 p, e, n_mode;
|
2005-04-17 02:20:36 +04:00
|
|
|
nasid_t nid;
|
|
|
|
|
2019-10-22 19:13:12 +03:00
|
|
|
register_smp_ops(&ip27_smp_ops);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
ip27_reboot_setup();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hub_rtc init and cpu clock intr enabled for later calibrate_delay.
|
|
|
|
*/
|
|
|
|
nid = get_nasid();
|
|
|
|
printk("IP27: Running on node %d.\n", nid);
|
|
|
|
|
|
|
|
p = LOCAL_HUB_L(PI_CPU_PRESENT_A) & 1;
|
|
|
|
e = LOCAL_HUB_L(PI_CPU_ENABLE_A) & 1;
|
|
|
|
printk("Node %d has %s primary CPU%s.\n", nid,
|
|
|
|
p ? "a" : "no",
|
|
|
|
e ? ", CPU is running" : "");
|
|
|
|
|
|
|
|
p = LOCAL_HUB_L(PI_CPU_PRESENT_B) & 1;
|
|
|
|
e = LOCAL_HUB_L(PI_CPU_ENABLE_B) & 1;
|
|
|
|
printk("Node %d has %s secondary CPU%s.\n", nid,
|
|
|
|
p ? "a" : "no",
|
|
|
|
e ? ", CPU is running" : "");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to catch kernel missconfigurations and give user an
|
|
|
|
* indication what option to select.
|
|
|
|
*/
|
|
|
|
n_mode = LOCAL_HUB_L(NI_STATUS_REV_ID) & NSRI_MORENODES_MASK;
|
|
|
|
printk("Machine is in %c mode.\n", n_mode ? 'N' : 'M');
|
2006-06-12 03:55:14 +04:00
|
|
|
#ifdef CONFIG_SGI_SN_N_MODE
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!n_mode)
|
|
|
|
panic("Kernel compiled for M mode.");
|
|
|
|
#else
|
|
|
|
if (n_mode)
|
|
|
|
panic("Kernel compiled for N mode.");
|
|
|
|
#endif
|
|
|
|
|
2019-05-08 00:09:13 +03:00
|
|
|
ioport_resource.start = 0;
|
|
|
|
ioport_resource.end = ~0UL;
|
2005-04-17 02:20:36 +04:00
|
|
|
set_io_port_base(IO_BASE);
|
|
|
|
}
|
2019-10-22 19:13:15 +03:00
|
|
|
|
|
|
|
const char *get_system_type(void)
|
|
|
|
{
|
|
|
|
return "SGI Origin";
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init prom_init(void)
|
|
|
|
{
|
|
|
|
prom_init_cmdline(fw_arg0, (LONG *)fw_arg1);
|
|
|
|
prom_meminit();
|
|
|
|
}
|
|
|
|
|