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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/parisc/mm/init.c
  3.  *
  4.  *  Copyright (C) 1995 Linus Torvalds
  5.  *  Copyright 1999 SuSE GmbH
  6.  *    changed by Philipp Rumpf
  7.  *  Copyright 1999 Philipp Rumpf (prumpf@tux.org)
  8.  *
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/mm.h>
  12. #include <linux/bootmem.h>
  13. #include <linux/delay.h>
  14. #include <linux/init.h>
  15. #include <linux/pci.h> /* for hppa_dma_ops and pcxl_dma_ops */
  16. #include <linux/blk.h>          /* for initrd_start and initrd_end */
  17. #include <linux/swap.h>
  18. #include <linux/unistd.h>
  19. #include <asm/pgalloc.h>
  20. #include <asm/tlb.h>
  21. mmu_gather_t mmu_gathers[NR_CPUS];
  22. extern char _text; /* start of kernel code, defined by linker */
  23. extern int  data_start;
  24. extern char _end; /* end of BSS, defined by linker */
  25. extern char __init_begin, __init_end;
  26. #ifdef CONFIG_DISCONTIGMEM
  27. struct node_map_data node_data[MAX_PHYSMEM_RANGES];
  28. bootmem_data_t bmem_data[MAX_PHYSMEM_RANGES];
  29. unsigned char *chunkmap;
  30. unsigned int maxchunkmap;
  31. #endif
  32. static struct resource data_resource = {
  33. name: "Kernel data",
  34. flags: IORESOURCE_BUSY | IORESOURCE_MEM,
  35. };
  36. static struct resource code_resource = {
  37. name: "Kernel code",
  38. flags: IORESOURCE_BUSY | IORESOURCE_MEM,
  39. };
  40. static struct resource pdcdata_resource = {
  41. name: "PDC data (Page Zero)",
  42. start: 0,
  43. end: 0x9ff,
  44. flags: IORESOURCE_BUSY | IORESOURCE_MEM,
  45. };
  46. static struct resource sysram_resources[MAX_PHYSMEM_RANGES];
  47. static unsigned long max_pfn;
  48. /* The following array is initialized from the firmware specific
  49.  * information retrieved in kernel/inventory.c.
  50.  */
  51. physmem_range_t pmem_ranges[MAX_PHYSMEM_RANGES];
  52. int npmem_ranges;
  53. #ifdef __LP64__
  54. #define MAX_MEM         (~0UL)
  55. #else /* !__LP64__ */
  56. #define MAX_MEM         (3584U*1024U*1024U)
  57. #endif /* !__LP64__ */
  58. static unsigned long mem_limit = MAX_MEM;
  59. static void __init mem_limit_func(void)
  60. {
  61. char *cp, *end;
  62. unsigned long limit;
  63. extern char saved_command_line[];
  64. /* We need this before __setup() functions are called */
  65. limit = MAX_MEM;
  66. for (cp = saved_command_line; *cp; ) {
  67. if (memcmp(cp, "mem=", 4) == 0) {
  68. cp += 4;
  69. limit = memparse(cp, &end);
  70. if (end != cp)
  71. break;
  72. cp = end;
  73. } else {
  74. while (*cp != ' ' && *cp)
  75. ++cp;
  76. while (*cp == ' ')
  77. ++cp;
  78. }
  79. }
  80. if (limit < mem_limit)
  81. mem_limit = limit;
  82. }
  83. #define MAX_GAP (0x40000000UL >> PAGE_SHIFT)
  84. static void __init setup_bootmem(void)
  85. {
  86. unsigned long bootmap_size;
  87. unsigned long mem_max;
  88. unsigned long bootmap_pages;
  89. unsigned long bootmap_start_pfn;
  90. unsigned long bootmap_pfn;
  91. #ifndef CONFIG_DISCONTIGMEM
  92. physmem_range_t pmem_holes[MAX_PHYSMEM_RANGES - 1];
  93. int npmem_holes;
  94. #endif
  95. int i, sysram_resource_count;
  96. disable_sr_hashing(); /* Turn off space register hashing */
  97. #ifdef CONFIG_DISCONTIGMEM
  98. /*
  99.  * The below is still true as of 2.4.2. If this is ever fixed,
  100.  * we can remove this warning!
  101.  */
  102. printk(KERN_WARNING "nn");
  103. printk(KERN_WARNING "CONFIG_DISCONTIGMEM is enabled, which is probably a mistake. Thisn");
  104. printk(KERN_WARNING "option can lead to heavy swapping, even when there are gigabytesn");
  105. printk(KERN_WARNING "of free memory.nn");
  106. #endif
  107. #ifdef __LP64__
  108. #ifndef CONFIG_DISCONTIGMEM
  109. /*
  110.  * Sort the ranges. Since the number of ranges is typically
  111.  * small, and performance is not an issue here, just do
  112.  * a simple insertion sort.
  113.  */
  114. for (i = 1; i < npmem_ranges; i++) {
  115. int j;
  116. for (j = i; j > 0; j--) {
  117. unsigned long tmp;
  118. if (pmem_ranges[j-1].start_pfn <
  119.     pmem_ranges[j].start_pfn) {
  120. break;
  121. }
  122. tmp = pmem_ranges[j-1].start_pfn;
  123. pmem_ranges[j-1].start_pfn = pmem_ranges[j].start_pfn;
  124. pmem_ranges[j].start_pfn = tmp;
  125. tmp = pmem_ranges[j-1].pages;
  126. pmem_ranges[j-1].pages = pmem_ranges[j].pages;
  127. pmem_ranges[j].pages = tmp;
  128. }
  129. }
  130. /*
  131.  * Throw out ranges that are too far apart (controlled by
  132.  * MAX_GAP). If CONFIG_DISCONTIGMEM wasn't implemented so
  133.  * poorly, we would recommend enabling that option, but,
  134.  * until it is fixed, this is the best way to go.
  135.  */
  136. for (i = 1; i < npmem_ranges; i++) {
  137. if (pmem_ranges[i].start_pfn -
  138. (pmem_ranges[i-1].start_pfn +
  139.  pmem_ranges[i-1].pages) > MAX_GAP) {
  140. npmem_ranges = i;
  141. break;
  142. }
  143. }
  144. #endif
  145. if (npmem_ranges > 1) {
  146. /* Print the memory ranges */
  147. printk(KERN_INFO "Memory Ranges:n");
  148. for (i = 0; i < npmem_ranges; i++) {
  149. unsigned long start;
  150. unsigned long size;
  151. size = (pmem_ranges[i].pages << PAGE_SHIFT);
  152. start = (pmem_ranges[i].start_pfn << PAGE_SHIFT);
  153. printk(KERN_INFO "%2d) Start 0x%016lx End 0x%016lx Size %6ld Mbn",
  154. i,start, start + (size - 1), size >> 20);
  155. }
  156. }
  157. #endif /* __LP64__ */
  158. #if 1
  159. /* KLUGE! this really belongs in kernel/resource.c! */
  160. iomem_resource.end = ~0UL;
  161. #endif
  162. sysram_resource_count = npmem_ranges;
  163. for (i = 0; i < sysram_resource_count; i++) {
  164. struct resource *res = &sysram_resources[i];
  165. res->name = "System RAM";
  166. res->start = pmem_ranges[i].start_pfn << PAGE_SHIFT;
  167. res->end = res->start + (pmem_ranges[i].pages << PAGE_SHIFT)-1;
  168. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  169. request_resource(&iomem_resource, res);
  170. }
  171. /*
  172.  * For 32 bit kernels we limit the amount of memory we can
  173.  * support, in order to preserve enough kernel address space
  174.  * for other purposes. For 64 bit kernels we don't normally
  175.  * limit the memory, but this mechanism can be used to
  176.  * artificially limit the amount of memory (and it is written
  177.  * to work with multiple memory ranges).
  178.  */
  179. mem_limit_func();       /* check for "mem=" argument */
  180. mem_max = 0;
  181. for (i = 0; i < npmem_ranges; i++) {
  182. unsigned long rsize;
  183. rsize = pmem_ranges[i].pages << PAGE_SHIFT;
  184. if ((mem_max + rsize) > mem_limit) {
  185. printk(KERN_WARNING "Memory truncated to %ld Mbn", mem_limit >> 20);
  186. if (mem_max == mem_limit)
  187. npmem_ranges = i;
  188. else {
  189. pmem_ranges[i].pages =   (mem_limit >> PAGE_SHIFT)
  190.        - (mem_max >> PAGE_SHIFT);
  191. npmem_ranges = i + 1;
  192. mem_max = mem_limit;
  193. }
  194. break;
  195. }
  196. mem_max += rsize;
  197. }
  198. printk(KERN_INFO "Total Memory: %ld Mbn",mem_max >> 20);
  199. #ifndef CONFIG_DISCONTIGMEM
  200. /* Merge the ranges, keeping track of the holes */
  201. {
  202. unsigned long end_pfn;
  203. unsigned long hole_pages;
  204. npmem_holes = 0;
  205. end_pfn = pmem_ranges[0].start_pfn + pmem_ranges[0].pages;
  206. for (i = 1; i < npmem_ranges; i++) {
  207. hole_pages = pmem_ranges[i].start_pfn - end_pfn;
  208. if (hole_pages) {
  209. pmem_holes[npmem_holes].start_pfn = end_pfn;
  210. pmem_holes[npmem_holes++].pages = hole_pages;
  211. end_pfn += hole_pages;
  212. }
  213. end_pfn += pmem_ranges[i].pages;
  214. }
  215. pmem_ranges[0].pages = end_pfn - pmem_ranges[0].start_pfn;
  216. npmem_ranges = 1;
  217. }
  218. #endif
  219. bootmap_pages = 0;
  220. for (i = 0; i < npmem_ranges; i++)
  221. bootmap_pages += bootmem_bootmap_pages(pmem_ranges[i].pages);
  222. bootmap_start_pfn = PAGE_ALIGN(__pa((unsigned long) &_end)) >> PAGE_SHIFT;
  223. #ifdef CONFIG_DISCONTIGMEM
  224. for (i = 0; i < npmem_ranges; i++)
  225. node_data[i].pg_data.bdata = &bmem_data[i];
  226. #endif
  227. /*
  228.  * Initialize and free the full range of memory in each range.
  229.  * Note that the only writing these routines do are to the bootmap,
  230.  * and we've made sure to locate the bootmap properly so that they
  231.  * won't be writing over anything important.
  232.  */
  233. bootmap_pfn = bootmap_start_pfn;
  234. max_pfn = 0;
  235. for (i = 0; i < npmem_ranges; i++) {
  236. unsigned long start_pfn;
  237. unsigned long npages;
  238. start_pfn = pmem_ranges[i].start_pfn;
  239. npages = pmem_ranges[i].pages;
  240. bootmap_size = init_bootmem_node(NODE_DATA(i),
  241. bootmap_pfn,
  242. start_pfn,
  243. (start_pfn + npages) );
  244. free_bootmem_node(NODE_DATA(i),
  245.   (start_pfn << PAGE_SHIFT),
  246.   (npages << PAGE_SHIFT) );
  247. bootmap_pfn += (bootmap_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
  248. if ((start_pfn + npages) > max_pfn)
  249. max_pfn = start_pfn + npages;
  250. }
  251. if ((bootmap_pfn - bootmap_start_pfn) != bootmap_pages) {
  252. printk(KERN_WARNING "WARNING! bootmap sizing is messed up!n");
  253. BUG();
  254. }
  255. /* reserve PAGE0 pdc memory, kernel text/data/bss & bootmap */
  256. #define PDC_CONSOLE_IO_IODC_SIZE 32768
  257. reserve_bootmem_node(NODE_DATA(0), 0UL,
  258. (unsigned long)(PAGE0->mem_free + PDC_CONSOLE_IO_IODC_SIZE));
  259. reserve_bootmem_node(NODE_DATA(0),__pa((unsigned long)&_text),
  260. (unsigned long)(&_end - &_text));
  261. reserve_bootmem_node(NODE_DATA(0), (bootmap_start_pfn << PAGE_SHIFT),
  262. ((bootmap_pfn - bootmap_start_pfn) << PAGE_SHIFT));
  263. #ifndef CONFIG_DISCONTIGMEM
  264. /* reserve the holes */
  265. for (i = 0; i < npmem_holes; i++) {
  266. reserve_bootmem_node(NODE_DATA(0),
  267. (pmem_holes[i].start_pfn << PAGE_SHIFT),
  268. (pmem_holes[i].pages << PAGE_SHIFT));
  269. }
  270. #endif
  271. #ifdef CONFIG_BLK_DEV_INITRD
  272. if (initrd_start) {
  273. printk(KERN_INFO "initrd: %08lx-%08lxn", initrd_start, initrd_end);
  274. if (__pa(initrd_start) < mem_max) {
  275. unsigned long initrd_reserve;
  276. if (__pa(initrd_end) > mem_max) {
  277. initrd_reserve = mem_max - __pa(initrd_start);
  278. } else {
  279. initrd_reserve = initrd_end - initrd_start;
  280. }
  281. initrd_below_start_ok = 1;
  282. printk(KERN_INFO "initrd: reserving %08lx-%08lx (mem_max %08lx)n", __pa(initrd_start), __pa(initrd_start) + initrd_reserve, mem_max);
  283. reserve_bootmem_node(NODE_DATA(0),__pa(initrd_start), initrd_reserve);
  284. }
  285. }
  286. #endif
  287. data_resource.start =  virt_to_phys(&data_start);
  288. data_resource.end = virt_to_phys(&_end)-1;
  289. code_resource.start = virt_to_phys(&_text);
  290. code_resource.end = virt_to_phys(&data_start)-1;
  291. /* We don't know which region the kernel will be in, so try
  292.  * all of them.
  293.  */
  294. for (i = 0; i < sysram_resource_count; i++) {
  295. struct resource *res = &sysram_resources[i];
  296. request_resource(res, &code_resource);
  297. request_resource(res, &data_resource);
  298. }
  299. request_resource(&sysram_resources[0], &pdcdata_resource);
  300. }
  301. void free_initmem(void)
  302. {
  303. /* FIXME: */
  304. #if 0
  305. printk(KERN_INFO "NOT FREEING INITMEM (%dk)n",
  306. (&__init_end - &__init_begin) >> 10);
  307. return;
  308. #endif
  309. unsigned long addr;
  310. printk(KERN_INFO "Freeing unused kernel memory: ");
  311. #if 1
  312. /* Attempt to catch anyone trying to execute code here
  313.  * by filling the page with BRK insns.
  314.  * 
  315.  * If we disable interrupts for all CPUs, then IPI stops working.
  316.  * Kinda breaks the global cache flushing.
  317.  */
  318. local_irq_disable();
  319. memset(&__init_begin, 0x00, 
  320. (unsigned long)&__init_end - (unsigned long)&__init_begin);
  321. flush_data_cache();
  322. asm volatile("sync" : : );
  323. flush_icache_range((unsigned long)&__init_begin, (unsigned long)&__init_end);
  324. asm volatile("sync" : : );
  325. local_irq_enable();
  326. #endif
  327. addr = (unsigned long)(&__init_begin);
  328. for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
  329. ClearPageReserved(virt_to_page(addr));
  330. set_page_count(virt_to_page(addr), 1);
  331. free_page(addr);
  332. num_physpages++;
  333. }
  334. printk("%luk freedn", (unsigned long)(&__init_end - &__init_begin) >> 10);
  335. }
  336. /*
  337.  * Just an arbitrary offset to serve as a "hole" between mapping areas
  338.  * (between top of physical memory and a potential pcxl dma mapping
  339.  * area, and below the vmalloc mapping area).
  340.  *
  341.  * The current 32K value just means that there will be a 32K "hole"
  342.  * between mapping areas. That means that  any out-of-bounds memory
  343.  * accesses will hopefully be caught. The vmalloc() routines leaves
  344.  * a hole of 4kB between each vmalloced area for the same reason.
  345.  */
  346. #define MAP_START 0x4000 /* Leave room for gateway page expansion */
  347. #define VM_MAP_OFFSET  (32*1024)
  348. #define SET_MAP_OFFSET(x) ((void *)(((unsigned long)(x) + VM_MAP_OFFSET) 
  349.      & ~(VM_MAP_OFFSET-1)))
  350. void *vmalloc_start;
  351. #ifdef CONFIG_PA11
  352. unsigned long pcxl_dma_start;
  353. #endif
  354. void __init mem_init(void)
  355. {
  356. int i;
  357. high_memory = __va((max_pfn << PAGE_SHIFT));
  358. max_mapnr = (virt_to_page(high_memory - 1) - mem_map) + 1;
  359. num_physpages = 0;
  360. for (i = 0; i < npmem_ranges; i++)
  361. num_physpages += free_all_bootmem_node(NODE_DATA(i));
  362. printk(KERN_INFO "Memory: %luk availablen", num_physpages << (PAGE_SHIFT-10));
  363. #ifdef CONFIG_PA11
  364. if (hppa_dma_ops == &pcxl_dma_ops) {
  365.     pcxl_dma_start = (unsigned long)SET_MAP_OFFSET(MAP_START);
  366.     vmalloc_start = SET_MAP_OFFSET(pcxl_dma_start + PCXL_DMA_MAP_SIZE);
  367. }
  368. else {
  369.     pcxl_dma_start = 0;
  370.     vmalloc_start = SET_MAP_OFFSET(MAP_START);
  371. }
  372. #else
  373. vmalloc_start = SET_MAP_OFFSET(MAP_START);
  374. #endif
  375. }
  376. int do_check_pgt_cache(int low, int high)
  377. {
  378. return 0;
  379. }
  380. unsigned long *empty_zero_page;
  381. void show_mem(void)
  382. {
  383. int i,free = 0,total = 0,reserved = 0;
  384. int shared = 0, cached = 0;
  385. printk(KERN_INFO "Mem-info:n");
  386. show_free_areas();
  387. printk(KERN_INFO "Free swap:  %6dkBn",nr_swap_pages<<(PAGE_SHIFT-10));
  388. i = max_mapnr;
  389. while (i-- > 0) {
  390. total++;
  391. if (PageReserved(mem_map+i))
  392. reserved++;
  393. else if (PageSwapCache(mem_map+i))
  394. cached++;
  395. else if (!atomic_read(&mem_map[i].count))
  396. free++;
  397. else
  398. shared += atomic_read(&mem_map[i].count) - 1;
  399. }
  400. printk(KERN_INFO "%d pages of RAMn", total);
  401. printk(KERN_INFO "%d reserved pagesn", reserved);
  402. printk(KERN_INFO "%d pages sharedn", shared);
  403. printk(KERN_INFO "%d pages swap cachedn", cached);
  404. show_buffers();
  405. }
  406. static void __init map_pages(unsigned long start_vaddr, unsigned long start_paddr, unsigned long size, pgprot_t pgprot)
  407. {
  408. pgd_t *pg_dir;
  409. pmd_t *pmd;
  410. pte_t *pg_table;
  411. unsigned long end_paddr;
  412. unsigned long start_pmd;
  413. unsigned long start_pte;
  414. unsigned long tmp1;
  415. unsigned long tmp2;
  416. unsigned long address;
  417. unsigned long ro_start;
  418. unsigned long ro_end;
  419. unsigned long fv_addr;
  420. unsigned long gw_addr;
  421. extern const unsigned long fault_vector_20;
  422. extern void * const linux_gateway_page;
  423. ro_start = __pa((unsigned long)&_text);
  424. ro_end   = __pa((unsigned long)&data_start);
  425. fv_addr  = __pa((unsigned long)&fault_vector_20) & PAGE_MASK;
  426. gw_addr  = __pa((unsigned long)&linux_gateway_page) & PAGE_MASK;
  427. end_paddr = start_paddr + size;
  428. pg_dir = pgd_offset_k(start_vaddr);
  429. #if PTRS_PER_PMD == 1
  430. start_pmd = 0;
  431. #else
  432. start_pmd = ((start_vaddr >> PMD_SHIFT) & (PTRS_PER_PMD - 1));
  433. #endif
  434. start_pte = ((start_vaddr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1));
  435. address = start_paddr;
  436. while (address < end_paddr) {
  437. #if PTRS_PER_PMD == 1
  438. pmd = (pmd_t *)__pa(pg_dir);
  439. #else
  440. pmd = (pmd_t *) (PAGE_MASK & pgd_val(*pg_dir));
  441. /*
  442.  * pmd is physical at this point
  443.  */
  444. if (!pmd) {
  445. pmd = (pmd_t *) alloc_bootmem_low_pages_node(NODE_DATA(0),PAGE_SIZE);
  446. pmd = (pmd_t *) __pa(pmd);
  447. }
  448. pgd_val(*pg_dir) = _PAGE_TABLE | (unsigned long) pmd;
  449. #endif
  450. pg_dir++;
  451. /* now change pmd to kernel virtual addresses */
  452. pmd = (pmd_t *)__va(pmd) + start_pmd;
  453. for (tmp1 = start_pmd; tmp1 < PTRS_PER_PMD; tmp1++,pmd++) {
  454. /*
  455.  * pg_table is physical at this point
  456.  */
  457. pg_table = (pte_t *) (PAGE_MASK & pmd_val(*pmd));
  458. if (!pg_table) {
  459. pg_table = (pte_t *)
  460. alloc_bootmem_low_pages_node(NODE_DATA(0),PAGE_SIZE);
  461. pg_table = (pte_t *) __pa(pg_table);
  462. }
  463. pmd_val(*pmd) = _PAGE_TABLE |
  464.    (unsigned long) pg_table;
  465. /* now change pg_table to kernel virtual addresses */
  466. pg_table = (pte_t *) __va(pg_table) + start_pte;
  467. for (tmp2 = start_pte; tmp2 < PTRS_PER_PTE; tmp2++,pg_table++) {
  468. pte_t pte;
  469. #if !defined(CONFIG_KWDB) && !defined(CONFIG_STI_CONSOLE)
  470. #warning STI console should explicitly allocate executable pages but does not
  471. /* KWDB needs to write kernel text when setting break points.
  472. **
  473. ** The right thing to do seems like KWDB modify only the pte which
  474. ** has a break point on it...otherwise we might mask worse bugs.
  475. */
  476. /*
  477.  * Map the fault vector writable so we can
  478.  * write the HPMC checksum.
  479.  */
  480. if (address >= ro_start && address < ro_end
  481. && address != fv_addr
  482. && address != gw_addr)
  483.     pte = __mk_pte(address, PAGE_KERNEL_RO);
  484. else
  485. #endif
  486.     pte = __mk_pte(address, pgprot);
  487. if (address >= end_paddr)
  488. pte_val(pte) = 0;
  489. set_pte(pg_table, pte);
  490. address += PAGE_SIZE;
  491. }
  492. start_pte = 0;
  493. if (address >= end_paddr)
  494.     break;
  495. }
  496. start_pmd = 0;
  497. }
  498. }
  499. /*
  500.  * pagetable_init() sets up the page tables
  501.  *
  502.  * Note that gateway_init() places the Linux gateway page at page 0.
  503.  * Since gateway pages cannot be dereferenced this has the desirable
  504.  * side effect of trapping those pesky NULL-reference errors in the
  505.  * kernel.
  506.  */
  507. static void __init pagetable_init(void)
  508. {
  509. int range;
  510. printk("pagetable_initn");
  511. /* Map each physical memory range to its kernel vaddr */
  512. for (range = 0; range < npmem_ranges; range++) {
  513. unsigned long start_paddr;
  514. unsigned long end_paddr;
  515. unsigned long size;
  516. start_paddr = pmem_ranges[range].start_pfn << PAGE_SHIFT;
  517. end_paddr = start_paddr + (pmem_ranges[range].pages << PAGE_SHIFT);
  518. size = pmem_ranges[range].pages << PAGE_SHIFT;
  519. map_pages((unsigned long)__va(start_paddr), start_paddr,
  520. size, PAGE_KERNEL);
  521. }
  522. #ifdef CONFIG_BLK_DEV_INITRD
  523. if (initrd_end && initrd_end > mem_limit) {
  524. printk("initrd: mapping %08lx-%08lxn", initrd_start, initrd_end);
  525. map_pages(initrd_start, __pa(initrd_start),
  526. initrd_end - initrd_start, PAGE_KERNEL);
  527. }
  528. #endif
  529. empty_zero_page = alloc_bootmem_pages(PAGE_SIZE);
  530. memset(empty_zero_page, 0, PAGE_SIZE);
  531. }
  532. static void __init gateway_init(void)
  533. {
  534. unsigned long linux_gateway_page_addr;
  535. /* FIXME: This is 'const' in order to trick the compiler
  536.    into not treating it as DP-relative data. */
  537. extern void * const linux_gateway_page;
  538. linux_gateway_page_addr = LINUX_GATEWAY_ADDR & PAGE_MASK;
  539. /*
  540.  * Setup Linux Gateway page.
  541.  *
  542.  * The Linux gateway page will reside in kernel space (on virtual
  543.  * page 0), so it doesn't need to be aliased into user space.
  544.  */
  545. map_pages(linux_gateway_page_addr, __pa(&linux_gateway_page),
  546. PAGE_SIZE, PAGE_GATEWAY);
  547. }
  548. void
  549. map_hpux_gateway_page(struct task_struct *tsk, struct mm_struct *mm)
  550. {
  551. pgd_t *pg_dir;
  552. pmd_t *pmd;
  553. pte_t *pg_table;
  554. unsigned long start_pmd;
  555. unsigned long start_pte;
  556. unsigned long address;
  557. unsigned long hpux_gw_page_addr;
  558. /* FIXME: This is 'const' in order to trick the compiler
  559.    into not treating it as DP-relative data. */
  560. extern void * const hpux_gateway_page;
  561. hpux_gw_page_addr = HPUX_GATEWAY_ADDR & PAGE_MASK;
  562. /*
  563.  * Setup HP-UX Gateway page.
  564.  *
  565.  * The HP-UX gateway page resides in the user address space,
  566.  * so it needs to be aliased into each process.
  567.  */
  568. pg_dir = pgd_offset(mm,hpux_gw_page_addr);
  569. #if PTRS_PER_PMD == 1
  570. start_pmd = 0;
  571. #else
  572. start_pmd = ((hpux_gw_page_addr >> PMD_SHIFT) & (PTRS_PER_PMD - 1));
  573. #endif
  574. start_pte = ((hpux_gw_page_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1));
  575. address = __pa(&hpux_gateway_page);
  576. #if PTRS_PER_PMD == 1
  577. pmd = (pmd_t *)__pa(pg_dir);
  578. #else
  579. pmd = (pmd_t *) (PAGE_MASK & pgd_val(*pg_dir));
  580. /*
  581.  * pmd is physical at this point
  582.  */
  583. if (!pmd) {
  584. pmd = (pmd_t *) get_zeroed_page(GFP_KERNEL);
  585. pmd = (pmd_t *) __pa(pmd);
  586. }
  587. pgd_val(*pg_dir) = _PAGE_TABLE | (unsigned long) pmd;
  588. #endif
  589. /* now change pmd to kernel virtual addresses */
  590. pmd = (pmd_t *)__va(pmd) + start_pmd;
  591. /*
  592.  * pg_table is physical at this point
  593.  */
  594. pg_table = (pte_t *) (PAGE_MASK & pmd_val(*pmd));
  595. if (!pg_table)
  596. pg_table = (pte_t *) __pa(get_zeroed_page(GFP_KERNEL));
  597. pmd_val(*pmd) = _PAGE_TABLE | (unsigned long) pg_table;
  598. /* now change pg_table to kernel virtual addresses */
  599. pg_table = (pte_t *) __va(pg_table) + start_pte;
  600. set_pte(pg_table, __mk_pte(address, PAGE_GATEWAY));
  601. }
  602. extern void flush_tlb_all_local(void);
  603. void __init paging_init(void)
  604. {
  605. int i;
  606. setup_bootmem();
  607. pagetable_init();
  608. gateway_init();
  609. flush_cache_all_local(); /* start with known state */
  610. flush_tlb_all_local();
  611. for (i = 0; i < npmem_ranges; i++) {
  612. unsigned long zones_size[MAX_NR_ZONES] = { 0, 0, 0, };
  613. zones_size[ZONE_DMA] = pmem_ranges[i].pages;
  614. free_area_init_node(i,NODE_DATA(i),NULL,zones_size,
  615. (pmem_ranges[i].start_pfn << PAGE_SHIFT),0);
  616. }
  617. #ifdef CONFIG_DISCONTIGMEM
  618. /*
  619.  * Initialize support for virt_to_page() macro.
  620.  *
  621.  * Note that MAX_ADDRESS is the largest virtual address that
  622.  * we can map. However, since we map all physical memory into
  623.  * the kernel address space, it also has an effect on the maximum
  624.  * physical address we can map (MAX_ADDRESS - PAGE_OFFSET).
  625.  */
  626. maxchunkmap = MAX_ADDRESS >> CHUNKSHIFT;
  627. chunkmap = (unsigned char *)alloc_bootmem(maxchunkmap);
  628. for (i = 0; i < maxchunkmap; i++)
  629.     chunkmap[i] = BADCHUNK;
  630. for (i = 0; i < npmem_ranges; i++) {
  631. ADJ_NODE_MEM_MAP(i) = NODE_MEM_MAP(i) - pmem_ranges[i].start_pfn;
  632. {
  633. unsigned long chunk_paddr;
  634. unsigned long end_paddr;
  635. int chunknum;
  636. chunk_paddr = (pmem_ranges[i].start_pfn << PAGE_SHIFT);
  637. end_paddr = chunk_paddr + (pmem_ranges[i].pages << PAGE_SHIFT);
  638. chunk_paddr &= CHUNKMASK;
  639. chunknum = (int)CHUNKNUM(chunk_paddr);
  640. while (chunk_paddr < end_paddr) {
  641. if (chunknum >= maxchunkmap)
  642. goto badchunkmap1;
  643. if (chunkmap[chunknum] != BADCHUNK)
  644. goto badchunkmap2;
  645. chunkmap[chunknum] = (unsigned char)i;
  646. chunk_paddr += CHUNKSZ;
  647. chunknum++;
  648. }
  649. }
  650. }
  651. return;
  652. badchunkmap1:
  653. panic("paging_init: Physical address exceeds maximum address space!n");
  654. badchunkmap2:
  655. panic("paging_init: Collision in chunk map array. CHUNKSZ needs to be smallern");
  656. #endif
  657. }
  658. #ifdef CONFIG_PA20
  659. /*
  660.  * Currently, all PA20 chips have 18 bit protection id's, which is the
  661.  * limiting factor (space ids are 32 bits).
  662.  */
  663. #define NR_SPACE_IDS 262144
  664. #else
  665. /*
  666.  * Currently we have a one-to-one relationship between space id's and
  667.  * protection id's. Older parisc chips (PCXS, PCXT, PCXL, PCXL2) only
  668.  * support 15 bit protection id's, so that is the limiting factor.
  669.  * PCXT' has 18 bit protection id's, but only 16 bit spaceids, so it's
  670.  * probably not worth the effort for a special case here.
  671.  */
  672. #define NR_SPACE_IDS 32768
  673. #endif  /* !CONFIG_PA20 */
  674. #define RECYCLE_THRESHOLD (NR_SPACE_IDS / 2)
  675. #define SID_ARRAY_SIZE  (NR_SPACE_IDS / (8 * sizeof(long)))
  676. static unsigned long space_id[SID_ARRAY_SIZE] = { 1 }; /* disallow space 0 */
  677. static unsigned long dirty_space_id[SID_ARRAY_SIZE];
  678. static unsigned long space_id_index;
  679. static unsigned long free_space_ids = NR_SPACE_IDS - 1;
  680. static unsigned long dirty_space_ids = 0;
  681. static spinlock_t sid_lock = SPIN_LOCK_UNLOCKED;
  682. unsigned long alloc_sid(void)
  683. {
  684. unsigned long index;
  685. spin_lock(&sid_lock);
  686. if (free_space_ids == 0) {
  687. if (dirty_space_ids != 0) {
  688. spin_unlock(&sid_lock);
  689. flush_tlb_all(); /* flush_tlb_all() calls recycle_sids() */
  690. spin_lock(&sid_lock);
  691. }
  692. if (free_space_ids == 0)
  693. BUG();
  694. }
  695. free_space_ids--;
  696. index = find_next_zero_bit(space_id, NR_SPACE_IDS, space_id_index);
  697. space_id[index >> SHIFT_PER_LONG] |= (1L << (index & (BITS_PER_LONG - 1)));
  698. space_id_index = index;
  699. spin_unlock(&sid_lock);
  700. return index << SPACEID_SHIFT;
  701. }
  702. void free_sid(unsigned long spaceid)
  703. {
  704. unsigned long index = spaceid >> SPACEID_SHIFT;
  705. unsigned long *dirty_space_offset;
  706. dirty_space_offset = dirty_space_id + (index >> SHIFT_PER_LONG);
  707. index &= (BITS_PER_LONG - 1);
  708. spin_lock(&sid_lock);
  709. if (*dirty_space_offset & (1L << index))
  710.     BUG(); /* attempt to free space id twice */
  711. *dirty_space_offset |= (1L << index);
  712. dirty_space_ids++;
  713. spin_unlock(&sid_lock);
  714. }
  715. #ifdef CONFIG_SMP
  716. static void get_dirty_sids(unsigned long *ndirtyptr,unsigned long *dirty_array)
  717. {
  718. int i;
  719. /* NOTE: sid_lock must be held upon entry */
  720. *ndirtyptr = dirty_space_ids;
  721. if (dirty_space_ids != 0) {
  722.     for (i = 0; i < SID_ARRAY_SIZE; i++) {
  723. dirty_array[i] = dirty_space_id[i];
  724. dirty_space_id[i] = 0;
  725.     }
  726.     dirty_space_ids = 0;
  727. }
  728. return;
  729. }
  730. static void recycle_sids(unsigned long ndirty,unsigned long *dirty_array)
  731. {
  732. int i;
  733. /* NOTE: sid_lock must be held upon entry */
  734. if (ndirty != 0) {
  735. for (i = 0; i < SID_ARRAY_SIZE; i++) {
  736. space_id[i] ^= dirty_array[i];
  737. }
  738. free_space_ids += ndirty;
  739. space_id_index = 0;
  740. }
  741. }
  742. #else /* CONFIG_SMP */
  743. static void recycle_sids(void)
  744. {
  745. int i;
  746. /* NOTE: sid_lock must be held upon entry */
  747. if (dirty_space_ids != 0) {
  748. for (i = 0; i < SID_ARRAY_SIZE; i++) {
  749. space_id[i] ^= dirty_space_id[i];
  750. dirty_space_id[i] = 0;
  751. }
  752. free_space_ids += dirty_space_ids;
  753. dirty_space_ids = 0;
  754. space_id_index = 0;
  755. }
  756. }
  757. #endif
  758. /*
  759.  * flush_tlb_all() calls recycle_sids(), since whenever the entire tlb is
  760.  * purged, we can safely reuse the space ids that were released but
  761.  * not flushed from the tlb.
  762.  */
  763. #ifdef CONFIG_SMP
  764. static unsigned long recycle_ndirty;
  765. static unsigned long recycle_dirty_array[SID_ARRAY_SIZE];
  766. static unsigned int recycle_inuse = 0;
  767. void flush_tlb_all(void)
  768. {
  769. int do_recycle;
  770. do_recycle = 0;
  771. spin_lock(&sid_lock);
  772. if (dirty_space_ids > RECYCLE_THRESHOLD) {
  773.     if (recycle_inuse) {
  774. BUG();  /* FIXME: Use a semaphore/wait queue here */
  775.     }
  776.     get_dirty_sids(&recycle_ndirty,recycle_dirty_array);
  777.     recycle_inuse++;
  778.     do_recycle++;
  779. }
  780. spin_unlock(&sid_lock);
  781. smp_call_function((void (*)(void *))flush_tlb_all_local, NULL, 1, 1);
  782. flush_tlb_all_local();
  783. if (do_recycle) {
  784.     spin_lock(&sid_lock);
  785.     recycle_sids(recycle_ndirty,recycle_dirty_array);
  786.     recycle_inuse = 0;
  787.     spin_unlock(&sid_lock);
  788. }
  789. }
  790. #else
  791. void flush_tlb_all(void)
  792. {
  793. spin_lock(&sid_lock);
  794. flush_tlb_all_local();
  795. recycle_sids();
  796. spin_unlock(&sid_lock);
  797. }
  798. #endif
  799. #ifdef CONFIG_BLK_DEV_INITRD
  800. void free_initrd_mem(unsigned long start, unsigned long end)
  801. {
  802. #if 0
  803. if (start < end)
  804. printk(KERN_INFO "Freeing initrd memory: %ldk freedn", (end - start) >> 10);
  805. for (; start < end; start += PAGE_SIZE) {
  806. ClearPageReserved(virt_to_page(start));
  807. set_page_count(virt_to_page(start), 1);
  808. free_page(start);
  809. num_physpages++;
  810. }
  811. #endif
  812. }
  813. #endif
  814. void si_meminfo(struct sysinfo *val)
  815. {
  816. val->totalram = num_physpages;
  817. val->sharedram = 0;
  818. val->freeram = nr_free_pages();
  819. val->bufferram = atomic_read(&buffermem_pages);
  820. val->totalhigh = 0;
  821. val->freehigh = 0;
  822. val->mem_unit = PAGE_SIZE;
  823. return;
  824. }