]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/ia64/sn/kernel/setup.c
[PATCH] DMI: only ioremap stuff we actually need
[mirror_ubuntu-bionic-kernel.git] / arch / ia64 / sn / kernel / setup.c
CommitLineData
1da177e4
LT
1/*
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 *
e08e6c52 6 * Copyright (C) 1999,2001-2006 Silicon Graphics, Inc. All rights reserved.
1da177e4
LT
7 */
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>
c1298c5c 32#include <linux/pm.h>
ff51224c 33#include <linux/efi.h>
1da177e4
LT
34
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>
a9f9de73 40#include <asm/vga.h>
1da177e4
LT
41#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>
a1cddb88 53#include <asm/sn/sn_feature_sets.h>
1da177e4
LT
54#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
9b17e7e7 61#define MAX_PHYS_MEMORY (1UL << IA64_MAX_PHYS_BITS) /* Max physical address supported */
1da177e4 62
1da177e4
LT
63extern 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;
d6e56a2a 70extern unsigned long long (*ia64_printk_clock)(void);
1da177e4
LT
71
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
c2a4969b 78DEFINE_PER_CPU(short, __sn_cnodeid_to_nasid[MAX_COMPACT_NODES]);
2e34f07f
DN
79EXPORT_PER_CPU_SYMBOL(__sn_cnodeid_to_nasid);
80
9b48b466
DN
81DEFINE_PER_CPU(struct nodepda_s *, __sn_nodepda);
82EXPORT_PER_CPU_SYMBOL(__sn_nodepda);
83
1da177e4
LT
84char 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);
71a5d027 98int sn_prom_type; /* 0=hardware, 1=medusa/realprom, 2=medusa/fakeprom */
1da177e4 99
24ee0a6d 100short physical_node_map[MAX_NUMALINK_NODES];
a1cddb88 101static unsigned long sn_prom_features[MAX_PROM_FEATURE_SETS];
1da177e4
LT
102
103EXPORT_SYMBOL(physical_node_map);
104
24ee0a6d 105int num_cnodes;
1da177e4
LT
106
107static void sn_init_pdas(char **);
24ee0a6d 108static void build_cnode_tables(void);
1da177e4
LT
109
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
1da177e4
LT
128/*
129 * 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
142 nid = pxm_to_nid_map[pxm];
143 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[];
2fcc3db0 199static int __initdata shub_1_1_found;
1da177e4
LT
200
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)))
ff89bf3b 228 shub_1_1_found = 1;
1da177e4
LT
229 }
230 }
231}
232
ff51224c
MM
233/*
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
26d10915 320#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
ff51224c
MM
321static 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
330 pcdp = efi.hcdp;
331 if (! pcdp)
332 return; /* no hcdp/pcdp table */
333
334 if (pcdp->rev < 3)
335 return; /* only support PCDP (rev >= 3) */
336
337 for (bp = (u8 *)&pcdp->uart[pcdp->num_type0];
338 bp < (u8 *)pcdp + pcdp->length;
339 bp += device.length) {
340 memcpy(&device, bp, sizeof(device));
341 if (! (device.primary & PCDP_PRIMARY_CONSOLE))
342 continue; /* not primary console */
343
344 if (device.type != PCDP_CONSOLE_VGA)
345 continue; /* not VGA descriptor */
346
347 memcpy(&if_pci, bp+sizeof(device), sizeof(if_pci));
348 if (if_pci.type != PCDP_IF_PCI)
349 continue; /* not PCI interconnect */
350
351 if (if_pci.translation & PCDP_PCI_TRANS_IOPORT)
352 vga_console_iobase =
353 if_pci.ioport_tra | __IA64_UNCACHED_OFFSET;
354
355 if (if_pci.translation & PCDP_PCI_TRANS_MMIO)
356 vga_console_membase =
357 if_pci.mmio_tra | __IA64_UNCACHED_OFFSET;
358
359 break; /* once we find the primary, we're done */
360 }
361}
26d10915 362#endif
ff51224c 363
d6e56a2a
TL
364static unsigned long sn2_rtc_initial;
365
366static unsigned long long ia64_sn2_printk_clock(void)
367{
368 unsigned long rtc_now = rtc_time();
369
370 return (rtc_now - sn2_rtc_initial) *
371 (1000000000 / sn_rtc_cycles_per_second);
372}
373
1da177e4
LT
374/**
375 * sn_setup - SN platform setup routine
376 * @cmdline_p: kernel command line
377 *
378 * Handles platform setup for SN machines. This includes determining
379 * the RTC frequency (via a SAL call), initializing secondary CPUs, and
380 * setting up per-node data areas. The console is also initialized here.
381 */
382void __init sn_setup(char **cmdline_p)
383{
384 long status, ticks_per_sec, drift;
283c7f6a 385 u32 version = sn_sal_rev();
1da177e4
LT
386 extern void sn_cpu_init(void);
387
d6e56a2a 388 sn2_rtc_initial = rtc_time();
a1cddb88
JS
389 ia64_sn_plat_set_error_handling_features(); // obsolete
390 ia64_sn_set_os_feature(OSF_MCA_SLV_TO_OS_INIT_SLV);
391 ia64_sn_set_os_feature(OSF_FEAT_LOG_SBES);
392
6872ec54 393
a9f9de73 394#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
1da177e4 395 /*
ff51224c
MM
396 * Handle SN vga console.
397 *
398 * SN systems do not have enough ACPI table information
399 * being passed from prom to identify VGA adapters and the legacy
400 * addresses to access them. Until that is done, SN systems rely
401 * on the PCDP table to identify the primary VGA console if one
402 * exists.
403 *
404 * However, kernel PCDP support is optional, and even if it is built
405 * into the kernel, it will not be used if the boot cmdline contains
406 * console= directives.
407 *
408 * So, to work around this mess, we duplicate some of the PCDP code
409 * here so that the primary VGA console (as defined by PCDP) will
410 * work on SN systems even if a different console (e.g. serial) is
411 * selected on the boot line (or CONFIG_EFI_PCDP is off).
1da177e4 412 */
a9f9de73 413
ff51224c
MM
414 if (! vga_console_membase)
415 sn_scan_pcdp();
416
a9f9de73
MM
417 if (vga_console_membase) {
418 /* usable vga ... make tty0 the preferred default console */
ff51224c
MM
419 if (!strstr(*cmdline_p, "console="))
420 add_preferred_console("tty", 0, NULL);
a9f9de73 421 } else {
1da177e4 422 printk(KERN_DEBUG "SGI: Disabling VGA console\n");
ff51224c
MM
423 if (!strstr(*cmdline_p, "console="))
424 add_preferred_console("ttySG", 0, NULL);
1da177e4
LT
425#ifdef CONFIG_DUMMY_CONSOLE
426 conswitchp = &dummy_con;
427#else
428 conswitchp = NULL;
429#endif /* CONFIG_DUMMY_CONSOLE */
430 }
431#endif /* def(CONFIG_VT) && def(CONFIG_VGA_CONSOLE) */
432
433 MAX_DMA_ADDRESS = PAGE_OFFSET + MAX_PHYS_MEMORY;
434
24ee0a6d
JS
435 /*
436 * Build the tables for managing cnodes.
437 */
438 build_cnode_tables();
1da177e4 439
1da177e4
LT
440 status =
441 ia64_sal_freq_base(SAL_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec,
442 &drift);
443 if (status != 0 || ticks_per_sec < 100000) {
444 printk(KERN_WARNING
445 "unable to determine platform RTC clock frequency, guessing.\n");
446 /* PROM gives wrong value for clock freq. so guess */
447 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
448 } else
449 sn_rtc_cycles_per_second = ticks_per_sec;
450
451 platform_intr_list[ACPI_INTERRUPT_CPEI] = IA64_CPE_VECTOR;
452
d6e56a2a
TL
453 ia64_printk_clock = ia64_sn2_printk_clock;
454
455 /*
456 * Old PROMs do not provide an ACPI FADT. Disable legacy keyboard
457 * support here so we don't have to listen to failed keyboard probe
458 * messages.
459 */
460 if (version <= 0x0209 && acpi_kbd_controller_present) {
461 printk(KERN_INFO "Disabling legacy keyboard support as prom "
462 "is too old and doesn't provide FADT\n");
463 acpi_kbd_controller_present = 0;
464 }
465
466 printk("SGI SAL version %x.%02x\n", version >> 8, version & 0x00FF);
467
1da177e4
LT
468 /*
469 * we set the default root device to /dev/hda
470 * to make simulation easy
471 */
472 ROOT_DEV = Root_HDA1;
473
474 /*
475 * Create the PDAs and NODEPDAs for all the cpus.
476 */
477 sn_init_pdas(cmdline_p);
478
479 ia64_mark_idle = &snidle;
480
71a5d027 481 /*
1da177e4
LT
482 * For the bootcpu, we do this here. All other cpus will make the
483 * call as part of cpu_init in slave cpu initialization.
484 */
485 sn_cpu_init();
486
487#ifdef CONFIG_SMP
488 init_smp_config();
489#endif
490 screen_info = sn_screen_info;
491
492 sn_timer_init();
c1298c5c
AY
493
494 /*
495 * set pm_power_off to a SAL call to allow
496 * sn machines to power off. The SAL call can be replaced
497 * by an ACPI interface call when ACPI is fully implemented
498 * for sn.
499 */
500 pm_power_off = ia64_sn_power_down;
e08e6c52 501 current->thread.flags |= IA64_THREAD_MIGRATION;
1da177e4
LT
502}
503
504/**
505 * sn_init_pdas - setup node data areas
506 *
507 * One time setup for Node Data Area. Called by sn_setup().
508 */
509static void __init sn_init_pdas(char **cmdline_p)
510{
511 cnodeid_t cnode;
512
1da177e4
LT
513 /*
514 * Allocate & initalize the nodepda for each node.
515 */
516 for_each_online_node(cnode) {
517 nodepdaindr[cnode] =
518 alloc_bootmem_node(NODE_DATA(cnode), sizeof(nodepda_t));
519 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
71a5d027 520 memset(nodepdaindr[cnode]->phys_cpuid, -1,
1da177e4 521 sizeof(nodepdaindr[cnode]->phys_cpuid));
470ceb05 522 spin_lock_init(&nodepdaindr[cnode]->ptc_lock);
1da177e4
LT
523 }
524
525 /*
526 * Allocate & initialize nodepda for TIOs. For now, put them on node 0.
527 */
24ee0a6d 528 for (cnode = num_online_nodes(); cnode < num_cnodes; cnode++) {
1da177e4
LT
529 nodepdaindr[cnode] =
530 alloc_bootmem_node(NODE_DATA(0), sizeof(nodepda_t));
531 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
532 }
533
534 /*
535 * Now copy the array of nodepda pointers to each nodepda.
536 */
24ee0a6d 537 for (cnode = 0; cnode < num_cnodes; cnode++)
1da177e4
LT
538 memcpy(nodepdaindr[cnode]->pernode_pdaindr, nodepdaindr,
539 sizeof(nodepdaindr));
540
541 /*
542 * Set up IO related platform-dependent nodepda fields.
543 * The following routine actually sets up the hubinfo struct
544 * in nodepda.
545 */
546 for_each_online_node(cnode) {
547 bte_init_node(nodepdaindr[cnode], cnode);
548 }
549
550 /*
71a5d027 551 * Initialize the per node hubdev. This includes IO Nodes and
1da177e4
LT
552 * headless/memless nodes.
553 */
24ee0a6d 554 for (cnode = 0; cnode < num_cnodes; cnode++) {
1da177e4
LT
555 hubdev_init_node(nodepdaindr[cnode], cnode);
556 }
557}
558
559/**
560 * sn_cpu_init - initialize per-cpu data areas
561 * @cpuid: cpuid of the caller
562 *
563 * Called during cpu initialization on each cpu as it starts.
564 * Currently, initializes the per-cpu data area for SNIA.
565 * Also sets up a few fields in the nodepda. Also known as
566 * platform_cpu_init() by the ia64 machvec code.
567 */
568void __init sn_cpu_init(void)
569{
570 int cpuid;
571 int cpuphyid;
572 int nasid;
573 int subnode;
574 int slice;
575 int cnode;
576 int i;
577 static int wars_have_been_checked;
578
71a5d027
JS
579 if (smp_processor_id() == 0 && IS_MEDUSA()) {
580 if (ia64_sn_is_fake_prom())
581 sn_prom_type = 2;
582 else
583 sn_prom_type = 1;
2fcc3db0
JS
584 printk(KERN_INFO "Running on medusa with %s PROM\n",
585 (sn_prom_type == 1) ? "real" : "fake");
71a5d027
JS
586 }
587
1da177e4 588 memset(pda, 0, sizeof(pda));
2fcc3db0
JS
589 if (ia64_sn_get_sn_info(0, &sn_hub_info->shub2,
590 &sn_hub_info->nasid_bitmask,
591 &sn_hub_info->nasid_shift,
592 &sn_system_size, &sn_sharing_domain_size,
593 &sn_partition_id, &sn_coherency_id,
594 &sn_region_size))
1da177e4
LT
595 BUG();
596 sn_hub_info->as_shift = sn_hub_info->nasid_shift - 2;
597
598 /*
599 * The boot cpu makes this call again after platform initialization is
600 * complete.
601 */
602 if (nodepdaindr[0] == NULL)
603 return;
604
a1cddb88
JS
605 for (i = 0; i < MAX_PROM_FEATURE_SETS; i++)
606 if (ia64_sn_get_prom_feature_set(i, &sn_prom_features[i]) != 0)
607 break;
608
1da177e4
LT
609 cpuid = smp_processor_id();
610 cpuphyid = get_sapicid();
611
612 if (ia64_sn_get_sapic_info(cpuphyid, &nasid, &subnode, &slice))
613 BUG();
614
615 for (i=0; i < MAX_NUMNODES; i++) {
616 if (nodepdaindr[i]) {
617 nodepdaindr[i]->phys_cpuid[cpuid].nasid = nasid;
618 nodepdaindr[i]->phys_cpuid[cpuid].slice = slice;
619 nodepdaindr[i]->phys_cpuid[cpuid].subnode = subnode;
620 }
621 }
622
623 cnode = nasid_to_cnodeid(nasid);
624
9b48b466
DN
625 sn_nodepda = nodepdaindr[cnode];
626
1da177e4
LT
627 pda->led_address =
628 (typeof(pda->led_address)) (LED0 + (slice << LED_CPU_SHIFT));
629 pda->led_state = LED_ALWAYS_SET;
630 pda->hb_count = HZ / 2;
631 pda->hb_state = 0;
632 pda->idle_flag = 0;
633
634 if (cpuid != 0) {
2e34f07f
DN
635 /* copy cpu 0's sn_cnodeid_to_nasid table to this cpu's */
636 memcpy(sn_cnodeid_to_nasid,
637 (&per_cpu(__sn_cnodeid_to_nasid, 0)),
638 sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
1da177e4
LT
639 }
640
641 /*
642 * Check for WARs.
643 * Only needs to be done once, on BSP.
2e34f07f
DN
644 * Has to be done after loop above, because it uses this cpu's
645 * sn_cnodeid_to_nasid table which was just initialized if this
646 * isn't cpu 0.
1da177e4
LT
647 * Has to be done before assignment below.
648 */
649 if (!wars_have_been_checked) {
650 sn_check_for_wars();
651 wars_have_been_checked = 1;
652 }
653 sn_hub_info->shub_1_1_found = shub_1_1_found;
654
655 /*
656 * Set up addresses of PIO/MEM write status registers.
657 */
658 {
659 u64 pio1[] = {SH1_PIO_WRITE_STATUS_0, 0, SH1_PIO_WRITE_STATUS_1, 0};
2fdbb590
JS
660 u64 pio2[] = {SH2_PIO_WRITE_STATUS_0, SH2_PIO_WRITE_STATUS_2,
661 SH2_PIO_WRITE_STATUS_1, SH2_PIO_WRITE_STATUS_3};
1da177e4
LT
662 u64 *pio;
663 pio = is_shub1() ? pio1 : pio2;
e08e6c52
BC
664 pda->pio_write_status_addr =
665 (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid, pio[slice]);
1da177e4
LT
666 pda->pio_write_status_val = is_shub1() ? SH_PIO_WRITE_STATUS_PENDING_WRITE_COUNT_MASK : 0;
667 }
668
669 /*
670 * WAR addresses for SHUB 1.x.
671 */
672 if (local_node_data->active_cpu_count++ == 0 && is_shub1()) {
673 int buddy_nasid;
674 buddy_nasid =
675 cnodeid_to_nasid(numa_node_id() ==
676 num_online_nodes() - 1 ? 0 : numa_node_id() + 1);
677 pda->pio_shub_war_cam_addr =
678 (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid,
679 SH1_PI_CAM_CONTROL);
680 }
681}
682
683/*
24ee0a6d 684 * Build tables for converting between NASIDs and cnodes.
1da177e4 685 */
24ee0a6d
JS
686static inline int __init board_needs_cnode(int type)
687{
688 return (type == KLTYPE_SNIA || type == KLTYPE_TIO);
689}
1da177e4 690
24ee0a6d 691void __init build_cnode_tables(void)
1da177e4 692{
24ee0a6d
JS
693 int nasid;
694 int node;
1da177e4
LT
695 lboard_t *brd;
696
24ee0a6d
JS
697 memset(physical_node_map, -1, sizeof(physical_node_map));
698 memset(sn_cnodeid_to_nasid, -1,
699 sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
1da177e4 700
24ee0a6d
JS
701 /*
702 * First populate the tables with C/M bricks. This ensures that
703 * cnode == node for all C & M bricks.
704 */
705 for_each_online_node(node) {
706 nasid = pxm_to_nasid(nid_to_pxm_map[node]);
707 sn_cnodeid_to_nasid[node] = nasid;
708 physical_node_map[nasid] = node;
1da177e4
LT
709 }
710
24ee0a6d
JS
711 /*
712 * num_cnodes is total number of C/M/TIO bricks. Because of the 256 node
713 * limit on the number of nodes, we can't use the generic node numbers
714 * for this. Note that num_cnodes is incremented below as TIOs or
715 * headless/memoryless nodes are discovered.
716 */
717 num_cnodes = num_online_nodes();
1da177e4 718
24ee0a6d
JS
719 /* fakeprom does not support klgraph */
720 if (IS_RUNNING_ON_FAKE_PROM())
721 return;
1da177e4 722
24ee0a6d
JS
723 /* Find TIOs & headless/memoryless nodes and add them to the tables */
724 for_each_online_node(node) {
725 kl_config_hdr_t *klgraph_header;
726 nasid = cnodeid_to_nasid(node);
2fcc3db0
JS
727 klgraph_header = ia64_sn_get_klconfig_addr(nasid);
728 if (klgraph_header == NULL)
24ee0a6d
JS
729 BUG();
730 brd = NODE_OFFSET_TO_LBOARD(nasid, klgraph_header->ch_board_info);
1da177e4 731 while (brd) {
24ee0a6d
JS
732 if (board_needs_cnode(brd->brd_type) && physical_node_map[brd->brd_nasid] < 0) {
733 sn_cnodeid_to_nasid[num_cnodes] = brd->brd_nasid;
734 physical_node_map[brd->brd_nasid] = num_cnodes++;
735 }
736 brd = find_lboard_next(brd);
1da177e4
LT
737 }
738 }
1da177e4
LT
739}
740
741int
742nasid_slice_to_cpuid(int nasid, int slice)
743{
744 long cpu;
71a5d027 745
2fcc3db0 746 for (cpu = 0; cpu < NR_CPUS; cpu++)
9b48b466
DN
747 if (cpuid_to_nasid(cpu) == nasid &&
748 cpuid_to_slice(cpu) == slice)
1da177e4
LT
749 return cpu;
750
751 return -1;
752}
a1cddb88
JS
753
754int sn_prom_feature_available(int id)
755{
756 if (id >= BITS_PER_LONG * MAX_PROM_FEATURE_SETS)
757 return 0;
758 return test_bit(id, sn_prom_features);
759}
760EXPORT_SYMBOL(sn_prom_feature_available);
761