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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Initialize MMU support.
  3.  *
  4.  * Copyright (C) 1998-2002 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/kernel.h>
  9. #include <linux/init.h>
  10. #include <linux/bootmem.h>
  11. #include <linux/mm.h>
  12. #include <linux/personality.h>
  13. #include <linux/reboot.h>
  14. #include <linux/slab.h>
  15. #include <linux/swap.h>
  16. #include <linux/efi.h>
  17. #include <asm/bitops.h>
  18. #include <asm/dma.h>
  19. #include <asm/ia32.h>
  20. #include <asm/io.h>
  21. #include <asm/machvec.h>
  22. #include <asm/pgalloc.h>
  23. #include <asm/sal.h>
  24. #include <asm/system.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/tlb.h>
  27. mmu_gather_t mmu_gathers[NR_CPUS];
  28. /* References to section boundaries: */
  29. extern char _stext, _etext, _edata, __init_begin, __init_end;
  30. extern void ia64_tlb_init (void);
  31. unsigned long MAX_DMA_ADDRESS = PAGE_OFFSET + 0x100000000UL;
  32. static unsigned long totalram_pages;
  33. #ifdef CONFIG_VIRTUAL_MEM_MAP
  34. unsigned long vmalloc_end = VMALLOC_END_INIT;
  35. static struct page *vmem_map;
  36. static unsigned long num_dma_physpages;
  37. #endif
  38. int
  39. do_check_pgt_cache (int low, int high)
  40. {
  41. int freed = 0;
  42. if (pgtable_cache_size > high) {
  43. do {
  44. if (pgd_quicklist)
  45. free_page((unsigned long)pgd_alloc_one_fast(0)), ++freed;
  46. if (pmd_quicklist)
  47. free_page((unsigned long)pmd_alloc_one_fast(0, 0)), ++freed;
  48. if (pte_quicklist)
  49. free_page((unsigned long)pte_alloc_one_fast(0, 0)), ++freed;
  50. } while (pgtable_cache_size > low);
  51. }
  52. return freed;
  53. }
  54. /*
  55.  * This performs some platform-dependent address space initialization.
  56.  * On IA-64, we want to setup the VM area for the register backing
  57.  * store (which grows upwards) and install the gateway page which is
  58.  * used for signal trampolines, etc.
  59.  */
  60. void
  61. ia64_init_addr_space (void)
  62. {
  63. struct vm_area_struct *vma;
  64. /*
  65.  * If we're out of memory and kmem_cache_alloc() returns NULL, we simply ignore
  66.  * the problem.  When the process attempts to write to the register backing store
  67.  * for the first time, it will get a SEGFAULT in this case.
  68.  */
  69. vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  70. if (vma) {
  71. vma->vm_mm = current->mm;
  72. vma->vm_start = IA64_RBS_BOT;
  73. vma->vm_end = vma->vm_start + PAGE_SIZE;
  74. vma->vm_page_prot = PAGE_COPY;
  75. vma->vm_flags = VM_READ|VM_WRITE|VM_MAYREAD|VM_MAYWRITE|VM_GROWSUP;
  76. vma->vm_ops = NULL;
  77. vma->vm_pgoff = 0;
  78. vma->vm_file = NULL;
  79. vma->vm_private_data = NULL;
  80. insert_vm_struct(current->mm, vma);
  81. }
  82. /* map NaT-page at address zero to speed up speculative dereferencing of NULL: */
  83. if (!(current->personality & MMAP_PAGE_ZERO)) {
  84. vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  85. if (vma) {
  86. memset(vma, 0, sizeof(*vma));
  87. vma->vm_mm = current->mm;
  88. vma->vm_end = PAGE_SIZE;
  89. vma->vm_page_prot = __pgprot(pgprot_val(PAGE_READONLY) | _PAGE_MA_NAT);
  90. vma->vm_flags = VM_READ | VM_MAYREAD | VM_IO | VM_RESERVED;
  91. insert_vm_struct(current->mm, vma);
  92. }
  93. }
  94. }
  95. void
  96. free_initmem (void)
  97. {
  98. unsigned long addr;
  99. addr = (unsigned long) &__init_begin;
  100. for (; addr < (unsigned long) &__init_end; addr += PAGE_SIZE) {
  101. clear_bit(PG_reserved, &virt_to_page(addr)->flags);
  102. set_page_count(virt_to_page(addr), 1);
  103. free_page(addr);
  104. ++totalram_pages;
  105. }
  106. printk(KERN_INFO "Freeing unused kernel memory: %ldkB freedn",
  107. (&__init_end - &__init_begin) >> 10);
  108. }
  109. void
  110. free_initrd_mem(unsigned long start, unsigned long end)
  111. {
  112. /*
  113.  * EFI uses 4KB pages while the kernel can use 4KB  or bigger.
  114.  * Thus EFI and the kernel may have different page sizes. It is
  115.  * therefore possible to have the initrd share the same page as
  116.  * the end of the kernel (given current setup).
  117.  *
  118.  * To avoid freeing/using the wrong page (kernel sized) we:
  119.  * - align up the beginning of initrd
  120.  * - align down the end of initrd
  121.  *
  122.  *  |             |
  123.  *  |=============| a000
  124.  *  |             |
  125.  *  |             |
  126.  *  |             | 9000
  127.  *  |/////////////|
  128.  *  |/////////////|
  129.  *  |=============| 8000
  130.  *  |///INITRD////|
  131.  *  |/////////////|
  132.  *  |/////////////| 7000
  133.  *  |             |
  134.  *  |KKKKKKKKKKKKK|
  135.  *  |=============| 6000
  136.  *  |KKKKKKKKKKKKK|
  137.  *  |KKKKKKKKKKKKK|
  138.  *  K=kernel using 8KB pages
  139.  *
  140.  * In this example, we must free page 8000 ONLY. So we must align up
  141.  * initrd_start and keep initrd_end as is.
  142.  */
  143. start = PAGE_ALIGN(start);
  144. end = end & PAGE_MASK;
  145. if (start < end)
  146. printk(KERN_INFO "Freeing initrd memory: %ldkB freedn", (end - start) >> 10);
  147. for (; start < end; start += PAGE_SIZE) {
  148. if (!VALID_PAGE(virt_to_page(start)))
  149. continue;
  150. clear_bit(PG_reserved, &virt_to_page(start)->flags);
  151. set_page_count(virt_to_page(start), 1);
  152. free_page(start);
  153. ++totalram_pages;
  154. }
  155. }
  156. void
  157. si_meminfo (struct sysinfo *val)
  158. {
  159. val->totalram = totalram_pages;
  160. val->sharedram = 0;
  161. val->freeram = nr_free_pages();
  162. val->bufferram = atomic_read(&buffermem_pages);
  163. val->totalhigh = 0;
  164. val->freehigh = 0;
  165. val->mem_unit = PAGE_SIZE;
  166. return;
  167. }
  168. void
  169. show_mem(void)
  170. {
  171. int i, total = 0, reserved = 0;
  172. int shared = 0, cached = 0;
  173. printk("Mem-info:n");
  174. show_free_areas();
  175. #ifdef CONFIG_DISCONTIGMEM
  176. {
  177. pg_data_t *pgdat = pgdat_list;
  178. printk("Free swap:       %6dkBn", nr_swap_pages<<(PAGE_SHIFT-10));
  179. do {
  180. printk("Node ID: %dn", pgdat->node_id);
  181. for(i = 0; i < pgdat->node_size; i++) {
  182. if (PageReserved(pgdat->node_mem_map+i))
  183. reserved++;
  184. else if (PageSwapCache(pgdat->node_mem_map+i))
  185. cached++;
  186. else if (page_count(pgdat->node_mem_map + i))
  187. shared += page_count(pgdat->node_mem_map + i) - 1;
  188. }
  189. printk("t%d pages of RAMn", pgdat->node_size);
  190. printk("t%d reserved pagesn", reserved);
  191. printk("t%d pages sharedn", shared);
  192. printk("t%d pages swap cachedn", cached);
  193. pgdat = pgdat->node_next;
  194. } while (pgdat);
  195. printk("Total of %ld pages in page table cachen", pgtable_cache_size);
  196. show_buffers();
  197. printk("%d free buffer pagesn", nr_free_buffer_pages());
  198. }
  199. #else /* !CONFIG_DISCONTIGMEM */
  200. printk("Free swap:       %6dkBn", nr_swap_pages<<(PAGE_SHIFT-10));
  201. i = max_mapnr;
  202. while (i-- > 0) {
  203. if (!VALID_PAGE(mem_map + i))
  204. continue;
  205. total++;
  206. if (PageReserved(mem_map+i))
  207. reserved++;
  208. else if (PageSwapCache(mem_map+i))
  209. cached++;
  210. else if (page_count(mem_map + i))
  211. shared += page_count(mem_map + i) - 1;
  212. }
  213. printk("%d pages of RAMn", total);
  214. printk("%d reserved pagesn", reserved);
  215. printk("%d pages sharedn", shared);
  216. printk("%d pages swap cachedn", cached);
  217. printk("%ld pages in page table cachen", pgtable_cache_size);
  218. show_buffers();
  219. #endif /* !CONFIG_DISCONTIGMEM */
  220. }
  221. /*
  222.  * This is like put_dirty_page() but installs a clean page with PAGE_GATE protection
  223.  * (execute-only, typically).
  224.  */
  225. struct page *
  226. put_gate_page (struct page *page, unsigned long address)
  227. {
  228. pgd_t *pgd;
  229. pmd_t *pmd;
  230. pte_t *pte;
  231. if (!PageReserved(page))
  232. printk("put_gate_page: gate page at 0x%p not in reserved memoryn",
  233.        page_address(page));
  234. pgd = pgd_offset_k(address); /* note: this is NOT pgd_offset()! */
  235. spin_lock(&init_mm.page_table_lock);
  236. {
  237. pmd = pmd_alloc(&init_mm, pgd, address);
  238. if (!pmd)
  239. goto out;
  240. pte = pte_alloc(&init_mm, pmd, address);
  241. if (!pte)
  242. goto out;
  243. if (!pte_none(*pte)) {
  244. pte_ERROR(*pte);
  245. goto out;
  246. }
  247. flush_page_to_ram(page);
  248. set_pte(pte, mk_pte(page, PAGE_GATE));
  249. }
  250.   out: spin_unlock(&init_mm.page_table_lock);
  251. /* no need for flush_tlb */
  252. return page;
  253. }
  254. void __init
  255. ia64_mmu_init (void *my_cpu_data)
  256. {
  257. unsigned long psr, rid, pta, impl_va_bits;
  258. extern void __init tlb_init (void);
  259. #ifdef CONFIG_DISABLE_VHPT
  260. # define VHPT_ENABLE_BIT 0
  261. #else
  262. # define VHPT_ENABLE_BIT 1
  263. #endif
  264. /*
  265.  * Set up the kernel identity mapping for regions 6 and 5.  The mapping for region
  266.  * 7 is setup up in _start().
  267.  */
  268. psr = ia64_clear_ic();
  269. rid = ia64_rid(IA64_REGION_ID_KERNEL, __IA64_UNCACHED_OFFSET);
  270. ia64_set_rr(__IA64_UNCACHED_OFFSET, (rid << 8) | (IA64_GRANULE_SHIFT << 2));
  271. rid = ia64_rid(IA64_REGION_ID_KERNEL, VMALLOC_START);
  272. ia64_set_rr(VMALLOC_START, (rid << 8) | (PAGE_SHIFT << 2) | 1);
  273. /* ensure rr6 is up-to-date before inserting the PERCPU_ADDR translation: */
  274. ia64_srlz_d();
  275. ia64_itr(0x2, IA64_TR_PERCPU_DATA, PERCPU_ADDR,
  276.  pte_val(mk_pte_phys(__pa(my_cpu_data), PAGE_KERNEL)), PAGE_SHIFT);
  277. ia64_set_psr(psr);
  278. ia64_srlz_i();
  279. /*
  280.  * Check if the virtually mapped linear page table (VMLPT) overlaps with a mapped
  281.  * address space.  The IA-64 architecture guarantees that at least 50 bits of
  282.  * virtual address space are implemented but if we pick a large enough page size
  283.  * (e.g., 64KB), the mapped address space is big enough that it will overlap with
  284.  * VMLPT.  I assume that once we run on machines big enough to warrant 64KB pages,
  285.  * IMPL_VA_MSB will be significantly bigger, so this is unlikely to become a
  286.  * problem in practice.  Alternatively, we could truncate the top of the mapped
  287.  * address space to not permit mappings that would overlap with the VMLPT.
  288.  * --davidm 00/12/06
  289.  */
  290. # define pte_bits 3
  291. # define mapped_space_bits (3*(PAGE_SHIFT - pte_bits) + PAGE_SHIFT)
  292. /*
  293.  * The virtual page table has to cover the entire implemented address space within
  294.  * a region even though not all of this space may be mappable.  The reason for
  295.  * this is that the Access bit and Dirty bit fault handlers perform
  296.  * non-speculative accesses to the virtual page table, so the address range of the
  297.  * virtual page table itself needs to be covered by virtual page table.
  298.  */
  299. # define vmlpt_bits (impl_va_bits - PAGE_SHIFT + pte_bits)
  300. # define POW2(n) (1ULL << (n))
  301. impl_va_bits = ffz(~(local_cpu_data->unimpl_va_mask | (7UL << 61)));
  302. if (impl_va_bits < 51 || impl_va_bits > 61)
  303. panic("CPU has bogus IMPL_VA_MSB value of %lu!n", impl_va_bits - 1);
  304. /* place the VMLPT at the end of each page-table mapped region: */
  305. pta = POW2(61) - POW2(vmlpt_bits);
  306. if (POW2(mapped_space_bits) >= pta)
  307. panic("mm/init: overlap between virtually mapped linear page table and "
  308.       "mapped kernel space!");
  309. /*
  310.  * Set the (virtually mapped linear) page table address.  Bit
  311.  * 8 selects between the short and long format, bits 2-7 the
  312.  * size of the table, and bit 0 whether the VHPT walker is
  313.  * enabled.
  314.  */
  315. ia64_set_pta(pta | (0 << 8) | (vmlpt_bits << 2) | VHPT_ENABLE_BIT);
  316. ia64_tlb_init();
  317. }
  318. #ifdef CONFIG_VIRTUAL_MEM_MAP
  319. #include <asm/pgtable.h>
  320. static int
  321. create_mem_map_page_table (u64 start, u64 end, void *arg)
  322. {
  323. unsigned long address, start_page, end_page;
  324. struct page *map_start, *map_end;
  325. pgd_t *pgd;
  326. pmd_t *pmd;
  327. pte_t *pte;
  328. /* should we use platform_map_nr here? */
  329. map_start = vmem_map + MAP_NR_DENSE(start);
  330. map_end   = vmem_map + MAP_NR_DENSE(end);
  331. start_page = (unsigned long) map_start & PAGE_MASK;
  332. end_page = PAGE_ALIGN((unsigned long) map_end);
  333. for (address = start_page; address < end_page; address += PAGE_SIZE) {
  334. pgd = pgd_offset_k(address);
  335. if (pgd_none(*pgd))
  336. pgd_populate(&init_mm, pgd, alloc_bootmem_pages(PAGE_SIZE));
  337. pmd = pmd_offset(pgd, address);
  338. if (pmd_none(*pmd))
  339. pmd_populate(&init_mm, pmd, alloc_bootmem_pages(PAGE_SIZE));
  340. pte = pte_offset(pmd, address);
  341. if (pte_none(*pte))
  342. set_pte(pte, mk_pte_phys(__pa(alloc_bootmem_pages(PAGE_SIZE)),
  343.  PAGE_KERNEL));
  344.   }
  345.   return 0;
  346. }
  347. struct memmap_init_callback_data {
  348. memmap_init_callback_t *memmap_init;
  349. struct page *start;
  350. struct page *end;
  351. int zone;
  352. int highmem;
  353. };
  354. static int
  355. virtual_memmap_init (u64 start, u64 end, void *arg)
  356. {
  357. struct memmap_init_callback_data *args;
  358. struct page *map_start, *map_end;
  359. args = (struct memmap_init_callback_data *) arg;
  360. /* Should we use platform_map_nr here? */
  361. map_start = vmem_map + MAP_NR_DENSE(start);
  362. map_end   = vmem_map + MAP_NR_DENSE(end);
  363. if (map_start < args->start)
  364. map_start = args->start;
  365. if (map_end > args->end)
  366. map_end = args->end;
  367. /*
  368.  * We have to initialize "out of bounds" struct page elements
  369.  * that fit completely on the same pages that were allocated
  370.  * for the "in bounds" elements because they may be referenced
  371.  * later (and found to be "reserved").
  372.  */
  373. map_start -= ((unsigned long) map_start & (PAGE_SIZE - 1))
  374. / sizeof(struct page);
  375. map_end += ((PAGE_ALIGN((unsigned long) map_end) -
  376. (unsigned long) map_end)
  377. / sizeof(struct page));
  378. if (map_start < map_end)
  379. (*args->memmap_init)(map_start, map_end, args->zone,
  380.      page_to_phys(map_start), args->highmem);
  381. return 0;
  382. }
  383. unsigned long
  384. arch_memmap_init (memmap_init_callback_t *memmap_init, struct page *start,
  385. struct page *end, int zone, unsigned long start_paddr, int highmem)
  386. {
  387. struct memmap_init_callback_data args;
  388. args.memmap_init = memmap_init;
  389. args.start = start;
  390. args.end = end;
  391. args.zone = zone;
  392. args.highmem = highmem;
  393. efi_memmap_walk(virtual_memmap_init, &args);
  394. return page_to_phys(end);
  395. }
  396. static int
  397. count_dma_pages (u64 start, u64 end, void *arg)
  398. {
  399. unsigned long *count = arg;
  400. if (end <= MAX_DMA_ADDRESS)
  401. *count += (end - start) >> PAGE_SHIFT;
  402. return 0;
  403. }
  404. int
  405. ia64_page_valid (struct page *page)
  406. {
  407. char byte;
  408. return __get_user(byte, (char *) page) == 0;
  409. }
  410. #endif /* CONFIG_VIRTUAL_MEM_MAP */
  411. static int
  412. count_pages (u64 start, u64 end, void *arg)
  413. {
  414. unsigned long *count = arg;
  415. *count += (end - start) >> PAGE_SHIFT;
  416. return 0;
  417. }
  418. /*
  419.  * Set up the page tables.
  420.  */
  421. void
  422. paging_init (void)
  423. {
  424. unsigned long max_dma, zones_size[MAX_NR_ZONES];
  425. /* initialize mem_map[] */
  426. memset(zones_size, 0, sizeof(zones_size));
  427. num_physpages = 0;
  428. efi_memmap_walk(count_pages, &num_physpages);
  429. max_dma = virt_to_phys((void *) MAX_DMA_ADDRESS) >> PAGE_SHIFT;
  430. #ifdef CONFIG_VIRTUAL_MEM_MAP
  431. {
  432. unsigned long zholes_size[MAX_NR_ZONES];
  433. unsigned long map_size;
  434. memset(zholes_size, 0, sizeof(zholes_size));
  435. num_dma_physpages = 0;
  436. efi_memmap_walk(count_dma_pages, &num_dma_physpages);
  437. if (max_low_pfn < max_dma) {
  438. zones_size[ZONE_DMA] = max_low_pfn;
  439. zholes_size[ZONE_DMA] = max_low_pfn - num_dma_physpages;
  440. } else {
  441. zones_size[ZONE_DMA] = max_dma;
  442. zholes_size[ZONE_DMA] = max_dma - num_dma_physpages;
  443. if (num_physpages > num_dma_physpages) {
  444. zones_size[ZONE_NORMAL] = max_low_pfn - max_dma;
  445. zholes_size[ZONE_NORMAL] = ((max_low_pfn - max_dma)
  446.     - (num_physpages - num_dma_physpages));
  447. }
  448. }
  449. /* allocate virtual mem_map: */
  450. map_size = PAGE_ALIGN(max_low_pfn*sizeof(struct page));
  451. vmalloc_end -= map_size;
  452. vmem_map = (struct page *) vmalloc_end;
  453. efi_memmap_walk(create_mem_map_page_table, 0);
  454. free_area_init_node(0, NULL, vmem_map, zones_size, 0, zholes_size);
  455. printk("Virtual mem_map starts at 0x%pn", mem_map);
  456. }
  457. #else /* !CONFIG_VIRTUAL_MEM_MAP */
  458. if (max_low_pfn < max_dma)
  459. zones_size[ZONE_DMA] = max_low_pfn;
  460. else {
  461. zones_size[ZONE_DMA] = max_dma;
  462. zones_size[ZONE_NORMAL] = max_low_pfn - max_dma;
  463. }
  464. free_area_init(zones_size);
  465. #endif /* !CONFIG_VIRTUAL_MEM_MAP */
  466. }
  467. static int
  468. count_reserved_pages (u64 start, u64 end, void *arg)
  469. {
  470. unsigned long num_reserved = 0;
  471. unsigned long *count = arg;
  472. struct page *pg;
  473. for (pg = virt_to_page(start); pg < virt_to_page(end); ++pg)
  474. if (PageReserved(pg))
  475. ++num_reserved;
  476. *count += num_reserved;
  477. return 0;
  478. }
  479. void
  480. mem_init (void)
  481. {
  482. extern char __start_gate_section[];
  483. long reserved_pages, codesize, datasize, initsize;
  484. unsigned long num_pgt_pages;
  485. #ifdef CONFIG_PCI
  486. /*
  487.  * This needs to be called _after_ the command line has been parsed but _before_
  488.  * any drivers that may need the PCI DMA interface are initialized or bootmem has
  489.  * been freed.
  490.  */
  491. platform_pci_dma_init();
  492. #endif
  493. if (!mem_map)
  494. BUG();
  495. max_mapnr = max_low_pfn;
  496. high_memory = __va(max_low_pfn * PAGE_SIZE);
  497. totalram_pages += free_all_bootmem();
  498. reserved_pages = 0;
  499. efi_memmap_walk(count_reserved_pages, &reserved_pages);
  500. codesize =  (unsigned long) &_etext - (unsigned long) &_stext;
  501. datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
  502. initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
  503. printk(KERN_INFO "Memory: %luk/%luk available (%luk code, %luk reserved, %luk data, %luk init)n",
  504.        (unsigned long) nr_free_pages() << (PAGE_SHIFT - 10),
  505.        num_physpages << (PAGE_SHIFT - 10), codesize >> 10,
  506.        reserved_pages << (PAGE_SHIFT - 10), datasize >> 10, initsize >> 10);
  507. /*
  508.  * Allow for enough (cached) page table pages so that we can map the entire memory
  509.  * at least once.  Each task also needs a couple of page tables pages, so add in a
  510.  * fudge factor for that (don't use "threads-max" here; that would be wrong!).
  511.  * Don't allow the cache to be more than 10% of total memory, though.
  512.  */
  513. # define NUM_TASKS 500 /* typical number of tasks */
  514. num_pgt_pages = nr_free_pages() / PTRS_PER_PGD + NUM_TASKS;
  515. if (num_pgt_pages > nr_free_pages() / 10)
  516. num_pgt_pages = nr_free_pages() / 10;
  517. if (num_pgt_pages > pgt_cache_water[1])
  518. pgt_cache_water[1] = num_pgt_pages;
  519. /* install the gate page in the global page table: */
  520. put_gate_page(virt_to_page(__start_gate_section), GATE_ADDR);
  521. #ifdef CONFIG_IA32_SUPPORT
  522. ia32_gdt_init();
  523. #endif
  524. }