2 * This file is subject to the terms and conditions of the GNU General
3 * Public License. See the file "COPYING" in the main directory of this
4 * archive for more details.
7 * Copyright (C) 2000 - 2001 by Silicon Graphics, Inc.
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/sched.h>
12 #include <linux/smp.h>
14 #include <linux/export.h>
15 #include <linux/cpumask.h>
16 #include <asm/bootinfo.h>
19 #include <asm/pgtable.h>
20 #include <asm/sgialib.h>
22 #include <asm/sn/types.h>
23 #include <asm/sn/sn0/addrs.h>
24 #include <asm/sn/sn0/hubni.h>
25 #include <asm/sn/sn0/hubio.h>
26 #include <asm/sn/klconfig.h>
27 #include <asm/sn/ioc3.h>
28 #include <asm/mipsregs.h>
29 #include <asm/sn/gda.h>
30 #include <asm/sn/hub.h>
31 #include <asm/sn/intr.h>
32 #include <asm/current.h>
33 #include <asm/processor.h>
34 #include <asm/mmu_context.h>
35 #include <asm/thread_info.h>
36 #include <asm/sn/launch.h>
37 #include <asm/sn/sn_private.h>
38 #include <asm/sn/sn0/ip27.h>
39 #include <asm/sn/mapped_kernel.h>
41 #include "ip27-common.h"
43 #define CPU_NONE (cpuid_t)-1
45 static DECLARE_BITMAP(hub_init_mask, MAX_NUMNODES);
46 nasid_t master_nasid = INVALID_NASID;
48 struct cpuinfo_ip27 sn_cpu_info[NR_CPUS];
49 EXPORT_SYMBOL_GPL(sn_cpu_info);
51 static void per_hub_init(nasid_t nasid)
53 struct hub_data *hub = hub_data(nasid);
55 cpumask_set_cpu(smp_processor_id(), &hub->h_cpus);
57 if (test_and_set_bit(nasid, hub_init_mask))
60 * Set CRB timeout at 5ms, (< PI timeout of 10ms)
62 REMOTE_HUB_S(nasid, IIO_ICTP, 0x800);
63 REMOTE_HUB_S(nasid, IIO_ICTO, 0xff);
68 /* copy exception handlers from first node to current node */
69 memcpy((void *)NODE_OFFSET_TO_K0(nasid, 0),
70 (void *)CKSEG0, 0x200);
72 /* switch to node local exception handlers */
73 REMOTE_HUB_S(nasid, PI_CALIAS_SIZE, PI_CALIAS_SIZE_8K);
77 void per_cpu_init(void)
79 int cpu = smp_processor_id();
80 int slice = LOCAL_HUB_L(PI_CPU_NUM);
81 nasid_t nasid = get_nasid();
82 struct hub_data *hub = hub_data(nasid);
84 if (test_and_set_bit(slice, &hub->slice_map))
87 clear_c0_status(ST0_IM);
94 /* Install our NMI handler if symmon hasn't installed one. */
95 install_cpu_nmi_handler(cputoslice(cpu));
97 enable_percpu_irq(IP27_HUB_PEND0_IRQ, IRQ_TYPE_NONE);
98 enable_percpu_irq(IP27_HUB_PEND1_IRQ, IRQ_TYPE_NONE);
102 * get_nasid() returns the physical node id number of the caller.
107 return (nasid_t)((LOCAL_HUB_L(NI_STATUS_REV_ID) & NSRI_NODEID_MASK)
108 >> NSRI_NODEID_SHFT);
111 void __init plat_mem_setup(void)
116 register_smp_ops(&ip27_smp_ops);
121 * hub_rtc init and cpu clock intr enabled for later calibrate_delay.
124 printk("IP27: Running on node %d.\n", nid);
126 p = LOCAL_HUB_L(PI_CPU_PRESENT_A) & 1;
127 e = LOCAL_HUB_L(PI_CPU_ENABLE_A) & 1;
128 printk("Node %d has %s primary CPU%s.\n", nid,
130 e ? ", CPU is running" : "");
132 p = LOCAL_HUB_L(PI_CPU_PRESENT_B) & 1;
133 e = LOCAL_HUB_L(PI_CPU_ENABLE_B) & 1;
134 printk("Node %d has %s secondary CPU%s.\n", nid,
136 e ? ", CPU is running" : "");
139 * Try to catch kernel missconfigurations and give user an
140 * indication what option to select.
142 n_mode = LOCAL_HUB_L(NI_STATUS_REV_ID) & NSRI_MORENODES_MASK;
143 printk("Machine is in %c mode.\n", n_mode ? 'N' : 'M');
144 #ifdef CONFIG_SGI_SN_N_MODE
146 panic("Kernel compiled for M mode.");
149 panic("Kernel compiled for N mode.");
152 ioport_resource.start = 0;
153 ioport_resource.end = ~0UL;
154 set_io_port_base(IO_BASE);
157 const char *get_system_type(void)
162 void __init prom_init(void)
164 prom_init_cmdline(fw_arg0, (LONG *)fw_arg1);