setup.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * arch/score/kernel/setup.c
  3. *
  4. * Score Processor version.
  5. *
  6. * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
  7. * Chen Liqin <liqin.chen@sunplusct.com>
  8. * Lennox Wu <lennox.wu@sunplusct.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, see the file COPYING, or write
  22. * to the Free Software Foundation, Inc.,
  23. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  24. */
  25. #include <linux/bootmem.h>
  26. #include <linux/initrd.h>
  27. #include <linux/ioport.h>
  28. #include <linux/mm.h>
  29. #include <linux/seq_file.h>
  30. #include <linux/screen_info.h>
  31. #include <asm-generic/sections.h>
  32. #include <asm/setup.h>
  33. struct screen_info screen_info;
  34. unsigned long kernelsp;
  35. static char command_line[COMMAND_LINE_SIZE];
  36. static struct resource code_resource = { .name = "Kernel code",};
  37. static struct resource data_resource = { .name = "Kernel data",};
  38. static void __init bootmem_init(void)
  39. {
  40. unsigned long start_pfn, bootmap_size;
  41. unsigned long size = initrd_end - initrd_start;
  42. start_pfn = PFN_UP(__pa(&_end));
  43. min_low_pfn = PFN_UP(MEMORY_START);
  44. max_low_pfn = PFN_UP(MEMORY_START + MEMORY_SIZE);
  45. /* Initialize the boot-time allocator with low memory only. */
  46. bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn,
  47. min_low_pfn, max_low_pfn);
  48. add_active_range(0, min_low_pfn, max_low_pfn);
  49. free_bootmem(PFN_PHYS(start_pfn),
  50. (max_low_pfn - start_pfn) << PAGE_SHIFT);
  51. memory_present(0, start_pfn, max_low_pfn);
  52. /* Reserve space for the bootmem bitmap. */
  53. reserve_bootmem(PFN_PHYS(start_pfn), bootmap_size, BOOTMEM_DEFAULT);
  54. if (size == 0) {
  55. printk(KERN_INFO "Initrd not found or empty");
  56. goto disable;
  57. }
  58. if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
  59. printk(KERN_ERR "Initrd extends beyond end of memory");
  60. goto disable;
  61. }
  62. /* Reserve space for the initrd bitmap. */
  63. reserve_bootmem(__pa(initrd_start), size, BOOTMEM_DEFAULT);
  64. initrd_below_start_ok = 1;
  65. pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
  66. initrd_start, size);
  67. return;
  68. disable:
  69. printk(KERN_CONT " - disabling initrd\n");
  70. initrd_start = 0;
  71. initrd_end = 0;
  72. }
  73. static void __init resource_init(void)
  74. {
  75. struct resource *res;
  76. code_resource.start = __pa(&_text);
  77. code_resource.end = __pa(&_etext) - 1;
  78. data_resource.start = __pa(&_etext);
  79. data_resource.end = __pa(&_edata) - 1;
  80. res = alloc_bootmem(sizeof(struct resource));
  81. res->name = "System RAM";
  82. res->start = MEMORY_START;
  83. res->end = MEMORY_START + MEMORY_SIZE - 1;
  84. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  85. request_resource(&iomem_resource, res);
  86. request_resource(res, &code_resource);
  87. request_resource(res, &data_resource);
  88. }
  89. void __init setup_arch(char **cmdline_p)
  90. {
  91. randomize_va_space = 0;
  92. *cmdline_p = command_line;
  93. cpu_cache_init();
  94. tlb_init();
  95. bootmem_init();
  96. paging_init();
  97. resource_init();
  98. }
  99. static int show_cpuinfo(struct seq_file *m, void *v)
  100. {
  101. unsigned long n = (unsigned long) v - 1;
  102. seq_printf(m, "processor\t\t: %ld\n", n);
  103. seq_printf(m, "\n");
  104. return 0;
  105. }
  106. static void *c_start(struct seq_file *m, loff_t *pos)
  107. {
  108. unsigned long i = *pos;
  109. return i < 1 ? (void *) (i + 1) : NULL;
  110. }
  111. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  112. {
  113. ++*pos;
  114. return c_start(m, pos);
  115. }
  116. static void c_stop(struct seq_file *m, void *v)
  117. {
  118. }
  119. const struct seq_operations cpuinfo_op = {
  120. .start = c_start,
  121. .next = c_next,
  122. .stop = c_stop,
  123. .show = show_cpuinfo,
  124. };
  125. static int __init topology_init(void)
  126. {
  127. return 0;
  128. }
  129. subsys_initcall(topology_init);