2 * arch/sh/kernel/setup.c
4 * This file handles the architecture-dependent parts of initialization
6 * Copyright (C) 1999 Niibe Yutaka
7 * Copyright (C) 2002 - 2007 Paul Mundt
9 #include <linux/screen_info.h>
10 #include <linux/ioport.h>
11 #include <linux/init.h>
12 #include <linux/initrd.h>
13 #include <linux/bootmem.h>
14 #include <linux/console.h>
15 #include <linux/seq_file.h>
16 #include <linux/root_dev.h>
17 #include <linux/utsname.h>
18 #include <linux/nodemask.h>
19 #include <linux/cpu.h>
20 #include <linux/pfn.h>
23 #include <linux/kexec.h>
24 #include <asm/uaccess.h>
26 #include <asm/sections.h>
28 #include <asm/setup.h>
29 #include <asm/clock.h>
30 #include <asm/mmu_context.h>
32 extern void * __rd_start, * __rd_end;
39 * Initialize loops_per_jiffy as 10000000 (1000MIPS).
40 * This value will be used at the very early stage of serial setup.
41 * The bigger value means no problem.
43 struct sh_cpuinfo boot_cpu_data = { CPU_SH_NONE, 10000000, };
45 struct screen_info screen_info;
48 #if defined(CONFIG_SH_UNKNOWN)
49 struct sh_machine_vector sh_mv;
52 extern int root_mountflags;
54 #define MV_NAME_SIZE 32
56 static struct sh_machine_vector* __init get_mv_byname(const char* name);
59 * This is set up by the setup-routine at boot-time
61 #define PARAM ((unsigned char *)empty_zero_page)
63 #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
64 #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
65 #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
66 #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
67 #define INITRD_START (*(unsigned long *) (PARAM+0x010))
68 #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
70 #define COMMAND_LINE ((char *) (PARAM+0x100))
72 #define RAMDISK_IMAGE_START_MASK 0x07FF
73 #define RAMDISK_PROMPT_FLAG 0x8000
74 #define RAMDISK_LOAD_FLAG 0x4000
76 static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, };
78 static struct resource code_resource = { .name = "Kernel code", };
79 static struct resource data_resource = { .name = "Kernel data", };
81 unsigned long memory_start, memory_end;
83 static inline void parse_cmdline (char ** cmdline_p, char mv_name[MV_NAME_SIZE],
84 struct sh_machine_vector** mvp,
85 unsigned long *mv_io_base)
87 char c = ' ', *to = command_line, *from = COMMAND_LINE;
90 /* Save unparsed command line copy for /proc/cmdline */
91 memcpy(boot_command_line, COMMAND_LINE, COMMAND_LINE_SIZE);
92 boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
94 memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
95 memory_end = memory_start + __MEMORY_SIZE;
99 * "mem=XXX[kKmM]" defines a size of memory.
101 if (c == ' ' && !memcmp(from, "mem=", 4)) {
102 if (to != command_line)
105 unsigned long mem_size;
107 mem_size = memparse(from+4, &from);
108 memory_end = memory_start + mem_size;
112 if (c == ' ' && !memcmp(from, "sh_mv=", 6)) {
116 if (to != command_line)
119 mv_end = strchr(from, ' ');
121 mv_end = from + strlen(from);
123 mv_comma = strchr(from, ',');
124 if ((mv_comma != NULL) && (mv_comma < mv_end)) {
126 get_options(mv_comma+1, ARRAY_SIZE(ints), ints);
127 *mv_io_base = ints[1];
128 mv_len = mv_comma - from;
130 mv_len = mv_end - from;
132 if (mv_len > (MV_NAME_SIZE-1))
133 mv_len = MV_NAME_SIZE-1;
134 memcpy(mv_name, from, mv_len);
135 mv_name[mv_len] = '\0';
138 *mvp = get_mv_byname(mv_name);
144 if (COMMAND_LINE_SIZE <= ++len)
149 *cmdline_p = command_line;
152 static int __init sh_mv_setup(char **cmdline_p)
154 #ifdef CONFIG_SH_UNKNOWN
155 extern struct sh_machine_vector mv_unknown;
157 struct sh_machine_vector *mv = NULL;
158 char mv_name[MV_NAME_SIZE] = "";
159 unsigned long mv_io_base = 0;
161 parse_cmdline(cmdline_p, mv_name, &mv, &mv_io_base);
163 #ifdef CONFIG_SH_UNKNOWN
166 if (*mv_name != '\0') {
167 printk("Warning: Unsupported machine %s, using unknown\n",
175 * Manually walk the vec, fill in anything that the board hasn't yet
176 * by hand, wrapping to the generic implementation.
178 #define mv_set(elem) do { \
179 if (!sh_mv.mv_##elem) \
180 sh_mv.mv_##elem = generic_##elem; \
183 mv_set(inb); mv_set(inw); mv_set(inl);
184 mv_set(outb); mv_set(outw); mv_set(outl);
186 mv_set(inb_p); mv_set(inw_p); mv_set(inl_p);
187 mv_set(outb_p); mv_set(outw_p); mv_set(outl_p);
189 mv_set(insb); mv_set(insw); mv_set(insl);
190 mv_set(outsb); mv_set(outsw); mv_set(outsl);
192 mv_set(readb); mv_set(readw); mv_set(readl);
193 mv_set(writeb); mv_set(writew); mv_set(writel);
196 mv_set(ioport_unmap);
199 #ifdef CONFIG_SH_UNKNOWN
200 __set_io_port_base(mv_io_base);
203 if (!sh_mv.mv_nr_irqs)
204 sh_mv.mv_nr_irqs = NR_IRQS;
210 * Register fully available low RAM pages with the bootmem allocator.
212 static void __init register_bootmem_low_pages(void)
214 unsigned long curr_pfn, last_pfn, pages;
217 * We are rounding up the start address of usable memory:
219 curr_pfn = PFN_UP(__MEMORY_START);
222 * ... and at the end of the usable range downwards:
224 last_pfn = PFN_DOWN(__pa(memory_end));
226 if (last_pfn > max_low_pfn)
227 last_pfn = max_low_pfn;
229 pages = last_pfn - curr_pfn;
230 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(pages));
233 void __init setup_bootmem_allocator(unsigned long start_pfn)
235 unsigned long bootmap_size;
238 * Find a proper area for the bootmem bitmap. After this
239 * bootstrap step all allocations (until the page allocator
240 * is intact) must be done via bootmem_alloc().
242 bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn,
243 min_low_pfn, max_low_pfn);
245 register_bootmem_low_pages();
250 * Reserve the kernel text and
251 * Reserve the bootmem bitmap. We do this in two steps (first step
252 * was init_bootmem()), because this catches the (definitely buggy)
253 * case of us accidentally initializing the bootmem allocator with
254 * an invalid RAM area.
256 reserve_bootmem(__MEMORY_START+PAGE_SIZE,
257 (PFN_PHYS(start_pfn)+bootmap_size+PAGE_SIZE-1)-__MEMORY_START);
260 * reserve physical page 0 - it's a special BIOS page on many boxes,
261 * enabling clean reboots, SMP operation, laptop functions.
263 reserve_bootmem(__MEMORY_START, PAGE_SIZE);
265 #ifdef CONFIG_BLK_DEV_INITRD
266 ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
267 if (&__rd_start != &__rd_end) {
269 INITRD_START = PHYSADDR((unsigned long)&__rd_start) -
271 INITRD_SIZE = (unsigned long)&__rd_end -
272 (unsigned long)&__rd_start;
275 if (LOADER_TYPE && INITRD_START) {
276 if (INITRD_START + INITRD_SIZE <= (max_low_pfn << PAGE_SHIFT)) {
277 reserve_bootmem(INITRD_START + __MEMORY_START,
279 initrd_start = INITRD_START + PAGE_OFFSET +
281 initrd_end = initrd_start + INITRD_SIZE;
283 printk("initrd extends beyond end of memory "
284 "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
285 INITRD_START + INITRD_SIZE,
286 max_low_pfn << PAGE_SHIFT);
292 if (crashk_res.start != crashk_res.end)
293 reserve_bootmem(crashk_res.start,
294 crashk_res.end - crashk_res.start + 1);
298 #ifndef CONFIG_NEED_MULTIPLE_NODES
299 static void __init setup_memory(void)
301 unsigned long start_pfn;
304 * Partially used pages are not usable - thus
305 * we are rounding upwards:
307 start_pfn = PFN_UP(__pa(_end));
308 setup_bootmem_allocator(start_pfn);
311 extern void __init setup_memory(void);
314 void __init setup_arch(char **cmdline_p)
318 #ifdef CONFIG_CMDLINE_BOOL
319 strcpy(COMMAND_LINE, CONFIG_CMDLINE);
322 ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);
324 #ifdef CONFIG_BLK_DEV_RAM
325 rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
326 rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
327 rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
330 if (!MOUNT_ROOT_RDONLY)
331 root_mountflags &= ~MS_RDONLY;
332 init_mm.start_code = (unsigned long) _text;
333 init_mm.end_code = (unsigned long) _etext;
334 init_mm.end_data = (unsigned long) _edata;
335 init_mm.brk = (unsigned long) _end;
337 code_resource.start = virt_to_phys(_text);
338 code_resource.end = virt_to_phys(_etext)-1;
339 data_resource.start = virt_to_phys(_etext);
340 data_resource.end = virt_to_phys(_edata)-1;
344 sh_mv_setup(cmdline_p);
347 * Find the highest page frame number we have available
349 max_pfn = PFN_DOWN(__pa(memory_end));
352 * Determine low and high memory ranges:
354 max_low_pfn = max_pfn;
355 min_low_pfn = __MEMORY_START >> PAGE_SHIFT;
357 nodes_clear(node_online_map);
362 #ifdef CONFIG_DUMMY_CONSOLE
363 conswitchp = &dummy_con;
366 /* Perform the machine specific initialisation */
367 if (likely(sh_mv.mv_setup))
368 sh_mv.mv_setup(cmdline_p);
371 struct sh_machine_vector* __init get_mv_byname(const char* name)
373 extern long __machvec_start, __machvec_end;
374 struct sh_machine_vector *all_vecs =
375 (struct sh_machine_vector *)&__machvec_start;
377 int i, n = ((unsigned long)&__machvec_end
378 - (unsigned long)&__machvec_start)/
379 sizeof(struct sh_machine_vector);
381 for (i = 0; i < n; ++i) {
382 struct sh_machine_vector *mv = &all_vecs[i];
385 if (strcasecmp(name, get_system_type()) == 0) {
392 static struct cpu cpu[NR_CPUS];
394 static int __init topology_init(void)
398 for_each_possible_cpu(cpu_id)
399 register_cpu(&cpu[cpu_id], cpu_id);
404 subsys_initcall(topology_init);
406 static const char *cpu_name[] = {
407 [CPU_SH7206] = "SH7206", [CPU_SH7619] = "SH7619",
408 [CPU_SH7604] = "SH7604", [CPU_SH7300] = "SH7300",
409 [CPU_SH7705] = "SH7705", [CPU_SH7706] = "SH7706",
410 [CPU_SH7707] = "SH7707", [CPU_SH7708] = "SH7708",
411 [CPU_SH7709] = "SH7709", [CPU_SH7710] = "SH7710",
412 [CPU_SH7712] = "SH7712",
413 [CPU_SH7729] = "SH7729", [CPU_SH7750] = "SH7750",
414 [CPU_SH7750S] = "SH7750S", [CPU_SH7750R] = "SH7750R",
415 [CPU_SH7751] = "SH7751", [CPU_SH7751R] = "SH7751R",
416 [CPU_SH7760] = "SH7760", [CPU_SH73180] = "SH73180",
417 [CPU_ST40RA] = "ST40RA", [CPU_ST40GX1] = "ST40GX1",
418 [CPU_SH4_202] = "SH4-202", [CPU_SH4_501] = "SH4-501",
419 [CPU_SH7770] = "SH7770", [CPU_SH7780] = "SH7780",
420 [CPU_SH7781] = "SH7781", [CPU_SH7343] = "SH7343",
421 [CPU_SH7785] = "SH7785", [CPU_SH7722] = "SH7722",
422 [CPU_SH_NONE] = "Unknown"
425 const char *get_cpu_subtype(struct sh_cpuinfo *c)
427 return cpu_name[c->type];
430 #ifdef CONFIG_PROC_FS
431 /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
432 static const char *cpu_flags[] = {
433 "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
434 "ptea", "llsc", "l2", "op32", NULL
437 static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
441 seq_printf(m, "cpu flags\t:");
444 seq_printf(m, " %s\n", cpu_flags[0]);
448 for (i = 0; cpu_flags[i]; i++)
449 if ((c->flags & (1 << i)))
450 seq_printf(m, " %s", cpu_flags[i+1]);
455 static void show_cacheinfo(struct seq_file *m, const char *type,
456 struct cache_info info)
458 unsigned int cache_size;
460 cache_size = info.ways * info.sets * info.linesz;
462 seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
463 type, cache_size >> 10, info.ways);
467 * Get CPU information for use by the procfs.
469 static int show_cpuinfo(struct seq_file *m, void *v)
471 struct sh_cpuinfo *c = v;
472 unsigned int cpu = c - cpu_data;
474 if (!cpu_online(cpu))
478 seq_printf(m, "machine\t\t: %s\n", get_system_type());
480 seq_printf(m, "processor\t: %d\n", cpu);
481 seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
482 seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
486 seq_printf(m, "cache type\t: ");
489 * Check for what type of cache we have, we support both the
490 * unified cache on the SH-2 and SH-3, as well as the harvard
491 * style cache on the SH-4.
493 if (c->icache.flags & SH_CACHE_COMBINED) {
494 seq_printf(m, "unified\n");
495 show_cacheinfo(m, "cache", c->icache);
497 seq_printf(m, "split (harvard)\n");
498 show_cacheinfo(m, "icache", c->icache);
499 show_cacheinfo(m, "dcache", c->dcache);
502 /* Optional secondary cache */
503 if (c->flags & CPU_HAS_L2_CACHE)
504 show_cacheinfo(m, "scache", c->scache);
506 seq_printf(m, "bogomips\t: %lu.%02lu\n",
507 c->loops_per_jiffy/(500000/HZ),
508 (c->loops_per_jiffy/(5000/HZ)) % 100);
513 static void *c_start(struct seq_file *m, loff_t *pos)
515 return *pos < NR_CPUS ? cpu_data + *pos : NULL;
517 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
520 return c_start(m, pos);
522 static void c_stop(struct seq_file *m, void *v)
525 struct seq_operations cpuinfo_op = {
529 .show = show_cpuinfo,
531 #endif /* CONFIG_PROC_FS */