Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 6 | * Copyright (C) 1999,2001-2005 Silicon Graphics, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Aaron J Young | c1298c5 | 2005-04-25 13:11:14 -0700 | [diff] [blame] | 32 | #include <linux/pm.h> |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 33 | #include <linux/efi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Mark Maule | a9f9de7 | 2005-04-26 08:01:00 -0700 | [diff] [blame] | 40 | #include <asm/vga.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Jack Steiner | a1cddb8 | 2005-08-31 08:05:00 -0700 | [diff] [blame] | 53 | #include <asm/sn/sn_feature_sets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include "xtalk/xwidgetdev.h" |
| 55 | #include "xtalk/hubdev.h" |
| 56 | #include <asm/sn/klconfig.h> |
| 57 | |
| 58 | |
| 59 | DEFINE_PER_CPU(struct pda_s, pda_percpu); |
| 60 | |
Jack Steiner | 9b17e7e | 2005-09-08 15:28:28 -0500 | [diff] [blame] | 61 | #define MAX_PHYS_MEMORY (1UL << IA64_MAX_PHYS_BITS) /* Max physical address supported */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | extern void bte_init_node(nodepda_t *, cnodeid_t); |
| 64 | |
| 65 | extern void sn_timer_init(void); |
| 66 | extern unsigned long last_time_offset; |
| 67 | extern void (*ia64_mark_idle) (int); |
| 68 | extern void snidle(int); |
| 69 | extern unsigned char acpi_kbd_controller_present; |
Tony Luck | d6e56a2 | 2006-02-07 15:25:57 -0800 | [diff] [blame^] | 70 | extern unsigned long long (*ia64_printk_clock)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | unsigned long sn_rtc_cycles_per_second; |
| 73 | EXPORT_SYMBOL(sn_rtc_cycles_per_second); |
| 74 | |
| 75 | DEFINE_PER_CPU(struct sn_hub_info_s, __sn_hub_info); |
| 76 | EXPORT_PER_CPU_SYMBOL(__sn_hub_info); |
| 77 | |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 78 | DEFINE_PER_CPU(short, __sn_cnodeid_to_nasid[MAX_NUMNODES]); |
| 79 | EXPORT_PER_CPU_SYMBOL(__sn_cnodeid_to_nasid); |
| 80 | |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 81 | DEFINE_PER_CPU(struct nodepda_s *, __sn_nodepda); |
| 82 | EXPORT_PER_CPU_SYMBOL(__sn_nodepda); |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | char sn_system_serial_number_string[128]; |
| 85 | EXPORT_SYMBOL(sn_system_serial_number_string); |
| 86 | u64 sn_partition_serial_number; |
| 87 | EXPORT_SYMBOL(sn_partition_serial_number); |
| 88 | u8 sn_partition_id; |
| 89 | EXPORT_SYMBOL(sn_partition_id); |
| 90 | u8 sn_system_size; |
| 91 | EXPORT_SYMBOL(sn_system_size); |
| 92 | u8 sn_sharing_domain_size; |
| 93 | EXPORT_SYMBOL(sn_sharing_domain_size); |
| 94 | u8 sn_coherency_id; |
| 95 | EXPORT_SYMBOL(sn_coherency_id); |
| 96 | u8 sn_region_size; |
| 97 | EXPORT_SYMBOL(sn_region_size); |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 98 | int sn_prom_type; /* 0=hardware, 1=medusa/realprom, 2=medusa/fakeprom */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 100 | short physical_node_map[MAX_NUMALINK_NODES]; |
Jack Steiner | a1cddb8 | 2005-08-31 08:05:00 -0700 | [diff] [blame] | 101 | static unsigned long sn_prom_features[MAX_PROM_FEATURE_SETS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | EXPORT_SYMBOL(physical_node_map); |
| 104 | |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 105 | int num_cnodes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | static void sn_init_pdas(char **); |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 108 | static void build_cnode_tables(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | static 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 | */ |
| 117 | struct 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 | /* |
| 129 | * This is here so we can use the CMOS detection in ide-probe.c to |
| 130 | * determine what drives are present. In theory, we don't need this |
| 131 | * as the auto-detection could be done via ide-probe.c:do_probe() but |
| 132 | * in practice that would be much slower, which is painful when |
| 133 | * running in the simulator. Note that passing zeroes in DRIVE_INFO |
| 134 | * is sufficient (the IDE driver will autodetect the drive geometry). |
| 135 | */ |
| 136 | #ifdef CONFIG_IA64_GENERIC |
| 137 | extern char drive_info[4 * 16]; |
| 138 | #else |
| 139 | char drive_info[4 * 16]; |
| 140 | #endif |
| 141 | |
| 142 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | * This routine can only be used during init, since |
| 144 | * smp_boot_data is an init data structure. |
| 145 | * We have to use smp_boot_data.cpu_phys_id to find |
| 146 | * the physical id of the processor because the normal |
| 147 | * cpu_physical_id() relies on data structures that |
| 148 | * may not be initialized yet. |
| 149 | */ |
| 150 | |
| 151 | static int __init pxm_to_nasid(int pxm) |
| 152 | { |
| 153 | int i; |
| 154 | int nid; |
| 155 | |
| 156 | nid = pxm_to_nid_map[pxm]; |
| 157 | for (i = 0; i < num_node_memblks; i++) { |
| 158 | if (node_memblk[i].nid == nid) { |
| 159 | return NASID_GET(node_memblk[i].start_paddr); |
| 160 | } |
| 161 | } |
| 162 | return -1; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * early_sn_setup - early setup routine for SN platforms |
| 167 | * |
| 168 | * Sets up an initial console to aid debugging. Intended primarily |
| 169 | * for bringup. See start_kernel() in init/main.c. |
| 170 | */ |
| 171 | |
| 172 | void __init early_sn_setup(void) |
| 173 | { |
| 174 | efi_system_table_t *efi_systab; |
| 175 | efi_config_table_t *config_tables; |
| 176 | struct ia64_sal_systab *sal_systab; |
| 177 | struct ia64_sal_desc_entry_point *ep; |
| 178 | char *p; |
| 179 | int i, j; |
| 180 | |
| 181 | /* |
| 182 | * Parse enough of the SAL tables to locate the SAL entry point. Since, console |
| 183 | * IO on SN2 is done via SAL calls, early_printk won't work without this. |
| 184 | * |
| 185 | * This code duplicates some of the ACPI table parsing that is in efi.c & sal.c. |
| 186 | * Any changes to those file may have to be made hereas well. |
| 187 | */ |
| 188 | efi_systab = (efi_system_table_t *) __va(ia64_boot_param->efi_systab); |
| 189 | config_tables = __va(efi_systab->tables); |
| 190 | for (i = 0; i < efi_systab->nr_tables; i++) { |
| 191 | if (efi_guidcmp(config_tables[i].guid, SAL_SYSTEM_TABLE_GUID) == |
| 192 | 0) { |
| 193 | sal_systab = __va(config_tables[i].table); |
| 194 | p = (char *)(sal_systab + 1); |
| 195 | for (j = 0; j < sal_systab->entry_count; j++) { |
| 196 | if (*p == SAL_DESC_ENTRY_POINT) { |
| 197 | ep = (struct ia64_sal_desc_entry_point |
| 198 | *)p; |
| 199 | ia64_sal_handler_init(__va |
| 200 | (ep->sal_proc), |
| 201 | __va(ep->gp)); |
| 202 | return; |
| 203 | } |
| 204 | p += SAL_DESC_SIZE(*p); |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | /* Uh-oh, SAL not available?? */ |
| 209 | printk(KERN_ERR "failed to find SAL entry point\n"); |
| 210 | } |
| 211 | |
| 212 | extern int platform_intr_list[]; |
Jes Sorensen | 2fcc3db | 2006-02-02 05:15:51 -0500 | [diff] [blame] | 213 | static int __initdata shub_1_1_found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | /* |
| 216 | * sn_check_for_wars |
| 217 | * |
| 218 | * Set flag for enabling shub specific wars |
| 219 | */ |
| 220 | |
| 221 | static inline int __init is_shub_1_1(int nasid) |
| 222 | { |
| 223 | unsigned long id; |
| 224 | int rev; |
| 225 | |
| 226 | if (is_shub2()) |
| 227 | return 0; |
| 228 | id = REMOTE_HUB_L(nasid, SH1_SHUB_ID); |
| 229 | rev = (id & SH1_SHUB_ID_REVISION_MASK) >> SH1_SHUB_ID_REVISION_SHFT; |
| 230 | return rev <= 2; |
| 231 | } |
| 232 | |
| 233 | static void __init sn_check_for_wars(void) |
| 234 | { |
| 235 | int cnode; |
| 236 | |
| 237 | if (is_shub2()) { |
| 238 | /* none yet */ |
| 239 | } else { |
| 240 | for_each_online_node(cnode) { |
| 241 | if (is_shub_1_1(cnodeid_to_nasid(cnode))) |
Dean Nelson | ff89bf3 | 2005-06-03 05:25:00 -0700 | [diff] [blame] | 242 | shub_1_1_found = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | } |
| 245 | } |
| 246 | |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 247 | /* |
| 248 | * Scan the EFI PCDP table (if it exists) for an acceptable VGA console |
| 249 | * output device. If one exists, pick it and set sn_legacy_{io,mem} to |
| 250 | * reflect the bus offsets needed to address it. |
| 251 | * |
| 252 | * Since pcdp support in SN is not supported in the 2.4 kernel (or at least |
| 253 | * the one lbs is based on) just declare the needed structs here. |
| 254 | * |
| 255 | * Reference spec http://www.dig64.org/specifications/DIG64_PCDPv20.pdf |
| 256 | * |
| 257 | * Returns 0 if no acceptable vga is found, !0 otherwise. |
| 258 | * |
| 259 | * Note: This stuff is duped here because Altix requires the PCDP to |
| 260 | * locate a usable VGA device due to lack of proper ACPI support. Structures |
| 261 | * could be used from drivers/firmware/pcdp.h, but it was decided that moving |
| 262 | * this file to a more public location just for Altix use was undesireable. |
| 263 | */ |
| 264 | |
| 265 | struct hcdp_uart_desc { |
| 266 | u8 pad[45]; |
| 267 | }; |
| 268 | |
| 269 | struct pcdp { |
| 270 | u8 signature[4]; /* should be 'HCDP' */ |
| 271 | u32 length; |
| 272 | u8 rev; /* should be >=3 for pcdp, <3 for hcdp */ |
| 273 | u8 sum; |
| 274 | u8 oem_id[6]; |
| 275 | u64 oem_tableid; |
| 276 | u32 oem_rev; |
| 277 | u32 creator_id; |
| 278 | u32 creator_rev; |
| 279 | u32 num_type0; |
| 280 | struct hcdp_uart_desc uart[0]; /* num_type0 of these */ |
| 281 | /* pcdp descriptors follow */ |
| 282 | } __attribute__((packed)); |
| 283 | |
| 284 | struct pcdp_device_desc { |
| 285 | u8 type; |
| 286 | u8 primary; |
| 287 | u16 length; |
| 288 | u16 index; |
| 289 | /* interconnect specific structure follows */ |
| 290 | /* device specific structure follows that */ |
| 291 | } __attribute__((packed)); |
| 292 | |
| 293 | struct pcdp_interface_pci { |
| 294 | u8 type; /* 1 == pci */ |
| 295 | u8 reserved; |
| 296 | u16 length; |
| 297 | u8 segment; |
| 298 | u8 bus; |
| 299 | u8 dev; |
| 300 | u8 fun; |
| 301 | u16 devid; |
| 302 | u16 vendid; |
| 303 | u32 acpi_interrupt; |
| 304 | u64 mmio_tra; |
| 305 | u64 ioport_tra; |
| 306 | u8 flags; |
| 307 | u8 translation; |
| 308 | } __attribute__((packed)); |
| 309 | |
| 310 | struct pcdp_vga_device { |
| 311 | u8 num_eas_desc; |
| 312 | /* ACPI Extended Address Space Desc follows */ |
| 313 | } __attribute__((packed)); |
| 314 | |
| 315 | /* from pcdp_device_desc.primary */ |
| 316 | #define PCDP_PRIMARY_CONSOLE 0x01 |
| 317 | |
| 318 | /* from pcdp_device_desc.type */ |
| 319 | #define PCDP_CONSOLE_INOUT 0x0 |
| 320 | #define PCDP_CONSOLE_DEBUG 0x1 |
| 321 | #define PCDP_CONSOLE_OUT 0x2 |
| 322 | #define PCDP_CONSOLE_IN 0x3 |
| 323 | #define PCDP_CONSOLE_TYPE_VGA 0x8 |
| 324 | |
| 325 | #define PCDP_CONSOLE_VGA (PCDP_CONSOLE_TYPE_VGA | PCDP_CONSOLE_OUT) |
| 326 | |
| 327 | /* from pcdp_interface_pci.type */ |
| 328 | #define PCDP_IF_PCI 1 |
| 329 | |
| 330 | /* from pcdp_interface_pci.translation */ |
| 331 | #define PCDP_PCI_TRANS_IOPORT 0x02 |
| 332 | #define PCDP_PCI_TRANS_MMIO 0x01 |
| 333 | |
| 334 | static void |
| 335 | sn_scan_pcdp(void) |
| 336 | { |
| 337 | u8 *bp; |
| 338 | struct pcdp *pcdp; |
| 339 | struct pcdp_device_desc device; |
| 340 | struct pcdp_interface_pci if_pci; |
| 341 | extern struct efi efi; |
| 342 | |
| 343 | pcdp = efi.hcdp; |
| 344 | if (! pcdp) |
| 345 | return; /* no hcdp/pcdp table */ |
| 346 | |
| 347 | if (pcdp->rev < 3) |
| 348 | return; /* only support PCDP (rev >= 3) */ |
| 349 | |
| 350 | for (bp = (u8 *)&pcdp->uart[pcdp->num_type0]; |
| 351 | bp < (u8 *)pcdp + pcdp->length; |
| 352 | bp += device.length) { |
| 353 | memcpy(&device, bp, sizeof(device)); |
| 354 | if (! (device.primary & PCDP_PRIMARY_CONSOLE)) |
| 355 | continue; /* not primary console */ |
| 356 | |
| 357 | if (device.type != PCDP_CONSOLE_VGA) |
| 358 | continue; /* not VGA descriptor */ |
| 359 | |
| 360 | memcpy(&if_pci, bp+sizeof(device), sizeof(if_pci)); |
| 361 | if (if_pci.type != PCDP_IF_PCI) |
| 362 | continue; /* not PCI interconnect */ |
| 363 | |
| 364 | if (if_pci.translation & PCDP_PCI_TRANS_IOPORT) |
| 365 | vga_console_iobase = |
| 366 | if_pci.ioport_tra | __IA64_UNCACHED_OFFSET; |
| 367 | |
| 368 | if (if_pci.translation & PCDP_PCI_TRANS_MMIO) |
| 369 | vga_console_membase = |
| 370 | if_pci.mmio_tra | __IA64_UNCACHED_OFFSET; |
| 371 | |
| 372 | break; /* once we find the primary, we're done */ |
| 373 | } |
| 374 | } |
| 375 | |
Tony Luck | d6e56a2 | 2006-02-07 15:25:57 -0800 | [diff] [blame^] | 376 | static unsigned long sn2_rtc_initial; |
| 377 | |
| 378 | static unsigned long long ia64_sn2_printk_clock(void) |
| 379 | { |
| 380 | unsigned long rtc_now = rtc_time(); |
| 381 | |
| 382 | return (rtc_now - sn2_rtc_initial) * |
| 383 | (1000000000 / sn_rtc_cycles_per_second); |
| 384 | } |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /** |
| 387 | * sn_setup - SN platform setup routine |
| 388 | * @cmdline_p: kernel command line |
| 389 | * |
| 390 | * Handles platform setup for SN machines. This includes determining |
| 391 | * the RTC frequency (via a SAL call), initializing secondary CPUs, and |
| 392 | * setting up per-node data areas. The console is also initialized here. |
| 393 | */ |
| 394 | void __init sn_setup(char **cmdline_p) |
| 395 | { |
| 396 | long status, ticks_per_sec, drift; |
Prarit Bhargava | 283c7f6 | 2005-07-06 15:29:13 -0700 | [diff] [blame] | 397 | u32 version = sn_sal_rev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | extern void sn_cpu_init(void); |
| 399 | |
Tony Luck | d6e56a2 | 2006-02-07 15:25:57 -0800 | [diff] [blame^] | 400 | sn2_rtc_initial = rtc_time(); |
Jack Steiner | a1cddb8 | 2005-08-31 08:05:00 -0700 | [diff] [blame] | 401 | ia64_sn_plat_set_error_handling_features(); // obsolete |
| 402 | ia64_sn_set_os_feature(OSF_MCA_SLV_TO_OS_INIT_SLV); |
| 403 | ia64_sn_set_os_feature(OSF_FEAT_LOG_SBES); |
| 404 | |
Russ Anderson | 6872ec5 | 2005-05-16 15:30:00 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE) |
Mark Maule | a9f9de7 | 2005-04-26 08:01:00 -0700 | [diff] [blame] | 407 | /* |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 408 | * Handle SN vga console. |
| 409 | * |
| 410 | * SN systems do not have enough ACPI table information |
| 411 | * being passed from prom to identify VGA adapters and the legacy |
| 412 | * addresses to access them. Until that is done, SN systems rely |
| 413 | * on the PCDP table to identify the primary VGA console if one |
| 414 | * exists. |
| 415 | * |
| 416 | * However, kernel PCDP support is optional, and even if it is built |
| 417 | * into the kernel, it will not be used if the boot cmdline contains |
| 418 | * console= directives. |
| 419 | * |
| 420 | * So, to work around this mess, we duplicate some of the PCDP code |
| 421 | * here so that the primary VGA console (as defined by PCDP) will |
| 422 | * work on SN systems even if a different console (e.g. serial) is |
| 423 | * selected on the boot line (or CONFIG_EFI_PCDP is off). |
Mark Maule | a9f9de7 | 2005-04-26 08:01:00 -0700 | [diff] [blame] | 424 | */ |
| 425 | |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 426 | if (! vga_console_membase) |
| 427 | sn_scan_pcdp(); |
| 428 | |
Mark Maule | a9f9de7 | 2005-04-26 08:01:00 -0700 | [diff] [blame] | 429 | if (vga_console_membase) { |
| 430 | /* usable vga ... make tty0 the preferred default console */ |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 431 | if (!strstr(*cmdline_p, "console=")) |
| 432 | add_preferred_console("tty", 0, NULL); |
Mark Maule | a9f9de7 | 2005-04-26 08:01:00 -0700 | [diff] [blame] | 433 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | printk(KERN_DEBUG "SGI: Disabling VGA console\n"); |
Mark Maule | ff51224 | 2005-11-11 11:52:43 -0600 | [diff] [blame] | 435 | if (!strstr(*cmdline_p, "console=")) |
| 436 | add_preferred_console("ttySG", 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | #ifdef CONFIG_DUMMY_CONSOLE |
| 438 | conswitchp = &dummy_con; |
| 439 | #else |
| 440 | conswitchp = NULL; |
| 441 | #endif /* CONFIG_DUMMY_CONSOLE */ |
| 442 | } |
| 443 | #endif /* def(CONFIG_VT) && def(CONFIG_VGA_CONSOLE) */ |
| 444 | |
| 445 | MAX_DMA_ADDRESS = PAGE_OFFSET + MAX_PHYS_MEMORY; |
| 446 | |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 447 | /* |
| 448 | * Build the tables for managing cnodes. |
| 449 | */ |
| 450 | build_cnode_tables(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | status = |
| 453 | ia64_sal_freq_base(SAL_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec, |
| 454 | &drift); |
| 455 | if (status != 0 || ticks_per_sec < 100000) { |
| 456 | printk(KERN_WARNING |
| 457 | "unable to determine platform RTC clock frequency, guessing.\n"); |
| 458 | /* PROM gives wrong value for clock freq. so guess */ |
| 459 | sn_rtc_cycles_per_second = 1000000000000UL / 30000UL; |
| 460 | } else |
| 461 | sn_rtc_cycles_per_second = ticks_per_sec; |
| 462 | |
| 463 | platform_intr_list[ACPI_INTERRUPT_CPEI] = IA64_CPE_VECTOR; |
| 464 | |
Tony Luck | d6e56a2 | 2006-02-07 15:25:57 -0800 | [diff] [blame^] | 465 | ia64_printk_clock = ia64_sn2_printk_clock; |
| 466 | |
| 467 | /* |
| 468 | * Old PROMs do not provide an ACPI FADT. Disable legacy keyboard |
| 469 | * support here so we don't have to listen to failed keyboard probe |
| 470 | * messages. |
| 471 | */ |
| 472 | if (version <= 0x0209 && acpi_kbd_controller_present) { |
| 473 | printk(KERN_INFO "Disabling legacy keyboard support as prom " |
| 474 | "is too old and doesn't provide FADT\n"); |
| 475 | acpi_kbd_controller_present = 0; |
| 476 | } |
| 477 | |
| 478 | printk("SGI SAL version %x.%02x\n", version >> 8, version & 0x00FF); |
| 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | /* |
| 481 | * we set the default root device to /dev/hda |
| 482 | * to make simulation easy |
| 483 | */ |
| 484 | ROOT_DEV = Root_HDA1; |
| 485 | |
| 486 | /* |
| 487 | * Create the PDAs and NODEPDAs for all the cpus. |
| 488 | */ |
| 489 | sn_init_pdas(cmdline_p); |
| 490 | |
| 491 | ia64_mark_idle = &snidle; |
| 492 | |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 493 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | * For the bootcpu, we do this here. All other cpus will make the |
| 495 | * call as part of cpu_init in slave cpu initialization. |
| 496 | */ |
| 497 | sn_cpu_init(); |
| 498 | |
| 499 | #ifdef CONFIG_SMP |
| 500 | init_smp_config(); |
| 501 | #endif |
| 502 | screen_info = sn_screen_info; |
| 503 | |
| 504 | sn_timer_init(); |
Aaron J Young | c1298c5 | 2005-04-25 13:11:14 -0700 | [diff] [blame] | 505 | |
| 506 | /* |
| 507 | * set pm_power_off to a SAL call to allow |
| 508 | * sn machines to power off. The SAL call can be replaced |
| 509 | * by an ACPI interface call when ACPI is fully implemented |
| 510 | * for sn. |
| 511 | */ |
| 512 | pm_power_off = ia64_sn_power_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | /** |
| 516 | * sn_init_pdas - setup node data areas |
| 517 | * |
| 518 | * One time setup for Node Data Area. Called by sn_setup(). |
| 519 | */ |
| 520 | static void __init sn_init_pdas(char **cmdline_p) |
| 521 | { |
| 522 | cnodeid_t cnode; |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* |
| 525 | * Allocate & initalize the nodepda for each node. |
| 526 | */ |
| 527 | for_each_online_node(cnode) { |
| 528 | nodepdaindr[cnode] = |
| 529 | alloc_bootmem_node(NODE_DATA(cnode), sizeof(nodepda_t)); |
| 530 | memset(nodepdaindr[cnode], 0, sizeof(nodepda_t)); |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 531 | memset(nodepdaindr[cnode]->phys_cpuid, -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | sizeof(nodepdaindr[cnode]->phys_cpuid)); |
Jack Steiner | 470ceb0 | 2005-08-11 10:28:00 -0700 | [diff] [blame] | 533 | spin_lock_init(&nodepdaindr[cnode]->ptc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | /* |
| 537 | * Allocate & initialize nodepda for TIOs. For now, put them on node 0. |
| 538 | */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 539 | for (cnode = num_online_nodes(); cnode < num_cnodes; cnode++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | nodepdaindr[cnode] = |
| 541 | alloc_bootmem_node(NODE_DATA(0), sizeof(nodepda_t)); |
| 542 | memset(nodepdaindr[cnode], 0, sizeof(nodepda_t)); |
| 543 | } |
| 544 | |
| 545 | /* |
| 546 | * Now copy the array of nodepda pointers to each nodepda. |
| 547 | */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 548 | for (cnode = 0; cnode < num_cnodes; cnode++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | memcpy(nodepdaindr[cnode]->pernode_pdaindr, nodepdaindr, |
| 550 | sizeof(nodepdaindr)); |
| 551 | |
| 552 | /* |
| 553 | * Set up IO related platform-dependent nodepda fields. |
| 554 | * The following routine actually sets up the hubinfo struct |
| 555 | * in nodepda. |
| 556 | */ |
| 557 | for_each_online_node(cnode) { |
| 558 | bte_init_node(nodepdaindr[cnode], cnode); |
| 559 | } |
| 560 | |
| 561 | /* |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 562 | * Initialize the per node hubdev. This includes IO Nodes and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | * headless/memless nodes. |
| 564 | */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 565 | for (cnode = 0; cnode < num_cnodes; cnode++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | hubdev_init_node(nodepdaindr[cnode], cnode); |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | /** |
| 571 | * sn_cpu_init - initialize per-cpu data areas |
| 572 | * @cpuid: cpuid of the caller |
| 573 | * |
| 574 | * Called during cpu initialization on each cpu as it starts. |
| 575 | * Currently, initializes the per-cpu data area for SNIA. |
| 576 | * Also sets up a few fields in the nodepda. Also known as |
| 577 | * platform_cpu_init() by the ia64 machvec code. |
| 578 | */ |
| 579 | void __init sn_cpu_init(void) |
| 580 | { |
| 581 | int cpuid; |
| 582 | int cpuphyid; |
| 583 | int nasid; |
| 584 | int subnode; |
| 585 | int slice; |
| 586 | int cnode; |
| 587 | int i; |
| 588 | static int wars_have_been_checked; |
| 589 | |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 590 | if (smp_processor_id() == 0 && IS_MEDUSA()) { |
| 591 | if (ia64_sn_is_fake_prom()) |
| 592 | sn_prom_type = 2; |
| 593 | else |
| 594 | sn_prom_type = 1; |
Jes Sorensen | 2fcc3db | 2006-02-02 05:15:51 -0500 | [diff] [blame] | 595 | printk(KERN_INFO "Running on medusa with %s PROM\n", |
| 596 | (sn_prom_type == 1) ? "real" : "fake"); |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | memset(pda, 0, sizeof(pda)); |
Jes Sorensen | 2fcc3db | 2006-02-02 05:15:51 -0500 | [diff] [blame] | 600 | if (ia64_sn_get_sn_info(0, &sn_hub_info->shub2, |
| 601 | &sn_hub_info->nasid_bitmask, |
| 602 | &sn_hub_info->nasid_shift, |
| 603 | &sn_system_size, &sn_sharing_domain_size, |
| 604 | &sn_partition_id, &sn_coherency_id, |
| 605 | &sn_region_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | BUG(); |
| 607 | sn_hub_info->as_shift = sn_hub_info->nasid_shift - 2; |
| 608 | |
| 609 | /* |
| 610 | * The boot cpu makes this call again after platform initialization is |
| 611 | * complete. |
| 612 | */ |
| 613 | if (nodepdaindr[0] == NULL) |
| 614 | return; |
| 615 | |
Jack Steiner | a1cddb8 | 2005-08-31 08:05:00 -0700 | [diff] [blame] | 616 | for (i = 0; i < MAX_PROM_FEATURE_SETS; i++) |
| 617 | if (ia64_sn_get_prom_feature_set(i, &sn_prom_features[i]) != 0) |
| 618 | break; |
| 619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | cpuid = smp_processor_id(); |
| 621 | cpuphyid = get_sapicid(); |
| 622 | |
| 623 | if (ia64_sn_get_sapic_info(cpuphyid, &nasid, &subnode, &slice)) |
| 624 | BUG(); |
| 625 | |
| 626 | for (i=0; i < MAX_NUMNODES; i++) { |
| 627 | if (nodepdaindr[i]) { |
| 628 | nodepdaindr[i]->phys_cpuid[cpuid].nasid = nasid; |
| 629 | nodepdaindr[i]->phys_cpuid[cpuid].slice = slice; |
| 630 | nodepdaindr[i]->phys_cpuid[cpuid].subnode = subnode; |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | cnode = nasid_to_cnodeid(nasid); |
| 635 | |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 636 | sn_nodepda = nodepdaindr[cnode]; |
| 637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | pda->led_address = |
| 639 | (typeof(pda->led_address)) (LED0 + (slice << LED_CPU_SHIFT)); |
| 640 | pda->led_state = LED_ALWAYS_SET; |
| 641 | pda->hb_count = HZ / 2; |
| 642 | pda->hb_state = 0; |
| 643 | pda->idle_flag = 0; |
| 644 | |
| 645 | if (cpuid != 0) { |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 646 | /* copy cpu 0's sn_cnodeid_to_nasid table to this cpu's */ |
| 647 | memcpy(sn_cnodeid_to_nasid, |
| 648 | (&per_cpu(__sn_cnodeid_to_nasid, 0)), |
| 649 | sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /* |
| 653 | * Check for WARs. |
| 654 | * Only needs to be done once, on BSP. |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 655 | * Has to be done after loop above, because it uses this cpu's |
| 656 | * sn_cnodeid_to_nasid table which was just initialized if this |
| 657 | * isn't cpu 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | * Has to be done before assignment below. |
| 659 | */ |
| 660 | if (!wars_have_been_checked) { |
| 661 | sn_check_for_wars(); |
| 662 | wars_have_been_checked = 1; |
| 663 | } |
| 664 | sn_hub_info->shub_1_1_found = shub_1_1_found; |
| 665 | |
| 666 | /* |
| 667 | * Set up addresses of PIO/MEM write status registers. |
| 668 | */ |
| 669 | { |
| 670 | u64 pio1[] = {SH1_PIO_WRITE_STATUS_0, 0, SH1_PIO_WRITE_STATUS_1, 0}; |
Jack Steiner | 2fdbb59 | 2005-08-11 10:26:00 -0700 | [diff] [blame] | 671 | u64 pio2[] = {SH2_PIO_WRITE_STATUS_0, SH2_PIO_WRITE_STATUS_2, |
| 672 | SH2_PIO_WRITE_STATUS_1, SH2_PIO_WRITE_STATUS_3}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | u64 *pio; |
| 674 | pio = is_shub1() ? pio1 : pio2; |
| 675 | pda->pio_write_status_addr = (volatile unsigned long *) LOCAL_MMR_ADDR(pio[slice]); |
| 676 | pda->pio_write_status_val = is_shub1() ? SH_PIO_WRITE_STATUS_PENDING_WRITE_COUNT_MASK : 0; |
| 677 | } |
| 678 | |
| 679 | /* |
| 680 | * WAR addresses for SHUB 1.x. |
| 681 | */ |
| 682 | if (local_node_data->active_cpu_count++ == 0 && is_shub1()) { |
| 683 | int buddy_nasid; |
| 684 | buddy_nasid = |
| 685 | cnodeid_to_nasid(numa_node_id() == |
| 686 | num_online_nodes() - 1 ? 0 : numa_node_id() + 1); |
| 687 | pda->pio_shub_war_cam_addr = |
| 688 | (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid, |
| 689 | SH1_PI_CAM_CONTROL); |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | /* |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 694 | * Build tables for converting between NASIDs and cnodes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 696 | static inline int __init board_needs_cnode(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 698 | return (type == KLTYPE_SNIA || type == KLTYPE_TIO); |
| 699 | } |
| 700 | |
| 701 | void __init build_cnode_tables(void) |
| 702 | { |
| 703 | int nasid; |
| 704 | int node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | lboard_t *brd; |
| 706 | |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 707 | memset(physical_node_map, -1, sizeof(physical_node_map)); |
| 708 | memset(sn_cnodeid_to_nasid, -1, |
| 709 | sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid))); |
| 710 | |
| 711 | /* |
| 712 | * First populate the tables with C/M bricks. This ensures that |
| 713 | * cnode == node for all C & M bricks. |
| 714 | */ |
| 715 | for_each_online_node(node) { |
| 716 | nasid = pxm_to_nasid(nid_to_pxm_map[node]); |
| 717 | sn_cnodeid_to_nasid[node] = nasid; |
| 718 | physical_node_map[nasid] = node; |
| 719 | } |
| 720 | |
| 721 | /* |
| 722 | * num_cnodes is total number of C/M/TIO bricks. Because of the 256 node |
| 723 | * limit on the number of nodes, we can't use the generic node numbers |
| 724 | * for this. Note that num_cnodes is incremented below as TIOs or |
| 725 | * headless/memoryless nodes are discovered. |
| 726 | */ |
| 727 | num_cnodes = num_online_nodes(); |
| 728 | |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 729 | /* fakeprom does not support klgraph */ |
| 730 | if (IS_RUNNING_ON_FAKE_PROM()) |
| 731 | return; |
| 732 | |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 733 | /* Find TIOs & headless/memoryless nodes and add them to the tables */ |
| 734 | for_each_online_node(node) { |
| 735 | kl_config_hdr_t *klgraph_header; |
| 736 | nasid = cnodeid_to_nasid(node); |
Jes Sorensen | 2fcc3db | 2006-02-02 05:15:51 -0500 | [diff] [blame] | 737 | klgraph_header = ia64_sn_get_klconfig_addr(nasid); |
| 738 | if (klgraph_header == NULL) |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 739 | BUG(); |
| 740 | brd = NODE_OFFSET_TO_LBOARD(nasid, klgraph_header->ch_board_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | while (brd) { |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 742 | if (board_needs_cnode(brd->brd_type) && physical_node_map[brd->brd_nasid] < 0) { |
| 743 | sn_cnodeid_to_nasid[num_cnodes] = brd->brd_nasid; |
| 744 | physical_node_map[brd->brd_nasid] = num_cnodes++; |
| 745 | } |
| 746 | brd = find_lboard_next(brd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | } |
| 748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | int |
| 752 | nasid_slice_to_cpuid(int nasid, int slice) |
| 753 | { |
| 754 | long cpu; |
Jack Steiner | 71a5d02 | 2005-05-10 08:01:00 -0700 | [diff] [blame] | 755 | |
Jes Sorensen | 2fcc3db | 2006-02-02 05:15:51 -0500 | [diff] [blame] | 756 | for (cpu = 0; cpu < NR_CPUS; cpu++) |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 757 | if (cpuid_to_nasid(cpu) == nasid && |
| 758 | cpuid_to_slice(cpu) == slice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | return cpu; |
| 760 | |
| 761 | return -1; |
| 762 | } |
Jack Steiner | a1cddb8 | 2005-08-31 08:05:00 -0700 | [diff] [blame] | 763 | |
| 764 | int sn_prom_feature_available(int id) |
| 765 | { |
| 766 | if (id >= BITS_PER_LONG * MAX_PROM_FEATURE_SETS) |
| 767 | return 0; |
| 768 | return test_bit(id, sn_prom_features); |
| 769 | } |
| 770 | EXPORT_SYMBOL(sn_prom_feature_available); |
| 771 | |