Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Common boot and setup code. |
| 4 | * |
| 5 | * Copyright (C) 2001 PPC64 Team, IBM Corp |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #undef DEBUG |
| 14 | |
| 15 | #include <linux/config.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/string.h> |
| 18 | #include <linux/sched.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/reboot.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/initrd.h> |
| 24 | #include <linux/ide.h> |
| 25 | #include <linux/seq_file.h> |
| 26 | #include <linux/ioport.h> |
| 27 | #include <linux/console.h> |
| 28 | #include <linux/version.h> |
| 29 | #include <linux/tty.h> |
| 30 | #include <linux/root_dev.h> |
| 31 | #include <linux/notifier.h> |
| 32 | #include <linux/cpu.h> |
| 33 | #include <linux/unistd.h> |
| 34 | #include <linux/serial.h> |
| 35 | #include <linux/serial_8250.h> |
| 36 | #include <asm/io.h> |
| 37 | #include <asm/prom.h> |
| 38 | #include <asm/processor.h> |
| 39 | #include <asm/pgtable.h> |
| 40 | #include <asm/bootinfo.h> |
| 41 | #include <asm/smp.h> |
| 42 | #include <asm/elf.h> |
| 43 | #include <asm/machdep.h> |
| 44 | #include <asm/iSeries/LparData.h> |
| 45 | #include <asm/paca.h> |
| 46 | #include <asm/ppcdebug.h> |
| 47 | #include <asm/time.h> |
| 48 | #include <asm/cputable.h> |
| 49 | #include <asm/sections.h> |
| 50 | #include <asm/btext.h> |
| 51 | #include <asm/nvram.h> |
| 52 | #include <asm/setup.h> |
| 53 | #include <asm/system.h> |
| 54 | #include <asm/rtas.h> |
| 55 | #include <asm/iommu.h> |
| 56 | #include <asm/serial.h> |
| 57 | #include <asm/cache.h> |
| 58 | #include <asm/page.h> |
| 59 | #include <asm/mmu.h> |
| 60 | |
| 61 | #ifdef DEBUG |
| 62 | #define DBG(fmt...) udbg_printf(fmt) |
| 63 | #else |
| 64 | #define DBG(fmt...) |
| 65 | #endif |
| 66 | |
| 67 | /* |
| 68 | * Here are some early debugging facilities. You can enable one |
| 69 | * but your kernel will not boot on anything else if you do so |
| 70 | */ |
| 71 | |
| 72 | /* This one is for use on LPAR machines that support an HVC console |
| 73 | * on vterm 0 |
| 74 | */ |
| 75 | extern void udbg_init_debug_lpar(void); |
| 76 | /* This one is for use on Apple G5 machines |
| 77 | */ |
| 78 | extern void udbg_init_pmac_realmode(void); |
| 79 | /* That's RTAS panel debug */ |
| 80 | extern void call_rtas_display_status_delay(unsigned char c); |
| 81 | /* Here's maple real mode debug */ |
| 82 | extern void udbg_init_maple_realmode(void); |
| 83 | |
| 84 | #define EARLY_DEBUG_INIT() do {} while(0) |
| 85 | |
| 86 | #if 0 |
| 87 | #define EARLY_DEBUG_INIT() udbg_init_debug_lpar() |
| 88 | #define EARLY_DEBUG_INIT() udbg_init_maple_realmode() |
| 89 | #define EARLY_DEBUG_INIT() udbg_init_pmac_realmode() |
| 90 | #define EARLY_DEBUG_INIT() \ |
| 91 | do { ppc_md.udbg_putc = call_rtas_display_status_delay; } while(0) |
| 92 | #endif |
| 93 | |
| 94 | /* extern void *stab; */ |
| 95 | extern unsigned long klimit; |
| 96 | |
| 97 | extern void mm_init_ppc64(void); |
| 98 | extern int idle_setup(void); |
| 99 | extern void stab_initialize(unsigned long stab); |
| 100 | extern void htab_initialize(void); |
| 101 | extern void early_init_devtree(void *flat_dt); |
| 102 | extern void unflatten_device_tree(void); |
| 103 | |
| 104 | extern void smp_release_cpus(void); |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | int have_of = 1; |
| 107 | int boot_cpuid = 0; |
| 108 | int boot_cpuid_phys = 0; |
| 109 | dev_t boot_dev; |
| 110 | u64 ppc64_pft_size; |
| 111 | u64 ppc64_debug_switch; |
| 112 | |
| 113 | struct ppc64_caches ppc64_caches; |
| 114 | EXPORT_SYMBOL_GPL(ppc64_caches); |
| 115 | |
| 116 | /* |
| 117 | * These are used in binfmt_elf.c to put aux entries on the stack |
| 118 | * for each elf executable being started. |
| 119 | */ |
| 120 | int dcache_bsize; |
| 121 | int icache_bsize; |
| 122 | int ucache_bsize; |
| 123 | |
| 124 | /* The main machine-dep calls structure |
| 125 | */ |
| 126 | struct machdep_calls ppc_md; |
| 127 | EXPORT_SYMBOL(ppc_md); |
| 128 | |
| 129 | #ifdef CONFIG_MAGIC_SYSRQ |
| 130 | unsigned long SYSRQ_KEY; |
| 131 | #endif /* CONFIG_MAGIC_SYSRQ */ |
| 132 | |
| 133 | |
| 134 | static int ppc64_panic_event(struct notifier_block *, unsigned long, void *); |
| 135 | static struct notifier_block ppc64_panic_block = { |
| 136 | .notifier_call = ppc64_panic_event, |
| 137 | .priority = INT_MIN /* may not return; must be done last */ |
| 138 | }; |
| 139 | |
| 140 | /* |
| 141 | * Perhaps we can put the pmac screen_info[] here |
| 142 | * on pmac as well so we don't need the ifdef's. |
| 143 | * Until we get multiple-console support in here |
| 144 | * that is. -- Cort |
| 145 | * Maybe tie it to serial consoles, since this is really what |
| 146 | * these processors use on existing boards. -- Dan |
| 147 | */ |
| 148 | struct screen_info screen_info = { |
| 149 | .orig_x = 0, |
| 150 | .orig_y = 25, |
| 151 | .orig_video_cols = 80, |
| 152 | .orig_video_lines = 25, |
| 153 | .orig_video_isVGA = 1, |
| 154 | .orig_video_points = 16 |
| 155 | }; |
| 156 | |
| 157 | /* |
| 158 | * Initialize the PPCDBG state. Called before relocation has been enabled. |
| 159 | */ |
| 160 | void __init ppcdbg_initialize(void) |
| 161 | { |
| 162 | ppc64_debug_switch = PPC_DEBUG_DEFAULT; /* | PPCDBG_BUSWALK | */ |
| 163 | /* PPCDBG_PHBINIT | PPCDBG_MM | PPCDBG_MMINIT | PPCDBG_TCEINIT | PPCDBG_TCE */; |
| 164 | } |
| 165 | |
| 166 | /* |
| 167 | * Early boot console based on udbg |
| 168 | */ |
| 169 | static struct console udbg_console = { |
| 170 | .name = "udbg", |
| 171 | .write = udbg_console_write, |
| 172 | .flags = CON_PRINTBUFFER, |
| 173 | .index = -1, |
| 174 | }; |
| 175 | static int early_console_initialized; |
| 176 | |
| 177 | void __init disable_early_printk(void) |
| 178 | { |
| 179 | if (!early_console_initialized) |
| 180 | return; |
| 181 | unregister_console(&udbg_console); |
| 182 | early_console_initialized = 0; |
| 183 | } |
| 184 | |
| 185 | #if defined(CONFIG_PPC_MULTIPLATFORM) && defined(CONFIG_SMP) |
| 186 | |
| 187 | static int smt_enabled_cmdline; |
| 188 | |
| 189 | /* Look for ibm,smt-enabled OF option */ |
| 190 | static void check_smt_enabled(void) |
| 191 | { |
| 192 | struct device_node *dn; |
| 193 | char *smt_option; |
| 194 | |
| 195 | /* Allow the command line to overrule the OF option */ |
| 196 | if (smt_enabled_cmdline) |
| 197 | return; |
| 198 | |
| 199 | dn = of_find_node_by_path("/options"); |
| 200 | |
| 201 | if (dn) { |
| 202 | smt_option = (char *)get_property(dn, "ibm,smt-enabled", NULL); |
| 203 | |
| 204 | if (smt_option) { |
| 205 | if (!strcmp(smt_option, "on")) |
| 206 | smt_enabled_at_boot = 1; |
| 207 | else if (!strcmp(smt_option, "off")) |
| 208 | smt_enabled_at_boot = 0; |
| 209 | } |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | /* Look for smt-enabled= cmdline option */ |
| 214 | static int __init early_smt_enabled(char *p) |
| 215 | { |
| 216 | smt_enabled_cmdline = 1; |
| 217 | |
| 218 | if (!p) |
| 219 | return 0; |
| 220 | |
| 221 | if (!strcmp(p, "on") || !strcmp(p, "1")) |
| 222 | smt_enabled_at_boot = 1; |
| 223 | else if (!strcmp(p, "off") || !strcmp(p, "0")) |
| 224 | smt_enabled_at_boot = 0; |
| 225 | |
| 226 | return 0; |
| 227 | } |
| 228 | early_param("smt-enabled", early_smt_enabled); |
| 229 | |
| 230 | /** |
| 231 | * setup_cpu_maps - initialize the following cpu maps: |
| 232 | * cpu_possible_map |
| 233 | * cpu_present_map |
| 234 | * cpu_sibling_map |
| 235 | * |
| 236 | * Having the possible map set up early allows us to restrict allocations |
| 237 | * of things like irqstacks to num_possible_cpus() rather than NR_CPUS. |
| 238 | * |
| 239 | * We do not initialize the online map here; cpus set their own bits in |
| 240 | * cpu_online_map as they come up. |
| 241 | * |
| 242 | * This function is valid only for Open Firmware systems. finish_device_tree |
| 243 | * must be called before using this. |
| 244 | * |
| 245 | * While we're here, we may as well set the "physical" cpu ids in the paca. |
| 246 | */ |
| 247 | static void __init setup_cpu_maps(void) |
| 248 | { |
| 249 | struct device_node *dn = NULL; |
| 250 | int cpu = 0; |
| 251 | int swap_cpuid = 0; |
| 252 | |
| 253 | check_smt_enabled(); |
| 254 | |
| 255 | while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < NR_CPUS) { |
| 256 | u32 *intserv; |
| 257 | int j, len = sizeof(u32), nthreads; |
| 258 | |
| 259 | intserv = (u32 *)get_property(dn, "ibm,ppc-interrupt-server#s", |
| 260 | &len); |
| 261 | if (!intserv) |
| 262 | intserv = (u32 *)get_property(dn, "reg", NULL); |
| 263 | |
| 264 | nthreads = len / sizeof(u32); |
| 265 | |
| 266 | for (j = 0; j < nthreads && cpu < NR_CPUS; j++) { |
| 267 | cpu_set(cpu, cpu_present_map); |
| 268 | set_hard_smp_processor_id(cpu, intserv[j]); |
| 269 | |
| 270 | if (intserv[j] == boot_cpuid_phys) |
| 271 | swap_cpuid = cpu; |
| 272 | cpu_set(cpu, cpu_possible_map); |
| 273 | cpu++; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | /* Swap CPU id 0 with boot_cpuid_phys, so we can always assume that |
| 278 | * boot cpu is logical 0. |
| 279 | */ |
| 280 | if (boot_cpuid_phys != get_hard_smp_processor_id(0)) { |
| 281 | u32 tmp; |
| 282 | tmp = get_hard_smp_processor_id(0); |
| 283 | set_hard_smp_processor_id(0, boot_cpuid_phys); |
| 284 | set_hard_smp_processor_id(swap_cpuid, tmp); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * On pSeries LPAR, we need to know how many cpus |
| 289 | * could possibly be added to this partition. |
| 290 | */ |
| 291 | if (systemcfg->platform == PLATFORM_PSERIES_LPAR && |
| 292 | (dn = of_find_node_by_path("/rtas"))) { |
| 293 | int num_addr_cell, num_size_cell, maxcpus; |
| 294 | unsigned int *ireg; |
| 295 | |
| 296 | num_addr_cell = prom_n_addr_cells(dn); |
| 297 | num_size_cell = prom_n_size_cells(dn); |
| 298 | |
| 299 | ireg = (unsigned int *) |
| 300 | get_property(dn, "ibm,lrdr-capacity", NULL); |
| 301 | |
| 302 | if (!ireg) |
| 303 | goto out; |
| 304 | |
| 305 | maxcpus = ireg[num_addr_cell + num_size_cell]; |
| 306 | |
| 307 | /* Double maxcpus for processors which have SMT capability */ |
| 308 | if (cpu_has_feature(CPU_FTR_SMT)) |
| 309 | maxcpus *= 2; |
| 310 | |
| 311 | if (maxcpus > NR_CPUS) { |
| 312 | printk(KERN_WARNING |
| 313 | "Partition configured for %d cpus, " |
| 314 | "operating system maximum is %d.\n", |
| 315 | maxcpus, NR_CPUS); |
| 316 | maxcpus = NR_CPUS; |
| 317 | } else |
| 318 | printk(KERN_INFO "Partition configured for %d cpus.\n", |
| 319 | maxcpus); |
| 320 | |
| 321 | for (cpu = 0; cpu < maxcpus; cpu++) |
| 322 | cpu_set(cpu, cpu_possible_map); |
| 323 | out: |
| 324 | of_node_put(dn); |
| 325 | } |
| 326 | |
| 327 | /* |
| 328 | * Do the sibling map; assume only two threads per processor. |
| 329 | */ |
| 330 | for_each_cpu(cpu) { |
| 331 | cpu_set(cpu, cpu_sibling_map[cpu]); |
| 332 | if (cpu_has_feature(CPU_FTR_SMT)) |
| 333 | cpu_set(cpu ^ 0x1, cpu_sibling_map[cpu]); |
| 334 | } |
| 335 | |
| 336 | systemcfg->processorCount = num_present_cpus(); |
| 337 | } |
| 338 | #endif /* defined(CONFIG_PPC_MULTIPLATFORM) && defined(CONFIG_SMP) */ |
| 339 | |
| 340 | |
| 341 | #ifdef CONFIG_PPC_MULTIPLATFORM |
| 342 | |
| 343 | extern struct machdep_calls pSeries_md; |
| 344 | extern struct machdep_calls pmac_md; |
| 345 | extern struct machdep_calls maple_md; |
| 346 | |
| 347 | /* Ultimately, stuff them in an elf section like initcalls... */ |
| 348 | static struct machdep_calls __initdata *machines[] = { |
| 349 | #ifdef CONFIG_PPC_PSERIES |
| 350 | &pSeries_md, |
| 351 | #endif /* CONFIG_PPC_PSERIES */ |
| 352 | #ifdef CONFIG_PPC_PMAC |
| 353 | &pmac_md, |
| 354 | #endif /* CONFIG_PPC_PMAC */ |
| 355 | #ifdef CONFIG_PPC_MAPLE |
| 356 | &maple_md, |
| 357 | #endif /* CONFIG_PPC_MAPLE */ |
| 358 | NULL |
| 359 | }; |
| 360 | |
| 361 | /* |
| 362 | * Early initialization entry point. This is called by head.S |
| 363 | * with MMU translation disabled. We rely on the "feature" of |
| 364 | * the CPU that ignores the top 2 bits of the address in real |
| 365 | * mode so we can access kernel globals normally provided we |
| 366 | * only toy with things in the RMO region. From here, we do |
| 367 | * some early parsing of the device-tree to setup out LMB |
| 368 | * data structures, and allocate & initialize the hash table |
| 369 | * and segment tables so we can start running with translation |
| 370 | * enabled. |
| 371 | * |
| 372 | * It is this function which will call the probe() callback of |
| 373 | * the various platform types and copy the matching one to the |
| 374 | * global ppc_md structure. Your platform can eventually do |
| 375 | * some very early initializations from the probe() routine, but |
| 376 | * this is not recommended, be very careful as, for example, the |
| 377 | * device-tree is not accessible via normal means at this point. |
| 378 | */ |
| 379 | |
| 380 | void __init early_setup(unsigned long dt_ptr) |
| 381 | { |
| 382 | struct paca_struct *lpaca = get_paca(); |
| 383 | static struct machdep_calls **mach; |
| 384 | |
| 385 | /* |
| 386 | * Enable early debugging if any specified (see top of |
| 387 | * this file) |
| 388 | */ |
| 389 | EARLY_DEBUG_INIT(); |
| 390 | |
| 391 | DBG(" -> early_setup()\n"); |
| 392 | |
| 393 | /* |
| 394 | * Fill the default DBG level (do we want to keep |
| 395 | * that old mecanism around forever ?) |
| 396 | */ |
| 397 | ppcdbg_initialize(); |
| 398 | |
| 399 | /* |
| 400 | * Do early initializations using the flattened device |
| 401 | * tree, like retreiving the physical memory map or |
| 402 | * calculating/retreiving the hash table size |
| 403 | */ |
| 404 | early_init_devtree(__va(dt_ptr)); |
| 405 | |
| 406 | /* |
| 407 | * Iterate all ppc_md structures until we find the proper |
| 408 | * one for the current machine type |
| 409 | */ |
| 410 | DBG("Probing machine type for platform %x...\n", |
| 411 | systemcfg->platform); |
| 412 | |
| 413 | for (mach = machines; *mach; mach++) { |
| 414 | if ((*mach)->probe(systemcfg->platform)) |
| 415 | break; |
| 416 | } |
| 417 | /* What can we do if we didn't find ? */ |
| 418 | if (*mach == NULL) { |
| 419 | DBG("No suitable machine found !\n"); |
| 420 | for (;;); |
| 421 | } |
| 422 | ppc_md = **mach; |
| 423 | |
| 424 | /* our udbg callbacks got overriden by the above, let's put them |
| 425 | * back in. Ultimately, I want those things to be split from the |
| 426 | * main ppc_md |
| 427 | */ |
| 428 | EARLY_DEBUG_INIT(); |
| 429 | |
| 430 | DBG("Found, Initializing memory management...\n"); |
| 431 | |
| 432 | /* |
| 433 | * Initialize stab / SLB management |
| 434 | */ |
| 435 | stab_initialize(lpaca->stab_real); |
| 436 | |
| 437 | /* |
| 438 | * Initialize the MMU Hash table and create the linear mapping |
| 439 | * of memory |
| 440 | */ |
| 441 | htab_initialize(); |
| 442 | |
| 443 | DBG(" <- early_setup()\n"); |
| 444 | } |
| 445 | |
| 446 | |
| 447 | /* |
| 448 | * Initialize some remaining members of the ppc64_caches and systemcfg structures |
| 449 | * (at least until we get rid of them completely). This is mostly some |
| 450 | * cache informations about the CPU that will be used by cache flush |
| 451 | * routines and/or provided to userland |
| 452 | */ |
| 453 | static void __init initialize_cache_info(void) |
| 454 | { |
| 455 | struct device_node *np; |
| 456 | unsigned long num_cpus = 0; |
| 457 | |
| 458 | DBG(" -> initialize_cache_info()\n"); |
| 459 | |
| 460 | for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) { |
| 461 | num_cpus += 1; |
| 462 | |
| 463 | /* We're assuming *all* of the CPUs have the same |
| 464 | * d-cache and i-cache sizes... -Peter |
| 465 | */ |
| 466 | |
| 467 | if ( num_cpus == 1 ) { |
| 468 | u32 *sizep, *lsizep; |
| 469 | u32 size, lsize; |
| 470 | const char *dc, *ic; |
| 471 | |
| 472 | /* Then read cache informations */ |
| 473 | if (systemcfg->platform == PLATFORM_POWERMAC) { |
| 474 | dc = "d-cache-block-size"; |
| 475 | ic = "i-cache-block-size"; |
| 476 | } else { |
| 477 | dc = "d-cache-line-size"; |
| 478 | ic = "i-cache-line-size"; |
| 479 | } |
| 480 | |
| 481 | size = 0; |
| 482 | lsize = cur_cpu_spec->dcache_bsize; |
| 483 | sizep = (u32 *)get_property(np, "d-cache-size", NULL); |
| 484 | if (sizep != NULL) |
| 485 | size = *sizep; |
| 486 | lsizep = (u32 *) get_property(np, dc, NULL); |
| 487 | if (lsizep != NULL) |
| 488 | lsize = *lsizep; |
| 489 | if (sizep == 0 || lsizep == 0) |
| 490 | DBG("Argh, can't find dcache properties ! " |
| 491 | "sizep: %p, lsizep: %p\n", sizep, lsizep); |
| 492 | |
| 493 | systemcfg->dcache_size = ppc64_caches.dsize = size; |
| 494 | systemcfg->dcache_line_size = |
| 495 | ppc64_caches.dline_size = lsize; |
| 496 | ppc64_caches.log_dline_size = __ilog2(lsize); |
| 497 | ppc64_caches.dlines_per_page = PAGE_SIZE / lsize; |
| 498 | |
| 499 | size = 0; |
| 500 | lsize = cur_cpu_spec->icache_bsize; |
| 501 | sizep = (u32 *)get_property(np, "i-cache-size", NULL); |
| 502 | if (sizep != NULL) |
| 503 | size = *sizep; |
| 504 | lsizep = (u32 *)get_property(np, ic, NULL); |
| 505 | if (lsizep != NULL) |
| 506 | lsize = *lsizep; |
| 507 | if (sizep == 0 || lsizep == 0) |
| 508 | DBG("Argh, can't find icache properties ! " |
| 509 | "sizep: %p, lsizep: %p\n", sizep, lsizep); |
| 510 | |
| 511 | systemcfg->icache_size = ppc64_caches.isize = size; |
| 512 | systemcfg->icache_line_size = |
| 513 | ppc64_caches.iline_size = lsize; |
| 514 | ppc64_caches.log_iline_size = __ilog2(lsize); |
| 515 | ppc64_caches.ilines_per_page = PAGE_SIZE / lsize; |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | /* Add an eye catcher and the systemcfg layout version number */ |
| 520 | strcpy(systemcfg->eye_catcher, "SYSTEMCFG:PPC64"); |
| 521 | systemcfg->version.major = SYSTEMCFG_MAJOR; |
| 522 | systemcfg->version.minor = SYSTEMCFG_MINOR; |
| 523 | systemcfg->processor = mfspr(SPRN_PVR); |
| 524 | |
| 525 | DBG(" <- initialize_cache_info()\n"); |
| 526 | } |
| 527 | |
| 528 | static void __init check_for_initrd(void) |
| 529 | { |
| 530 | #ifdef CONFIG_BLK_DEV_INITRD |
| 531 | u64 *prop; |
| 532 | |
| 533 | DBG(" -> check_for_initrd()\n"); |
| 534 | |
| 535 | prop = (u64 *)get_property(of_chosen, "linux,initrd-start", NULL); |
| 536 | if (prop != NULL) { |
| 537 | initrd_start = (unsigned long)__va(*prop); |
| 538 | prop = (u64 *)get_property(of_chosen, "linux,initrd-end", NULL); |
| 539 | if (prop != NULL) { |
| 540 | initrd_end = (unsigned long)__va(*prop); |
| 541 | initrd_below_start_ok = 1; |
| 542 | } else |
| 543 | initrd_start = 0; |
| 544 | } |
| 545 | |
| 546 | /* If we were passed an initrd, set the ROOT_DEV properly if the values |
| 547 | * look sensible. If not, clear initrd reference. |
| 548 | */ |
| 549 | if (initrd_start >= KERNELBASE && initrd_end >= KERNELBASE && |
| 550 | initrd_end > initrd_start) |
| 551 | ROOT_DEV = Root_RAM0; |
| 552 | else |
| 553 | initrd_start = initrd_end = 0; |
| 554 | |
| 555 | if (initrd_start) |
| 556 | printk("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end); |
| 557 | |
| 558 | DBG(" <- check_for_initrd()\n"); |
| 559 | #endif /* CONFIG_BLK_DEV_INITRD */ |
| 560 | } |
| 561 | |
| 562 | #endif /* CONFIG_PPC_MULTIPLATFORM */ |
| 563 | |
| 564 | /* |
| 565 | * Do some initial setup of the system. The parameters are those which |
| 566 | * were passed in from the bootloader. |
| 567 | */ |
| 568 | void __init setup_system(void) |
| 569 | { |
| 570 | DBG(" -> setup_system()\n"); |
| 571 | |
| 572 | #ifdef CONFIG_PPC_ISERIES |
| 573 | /* pSeries systems are identified in prom.c via OF. */ |
| 574 | if (itLpNaca.xLparInstalled == 1) |
| 575 | systemcfg->platform = PLATFORM_ISERIES_LPAR; |
| 576 | |
| 577 | ppc_md.init_early(); |
| 578 | #else /* CONFIG_PPC_ISERIES */ |
| 579 | |
| 580 | /* |
| 581 | * Unflatten the device-tree passed by prom_init or kexec |
| 582 | */ |
| 583 | unflatten_device_tree(); |
| 584 | |
| 585 | /* |
| 586 | * Fill the ppc64_caches & systemcfg structures with informations |
| 587 | * retreived from the device-tree. Need to be called before |
| 588 | * finish_device_tree() since the later requires some of the |
| 589 | * informations filled up here to properly parse the interrupt |
| 590 | * tree. |
| 591 | * It also sets up the cache line sizes which allows to call |
| 592 | * routines like flush_icache_range (used by the hash init |
| 593 | * later on). |
| 594 | */ |
| 595 | initialize_cache_info(); |
| 596 | |
| 597 | #ifdef CONFIG_PPC_RTAS |
| 598 | /* |
| 599 | * Initialize RTAS if available |
| 600 | */ |
| 601 | rtas_initialize(); |
| 602 | #endif /* CONFIG_PPC_RTAS */ |
| 603 | |
| 604 | /* |
| 605 | * Check if we have an initrd provided via the device-tree |
| 606 | */ |
| 607 | check_for_initrd(); |
| 608 | |
| 609 | /* |
| 610 | * Do some platform specific early initializations, that includes |
| 611 | * setting up the hash table pointers. It also sets up some interrupt-mapping |
| 612 | * related options that will be used by finish_device_tree() |
| 613 | */ |
| 614 | ppc_md.init_early(); |
| 615 | |
| 616 | /* |
| 617 | * "Finish" the device-tree, that is do the actual parsing of |
| 618 | * some of the properties like the interrupt map |
| 619 | */ |
| 620 | finish_device_tree(); |
| 621 | |
| 622 | /* |
| 623 | * Initialize xmon |
| 624 | */ |
| 625 | #ifdef CONFIG_XMON_DEFAULT |
| 626 | xmon_init(); |
| 627 | #endif |
| 628 | /* |
| 629 | * Register early console |
| 630 | */ |
| 631 | early_console_initialized = 1; |
| 632 | register_console(&udbg_console); |
| 633 | |
| 634 | /* Save unparsed command line copy for /proc/cmdline */ |
| 635 | strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE); |
| 636 | |
| 637 | parse_early_param(); |
| 638 | #endif /* !CONFIG_PPC_ISERIES */ |
| 639 | |
| 640 | #if defined(CONFIG_SMP) && !defined(CONFIG_PPC_ISERIES) |
| 641 | /* |
| 642 | * iSeries has already initialized the cpu maps at this point. |
| 643 | */ |
| 644 | setup_cpu_maps(); |
| 645 | |
| 646 | /* Release secondary cpus out of their spinloops at 0x60 now that |
| 647 | * we can map physical -> logical CPU ids |
| 648 | */ |
| 649 | smp_release_cpus(); |
| 650 | #endif /* defined(CONFIG_SMP) && !defined(CONFIG_PPC_ISERIES) */ |
| 651 | |
| 652 | printk("Starting Linux PPC64 %s\n", UTS_RELEASE); |
| 653 | |
| 654 | printk("-----------------------------------------------------\n"); |
| 655 | printk("ppc64_pft_size = 0x%lx\n", ppc64_pft_size); |
| 656 | printk("ppc64_debug_switch = 0x%lx\n", ppc64_debug_switch); |
| 657 | printk("ppc64_interrupt_controller = 0x%ld\n", ppc64_interrupt_controller); |
| 658 | printk("systemcfg = 0x%p\n", systemcfg); |
| 659 | printk("systemcfg->platform = 0x%x\n", systemcfg->platform); |
| 660 | printk("systemcfg->processorCount = 0x%lx\n", systemcfg->processorCount); |
| 661 | printk("systemcfg->physicalMemorySize = 0x%lx\n", systemcfg->physicalMemorySize); |
| 662 | printk("ppc64_caches.dcache_line_size = 0x%x\n", |
| 663 | ppc64_caches.dline_size); |
| 664 | printk("ppc64_caches.icache_line_size = 0x%x\n", |
| 665 | ppc64_caches.iline_size); |
| 666 | printk("htab_address = 0x%p\n", htab_address); |
| 667 | printk("htab_hash_mask = 0x%lx\n", htab_hash_mask); |
| 668 | printk("-----------------------------------------------------\n"); |
| 669 | |
| 670 | mm_init_ppc64(); |
| 671 | |
| 672 | DBG(" <- setup_system()\n"); |
| 673 | } |
| 674 | |
| 675 | |
| 676 | void machine_restart(char *cmd) |
| 677 | { |
| 678 | if (ppc_md.nvram_sync) |
| 679 | ppc_md.nvram_sync(); |
| 680 | ppc_md.restart(cmd); |
| 681 | } |
| 682 | |
| 683 | EXPORT_SYMBOL(machine_restart); |
| 684 | |
| 685 | void machine_power_off(void) |
| 686 | { |
| 687 | if (ppc_md.nvram_sync) |
| 688 | ppc_md.nvram_sync(); |
| 689 | ppc_md.power_off(); |
| 690 | } |
| 691 | |
| 692 | EXPORT_SYMBOL(machine_power_off); |
| 693 | |
| 694 | void machine_halt(void) |
| 695 | { |
| 696 | if (ppc_md.nvram_sync) |
| 697 | ppc_md.nvram_sync(); |
| 698 | ppc_md.halt(); |
| 699 | } |
| 700 | |
| 701 | EXPORT_SYMBOL(machine_halt); |
| 702 | |
| 703 | unsigned long ppc_proc_freq; |
| 704 | unsigned long ppc_tb_freq; |
| 705 | |
| 706 | static int ppc64_panic_event(struct notifier_block *this, |
| 707 | unsigned long event, void *ptr) |
| 708 | { |
| 709 | ppc_md.panic((char *)ptr); /* May not return */ |
| 710 | return NOTIFY_DONE; |
| 711 | } |
| 712 | |
| 713 | |
| 714 | #ifdef CONFIG_SMP |
| 715 | DEFINE_PER_CPU(unsigned int, pvr); |
| 716 | #endif |
| 717 | |
| 718 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 719 | { |
| 720 | unsigned long cpu_id = (unsigned long)v - 1; |
| 721 | unsigned int pvr; |
| 722 | unsigned short maj; |
| 723 | unsigned short min; |
| 724 | |
| 725 | if (cpu_id == NR_CPUS) { |
| 726 | seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq); |
| 727 | |
| 728 | if (ppc_md.get_cpuinfo != NULL) |
| 729 | ppc_md.get_cpuinfo(m); |
| 730 | |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | /* We only show online cpus: disable preempt (overzealous, I |
| 735 | * knew) to prevent cpu going down. */ |
| 736 | preempt_disable(); |
| 737 | if (!cpu_online(cpu_id)) { |
| 738 | preempt_enable(); |
| 739 | return 0; |
| 740 | } |
| 741 | |
| 742 | #ifdef CONFIG_SMP |
| 743 | pvr = per_cpu(pvr, cpu_id); |
| 744 | #else |
| 745 | pvr = mfspr(SPRN_PVR); |
| 746 | #endif |
| 747 | maj = (pvr >> 8) & 0xFF; |
| 748 | min = pvr & 0xFF; |
| 749 | |
| 750 | seq_printf(m, "processor\t: %lu\n", cpu_id); |
| 751 | seq_printf(m, "cpu\t\t: "); |
| 752 | |
| 753 | if (cur_cpu_spec->pvr_mask) |
| 754 | seq_printf(m, "%s", cur_cpu_spec->cpu_name); |
| 755 | else |
| 756 | seq_printf(m, "unknown (%08x)", pvr); |
| 757 | |
| 758 | #ifdef CONFIG_ALTIVEC |
| 759 | if (cpu_has_feature(CPU_FTR_ALTIVEC)) |
| 760 | seq_printf(m, ", altivec supported"); |
| 761 | #endif /* CONFIG_ALTIVEC */ |
| 762 | |
| 763 | seq_printf(m, "\n"); |
| 764 | |
| 765 | /* |
| 766 | * Assume here that all clock rates are the same in a |
| 767 | * smp system. -- Cort |
| 768 | */ |
| 769 | seq_printf(m, "clock\t\t: %lu.%06luMHz\n", ppc_proc_freq / 1000000, |
| 770 | ppc_proc_freq % 1000000); |
| 771 | |
| 772 | seq_printf(m, "revision\t: %hd.%hd\n\n", maj, min); |
| 773 | |
| 774 | preempt_enable(); |
| 775 | return 0; |
| 776 | } |
| 777 | |
| 778 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 779 | { |
| 780 | return *pos <= NR_CPUS ? (void *)((*pos)+1) : NULL; |
| 781 | } |
| 782 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 783 | { |
| 784 | ++*pos; |
| 785 | return c_start(m, pos); |
| 786 | } |
| 787 | static void c_stop(struct seq_file *m, void *v) |
| 788 | { |
| 789 | } |
| 790 | struct seq_operations cpuinfo_op = { |
| 791 | .start =c_start, |
| 792 | .next = c_next, |
| 793 | .stop = c_stop, |
| 794 | .show = show_cpuinfo, |
| 795 | }; |
| 796 | |
| 797 | /* |
| 798 | * These three variables are used to save values passed to us by prom_init() |
| 799 | * via the device tree. The TCE variables are needed because with a memory_limit |
| 800 | * in force we may need to explicitly map the TCE are at the top of RAM. |
| 801 | */ |
| 802 | unsigned long memory_limit; |
| 803 | unsigned long tce_alloc_start; |
| 804 | unsigned long tce_alloc_end; |
| 805 | |
| 806 | #ifdef CONFIG_PPC_ISERIES |
| 807 | /* |
| 808 | * On iSeries we just parse the mem=X option from the command line. |
| 809 | * On pSeries it's a bit more complicated, see prom_init_mem() |
| 810 | */ |
| 811 | static int __init early_parsemem(char *p) |
| 812 | { |
| 813 | if (!p) |
| 814 | return 0; |
| 815 | |
| 816 | memory_limit = ALIGN(memparse(p, &p), PAGE_SIZE); |
| 817 | |
| 818 | return 0; |
| 819 | } |
| 820 | early_param("mem", early_parsemem); |
| 821 | #endif /* CONFIG_PPC_ISERIES */ |
| 822 | |
| 823 | #ifdef CONFIG_PPC_MULTIPLATFORM |
| 824 | static int __init set_preferred_console(void) |
| 825 | { |
| 826 | struct device_node *prom_stdout = NULL; |
| 827 | char *name; |
| 828 | u32 *spd; |
| 829 | int offset = 0; |
| 830 | |
| 831 | DBG(" -> set_preferred_console()\n"); |
| 832 | |
| 833 | /* The user has requested a console so this is already set up. */ |
| 834 | if (strstr(saved_command_line, "console=")) { |
| 835 | DBG(" console was specified !\n"); |
| 836 | return -EBUSY; |
| 837 | } |
| 838 | |
| 839 | if (!of_chosen) { |
| 840 | DBG(" of_chosen is NULL !\n"); |
| 841 | return -ENODEV; |
| 842 | } |
| 843 | /* We are getting a weird phandle from OF ... */ |
| 844 | /* ... So use the full path instead */ |
| 845 | name = (char *)get_property(of_chosen, "linux,stdout-path", NULL); |
| 846 | if (name == NULL) { |
| 847 | DBG(" no linux,stdout-path !\n"); |
| 848 | return -ENODEV; |
| 849 | } |
| 850 | prom_stdout = of_find_node_by_path(name); |
| 851 | if (!prom_stdout) { |
| 852 | DBG(" can't find stdout package %s !\n", name); |
| 853 | return -ENODEV; |
| 854 | } |
| 855 | DBG("stdout is %s\n", prom_stdout->full_name); |
| 856 | |
| 857 | name = (char *)get_property(prom_stdout, "name", NULL); |
| 858 | if (!name) { |
| 859 | DBG(" stdout package has no name !\n"); |
| 860 | goto not_found; |
| 861 | } |
| 862 | spd = (u32 *)get_property(prom_stdout, "current-speed", NULL); |
| 863 | |
| 864 | if (0) |
| 865 | ; |
| 866 | #ifdef CONFIG_SERIAL_8250_CONSOLE |
| 867 | else if (strcmp(name, "serial") == 0) { |
| 868 | int i; |
| 869 | u32 *reg = (u32 *)get_property(prom_stdout, "reg", &i); |
| 870 | if (i > 8) { |
| 871 | switch (reg[1]) { |
| 872 | case 0x3f8: |
| 873 | offset = 0; |
| 874 | break; |
| 875 | case 0x2f8: |
| 876 | offset = 1; |
| 877 | break; |
| 878 | case 0x898: |
| 879 | offset = 2; |
| 880 | break; |
| 881 | case 0x890: |
| 882 | offset = 3; |
| 883 | break; |
| 884 | default: |
| 885 | /* We dont recognise the serial port */ |
| 886 | goto not_found; |
| 887 | } |
| 888 | } |
| 889 | } |
| 890 | #endif /* CONFIG_SERIAL_8250_CONSOLE */ |
| 891 | #ifdef CONFIG_PPC_PSERIES |
| 892 | else if (strcmp(name, "vty") == 0) { |
| 893 | u32 *reg = (u32 *)get_property(prom_stdout, "reg", NULL); |
| 894 | char *compat = (char *)get_property(prom_stdout, "compatible", NULL); |
| 895 | |
| 896 | if (reg && compat && (strcmp(compat, "hvterm-protocol") == 0)) { |
| 897 | /* Host Virtual Serial Interface */ |
| 898 | int offset; |
| 899 | switch (reg[0]) { |
| 900 | case 0x30000000: |
| 901 | offset = 0; |
| 902 | break; |
| 903 | case 0x30000001: |
| 904 | offset = 1; |
| 905 | break; |
| 906 | default: |
| 907 | goto not_found; |
| 908 | } |
| 909 | of_node_put(prom_stdout); |
| 910 | DBG("Found hvsi console at offset %d\n", offset); |
| 911 | return add_preferred_console("hvsi", offset, NULL); |
| 912 | } else { |
| 913 | /* pSeries LPAR virtual console */ |
| 914 | of_node_put(prom_stdout); |
| 915 | DBG("Found hvc console\n"); |
| 916 | return add_preferred_console("hvc", 0, NULL); |
| 917 | } |
| 918 | } |
| 919 | #endif /* CONFIG_PPC_PSERIES */ |
| 920 | #ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE |
| 921 | else if (strcmp(name, "ch-a") == 0) |
| 922 | offset = 0; |
| 923 | else if (strcmp(name, "ch-b") == 0) |
| 924 | offset = 1; |
| 925 | #endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */ |
| 926 | else |
| 927 | goto not_found; |
| 928 | of_node_put(prom_stdout); |
| 929 | |
| 930 | DBG("Found serial console at ttyS%d\n", offset); |
| 931 | |
| 932 | if (spd) { |
| 933 | static char __initdata opt[16]; |
| 934 | sprintf(opt, "%d", *spd); |
| 935 | return add_preferred_console("ttyS", offset, opt); |
| 936 | } else |
| 937 | return add_preferred_console("ttyS", offset, NULL); |
| 938 | |
| 939 | not_found: |
| 940 | DBG("No preferred console found !\n"); |
| 941 | of_node_put(prom_stdout); |
| 942 | return -ENODEV; |
| 943 | } |
| 944 | console_initcall(set_preferred_console); |
| 945 | #endif /* CONFIG_PPC_MULTIPLATFORM */ |
| 946 | |
| 947 | #ifdef CONFIG_IRQSTACKS |
| 948 | static void __init irqstack_early_init(void) |
| 949 | { |
| 950 | unsigned int i; |
| 951 | |
| 952 | /* |
| 953 | * interrupt stacks must be under 256MB, we cannot afford to take |
| 954 | * SLB misses on them. |
| 955 | */ |
| 956 | for_each_cpu(i) { |
| 957 | softirq_ctx[i] = (struct thread_info *)__va(lmb_alloc_base(THREAD_SIZE, |
| 958 | THREAD_SIZE, 0x10000000)); |
| 959 | hardirq_ctx[i] = (struct thread_info *)__va(lmb_alloc_base(THREAD_SIZE, |
| 960 | THREAD_SIZE, 0x10000000)); |
| 961 | } |
| 962 | } |
| 963 | #else |
| 964 | #define irqstack_early_init() |
| 965 | #endif |
| 966 | |
| 967 | /* |
| 968 | * Stack space used when we detect a bad kernel stack pointer, and |
| 969 | * early in SMP boots before relocation is enabled. |
| 970 | */ |
| 971 | static void __init emergency_stack_init(void) |
| 972 | { |
| 973 | unsigned long limit; |
| 974 | unsigned int i; |
| 975 | |
| 976 | /* |
| 977 | * Emergency stacks must be under 256MB, we cannot afford to take |
| 978 | * SLB misses on them. The ABI also requires them to be 128-byte |
| 979 | * aligned. |
| 980 | * |
| 981 | * Since we use these as temporary stacks during secondary CPU |
| 982 | * bringup, we need to get at them in real mode. This means they |
| 983 | * must also be within the RMO region. |
| 984 | */ |
| 985 | limit = min(0x10000000UL, lmb.rmo_size); |
| 986 | |
| 987 | for_each_cpu(i) |
| 988 | paca[i].emergency_sp = __va(lmb_alloc_base(PAGE_SIZE, 128, |
| 989 | limit)) + PAGE_SIZE; |
| 990 | } |
| 991 | |
| 992 | /* |
| 993 | * Called from setup_arch to initialize the bitmap of available |
| 994 | * syscalls in the systemcfg page |
| 995 | */ |
| 996 | void __init setup_syscall_map(void) |
| 997 | { |
| 998 | unsigned int i, count64 = 0, count32 = 0; |
| 999 | extern unsigned long *sys_call_table; |
| 1000 | extern unsigned long *sys_call_table32; |
| 1001 | extern unsigned long sys_ni_syscall; |
| 1002 | |
| 1003 | |
| 1004 | for (i = 0; i < __NR_syscalls; i++) { |
| 1005 | if (sys_call_table[i] == sys_ni_syscall) |
| 1006 | continue; |
| 1007 | count64++; |
| 1008 | systemcfg->syscall_map_64[i >> 5] |= 0x80000000UL >> (i & 0x1f); |
| 1009 | } |
| 1010 | for (i = 0; i < __NR_syscalls; i++) { |
| 1011 | if (sys_call_table32[i] == sys_ni_syscall) |
| 1012 | continue; |
| 1013 | count32++; |
| 1014 | systemcfg->syscall_map_32[i >> 5] |= 0x80000000UL >> (i & 0x1f); |
| 1015 | } |
| 1016 | printk(KERN_INFO "Syscall map setup, %d 32 bits and %d 64 bits syscalls\n", |
| 1017 | count32, count64); |
| 1018 | } |
| 1019 | |
| 1020 | /* |
| 1021 | * Called into from start_kernel, after lock_kernel has been called. |
| 1022 | * Initializes bootmem, which is unsed to manage page allocation until |
| 1023 | * mem_init is called. |
| 1024 | */ |
| 1025 | void __init setup_arch(char **cmdline_p) |
| 1026 | { |
| 1027 | extern void do_init_bootmem(void); |
| 1028 | |
| 1029 | ppc64_boot_msg(0x12, "Setup Arch"); |
| 1030 | |
| 1031 | *cmdline_p = cmd_line; |
| 1032 | |
| 1033 | /* |
| 1034 | * Set cache line size based on type of cpu as a default. |
| 1035 | * Systems with OF can look in the properties on the cpu node(s) |
| 1036 | * for a possibly more accurate value. |
| 1037 | */ |
| 1038 | dcache_bsize = ppc64_caches.dline_size; |
| 1039 | icache_bsize = ppc64_caches.iline_size; |
| 1040 | |
| 1041 | /* reboot on panic */ |
| 1042 | panic_timeout = 180; |
| 1043 | |
| 1044 | if (ppc_md.panic) |
| 1045 | notifier_chain_register(&panic_notifier_list, &ppc64_panic_block); |
| 1046 | |
| 1047 | init_mm.start_code = PAGE_OFFSET; |
| 1048 | init_mm.end_code = (unsigned long) _etext; |
| 1049 | init_mm.end_data = (unsigned long) _edata; |
| 1050 | init_mm.brk = klimit; |
| 1051 | |
| 1052 | irqstack_early_init(); |
| 1053 | emergency_stack_init(); |
| 1054 | |
| 1055 | /* set up the bootmem stuff with available memory */ |
| 1056 | do_init_bootmem(); |
| 1057 | |
| 1058 | /* initialize the syscall map in systemcfg */ |
| 1059 | setup_syscall_map(); |
| 1060 | |
| 1061 | ppc_md.setup_arch(); |
| 1062 | |
| 1063 | /* Select the correct idle loop for the platform. */ |
| 1064 | idle_setup(); |
| 1065 | |
| 1066 | paging_init(); |
| 1067 | ppc64_boot_msg(0x15, "Setup Done"); |
| 1068 | } |
| 1069 | |
| 1070 | |
| 1071 | /* ToDo: do something useful if ppc_md is not yet setup. */ |
| 1072 | #define PPC64_LINUX_FUNCTION 0x0f000000 |
| 1073 | #define PPC64_IPL_MESSAGE 0xc0000000 |
| 1074 | #define PPC64_TERM_MESSAGE 0xb0000000 |
| 1075 | #define PPC64_ATTN_MESSAGE 0xa0000000 |
| 1076 | #define PPC64_DUMP_MESSAGE 0xd0000000 |
| 1077 | |
| 1078 | static void ppc64_do_msg(unsigned int src, const char *msg) |
| 1079 | { |
| 1080 | if (ppc_md.progress) { |
| 1081 | char buf[32]; |
| 1082 | |
| 1083 | sprintf(buf, "%08x \n", src); |
| 1084 | ppc_md.progress(buf, 0); |
| 1085 | sprintf(buf, "%-16s", msg); |
| 1086 | ppc_md.progress(buf, 0); |
| 1087 | } |
| 1088 | } |
| 1089 | |
| 1090 | /* Print a boot progress message. */ |
| 1091 | void ppc64_boot_msg(unsigned int src, const char *msg) |
| 1092 | { |
| 1093 | ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg); |
| 1094 | printk("[boot]%04x %s\n", src, msg); |
| 1095 | } |
| 1096 | |
| 1097 | /* Print a termination message (print only -- does not stop the kernel) */ |
| 1098 | void ppc64_terminate_msg(unsigned int src, const char *msg) |
| 1099 | { |
| 1100 | ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg); |
| 1101 | printk("[terminate]%04x %s\n", src, msg); |
| 1102 | } |
| 1103 | |
| 1104 | /* Print something that needs attention (device error, etc) */ |
| 1105 | void ppc64_attention_msg(unsigned int src, const char *msg) |
| 1106 | { |
| 1107 | ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_ATTN_MESSAGE|src, msg); |
| 1108 | printk("[attention]%04x %s\n", src, msg); |
| 1109 | } |
| 1110 | |
| 1111 | /* Print a dump progress message. */ |
| 1112 | void ppc64_dump_msg(unsigned int src, const char *msg) |
| 1113 | { |
| 1114 | ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_DUMP_MESSAGE|src, msg); |
| 1115 | printk("[dump]%04x %s\n", src, msg); |
| 1116 | } |
| 1117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | /* This should only be called on processor 0 during calibrate decr */ |
| 1119 | void setup_default_decr(void) |
| 1120 | { |
| 1121 | struct paca_struct *lpaca = get_paca(); |
| 1122 | |
Anton Blanchard | c4eb2a9 | 2005-06-02 14:02:03 -0700 | [diff] [blame] | 1123 | lpaca->default_decr = tb_ticks_per_jiffy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | lpaca->next_jiffy_update_tb = get_tb() + tb_ticks_per_jiffy; |
| 1125 | } |
| 1126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | #ifndef CONFIG_PPC_ISERIES |
| 1128 | /* |
| 1129 | * This function can be used by platforms to "find" legacy serial ports. |
| 1130 | * It works for "serial" nodes under an "isa" node, and will try to |
| 1131 | * respect the "ibm,aix-loc" property if any. It works with up to 8 |
| 1132 | * ports. |
| 1133 | */ |
| 1134 | |
| 1135 | #define MAX_LEGACY_SERIAL_PORTS 8 |
| 1136 | static struct plat_serial8250_port serial_ports[MAX_LEGACY_SERIAL_PORTS+1]; |
| 1137 | static unsigned int old_serial_count; |
| 1138 | |
| 1139 | void __init generic_find_legacy_serial_ports(u64 *physport, |
| 1140 | unsigned int *default_speed) |
| 1141 | { |
| 1142 | struct device_node *np; |
| 1143 | u32 *sizeprop; |
| 1144 | |
| 1145 | struct isa_reg_property { |
| 1146 | u32 space; |
| 1147 | u32 address; |
| 1148 | u32 size; |
| 1149 | }; |
| 1150 | struct pci_reg_property { |
| 1151 | struct pci_address addr; |
| 1152 | u32 size_hi; |
| 1153 | u32 size_lo; |
| 1154 | }; |
| 1155 | |
| 1156 | DBG(" -> generic_find_legacy_serial_port()\n"); |
| 1157 | |
| 1158 | *physport = 0; |
| 1159 | if (default_speed) |
| 1160 | *default_speed = 0; |
| 1161 | |
| 1162 | np = of_find_node_by_path("/"); |
| 1163 | if (!np) |
| 1164 | return; |
| 1165 | |
| 1166 | /* First fill our array */ |
| 1167 | for (np = NULL; (np = of_find_node_by_type(np, "serial"));) { |
| 1168 | struct device_node *isa, *pci; |
| 1169 | struct isa_reg_property *reg; |
| 1170 | unsigned long phys_size, addr_size, io_base; |
| 1171 | u32 *rangesp; |
| 1172 | u32 *interrupts, *clk, *spd; |
| 1173 | char *typep; |
| 1174 | int index, rlen, rentsize; |
| 1175 | |
| 1176 | /* Ok, first check if it's under an "isa" parent */ |
| 1177 | isa = of_get_parent(np); |
| 1178 | if (!isa || strcmp(isa->name, "isa")) { |
| 1179 | DBG("%s: no isa parent found\n", np->full_name); |
| 1180 | continue; |
| 1181 | } |
| 1182 | |
| 1183 | /* Now look for an "ibm,aix-loc" property that gives us ordering |
| 1184 | * if any... |
| 1185 | */ |
| 1186 | typep = (char *)get_property(np, "ibm,aix-loc", NULL); |
| 1187 | |
| 1188 | /* Get the ISA port number */ |
| 1189 | reg = (struct isa_reg_property *)get_property(np, "reg", NULL); |
| 1190 | if (reg == NULL) |
| 1191 | goto next_port; |
| 1192 | /* We assume the interrupt number isn't translated ... */ |
| 1193 | interrupts = (u32 *)get_property(np, "interrupts", NULL); |
| 1194 | /* get clock freq. if present */ |
| 1195 | clk = (u32 *)get_property(np, "clock-frequency", NULL); |
| 1196 | /* get default speed if present */ |
| 1197 | spd = (u32 *)get_property(np, "current-speed", NULL); |
| 1198 | /* Default to locate at end of array */ |
| 1199 | index = old_serial_count; /* end of the array by default */ |
| 1200 | |
| 1201 | /* If we have a location index, then use it */ |
| 1202 | if (typep && *typep == 'S') { |
| 1203 | index = simple_strtol(typep+1, NULL, 0) - 1; |
| 1204 | /* if index is out of range, use end of array instead */ |
| 1205 | if (index >= MAX_LEGACY_SERIAL_PORTS) |
| 1206 | index = old_serial_count; |
| 1207 | /* if our index is still out of range, that mean that |
| 1208 | * array is full, we could scan for a free slot but that |
| 1209 | * make little sense to bother, just skip the port |
| 1210 | */ |
| 1211 | if (index >= MAX_LEGACY_SERIAL_PORTS) |
| 1212 | goto next_port; |
| 1213 | if (index >= old_serial_count) |
| 1214 | old_serial_count = index + 1; |
| 1215 | /* Check if there is a port who already claimed our slot */ |
| 1216 | if (serial_ports[index].iobase != 0) { |
| 1217 | /* if we still have some room, move it, else override */ |
| 1218 | if (old_serial_count < MAX_LEGACY_SERIAL_PORTS) { |
| 1219 | DBG("Moved legacy port %d -> %d\n", index, |
| 1220 | old_serial_count); |
| 1221 | serial_ports[old_serial_count++] = |
| 1222 | serial_ports[index]; |
| 1223 | } else { |
| 1224 | DBG("Replacing legacy port %d\n", index); |
| 1225 | } |
| 1226 | } |
| 1227 | } |
| 1228 | if (index >= MAX_LEGACY_SERIAL_PORTS) |
| 1229 | goto next_port; |
| 1230 | if (index >= old_serial_count) |
| 1231 | old_serial_count = index + 1; |
| 1232 | |
| 1233 | /* Now fill the entry */ |
| 1234 | memset(&serial_ports[index], 0, sizeof(struct plat_serial8250_port)); |
| 1235 | serial_ports[index].uartclk = clk ? *clk : BASE_BAUD * 16; |
| 1236 | serial_ports[index].iobase = reg->address; |
| 1237 | serial_ports[index].irq = interrupts ? interrupts[0] : 0; |
| 1238 | serial_ports[index].flags = ASYNC_BOOT_AUTOCONF; |
| 1239 | |
| 1240 | DBG("Added legacy port, index: %d, port: %x, irq: %d, clk: %d\n", |
| 1241 | index, |
| 1242 | serial_ports[index].iobase, |
| 1243 | serial_ports[index].irq, |
| 1244 | serial_ports[index].uartclk); |
| 1245 | |
| 1246 | /* Get phys address of IO reg for port 1 */ |
| 1247 | if (index != 0) |
| 1248 | goto next_port; |
| 1249 | |
| 1250 | pci = of_get_parent(isa); |
| 1251 | if (!pci) { |
| 1252 | DBG("%s: no pci parent found\n", np->full_name); |
| 1253 | goto next_port; |
| 1254 | } |
| 1255 | |
| 1256 | rangesp = (u32 *)get_property(pci, "ranges", &rlen); |
| 1257 | if (rangesp == NULL) { |
| 1258 | of_node_put(pci); |
| 1259 | goto next_port; |
| 1260 | } |
| 1261 | rlen /= 4; |
| 1262 | |
| 1263 | /* we need the #size-cells of the PCI bridge node itself */ |
| 1264 | phys_size = 1; |
| 1265 | sizeprop = (u32 *)get_property(pci, "#size-cells", NULL); |
| 1266 | if (sizeprop != NULL) |
| 1267 | phys_size = *sizeprop; |
| 1268 | /* we need the parent #addr-cells */ |
| 1269 | addr_size = prom_n_addr_cells(pci); |
| 1270 | rentsize = 3 + addr_size + phys_size; |
| 1271 | io_base = 0; |
| 1272 | for (;rlen >= rentsize; rlen -= rentsize,rangesp += rentsize) { |
| 1273 | if (((rangesp[0] >> 24) & 0x3) != 1) |
| 1274 | continue; /* not IO space */ |
| 1275 | io_base = rangesp[3]; |
| 1276 | if (addr_size == 2) |
| 1277 | io_base = (io_base << 32) | rangesp[4]; |
| 1278 | } |
| 1279 | if (io_base != 0) { |
| 1280 | *physport = io_base + reg->address; |
| 1281 | if (default_speed && spd) |
| 1282 | *default_speed = *spd; |
| 1283 | } |
| 1284 | of_node_put(pci); |
| 1285 | next_port: |
| 1286 | of_node_put(isa); |
| 1287 | } |
| 1288 | |
| 1289 | DBG(" <- generic_find_legacy_serial_port()\n"); |
| 1290 | } |
| 1291 | |
| 1292 | static struct platform_device serial_device = { |
| 1293 | .name = "serial8250", |
| 1294 | .id = 0, |
| 1295 | .dev = { |
| 1296 | .platform_data = serial_ports, |
| 1297 | }, |
| 1298 | }; |
| 1299 | |
| 1300 | static int __init serial_dev_init(void) |
| 1301 | { |
| 1302 | return platform_device_register(&serial_device); |
| 1303 | } |
| 1304 | arch_initcall(serial_dev_init); |
| 1305 | |
| 1306 | #endif /* CONFIG_PPC_ISERIES */ |
| 1307 | |
| 1308 | int check_legacy_ioport(unsigned long base_port) |
| 1309 | { |
| 1310 | if (ppc_md.check_legacy_ioport == NULL) |
| 1311 | return 0; |
| 1312 | return ppc_md.check_legacy_ioport(base_port); |
| 1313 | } |
| 1314 | EXPORT_SYMBOL(check_legacy_ioport); |
| 1315 | |
| 1316 | #ifdef CONFIG_XMON |
| 1317 | static int __init early_xmon(char *p) |
| 1318 | { |
| 1319 | /* ensure xmon is enabled */ |
| 1320 | if (p) { |
| 1321 | if (strncmp(p, "on", 2) == 0) |
| 1322 | xmon_init(); |
| 1323 | if (strncmp(p, "early", 5) != 0) |
| 1324 | return 0; |
| 1325 | } |
| 1326 | xmon_init(); |
| 1327 | debugger(NULL); |
| 1328 | |
| 1329 | return 0; |
| 1330 | } |
| 1331 | early_param("xmon", early_xmon); |
| 1332 | #endif |
| 1333 | |
| 1334 | void cpu_die(void) |
| 1335 | { |
| 1336 | if (ppc_md.cpu_die) |
| 1337 | ppc_md.cpu_die(); |
| 1338 | } |