setup_32.c 7.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Common prep/pmac/chrp boot and setup code.
 */

#include <linux/module.h>
#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>
#include <linux/tty.h>
#include <linux/seq_file.h>
#include <linux/root_dev.h>
#include <linux/cpu.h>
#include <linux/console.h>
Y
Yinghai Lu 已提交
18
#include <linux/memblock.h>
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

#include <asm/io.h>
#include <asm/prom.h>
#include <asm/processor.h>
#include <asm/pgtable.h>
#include <asm/setup.h>
#include <asm/smp.h>
#include <asm/elf.h>
#include <asm/cputable.h>
#include <asm/bootx.h>
#include <asm/btext.h>
#include <asm/machdep.h>
#include <asm/uaccess.h>
#include <asm/pmac_feature.h>
#include <asm/sections.h>
#include <asm/nvram.h>
#include <asm/xmon.h>
36
#include <asm/time.h>
37
#include <asm/serial.h>
38
#include <asm/udbg.h>
39
#include <asm/mmu_context.h>
40
#include <asm/code-patching.h>
41

42 43
#define DBG(fmt...)

44 45
extern void bootx_init(unsigned long r4, unsigned long phys);

P
Paul Mackerras 已提交
46
int boot_cpuid_phys;
47
EXPORT_SYMBOL_GPL(boot_cpuid_phys);
P
Paul Mackerras 已提交
48

49 50
int smp_hw_index[NR_CPUS];

51 52 53 54 55 56 57 58 59 60 61 62 63
unsigned long ISA_DMA_THRESHOLD;
unsigned int DMA_MODE_READ;
unsigned int DMA_MODE_WRITE;

/*
 * 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;

/*
64
 * We're called here very early in the boot.
65 66 67 68 69
 *
 * Note that the kernel may be running at an address which is different
 * from the address that it was linked at, so we must use RELOC/PTRRELOC
 * to access static data (including strings).  -- paulus
 */
S
Steven Rostedt 已提交
70
notrace unsigned long __init early_init(unsigned long dt_ptr)
71 72 73
{
	unsigned long offset = reloc_offset();

74 75
	/* First zero the BSS -- use memset_io, some platforms don't have
	 * caches on yet */
76 77
	memset_io((void __iomem *)PTRRELOC(&__bss_start), 0,
			__bss_stop - __bss_start);
78

79 80 81 82
	/*
	 * Identify the CPU type and fix up code sections
	 * that depend on which cpu we have.
	 */
83
	identify_cpu(offset, mfspr(SPRN_PVR));
84

85
	apply_feature_fixups();
86

87 88 89 90 91
	return KERNELBASE + offset;
}


/*
92 93 94 95
 * This is run before start_kernel(), the kernel has been relocated
 * and we are running with enough of the MMU enabled to have our
 * proper kernel virtual addresses
 *
96 97 98 99 100
 * Find out what kind of machine we're on and save any data we need
 * from the early boot process (devtree is copied on pmac by prom_init()).
 * This is called very early on the boot process, after a minimal
 * MMU environment has been set up but before MMU_init is called.
 */
101 102
extern unsigned int memset_nocache_branch; /* Insn to be replaced by NOP */

103
notrace void __init machine_init(u64 dt_ptr)
104
{
105 106
	/* Enable early debugging if any specified (see udbg.h) */
	udbg_early_init();
107

108
	patch_instruction((unsigned int *)&memcpy, PPC_INST_NOP);
109
	patch_instruction(&memset_nocache_branch, PPC_INST_NOP);
110

111
	/* Do some early initialization based on the flat device tree */
112 113
	early_init_devtree(__va(dt_ptr));

114 115
	early_init_mmu();

116
	setup_kdump_trampoline();
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

/* Checks "l2cr=xxxx" command-line option */
int __init ppc_setup_l2cr(char *str)
{
	if (cpu_has_feature(CPU_FTR_L2CR)) {
		unsigned long val = simple_strtoul(str, NULL, 0);
		printk(KERN_INFO "l2cr set to %lx\n", val);
		_set_L2CR(0);		/* force invalidate by disable cache */
		_set_L2CR(val);		/* and enable it */
	}
	return 1;
}
__setup("l2cr=", ppc_setup_l2cr);

132 133 134 135 136 137 138 139 140 141 142 143
/* Checks "l3cr=xxxx" command-line option */
int __init ppc_setup_l3cr(char *str)
{
	if (cpu_has_feature(CPU_FTR_L3CR)) {
		unsigned long val = simple_strtoul(str, NULL, 0);
		printk(KERN_INFO "l3cr set to %lx\n", val);
		_set_L3CR(val);		/* and enable it */
	}
	return 1;
}
__setup("l3cr=", ppc_setup_l3cr);

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
#ifdef CONFIG_GENERIC_NVRAM

/* Generic nvram hooks used by drivers/char/gen_nvram.c */
unsigned char nvram_read_byte(int addr)
{
	if (ppc_md.nvram_read_val)
		return ppc_md.nvram_read_val(addr);
	return 0xff;
}
EXPORT_SYMBOL(nvram_read_byte);

void nvram_write_byte(unsigned char val, int addr)
{
	if (ppc_md.nvram_write_val)
		ppc_md.nvram_write_val(addr, val);
}
EXPORT_SYMBOL(nvram_write_byte);

162 163 164 165 166 167 168 169
ssize_t nvram_get_size(void)
{
	if (ppc_md.nvram_size)
		return ppc_md.nvram_size();
	return -1;
}
EXPORT_SYMBOL(nvram_get_size);

170 171 172 173 174 175 176 177 178 179 180 181
void nvram_sync(void)
{
	if (ppc_md.nvram_sync)
		ppc_md.nvram_sync();
}
EXPORT_SYMBOL(nvram_sync);

#endif /* CONFIG_NVRAM */

int __init ppc_init(void)
{
	/* clear the progress line */
182 183
	if (ppc_md.progress)
		ppc_md.progress("             ", 0xffff);
184 185 186 187 188 189 190 191 192 193

	/* call platform init */
	if (ppc_md.init != NULL) {
		ppc_md.init();
	}
	return 0;
}

arch_initcall(ppc_init);

194 195 196 197 198
static void __init irqstack_early_init(void)
{
	unsigned int i;

	/* interrupt stacks must be in lowmem, we get that for free on ppc32
199
	 * as the memblock is limited to lowmem by default */
200 201
	for_each_possible_cpu(i) {
		softirq_ctx[i] = (struct thread_info *)
Y
Yinghai Lu 已提交
202
			__va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
203
		hardirq_ctx[i] = (struct thread_info *)
Y
Yinghai Lu 已提交
204
			__va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
205 206 207
	}
}

208 209 210
#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)
static void __init exc_lvl_early_init(void)
{
211
	unsigned int i, hw_cpu;
212 213

	/* interrupt stacks must be in lowmem, we get that for free on ppc32
Y
Yinghai Lu 已提交
214
	 * as the memblock is limited to lowmem by MEMBLOCK_REAL_LIMIT */
215
	for_each_possible_cpu(i) {
216
#ifdef CONFIG_SMP
217
		hw_cpu = get_hard_smp_processor_id(i);
218 219 220 221
#else
		hw_cpu = 0;
#endif

222
		critirq_ctx[hw_cpu] = (struct thread_info *)
Y
Yinghai Lu 已提交
223
			__va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
224
#ifdef CONFIG_BOOKE
225
		dbgirq_ctx[hw_cpu] = (struct thread_info *)
Y
Yinghai Lu 已提交
226
			__va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
227
		mcheckirq_ctx[hw_cpu] = (struct thread_info *)
Y
Yinghai Lu 已提交
228
			__va(memblock_alloc(THREAD_SIZE, THREAD_SIZE));
229 230 231 232 233 234 235
#endif
	}
}
#else
#define exc_lvl_early_init()
#endif

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
static void setup_power_save(void)
{
#ifdef CONFIG_6xx
	if (cpu_has_feature(CPU_FTR_CAN_DOZE) ||
	    cpu_has_feature(CPU_FTR_CAN_NAP))
		ppc_md.power_save = ppc6xx_idle;
#endif

#ifdef CONFIG_E500
	if (cpu_has_feature(CPU_FTR_CAN_DOZE) ||
	    cpu_has_feature(CPU_FTR_CAN_NAP))
		ppc_md.power_save = e500_idle;
#endif
}

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
static __init void initialize_cache_info(void)
{
	/*
	 * Set cache line size based on type of cpu as a default.
	 * Systems with OF can look in the properties on the cpu node(s)
	 * for a possibly more accurate value.
	 */
	dcache_bsize = cur_cpu_spec->dcache_bsize;
	icache_bsize = cur_cpu_spec->icache_bsize;
	ucache_bsize = 0;
	if (cpu_has_feature(CPU_FTR_UNIFIED_ID_CACHE))
		ucache_bsize = icache_bsize = dcache_bsize;
}


266 267 268
/* Warning, IO base is not yet inited */
void __init setup_arch(char **cmdline_p)
{
269
	*cmdline_p = boot_command_line;
270

271 272 273 274
	/* so udelay does something sensible, assume <= 1000 bogomips */
	loops_per_jiffy = 500000000 / HZ;

	unflatten_device_tree();
275
	initialize_cache_info();
276
	check_for_initrd();
277

278 279
	probe_machine();

280 281
	setup_panic();

282 283
	setup_power_save();

284
	find_legacy_serial_ports();
285

286 287
	/* Register early console */
	register_early_udbg_console();
288

289 290
	smp_setup_cpu_maps();

291 292
	xmon_setup();

293
	init_mm.start_code = (unsigned long)_stext;
294 295
	init_mm.end_code = (unsigned long) _etext;
	init_mm.end_data = (unsigned long) _edata;
296
	init_mm.brk = klimit;
297

298 299
	exc_lvl_early_init();

300 301
	irqstack_early_init();

302 303
	initmem_init();
	if ( ppc_md.progress ) ppc_md.progress("setup_arch: initmem", 0x3eab);
304 305 306 307 308

#ifdef CONFIG_DUMMY_CONSOLE
	conswitchp = &dummy_con;
#endif

309 310
	if (ppc_md.setup_arch)
		ppc_md.setup_arch();
311 312 313
	if ( ppc_md.progress ) ppc_md.progress("arch: exit", 0x3eab);

	paging_init();
314 315 316

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