setup.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  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 <linux/crash_dump.h>
  29. #include <linux/mmzone.h>
  30. #include <linux/clk.h>
  31. #include <linux/delay.h>
  32. #include <linux/platform_device.h>
  33. #include <linux/lmb.h>
  34. #include <asm/uaccess.h>
  35. #include <asm/io.h>
  36. #include <asm/page.h>
  37. #include <asm/elf.h>
  38. #include <asm/sections.h>
  39. #include <asm/irq.h>
  40. #include <asm/setup.h>
  41. #include <asm/clock.h>
  42. #include <asm/smp.h>
  43. #include <asm/mmu_context.h>
  44. /*
  45. * Initialize loops_per_jiffy as 10000000 (1000MIPS).
  46. * This value will be used at the very early stage of serial setup.
  47. * The bigger value means no problem.
  48. */
  49. struct sh_cpuinfo cpu_data[NR_CPUS] __read_mostly = {
  50. [0] = {
  51. .type = CPU_SH_NONE,
  52. .family = CPU_FAMILY_UNKNOWN,
  53. .loops_per_jiffy = 10000000,
  54. },
  55. };
  56. EXPORT_SYMBOL(cpu_data);
  57. /*
  58. * The machine vector. First entry in .machvec.init, or clobbered by
  59. * sh_mv= on the command line, prior to .machvec.init teardown.
  60. */
  61. struct sh_machine_vector sh_mv = { .mv_name = "generic", };
  62. EXPORT_SYMBOL(sh_mv);
  63. #ifdef CONFIG_VT
  64. struct screen_info screen_info;
  65. #endif
  66. extern int root_mountflags;
  67. #define RAMDISK_IMAGE_START_MASK 0x07FF
  68. #define RAMDISK_PROMPT_FLAG 0x8000
  69. #define RAMDISK_LOAD_FLAG 0x4000
  70. static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, };
  71. static struct resource code_resource = {
  72. .name = "Kernel code",
  73. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  74. };
  75. static struct resource data_resource = {
  76. .name = "Kernel data",
  77. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  78. };
  79. static struct resource bss_resource = {
  80. .name = "Kernel bss",
  81. .flags = IORESOURCE_BUSY | IORESOURCE_MEM,
  82. };
  83. unsigned long memory_start;
  84. EXPORT_SYMBOL(memory_start);
  85. unsigned long memory_end = 0;
  86. EXPORT_SYMBOL(memory_end);
  87. static struct resource mem_resources[MAX_NUMNODES];
  88. int l1i_cache_shape, l1d_cache_shape, l2_cache_shape;
  89. static int __init early_parse_mem(char *p)
  90. {
  91. unsigned long size;
  92. memory_start = (unsigned long)__va(__MEMORY_START);
  93. size = memparse(p, &p);
  94. if (size > __MEMORY_SIZE) {
  95. printk(KERN_ERR
  96. "Using mem= to increase the size of kernel memory "
  97. "is not allowed.\n"
  98. " Recompile the kernel with the correct value for "
  99. "CONFIG_MEMORY_SIZE.\n");
  100. return 0;
  101. }
  102. memory_end = memory_start + size;
  103. return 0;
  104. }
  105. early_param("mem", early_parse_mem);
  106. /*
  107. * Register fully available low RAM pages with the bootmem allocator.
  108. */
  109. static void __init register_bootmem_low_pages(void)
  110. {
  111. unsigned long curr_pfn, last_pfn, pages;
  112. /*
  113. * We are rounding up the start address of usable memory:
  114. */
  115. curr_pfn = PFN_UP(__MEMORY_START);
  116. /*
  117. * ... and at the end of the usable range downwards:
  118. */
  119. last_pfn = PFN_DOWN(__pa(memory_end));
  120. if (last_pfn > max_low_pfn)
  121. last_pfn = max_low_pfn;
  122. pages = last_pfn - curr_pfn;
  123. free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(pages));
  124. }
  125. #ifdef CONFIG_KEXEC
  126. static void __init reserve_crashkernel(void)
  127. {
  128. unsigned long long free_mem;
  129. unsigned long long crash_size, crash_base;
  130. void *vp;
  131. int ret;
  132. free_mem = ((unsigned long long)max_low_pfn - min_low_pfn) << PAGE_SHIFT;
  133. ret = parse_crashkernel(boot_command_line, free_mem,
  134. &crash_size, &crash_base);
  135. if (ret == 0 && crash_size) {
  136. if (crash_base <= 0) {
  137. vp = alloc_bootmem_nopanic(crash_size);
  138. if (!vp) {
  139. printk(KERN_INFO "crashkernel allocation "
  140. "failed\n");
  141. return;
  142. }
  143. crash_base = __pa(vp);
  144. } else if (reserve_bootmem(crash_base, crash_size,
  145. BOOTMEM_EXCLUSIVE) < 0) {
  146. printk(KERN_INFO "crashkernel reservation failed - "
  147. "memory is in use\n");
  148. return;
  149. }
  150. printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
  151. "for crashkernel (System RAM: %ldMB)\n",
  152. (unsigned long)(crash_size >> 20),
  153. (unsigned long)(crash_base >> 20),
  154. (unsigned long)(free_mem >> 20));
  155. crashk_res.start = crash_base;
  156. crashk_res.end = crash_base + crash_size - 1;
  157. insert_resource(&iomem_resource, &crashk_res);
  158. }
  159. }
  160. #else
  161. static inline void __init reserve_crashkernel(void)
  162. {}
  163. #endif
  164. static void __init check_for_initrd(void)
  165. {
  166. #ifdef CONFIG_BLK_DEV_INITRD
  167. unsigned long start, end;
  168. /*
  169. * Check for the rare cases where boot loaders adhere to the boot
  170. * ABI.
  171. */
  172. if (!LOADER_TYPE || !INITRD_START || !INITRD_SIZE)
  173. goto disable;
  174. start = INITRD_START + __MEMORY_START;
  175. end = start + INITRD_SIZE;
  176. if (unlikely(end <= start))
  177. goto disable;
  178. if (unlikely(start & ~PAGE_MASK)) {
  179. pr_err("initrd must be page aligned\n");
  180. goto disable;
  181. }
  182. if (unlikely(start < PAGE_OFFSET)) {
  183. pr_err("initrd start < PAGE_OFFSET\n");
  184. goto disable;
  185. }
  186. if (unlikely(end > lmb_end_of_DRAM())) {
  187. pr_err("initrd extends beyond end of memory "
  188. "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
  189. end, (unsigned long)lmb_end_of_DRAM());
  190. goto disable;
  191. }
  192. /*
  193. * If we got this far inspite of the boot loader's best efforts
  194. * to the contrary, assume we actually have a valid initrd and
  195. * fix up the root dev.
  196. */
  197. ROOT_DEV = Root_RAM0;
  198. /*
  199. * Address sanitization
  200. */
  201. initrd_start = (unsigned long)__va(__pa(start));
  202. initrd_end = initrd_start + INITRD_SIZE;
  203. reserve_bootmem(__pa(initrd_start), INITRD_SIZE, BOOTMEM_DEFAULT);
  204. return;
  205. disable:
  206. pr_info("initrd disabled\n");
  207. initrd_start = initrd_end = 0;
  208. #endif
  209. }
  210. void __cpuinit calibrate_delay(void)
  211. {
  212. struct clk *clk = clk_get(NULL, "cpu_clk");
  213. if (IS_ERR(clk))
  214. panic("Need a sane CPU clock definition!");
  215. loops_per_jiffy = (clk_get_rate(clk) >> 1) / HZ;
  216. printk(KERN_INFO "Calibrating delay loop (skipped)... "
  217. "%lu.%02lu BogoMIPS PRESET (lpj=%lu)\n",
  218. loops_per_jiffy/(500000/HZ),
  219. (loops_per_jiffy/(5000/HZ)) % 100,
  220. loops_per_jiffy);
  221. }
  222. void __init __add_active_range(unsigned int nid, unsigned long start_pfn,
  223. unsigned long end_pfn)
  224. {
  225. struct resource *res = &mem_resources[nid];
  226. WARN_ON(res->name); /* max one active range per node for now */
  227. res->name = "System RAM";
  228. res->start = start_pfn << PAGE_SHIFT;
  229. res->end = (end_pfn << PAGE_SHIFT) - 1;
  230. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  231. if (request_resource(&iomem_resource, res)) {
  232. pr_err("unable to request memory_resource 0x%lx 0x%lx\n",
  233. start_pfn, end_pfn);
  234. return;
  235. }
  236. /*
  237. * We don't know which RAM region contains kernel data,
  238. * so we try it repeatedly and let the resource manager
  239. * test it.
  240. */
  241. request_resource(res, &code_resource);
  242. request_resource(res, &data_resource);
  243. request_resource(res, &bss_resource);
  244. add_active_range(nid, start_pfn, end_pfn);
  245. }
  246. void __init setup_bootmem_allocator(unsigned long free_pfn)
  247. {
  248. unsigned long bootmap_size;
  249. unsigned long bootmap_pages, bootmem_paddr;
  250. u64 total_pages = (lmb_end_of_DRAM() - __MEMORY_START) >> PAGE_SHIFT;
  251. int i;
  252. bootmap_pages = bootmem_bootmap_pages(total_pages);
  253. bootmem_paddr = lmb_alloc(bootmap_pages << PAGE_SHIFT, PAGE_SIZE);
  254. /*
  255. * Find a proper area for the bootmem bitmap. After this
  256. * bootstrap step all allocations (until the page allocator
  257. * is intact) must be done via bootmem_alloc().
  258. */
  259. bootmap_size = init_bootmem_node(NODE_DATA(0),
  260. bootmem_paddr >> PAGE_SHIFT,
  261. min_low_pfn, max_low_pfn);
  262. /* Add active regions with valid PFNs. */
  263. for (i = 0; i < lmb.memory.cnt; i++) {
  264. unsigned long start_pfn, end_pfn;
  265. start_pfn = lmb.memory.region[i].base >> PAGE_SHIFT;
  266. end_pfn = start_pfn + lmb_size_pages(&lmb.memory, i);
  267. __add_active_range(0, start_pfn, end_pfn);
  268. }
  269. /*
  270. * Add all physical memory to the bootmem map and mark each
  271. * area as present.
  272. */
  273. register_bootmem_low_pages();
  274. /* Reserve the sections we're already using. */
  275. for (i = 0; i < lmb.reserved.cnt; i++)
  276. reserve_bootmem(lmb.reserved.region[i].base,
  277. lmb_size_bytes(&lmb.reserved, i),
  278. BOOTMEM_DEFAULT);
  279. node_set_online(0);
  280. sparse_memory_present_with_active_regions(0);
  281. check_for_initrd();
  282. reserve_crashkernel();
  283. }
  284. #ifndef CONFIG_NEED_MULTIPLE_NODES
  285. static void __init setup_memory(void)
  286. {
  287. unsigned long start_pfn;
  288. u64 base = min_low_pfn << PAGE_SHIFT;
  289. u64 size = (max_low_pfn << PAGE_SHIFT) - base;
  290. /*
  291. * Partially used pages are not usable - thus
  292. * we are rounding upwards:
  293. */
  294. start_pfn = PFN_UP(__pa(_end));
  295. lmb_add(base, size);
  296. /*
  297. * Reserve the kernel text and
  298. * Reserve the bootmem bitmap. We do this in two steps (first step
  299. * was init_bootmem()), because this catches the (definitely buggy)
  300. * case of us accidentally initializing the bootmem allocator with
  301. * an invalid RAM area.
  302. */
  303. lmb_reserve(__MEMORY_START + CONFIG_ZERO_PAGE_OFFSET,
  304. (PFN_PHYS(start_pfn) + PAGE_SIZE - 1) -
  305. (__MEMORY_START + CONFIG_ZERO_PAGE_OFFSET));
  306. /*
  307. * Reserve physical pages below CONFIG_ZERO_PAGE_OFFSET.
  308. */
  309. if (CONFIG_ZERO_PAGE_OFFSET != 0)
  310. lmb_reserve(__MEMORY_START, CONFIG_ZERO_PAGE_OFFSET);
  311. lmb_analyze();
  312. lmb_dump_all();
  313. setup_bootmem_allocator(start_pfn);
  314. }
  315. #else
  316. extern void __init setup_memory(void);
  317. #endif
  318. void __init __attribute__ ((weak)) plat_early_device_setup(void)
  319. {
  320. }
  321. void __init setup_arch(char **cmdline_p)
  322. {
  323. enable_mmu();
  324. ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV);
  325. printk(KERN_NOTICE "Boot params:\n"
  326. "... MOUNT_ROOT_RDONLY - %08lx\n"
  327. "... RAMDISK_FLAGS - %08lx\n"
  328. "... ORIG_ROOT_DEV - %08lx\n"
  329. "... LOADER_TYPE - %08lx\n"
  330. "... INITRD_START - %08lx\n"
  331. "... INITRD_SIZE - %08lx\n",
  332. MOUNT_ROOT_RDONLY, RAMDISK_FLAGS,
  333. ORIG_ROOT_DEV, LOADER_TYPE,
  334. INITRD_START, INITRD_SIZE);
  335. #ifdef CONFIG_BLK_DEV_RAM
  336. rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK;
  337. rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0);
  338. rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0);
  339. #endif
  340. if (!MOUNT_ROOT_RDONLY)
  341. root_mountflags &= ~MS_RDONLY;
  342. init_mm.start_code = (unsigned long) _text;
  343. init_mm.end_code = (unsigned long) _etext;
  344. init_mm.end_data = (unsigned long) _edata;
  345. init_mm.brk = (unsigned long) _end;
  346. code_resource.start = virt_to_phys(_text);
  347. code_resource.end = virt_to_phys(_etext)-1;
  348. data_resource.start = virt_to_phys(_etext);
  349. data_resource.end = virt_to_phys(_edata)-1;
  350. bss_resource.start = virt_to_phys(__bss_start);
  351. bss_resource.end = virt_to_phys(_ebss)-1;
  352. memory_start = (unsigned long)__va(__MEMORY_START);
  353. if (!memory_end)
  354. memory_end = memory_start + __MEMORY_SIZE;
  355. #ifdef CONFIG_CMDLINE_OVERWRITE
  356. strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line));
  357. #else
  358. strlcpy(command_line, COMMAND_LINE, sizeof(command_line));
  359. #ifdef CONFIG_CMDLINE_EXTEND
  360. strlcat(command_line, " ", sizeof(command_line));
  361. strlcat(command_line, CONFIG_CMDLINE, sizeof(command_line));
  362. #endif
  363. #endif
  364. /* Save unparsed command line copy for /proc/cmdline */
  365. memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
  366. *cmdline_p = command_line;
  367. parse_early_param();
  368. uncached_init();
  369. plat_early_device_setup();
  370. /* Let earlyprintk output early console messages */
  371. early_platform_driver_probe("earlyprintk", 1, 1);
  372. sh_mv_setup();
  373. /*
  374. * Find the highest page frame number we have available
  375. */
  376. max_pfn = PFN_DOWN(__pa(memory_end));
  377. /*
  378. * Determine low and high memory ranges:
  379. */
  380. max_low_pfn = max_pfn;
  381. min_low_pfn = __MEMORY_START >> PAGE_SHIFT;
  382. nodes_clear(node_online_map);
  383. pmb_init();
  384. lmb_init();
  385. setup_memory();
  386. sparse_init();
  387. #ifdef CONFIG_DUMMY_CONSOLE
  388. conswitchp = &dummy_con;
  389. #endif
  390. paging_init();
  391. ioremap_fixed_init();
  392. /* Perform the machine specific initialisation */
  393. if (likely(sh_mv.mv_setup))
  394. sh_mv.mv_setup(cmdline_p);
  395. plat_smp_setup();
  396. }
  397. /* processor boot mode configuration */
  398. int generic_mode_pins(void)
  399. {
  400. pr_warning("generic_mode_pins(): missing mode pin configuration\n");
  401. return 0;
  402. }
  403. int test_mode_pin(int pin)
  404. {
  405. return sh_mv.mv_mode_pins() & pin;
  406. }
  407. static const char *cpu_name[] = {
  408. [CPU_SH7201] = "SH7201",
  409. [CPU_SH7203] = "SH7203", [CPU_SH7263] = "SH7263",
  410. [CPU_SH7206] = "SH7206", [CPU_SH7619] = "SH7619",
  411. [CPU_SH7705] = "SH7705", [CPU_SH7706] = "SH7706",
  412. [CPU_SH7707] = "SH7707", [CPU_SH7708] = "SH7708",
  413. [CPU_SH7709] = "SH7709", [CPU_SH7710] = "SH7710",
  414. [CPU_SH7712] = "SH7712", [CPU_SH7720] = "SH7720",
  415. [CPU_SH7721] = "SH7721", [CPU_SH7729] = "SH7729",
  416. [CPU_SH7750] = "SH7750", [CPU_SH7750S] = "SH7750S",
  417. [CPU_SH7750R] = "SH7750R", [CPU_SH7751] = "SH7751",
  418. [CPU_SH7751R] = "SH7751R", [CPU_SH7760] = "SH7760",
  419. [CPU_SH4_202] = "SH4-202", [CPU_SH4_501] = "SH4-501",
  420. [CPU_SH7763] = "SH7763", [CPU_SH7770] = "SH7770",
  421. [CPU_SH7780] = "SH7780", [CPU_SH7781] = "SH7781",
  422. [CPU_SH7343] = "SH7343", [CPU_SH7785] = "SH7785",
  423. [CPU_SH7786] = "SH7786", [CPU_SH7757] = "SH7757",
  424. [CPU_SH7722] = "SH7722", [CPU_SHX3] = "SH-X3",
  425. [CPU_SH5_101] = "SH5-101", [CPU_SH5_103] = "SH5-103",
  426. [CPU_MXG] = "MX-G", [CPU_SH7723] = "SH7723",
  427. [CPU_SH7366] = "SH7366", [CPU_SH7724] = "SH7724",
  428. [CPU_SH_NONE] = "Unknown"
  429. };
  430. const char *get_cpu_subtype(struct sh_cpuinfo *c)
  431. {
  432. return cpu_name[c->type];
  433. }
  434. EXPORT_SYMBOL(get_cpu_subtype);
  435. #ifdef CONFIG_PROC_FS
  436. /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
  437. static const char *cpu_flags[] = {
  438. "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
  439. "ptea", "llsc", "l2", "op32", "pteaex", NULL
  440. };
  441. static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c)
  442. {
  443. unsigned long i;
  444. seq_printf(m, "cpu flags\t:");
  445. if (!c->flags) {
  446. seq_printf(m, " %s\n", cpu_flags[0]);
  447. return;
  448. }
  449. for (i = 0; cpu_flags[i]; i++)
  450. if ((c->flags & (1 << i)))
  451. seq_printf(m, " %s", cpu_flags[i+1]);
  452. seq_printf(m, "\n");
  453. }
  454. static void show_cacheinfo(struct seq_file *m, const char *type,
  455. struct cache_info info)
  456. {
  457. unsigned int cache_size;
  458. cache_size = info.ways * info.sets * info.linesz;
  459. seq_printf(m, "%s size\t: %2dKiB (%d-way)\n",
  460. type, cache_size >> 10, info.ways);
  461. }
  462. /*
  463. * Get CPU information for use by the procfs.
  464. */
  465. static int show_cpuinfo(struct seq_file *m, void *v)
  466. {
  467. struct sh_cpuinfo *c = v;
  468. unsigned int cpu = c - cpu_data;
  469. if (!cpu_online(cpu))
  470. return 0;
  471. if (cpu == 0)
  472. seq_printf(m, "machine\t\t: %s\n", get_system_type());
  473. else
  474. seq_printf(m, "\n");
  475. seq_printf(m, "processor\t: %d\n", cpu);
  476. seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);
  477. seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c));
  478. if (c->cut_major == -1)
  479. seq_printf(m, "cut\t\t: unknown\n");
  480. else if (c->cut_minor == -1)
  481. seq_printf(m, "cut\t\t: %d.x\n", c->cut_major);
  482. else
  483. seq_printf(m, "cut\t\t: %d.%d\n", c->cut_major, c->cut_minor);
  484. show_cpuflags(m, c);
  485. seq_printf(m, "cache type\t: ");
  486. /*
  487. * Check for what type of cache we have, we support both the
  488. * unified cache on the SH-2 and SH-3, as well as the harvard
  489. * style cache on the SH-4.
  490. */
  491. if (c->icache.flags & SH_CACHE_COMBINED) {
  492. seq_printf(m, "unified\n");
  493. show_cacheinfo(m, "cache", c->icache);
  494. } else {
  495. seq_printf(m, "split (harvard)\n");
  496. show_cacheinfo(m, "icache", c->icache);
  497. show_cacheinfo(m, "dcache", c->dcache);
  498. }
  499. /* Optional secondary cache */
  500. if (c->flags & CPU_HAS_L2_CACHE)
  501. show_cacheinfo(m, "scache", c->scache);
  502. seq_printf(m, "bogomips\t: %lu.%02lu\n",
  503. c->loops_per_jiffy/(500000/HZ),
  504. (c->loops_per_jiffy/(5000/HZ)) % 100);
  505. return 0;
  506. }
  507. static void *c_start(struct seq_file *m, loff_t *pos)
  508. {
  509. return *pos < NR_CPUS ? cpu_data + *pos : NULL;
  510. }
  511. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  512. {
  513. ++*pos;
  514. return c_start(m, pos);
  515. }
  516. static void c_stop(struct seq_file *m, void *v)
  517. {
  518. }
  519. const struct seq_operations cpuinfo_op = {
  520. .start = c_start,
  521. .next = c_next,
  522. .stop = c_stop,
  523. .show = show_cpuinfo,
  524. };
  525. #endif /* CONFIG_PROC_FS */
  526. struct dentry *sh_debugfs_root;
  527. static int __init sh_debugfs_init(void)
  528. {
  529. sh_debugfs_root = debugfs_create_dir("sh", NULL);
  530. if (!sh_debugfs_root)
  531. return -ENOMEM;
  532. if (IS_ERR(sh_debugfs_root))
  533. return PTR_ERR(sh_debugfs_root);
  534. return 0;
  535. }
  536. arch_initcall(sh_debugfs_init);