init.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/alpha/mm/init.c
  3.  *
  4.  *  Copyright (C) 1995  Linus Torvalds
  5.  */
  6. /* 2.3.x zone allocator, 1999 Andrea Arcangeli <andrea@suse.de> */
  7. #include <linux/config.h>
  8. #include <linux/signal.h>
  9. #include <linux/sched.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/string.h>
  13. #include <linux/types.h>
  14. #include <linux/ptrace.h>
  15. #include <linux/mman.h>
  16. #include <linux/mm.h>
  17. #include <linux/swap.h>
  18. #include <linux/init.h>
  19. #include <linux/bootmem.h> /* max_low_pfn */
  20. #include <linux/vmalloc.h>
  21. #ifdef CONFIG_BLK_DEV_INITRD
  22. #include <linux/blk.h>
  23. #endif
  24. #include <asm/system.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/pgalloc.h>
  28. #include <asm/hwrpb.h>
  29. #include <asm/dma.h>
  30. #include <asm/mmu_context.h>
  31. #include <asm/console.h>
  32. #include <asm/tlb.h>
  33. mmu_gather_t mmu_gathers[NR_CPUS];
  34. unsigned long totalram_pages;
  35. extern void die_if_kernel(char *,struct pt_regs *,long);
  36. struct thread_struct original_pcb;
  37. #ifndef CONFIG_SMP
  38. struct pgtable_cache_struct quicklists;
  39. #endif
  40. pgd_t *
  41. get_pgd_slow(void)
  42. {
  43. pgd_t *ret, *init;
  44. ret = (pgd_t *)__get_free_page(GFP_KERNEL);
  45. init = pgd_offset(&init_mm, 0UL);
  46. if (ret) {
  47. clear_page(ret);
  48. #ifdef CONFIG_ALPHA_LARGE_VMALLOC
  49. memcpy (ret + USER_PTRS_PER_PGD, init + USER_PTRS_PER_PGD,
  50. (PTRS_PER_PGD - USER_PTRS_PER_PGD - 1)*sizeof(pgd_t));
  51. #else
  52. pgd_val(ret[PTRS_PER_PGD-2]) = pgd_val(init[PTRS_PER_PGD-2]);
  53. #endif
  54. /* The last PGD entry is the VPTB self-map.  */
  55. pgd_val(ret[PTRS_PER_PGD-1])
  56.   = pte_val(mk_pte(virt_to_page(ret), PAGE_KERNEL));
  57. }
  58. return ret;
  59. }
  60. int do_check_pgt_cache(int low, int high)
  61. {
  62. int freed = 0;
  63. if(pgtable_cache_size > high) {
  64. do {
  65. if(pgd_quicklist) {
  66. free_pgd_slow(get_pgd_fast());
  67. freed++;
  68. }
  69. if(pmd_quicklist) {
  70. pmd_free_slow(pmd_alloc_one_fast(NULL, 0));
  71. freed++;
  72. }
  73. if(pte_quicklist) {
  74. pte_free_slow(pte_alloc_one_fast(NULL, 0));
  75. freed++;
  76. }
  77. } while(pgtable_cache_size > low);
  78. }
  79. return freed;
  80. }
  81. /*
  82.  * BAD_PAGE is the page that is used for page faults when linux
  83.  * is out-of-memory. Older versions of linux just did a
  84.  * do_exit(), but using this instead means there is less risk
  85.  * for a process dying in kernel mode, possibly leaving an inode
  86.  * unused etc..
  87.  *
  88.  * BAD_PAGETABLE is the accompanying page-table: it is initialized
  89.  * to point to BAD_PAGE entries.
  90.  *
  91.  * ZERO_PAGE is a special page that is used for zero-initialized
  92.  * data and COW.
  93.  */
  94. pmd_t *
  95. __bad_pagetable(void)
  96. {
  97. memset((void *) EMPTY_PGT, 0, PAGE_SIZE);
  98. return (pmd_t *) EMPTY_PGT;
  99. }
  100. pte_t
  101. __bad_page(void)
  102. {
  103. memset((void *) EMPTY_PGE, 0, PAGE_SIZE);
  104. return pte_mkdirty(mk_pte(virt_to_page(EMPTY_PGE), PAGE_SHARED));
  105. }
  106. #ifndef CONFIG_DISCONTIGMEM
  107. void
  108. show_mem(void)
  109. {
  110. long i,free = 0,total = 0,reserved = 0;
  111. long shared = 0, cached = 0;
  112. printk("nMem-info:n");
  113. show_free_areas();
  114. printk("Free swap:       %6dkBn",nr_swap_pages<<(PAGE_SHIFT-10));
  115. i = max_mapnr;
  116. while (i-- > 0) {
  117. total++;
  118. if (PageReserved(mem_map+i))
  119. reserved++;
  120. else if (PageSwapCache(mem_map+i))
  121. cached++;
  122. else if (!page_count(mem_map+i))
  123. free++;
  124. else
  125. shared += atomic_read(&mem_map[i].count) - 1;
  126. }
  127. printk("%ld pages of RAMn",total);
  128. printk("%ld free pagesn",free);
  129. printk("%ld reserved pagesn",reserved);
  130. printk("%ld pages sharedn",shared);
  131. printk("%ld pages swap cachedn",cached);
  132. printk("%ld pages in page table cachen",pgtable_cache_size);
  133. show_buffers();
  134. }
  135. #endif
  136. static inline unsigned long
  137. load_PCB(struct thread_struct * pcb)
  138. {
  139. register unsigned long sp __asm__("$30");
  140. pcb->ksp = sp;
  141. return __reload_thread(pcb);
  142. }
  143. /* Set up initial PCB, VPTB, and other such nicities.  */
  144. static inline void
  145. switch_to_system_map(void)
  146. {
  147. unsigned long newptbr;
  148. unsigned long original_pcb_ptr;
  149. /* Initialize the kernel's page tables.  Linux puts the vptb in
  150.    the last slot of the L1 page table.  */
  151. memset(swapper_pg_dir, 0, PAGE_SIZE);
  152. newptbr = ((unsigned long) swapper_pg_dir - PAGE_OFFSET) >> PAGE_SHIFT;
  153. pgd_val(swapper_pg_dir[1023]) =
  154. (newptbr << 32) | pgprot_val(PAGE_KERNEL);
  155. /* Set the vptb.  This is often done by the bootloader, but 
  156.    shouldn't be required.  */
  157. if (hwrpb->vptb != 0xfffffffe00000000) {
  158. wrvptptr(0xfffffffe00000000);
  159. hwrpb->vptb = 0xfffffffe00000000;
  160. hwrpb_update_checksum(hwrpb);
  161. }
  162. /* Also set up the real kernel PCB while we're at it.  */
  163. init_task.thread.ptbr = newptbr;
  164. init_task.thread.pal_flags = 1; /* set FEN, clear everything else */
  165. init_task.thread.flags = 0;
  166. original_pcb_ptr = load_PCB(&init_task.thread);
  167. tbia();
  168. /* Save off the contents of the original PCB so that we can
  169.    restore the original console's page tables for a clean reboot.
  170.    Note that the PCB is supposed to be a physical address, but
  171.    since KSEG values also happen to work, folks get confused.
  172.    Check this here.  */
  173. if (original_pcb_ptr < PAGE_OFFSET) {
  174. original_pcb_ptr = (unsigned long)
  175. phys_to_virt(original_pcb_ptr);
  176. }
  177. original_pcb = *(struct thread_struct *) original_pcb_ptr;
  178. }
  179. int callback_init_done;
  180. void * __init
  181. callback_init(void * kernel_end)
  182. {
  183. struct crb_struct * crb;
  184. pgd_t *pgd;
  185. pmd_t *pmd;
  186. void *two_pages;
  187. /* Starting at the HWRPB, locate the CRB. */
  188. crb = (struct crb_struct *)((char *)hwrpb + hwrpb->crb_offset);
  189. if (alpha_using_srm) {
  190. /* Tell the console whither it is to be remapped. */
  191. if (srm_fixup(VMALLOC_START, (unsigned long)hwrpb))
  192. __halt(); /* "We're boned."  --Bender */
  193. /* Edit the procedure descriptors for DISPATCH and FIXUP. */
  194. crb->dispatch_va = (struct procdesc_struct *)
  195. (VMALLOC_START + (unsigned long)crb->dispatch_va
  196.  - crb->map[0].va);
  197. crb->fixup_va = (struct procdesc_struct *)
  198. (VMALLOC_START + (unsigned long)crb->fixup_va
  199.  - crb->map[0].va);
  200. }
  201. switch_to_system_map();
  202. /* Allocate one PGD and one PMD.  In the case of SRM, we'll need
  203.    these to actually remap the console.  There is an assumption
  204.    here that only one of each is needed, and this allows for 8MB.
  205.    Currently (late 1999), big consoles are still under 4MB.
  206.    In the case of not SRM, but not CONFIG_ALPHA_LARGE_VMALLOC,
  207.    we need to allocate the PGD we use for vmalloc before we start
  208.    forking other tasks.  */
  209. two_pages = (void *)
  210.   (((unsigned long)kernel_end + ~PAGE_MASK) & PAGE_MASK);
  211. kernel_end = two_pages + 2*PAGE_SIZE;
  212. memset(two_pages, 0, 2*PAGE_SIZE);
  213. pgd = pgd_offset_k(VMALLOC_START);
  214. pgd_set(pgd, (pmd_t *)two_pages);
  215. pmd = pmd_offset(pgd, VMALLOC_START);
  216. pmd_set(pmd, (pte_t *)(two_pages + PAGE_SIZE));
  217. if (alpha_using_srm) {
  218. static struct vm_struct console_remap_vm;
  219. unsigned long vaddr = VMALLOC_START;
  220. long i, j;
  221. /* Set up the third level PTEs and update the virtual
  222.    addresses of the CRB entries.  */
  223. for (i = 0; i < crb->map_entries; ++i) {
  224. unsigned long paddr = crb->map[i].pa;
  225. crb->map[i].va = vaddr;
  226. for (j = 0; j < crb->map[i].count; ++j) {
  227. set_pte(pte_offset(pmd, vaddr),
  228. mk_pte_phys(paddr, PAGE_KERNEL));
  229. paddr += PAGE_SIZE;
  230. vaddr += PAGE_SIZE;
  231. }
  232. }
  233. /* Let vmalloc know that we've allocated some space.  */
  234. console_remap_vm.flags = VM_ALLOC;
  235. console_remap_vm.addr = VMALLOC_START;
  236. console_remap_vm.size = vaddr - VMALLOC_START;
  237. vmlist = &console_remap_vm;
  238. }
  239. callback_init_done = 1;
  240. return kernel_end;
  241. }
  242. #ifndef CONFIG_DISCONTIGMEM
  243. /*
  244.  * paging_init() sets up the memory map.
  245.  */
  246. void
  247. paging_init(void)
  248. {
  249. unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0};
  250. unsigned long dma_pfn, high_pfn;
  251. dma_pfn = virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
  252. high_pfn = max_low_pfn;
  253. if (dma_pfn >= high_pfn)
  254. zones_size[ZONE_DMA] = high_pfn;
  255. else {
  256. zones_size[ZONE_DMA] = dma_pfn;
  257. zones_size[ZONE_NORMAL] = high_pfn - dma_pfn;
  258. }
  259. /* Initialize mem_map[].  */
  260. free_area_init(zones_size);
  261. /* Initialize the kernel's ZERO_PGE. */
  262. memset((void *)ZERO_PGE, 0, PAGE_SIZE);
  263. }
  264. #endif /* CONFIG_DISCONTIGMEM */
  265. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_SRM)
  266. void
  267. srm_paging_stop (void)
  268. {
  269. /* Move the vptb back to where the SRM console expects it.  */
  270. swapper_pg_dir[1] = swapper_pg_dir[1023];
  271. tbia();
  272. wrvptptr(0x200000000);
  273. hwrpb->vptb = 0x200000000;
  274. hwrpb_update_checksum(hwrpb);
  275. /* Reload the page tables that the console had in use.  */
  276. load_PCB(&original_pcb);
  277. tbia();
  278. }
  279. #endif
  280. #ifndef CONFIG_DISCONTIGMEM
  281. static void __init
  282. printk_memory_info(void)
  283. {
  284. unsigned long codesize, reservedpages, datasize, initsize, tmp;
  285. extern int page_is_ram(unsigned long) __init;
  286. extern char _text, _etext, _data, _edata;
  287. extern char __init_begin, __init_end;
  288. /* printk all informations */
  289. reservedpages = 0;
  290. for (tmp = 0; tmp < max_low_pfn; tmp++)
  291. /*
  292.  * Only count reserved RAM pages
  293.  */
  294. if (page_is_ram(tmp) && PageReserved(mem_map+tmp))
  295. reservedpages++;
  296. codesize =  (unsigned long) &_etext - (unsigned long) &_text;
  297. datasize =  (unsigned long) &_edata - (unsigned long) &_data;
  298. initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
  299. printk("Memory: %luk/%luk available (%luk kernel code, %luk reserved, %luk data, %luk init)n",
  300.        (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
  301.        max_mapnr << (PAGE_SHIFT-10),
  302.        codesize >> 10,
  303.        reservedpages << (PAGE_SHIFT-10),
  304.        datasize >> 10,
  305.        initsize >> 10);
  306. }
  307. void __init
  308. mem_init(void)
  309. {
  310. max_mapnr = num_physpages = max_low_pfn;
  311. totalram_pages += free_all_bootmem();
  312. high_memory = (void *) __va(max_low_pfn * PAGE_SIZE);
  313. printk_memory_info();
  314. }
  315. #endif /* CONFIG_DISCONTIGMEM */
  316. void
  317. free_initmem (void)
  318. {
  319. extern char __init_begin, __init_end;
  320. unsigned long addr;
  321. addr = (unsigned long)(&__init_begin);
  322. for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
  323. ClearPageReserved(virt_to_page(addr));
  324. set_page_count(virt_to_page(addr), 1);
  325. free_page(addr);
  326. totalram_pages++;
  327. }
  328. printk ("Freeing unused kernel memory: %ldk freedn",
  329. (&__init_end - &__init_begin) >> 10);
  330. }
  331. #ifdef CONFIG_BLK_DEV_INITRD
  332. void
  333. free_initrd_mem(unsigned long start, unsigned long end)
  334. {
  335. unsigned long __start = start;
  336. for (; start < end; start += PAGE_SIZE) {
  337. ClearPageReserved(virt_to_page(start));
  338. set_page_count(virt_to_page(start), 1);
  339. free_page(start);
  340. totalram_pages++;
  341. }
  342. printk ("Freeing initrd memory: %ldk freedn", (end - __start) >> 10);
  343. }
  344. #endif
  345. void
  346. si_meminfo(struct sysinfo *val)
  347. {
  348. val->totalram = totalram_pages;
  349. val->sharedram = 0;
  350. val->freeram = nr_free_pages();
  351. val->bufferram = atomic_read(&buffermem_pages);
  352. val->totalhigh = 0;
  353. val->freehigh = 0;
  354. val->mem_unit = PAGE_SIZE;
  355. }