setup.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  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 - 2006 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/cpu.h>
  19. #include <linux/pfn.h>
  20. #include <linux/fs.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/io.h>
  23. #include <asm/sections.h>
  24. #include <asm/irq.h>
  25. #include <asm/setup.h>
  26. #include <asm/clock.h>
  27. extern void * __rd_start, * __rd_end;
  28. /*
  29. * Machine setup..
  30. */
  31. /*
  32. * Initialize loops_per_jiffy as 10000000 (1000MIPS).
  33. * This value will be used at the very early stage of serial setup.
  34. * The bigger value means no problem.
  35. */
  36. struct sh_cpuinfo boot_cpu_data = { CPU_SH_NONE, 10000000, };
  37. #ifdef CONFIG_VT
  38. struct screen_info screen_info;
  39. #endif
  40. #if defined(CONFIG_SH_UNKNOWN)
  41. struct sh_machine_vector sh_mv;
  42. #endif
  43. extern int root_mountflags;
  44. #define MV_NAME_SIZE 32
  45. static struct sh_machine_vector* __init get_mv_byname(const char* name);
  46. /*
  47. * This is set up by the setup-routine at boot-time
  48. */
  49. #define PARAM ((unsigned char *)empty_zero_page)
  50. #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
  51. #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
  52. #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
  53. #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
  54. #define INITRD_START (*(unsigned long *) (PARAM+0x010))
  55. #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
  56. /* ... */
  57. #define COMMAND_LINE ((char *) (PARAM+0x100))
  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 = { .name = "Kernel code", };
  63. static struct resource data_resource = { .name = "Kernel data", };
  64. unsigned long memory_start, memory_end;
  65. static inline void parse_cmdline (char ** cmdline_p, char mv_name[MV_NAME_SIZE],
  66. struct sh_machine_vector** mvp,
  67. unsigned long *mv_io_base)
  68. {
  69. char c = ' ', *to = command_line, *from = COMMAND_LINE;
  70. int len = 0;
  71. /* Save unparsed command line copy for /proc/cmdline */
  72. memcpy(boot_command_line, COMMAND_LINE, COMMAND_LINE_SIZE);
  73. boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
  74. memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START;
  75. memory_end = memory_start + __MEMORY_SIZE;
  76. for (;;) {
  77. /*
  78. * "mem=XXX[kKmM]" defines a size of memory.
  79. */
  80. if (c == ' ' && !memcmp(from, "mem=", 4)) {
  81. if (to != command_line)
  82. to--;
  83. {
  84. unsigned long mem_size;
  85. mem_size = memparse(from+4, &from);
  86. memory_end = memory_start + mem_size;
  87. }
  88. }
  89. if (c == ' ' && !memcmp(from, "sh_mv=", 6)) {
  90. char* mv_end;
  91. char* mv_comma;
  92. int mv_len;
  93. if (to != command_line)
  94. to--;
  95. from += 6;
  96. mv_end = strchr(from, ' ');
  97. if (mv_end == NULL)
  98. mv_end = from + strlen(from);
  99. mv_comma = strchr(from, ',');
  100. if ((mv_comma != NULL) && (mv_comma < mv_end)) {
  101. int ints[3];
  102. get_options(mv_comma+1, ARRAY_SIZE(ints), ints);
  103. *mv_io_base = ints[1];
  104. mv_len = mv_comma - from;
  105. } else {
  106. mv_len = mv_end - from;
  107. }
  108. if (mv_len > (MV_NAME_SIZE-1))
  109. mv_len = MV_NAME_SIZE-1;
  110. memcpy(mv_name, from, mv_len);
  111. mv_name[mv_len] = '\0';
  112. from = mv_end;
  113. *mvp = get_mv_byname(mv_name);
  114. }
  115. c = *(from++);
  116. if (!c)
  117. break;
  118. if (COMMAND_LINE_SIZE <= ++len)
  119. break;
  120. *(to++) = c;
  121. }
  122. *to = '\0';
  123. *cmdline_p = command_line;
  124. }
  125. static int __init sh_mv_setup(char **cmdline_p)
  126. {
  127. #ifdef CONFIG_SH_UNKNOWN
  128. extern struct sh_machine_vector mv_unknown;
  129. #endif
  130. struct sh_machine_vector *mv = NULL;
  131. char mv_name[MV_NAME_SIZE] = "";
  132. unsigned long mv_io_base = 0;
  133. parse_cmdline(cmdline_p, mv_name, &mv, &mv_io_base);
  134. #ifdef CONFIG_SH_UNKNOWN
  135. if (mv == NULL) {
  136. mv = &mv_unknown;
  137. if (*mv_name != '\0') {
  138. printk("Warning: Unsupported machine %s, using unknown\n",
  139. mv_name);
  140. }
  141. }
  142. sh_mv = *mv;
  143. #endif
  144. /*
  145. * Manually walk the vec, fill in anything that the board hasn't yet
  146. * by hand, wrapping to the generic implementation.
  147. */
  148. #define mv_set(elem) do { \
  149. if (!sh_mv.mv_##elem) \
  150. sh_mv.mv_##elem = generic_##elem; \
  151. } while (0)
  152. mv_set(inb); mv_set(inw); mv_set(inl);
  153. mv_set(outb); mv_set(outw); mv_set(outl);
  154. mv_set(inb_p); mv_set(inw_p); mv_set(inl_p);
  155. mv_set(outb_p); mv_set(outw_p); mv_set(outl_p);
  156. mv_set(insb); mv_set(insw); mv_set(insl);
  157. mv_set(outsb); mv_set(outsw); mv_set(outsl);
  158. mv_set(readb); mv_set(readw); mv_set(readl);
  159. mv_set(writeb); mv_set(writew); mv_set(writel);
  160. mv_set(ioport_map);
  161. mv_set(ioport_unmap);
  162. mv_set(irq_demux);
  163. #ifdef CONFIG_SH_UNKNOWN
  164. __set_io_port_base(mv_io_base);
  165. #endif
  166. if (!sh_mv.mv_nr_irqs)
  167. sh_mv.mv_nr_irqs = NR_IRQS;
  168. return 0;
  169. }
  170. void __init setup_arch(char **cmdline_p)
  171. {
  172. unsigned long bootmap_size;
  173. unsigned long start_pfn, max_pfn, max_low_pfn;
  174. #ifdef CONFIG_CMDLINE_BOOL
  175. strcpy(COMMAND_LINE, CONFIG_CMDLINE);
  176. #endif
  177. ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);
  178. #ifdef CONFIG_BLK_DEV_RAM
  179. rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
  180. rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
  181. rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
  182. #endif
  183. if (!MOUNT_ROOT_RDONLY)
  184. root_mountflags &= ~MS_RDONLY;
  185. init_mm.start_code = (unsigned long) _text;
  186. init_mm.end_code = (unsigned long) _etext;
  187. init_mm.end_data = (unsigned long) _edata;
  188. init_mm.brk = (unsigned long) _end;
  189. code_resource.start = (unsigned long)virt_to_phys(_text);
  190. code_resource.end = (unsigned long)virt_to_phys(_etext)-1;
  191. data_resource.start = (unsigned long)virt_to_phys(_etext);
  192. data_resource.end = (unsigned long)virt_to_phys(_edata)-1;
  193. sh_mv_setup(cmdline_p);
  194. /*
  195. * Find the highest page frame number we have available
  196. */
  197. max_pfn = PFN_DOWN(__pa(memory_end));
  198. /*
  199. * Determine low and high memory ranges:
  200. */
  201. max_low_pfn = max_pfn;
  202. /*
  203. * Partially used pages are not usable - thus
  204. * we are rounding upwards:
  205. */
  206. start_pfn = PFN_UP(__pa(_end));
  207. /*
  208. * Find a proper area for the bootmem bitmap. After this
  209. * bootstrap step all allocations (until the page allocator
  210. * is intact) must be done via bootmem_alloc().
  211. */
  212. bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn,
  213. __MEMORY_START>>PAGE_SHIFT,
  214. max_low_pfn);
  215. /*
  216. * Register fully available low RAM pages with the bootmem allocator.
  217. */
  218. {
  219. unsigned long curr_pfn, last_pfn, pages;
  220. /*
  221. * We are rounding up the start address of usable memory:
  222. */
  223. curr_pfn = PFN_UP(__MEMORY_START);
  224. /*
  225. * ... and at the end of the usable range downwards:
  226. */
  227. last_pfn = PFN_DOWN(__pa(memory_end));
  228. if (last_pfn > max_low_pfn)
  229. last_pfn = max_low_pfn;
  230. pages = last_pfn - curr_pfn;
  231. free_bootmem_node(NODE_DATA(0), PFN_PHYS(curr_pfn),
  232. PFN_PHYS(pages));
  233. }
  234. /*
  235. * Reserve the kernel text and
  236. * Reserve the bootmem bitmap. We do this in two steps (first step
  237. * was init_bootmem()), because this catches the (definitely buggy)
  238. * case of us accidentally initializing the bootmem allocator with
  239. * an invalid RAM area.
  240. */
  241. reserve_bootmem_node(NODE_DATA(0), __MEMORY_START+PAGE_SIZE,
  242. (PFN_PHYS(start_pfn)+bootmap_size+PAGE_SIZE-1)-__MEMORY_START);
  243. /*
  244. * reserve physical page 0 - it's a special BIOS page on many boxes,
  245. * enabling clean reboots, SMP operation, laptop functions.
  246. */
  247. reserve_bootmem_node(NODE_DATA(0), __MEMORY_START, PAGE_SIZE);
  248. #ifdef CONFIG_BLK_DEV_INITRD
  249. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  250. if (&__rd_start != &__rd_end) {
  251. LOADER_TYPE = 1;
  252. INITRD_START = PHYSADDR((unsigned long)&__rd_start) -
  253. __MEMORY_START;
  254. INITRD_SIZE = (unsigned long)&__rd_end -
  255. (unsigned long)&__rd_start;
  256. }
  257. if (LOADER_TYPE && INITRD_START) {
  258. if (INITRD_START + INITRD_SIZE <= (max_low_pfn << PAGE_SHIFT)) {
  259. reserve_bootmem_node(NODE_DATA(0), INITRD_START +
  260. __MEMORY_START, INITRD_SIZE);
  261. initrd_start = INITRD_START + PAGE_OFFSET +
  262. __MEMORY_START;
  263. initrd_end = initrd_start + INITRD_SIZE;
  264. } else {
  265. printk("initrd extends beyond end of memory "
  266. "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
  267. INITRD_START + INITRD_SIZE,
  268. max_low_pfn << PAGE_SHIFT);
  269. initrd_start = 0;
  270. }
  271. }
  272. #endif
  273. #ifdef CONFIG_DUMMY_CONSOLE
  274. conswitchp = &dummy_con;
  275. #endif
  276. /* Perform the machine specific initialisation */
  277. if (likely(sh_mv.mv_setup))
  278. sh_mv.mv_setup(cmdline_p);
  279. paging_init();
  280. }
  281. struct sh_machine_vector* __init get_mv_byname(const char* name)
  282. {
  283. extern long __machvec_start, __machvec_end;
  284. struct sh_machine_vector *all_vecs =
  285. (struct sh_machine_vector *)&__machvec_start;
  286. int i, n = ((unsigned long)&__machvec_end
  287. - (unsigned long)&__machvec_start)/
  288. sizeof(struct sh_machine_vector);
  289. for (i = 0; i < n; ++i) {
  290. struct sh_machine_vector *mv = &all_vecs[i];
  291. if (mv == NULL)
  292. continue;
  293. if (strcasecmp(name, get_system_type()) == 0) {
  294. return mv;
  295. }
  296. }
  297. return NULL;
  298. }
  299. static struct cpu cpu[NR_CPUS];
  300. static int __init topology_init(void)
  301. {
  302. int cpu_id;
  303. for_each_possible_cpu(cpu_id)
  304. register_cpu(&cpu[cpu_id], cpu_id);
  305. return 0;
  306. }
  307. subsys_initcall(topology_init);
  308. static const char *cpu_name[] = {
  309. [CPU_SH7206] = "SH7206", [CPU_SH7619] = "SH7619",
  310. [CPU_SH7604] = "SH7604", [CPU_SH7300] = "SH7300",
  311. [CPU_SH7705] = "SH7705", [CPU_SH7706] = "SH7706",
  312. [CPU_SH7707] = "SH7707", [CPU_SH7708] = "SH7708",
  313. [CPU_SH7709] = "SH7709", [CPU_SH7710] = "SH7710",
  314. [CPU_SH7712] = "SH7712",
  315. [CPU_SH7729] = "SH7729", [CPU_SH7750] = "SH7750",
  316. [CPU_SH7750S] = "SH7750S", [CPU_SH7750R] = "SH7750R",
  317. [CPU_SH7751] = "SH7751", [CPU_SH7751R] = "SH7751R",
  318. [CPU_SH7760] = "SH7760", [CPU_SH73180] = "SH73180",
  319. [CPU_ST40RA] = "ST40RA", [CPU_ST40GX1] = "ST40GX1",
  320. [CPU_SH4_202] = "SH4-202", [CPU_SH4_501] = "SH4-501",
  321. [CPU_SH7770] = "SH7770", [CPU_SH7780] = "SH7780",
  322. [CPU_SH7781] = "SH7781", [CPU_SH7343] = "SH7343",
  323. [CPU_SH7785] = "SH7785", [CPU_SH7722] = "SH7722",
  324. [CPU_SH_NONE] = "Unknown"
  325. };
  326. const char *get_cpu_subtype(struct sh_cpuinfo *c)
  327. {
  328. return cpu_name[c->type];
  329. }
  330. #ifdef CONFIG_PROC_FS
  331. /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
  332. static const char *cpu_flags[] = {
  333. "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
  334. "ptea", "llsc", "l2", NULL
  335. };
  336. static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
  337. {
  338. unsigned long i;
  339. seq_printf(m, "cpu flags\t:");
  340. if (!c->flags) {
  341. seq_printf(m, " %s\n", cpu_flags[0]);
  342. return;
  343. }
  344. for (i = 0; cpu_flags[i]; i++)
  345. if ((c->flags & (1 << i)))
  346. seq_printf(m, " %s", cpu_flags[i+1]);
  347. seq_printf(m, "\n");
  348. }
  349. static void show_cacheinfo(struct seq_file *m, const char *type,
  350. struct cache_info info)
  351. {
  352. unsigned int cache_size;
  353. cache_size = info.ways * info.sets * info.linesz;
  354. seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
  355. type, cache_size >> 10, info.ways);
  356. }
  357. /*
  358. * Get CPU information for use by the procfs.
  359. */
  360. static int show_cpuinfo(struct seq_file *m, void *v)
  361. {
  362. struct sh_cpuinfo *c = v;
  363. unsigned int cpu = c - cpu_data;
  364. if (!cpu_online(cpu))
  365. return 0;
  366. if (cpu == 0)
  367. seq_printf(m, "machine\t\t: %s\n", get_system_type());
  368. seq_printf(m, "processor\t: %d\n", cpu);
  369. seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
  370. seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
  371. show_cpuflags(m, c);
  372. seq_printf(m, "cache type\t: ");
  373. /*
  374. * Check for what type of cache we have, we support both the
  375. * unified cache on the SH-2 and SH-3, as well as the harvard
  376. * style cache on the SH-4.
  377. */
  378. if (c->icache.flags & SH_CACHE_COMBINED) {
  379. seq_printf(m, "unified\n");
  380. show_cacheinfo(m, "cache", c->icache);
  381. } else {
  382. seq_printf(m, "split (harvard)\n");
  383. show_cacheinfo(m, "icache", c->icache);
  384. show_cacheinfo(m, "dcache", c->dcache);
  385. }
  386. /* Optional secondary cache */
  387. if (c->flags & CPU_HAS_L2_CACHE)
  388. show_cacheinfo(m, "scache", c->scache);
  389. seq_printf(m, "bogomips\t: %lu.%02lu\n",
  390. c->loops_per_jiffy/(500000/HZ),
  391. (c->loops_per_jiffy/(5000/HZ)) % 100);
  392. return show_clocks(m);
  393. }
  394. static void *c_start(struct seq_file *m, loff_t *pos)
  395. {
  396. return *pos < NR_CPUS ? cpu_data + *pos : NULL;
  397. }
  398. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  399. {
  400. ++*pos;
  401. return c_start(m, pos);
  402. }
  403. static void c_stop(struct seq_file *m, void *v)
  404. {
  405. }
  406. struct seq_operations cpuinfo_op = {
  407. .start = c_start,
  408. .next = c_next,
  409. .stop = c_stop,
  410. .show = show_cpuinfo,
  411. };
  412. #endif /* CONFIG_PROC_FS */