setup-common.c 23.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Common boot and setup code for both 32-bit and 64-bit.
 * Extracted from arch/powerpc/kernel/setup_64.c.
 *
 * Copyright (C) 2001 PPC64 Team, IBM Corp
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */
12 13 14

#undef DEBUG

15
#include <linux/export.h>
16 17 18 19 20 21 22
#include <linux/string.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/reboot.h>
#include <linux/delay.h>
#include <linux/initrd.h>
23
#include <linux/platform_device.h>
24 25 26
#include <linux/seq_file.h>
#include <linux/ioport.h>
#include <linux/console.h>
27
#include <linux/screen_info.h>
28 29 30 31 32 33
#include <linux/root_dev.h>
#include <linux/notifier.h>
#include <linux/cpu.h>
#include <linux/unistd.h>
#include <linux/serial.h>
#include <linux/serial_8250.h>
34
#include <linux/percpu.h>
Y
Yinghai Lu 已提交
35
#include <linux/memblock.h>
36
#include <linux/of_platform.h>
37
#include <linux/hugetlb.h>
38
#include <asm/debugfs.h>
39
#include <asm/io.h>
40
#include <asm/paca.h>
41 42
#include <asm/prom.h>
#include <asm/processor.h>
43
#include <asm/vdso_datapage.h>
44 45 46 47 48 49 50
#include <asm/pgtable.h>
#include <asm/smp.h>
#include <asm/elf.h>
#include <asm/machdep.h>
#include <asm/time.h>
#include <asm/cputable.h>
#include <asm/sections.h>
51
#include <asm/firmware.h>
52 53 54 55 56 57 58 59 60
#include <asm/btext.h>
#include <asm/nvram.h>
#include <asm/setup.h>
#include <asm/rtas.h>
#include <asm/iommu.h>
#include <asm/serial.h>
#include <asm/cache.h>
#include <asm/page.h>
#include <asm/mmu.h>
61
#include <asm/xmon.h>
62
#include <asm/cputhreads.h>
63
#include <mm/mmu_decl.h>
64
#include <asm/fadump.h>
65 66 67 68
#include <asm/udbg.h>
#include <asm/hugetlb.h>
#include <asm/livepatch.h>
#include <asm/mmu_context.h>
69
#include <asm/cpu_has_feature.h>
70 71

#include "setup.h"
72 73

#ifdef DEBUG
74
#include <asm/udbg.h>
75 76 77 78 79
#define DBG(fmt...) udbg_printf(fmt)
#else
#define DBG(fmt...)
#endif

80 81 82 83 84 85
/* The main machine-dep calls structure
 */
struct machdep_calls ppc_md;
EXPORT_SYMBOL(ppc_md);
struct machdep_calls *machine_id;
EXPORT_SYMBOL(machine_id);
86

87 88 89
int boot_cpuid = -1;
EXPORT_SYMBOL_GPL(boot_cpuid);

90 91 92 93 94 95 96 97 98
/*
 * These are used in binfmt_elf.c to put aux entries on the stack
 * for each elf executable being started.
 */
int dcache_bsize;
int icache_bsize;
int ucache_bsize;


99 100
unsigned long klimit = (unsigned long) _end;

101 102 103 104 105 106 107 108 109 110 111
/*
 * This still seems to be needed... -- paulus
 */ 
struct screen_info screen_info = {
	.orig_x = 0,
	.orig_y = 25,
	.orig_video_cols = 80,
	.orig_video_lines = 25,
	.orig_video_isVGA = 1,
	.orig_video_points = 16
};
112 113 114
#if defined(CONFIG_FB_VGA16_MODULE)
EXPORT_SYMBOL(screen_info);
#endif
115

116 117
/* Variables required to store legacy IO irq routing */
int of_i8042_kbd_irq;
118
EXPORT_SYMBOL_GPL(of_i8042_kbd_irq);
119
int of_i8042_aux_irq;
120
EXPORT_SYMBOL_GPL(of_i8042_aux_irq);
121

122 123 124 125 126 127 128 129 130
#ifdef __DO_IRQ_CANON
/* XXX should go elsewhere eventually */
int ppc_do_canonicalize_irqs;
EXPORT_SYMBOL(ppc_do_canonicalize_irqs);
#endif

/* also used by kexec */
void machine_shutdown(void)
{
131 132 133 134 135 136 137 138
#ifdef CONFIG_FA_DUMP
	/*
	 * if fadump is active, cleanup the fadump registration before we
	 * shutdown.
	 */
	fadump_cleanup();
#endif

M
Michael Ellerman 已提交
139 140
	if (ppc_md.machine_shutdown)
		ppc_md.machine_shutdown();
141 142
}

143 144 145 146 147 148 149 150
static void machine_hang(void)
{
	pr_emerg("System Halted, OK to turn off power\n");
	local_irq_disable();
	while (1)
		;
}

151 152 153
void machine_restart(char *cmd)
{
	machine_shutdown();
154 155
	if (ppc_md.restart)
		ppc_md.restart(cmd);
156

157
	smp_send_stop();
158 159 160 161

	do_kernel_restart(cmd);
	mdelay(1000);

162
	machine_hang();
163 164 165 166 167
}

void machine_power_off(void)
{
	machine_shutdown();
168 169
	if (pm_power_off)
		pm_power_off();
170

171
	smp_send_stop();
172
	machine_hang();
173 174 175 176
}
/* Used by the G5 thermal driver */
EXPORT_SYMBOL_GPL(machine_power_off);

177
void (*pm_power_off)(void);
178 179 180 181 182
EXPORT_SYMBOL_GPL(pm_power_off);

void machine_halt(void)
{
	machine_shutdown();
183 184
	if (ppc_md.halt)
		ppc_md.halt();
185

186
	smp_send_stop();
187
	machine_hang();
188 189 190 191 192 193 194 195 196
}


#ifdef CONFIG_TAU
extern u32 cpu_temp(unsigned long cpu);
extern u32 cpu_temp_both(unsigned long cpu);
#endif /* CONFIG_TAU */

#ifdef CONFIG_SMP
197
DEFINE_PER_CPU(unsigned int, cpu_pvr);
198 199
#endif

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
static void show_cpuinfo_summary(struct seq_file *m)
{
	struct device_node *root;
	const char *model = NULL;
#if defined(CONFIG_SMP) && defined(CONFIG_PPC32)
	unsigned long bogosum = 0;
	int i;
	for_each_online_cpu(i)
		bogosum += loops_per_jiffy;
	seq_printf(m, "total bogomips\t: %lu.%02lu\n",
		   bogosum/(500000/HZ), bogosum/(5000/HZ) % 100);
#endif /* CONFIG_SMP && CONFIG_PPC32 */
	seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq);
	if (ppc_md.name)
		seq_printf(m, "platform\t: %s\n", ppc_md.name);
	root = of_find_node_by_path("/");
	if (root)
		model = of_get_property(root, "model", NULL);
	if (model)
		seq_printf(m, "model\t\t: %s\n", model);
	of_node_put(root);

	if (ppc_md.show_cpuinfo != NULL)
		ppc_md.show_cpuinfo(m);

#ifdef CONFIG_PPC32
	/* Display the amount of memory */
	seq_printf(m, "Memory\t\t: %d MB\n",
		   (unsigned int)(total_memory / (1024 * 1024)));
#endif
}

232 233 234 235
static int show_cpuinfo(struct seq_file *m, void *v)
{
	unsigned long cpu_id = (unsigned long)v - 1;
	unsigned int pvr;
236
	unsigned long proc_freq;
237 238 239 240 241 242 243 244 245 246 247 248
	unsigned short maj;
	unsigned short min;

	/* We only show online cpus: disable preempt (overzealous, I
	 * knew) to prevent cpu going down. */
	preempt_disable();
	if (!cpu_online(cpu_id)) {
		preempt_enable();
		return 0;
	}

#ifdef CONFIG_SMP
249
	pvr = per_cpu(cpu_pvr, cpu_id);
250 251 252 253 254 255 256 257 258
#else
	pvr = mfspr(SPRN_PVR);
#endif
	maj = (pvr >> 8) & 0xFF;
	min = pvr & 0xFF;

	seq_printf(m, "processor\t: %lu\n", cpu_id);
	seq_printf(m, "cpu\t\t: ");

259
	if (cur_cpu_spec->pvr_mask && cur_cpu_spec->cpu_name)
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
		seq_printf(m, "%s", cur_cpu_spec->cpu_name);
	else
		seq_printf(m, "unknown (%08x)", pvr);

#ifdef CONFIG_ALTIVEC
	if (cpu_has_feature(CPU_FTR_ALTIVEC))
		seq_printf(m, ", altivec supported");
#endif /* CONFIG_ALTIVEC */

	seq_printf(m, "\n");

#ifdef CONFIG_TAU
	if (cur_cpu_spec->cpu_features & CPU_FTR_TAU) {
#ifdef CONFIG_TAU_AVERAGE
		/* more straightforward, but potentially misleading */
		seq_printf(m,  "temperature \t: %u C (uncalibrated)\n",
276
			   cpu_temp(cpu_id));
277 278 279
#else
		/* show the actual temp sensor range */
		u32 temp;
280
		temp = cpu_temp_both(cpu_id);
281 282 283 284 285 286 287
		seq_printf(m, "temperature \t: %u-%u C (uncalibrated)\n",
			   temp & 0xff, temp >> 16);
#endif
	}
#endif /* CONFIG_TAU */

	/*
288 289 290 291
	 * Platforms that have variable clock rates, should implement
	 * the method ppc_md.get_proc_freq() that reports the clock
	 * rate of a given cpu. The rest can use ppc_proc_freq to
	 * report the clock rate that is same across all cpus.
292
	 */
293 294 295 296 297 298
	if (ppc_md.get_proc_freq)
		proc_freq = ppc_md.get_proc_freq(cpu_id);
	else
		proc_freq = ppc_proc_freq;

	if (proc_freq)
299
		seq_printf(m, "clock\t\t: %lu.%06luMHz\n",
300
			   proc_freq / 1000000, proc_freq % 1000000);
301 302 303 304 305 306 307

	if (ppc_md.show_percpuinfo != NULL)
		ppc_md.show_percpuinfo(m, cpu_id);

	/* If we are a Freescale core do a simple check so
	 * we dont have to keep adding cases in the future */
	if (PVR_VER(pvr) & 0x8000) {
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
		switch (PVR_VER(pvr)) {
		case 0x8000:	/* 7441/7450/7451, Voyager */
		case 0x8001:	/* 7445/7455, Apollo 6 */
		case 0x8002:	/* 7447/7457, Apollo 7 */
		case 0x8003:	/* 7447A, Apollo 7 PM */
		case 0x8004:	/* 7448, Apollo 8 */
		case 0x800c:	/* 7410, Nitro */
			maj = ((pvr >> 8) & 0xF);
			min = PVR_MIN(pvr);
			break;
		default:	/* e500/book-e */
			maj = PVR_MAJ(pvr);
			min = PVR_MIN(pvr);
			break;
		}
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
	} else {
		switch (PVR_VER(pvr)) {
			case 0x0020:	/* 403 family */
				maj = PVR_MAJ(pvr) + 1;
				min = PVR_MIN(pvr);
				break;
			case 0x1008:	/* 740P/750P ?? */
				maj = ((pvr >> 8) & 0xFF) - 1;
				min = pvr & 0xFF;
				break;
			default:
				maj = (pvr >> 8) & 0xFF;
				min = pvr & 0xFF;
				break;
		}
	}

	seq_printf(m, "revision\t: %hd.%hd (pvr %04x %04x)\n",
		   maj, min, PVR_VER(pvr), PVR_REV(pvr));

#ifdef CONFIG_PPC32
	seq_printf(m, "bogomips\t: %lu.%02lu\n",
		   loops_per_jiffy / (500000/HZ),
		   (loops_per_jiffy / (5000/HZ)) % 100);
#endif

#ifdef CONFIG_SMP
	seq_printf(m, "\n");
#endif

	preempt_enable();
354 355 356 357 358

	/* If this is the last cpu, print the summary */
	if (cpumask_next(cpu_id, cpu_online_mask) >= nr_cpu_ids)
		show_cpuinfo_summary(m);

359 360 361 362 363
	return 0;
}

static void *c_start(struct seq_file *m, loff_t *pos)
{
364 365 366 367 368 369 370
	if (*pos == 0)	/* just in case, cpu 0 is not the first */
		*pos = cpumask_first(cpu_online_mask);
	else
		*pos = cpumask_next(*pos - 1, cpu_online_mask);
	if ((*pos) < nr_cpu_ids)
		return (void *)(unsigned long)(*pos + 1);
	return NULL;
371 372 373 374
}

static void *c_next(struct seq_file *m, void *v, loff_t *pos)
{
375
	(*pos)++;
376 377 378 379 380 381 382
	return c_start(m, pos);
}

static void c_stop(struct seq_file *m, void *v)
{
}

J
James Morris 已提交
383
const struct seq_operations cpuinfo_op = {
384 385 386 387 388 389
	.start =c_start,
	.next =	c_next,
	.stop =	c_stop,
	.show =	show_cpuinfo,
};

390 391 392
void __init check_for_initrd(void)
{
#ifdef CONFIG_BLK_DEV_INITRD
393 394
	DBG(" -> check_for_initrd()  initrd_start=0x%lx  initrd_end=0x%lx\n",
	    initrd_start, initrd_end);
395 396 397 398

	/* If we were passed an initrd, set the ROOT_DEV properly if the values
	 * look sensible. If not, clear initrd reference.
	 */
399
	if (is_kernel_addr(initrd_start) && is_kernel_addr(initrd_end) &&
400 401
	    initrd_end > initrd_start)
		ROOT_DEV = Root_RAM0;
402
	else
403 404 405
		initrd_start = initrd_end = 0;

	if (initrd_start)
406
		pr_info("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end);
407 408 409 410 411

	DBG(" <- check_for_initrd()\n");
#endif /* CONFIG_BLK_DEV_INITRD */
}

P
Paul Mackerras 已提交
412 413
#ifdef CONFIG_SMP

414
int threads_per_core, threads_per_subcore, threads_shift;
415
cpumask_t threads_core_mask;
416
EXPORT_SYMBOL_GPL(threads_per_core);
417
EXPORT_SYMBOL_GPL(threads_per_subcore);
418 419
EXPORT_SYMBOL_GPL(threads_shift);
EXPORT_SYMBOL_GPL(threads_core_mask);
420 421 422 423 424 425

static void __init cpu_init_thread_core_maps(int tpc)
{
	int i;

	threads_per_core = tpc;
426
	threads_per_subcore = tpc;
427
	cpumask_clear(&threads_core_mask);
428 429 430 431 432 433 434 435

	/* This implementation only supports power of 2 number of threads
	 * for simplicity and performance
	 */
	threads_shift = ilog2(tpc);
	BUG_ON(tpc != (1 << threads_shift));

	for (i = 0; i < tpc; i++)
436
		cpumask_set_cpu(i, &threads_core_mask);
437 438 439 440 441 442 443

	printk(KERN_INFO "CPU maps initialized for %d thread%s per core\n",
	       tpc, tpc > 1 ? "s" : "");
	printk(KERN_DEBUG " (thread shift is %d)\n", threads_shift);
}


P
Paul Mackerras 已提交
444 445
/**
 * setup_cpu_maps - initialize the following cpu maps:
446 447
 *                  cpu_possible_mask
 *                  cpu_present_mask
P
Paul Mackerras 已提交
448 449
 *
 * Having the possible map set up early allows us to restrict allocations
450
 * of things like irqstacks to nr_cpu_ids rather than NR_CPUS.
P
Paul Mackerras 已提交
451 452
 *
 * We do not initialize the online map here; cpus set their own bits in
453
 * cpu_online_mask as they come up.
P
Paul Mackerras 已提交
454 455 456 457 458
 *
 * This function is valid only for Open Firmware systems.  finish_device_tree
 * must be called before using this.
 *
 * While we're here, we may as well set the "physical" cpu ids in the paca.
459 460
 *
 * NOTE: This must match the parsing done in early_init_dt_scan_cpus.
P
Paul Mackerras 已提交
461 462 463 464 465
 */
void __init smp_setup_cpu_maps(void)
{
	struct device_node *dn = NULL;
	int cpu = 0;
466 467 468
	int nthreads = 1;

	DBG("smp_setup_cpu_maps()\n");
P
Paul Mackerras 已提交
469

470
	while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < nr_cpu_ids) {
471
		const __be32 *intserv;
472
		__be32 cpu_be;
473 474 475
		int j, len;

		DBG("  * %s...\n", dn->full_name);
P
Paul Mackerras 已提交
476

477 478
		intserv = of_get_property(dn, "ibm,ppc-interrupt-server#s",
				&len);
479 480 481 482 483
		if (intserv) {
			DBG("    ibm,ppc-interrupt-server#s -> %d threads\n",
			    nthreads);
		} else {
			DBG("    no ibm,ppc-interrupt-server#s -> 1 thread\n");
484
			intserv = of_get_property(dn, "reg", &len);
485 486 487
			if (!intserv) {
				cpu_be = cpu_to_be32(cpu);
				intserv = &cpu_be;	/* assume logical == phys */
488
				len = 4;
489
			}
P
Paul Mackerras 已提交
490 491
		}

492 493
		nthreads = len / sizeof(int);

494
		for (j = 0; j < nthreads && cpu < nr_cpu_ids; j++) {
495 496
			bool avail;

497
			DBG("    thread %d -> cpu %d (hard id %d)\n",
498
			    j, cpu, be32_to_cpu(intserv[j]));
499 500 501 502 503 504 505

			avail = of_device_is_available(dn);
			if (!avail)
				avail = !of_property_match_string(dn,
						"enable-method", "spin-table");

			set_cpu_present(cpu, avail);
506
			set_hard_smp_processor_id(cpu, be32_to_cpu(intserv[j]));
507
			set_cpu_possible(cpu, true);
P
Paul Mackerras 已提交
508 509 510 511
			cpu++;
		}
	}

512 513 514 515 516 517
	/* If no SMT supported, nthreads is forced to 1 */
	if (!cpu_has_feature(CPU_FTR_SMT)) {
		DBG("  SMT disabled ! nthreads forced to 1\n");
		nthreads = 1;
	}

P
Paul Mackerras 已提交
518 519 520 521 522
#ifdef CONFIG_PPC64
	/*
	 * On pSeries LPAR, we need to know how many cpus
	 * could possibly be added to this partition.
	 */
523
	if (firmware_has_feature(FW_FEATURE_LPAR) &&
524
	    (dn = of_find_node_by_path("/rtas"))) {
P
Paul Mackerras 已提交
525
		int num_addr_cell, num_size_cell, maxcpus;
526
		const __be32 *ireg;
P
Paul Mackerras 已提交
527

528
		num_addr_cell = of_n_addr_cells(dn);
529
		num_size_cell = of_n_size_cells(dn);
P
Paul Mackerras 已提交
530

531
		ireg = of_get_property(dn, "ibm,lrdr-capacity", NULL);
P
Paul Mackerras 已提交
532 533 534 535

		if (!ireg)
			goto out;

536
		maxcpus = be32_to_cpup(ireg + num_addr_cell + num_size_cell);
P
Paul Mackerras 已提交
537 538 539

		/* Double maxcpus for processors which have SMT capability */
		if (cpu_has_feature(CPU_FTR_SMT))
540
			maxcpus *= nthreads;
P
Paul Mackerras 已提交
541

542
		if (maxcpus > nr_cpu_ids) {
P
Paul Mackerras 已提交
543 544 545
			printk(KERN_WARNING
			       "Partition configured for %d cpus, "
			       "operating system maximum is %d.\n",
546 547
			       maxcpus, nr_cpu_ids);
			maxcpus = nr_cpu_ids;
P
Paul Mackerras 已提交
548 549 550 551 552
		} else
			printk(KERN_INFO "Partition configured for %d cpus.\n",
			       maxcpus);

		for (cpu = 0; cpu < maxcpus; cpu++)
553
			set_cpu_possible(cpu, true);
P
Paul Mackerras 已提交
554 555 556
	out:
		of_node_put(dn);
	}
557 558
	vdso_data->processorCount = num_present_cpus();
#endif /* CONFIG_PPC64 */
559 560 561 562 563 564 565 566

        /* Initialize CPU <=> thread mapping/
	 *
	 * WARNING: We assume that the number of threads is the same for
	 * every CPU in the system. If that is not the case, then some code
	 * here will have to be reworked
	 */
	cpu_init_thread_core_maps(nthreads);
567

568
	/* Now that possible cpus are set, set nr_cpu_ids for later use */
569
	setup_nr_cpu_ids();
570

571
	free_unused_pacas();
572
}
P
Paul Mackerras 已提交
573
#endif /* CONFIG_SMP */
574

575
#ifdef CONFIG_PCSPKR_PLATFORM
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
static __init int add_pcspkr(void)
{
	struct device_node *np;
	struct platform_device *pd;
	int ret;

	np = of_find_compatible_node(NULL, NULL, "pnpPNP,100");
	of_node_put(np);
	if (!np)
		return -ENODEV;

	pd = platform_device_alloc("pcspkr", -1);
	if (!pd)
		return -ENOMEM;

	ret = platform_device_add(pd);
	if (ret)
		platform_device_put(pd);

	return ret;
}
device_initcall(add_pcspkr);
598
#endif	/* CONFIG_PCSPKR_PLATFORM */
D
Dmitry Torokhov 已提交
599

600 601 602 603
void probe_machine(void)
{
	extern struct machdep_calls __machine_desc_start;
	extern struct machdep_calls __machine_desc_end;
604
	unsigned int i;
605 606 607 608 609 610 611

	/*
	 * Iterate all ppc_md structures until we find the proper
	 * one for the current machine type
	 */
	DBG("Probing machine type ...\n");

612 613 614 615 616 617 618 619 620 621 622
	/*
	 * Check ppc_md is empty, if not we have a bug, ie, we setup an
	 * entry before probe_machine() which will be overwritten
	 */
	for (i = 0; i < (sizeof(ppc_md) / sizeof(void *)); i++) {
		if (((void **)&ppc_md)[i]) {
			printk(KERN_ERR "Entry %d in ppc_md non empty before"
			       " machine probe !\n", i);
		}
	}

623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
	for (machine_id = &__machine_desc_start;
	     machine_id < &__machine_desc_end;
	     machine_id++) {
		DBG("  %s ...", machine_id->name);
		memcpy(&ppc_md, machine_id, sizeof(struct machdep_calls));
		if (ppc_md.probe()) {
			DBG(" match !\n");
			break;
		}
		DBG("\n");
	}
	/* What can we do if we didn't find ? */
	if (machine_id >= &__machine_desc_end) {
		DBG("No suitable machine found !\n");
		for (;;);
	}

	printk(KERN_INFO "Using %s machine description\n", ppc_md.name);
}
642

643
/* Match a class of boards, not a specific device configuration. */
644 645
int check_legacy_ioport(unsigned long base_port)
{
646 647 648 649 650
	struct device_node *parent, *np = NULL;
	int ret = -ENODEV;

	switch(base_port) {
	case I8042_DATA_REG:
651 652 653 654
		if (!(np = of_find_compatible_node(NULL, NULL, "pnpPNP,303")))
			np = of_find_compatible_node(NULL, NULL, "pnpPNP,f03");
		if (np) {
			parent = of_get_parent(np);
655 656 657 658 659 660 661 662 663

			of_i8042_kbd_irq = irq_of_parse_and_map(parent, 0);
			if (!of_i8042_kbd_irq)
				of_i8042_kbd_irq = 1;

			of_i8042_aux_irq = irq_of_parse_and_map(parent, 1);
			if (!of_i8042_aux_irq)
				of_i8042_aux_irq = 12;

664 665 666 667
			of_node_put(np);
			np = parent;
			break;
		}
668
		np = of_find_node_by_type(NULL, "8042");
669 670 671 672
		/* Pegasos has no device_type on its 8042 node, look for the
		 * name instead */
		if (!np)
			np = of_find_node_by_name(NULL, "8042");
673 674 675 676
		if (np) {
			of_i8042_kbd_irq = 1;
			of_i8042_aux_irq = 12;
		}
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
		break;
	case FDC_BASE: /* FDC1 */
		np = of_find_node_by_type(NULL, "fdc");
		break;
	default:
		/* ipmi is supposed to fail here */
		break;
	}
	if (!np)
		return ret;
	parent = of_get_parent(np);
	if (parent) {
		if (strcmp(parent->type, "isa") == 0)
			ret = 0;
		of_node_put(parent);
	}
	of_node_put(np);
	return ret;
695 696
}
EXPORT_SYMBOL(check_legacy_ioport);
697 698 699 700

static int ppc_panic_event(struct notifier_block *this,
                             unsigned long event, void *ptr)
{
701 702 703 704 705
	/*
	 * If firmware-assisted dump has been registered then trigger
	 * firmware-assisted dump and let firmware handle everything else.
	 */
	crash_fadump(NULL, ptr);
706 707 708 709 710 711 712 713 714 715 716
	ppc_md.panic(ptr);  /* May not return */
	return NOTIFY_DONE;
}

static struct notifier_block ppc_panic_block = {
	.notifier_call = ppc_panic_event,
	.priority = INT_MIN /* may not return; must be done last */
};

void __init setup_panic(void)
{
717 718
	if (!ppc_md.panic)
		return;
719 720
	atomic_notifier_chain_register(&panic_notifier_list, &ppc_panic_block);
}
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761

#ifdef CONFIG_CHECK_CACHE_COHERENCY
/*
 * For platforms that have configurable cache-coherency.  This function
 * checks that the cache coherency setting of the kernel matches the setting
 * left by the firmware, as indicated in the device tree.  Since a mismatch
 * will eventually result in DMA failures, we print * and error and call
 * BUG() in that case.
 */

#ifdef CONFIG_NOT_COHERENT_CACHE
#define KERNEL_COHERENCY	0
#else
#define KERNEL_COHERENCY	1
#endif

static int __init check_cache_coherency(void)
{
	struct device_node *np;
	const void *prop;
	int devtree_coherency;

	np = of_find_node_by_path("/");
	prop = of_get_property(np, "coherency-off", NULL);
	of_node_put(np);

	devtree_coherency = prop ? 0 : 1;

	if (devtree_coherency != KERNEL_COHERENCY) {
		printk(KERN_ERR
			"kernel coherency:%s != device tree_coherency:%s\n",
			KERNEL_COHERENCY ? "on" : "off",
			devtree_coherency ? "on" : "off");
		BUG();
	}

	return 0;
}

late_initcall(check_cache_coherency);
#endif /* CONFIG_CHECK_CACHE_COHERENCY */
762 763 764

#ifdef CONFIG_DEBUG_FS
struct dentry *powerpc_debugfs_root;
765
EXPORT_SYMBOL(powerpc_debugfs_root);
766 767 768 769 770 771 772 773 774

static int powerpc_debugfs_init(void)
{
	powerpc_debugfs_root = debugfs_create_dir("powerpc", NULL);

	return powerpc_debugfs_root == NULL;
}
arch_initcall(powerpc_debugfs_init);
#endif
775

776
void ppc_printk_progress(char *s, unsigned short hex)
777
{
778
	pr_info("%s\n", s);
779 780
}

781
void arch_setup_pdev_archdata(struct platform_device *pdev)
782
{
783 784 785
	pdev->archdata.dma_mask = DMA_BIT_MASK(32);
	pdev->dev.dma_mask = &pdev->archdata.dma_mask;
 	set_dma_ops(&pdev->dev, &dma_direct_ops);
786
}
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922

static __init void print_system_info(void)
{
	pr_info("-----------------------------------------------------\n");
#ifdef CONFIG_PPC_STD_MMU_64
	pr_info("ppc64_pft_size    = 0x%llx\n", ppc64_pft_size);
#endif
#ifdef CONFIG_PPC_STD_MMU_32
	pr_info("Hash_size         = 0x%lx\n", Hash_size);
#endif
	pr_info("phys_mem_size     = 0x%llx\n",
		(unsigned long long)memblock_phys_mem_size());

	pr_info("dcache_bsize      = 0x%x\n", dcache_bsize);
	pr_info("icache_bsize      = 0x%x\n", icache_bsize);
	if (ucache_bsize != 0)
		pr_info("ucache_bsize      = 0x%x\n", ucache_bsize);

	pr_info("cpu_features      = 0x%016lx\n", cur_cpu_spec->cpu_features);
	pr_info("  possible        = 0x%016lx\n",
		(unsigned long)CPU_FTRS_POSSIBLE);
	pr_info("  always          = 0x%016lx\n",
		(unsigned long)CPU_FTRS_ALWAYS);
	pr_info("cpu_user_features = 0x%08x 0x%08x\n",
		cur_cpu_spec->cpu_user_features,
		cur_cpu_spec->cpu_user_features2);
	pr_info("mmu_features      = 0x%08x\n", cur_cpu_spec->mmu_features);
#ifdef CONFIG_PPC64
	pr_info("firmware_features = 0x%016lx\n", powerpc_firmware_features);
#endif

#ifdef CONFIG_PPC_STD_MMU_64
	if (htab_address)
		pr_info("htab_address      = 0x%p\n", htab_address);
	if (htab_hash_mask)
		pr_info("htab_hash_mask    = 0x%lx\n", htab_hash_mask);
#endif
#ifdef CONFIG_PPC_STD_MMU_32
	if (Hash)
		pr_info("Hash              = 0x%p\n", Hash);
	if (Hash_mask)
		pr_info("Hash_mask         = 0x%lx\n", Hash_mask);
#endif

	if (PHYSICAL_START > 0)
		pr_info("physical_start    = 0x%llx\n",
		       (unsigned long long)PHYSICAL_START);
	pr_info("-----------------------------------------------------\n");
}

/*
 * Called into from start_kernel this initializes memblock, which is used
 * to manage page allocation until mem_init is called.
 */
void __init setup_arch(char **cmdline_p)
{
	*cmdline_p = boot_command_line;

	/* Set a half-reasonable default so udelay does something sensible */
	loops_per_jiffy = 500000000 / HZ;

	/* Unflatten the device-tree passed by prom_init or kexec */
	unflatten_device_tree();

	/*
	 * Initialize cache line/block info from device-tree (on ppc64) or
	 * just cputable (on ppc32).
	 */
	initialize_cache_info();

	/* Initialize RTAS if available. */
	rtas_initialize();

	/* Check if we have an initrd provided via the device-tree. */
	check_for_initrd();

	/* Probe the machine type, establish ppc_md. */
	probe_machine();

	/* Setup panic notifier if requested by the platform. */
	setup_panic();

	/*
	 * Configure ppc_md.power_save (ppc32 only, 64-bit machines do
	 * it from their respective probe() function.
	 */
	setup_power_save();

	/* Discover standard serial ports. */
	find_legacy_serial_ports();

	/* Register early console with the printk subsystem. */
	register_early_udbg_console();

	/* Setup the various CPU maps based on the device-tree. */
	smp_setup_cpu_maps();

	/* Initialize xmon. */
	xmon_setup();

	/* Check the SMT related command line arguments (ppc64). */
	check_smt_enabled();

	/* On BookE, setup per-core TLB data structures. */
	setup_tlb_core_data();

	/*
	 * Release secondary cpus out of their spinloops at 0x60 now that
	 * we can map physical -> logical CPU ids.
	 *
	 * Freescale Book3e parts spin in a loop provided by firmware,
	 * so smp_release_cpus() does nothing for them.
	 */
#ifdef CONFIG_SMP
	smp_release_cpus();
#endif

	/* Print various info about the machine that has been gathered so far. */
	print_system_info();

	/* Reserve large chunks of memory for use by CMA for KVM. */
	kvm_cma_reserve();

	/*
	 * Reserve any gigantic pages requested on the command line.
	 * memblock needs to have been initialized by the time this is
	 * called since this will reserve memory.
	 */
	reserve_hugetlb_gpages();

	klp_init_thread_info(&init_thread_info);

	init_mm.start_code = (unsigned long)_stext;
	init_mm.end_code = (unsigned long) _etext;
	init_mm.end_data = (unsigned long) _edata;
	init_mm.brk = klimit;
923 924 925

#ifdef CONFIG_PPC_MM_SLICES
#ifdef CONFIG_PPC64
926
	init_mm.context.addr_limit = TASK_SIZE_128TB;
927 928 929 930 931
#else
#error	"context.addr_limit not initialized."
#endif
#endif

932 933 934 935
#ifdef CONFIG_PPC_64K_PAGES
	init_mm.context.pte_frag = NULL;
#endif
#ifdef CONFIG_SPAPR_TCE_IOMMU
936
	mm_iommu_init(&init_mm);
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
#endif
	irqstack_early_init();
	exc_lvl_early_init();
	emergency_stack_init();

	initmem_init();

#ifdef CONFIG_DUMMY_CONSOLE
	conswitchp = &dummy_con;
#endif
	if (ppc_md.setup_arch)
		ppc_md.setup_arch();

	paging_init();

	/* Initialize the MMU context management stuff. */
	mmu_context_init();

#ifdef CONFIG_PPC64
	/* Interrupt code needs to be 64K-aligned. */
	if ((unsigned long)_stext & 0xffff)
		panic("Kernelbase not 64K-aligned (0x%lx)!\n",
		      (unsigned long)_stext);
#endif
}