setup.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. /*
  2. * arch/sh/kernel/setup.c
  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
  8. */
  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>
  21. #include <linux/fs.h>
  22. #include <linux/mm.h>
  23. #include <linux/kexec.h>
  24. #include <linux/module.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/io.h>
  27. #include <asm/page.h>
  28. #include <asm/sections.h>
  29. #include <asm/irq.h>
  30. #include <asm/setup.h>
  31. #include <asm/clock.h>
  32. #include <asm/mmu_context.h>
  33. extern void * __rd_start, * __rd_end;
  34. /*
  35. * Machine setup..
  36. */
  37. /*
  38. * Initialize loops_per_jiffy as 10000000 (1000MIPS).
  39. * This value will be used at the very early stage of serial setup.
  40. * The bigger value means no problem.
  41. */
  42. struct sh_cpuinfo boot_cpu_data = { CPU_SH_NONE, 10000000, };
  43. /*
  44. * The machine vector. First entry in .machvec.init, or clobbered by
  45. * sh_mv= on the command line, prior to .machvec.init teardown.
  46. */
  47. struct sh_machine_vector sh_mv = { .mv_name = "generic", };
  48. #ifdef CONFIG_VT
  49. struct screen_info screen_info;
  50. #endif
  51. extern int root_mountflags;
  52. /*
  53. * This is set up by the setup-routine at boot-time
  54. */
  55. #define PARAM ((unsigned char *)empty_zero_page)
  56. #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
  57. #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
  58. #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
  59. #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
  60. #define INITRD_START (*(unsigned long *) (PARAM+0x010))
  61. #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
  62. /* ... */
  63. #define COMMAND_LINE ((char *) (PARAM+0x100))
  64. #define RAMDISK_IMAGE_START_MASK 0x07FF
  65. #define RAMDISK_PROMPT_FLAG 0x8000
  66. #define RAMDISK_LOAD_FLAG 0x4000
  67. static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, };
  68. static struct resource code_resource = { .name = "Kernel code", };
  69. static struct resource data_resource = { .name = "Kernel data", };
  70. unsigned long memory_start;
  71. EXPORT_SYMBOL(memory_start);
  72. unsigned long memory_end;
  73. EXPORT_SYMBOL(memory_end);
  74. static int __init early_parse_mem(char *p)
  75. {
  76. unsigned long size;
  77. memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
  78. size = memparse(p, &p);
  79. memory_end = memory_start + size;
  80. return 0;
  81. }
  82. early_param("mem", early_parse_mem);
  83. /*
  84. * Register fully available low RAM pages with the bootmem allocator.
  85. */
  86. static void __init register_bootmem_low_pages(void)
  87. {
  88. unsigned long curr_pfn, last_pfn, pages;
  89. /*
  90. * We are rounding up the start address of usable memory:
  91. */
  92. curr_pfn = PFN_UP(__MEMORY_START);
  93. /*
  94. * ... and at the end of the usable range downwards:
  95. */
  96. last_pfn = PFN_DOWN(__pa(memory_end));
  97. if (last_pfn > max_low_pfn)
  98. last_pfn = max_low_pfn;
  99. pages = last_pfn - curr_pfn;
  100. free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(pages));
  101. }
  102. void __init setup_bootmem_allocator(unsigned long free_pfn)
  103. {
  104. unsigned long bootmap_size;
  105. /*
  106. * Find a proper area for the bootmem bitmap. After this
  107. * bootstrap step all allocations (until the page allocator
  108. * is intact) must be done via bootmem_alloc().
  109. */
  110. bootmap_size = init_bootmem_node(NODE_DATA(0), free_pfn,
  111. min_low_pfn, max_low_pfn);
  112. add_active_range(0, min_low_pfn, max_low_pfn);
  113. register_bootmem_low_pages();
  114. node_set_online(0);
  115. /*
  116. * Reserve the kernel text and
  117. * Reserve the bootmem bitmap. We do this in two steps (first step
  118. * was init_bootmem()), because this catches the (definitely buggy)
  119. * case of us accidentally initializing the bootmem allocator with
  120. * an invalid RAM area.
  121. */
  122. reserve_bootmem(__MEMORY_START+PAGE_SIZE,
  123. (PFN_PHYS(free_pfn)+bootmap_size+PAGE_SIZE-1)-__MEMORY_START);
  124. /*
  125. * reserve physical page 0 - it's a special BIOS page on many boxes,
  126. * enabling clean reboots, SMP operation, laptop functions.
  127. */
  128. reserve_bootmem(__MEMORY_START, PAGE_SIZE);
  129. sparse_memory_present_with_active_regions(0);
  130. #ifdef CONFIG_BLK_DEV_INITRD
  131. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  132. if (&__rd_start != &__rd_end) {
  133. LOADER_TYPE = 1;
  134. INITRD_START = PHYSADDR((unsigned long)&__rd_start) -
  135. __MEMORY_START;
  136. INITRD_SIZE = (unsigned long)&__rd_end -
  137. (unsigned long)&__rd_start;
  138. }
  139. if (LOADER_TYPE && INITRD_START) {
  140. if (INITRD_START + INITRD_SIZE <= (max_low_pfn << PAGE_SHIFT)) {
  141. reserve_bootmem(INITRD_START + __MEMORY_START,
  142. INITRD_SIZE);
  143. initrd_start = INITRD_START + PAGE_OFFSET +
  144. __MEMORY_START;
  145. initrd_end = initrd_start + INITRD_SIZE;
  146. } else {
  147. printk("initrd extends beyond end of memory "
  148. "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
  149. INITRD_START + INITRD_SIZE,
  150. max_low_pfn << PAGE_SHIFT);
  151. initrd_start = 0;
  152. }
  153. }
  154. #endif
  155. #ifdef CONFIG_KEXEC
  156. if (crashk_res.start != crashk_res.end)
  157. reserve_bootmem(crashk_res.start,
  158. crashk_res.end - crashk_res.start + 1);
  159. #endif
  160. }
  161. #ifndef CONFIG_NEED_MULTIPLE_NODES
  162. static void __init setup_memory(void)
  163. {
  164. unsigned long start_pfn;
  165. /*
  166. * Partially used pages are not usable - thus
  167. * we are rounding upwards:
  168. */
  169. start_pfn = PFN_UP(__pa(_end));
  170. setup_bootmem_allocator(start_pfn);
  171. }
  172. #else
  173. extern void __init setup_memory(void);
  174. #endif
  175. void __init setup_arch(char **cmdline_p)
  176. {
  177. enable_mmu();
  178. ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);
  179. #ifdef CONFIG_BLK_DEV_RAM
  180. rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
  181. rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
  182. rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
  183. #endif
  184. if (!MOUNT_ROOT_RDONLY)
  185. root_mountflags &= ~MS_RDONLY;
  186. init_mm.start_code = (unsigned long) _text;
  187. init_mm.end_code = (unsigned long) _etext;
  188. init_mm.end_data = (unsigned long) _edata;
  189. init_mm.brk = (unsigned long) _end;
  190. code_resource.start = virt_to_phys(_text);
  191. code_resource.end = virt_to_phys(_etext)-1;
  192. data_resource.start = virt_to_phys(_etext);
  193. data_resource.end = virt_to_phys(_edata)-1;
  194. memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
  195. memory_end = memory_start + __MEMORY_SIZE;
  196. #ifdef CONFIG_CMDLINE_BOOL
  197. strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line));
  198. #else
  199. strlcpy(command_line, COMMAND_LINE, sizeof(command_line));
  200. #endif
  201. /* Save unparsed command line copy for /proc/cmdline */
  202. memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
  203. *cmdline_p = command_line;
  204. parse_early_param();
  205. sh_mv_setup();
  206. /*
  207. * Find the highest page frame number we have available
  208. */
  209. max_pfn = PFN_DOWN(__pa(memory_end));
  210. /*
  211. * Determine low and high memory ranges:
  212. */
  213. max_low_pfn = max_pfn;
  214. min_low_pfn = __MEMORY_START >> PAGE_SHIFT;
  215. nodes_clear(node_online_map);
  216. /* Setup bootmem with available RAM */
  217. setup_memory();
  218. sparse_init();
  219. #ifdef CONFIG_DUMMY_CONSOLE
  220. conswitchp = &dummy_con;
  221. #endif
  222. /* Perform the machine specific initialisation */
  223. if (likely(sh_mv.mv_setup))
  224. sh_mv.mv_setup(cmdline_p);
  225. paging_init();
  226. }
  227. static const char *cpu_name[] = {
  228. [CPU_SH7206] = "SH7206", [CPU_SH7619] = "SH7619",
  229. [CPU_SH7705] = "SH7705", [CPU_SH7706] = "SH7706",
  230. [CPU_SH7707] = "SH7707", [CPU_SH7708] = "SH7708",
  231. [CPU_SH7709] = "SH7709", [CPU_SH7710] = "SH7710",
  232. [CPU_SH7712] = "SH7712",
  233. [CPU_SH7729] = "SH7729", [CPU_SH7750] = "SH7750",
  234. [CPU_SH7750S] = "SH7750S", [CPU_SH7750R] = "SH7750R",
  235. [CPU_SH7751] = "SH7751", [CPU_SH7751R] = "SH7751R",
  236. [CPU_SH7760] = "SH7760",
  237. [CPU_ST40RA] = "ST40RA", [CPU_ST40GX1] = "ST40GX1",
  238. [CPU_SH4_202] = "SH4-202", [CPU_SH4_501] = "SH4-501",
  239. [CPU_SH7770] = "SH7770", [CPU_SH7780] = "SH7780",
  240. [CPU_SH7781] = "SH7781", [CPU_SH7343] = "SH7343",
  241. [CPU_SH7785] = "SH7785", [CPU_SH7722] = "SH7722",
  242. [CPU_SHX3] = "SH-X3", [CPU_SH_NONE] = "Unknown"
  243. };
  244. const char *get_cpu_subtype(struct sh_cpuinfo *c)
  245. {
  246. return cpu_name[c->type];
  247. }
  248. #ifdef CONFIG_PROC_FS
  249. /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
  250. static const char *cpu_flags[] = {
  251. "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
  252. "ptea", "llsc", "l2", "op32", NULL
  253. };
  254. static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
  255. {
  256. unsigned long i;
  257. seq_printf(m, "cpu flags\t:");
  258. if (!c->flags) {
  259. seq_printf(m, " %s\n", cpu_flags[0]);
  260. return;
  261. }
  262. for (i = 0; cpu_flags[i]; i++)
  263. if ((c->flags & (1 << i)))
  264. seq_printf(m, " %s", cpu_flags[i+1]);
  265. seq_printf(m, "\n");
  266. }
  267. static void show_cacheinfo(struct seq_file *m, const char *type,
  268. struct cache_info info)
  269. {
  270. unsigned int cache_size;
  271. cache_size = info.ways * info.sets * info.linesz;
  272. seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
  273. type, cache_size >> 10, info.ways);
  274. }
  275. /*
  276. * Get CPU information for use by the procfs.
  277. */
  278. static int show_cpuinfo(struct seq_file *m, void *v)
  279. {
  280. struct sh_cpuinfo *c = v;
  281. unsigned int cpu = c - cpu_data;
  282. if (!cpu_online(cpu))
  283. return 0;
  284. if (cpu == 0)
  285. seq_printf(m, "machine\t\t: %s\n", get_system_type());
  286. seq_printf(m, "processor\t: %d\n", cpu);
  287. seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
  288. seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
  289. show_cpuflags(m, c);
  290. seq_printf(m, "cache type\t: ");
  291. /*
  292. * Check for what type of cache we have, we support both the
  293. * unified cache on the SH-2 and SH-3, as well as the harvard
  294. * style cache on the SH-4.
  295. */
  296. if (c->icache.flags & SH_CACHE_COMBINED) {
  297. seq_printf(m, "unified\n");
  298. show_cacheinfo(m, "cache", c->icache);
  299. } else {
  300. seq_printf(m, "split (harvard)\n");
  301. show_cacheinfo(m, "icache", c->icache);
  302. show_cacheinfo(m, "dcache", c->dcache);
  303. }
  304. /* Optional secondary cache */
  305. if (c->flags & CPU_HAS_L2_CACHE)
  306. show_cacheinfo(m, "scache", c->scache);
  307. seq_printf(m, "bogomips\t: %lu.%02lu\n",
  308. c->loops_per_jiffy/(500000/HZ),
  309. (c->loops_per_jiffy/(5000/HZ)) % 100);
  310. return 0;
  311. }
  312. static void *c_start(struct seq_file *m, loff_t *pos)
  313. {
  314. return *pos < NR_CPUS ? cpu_data + *pos : NULL;
  315. }
  316. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  317. {
  318. ++*pos;
  319. return c_start(m, pos);
  320. }
  321. static void c_stop(struct seq_file *m, void *v)
  322. {
  323. }
  324. struct seq_operations cpuinfo_op = {
  325. .start = c_start,
  326. .next = c_next,
  327. .stop = c_stop,
  328. .show = show_cpuinfo,
  329. };
  330. #endif /* CONFIG_PROC_FS */