setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: setup.c,v 1.26 2002/06/04 07:57:56 jonashg Exp $
  2.  *
  3.  *  linux/arch/cris/kernel/setup.c
  4.  *
  5.  *  Copyright (C) 1995  Linus Torvalds
  6.  *  Copyright (c) 2001  Axis Communications AB
  7.  */
  8. /*
  9.  * This file handles the architecture-dependent parts of initialization
  10.  */
  11. #include <linux/errno.h>
  12. #include <linux/sched.h>
  13. #include <linux/kernel.h>
  14. #include <linux/mm.h>
  15. #include <linux/stddef.h>
  16. #include <linux/unistd.h>
  17. #include <linux/ptrace.h>
  18. #include <linux/slab.h>
  19. #include <linux/user.h>
  20. #include <linux/a.out.h>
  21. #include <linux/tty.h>
  22. #include <linux/ioport.h>
  23. #include <linux/delay.h>
  24. #include <linux/config.h>
  25. #include <linux/init.h>
  26. #include <linux/bootmem.h>
  27. #include <linux/seq_file.h>
  28. #include <asm/segment.h>
  29. #include <asm/system.h>
  30. #include <asm/smp.h>
  31. #include <asm/pgtable.h>
  32. #include <asm/types.h>
  33. #include <asm/svinto.h>
  34. /*
  35.  * Setup options
  36.  */
  37. struct drive_info_struct { char dummy[32]; } drive_info;
  38. struct screen_info screen_info;
  39. unsigned char aux_device_present;
  40. extern int root_mountflags;
  41. extern char _etext, _edata, _end;
  42. #define COMMAND_LINE_SIZE 256
  43. static char command_line[COMMAND_LINE_SIZE] = { 0, };
  44.        char saved_command_line[COMMAND_LINE_SIZE];
  45. extern const unsigned long text_start, edata; /* set by the linker script */
  46. extern unsigned long romfs_start, romfs_length, romfs_in_flash; /* from head.S */
  47. /* This mainly sets up the memory area, and can be really confusing.
  48.  *
  49.  * The physical DRAM is virtually mapped into dram_start to dram_end
  50.  * (usually c0000000 to c0000000 + DRAM size). The physical address is
  51.  * given by the macro __pa().
  52.  *
  53.  * In this DRAM, the kernel code and data is loaded, in the beginning.
  54.  * It really starts at c0004000 to make room for some special pages - 
  55.  * the start address is text_start. The kernel data ends at _end. After
  56.  * this the ROM filesystem is appended (if there is any).
  57.  * 
  58.  * Between this address and dram_end, we have RAM pages usable to the
  59.  * boot code and the system.
  60.  *
  61.  */
  62. void __init 
  63. setup_arch(char **cmdline_p)
  64. {
  65. extern void init_etrax_debug(void);
  66. unsigned long bootmap_size;
  67. unsigned long start_pfn, max_pfn;
  68. unsigned long memory_start;
  69.   /* register an initial console printing routine for printk's */
  70. init_etrax_debug();
  71. /* we should really poll for DRAM size! */
  72. high_memory = &dram_end;
  73. if(romfs_in_flash || !romfs_length) {
  74. /* if we have the romfs in flash, or if there is no rom filesystem,
  75.  * our free area starts directly after the BSS
  76.  */
  77. memory_start = (unsigned long) &_end;
  78. } else {
  79. /* otherwise the free area starts after the ROM filesystem */
  80. printk("ROM fs in RAM, size %lu bytesn", romfs_length);
  81. memory_start = romfs_start + romfs_length;
  82. }
  83. /* process 1's initial memory region is the kernel code/data */
  84. init_mm.start_code = (unsigned long) &text_start;
  85. init_mm.end_code =   (unsigned long) &_etext;
  86. init_mm.end_data =   (unsigned long) &_edata;
  87. init_mm.brk =        (unsigned long) &_end;
  88. #define PFN_UP(x)       (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
  89. #define PFN_DOWN(x)     ((x) >> PAGE_SHIFT)
  90. #define PFN_PHYS(x)     ((x) << PAGE_SHIFT)
  91. /* min_low_pfn points to the start of DRAM, start_pfn points
  92.  * to the first DRAM pages after the kernel, and max_low_pfn
  93.  * to the end of DRAM.
  94.  */
  95.         /*
  96.          * partially used pages are not usable - thus
  97.          * we are rounding upwards:
  98.          */
  99.         start_pfn = PFN_UP(memory_start);  /* usually c0000000 + kernel + romfs */
  100. max_pfn =   PFN_DOWN((unsigned long)high_memory); /* usually c0000000 + dram size */
  101.         /*
  102.          * Initialize the boot-time allocator (start, end)
  103.  *
  104.  * We give it access to all our DRAM, but we could as well just have
  105.  * given it a small slice. No point in doing that though, unless we
  106.  * have non-contiguous memory and want the boot-stuff to be in, say,
  107.  * the smallest area.
  108.  *
  109.  * It will put a bitmap of the allocated pages in the beginning
  110.  * of the range we give it, but it won't mark the bitmaps pages
  111.  * as reserved. We have to do that ourselves below.
  112.  *
  113.  * We need to use init_bootmem_node instead of init_bootmem
  114.  * because our map starts at a quite high address (min_low_pfn).
  115.          */
  116. max_low_pfn = max_pfn;
  117. min_low_pfn = PAGE_OFFSET >> PAGE_SHIFT;
  118. bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn,
  119.  min_low_pfn, 
  120.  max_low_pfn);
  121. /* And free all memory not belonging to the kernel (addr, size) */
  122. free_bootmem(PFN_PHYS(start_pfn), PFN_PHYS(max_pfn - start_pfn));
  123.         /*
  124.          * Reserve the bootmem bitmap itself as well. We do this in two
  125.          * steps (first step was init_bootmem()) because this catches
  126.          * the (very unlikely) case of us accidentally initializing the
  127.          * bootmem allocator with an invalid RAM area.
  128.  *
  129.  * Arguments are start, size
  130.          */
  131.         reserve_bootmem(PFN_PHYS(start_pfn), bootmap_size);
  132. /* paging_init() sets up the MMU and marks all pages as reserved */
  133. paging_init();
  134. /* We dont use a command line yet, so just re-initialize it without
  135.    saving anything that might be there.  */
  136. *cmdline_p = command_line;
  137. strncpy(command_line, "root=", COMMAND_LINE_SIZE);
  138. strncpy(command_line+5, CONFIG_ETRAX_ROOT_DEVICE,
  139. COMMAND_LINE_SIZE-5);
  140. /* Save command line copy for /proc/cmdline */
  141. memcpy(saved_command_line, command_line, COMMAND_LINE_SIZE);
  142. saved_command_line[COMMAND_LINE_SIZE-1] = '';
  143. /* give credit for the CRIS port */
  144. printk("Linux/CRIS port on ETRAX 100LX (c) 2001, 2002 Axis Communications ABn");
  145. }
  146. #ifdef CONFIG_PROC_FS
  147. #define HAS_FPU 0x0001
  148. #define HAS_MMU 0x0002
  149. #define HAS_ETHERNET100 0x0004
  150. #define HAS_TOKENRING 0x0008
  151. #define HAS_SCSI 0x0010
  152. #define HAS_ATA 0x0020
  153. #define HAS_USB 0x0040
  154. #define HAS_IRQ_BUG 0x0080
  155. #define HAS_MMU_BUG 0x0100
  156. static struct cpu_info {
  157. char *model;
  158. unsigned short cache;
  159. unsigned short flags;
  160. } cpu_info[] = {
  161. /* The first four models will never ever run this code and are
  162.    only here for display.  */
  163. { "ETRAX 1",         0, 0 },
  164. { "ETRAX 2",         0, 0 },
  165. { "ETRAX 3",         0, HAS_TOKENRING },
  166. { "ETRAX 4",         0, HAS_TOKENRING | HAS_SCSI },
  167. { "Unknown",         0, 0 },
  168. { "Unknown",         0, 0 },
  169. { "Unknown",         0, 0 },
  170. { "Simulator",       8, HAS_ETHERNET100 | HAS_SCSI | HAS_ATA },
  171. { "ETRAX 100",       8, HAS_ETHERNET100 | HAS_SCSI | HAS_ATA | HAS_IRQ_BUG },
  172. { "ETRAX 100",       8, HAS_ETHERNET100 | HAS_SCSI | HAS_ATA },
  173. { "ETRAX 100LX",     8, HAS_ETHERNET100 | HAS_SCSI | HAS_ATA | HAS_USB | HAS_MMU | HAS_MMU_BUG },
  174. { "ETRAX 100LX v2",  8, HAS_ETHERNET100 | HAS_SCSI | HAS_ATA | HAS_USB | HAS_MMU  },
  175. { "Unknown",         0, 0 }  /* This entry MUST be the last */
  176. };
  177. static int show_cpuinfo(struct seq_file *m, void *v)
  178. {
  179. unsigned long revision;
  180. struct cpu_info *info;
  181. /* read the version register in the CPU and print some stuff */
  182. revision = rdvr();
  183. if (revision >= sizeof cpu_info/sizeof *cpu_info)
  184. info = &cpu_info[sizeof cpu_info/sizeof *cpu_info - 1];
  185. else
  186. info = &cpu_info[revision];
  187. return seq_printf(m,
  188.        "cputt: CRISn"
  189.        "cpu revisiont: %lun"
  190.        "cpu modelt: %sn"
  191.        "cache sizet: %d kBn"
  192.        "fputt: %sn"
  193.        "mmutt: %sn"
  194.        "mmu DMA bugt: %sn"
  195.        "ethernett: %s Mbpsn"
  196.        "token ringt: %sn"
  197.        "scsitt: %sn"
  198.        "atatt: %sn"
  199.        "usbtt: %sn"
  200.        "bogomipst: %lu.%02lun",
  201.        revision,
  202.        info->model,
  203.        info->cache,
  204.        info->flags & HAS_FPU ? "yes" : "no",
  205.        info->flags & HAS_MMU ? "yes" : "no",
  206.        info->flags & HAS_MMU_BUG ? "yes" : "no",
  207.        info->flags & HAS_ETHERNET100 ? "10/100" : "10",
  208.        info->flags & HAS_TOKENRING ? "4/16 Mbps" : "no",
  209.        info->flags & HAS_SCSI ? "yes" : "no",
  210.        info->flags & HAS_ATA ? "yes" : "no",
  211.        info->flags & HAS_USB ? "yes" : "no",
  212.        (loops_per_jiffy * HZ + 500) / 500000,
  213.        ((loops_per_jiffy * HZ + 500) / 5000) % 100);
  214. }
  215. static void *c_start(struct seq_file *m, loff_t *pos)
  216. {
  217. /* We only got one CPU... */
  218. return *pos < 1 ? (void *)1 : NULL;
  219. }
  220. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  221. {
  222. ++*pos;
  223. return NULL;
  224. }
  225. static void c_stop(struct seq_file *m, void *v)
  226. {
  227. }
  228. struct seq_operations cpuinfo_op = {
  229. start:  c_start,
  230. next:   c_next,
  231. stop:   c_stop,
  232. show:   show_cpuinfo,
  233. };
  234. #endif /* CONFIG_PROC_FS */