setup.c 10.7 KB
Newer Older
P
Paul Mundt 已提交
1
/*
2
 * arch/sh/kernel/setup.c
L
Linus Torvalds 已提交
3 4
 *
 * This file handles the architecture-dependent parts of initialization
5 6
 *
 *  Copyright (C) 1999  Niibe Yutaka
7
 *  Copyright (C) 2002 - 2007 Paul Mundt
L
Linus Torvalds 已提交
8
 */
9
#include <linux/screen_info.h>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/initrd.h>
#include <linux/bootmem.h>
#include <linux/console.h>
#include <linux/seq_file.h>
#include <linux/root_dev.h>
#include <linux/utsname.h>
18
#include <linux/nodemask.h>
L
Linus Torvalds 已提交
19
#include <linux/cpu.h>
D
Dave Hansen 已提交
20
#include <linux/pfn.h>
P
Paul Mundt 已提交
21
#include <linux/fs.h>
22
#include <linux/mm.h>
P
Paul Mundt 已提交
23
#include <linux/kexec.h>
24
#include <linux/module.h>
25
#include <linux/smp.h>
L
Linus Torvalds 已提交
26 27
#include <asm/uaccess.h>
#include <asm/io.h>
28
#include <asm/page.h>
L
Linus Torvalds 已提交
29 30 31
#include <asm/sections.h>
#include <asm/irq.h>
#include <asm/setup.h>
32
#include <asm/clock.h>
33
#include <asm/mmu_context.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39

/*
 * Initialize loops_per_jiffy as 10000000 (1000MIPS).
 * This value will be used at the very early stage of serial setup.
 * The bigger value means no problem.
 */
P
Paul Mundt 已提交
40 41 42 43 44 45 46
struct sh_cpuinfo cpu_data[NR_CPUS] __read_mostly = {
	[0] = {
		.type			= CPU_SH_NONE,
		.loops_per_jiffy	= 10000000,
	},
};
EXPORT_SYMBOL(cpu_data);
P
Paul Mundt 已提交
47 48 49 50 51

/*
 * The machine vector. First entry in .machvec.init, or clobbered by
 * sh_mv= on the command line, prior to .machvec.init teardown.
 */
52
struct sh_machine_vector sh_mv = { .mv_name = "generic", };
P
Paul Mundt 已提交
53

P
Paul Mundt 已提交
54
#ifdef CONFIG_VT
L
Linus Torvalds 已提交
55
struct screen_info screen_info;
P
Paul Mundt 已提交
56
#endif
L
Linus Torvalds 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

extern int root_mountflags;

/*
 * This is set up by the setup-routine at boot-time
 */
#define PARAM	((unsigned char *)empty_zero_page)

#define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
#define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
#define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
#define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
#define INITRD_START (*(unsigned long *) (PARAM+0x010))
#define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
/* ... */
#define COMMAND_LINE ((char *) (PARAM+0x100))

74
#define RAMDISK_IMAGE_START_MASK	0x07FF
L
Linus Torvalds 已提交
75
#define RAMDISK_PROMPT_FLAG		0x8000
76
#define RAMDISK_LOAD_FLAG		0x4000
L
Linus Torvalds 已提交
77

78
static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, };
L
Linus Torvalds 已提交
79

P
Paul Mundt 已提交
80 81
static struct resource code_resource = { .name = "Kernel code", };
static struct resource data_resource = { .name = "Kernel data", };
L
Linus Torvalds 已提交
82

83 84
unsigned long memory_start;
EXPORT_SYMBOL(memory_start);
P
Paul Mundt 已提交
85
unsigned long memory_end = 0;
86
EXPORT_SYMBOL(memory_end);
L
Linus Torvalds 已提交
87

P
Paul Mundt 已提交
88
static int __init early_parse_mem(char *p)
L
Linus Torvalds 已提交
89
{
P
Paul Mundt 已提交
90
	unsigned long size;
L
Linus Torvalds 已提交
91 92

	memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
P
Paul Mundt 已提交
93 94
	size = memparse(p, &p);
	memory_end = memory_start + size;
P
Paul Mundt 已提交
95

L
Linus Torvalds 已提交
96 97
	return 0;
}
P
Paul Mundt 已提交
98
early_param("mem", early_parse_mem);
L
Linus Torvalds 已提交
99

100 101 102 103
/*
 * Register fully available low RAM pages with the bootmem allocator.
 */
static void __init register_bootmem_low_pages(void)
L
Linus Torvalds 已提交
104
{
105
	unsigned long curr_pfn, last_pfn, pages;
106

L
Linus Torvalds 已提交
107
	/*
108
	 * We are rounding up the start address of usable memory:
L
Linus Torvalds 已提交
109
	 */
110
	curr_pfn = PFN_UP(__MEMORY_START);
L
Linus Torvalds 已提交
111 112

	/*
113
	 * ... and at the end of the usable range downwards:
L
Linus Torvalds 已提交
114
	 */
115
	last_pfn = PFN_DOWN(__pa(memory_end));
L
Linus Torvalds 已提交
116

117 118 119 120 121 122 123
	if (last_pfn > max_low_pfn)
		last_pfn = max_low_pfn;

	pages = last_pfn - curr_pfn;
	free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(pages));
}

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
#ifdef CONFIG_KEXEC
static void __init reserve_crashkernel(void)
{
	unsigned long long free_mem;
	unsigned long long crash_size, crash_base;
	int ret;

	free_mem = ((unsigned long long)max_low_pfn - min_low_pfn) << PAGE_SHIFT;

	ret = parse_crashkernel(boot_command_line, free_mem,
			&crash_size, &crash_base);
	if (ret == 0 && crash_size) {
		if (crash_base > 0) {
			printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
					"for crashkernel (System RAM: %ldMB)\n",
					(unsigned long)(crash_size >> 20),
					(unsigned long)(crash_base >> 20),
					(unsigned long)(free_mem >> 20));
			crashk_res.start = crash_base;
			crashk_res.end   = crash_base + crash_size - 1;
			reserve_bootmem(crash_base, crash_size);
		} else
			printk(KERN_INFO "crashkernel reservation failed - "
					"you have to specify a base address\n");
	}
}
#else
static inline void __init reserve_crashkernel(void)
{}
#endif

155
void __init setup_bootmem_allocator(unsigned long free_pfn)
156 157
{
	unsigned long bootmap_size;
L
Linus Torvalds 已提交
158 159 160 161 162 163

	/*
	 * Find a proper area for the bootmem bitmap. After this
	 * bootstrap step all allocations (until the page allocator
	 * is intact) must be done via bootmem_alloc().
	 */
164
	bootmap_size = init_bootmem_node(NODE_DATA(0), free_pfn,
165
					 min_low_pfn, max_low_pfn);
L
Linus Torvalds 已提交
166

P
Paul Mundt 已提交
167
	add_active_range(0, min_low_pfn, max_low_pfn);
168
	register_bootmem_low_pages();
L
Linus Torvalds 已提交
169

170
	node_set_online(0);
171

L
Linus Torvalds 已提交
172 173 174 175 176 177 178
	/*
	 * Reserve the kernel text and
	 * Reserve the bootmem bitmap. We do this in two steps (first step
	 * was init_bootmem()), because this catches the (definitely buggy)
	 * case of us accidentally initializing the bootmem allocator with
	 * an invalid RAM area.
	 */
179
	reserve_bootmem(__MEMORY_START+PAGE_SIZE,
180
		(PFN_PHYS(free_pfn)+bootmap_size+PAGE_SIZE-1)-__MEMORY_START);
L
Linus Torvalds 已提交
181 182 183 184 185

	/*
	 * reserve physical page 0 - it's a special BIOS page on many boxes,
	 * enabling clean reboots, SMP operation, laptop functions.
	 */
186
	reserve_bootmem(__MEMORY_START, PAGE_SIZE);
L
Linus Torvalds 已提交
187

188 189
	sparse_memory_present_with_active_regions(0);

L
Linus Torvalds 已提交
190
#ifdef CONFIG_BLK_DEV_INITRD
191
	ROOT_DEV = Root_RAM0;
L
Linus Torvalds 已提交
192 193 194

	if (LOADER_TYPE && INITRD_START) {
		if (INITRD_START + INITRD_SIZE <= (max_low_pfn << PAGE_SHIFT)) {
195 196
			reserve_bootmem(INITRD_START + __MEMORY_START,
					INITRD_SIZE);
P
Paul Mundt 已提交
197 198
			initrd_start = INITRD_START + PAGE_OFFSET +
					__MEMORY_START;
L
Linus Torvalds 已提交
199 200 201 202 203 204 205 206 207 208
			initrd_end = initrd_start + INITRD_SIZE;
		} else {
			printk("initrd extends beyond end of memory "
			    "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
				    INITRD_START + INITRD_SIZE,
				    max_low_pfn << PAGE_SHIFT);
			initrd_start = 0;
		}
	}
#endif
209 210

	reserve_crashkernel();
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
}

#ifndef CONFIG_NEED_MULTIPLE_NODES
static void __init setup_memory(void)
{
	unsigned long start_pfn;

	/*
	 * Partially used pages are not usable - thus
	 * we are rounding upwards:
	 */
	start_pfn = PFN_UP(__pa(_end));
	setup_bootmem_allocator(start_pfn);
}
#else
extern void __init setup_memory(void);
#endif

void __init setup_arch(char **cmdline_p)
{
	enable_mmu();

	ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);

#ifdef CONFIG_BLK_DEV_RAM
	rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
	rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
	rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
#endif

	if (!MOUNT_ROOT_RDONLY)
		root_mountflags &= ~MS_RDONLY;
	init_mm.start_code = (unsigned long) _text;
	init_mm.end_code = (unsigned long) _etext;
	init_mm.end_data = (unsigned long) _edata;
	init_mm.brk = (unsigned long) _end;

	code_resource.start = virt_to_phys(_text);
	code_resource.end = virt_to_phys(_etext)-1;
	data_resource.start = virt_to_phys(_etext);
	data_resource.end = virt_to_phys(_edata)-1;

P
Paul Mundt 已提交
253
	memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
P
Paul Mundt 已提交
254 255
	if (!memory_end)
		memory_end = memory_start + __MEMORY_SIZE;
P
Paul Mundt 已提交
256

257 258 259 260 261
#ifdef CONFIG_CMDLINE_BOOL
	strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line));
#else
	strlcpy(command_line, COMMAND_LINE, sizeof(command_line));
#endif
P
Paul Mundt 已提交
262

263 264
	/* Save unparsed command line copy for /proc/cmdline */
	memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
P
Paul Mundt 已提交
265 266
	*cmdline_p = command_line;

267 268
	parse_early_param();

P
Paul Mundt 已提交
269
	sh_mv_setup();
270 271 272 273 274 275 276 277 278 279 280 281 282

	/*
	 * Find the highest page frame number we have available
	 */
	max_pfn = PFN_DOWN(__pa(memory_end));

	/*
	 * Determine low and high memory ranges:
	 */
	max_low_pfn = max_pfn;
	min_low_pfn = __MEMORY_START >> PAGE_SHIFT;

	nodes_clear(node_online_map);
P
Paul Mundt 已提交
283 284

	/* Setup bootmem with available RAM */
285 286
	setup_memory();
	sparse_init();
L
Linus Torvalds 已提交
287 288 289 290 291 292

#ifdef CONFIG_DUMMY_CONSOLE
	conswitchp = &dummy_con;
#endif

	/* Perform the machine specific initialisation */
P
Paul Mundt 已提交
293 294
	if (likely(sh_mv.mv_setup))
		sh_mv.mv_setup(cmdline_p);
L
Linus Torvalds 已提交
295

P
Paul Mundt 已提交
296
	paging_init();
297 298 299 300

#ifdef CONFIG_SMP
	plat_smp_setup();
#endif
P
Paul Mundt 已提交
301
}
L
Linus Torvalds 已提交
302 303

static const char *cpu_name[] = {
304
	[CPU_SH7206]	= "SH7206",	[CPU_SH7619]	= "SH7619",
305 306 307
	[CPU_SH7705]	= "SH7705",	[CPU_SH7706]	= "SH7706",
	[CPU_SH7707]	= "SH7707",	[CPU_SH7708]	= "SH7708",
	[CPU_SH7709]	= "SH7709",	[CPU_SH7710]	= "SH7710",
M
Markus Brunner 已提交
308
	[CPU_SH7712]	= "SH7712",	[CPU_SH7720]	= "SH7720",
309 310 311
	[CPU_SH7729]	= "SH7729",	[CPU_SH7750]	= "SH7750",
	[CPU_SH7750S]	= "SH7750S",	[CPU_SH7750R]	= "SH7750R",
	[CPU_SH7751]	= "SH7751",	[CPU_SH7751R]	= "SH7751R",
312
	[CPU_SH7760]	= "SH7760",
313 314 315 316
	[CPU_ST40RA]	= "ST40RA",	[CPU_ST40GX1]	= "ST40GX1",
	[CPU_SH4_202]	= "SH4-202",	[CPU_SH4_501]	= "SH4-501",
	[CPU_SH7770]	= "SH7770",	[CPU_SH7780]	= "SH7780",
	[CPU_SH7781]	= "SH7781",	[CPU_SH7343]	= "SH7343",
P
Paul Mundt 已提交
317
	[CPU_SH7785]	= "SH7785",	[CPU_SH7722]	= "SH7722",
318
	[CPU_SHX3]	= "SH-X3",	[CPU_SH_NONE]	= "Unknown"
L
Linus Torvalds 已提交
319 320
};

321
const char *get_cpu_subtype(struct sh_cpuinfo *c)
L
Linus Torvalds 已提交
322
{
323
	return cpu_name[c->type];
L
Linus Torvalds 已提交
324 325 326
}

#ifdef CONFIG_PROC_FS
327
/* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
L
Linus Torvalds 已提交
328
static const char *cpu_flags[] = {
329
	"none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
330
	"ptea", "llsc", "l2", "op32", NULL
L
Linus Torvalds 已提交
331 332
};

333
static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
L
Linus Torvalds 已提交
334 335 336 337 338
{
	unsigned long i;

	seq_printf(m, "cpu flags\t:");

339
	if (!c->flags) {
L
Linus Torvalds 已提交
340 341 342 343
		seq_printf(m, " %s\n", cpu_flags[0]);
		return;
	}

344
	for (i = 0; cpu_flags[i]; i++)
345
		if ((c->flags & (1 << i)))
L
Linus Torvalds 已提交
346 347 348 349 350
			seq_printf(m, " %s", cpu_flags[i+1]);

	seq_printf(m, "\n");
}

P
Paul Mundt 已提交
351 352
static void show_cacheinfo(struct seq_file *m, const char *type,
			   struct cache_info info)
L
Linus Torvalds 已提交
353 354 355 356 357
{
	unsigned int cache_size;

	cache_size = info.ways * info.sets * info.linesz;

358 359
	seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
		   type, cache_size >> 10, info.ways);
L
Linus Torvalds 已提交
360 361 362 363 364 365 366
}

/*
 *	Get CPU information for use by the procfs.
 */
static int show_cpuinfo(struct seq_file *m, void *v)
{
367 368 369 370 371
	struct sh_cpuinfo *c = v;
	unsigned int cpu = c - cpu_data;

	if (!cpu_online(cpu))
		return 0;
L
Linus Torvalds 已提交
372

373
	if (cpu == 0)
L
Linus Torvalds 已提交
374 375 376
		seq_printf(m, "machine\t\t: %s\n", get_system_type());

	seq_printf(m, "processor\t: %d\n", cpu);
377
	seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
378
	seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
L
Linus Torvalds 已提交
379

380
	show_cpuflags(m, c);
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388

	seq_printf(m, "cache type\t: ");

	/*
	 * Check for what type of cache we have, we support both the
	 * unified cache on the SH-2 and SH-3, as well as the harvard
	 * style cache on the SH-4.
	 */
389
	if (c->icache.flags & SH_CACHE_COMBINED) {
L
Linus Torvalds 已提交
390
		seq_printf(m, "unified\n");
391
		show_cacheinfo(m, "cache", c->icache);
L
Linus Torvalds 已提交
392 393
	} else {
		seq_printf(m, "split (harvard)\n");
394 395
		show_cacheinfo(m, "icache", c->icache);
		show_cacheinfo(m, "dcache", c->dcache);
L
Linus Torvalds 已提交
396 397
	}

398
	/* Optional secondary cache */
399 400
	if (c->flags & CPU_HAS_L2_CACHE)
		show_cacheinfo(m, "scache", c->scache);
401

L
Linus Torvalds 已提交
402
	seq_printf(m, "bogomips\t: %lu.%02lu\n",
403 404
		     c->loops_per_jiffy/(500000/HZ),
		     (c->loops_per_jiffy/(5000/HZ)) % 100);
L
Linus Torvalds 已提交
405

406
	return 0;
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
}

static void *c_start(struct seq_file *m, loff_t *pos)
{
	return *pos < NR_CPUS ? cpu_data + *pos : NULL;
}
static void *c_next(struct seq_file *m, void *v, loff_t *pos)
{
	++*pos;
	return c_start(m, pos);
}
static void c_stop(struct seq_file *m, void *v)
{
}
struct seq_operations cpuinfo_op = {
	.start	= c_start,
	.next	= c_next,
	.stop	= c_stop,
	.show	= show_cpuinfo,
};
#endif /* CONFIG_PROC_FS */