setup.c 11 KB

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