setup.c 11 KB

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