setup.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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 - 2010 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/crash_dump.h>
  28. #include <linux/mmzone.h>
  29. #include <linux/clk.h>
  30. #include <linux/delay.h>
  31. #include <linux/platform_device.h>
  32. #include <linux/memblock.h>
  33. #include <asm/uaccess.h>
  34. #include <asm/io.h>
  35. #include <asm/page.h>
  36. #include <asm/elf.h>
  37. #include <asm/sections.h>
  38. #include <asm/irq.h>
  39. #include <asm/setup.h>
  40. #include <asm/clock.h>
  41. #include <asm/smp.h>
  42. #include <asm/mmu_context.h>
  43. #include <asm/mmzone.h>
  44. #include <asm/sparsemem.h>
  45. /*
  46. * Initialize loops_per_jiffy as 10000000 (1000MIPS).
  47. * This value will be used at the very early stage of serial setup.
  48. * The bigger value means no problem.
  49. */
  50. struct sh_cpuinfo cpu_data[NR_CPUS] __read_mostly = {
  51. [0] = {
  52. .type = CPU_SH_NONE,
  53. .family = CPU_FAMILY_UNKNOWN,
  54. .loops_per_jiffy = 10000000,
  55. .phys_bits = MAX_PHYSMEM_BITS,
  56. },
  57. };
  58. EXPORT_SYMBOL(cpu_data);
  59. /*
  60. * The machine vector. First entry in .machvec.init, or clobbered by
  61. * sh_mv= on the command line, prior to .machvec.init teardown.
  62. */
  63. struct sh_machine_vector sh_mv = { .mv_name = "generic", };
  64. EXPORT_SYMBOL(sh_mv);
  65. #ifdef CONFIG_VT
  66. struct screen_info screen_info;
  67. #endif
  68. extern int root_mountflags;
  69. #define RAMDISK_IMAGE_START_MASK 0x07FF
  70. #define RAMDISK_PROMPT_FLAG 0x8000
  71. #define RAMDISK_LOAD_FLAG 0x4000
  72. static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, };
  73. static struct resource code_resource = {
  74. .name = "Kernel code",
  75. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  76. };
  77. static struct resource data_resource = {
  78. .name = "Kernel data",
  79. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  80. };
  81. static struct resource bss_resource = {
  82. .name = "Kernel bss",
  83. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  84. };
  85. unsigned long memory_start;
  86. EXPORT_SYMBOL(memory_start);
  87. unsigned long memory_end = 0;
  88. EXPORT_SYMBOL(memory_end);
  89. unsigned long memory_limit = 0;
  90. static struct resource mem_resources[MAX_NUMNODES];
  91. int l1i_cache_shape, l1d_cache_shape, l2_cache_shape;
  92. static int __init early_parse_mem(char *p)
  93. {
  94. if (!p)
  95. return 1;
  96. memory_limit = PAGE_ALIGN(memparse(p, &p));
  97. pr_notice("Memory limited to %ldMB\n", memory_limit >> 20);
  98. return 0;
  99. }
  100. early_param("mem", early_parse_mem);
  101. void __init check_for_initrd(void)
  102. {
  103. #ifdef CONFIG_BLK_DEV_INITRD
  104. unsigned long start, end;
  105. /*
  106. * Check for the rare cases where boot loaders adhere to the boot
  107. * ABI.
  108. */
  109. if (!LOADER_TYPE || !INITRD_START || !INITRD_SIZE)
  110. goto disable;
  111. start = INITRD_START + __MEMORY_START;
  112. end = start + INITRD_SIZE;
  113. if (unlikely(end <= start))
  114. goto disable;
  115. if (unlikely(start & ~PAGE_MASK)) {
  116. pr_err("initrd must be page aligned\n");
  117. goto disable;
  118. }
  119. if (unlikely(start < __MEMORY_START)) {
  120. pr_err("initrd start (%08lx) < __MEMORY_START(%x)\n",
  121. start, __MEMORY_START);
  122. goto disable;
  123. }
  124. if (unlikely(end > memblock_end_of_DRAM())) {
  125. pr_err("initrd extends beyond end of memory "
  126. "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
  127. end, (unsigned long)memblock_end_of_DRAM());
  128. goto disable;
  129. }
  130. /*
  131. * If we got this far inspite of the boot loader's best efforts
  132. * to the contrary, assume we actually have a valid initrd and
  133. * fix up the root dev.
  134. */
  135. ROOT_DEV = Root_RAM0;
  136. /*
  137. * Address sanitization
  138. */
  139. initrd_start = (unsigned long)__va(start);
  140. initrd_end = initrd_start + INITRD_SIZE;
  141. memblock_reserve(__pa(initrd_start), INITRD_SIZE);
  142. return;
  143. disable:
  144. pr_info("initrd disabled\n");
  145. initrd_start = initrd_end = 0;
  146. #endif
  147. }
  148. void __cpuinit calibrate_delay(void)
  149. {
  150. struct clk *clk = clk_get(NULL, "cpu_clk");
  151. if (IS_ERR(clk))
  152. panic("Need a sane CPU clock definition!");
  153. loops_per_jiffy = (clk_get_rate(clk) >> 1) / HZ;
  154. printk(KERN_INFO "Calibrating delay loop (skipped)... "
  155. "%lu.%02lu BogoMIPS PRESET (lpj=%lu)\n",
  156. loops_per_jiffy/(500000/HZ),
  157. (loops_per_jiffy/(5000/HZ)) % 100,
  158. loops_per_jiffy);
  159. }
  160. void __init __add_active_range(unsigned int nid, unsigned long start_pfn,
  161. unsigned long end_pfn)
  162. {
  163. struct resource *res = &mem_resources[nid];
  164. unsigned long start, end;
  165. WARN_ON(res->name); /* max one active range per node for now */
  166. start = start_pfn << PAGE_SHIFT;
  167. end = end_pfn << PAGE_SHIFT;
  168. res->name = "System RAM";
  169. res->start = start;
  170. res->end = end - 1;
  171. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  172. if (request_resource(&iomem_resource, res)) {
  173. pr_err("unable to request memory_resource 0x%lx 0x%lx\n",
  174. start_pfn, end_pfn);
  175. return;
  176. }
  177. /*
  178. * We don't know which RAM region contains kernel data,
  179. * so we try it repeatedly and let the resource manager
  180. * test it.
  181. */
  182. request_resource(res, &code_resource);
  183. request_resource(res, &data_resource);
  184. request_resource(res, &bss_resource);
  185. /*
  186. * Also make sure that there is a PMB mapping that covers this
  187. * range before we attempt to activate it, to avoid reset by MMU.
  188. * We can hit this path with NUMA or memory hot-add.
  189. */
  190. pmb_bolt_mapping((unsigned long)__va(start), start, end - start,
  191. PAGE_KERNEL);
  192. add_active_range(nid, start_pfn, end_pfn);
  193. }
  194. void __init __weak plat_early_device_setup(void)
  195. {
  196. }
  197. void __init setup_arch(char **cmdline_p)
  198. {
  199. enable_mmu();
  200. ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);
  201. printk(KERN_NOTICE "Boot params:\n"
  202. "... MOUNT_ROOT_RDONLY - %08lx\n"
  203. "... RAMDISK_FLAGS - %08lx\n"
  204. "... ORIG_ROOT_DEV - %08lx\n"
  205. "... LOADER_TYPE - %08lx\n"
  206. "... INITRD_START - %08lx\n"
  207. "... INITRD_SIZE - %08lx\n",
  208. MOUNT_ROOT_RDONLY, RAMDISK_FLAGS,
  209. ORIG_ROOT_DEV, LOADER_TYPE,
  210. INITRD_START, INITRD_SIZE);
  211. #ifdef CONFIG_BLK_DEV_RAM
  212. rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
  213. rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
  214. rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
  215. #endif
  216. if (!MOUNT_ROOT_RDONLY)
  217. root_mountflags &= ~MS_RDONLY;
  218. init_mm.start_code = (unsigned long) _text;
  219. init_mm.end_code = (unsigned long) _etext;
  220. init_mm.end_data = (unsigned long) _edata;
  221. init_mm.brk = (unsigned long) _end;
  222. code_resource.start = virt_to_phys(_text);
  223. code_resource.end = virt_to_phys(_etext)-1;
  224. data_resource.start = virt_to_phys(_etext);
  225. data_resource.end = virt_to_phys(_edata)-1;
  226. bss_resource.start = virt_to_phys(__bss_start);
  227. bss_resource.end = virt_to_phys(_ebss)-1;
  228. #ifdef CONFIG_CMDLINE_OVERWRITE
  229. strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line));
  230. #else
  231. strlcpy(command_line, COMMAND_LINE, sizeof(command_line));
  232. #ifdef CONFIG_CMDLINE_EXTEND
  233. strlcat(command_line, " ", sizeof(command_line));
  234. strlcat(command_line, CONFIG_CMDLINE, sizeof(command_line));
  235. #endif
  236. #endif
  237. /* Save unparsed command line copy for /proc/cmdline */
  238. memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
  239. *cmdline_p = command_line;
  240. parse_early_param();
  241. plat_early_device_setup();
  242. sh_mv_setup();
  243. /* Let earlyprintk output early console messages */
  244. early_platform_driver_probe("earlyprintk", 1, 1);
  245. paging_init();
  246. #ifdef CONFIG_DUMMY_CONSOLE
  247. conswitchp = &dummy_con;
  248. #endif
  249. /* Perform the machine specific initialisation */
  250. if (likely(sh_mv.mv_setup))
  251. sh_mv.mv_setup(cmdline_p);
  252. plat_smp_setup();
  253. }
  254. /* processor boot mode configuration */
  255. int generic_mode_pins(void)
  256. {
  257. pr_warning("generic_mode_pins(): missing mode pin configuration\n");
  258. return 0;
  259. }
  260. int test_mode_pin(int pin)
  261. {
  262. return sh_mv.mv_mode_pins() & pin;
  263. }
  264. static const char *cpu_name[] = {
  265. [CPU_SH7201] = "SH7201",
  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_SH7786] = "SH7786", [CPU_SH7757] = "SH7757",
  281. [CPU_SH7722] = "SH7722", [CPU_SHX3] = "SH-X3",
  282. [CPU_SH5_101] = "SH5-101", [CPU_SH5_103] = "SH5-103",
  283. [CPU_MXG] = "MX-G", [CPU_SH7723] = "SH7723",
  284. [CPU_SH7366] = "SH7366", [CPU_SH7724] = "SH7724",
  285. [CPU_SH_NONE] = "Unknown"
  286. };
  287. const char *get_cpu_subtype(struct sh_cpuinfo *c)
  288. {
  289. return cpu_name[c->type];
  290. }
  291. EXPORT_SYMBOL(get_cpu_subtype);
  292. #ifdef CONFIG_PROC_FS
  293. /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
  294. static const char *cpu_flags[] = {
  295. "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
  296. "ptea", "llsc", "l2", "op32", "pteaex", NULL
  297. };
  298. static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
  299. {
  300. unsigned long i;
  301. seq_printf(m, "cpu flags\t:");
  302. if (!c->flags) {
  303. seq_printf(m, " %s\n", cpu_flags[0]);
  304. return;
  305. }
  306. for (i = 0; cpu_flags[i]; i++)
  307. if ((c->flags & (1 << i)))
  308. seq_printf(m, " %s", cpu_flags[i+1]);
  309. seq_printf(m, "\n");
  310. }
  311. static void show_cacheinfo(struct seq_file *m, const char *type,
  312. struct cache_info info)
  313. {
  314. unsigned int cache_size;
  315. cache_size = info.ways * info.sets * info.linesz;
  316. seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
  317. type, cache_size >> 10, info.ways);
  318. }
  319. /*
  320. * Get CPU information for use by the procfs.
  321. */
  322. static int show_cpuinfo(struct seq_file *m, void *v)
  323. {
  324. struct sh_cpuinfo *c = v;
  325. unsigned int cpu = c - cpu_data;
  326. if (!cpu_online(cpu))
  327. return 0;
  328. if (cpu == 0)
  329. seq_printf(m, "machine\t\t: %s\n", get_system_type());
  330. else
  331. seq_printf(m, "\n");
  332. seq_printf(m, "processor\t: %d\n", cpu);
  333. seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
  334. seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
  335. if (c->cut_major == -1)
  336. seq_printf(m, "cut\t\t: unknown\n");
  337. else if (c->cut_minor == -1)
  338. seq_printf(m, "cut\t\t: %d.x\n", c->cut_major);
  339. else
  340. seq_printf(m, "cut\t\t: %d.%d\n", c->cut_major, c->cut_minor);
  341. show_cpuflags(m, c);
  342. seq_printf(m, "cache type\t: ");
  343. /*
  344. * Check for what type of cache we have, we support both the
  345. * unified cache on the SH-2 and SH-3, as well as the harvard
  346. * style cache on the SH-4.
  347. */
  348. if (c->icache.flags & SH_CACHE_COMBINED) {
  349. seq_printf(m, "unified\n");
  350. show_cacheinfo(m, "cache", c->icache);
  351. } else {
  352. seq_printf(m, "split (harvard)\n");
  353. show_cacheinfo(m, "icache", c->icache);
  354. show_cacheinfo(m, "dcache", c->dcache);
  355. }
  356. /* Optional secondary cache */
  357. if (c->flags & CPU_HAS_L2_CACHE)
  358. show_cacheinfo(m, "scache", c->scache);
  359. seq_printf(m, "address sizes\t: %u bits physical\n", c->phys_bits);
  360. seq_printf(m, "bogomips\t: %lu.%02lu\n",
  361. c->loops_per_jiffy/(500000/HZ),
  362. (c->loops_per_jiffy/(5000/HZ)) % 100);
  363. return 0;
  364. }
  365. static void *c_start(struct seq_file *m, loff_t *pos)
  366. {
  367. return *pos < NR_CPUS ? cpu_data + *pos : NULL;
  368. }
  369. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  370. {
  371. ++*pos;
  372. return c_start(m, pos);
  373. }
  374. static void c_stop(struct seq_file *m, void *v)
  375. {
  376. }
  377. const struct seq_operations cpuinfo_op = {
  378. .start = c_start,
  379. .next = c_next,
  380. .stop = c_stop,
  381. .show = show_cpuinfo,
  382. };
  383. #endif /* CONFIG_PROC_FS */