blob: 97579348a54968dbc23665368dc84035dc086934 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Brent Casavante08e6c52006-01-26 15:55:52 -08006 * Copyright (C) 1999,2001-2006 Silicon Graphics, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/config.h>
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/delay.h>
13#include <linux/kernel.h>
14#include <linux/kdev_t.h>
15#include <linux/string.h>
16#include <linux/tty.h>
17#include <linux/console.h>
18#include <linux/timex.h>
19#include <linux/sched.h>
20#include <linux/ioport.h>
21#include <linux/mm.h>
22#include <linux/serial.h>
23#include <linux/irq.h>
24#include <linux/bootmem.h>
25#include <linux/mmzone.h>
26#include <linux/interrupt.h>
27#include <linux/acpi.h>
28#include <linux/compiler.h>
29#include <linux/sched.h>
30#include <linux/root_dev.h>
31#include <linux/nodemask.h>
Aaron J Youngc1298c52005-04-25 13:11:14 -070032#include <linux/pm.h>
Mark Mauleff512242005-11-11 11:52:43 -060033#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/io.h>
36#include <asm/sal.h>
37#include <asm/machvec.h>
38#include <asm/system.h>
39#include <asm/processor.h>
Mark Maulea9f9de72005-04-26 08:01:00 -070040#include <asm/vga.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/sn/arch.h>
42#include <asm/sn/addrs.h>
43#include <asm/sn/pda.h>
44#include <asm/sn/nodepda.h>
45#include <asm/sn/sn_cpuid.h>
46#include <asm/sn/simulator.h>
47#include <asm/sn/leds.h>
48#include <asm/sn/bte.h>
49#include <asm/sn/shub_mmr.h>
50#include <asm/sn/clksupport.h>
51#include <asm/sn/sn_sal.h>
52#include <asm/sn/geo.h>
Jack Steinera1cddb82005-08-31 08:05:00 -070053#include <asm/sn/sn_feature_sets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "xtalk/xwidgetdev.h"
55#include "xtalk/hubdev.h"
56#include <asm/sn/klconfig.h>
57
58
59DEFINE_PER_CPU(struct pda_s, pda_percpu);
60
Jack Steiner9b17e7e2005-09-08 15:28:28 -050061#define MAX_PHYS_MEMORY (1UL << IA64_MAX_PHYS_BITS) /* Max physical address supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063extern void bte_init_node(nodepda_t *, cnodeid_t);
64
65extern void sn_timer_init(void);
66extern unsigned long last_time_offset;
67extern void (*ia64_mark_idle) (int);
68extern void snidle(int);
69extern unsigned char acpi_kbd_controller_present;
Tony Luckd6e56a22006-02-07 15:25:57 -080070extern unsigned long long (*ia64_printk_clock)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72unsigned long sn_rtc_cycles_per_second;
73EXPORT_SYMBOL(sn_rtc_cycles_per_second);
74
75DEFINE_PER_CPU(struct sn_hub_info_s, __sn_hub_info);
76EXPORT_PER_CPU_SYMBOL(__sn_hub_info);
77
Dean Roec2a49692006-02-14 15:01:23 -060078DEFINE_PER_CPU(short, __sn_cnodeid_to_nasid[MAX_COMPACT_NODES]);
Dean Nelson2e34f072005-03-21 19:41:00 -070079EXPORT_PER_CPU_SYMBOL(__sn_cnodeid_to_nasid);
80
Dean Nelson9b48b462005-03-22 16:00:00 -070081DEFINE_PER_CPU(struct nodepda_s *, __sn_nodepda);
82EXPORT_PER_CPU_SYMBOL(__sn_nodepda);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084char sn_system_serial_number_string[128];
85EXPORT_SYMBOL(sn_system_serial_number_string);
86u64 sn_partition_serial_number;
87EXPORT_SYMBOL(sn_partition_serial_number);
88u8 sn_partition_id;
89EXPORT_SYMBOL(sn_partition_id);
90u8 sn_system_size;
91EXPORT_SYMBOL(sn_system_size);
92u8 sn_sharing_domain_size;
93EXPORT_SYMBOL(sn_sharing_domain_size);
94u8 sn_coherency_id;
95EXPORT_SYMBOL(sn_coherency_id);
96u8 sn_region_size;
97EXPORT_SYMBOL(sn_region_size);
Jack Steiner71a5d022005-05-10 08:01:00 -070098int sn_prom_type; /* 0=hardware, 1=medusa/realprom, 2=medusa/fakeprom */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Jack Steiner24ee0a62005-09-12 12:15:43 -0500100short physical_node_map[MAX_NUMALINK_NODES];
Jack Steinera1cddb82005-08-31 08:05:00 -0700101static unsigned long sn_prom_features[MAX_PROM_FEATURE_SETS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103EXPORT_SYMBOL(physical_node_map);
104
Jack Steiner24ee0a62005-09-12 12:15:43 -0500105int num_cnodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107static void sn_init_pdas(char **);
Jack Steiner24ee0a62005-09-12 12:15:43 -0500108static void build_cnode_tables(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110static nodepda_t *nodepdaindr[MAX_COMPACT_NODES];
111
112/*
113 * The format of "screen_info" is strange, and due to early i386-setup
114 * code. This is just enough to make the console code think we're on a
115 * VGA color display.
116 */
117struct screen_info sn_screen_info = {
118 .orig_x = 0,
119 .orig_y = 0,
120 .orig_video_mode = 3,
121 .orig_video_cols = 80,
122 .orig_video_ega_bx = 3,
123 .orig_video_lines = 25,
124 .orig_video_isVGA = 1,
125 .orig_video_points = 16
126};
127
128/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * This routine can only be used during init, since
130 * smp_boot_data is an init data structure.
131 * We have to use smp_boot_data.cpu_phys_id to find
132 * the physical id of the processor because the normal
133 * cpu_physical_id() relies on data structures that
134 * may not be initialized yet.
135 */
136
137static int __init pxm_to_nasid(int pxm)
138{
139 int i;
140 int nid;
141
Yasunori Goto762834e2006-06-23 02:03:19 -0700142 nid = pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 for (i = 0; i < num_node_memblks; i++) {
144 if (node_memblk[i].nid == nid) {
145 return NASID_GET(node_memblk[i].start_paddr);
146 }
147 }
148 return -1;
149}
150
151/**
152 * early_sn_setup - early setup routine for SN platforms
153 *
154 * Sets up an initial console to aid debugging. Intended primarily
155 * for bringup. See start_kernel() in init/main.c.
156 */
157
158void __init early_sn_setup(void)
159{
160 efi_system_table_t *efi_systab;
161 efi_config_table_t *config_tables;
162 struct ia64_sal_systab *sal_systab;
163 struct ia64_sal_desc_entry_point *ep;
164 char *p;
165 int i, j;
166
167 /*
168 * Parse enough of the SAL tables to locate the SAL entry point. Since, console
169 * IO on SN2 is done via SAL calls, early_printk won't work without this.
170 *
171 * This code duplicates some of the ACPI table parsing that is in efi.c & sal.c.
172 * Any changes to those file may have to be made hereas well.
173 */
174 efi_systab = (efi_system_table_t *) __va(ia64_boot_param->efi_systab);
175 config_tables = __va(efi_systab->tables);
176 for (i = 0; i < efi_systab->nr_tables; i++) {
177 if (efi_guidcmp(config_tables[i].guid, SAL_SYSTEM_TABLE_GUID) ==
178 0) {
179 sal_systab = __va(config_tables[i].table);
180 p = (char *)(sal_systab + 1);
181 for (j = 0; j < sal_systab->entry_count; j++) {
182 if (*p == SAL_DESC_ENTRY_POINT) {
183 ep = (struct ia64_sal_desc_entry_point
184 *)p;
185 ia64_sal_handler_init(__va
186 (ep->sal_proc),
187 __va(ep->gp));
188 return;
189 }
190 p += SAL_DESC_SIZE(*p);
191 }
192 }
193 }
194 /* Uh-oh, SAL not available?? */
195 printk(KERN_ERR "failed to find SAL entry point\n");
196}
197
198extern int platform_intr_list[];
Jes Sorensen2fcc3db2006-02-02 05:15:51 -0500199static int __initdata shub_1_1_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/*
202 * sn_check_for_wars
203 *
204 * Set flag for enabling shub specific wars
205 */
206
207static inline int __init is_shub_1_1(int nasid)
208{
209 unsigned long id;
210 int rev;
211
212 if (is_shub2())
213 return 0;
214 id = REMOTE_HUB_L(nasid, SH1_SHUB_ID);
215 rev = (id & SH1_SHUB_ID_REVISION_MASK) >> SH1_SHUB_ID_REVISION_SHFT;
216 return rev <= 2;
217}
218
219static void __init sn_check_for_wars(void)
220{
221 int cnode;
222
223 if (is_shub2()) {
224 /* none yet */
225 } else {
226 for_each_online_node(cnode) {
227 if (is_shub_1_1(cnodeid_to_nasid(cnode)))
Dean Nelsonff89bf32005-06-03 05:25:00 -0700228 shub_1_1_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230 }
231}
232
Mark Mauleff512242005-11-11 11:52:43 -0600233/*
234 * Scan the EFI PCDP table (if it exists) for an acceptable VGA console
235 * output device. If one exists, pick it and set sn_legacy_{io,mem} to
236 * reflect the bus offsets needed to address it.
237 *
238 * Since pcdp support in SN is not supported in the 2.4 kernel (or at least
239 * the one lbs is based on) just declare the needed structs here.
240 *
241 * Reference spec http://www.dig64.org/specifications/DIG64_PCDPv20.pdf
242 *
243 * Returns 0 if no acceptable vga is found, !0 otherwise.
244 *
245 * Note: This stuff is duped here because Altix requires the PCDP to
246 * locate a usable VGA device due to lack of proper ACPI support. Structures
247 * could be used from drivers/firmware/pcdp.h, but it was decided that moving
248 * this file to a more public location just for Altix use was undesireable.
249 */
250
251struct hcdp_uart_desc {
252 u8 pad[45];
253};
254
255struct pcdp {
256 u8 signature[4]; /* should be 'HCDP' */
257 u32 length;
258 u8 rev; /* should be >=3 for pcdp, <3 for hcdp */
259 u8 sum;
260 u8 oem_id[6];
261 u64 oem_tableid;
262 u32 oem_rev;
263 u32 creator_id;
264 u32 creator_rev;
265 u32 num_type0;
266 struct hcdp_uart_desc uart[0]; /* num_type0 of these */
267 /* pcdp descriptors follow */
268} __attribute__((packed));
269
270struct pcdp_device_desc {
271 u8 type;
272 u8 primary;
273 u16 length;
274 u16 index;
275 /* interconnect specific structure follows */
276 /* device specific structure follows that */
277} __attribute__((packed));
278
279struct pcdp_interface_pci {
280 u8 type; /* 1 == pci */
281 u8 reserved;
282 u16 length;
283 u8 segment;
284 u8 bus;
285 u8 dev;
286 u8 fun;
287 u16 devid;
288 u16 vendid;
289 u32 acpi_interrupt;
290 u64 mmio_tra;
291 u64 ioport_tra;
292 u8 flags;
293 u8 translation;
294} __attribute__((packed));
295
296struct pcdp_vga_device {
297 u8 num_eas_desc;
298 /* ACPI Extended Address Space Desc follows */
299} __attribute__((packed));
300
301/* from pcdp_device_desc.primary */
302#define PCDP_PRIMARY_CONSOLE 0x01
303
304/* from pcdp_device_desc.type */
305#define PCDP_CONSOLE_INOUT 0x0
306#define PCDP_CONSOLE_DEBUG 0x1
307#define PCDP_CONSOLE_OUT 0x2
308#define PCDP_CONSOLE_IN 0x3
309#define PCDP_CONSOLE_TYPE_VGA 0x8
310
311#define PCDP_CONSOLE_VGA (PCDP_CONSOLE_TYPE_VGA | PCDP_CONSOLE_OUT)
312
313/* from pcdp_interface_pci.type */
314#define PCDP_IF_PCI 1
315
316/* from pcdp_interface_pci.translation */
317#define PCDP_PCI_TRANS_IOPORT 0x02
318#define PCDP_PCI_TRANS_MMIO 0x01
319
Jes Sorensen26d10912006-02-13 05:35:01 -0500320#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
Mark Mauleff512242005-11-11 11:52:43 -0600321static void
322sn_scan_pcdp(void)
323{
324 u8 *bp;
325 struct pcdp *pcdp;
326 struct pcdp_device_desc device;
327 struct pcdp_interface_pci if_pci;
328 extern struct efi efi;
329
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800330 if (efi.hcdp == EFI_INVALID_TABLE_ADDR)
Mark Mauleff512242005-11-11 11:52:43 -0600331 return; /* no hcdp/pcdp table */
332
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800333 pcdp = __va(efi.hcdp);
334
Mark Mauleff512242005-11-11 11:52:43 -0600335 if (pcdp->rev < 3)
336 return; /* only support PCDP (rev >= 3) */
337
338 for (bp = (u8 *)&pcdp->uart[pcdp->num_type0];
339 bp < (u8 *)pcdp + pcdp->length;
340 bp += device.length) {
341 memcpy(&device, bp, sizeof(device));
342 if (! (device.primary & PCDP_PRIMARY_CONSOLE))
343 continue; /* not primary console */
344
345 if (device.type != PCDP_CONSOLE_VGA)
346 continue; /* not VGA descriptor */
347
348 memcpy(&if_pci, bp+sizeof(device), sizeof(if_pci));
349 if (if_pci.type != PCDP_IF_PCI)
350 continue; /* not PCI interconnect */
351
352 if (if_pci.translation & PCDP_PCI_TRANS_IOPORT)
353 vga_console_iobase =
354 if_pci.ioport_tra | __IA64_UNCACHED_OFFSET;
355
356 if (if_pci.translation & PCDP_PCI_TRANS_MMIO)
357 vga_console_membase =
358 if_pci.mmio_tra | __IA64_UNCACHED_OFFSET;
359
360 break; /* once we find the primary, we're done */
361 }
362}
Jes Sorensen26d10912006-02-13 05:35:01 -0500363#endif
Mark Mauleff512242005-11-11 11:52:43 -0600364
Tony Luckd6e56a22006-02-07 15:25:57 -0800365static unsigned long sn2_rtc_initial;
366
367static unsigned long long ia64_sn2_printk_clock(void)
368{
369 unsigned long rtc_now = rtc_time();
370
371 return (rtc_now - sn2_rtc_initial) *
372 (1000000000 / sn_rtc_cycles_per_second);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/**
376 * sn_setup - SN platform setup routine
377 * @cmdline_p: kernel command line
378 *
379 * Handles platform setup for SN machines. This includes determining
380 * the RTC frequency (via a SAL call), initializing secondary CPUs, and
381 * setting up per-node data areas. The console is also initialized here.
382 */
383void __init sn_setup(char **cmdline_p)
384{
385 long status, ticks_per_sec, drift;
Prarit Bhargava283c7f62005-07-06 15:29:13 -0700386 u32 version = sn_sal_rev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 extern void sn_cpu_init(void);
388
Tony Luckd6e56a22006-02-07 15:25:57 -0800389 sn2_rtc_initial = rtc_time();
Jack Steinera1cddb82005-08-31 08:05:00 -0700390 ia64_sn_plat_set_error_handling_features(); // obsolete
391 ia64_sn_set_os_feature(OSF_MCA_SLV_TO_OS_INIT_SLV);
392 ia64_sn_set_os_feature(OSF_FEAT_LOG_SBES);
393
Russ Anderson6872ec52005-05-16 15:30:00 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
Mark Maulea9f9de72005-04-26 08:01:00 -0700396 /*
Mark Mauleff512242005-11-11 11:52:43 -0600397 * Handle SN vga console.
398 *
399 * SN systems do not have enough ACPI table information
400 * being passed from prom to identify VGA adapters and the legacy
401 * addresses to access them. Until that is done, SN systems rely
402 * on the PCDP table to identify the primary VGA console if one
403 * exists.
404 *
405 * However, kernel PCDP support is optional, and even if it is built
406 * into the kernel, it will not be used if the boot cmdline contains
407 * console= directives.
408 *
409 * So, to work around this mess, we duplicate some of the PCDP code
410 * here so that the primary VGA console (as defined by PCDP) will
411 * work on SN systems even if a different console (e.g. serial) is
412 * selected on the boot line (or CONFIG_EFI_PCDP is off).
Mark Maulea9f9de72005-04-26 08:01:00 -0700413 */
414
Mark Mauleff512242005-11-11 11:52:43 -0600415 if (! vga_console_membase)
416 sn_scan_pcdp();
417
Mark Maulea9f9de72005-04-26 08:01:00 -0700418 if (vga_console_membase) {
419 /* usable vga ... make tty0 the preferred default console */
Mark Mauleff512242005-11-11 11:52:43 -0600420 if (!strstr(*cmdline_p, "console="))
421 add_preferred_console("tty", 0, NULL);
Mark Maulea9f9de72005-04-26 08:01:00 -0700422 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 printk(KERN_DEBUG "SGI: Disabling VGA console\n");
Mark Mauleff512242005-11-11 11:52:43 -0600424 if (!strstr(*cmdline_p, "console="))
425 add_preferred_console("ttySG", 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#ifdef CONFIG_DUMMY_CONSOLE
427 conswitchp = &dummy_con;
428#else
429 conswitchp = NULL;
430#endif /* CONFIG_DUMMY_CONSOLE */
431 }
432#endif /* def(CONFIG_VT) && def(CONFIG_VGA_CONSOLE) */
433
434 MAX_DMA_ADDRESS = PAGE_OFFSET + MAX_PHYS_MEMORY;
435
Jack Steiner24ee0a62005-09-12 12:15:43 -0500436 /*
437 * Build the tables for managing cnodes.
438 */
439 build_cnode_tables();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 status =
442 ia64_sal_freq_base(SAL_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec,
443 &drift);
444 if (status != 0 || ticks_per_sec < 100000) {
445 printk(KERN_WARNING
446 "unable to determine platform RTC clock frequency, guessing.\n");
447 /* PROM gives wrong value for clock freq. so guess */
448 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
449 } else
450 sn_rtc_cycles_per_second = ticks_per_sec;
451
452 platform_intr_list[ACPI_INTERRUPT_CPEI] = IA64_CPE_VECTOR;
453
Tony Luckd6e56a22006-02-07 15:25:57 -0800454 ia64_printk_clock = ia64_sn2_printk_clock;
455
456 /*
457 * Old PROMs do not provide an ACPI FADT. Disable legacy keyboard
458 * support here so we don't have to listen to failed keyboard probe
459 * messages.
460 */
461 if (version <= 0x0209 && acpi_kbd_controller_present) {
462 printk(KERN_INFO "Disabling legacy keyboard support as prom "
463 "is too old and doesn't provide FADT\n");
464 acpi_kbd_controller_present = 0;
465 }
466
467 printk("SGI SAL version %x.%02x\n", version >> 8, version & 0x00FF);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * we set the default root device to /dev/hda
471 * to make simulation easy
472 */
473 ROOT_DEV = Root_HDA1;
474
475 /*
476 * Create the PDAs and NODEPDAs for all the cpus.
477 */
478 sn_init_pdas(cmdline_p);
479
480 ia64_mark_idle = &snidle;
481
Jack Steiner71a5d022005-05-10 08:01:00 -0700482 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * For the bootcpu, we do this here. All other cpus will make the
484 * call as part of cpu_init in slave cpu initialization.
485 */
486 sn_cpu_init();
487
488#ifdef CONFIG_SMP
489 init_smp_config();
490#endif
491 screen_info = sn_screen_info;
492
493 sn_timer_init();
Aaron J Youngc1298c52005-04-25 13:11:14 -0700494
495 /*
496 * set pm_power_off to a SAL call to allow
497 * sn machines to power off. The SAL call can be replaced
498 * by an ACPI interface call when ACPI is fully implemented
499 * for sn.
500 */
501 pm_power_off = ia64_sn_power_down;
Brent Casavante08e6c52006-01-26 15:55:52 -0800502 current->thread.flags |= IA64_THREAD_MIGRATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505/**
506 * sn_init_pdas - setup node data areas
507 *
508 * One time setup for Node Data Area. Called by sn_setup().
509 */
510static void __init sn_init_pdas(char **cmdline_p)
511{
512 cnodeid_t cnode;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
515 * Allocate & initalize the nodepda for each node.
516 */
517 for_each_online_node(cnode) {
518 nodepdaindr[cnode] =
519 alloc_bootmem_node(NODE_DATA(cnode), sizeof(nodepda_t));
520 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
Jack Steiner71a5d022005-05-10 08:01:00 -0700521 memset(nodepdaindr[cnode]->phys_cpuid, -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 sizeof(nodepdaindr[cnode]->phys_cpuid));
Jack Steiner470ceb02005-08-11 10:28:00 -0700523 spin_lock_init(&nodepdaindr[cnode]->ptc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
526 /*
527 * Allocate & initialize nodepda for TIOs. For now, put them on node 0.
528 */
Jack Steiner24ee0a62005-09-12 12:15:43 -0500529 for (cnode = num_online_nodes(); cnode < num_cnodes; cnode++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 nodepdaindr[cnode] =
531 alloc_bootmem_node(NODE_DATA(0), sizeof(nodepda_t));
532 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
533 }
534
535 /*
536 * Now copy the array of nodepda pointers to each nodepda.
537 */
Jack Steiner24ee0a62005-09-12 12:15:43 -0500538 for (cnode = 0; cnode < num_cnodes; cnode++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 memcpy(nodepdaindr[cnode]->pernode_pdaindr, nodepdaindr,
540 sizeof(nodepdaindr));
541
542 /*
543 * Set up IO related platform-dependent nodepda fields.
544 * The following routine actually sets up the hubinfo struct
545 * in nodepda.
546 */
547 for_each_online_node(cnode) {
548 bte_init_node(nodepdaindr[cnode], cnode);
549 }
550
551 /*
Jack Steiner71a5d022005-05-10 08:01:00 -0700552 * Initialize the per node hubdev. This includes IO Nodes and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * headless/memless nodes.
554 */
Jack Steiner24ee0a62005-09-12 12:15:43 -0500555 for (cnode = 0; cnode < num_cnodes; cnode++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 hubdev_init_node(nodepdaindr[cnode], cnode);
557 }
558}
559
560/**
561 * sn_cpu_init - initialize per-cpu data areas
562 * @cpuid: cpuid of the caller
563 *
564 * Called during cpu initialization on each cpu as it starts.
565 * Currently, initializes the per-cpu data area for SNIA.
566 * Also sets up a few fields in the nodepda. Also known as
567 * platform_cpu_init() by the ia64 machvec code.
568 */
569void __init sn_cpu_init(void)
570{
571 int cpuid;
572 int cpuphyid;
573 int nasid;
574 int subnode;
575 int slice;
576 int cnode;
577 int i;
578 static int wars_have_been_checked;
579
Jack Steiner9d56d872006-04-27 20:01:05 -0500580 cpuid = smp_processor_id();
581 if (cpuid == 0 && IS_MEDUSA()) {
Jack Steiner71a5d022005-05-10 08:01:00 -0700582 if (ia64_sn_is_fake_prom())
583 sn_prom_type = 2;
584 else
585 sn_prom_type = 1;
Jes Sorensen2fcc3db2006-02-02 05:15:51 -0500586 printk(KERN_INFO "Running on medusa with %s PROM\n",
587 (sn_prom_type == 1) ? "real" : "fake");
Jack Steiner71a5d022005-05-10 08:01:00 -0700588 }
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 memset(pda, 0, sizeof(pda));
Jes Sorensen2fcc3db2006-02-02 05:15:51 -0500591 if (ia64_sn_get_sn_info(0, &sn_hub_info->shub2,
592 &sn_hub_info->nasid_bitmask,
593 &sn_hub_info->nasid_shift,
594 &sn_system_size, &sn_sharing_domain_size,
595 &sn_partition_id, &sn_coherency_id,
596 &sn_region_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 BUG();
598 sn_hub_info->as_shift = sn_hub_info->nasid_shift - 2;
599
600 /*
Jack Steiner9d56d872006-04-27 20:01:05 -0500601 * Don't check status. The SAL call is not supported on all PROMs
602 * but a failure is harmless.
603 */
604 (void) ia64_sn_set_cpu_number(cpuid);
605
606 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * The boot cpu makes this call again after platform initialization is
608 * complete.
609 */
610 if (nodepdaindr[0] == NULL)
611 return;
612
Jack Steinera1cddb82005-08-31 08:05:00 -0700613 for (i = 0; i < MAX_PROM_FEATURE_SETS; i++)
614 if (ia64_sn_get_prom_feature_set(i, &sn_prom_features[i]) != 0)
615 break;
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 cpuphyid = get_sapicid();
618
619 if (ia64_sn_get_sapic_info(cpuphyid, &nasid, &subnode, &slice))
620 BUG();
621
622 for (i=0; i < MAX_NUMNODES; i++) {
623 if (nodepdaindr[i]) {
624 nodepdaindr[i]->phys_cpuid[cpuid].nasid = nasid;
625 nodepdaindr[i]->phys_cpuid[cpuid].slice = slice;
626 nodepdaindr[i]->phys_cpuid[cpuid].subnode = subnode;
627 }
628 }
629
630 cnode = nasid_to_cnodeid(nasid);
631
Dean Nelson9b48b462005-03-22 16:00:00 -0700632 sn_nodepda = nodepdaindr[cnode];
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 pda->led_address =
635 (typeof(pda->led_address)) (LED0 + (slice << LED_CPU_SHIFT));
636 pda->led_state = LED_ALWAYS_SET;
637 pda->hb_count = HZ / 2;
638 pda->hb_state = 0;
639 pda->idle_flag = 0;
640
641 if (cpuid != 0) {
Dean Nelson2e34f072005-03-21 19:41:00 -0700642 /* copy cpu 0's sn_cnodeid_to_nasid table to this cpu's */
643 memcpy(sn_cnodeid_to_nasid,
644 (&per_cpu(__sn_cnodeid_to_nasid, 0)),
645 sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
648 /*
649 * Check for WARs.
650 * Only needs to be done once, on BSP.
Dean Nelson2e34f072005-03-21 19:41:00 -0700651 * Has to be done after loop above, because it uses this cpu's
652 * sn_cnodeid_to_nasid table which was just initialized if this
653 * isn't cpu 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * Has to be done before assignment below.
655 */
656 if (!wars_have_been_checked) {
657 sn_check_for_wars();
658 wars_have_been_checked = 1;
659 }
660 sn_hub_info->shub_1_1_found = shub_1_1_found;
661
662 /*
663 * Set up addresses of PIO/MEM write status registers.
664 */
665 {
666 u64 pio1[] = {SH1_PIO_WRITE_STATUS_0, 0, SH1_PIO_WRITE_STATUS_1, 0};
Jack Steiner2fdbb592005-08-11 10:26:00 -0700667 u64 pio2[] = {SH2_PIO_WRITE_STATUS_0, SH2_PIO_WRITE_STATUS_2,
668 SH2_PIO_WRITE_STATUS_1, SH2_PIO_WRITE_STATUS_3};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 u64 *pio;
670 pio = is_shub1() ? pio1 : pio2;
Brent Casavante08e6c52006-01-26 15:55:52 -0800671 pda->pio_write_status_addr =
672 (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid, pio[slice]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 pda->pio_write_status_val = is_shub1() ? SH_PIO_WRITE_STATUS_PENDING_WRITE_COUNT_MASK : 0;
674 }
675
676 /*
677 * WAR addresses for SHUB 1.x.
678 */
679 if (local_node_data->active_cpu_count++ == 0 && is_shub1()) {
680 int buddy_nasid;
681 buddy_nasid =
682 cnodeid_to_nasid(numa_node_id() ==
683 num_online_nodes() - 1 ? 0 : numa_node_id() + 1);
684 pda->pio_shub_war_cam_addr =
685 (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid,
686 SH1_PI_CAM_CONTROL);
687 }
688}
689
690/*
Jack Steiner24ee0a62005-09-12 12:15:43 -0500691 * Build tables for converting between NASIDs and cnodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 */
Jack Steiner24ee0a62005-09-12 12:15:43 -0500693static inline int __init board_needs_cnode(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Jack Steiner24ee0a62005-09-12 12:15:43 -0500695 return (type == KLTYPE_SNIA || type == KLTYPE_TIO);
696}
697
698void __init build_cnode_tables(void)
699{
700 int nasid;
701 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 lboard_t *brd;
703
Jack Steiner24ee0a62005-09-12 12:15:43 -0500704 memset(physical_node_map, -1, sizeof(physical_node_map));
705 memset(sn_cnodeid_to_nasid, -1,
706 sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
707
708 /*
709 * First populate the tables with C/M bricks. This ensures that
710 * cnode == node for all C & M bricks.
711 */
712 for_each_online_node(node) {
Yasunori Goto762834e2006-06-23 02:03:19 -0700713 nasid = pxm_to_nasid(node_to_pxm(node));
Jack Steiner24ee0a62005-09-12 12:15:43 -0500714 sn_cnodeid_to_nasid[node] = nasid;
715 physical_node_map[nasid] = node;
716 }
717
718 /*
719 * num_cnodes is total number of C/M/TIO bricks. Because of the 256 node
720 * limit on the number of nodes, we can't use the generic node numbers
721 * for this. Note that num_cnodes is incremented below as TIOs or
722 * headless/memoryless nodes are discovered.
723 */
724 num_cnodes = num_online_nodes();
725
Jack Steiner71a5d022005-05-10 08:01:00 -0700726 /* fakeprom does not support klgraph */
727 if (IS_RUNNING_ON_FAKE_PROM())
728 return;
729
Jack Steiner24ee0a62005-09-12 12:15:43 -0500730 /* Find TIOs & headless/memoryless nodes and add them to the tables */
731 for_each_online_node(node) {
732 kl_config_hdr_t *klgraph_header;
733 nasid = cnodeid_to_nasid(node);
Jes Sorensen2fcc3db2006-02-02 05:15:51 -0500734 klgraph_header = ia64_sn_get_klconfig_addr(nasid);
735 if (klgraph_header == NULL)
Jack Steiner24ee0a62005-09-12 12:15:43 -0500736 BUG();
737 brd = NODE_OFFSET_TO_LBOARD(nasid, klgraph_header->ch_board_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 while (brd) {
Jack Steiner24ee0a62005-09-12 12:15:43 -0500739 if (board_needs_cnode(brd->brd_type) && physical_node_map[brd->brd_nasid] < 0) {
740 sn_cnodeid_to_nasid[num_cnodes] = brd->brd_nasid;
741 physical_node_map[brd->brd_nasid] = num_cnodes++;
742 }
743 brd = find_lboard_next(brd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748int
749nasid_slice_to_cpuid(int nasid, int slice)
750{
751 long cpu;
Jack Steiner71a5d022005-05-10 08:01:00 -0700752
Jes Sorensen2fcc3db2006-02-02 05:15:51 -0500753 for (cpu = 0; cpu < NR_CPUS; cpu++)
Dean Nelson9b48b462005-03-22 16:00:00 -0700754 if (cpuid_to_nasid(cpu) == nasid &&
755 cpuid_to_slice(cpu) == slice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return cpu;
757
758 return -1;
759}
Jack Steinera1cddb82005-08-31 08:05:00 -0700760
761int sn_prom_feature_available(int id)
762{
763 if (id >= BITS_PER_LONG * MAX_PROM_FEATURE_SETS)
764 return 0;
765 return test_bit(id, sn_prom_features);
766}
767EXPORT_SYMBOL(sn_prom_feature_available);
768