11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/arch/parisc/mm/init.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1995 Linus Torvalds 51da177e4SLinus Torvalds * Copyright 1999 SuSE GmbH 61da177e4SLinus Torvalds * changed by Philipp Rumpf 71da177e4SLinus Torvalds * Copyright 1999 Philipp Rumpf (prumpf@tux.org) 81da177e4SLinus Torvalds * Copyright 2004 Randolph Chung (tausq@debian.org) 9a8f44e38SHelge Deller * Copyright 2006-2007 Helge Deller (deller@gmx.de) 101da177e4SLinus Torvalds * 111da177e4SLinus Torvalds */ 121da177e4SLinus Torvalds 131da177e4SLinus Torvalds 141da177e4SLinus Torvalds #include <linux/module.h> 151da177e4SLinus Torvalds #include <linux/mm.h> 161da177e4SLinus Torvalds #include <linux/bootmem.h> 175a0e3ad6STejun Heo #include <linux/gfp.h> 181da177e4SLinus Torvalds #include <linux/delay.h> 191da177e4SLinus Torvalds #include <linux/init.h> 201da177e4SLinus Torvalds #include <linux/pci.h> /* for hppa_dma_ops and pcxl_dma_ops */ 211da177e4SLinus Torvalds #include <linux/initrd.h> 221da177e4SLinus Torvalds #include <linux/swap.h> 231da177e4SLinus Torvalds #include <linux/unistd.h> 241da177e4SLinus Torvalds #include <linux/nodemask.h> /* for node_online_map */ 251da177e4SLinus Torvalds #include <linux/pagemap.h> /* for release_pages and page_cache_release */ 261da177e4SLinus Torvalds 271da177e4SLinus Torvalds #include <asm/pgalloc.h> 28ce8420bbSHelge Deller #include <asm/pgtable.h> 291da177e4SLinus Torvalds #include <asm/tlb.h> 301da177e4SLinus Torvalds #include <asm/pdc_chassis.h> 311da177e4SLinus Torvalds #include <asm/mmzone.h> 32a581c2a4SHeiko Carstens #include <asm/sections.h> 331da177e4SLinus Torvalds 341da177e4SLinus Torvalds extern int data_start; 351da177e4SLinus Torvalds 36*c39f52a9SThomas Gleixner #if PT_NLEVELS == 3 37*c39f52a9SThomas Gleixner /* NOTE: This layout exactly conforms to the hybrid L2/L3 page table layout 38*c39f52a9SThomas Gleixner * with the first pmd adjacent to the pgd and below it. gcc doesn't actually 39*c39f52a9SThomas Gleixner * guarantee that global objects will be laid out in memory in the same order 40*c39f52a9SThomas Gleixner * as the order of declaration, so put these in different sections and use 41*c39f52a9SThomas Gleixner * the linker script to order them. */ 42*c39f52a9SThomas Gleixner pmd_t pmd0[PTRS_PER_PMD] __attribute__ ((__section__ (".data..vm0.pmd"), aligned(PAGE_SIZE))); 43*c39f52a9SThomas Gleixner #endif 44*c39f52a9SThomas Gleixner 45*c39f52a9SThomas Gleixner pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((__section__ (".data..vm0.pgd"), aligned(PAGE_SIZE))); 46*c39f52a9SThomas Gleixner pte_t pg0[PT_INITIAL * PTRS_PER_PTE] __attribute__ ((__section__ (".data..vm0.pte"), aligned(PAGE_SIZE))); 47*c39f52a9SThomas Gleixner 481da177e4SLinus Torvalds #ifdef CONFIG_DISCONTIGMEM 498039de10SHelge Deller struct node_map_data node_data[MAX_NUMNODES] __read_mostly; 508039de10SHelge Deller unsigned char pfnnid_map[PFNNID_MAP_MAX] __read_mostly; 511da177e4SLinus Torvalds #endif 521da177e4SLinus Torvalds 531da177e4SLinus Torvalds static struct resource data_resource = { 541da177e4SLinus Torvalds .name = "Kernel data", 551da177e4SLinus Torvalds .flags = IORESOURCE_BUSY | IORESOURCE_MEM, 561da177e4SLinus Torvalds }; 571da177e4SLinus Torvalds 581da177e4SLinus Torvalds static struct resource code_resource = { 591da177e4SLinus Torvalds .name = "Kernel code", 601da177e4SLinus Torvalds .flags = IORESOURCE_BUSY | IORESOURCE_MEM, 611da177e4SLinus Torvalds }; 621da177e4SLinus Torvalds 631da177e4SLinus Torvalds static struct resource pdcdata_resource = { 641da177e4SLinus Torvalds .name = "PDC data (Page Zero)", 651da177e4SLinus Torvalds .start = 0, 661da177e4SLinus Torvalds .end = 0x9ff, 671da177e4SLinus Torvalds .flags = IORESOURCE_BUSY | IORESOURCE_MEM, 681da177e4SLinus Torvalds }; 691da177e4SLinus Torvalds 708039de10SHelge Deller static struct resource sysram_resources[MAX_PHYSMEM_RANGES] __read_mostly; 711da177e4SLinus Torvalds 721da177e4SLinus Torvalds /* The following array is initialized from the firmware specific 731da177e4SLinus Torvalds * information retrieved in kernel/inventory.c. 741da177e4SLinus Torvalds */ 751da177e4SLinus Torvalds 768039de10SHelge Deller physmem_range_t pmem_ranges[MAX_PHYSMEM_RANGES] __read_mostly; 778039de10SHelge Deller int npmem_ranges __read_mostly; 781da177e4SLinus Torvalds 79a8f44e38SHelge Deller #ifdef CONFIG_64BIT 801da177e4SLinus Torvalds #define MAX_MEM (~0UL) 81a8f44e38SHelge Deller #else /* !CONFIG_64BIT */ 821da177e4SLinus Torvalds #define MAX_MEM (3584U*1024U*1024U) 83a8f44e38SHelge Deller #endif /* !CONFIG_64BIT */ 841da177e4SLinus Torvalds 858039de10SHelge Deller static unsigned long mem_limit __read_mostly = MAX_MEM; 861da177e4SLinus Torvalds 871da177e4SLinus Torvalds static void __init mem_limit_func(void) 881da177e4SLinus Torvalds { 891da177e4SLinus Torvalds char *cp, *end; 901da177e4SLinus Torvalds unsigned long limit; 911da177e4SLinus Torvalds 921da177e4SLinus Torvalds /* We need this before __setup() functions are called */ 931da177e4SLinus Torvalds 941da177e4SLinus Torvalds limit = MAX_MEM; 95668f9931SAlon Bar-Lev for (cp = boot_command_line; *cp; ) { 961da177e4SLinus Torvalds if (memcmp(cp, "mem=", 4) == 0) { 971da177e4SLinus Torvalds cp += 4; 981da177e4SLinus Torvalds limit = memparse(cp, &end); 991da177e4SLinus Torvalds if (end != cp) 1001da177e4SLinus Torvalds break; 1011da177e4SLinus Torvalds cp = end; 1021da177e4SLinus Torvalds } else { 1031da177e4SLinus Torvalds while (*cp != ' ' && *cp) 1041da177e4SLinus Torvalds ++cp; 1051da177e4SLinus Torvalds while (*cp == ' ') 1061da177e4SLinus Torvalds ++cp; 1071da177e4SLinus Torvalds } 1081da177e4SLinus Torvalds } 1091da177e4SLinus Torvalds 1101da177e4SLinus Torvalds if (limit < mem_limit) 1111da177e4SLinus Torvalds mem_limit = limit; 1121da177e4SLinus Torvalds } 1131da177e4SLinus Torvalds 1141da177e4SLinus Torvalds #define MAX_GAP (0x40000000UL >> PAGE_SHIFT) 1151da177e4SLinus Torvalds 1161da177e4SLinus Torvalds static void __init setup_bootmem(void) 1171da177e4SLinus Torvalds { 1181da177e4SLinus Torvalds unsigned long bootmap_size; 1191da177e4SLinus Torvalds unsigned long mem_max; 1201da177e4SLinus Torvalds unsigned long bootmap_pages; 1211da177e4SLinus Torvalds unsigned long bootmap_start_pfn; 1221da177e4SLinus Torvalds unsigned long bootmap_pfn; 1231da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 1241da177e4SLinus Torvalds physmem_range_t pmem_holes[MAX_PHYSMEM_RANGES - 1]; 1251da177e4SLinus Torvalds int npmem_holes; 1261da177e4SLinus Torvalds #endif 1271da177e4SLinus Torvalds int i, sysram_resource_count; 1281da177e4SLinus Torvalds 1291da177e4SLinus Torvalds disable_sr_hashing(); /* Turn off space register hashing */ 1301da177e4SLinus Torvalds 1311da177e4SLinus Torvalds /* 1321da177e4SLinus Torvalds * Sort the ranges. Since the number of ranges is typically 1331da177e4SLinus Torvalds * small, and performance is not an issue here, just do 1341da177e4SLinus Torvalds * a simple insertion sort. 1351da177e4SLinus Torvalds */ 1361da177e4SLinus Torvalds 1371da177e4SLinus Torvalds for (i = 1; i < npmem_ranges; i++) { 1381da177e4SLinus Torvalds int j; 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvalds for (j = i; j > 0; j--) { 1411da177e4SLinus Torvalds unsigned long tmp; 1421da177e4SLinus Torvalds 1431da177e4SLinus Torvalds if (pmem_ranges[j-1].start_pfn < 1441da177e4SLinus Torvalds pmem_ranges[j].start_pfn) { 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds break; 1471da177e4SLinus Torvalds } 1481da177e4SLinus Torvalds tmp = pmem_ranges[j-1].start_pfn; 1491da177e4SLinus Torvalds pmem_ranges[j-1].start_pfn = pmem_ranges[j].start_pfn; 1501da177e4SLinus Torvalds pmem_ranges[j].start_pfn = tmp; 1511da177e4SLinus Torvalds tmp = pmem_ranges[j-1].pages; 1521da177e4SLinus Torvalds pmem_ranges[j-1].pages = pmem_ranges[j].pages; 1531da177e4SLinus Torvalds pmem_ranges[j].pages = tmp; 1541da177e4SLinus Torvalds } 1551da177e4SLinus Torvalds } 1561da177e4SLinus Torvalds 1571da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 1581da177e4SLinus Torvalds /* 1591da177e4SLinus Torvalds * Throw out ranges that are too far apart (controlled by 1601da177e4SLinus Torvalds * MAX_GAP). 1611da177e4SLinus Torvalds */ 1621da177e4SLinus Torvalds 1631da177e4SLinus Torvalds for (i = 1; i < npmem_ranges; i++) { 1641da177e4SLinus Torvalds if (pmem_ranges[i].start_pfn - 1651da177e4SLinus Torvalds (pmem_ranges[i-1].start_pfn + 1661da177e4SLinus Torvalds pmem_ranges[i-1].pages) > MAX_GAP) { 1671da177e4SLinus Torvalds npmem_ranges = i; 1681da177e4SLinus Torvalds printk("Large gap in memory detected (%ld pages). " 1691da177e4SLinus Torvalds "Consider turning on CONFIG_DISCONTIGMEM\n", 1701da177e4SLinus Torvalds pmem_ranges[i].start_pfn - 1711da177e4SLinus Torvalds (pmem_ranges[i-1].start_pfn + 1721da177e4SLinus Torvalds pmem_ranges[i-1].pages)); 1731da177e4SLinus Torvalds break; 1741da177e4SLinus Torvalds } 1751da177e4SLinus Torvalds } 1761da177e4SLinus Torvalds #endif 1771da177e4SLinus Torvalds 1781da177e4SLinus Torvalds if (npmem_ranges > 1) { 1791da177e4SLinus Torvalds 1801da177e4SLinus Torvalds /* Print the memory ranges */ 1811da177e4SLinus Torvalds 1821da177e4SLinus Torvalds printk(KERN_INFO "Memory Ranges:\n"); 1831da177e4SLinus Torvalds 1841da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 1851da177e4SLinus Torvalds unsigned long start; 1861da177e4SLinus Torvalds unsigned long size; 1871da177e4SLinus Torvalds 1881da177e4SLinus Torvalds size = (pmem_ranges[i].pages << PAGE_SHIFT); 1891da177e4SLinus Torvalds start = (pmem_ranges[i].start_pfn << PAGE_SHIFT); 1901da177e4SLinus Torvalds printk(KERN_INFO "%2d) Start 0x%016lx End 0x%016lx Size %6ld MB\n", 1911da177e4SLinus Torvalds i,start, start + (size - 1), size >> 20); 1921da177e4SLinus Torvalds } 1931da177e4SLinus Torvalds } 1941da177e4SLinus Torvalds 1951da177e4SLinus Torvalds sysram_resource_count = npmem_ranges; 1961da177e4SLinus Torvalds for (i = 0; i < sysram_resource_count; i++) { 1971da177e4SLinus Torvalds struct resource *res = &sysram_resources[i]; 1981da177e4SLinus Torvalds res->name = "System RAM"; 1991da177e4SLinus Torvalds res->start = pmem_ranges[i].start_pfn << PAGE_SHIFT; 2001da177e4SLinus Torvalds res->end = res->start + (pmem_ranges[i].pages << PAGE_SHIFT)-1; 2011da177e4SLinus Torvalds res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; 2021da177e4SLinus Torvalds request_resource(&iomem_resource, res); 2031da177e4SLinus Torvalds } 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds /* 2061da177e4SLinus Torvalds * For 32 bit kernels we limit the amount of memory we can 2071da177e4SLinus Torvalds * support, in order to preserve enough kernel address space 2081da177e4SLinus Torvalds * for other purposes. For 64 bit kernels we don't normally 2091da177e4SLinus Torvalds * limit the memory, but this mechanism can be used to 2101da177e4SLinus Torvalds * artificially limit the amount of memory (and it is written 2111da177e4SLinus Torvalds * to work with multiple memory ranges). 2121da177e4SLinus Torvalds */ 2131da177e4SLinus Torvalds 2141da177e4SLinus Torvalds mem_limit_func(); /* check for "mem=" argument */ 2151da177e4SLinus Torvalds 2161da177e4SLinus Torvalds mem_max = 0; 2171da177e4SLinus Torvalds num_physpages = 0; 2181da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 2191da177e4SLinus Torvalds unsigned long rsize; 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds rsize = pmem_ranges[i].pages << PAGE_SHIFT; 2221da177e4SLinus Torvalds if ((mem_max + rsize) > mem_limit) { 2231da177e4SLinus Torvalds printk(KERN_WARNING "Memory truncated to %ld MB\n", mem_limit >> 20); 2241da177e4SLinus Torvalds if (mem_max == mem_limit) 2251da177e4SLinus Torvalds npmem_ranges = i; 2261da177e4SLinus Torvalds else { 2271da177e4SLinus Torvalds pmem_ranges[i].pages = (mem_limit >> PAGE_SHIFT) 2281da177e4SLinus Torvalds - (mem_max >> PAGE_SHIFT); 2291da177e4SLinus Torvalds npmem_ranges = i + 1; 2301da177e4SLinus Torvalds mem_max = mem_limit; 2311da177e4SLinus Torvalds } 2321da177e4SLinus Torvalds num_physpages += pmem_ranges[i].pages; 2331da177e4SLinus Torvalds break; 2341da177e4SLinus Torvalds } 2351da177e4SLinus Torvalds num_physpages += pmem_ranges[i].pages; 2361da177e4SLinus Torvalds mem_max += rsize; 2371da177e4SLinus Torvalds } 2381da177e4SLinus Torvalds 2391da177e4SLinus Torvalds printk(KERN_INFO "Total Memory: %ld MB\n",mem_max >> 20); 2401da177e4SLinus Torvalds 2411da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 2421da177e4SLinus Torvalds /* Merge the ranges, keeping track of the holes */ 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvalds { 2451da177e4SLinus Torvalds unsigned long end_pfn; 2461da177e4SLinus Torvalds unsigned long hole_pages; 2471da177e4SLinus Torvalds 2481da177e4SLinus Torvalds npmem_holes = 0; 2491da177e4SLinus Torvalds end_pfn = pmem_ranges[0].start_pfn + pmem_ranges[0].pages; 2501da177e4SLinus Torvalds for (i = 1; i < npmem_ranges; i++) { 2511da177e4SLinus Torvalds 2521da177e4SLinus Torvalds hole_pages = pmem_ranges[i].start_pfn - end_pfn; 2531da177e4SLinus Torvalds if (hole_pages) { 2541da177e4SLinus Torvalds pmem_holes[npmem_holes].start_pfn = end_pfn; 2551da177e4SLinus Torvalds pmem_holes[npmem_holes++].pages = hole_pages; 2561da177e4SLinus Torvalds end_pfn += hole_pages; 2571da177e4SLinus Torvalds } 2581da177e4SLinus Torvalds end_pfn += pmem_ranges[i].pages; 2591da177e4SLinus Torvalds } 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds pmem_ranges[0].pages = end_pfn - pmem_ranges[0].start_pfn; 2621da177e4SLinus Torvalds npmem_ranges = 1; 2631da177e4SLinus Torvalds } 2641da177e4SLinus Torvalds #endif 2651da177e4SLinus Torvalds 2661da177e4SLinus Torvalds bootmap_pages = 0; 2671da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) 2681da177e4SLinus Torvalds bootmap_pages += bootmem_bootmap_pages(pmem_ranges[i].pages); 2691da177e4SLinus Torvalds 2701da177e4SLinus Torvalds bootmap_start_pfn = PAGE_ALIGN(__pa((unsigned long) &_end)) >> PAGE_SHIFT; 2711da177e4SLinus Torvalds 2721da177e4SLinus Torvalds #ifdef CONFIG_DISCONTIGMEM 2731da177e4SLinus Torvalds for (i = 0; i < MAX_PHYSMEM_RANGES; i++) { 2741da177e4SLinus Torvalds memset(NODE_DATA(i), 0, sizeof(pg_data_t)); 275b61bfa3cSJohannes Weiner NODE_DATA(i)->bdata = &bootmem_node_data[i]; 2761da177e4SLinus Torvalds } 2771da177e4SLinus Torvalds memset(pfnnid_map, 0xff, sizeof(pfnnid_map)); 2781da177e4SLinus Torvalds 279d9b41e0bSDavid Rientjes for (i = 0; i < npmem_ranges; i++) { 280d9b41e0bSDavid Rientjes node_set_state(i, N_NORMAL_MEMORY); 2811da177e4SLinus Torvalds node_set_online(i); 282d9b41e0bSDavid Rientjes } 2831da177e4SLinus Torvalds #endif 2841da177e4SLinus Torvalds 2851da177e4SLinus Torvalds /* 2861da177e4SLinus Torvalds * Initialize and free the full range of memory in each range. 2871da177e4SLinus Torvalds * Note that the only writing these routines do are to the bootmap, 2881da177e4SLinus Torvalds * and we've made sure to locate the bootmap properly so that they 2891da177e4SLinus Torvalds * won't be writing over anything important. 2901da177e4SLinus Torvalds */ 2911da177e4SLinus Torvalds 2921da177e4SLinus Torvalds bootmap_pfn = bootmap_start_pfn; 2931da177e4SLinus Torvalds max_pfn = 0; 2941da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 2951da177e4SLinus Torvalds unsigned long start_pfn; 2961da177e4SLinus Torvalds unsigned long npages; 2971da177e4SLinus Torvalds 2981da177e4SLinus Torvalds start_pfn = pmem_ranges[i].start_pfn; 2991da177e4SLinus Torvalds npages = pmem_ranges[i].pages; 3001da177e4SLinus Torvalds 3011da177e4SLinus Torvalds bootmap_size = init_bootmem_node(NODE_DATA(i), 3021da177e4SLinus Torvalds bootmap_pfn, 3031da177e4SLinus Torvalds start_pfn, 3041da177e4SLinus Torvalds (start_pfn + npages) ); 3051da177e4SLinus Torvalds free_bootmem_node(NODE_DATA(i), 3061da177e4SLinus Torvalds (start_pfn << PAGE_SHIFT), 3071da177e4SLinus Torvalds (npages << PAGE_SHIFT) ); 3081da177e4SLinus Torvalds bootmap_pfn += (bootmap_size + PAGE_SIZE - 1) >> PAGE_SHIFT; 3091da177e4SLinus Torvalds if ((start_pfn + npages) > max_pfn) 3101da177e4SLinus Torvalds max_pfn = start_pfn + npages; 3111da177e4SLinus Torvalds } 3121da177e4SLinus Torvalds 3135cdb8205SGrant Grundler /* IOMMU is always used to access "high mem" on those boxes 3145cdb8205SGrant Grundler * that can support enough mem that a PCI device couldn't 3155cdb8205SGrant Grundler * directly DMA to any physical addresses. 3165cdb8205SGrant Grundler * ISA DMA support will need to revisit this. 3175cdb8205SGrant Grundler */ 3185cdb8205SGrant Grundler max_low_pfn = max_pfn; 3195cdb8205SGrant Grundler 3208980a7baSHelge Deller /* bootmap sizing messed up? */ 3218980a7baSHelge Deller BUG_ON((bootmap_pfn - bootmap_start_pfn) != bootmap_pages); 3221da177e4SLinus Torvalds 3231da177e4SLinus Torvalds /* reserve PAGE0 pdc memory, kernel text/data/bss & bootmap */ 3241da177e4SLinus Torvalds 3251da177e4SLinus Torvalds #define PDC_CONSOLE_IO_IODC_SIZE 32768 3261da177e4SLinus Torvalds 3271da177e4SLinus Torvalds reserve_bootmem_node(NODE_DATA(0), 0UL, 32872a7fe39SBernhard Walle (unsigned long)(PAGE0->mem_free + 32972a7fe39SBernhard Walle PDC_CONSOLE_IO_IODC_SIZE), BOOTMEM_DEFAULT); 330c51d476aSKyle McMartin reserve_bootmem_node(NODE_DATA(0), __pa((unsigned long)_text), 33172a7fe39SBernhard Walle (unsigned long)(_end - _text), BOOTMEM_DEFAULT); 3321da177e4SLinus Torvalds reserve_bootmem_node(NODE_DATA(0), (bootmap_start_pfn << PAGE_SHIFT), 33372a7fe39SBernhard Walle ((bootmap_pfn - bootmap_start_pfn) << PAGE_SHIFT), 33472a7fe39SBernhard Walle BOOTMEM_DEFAULT); 3351da177e4SLinus Torvalds 3361da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 3371da177e4SLinus Torvalds 3381da177e4SLinus Torvalds /* reserve the holes */ 3391da177e4SLinus Torvalds 3401da177e4SLinus Torvalds for (i = 0; i < npmem_holes; i++) { 3411da177e4SLinus Torvalds reserve_bootmem_node(NODE_DATA(0), 3421da177e4SLinus Torvalds (pmem_holes[i].start_pfn << PAGE_SHIFT), 34372a7fe39SBernhard Walle (pmem_holes[i].pages << PAGE_SHIFT), 34472a7fe39SBernhard Walle BOOTMEM_DEFAULT); 3451da177e4SLinus Torvalds } 3461da177e4SLinus Torvalds #endif 3471da177e4SLinus Torvalds 3481da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_INITRD 3491da177e4SLinus Torvalds if (initrd_start) { 3501da177e4SLinus Torvalds printk(KERN_INFO "initrd: %08lx-%08lx\n", initrd_start, initrd_end); 3511da177e4SLinus Torvalds if (__pa(initrd_start) < mem_max) { 3521da177e4SLinus Torvalds unsigned long initrd_reserve; 3531da177e4SLinus Torvalds 3541da177e4SLinus Torvalds if (__pa(initrd_end) > mem_max) { 3551da177e4SLinus Torvalds initrd_reserve = mem_max - __pa(initrd_start); 3561da177e4SLinus Torvalds } else { 3571da177e4SLinus Torvalds initrd_reserve = initrd_end - initrd_start; 3581da177e4SLinus Torvalds } 3591da177e4SLinus Torvalds initrd_below_start_ok = 1; 3601da177e4SLinus Torvalds printk(KERN_INFO "initrd: reserving %08lx-%08lx (mem_max %08lx)\n", __pa(initrd_start), __pa(initrd_start) + initrd_reserve, mem_max); 3611da177e4SLinus Torvalds 36272a7fe39SBernhard Walle reserve_bootmem_node(NODE_DATA(0), __pa(initrd_start), 36372a7fe39SBernhard Walle initrd_reserve, BOOTMEM_DEFAULT); 3641da177e4SLinus Torvalds } 3651da177e4SLinus Torvalds } 3661da177e4SLinus Torvalds #endif 3671da177e4SLinus Torvalds 3681da177e4SLinus Torvalds data_resource.start = virt_to_phys(&data_start); 369c51d476aSKyle McMartin data_resource.end = virt_to_phys(_end) - 1; 370c51d476aSKyle McMartin code_resource.start = virt_to_phys(_text); 3711da177e4SLinus Torvalds code_resource.end = virt_to_phys(&data_start)-1; 3721da177e4SLinus Torvalds 3731da177e4SLinus Torvalds /* We don't know which region the kernel will be in, so try 3741da177e4SLinus Torvalds * all of them. 3751da177e4SLinus Torvalds */ 3761da177e4SLinus Torvalds for (i = 0; i < sysram_resource_count; i++) { 3771da177e4SLinus Torvalds struct resource *res = &sysram_resources[i]; 3781da177e4SLinus Torvalds request_resource(res, &code_resource); 3791da177e4SLinus Torvalds request_resource(res, &data_resource); 3801da177e4SLinus Torvalds } 3811da177e4SLinus Torvalds request_resource(&sysram_resources[0], &pdcdata_resource); 3821da177e4SLinus Torvalds } 3831da177e4SLinus Torvalds 384d7dd2ff1SJames Bottomley static void __init map_pages(unsigned long start_vaddr, 385d7dd2ff1SJames Bottomley unsigned long start_paddr, unsigned long size, 386d7dd2ff1SJames Bottomley pgprot_t pgprot, int force) 387d7dd2ff1SJames Bottomley { 388d7dd2ff1SJames Bottomley pgd_t *pg_dir; 389d7dd2ff1SJames Bottomley pmd_t *pmd; 390d7dd2ff1SJames Bottomley pte_t *pg_table; 391d7dd2ff1SJames Bottomley unsigned long end_paddr; 392d7dd2ff1SJames Bottomley unsigned long start_pmd; 393d7dd2ff1SJames Bottomley unsigned long start_pte; 394d7dd2ff1SJames Bottomley unsigned long tmp1; 395d7dd2ff1SJames Bottomley unsigned long tmp2; 396d7dd2ff1SJames Bottomley unsigned long address; 397d7dd2ff1SJames Bottomley unsigned long vaddr; 398d7dd2ff1SJames Bottomley unsigned long ro_start; 399d7dd2ff1SJames Bottomley unsigned long ro_end; 400d7dd2ff1SJames Bottomley unsigned long fv_addr; 401d7dd2ff1SJames Bottomley unsigned long gw_addr; 402d7dd2ff1SJames Bottomley extern const unsigned long fault_vector_20; 403d7dd2ff1SJames Bottomley extern void * const linux_gateway_page; 404d7dd2ff1SJames Bottomley 405d7dd2ff1SJames Bottomley ro_start = __pa((unsigned long)_text); 406d7dd2ff1SJames Bottomley ro_end = __pa((unsigned long)&data_start); 407d7dd2ff1SJames Bottomley fv_addr = __pa((unsigned long)&fault_vector_20) & PAGE_MASK; 408d7dd2ff1SJames Bottomley gw_addr = __pa((unsigned long)&linux_gateway_page) & PAGE_MASK; 409d7dd2ff1SJames Bottomley 410d7dd2ff1SJames Bottomley end_paddr = start_paddr + size; 411d7dd2ff1SJames Bottomley 412d7dd2ff1SJames Bottomley pg_dir = pgd_offset_k(start_vaddr); 413d7dd2ff1SJames Bottomley 414d7dd2ff1SJames Bottomley #if PTRS_PER_PMD == 1 415d7dd2ff1SJames Bottomley start_pmd = 0; 416d7dd2ff1SJames Bottomley #else 417d7dd2ff1SJames Bottomley start_pmd = ((start_vaddr >> PMD_SHIFT) & (PTRS_PER_PMD - 1)); 418d7dd2ff1SJames Bottomley #endif 419d7dd2ff1SJames Bottomley start_pte = ((start_vaddr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)); 420d7dd2ff1SJames Bottomley 421d7dd2ff1SJames Bottomley address = start_paddr; 422d7dd2ff1SJames Bottomley vaddr = start_vaddr; 423d7dd2ff1SJames Bottomley while (address < end_paddr) { 424d7dd2ff1SJames Bottomley #if PTRS_PER_PMD == 1 425d7dd2ff1SJames Bottomley pmd = (pmd_t *)__pa(pg_dir); 426d7dd2ff1SJames Bottomley #else 427d7dd2ff1SJames Bottomley pmd = (pmd_t *)pgd_address(*pg_dir); 428d7dd2ff1SJames Bottomley 429d7dd2ff1SJames Bottomley /* 430d7dd2ff1SJames Bottomley * pmd is physical at this point 431d7dd2ff1SJames Bottomley */ 432d7dd2ff1SJames Bottomley 433d7dd2ff1SJames Bottomley if (!pmd) { 434d7dd2ff1SJames Bottomley pmd = (pmd_t *) alloc_bootmem_low_pages_node(NODE_DATA(0), PAGE_SIZE << PMD_ORDER); 435d7dd2ff1SJames Bottomley pmd = (pmd_t *) __pa(pmd); 436d7dd2ff1SJames Bottomley } 437d7dd2ff1SJames Bottomley 438d7dd2ff1SJames Bottomley pgd_populate(NULL, pg_dir, __va(pmd)); 439d7dd2ff1SJames Bottomley #endif 440d7dd2ff1SJames Bottomley pg_dir++; 441d7dd2ff1SJames Bottomley 442d7dd2ff1SJames Bottomley /* now change pmd to kernel virtual addresses */ 443d7dd2ff1SJames Bottomley 444d7dd2ff1SJames Bottomley pmd = (pmd_t *)__va(pmd) + start_pmd; 445d7dd2ff1SJames Bottomley for (tmp1 = start_pmd; tmp1 < PTRS_PER_PMD; tmp1++, pmd++) { 446d7dd2ff1SJames Bottomley 447d7dd2ff1SJames Bottomley /* 448d7dd2ff1SJames Bottomley * pg_table is physical at this point 449d7dd2ff1SJames Bottomley */ 450d7dd2ff1SJames Bottomley 451d7dd2ff1SJames Bottomley pg_table = (pte_t *)pmd_address(*pmd); 452d7dd2ff1SJames Bottomley if (!pg_table) { 453d7dd2ff1SJames Bottomley pg_table = (pte_t *) 454d7dd2ff1SJames Bottomley alloc_bootmem_low_pages_node(NODE_DATA(0), PAGE_SIZE); 455d7dd2ff1SJames Bottomley pg_table = (pte_t *) __pa(pg_table); 456d7dd2ff1SJames Bottomley } 457d7dd2ff1SJames Bottomley 458d7dd2ff1SJames Bottomley pmd_populate_kernel(NULL, pmd, __va(pg_table)); 459d7dd2ff1SJames Bottomley 460d7dd2ff1SJames Bottomley /* now change pg_table to kernel virtual addresses */ 461d7dd2ff1SJames Bottomley 462d7dd2ff1SJames Bottomley pg_table = (pte_t *) __va(pg_table) + start_pte; 463d7dd2ff1SJames Bottomley for (tmp2 = start_pte; tmp2 < PTRS_PER_PTE; tmp2++, pg_table++) { 464d7dd2ff1SJames Bottomley pte_t pte; 465d7dd2ff1SJames Bottomley 466d7dd2ff1SJames Bottomley /* 467d7dd2ff1SJames Bottomley * Map the fault vector writable so we can 468d7dd2ff1SJames Bottomley * write the HPMC checksum. 469d7dd2ff1SJames Bottomley */ 470d7dd2ff1SJames Bottomley if (force) 471d7dd2ff1SJames Bottomley pte = __mk_pte(address, pgprot); 472d7dd2ff1SJames Bottomley else if (core_kernel_text(vaddr) && 473d7dd2ff1SJames Bottomley address != fv_addr) 474d7dd2ff1SJames Bottomley pte = __mk_pte(address, PAGE_KERNEL_EXEC); 475d7dd2ff1SJames Bottomley else 476d7dd2ff1SJames Bottomley #if defined(CONFIG_PARISC_PAGE_SIZE_4KB) 477d7dd2ff1SJames Bottomley if (address >= ro_start && address < ro_end 478d7dd2ff1SJames Bottomley && address != fv_addr 479d7dd2ff1SJames Bottomley && address != gw_addr) 480d7dd2ff1SJames Bottomley pte = __mk_pte(address, PAGE_KERNEL_RO); 481d7dd2ff1SJames Bottomley else 482d7dd2ff1SJames Bottomley #endif 483d7dd2ff1SJames Bottomley pte = __mk_pte(address, pgprot); 484d7dd2ff1SJames Bottomley 485d7dd2ff1SJames Bottomley if (address >= end_paddr) { 486d7dd2ff1SJames Bottomley if (force) 487d7dd2ff1SJames Bottomley break; 488d7dd2ff1SJames Bottomley else 489d7dd2ff1SJames Bottomley pte_val(pte) = 0; 490d7dd2ff1SJames Bottomley } 491d7dd2ff1SJames Bottomley 492d7dd2ff1SJames Bottomley set_pte(pg_table, pte); 493d7dd2ff1SJames Bottomley 494d7dd2ff1SJames Bottomley address += PAGE_SIZE; 495d7dd2ff1SJames Bottomley vaddr += PAGE_SIZE; 496d7dd2ff1SJames Bottomley } 497d7dd2ff1SJames Bottomley start_pte = 0; 498d7dd2ff1SJames Bottomley 499d7dd2ff1SJames Bottomley if (address >= end_paddr) 500d7dd2ff1SJames Bottomley break; 501d7dd2ff1SJames Bottomley } 502d7dd2ff1SJames Bottomley start_pmd = 0; 503d7dd2ff1SJames Bottomley } 504d7dd2ff1SJames Bottomley } 505d7dd2ff1SJames Bottomley 5061da177e4SLinus Torvalds void free_initmem(void) 5071da177e4SLinus Torvalds { 5084fb11781SKyle McMartin unsigned long addr; 5094fb11781SKyle McMartin unsigned long init_begin = (unsigned long)__init_begin; 5104fb11781SKyle McMartin unsigned long init_end = (unsigned long)__init_end; 5111da177e4SLinus Torvalds 512d7dd2ff1SJames Bottomley /* The init text pages are marked R-X. We have to 513d7dd2ff1SJames Bottomley * flush the icache and mark them RW- 514d7dd2ff1SJames Bottomley * 515d7dd2ff1SJames Bottomley * This is tricky, because map_pages is in the init section. 516d7dd2ff1SJames Bottomley * Do a dummy remap of the data section first (the data 517d7dd2ff1SJames Bottomley * section is already PAGE_KERNEL) to pull in the TLB entries 518d7dd2ff1SJames Bottomley * for map_kernel */ 519d7dd2ff1SJames Bottomley map_pages(init_begin, __pa(init_begin), init_end - init_begin, 520d7dd2ff1SJames Bottomley PAGE_KERNEL_RWX, 1); 521d7dd2ff1SJames Bottomley /* now remap at PAGE_KERNEL since the TLB is pre-primed to execute 522d7dd2ff1SJames Bottomley * map_pages */ 523d7dd2ff1SJames Bottomley map_pages(init_begin, __pa(init_begin), init_end - init_begin, 524d7dd2ff1SJames Bottomley PAGE_KERNEL, 1); 525d7dd2ff1SJames Bottomley 526d7dd2ff1SJames Bottomley /* force the kernel to see the new TLB entries */ 527d7dd2ff1SJames Bottomley __flush_tlb_range(0, init_begin, init_end); 5281da177e4SLinus Torvalds /* Attempt to catch anyone trying to execute code here 5291da177e4SLinus Torvalds * by filling the page with BRK insns. 5301da177e4SLinus Torvalds */ 53120dbc9f7SKyle McMartin memset((void *)init_begin, 0x00, init_end - init_begin); 532d7dd2ff1SJames Bottomley /* finally dump all the instructions which were cached, since the 533d7dd2ff1SJames Bottomley * pages are no-longer executable */ 5344fb11781SKyle McMartin flush_icache_range(init_begin, init_end); 5351da177e4SLinus Torvalds 5362fd83038SHelge Deller for (addr = init_begin; addr < init_end; addr += PAGE_SIZE) { 5371da177e4SLinus Torvalds ClearPageReserved(virt_to_page(addr)); 5387835e98bSNick Piggin init_page_count(virt_to_page(addr)); 5391da177e4SLinus Torvalds free_page(addr); 5401da177e4SLinus Torvalds num_physpages++; 5411da177e4SLinus Torvalds totalram_pages++; 5421da177e4SLinus Torvalds } 5431da177e4SLinus Torvalds 5441da177e4SLinus Torvalds /* set up a new led state on systems shipped LED State panel */ 5451da177e4SLinus Torvalds pdc_chassis_send_status(PDC_CHASSIS_DIRECT_BCOMPLETE); 5461da177e4SLinus Torvalds 5474fb11781SKyle McMartin printk(KERN_INFO "Freeing unused kernel memory: %luk freed\n", 5484fb11781SKyle McMartin (init_end - init_begin) >> 10); 5491da177e4SLinus Torvalds } 5501da177e4SLinus Torvalds 5511bcdd854SHelge Deller 5521bcdd854SHelge Deller #ifdef CONFIG_DEBUG_RODATA 5531bcdd854SHelge Deller void mark_rodata_ro(void) 5541bcdd854SHelge Deller { 5551bcdd854SHelge Deller /* rodata memory was already mapped with KERNEL_RO access rights by 5561bcdd854SHelge Deller pagetable_init() and map_pages(). No need to do additional stuff here */ 5571bcdd854SHelge Deller printk (KERN_INFO "Write protecting the kernel read-only data: %luk\n", 558a581c2a4SHeiko Carstens (unsigned long)(__end_rodata - __start_rodata) >> 10); 5591bcdd854SHelge Deller } 5601bcdd854SHelge Deller #endif 5611bcdd854SHelge Deller 5621bcdd854SHelge Deller 5631da177e4SLinus Torvalds /* 5641da177e4SLinus Torvalds * Just an arbitrary offset to serve as a "hole" between mapping areas 5651da177e4SLinus Torvalds * (between top of physical memory and a potential pcxl dma mapping 5661da177e4SLinus Torvalds * area, and below the vmalloc mapping area). 5671da177e4SLinus Torvalds * 5681da177e4SLinus Torvalds * The current 32K value just means that there will be a 32K "hole" 5691da177e4SLinus Torvalds * between mapping areas. That means that any out-of-bounds memory 5701da177e4SLinus Torvalds * accesses will hopefully be caught. The vmalloc() routines leaves 5711da177e4SLinus Torvalds * a hole of 4kB between each vmalloced area for the same reason. 5721da177e4SLinus Torvalds */ 5731da177e4SLinus Torvalds 5741da177e4SLinus Torvalds /* Leave room for gateway page expansion */ 5751da177e4SLinus Torvalds #if KERNEL_MAP_START < GATEWAY_PAGE_SIZE 5761da177e4SLinus Torvalds #error KERNEL_MAP_START is in gateway reserved region 5771da177e4SLinus Torvalds #endif 5781da177e4SLinus Torvalds #define MAP_START (KERNEL_MAP_START) 5791da177e4SLinus Torvalds 5801da177e4SLinus Torvalds #define VM_MAP_OFFSET (32*1024) 5811da177e4SLinus Torvalds #define SET_MAP_OFFSET(x) ((void *)(((unsigned long)(x) + VM_MAP_OFFSET) \ 5821da177e4SLinus Torvalds & ~(VM_MAP_OFFSET-1))) 5831da177e4SLinus Torvalds 5844255f0d2SHelge Deller void *parisc_vmalloc_start __read_mostly; 5854255f0d2SHelge Deller EXPORT_SYMBOL(parisc_vmalloc_start); 5861da177e4SLinus Torvalds 5871da177e4SLinus Torvalds #ifdef CONFIG_PA11 5888039de10SHelge Deller unsigned long pcxl_dma_start __read_mostly; 5891da177e4SLinus Torvalds #endif 5901da177e4SLinus Torvalds 5911da177e4SLinus Torvalds void __init mem_init(void) 5921da177e4SLinus Torvalds { 593ce8420bbSHelge Deller int codesize, reservedpages, datasize, initsize; 594ce8420bbSHelge Deller 59548d27cb2SHelge Deller /* Do sanity checks on page table constants */ 59648d27cb2SHelge Deller BUILD_BUG_ON(PTE_ENTRY_SIZE != sizeof(pte_t)); 59748d27cb2SHelge Deller BUILD_BUG_ON(PMD_ENTRY_SIZE != sizeof(pmd_t)); 59848d27cb2SHelge Deller BUILD_BUG_ON(PGD_ENTRY_SIZE != sizeof(pgd_t)); 59948d27cb2SHelge Deller BUILD_BUG_ON(PAGE_SHIFT + BITS_PER_PTE + BITS_PER_PMD + BITS_PER_PGD 60048d27cb2SHelge Deller > BITS_PER_LONG); 60148d27cb2SHelge Deller 6021da177e4SLinus Torvalds high_memory = __va((max_pfn << PAGE_SHIFT)); 6031da177e4SLinus Torvalds 6041da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 6051da177e4SLinus Torvalds max_mapnr = page_to_pfn(virt_to_page(high_memory - 1)) + 1; 6061da177e4SLinus Torvalds totalram_pages += free_all_bootmem(); 6071da177e4SLinus Torvalds #else 6081da177e4SLinus Torvalds { 6091da177e4SLinus Torvalds int i; 6101da177e4SLinus Torvalds 6111da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) 6121da177e4SLinus Torvalds totalram_pages += free_all_bootmem_node(NODE_DATA(i)); 6131da177e4SLinus Torvalds } 6141da177e4SLinus Torvalds #endif 6151da177e4SLinus Torvalds 61653faf291SKyle McMartin codesize = (unsigned long)_etext - (unsigned long)_text; 61753faf291SKyle McMartin datasize = (unsigned long)_edata - (unsigned long)_etext; 61853faf291SKyle McMartin initsize = (unsigned long)__init_end - (unsigned long)__init_begin; 6191da177e4SLinus Torvalds 620ce8420bbSHelge Deller reservedpages = 0; 62153faf291SKyle McMartin { 62253faf291SKyle McMartin unsigned long pfn; 62353faf291SKyle McMartin #ifdef CONFIG_DISCONTIGMEM 62453faf291SKyle McMartin int i; 62553faf291SKyle McMartin 62653faf291SKyle McMartin for (i = 0; i < npmem_ranges; i++) { 62753faf291SKyle McMartin for (pfn = node_start_pfn(i); pfn < node_end_pfn(i); pfn++) { 62853faf291SKyle McMartin if (PageReserved(pfn_to_page(pfn))) 62953faf291SKyle McMartin reservedpages++; 63053faf291SKyle McMartin } 63153faf291SKyle McMartin } 63253faf291SKyle McMartin #else /* !CONFIG_DISCONTIGMEM */ 63353faf291SKyle McMartin for (pfn = 0; pfn < max_pfn; pfn++) { 634ce8420bbSHelge Deller /* 635ce8420bbSHelge Deller * Only count reserved RAM pages 636ce8420bbSHelge Deller */ 63753faf291SKyle McMartin if (PageReserved(pfn_to_page(pfn))) 638ce8420bbSHelge Deller reservedpages++; 63953faf291SKyle McMartin } 64053faf291SKyle McMartin #endif 64153faf291SKyle McMartin } 6421da177e4SLinus Torvalds 6431da177e4SLinus Torvalds #ifdef CONFIG_PA11 6441da177e4SLinus Torvalds if (hppa_dma_ops == &pcxl_dma_ops) { 6451da177e4SLinus Torvalds pcxl_dma_start = (unsigned long)SET_MAP_OFFSET(MAP_START); 6464255f0d2SHelge Deller parisc_vmalloc_start = SET_MAP_OFFSET(pcxl_dma_start 6474255f0d2SHelge Deller + PCXL_DMA_MAP_SIZE); 6481da177e4SLinus Torvalds } else { 6491da177e4SLinus Torvalds pcxl_dma_start = 0; 6504255f0d2SHelge Deller parisc_vmalloc_start = SET_MAP_OFFSET(MAP_START); 6511da177e4SLinus Torvalds } 6521da177e4SLinus Torvalds #else 6534255f0d2SHelge Deller parisc_vmalloc_start = SET_MAP_OFFSET(MAP_START); 6541da177e4SLinus Torvalds #endif 6551da177e4SLinus Torvalds 65653faf291SKyle McMartin printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, %dk reserved, %dk data, %dk init)\n", 657cc013a88SGeert Uytterhoeven nr_free_pages() << (PAGE_SHIFT-10), 658ce8420bbSHelge Deller num_physpages << (PAGE_SHIFT-10), 659ce8420bbSHelge Deller codesize >> 10, 660ce8420bbSHelge Deller reservedpages << (PAGE_SHIFT-10), 661ce8420bbSHelge Deller datasize >> 10, 66253faf291SKyle McMartin initsize >> 10 663ce8420bbSHelge Deller ); 664ce8420bbSHelge Deller 665ce8420bbSHelge Deller #ifdef CONFIG_DEBUG_KERNEL /* double-sanity-check paranoia */ 666ce8420bbSHelge Deller printk("virtual kernel memory layout:\n" 667ce8420bbSHelge Deller " vmalloc : 0x%p - 0x%p (%4ld MB)\n" 66853faf291SKyle McMartin " memory : 0x%p - 0x%p (%4ld MB)\n" 669ce8420bbSHelge Deller " .init : 0x%p - 0x%p (%4ld kB)\n" 670ce8420bbSHelge Deller " .data : 0x%p - 0x%p (%4ld kB)\n" 671ce8420bbSHelge Deller " .text : 0x%p - 0x%p (%4ld kB)\n", 672ce8420bbSHelge Deller 673ce8420bbSHelge Deller (void*)VMALLOC_START, (void*)VMALLOC_END, 674ce8420bbSHelge Deller (VMALLOC_END - VMALLOC_START) >> 20, 675ce8420bbSHelge Deller 676ce8420bbSHelge Deller __va(0), high_memory, 677ce8420bbSHelge Deller ((unsigned long)high_memory - (unsigned long)__va(0)) >> 20, 678ce8420bbSHelge Deller 67953faf291SKyle McMartin __init_begin, __init_end, 68053faf291SKyle McMartin ((unsigned long)__init_end - (unsigned long)__init_begin) >> 10, 681ce8420bbSHelge Deller 68253faf291SKyle McMartin _etext, _edata, 68353faf291SKyle McMartin ((unsigned long)_edata - (unsigned long)_etext) >> 10, 684ce8420bbSHelge Deller 68553faf291SKyle McMartin _text, _etext, 68653faf291SKyle McMartin ((unsigned long)_etext - (unsigned long)_text) >> 10); 687ce8420bbSHelge Deller #endif 6881da177e4SLinus Torvalds } 6891da177e4SLinus Torvalds 6908039de10SHelge Deller unsigned long *empty_zero_page __read_mostly; 69122febf1fSKyle McMartin EXPORT_SYMBOL(empty_zero_page); 6921da177e4SLinus Torvalds 693b2b755b5SDavid Rientjes void show_mem(unsigned int filter) 6941da177e4SLinus Torvalds { 6951da177e4SLinus Torvalds int i,free = 0,total = 0,reserved = 0; 6961da177e4SLinus Torvalds int shared = 0, cached = 0; 6971da177e4SLinus Torvalds 6981da177e4SLinus Torvalds printk(KERN_INFO "Mem-info:\n"); 6997bf02ea2SDavid Rientjes show_free_areas(filter); 7001da177e4SLinus Torvalds #ifndef CONFIG_DISCONTIGMEM 7011da177e4SLinus Torvalds i = max_mapnr; 7021da177e4SLinus Torvalds while (i-- > 0) { 7031da177e4SLinus Torvalds total++; 7041da177e4SLinus Torvalds if (PageReserved(mem_map+i)) 7051da177e4SLinus Torvalds reserved++; 7061da177e4SLinus Torvalds else if (PageSwapCache(mem_map+i)) 7071da177e4SLinus Torvalds cached++; 7081da177e4SLinus Torvalds else if (!page_count(&mem_map[i])) 7091da177e4SLinus Torvalds free++; 7101da177e4SLinus Torvalds else 7111da177e4SLinus Torvalds shared += page_count(&mem_map[i]) - 1; 7121da177e4SLinus Torvalds } 7131da177e4SLinus Torvalds #else 7141da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 7151da177e4SLinus Torvalds int j; 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds for (j = node_start_pfn(i); j < node_end_pfn(i); j++) { 7181da177e4SLinus Torvalds struct page *p; 719208d54e5SDave Hansen unsigned long flags; 7201da177e4SLinus Torvalds 721208d54e5SDave Hansen pgdat_resize_lock(NODE_DATA(i), &flags); 722408fde81SDave Hansen p = nid_page_nr(i, j) - node_start_pfn(i); 7231da177e4SLinus Torvalds 7241da177e4SLinus Torvalds total++; 7251da177e4SLinus Torvalds if (PageReserved(p)) 7261da177e4SLinus Torvalds reserved++; 7271da177e4SLinus Torvalds else if (PageSwapCache(p)) 7281da177e4SLinus Torvalds cached++; 7291da177e4SLinus Torvalds else if (!page_count(p)) 7301da177e4SLinus Torvalds free++; 7311da177e4SLinus Torvalds else 7321da177e4SLinus Torvalds shared += page_count(p) - 1; 733208d54e5SDave Hansen pgdat_resize_unlock(NODE_DATA(i), &flags); 7341da177e4SLinus Torvalds } 7351da177e4SLinus Torvalds } 7361da177e4SLinus Torvalds #endif 7371da177e4SLinus Torvalds printk(KERN_INFO "%d pages of RAM\n", total); 7381da177e4SLinus Torvalds printk(KERN_INFO "%d reserved pages\n", reserved); 7391da177e4SLinus Torvalds printk(KERN_INFO "%d pages shared\n", shared); 7401da177e4SLinus Torvalds printk(KERN_INFO "%d pages swap cached\n", cached); 7411da177e4SLinus Torvalds 7421da177e4SLinus Torvalds 7431da177e4SLinus Torvalds #ifdef CONFIG_DISCONTIGMEM 7441da177e4SLinus Torvalds { 7451da177e4SLinus Torvalds struct zonelist *zl; 74654a6eb5cSMel Gorman int i, j; 7471da177e4SLinus Torvalds 7481da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 7494413a0f6SMel Gorman zl = node_zonelist(i, 0); 7501da177e4SLinus Torvalds for (j = 0; j < MAX_NR_ZONES; j++) { 751dd1a239fSMel Gorman struct zoneref *z; 75254a6eb5cSMel Gorman struct zone *zone; 7531da177e4SLinus Torvalds 7541da177e4SLinus Torvalds printk("Zone list for zone %d on node %d: ", j, i); 75554a6eb5cSMel Gorman for_each_zone_zonelist(zone, z, zl, j) 75654a6eb5cSMel Gorman printk("[%d/%s] ", zone_to_nid(zone), 75754a6eb5cSMel Gorman zone->name); 7581da177e4SLinus Torvalds printk("\n"); 7591da177e4SLinus Torvalds } 7601da177e4SLinus Torvalds } 7611da177e4SLinus Torvalds } 7621da177e4SLinus Torvalds #endif 7631da177e4SLinus Torvalds } 7641da177e4SLinus Torvalds 7651da177e4SLinus Torvalds /* 7661da177e4SLinus Torvalds * pagetable_init() sets up the page tables 7671da177e4SLinus Torvalds * 7681da177e4SLinus Torvalds * Note that gateway_init() places the Linux gateway page at page 0. 7691da177e4SLinus Torvalds * Since gateway pages cannot be dereferenced this has the desirable 7701da177e4SLinus Torvalds * side effect of trapping those pesky NULL-reference errors in the 7711da177e4SLinus Torvalds * kernel. 7721da177e4SLinus Torvalds */ 7731da177e4SLinus Torvalds static void __init pagetable_init(void) 7741da177e4SLinus Torvalds { 7751da177e4SLinus Torvalds int range; 7761da177e4SLinus Torvalds 7771da177e4SLinus Torvalds /* Map each physical memory range to its kernel vaddr */ 7781da177e4SLinus Torvalds 7791da177e4SLinus Torvalds for (range = 0; range < npmem_ranges; range++) { 7801da177e4SLinus Torvalds unsigned long start_paddr; 7811da177e4SLinus Torvalds unsigned long end_paddr; 7821da177e4SLinus Torvalds unsigned long size; 7831da177e4SLinus Torvalds 7841da177e4SLinus Torvalds start_paddr = pmem_ranges[range].start_pfn << PAGE_SHIFT; 7851da177e4SLinus Torvalds end_paddr = start_paddr + (pmem_ranges[range].pages << PAGE_SHIFT); 7861da177e4SLinus Torvalds size = pmem_ranges[range].pages << PAGE_SHIFT; 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvalds map_pages((unsigned long)__va(start_paddr), start_paddr, 789d7dd2ff1SJames Bottomley size, PAGE_KERNEL, 0); 7901da177e4SLinus Torvalds } 7911da177e4SLinus Torvalds 7921da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_INITRD 7931da177e4SLinus Torvalds if (initrd_end && initrd_end > mem_limit) { 7941bcdd854SHelge Deller printk(KERN_INFO "initrd: mapping %08lx-%08lx\n", initrd_start, initrd_end); 7951da177e4SLinus Torvalds map_pages(initrd_start, __pa(initrd_start), 796d7dd2ff1SJames Bottomley initrd_end - initrd_start, PAGE_KERNEL, 0); 7971da177e4SLinus Torvalds } 7981da177e4SLinus Torvalds #endif 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds empty_zero_page = alloc_bootmem_pages(PAGE_SIZE); 8011da177e4SLinus Torvalds memset(empty_zero_page, 0, PAGE_SIZE); 8021da177e4SLinus Torvalds } 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds static void __init gateway_init(void) 8051da177e4SLinus Torvalds { 8061da177e4SLinus Torvalds unsigned long linux_gateway_page_addr; 8071da177e4SLinus Torvalds /* FIXME: This is 'const' in order to trick the compiler 8081da177e4SLinus Torvalds into not treating it as DP-relative data. */ 8091da177e4SLinus Torvalds extern void * const linux_gateway_page; 8101da177e4SLinus Torvalds 8111da177e4SLinus Torvalds linux_gateway_page_addr = LINUX_GATEWAY_ADDR & PAGE_MASK; 8121da177e4SLinus Torvalds 8131da177e4SLinus Torvalds /* 8141da177e4SLinus Torvalds * Setup Linux Gateway page. 8151da177e4SLinus Torvalds * 8161da177e4SLinus Torvalds * The Linux gateway page will reside in kernel space (on virtual 8171da177e4SLinus Torvalds * page 0), so it doesn't need to be aliased into user space. 8181da177e4SLinus Torvalds */ 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvalds map_pages(linux_gateway_page_addr, __pa(&linux_gateway_page), 821d7dd2ff1SJames Bottomley PAGE_SIZE, PAGE_GATEWAY, 1); 8221da177e4SLinus Torvalds } 8231da177e4SLinus Torvalds 8241da177e4SLinus Torvalds #ifdef CONFIG_HPUX 8251da177e4SLinus Torvalds void 8261da177e4SLinus Torvalds map_hpux_gateway_page(struct task_struct *tsk, struct mm_struct *mm) 8271da177e4SLinus Torvalds { 8281da177e4SLinus Torvalds pgd_t *pg_dir; 8291da177e4SLinus Torvalds pmd_t *pmd; 8301da177e4SLinus Torvalds pte_t *pg_table; 8311da177e4SLinus Torvalds unsigned long start_pmd; 8321da177e4SLinus Torvalds unsigned long start_pte; 8331da177e4SLinus Torvalds unsigned long address; 8341da177e4SLinus Torvalds unsigned long hpux_gw_page_addr; 8351da177e4SLinus Torvalds /* FIXME: This is 'const' in order to trick the compiler 8361da177e4SLinus Torvalds into not treating it as DP-relative data. */ 8371da177e4SLinus Torvalds extern void * const hpux_gateway_page; 8381da177e4SLinus Torvalds 8391da177e4SLinus Torvalds hpux_gw_page_addr = HPUX_GATEWAY_ADDR & PAGE_MASK; 8401da177e4SLinus Torvalds 8411da177e4SLinus Torvalds /* 8421da177e4SLinus Torvalds * Setup HP-UX Gateway page. 8431da177e4SLinus Torvalds * 8441da177e4SLinus Torvalds * The HP-UX gateway page resides in the user address space, 8451da177e4SLinus Torvalds * so it needs to be aliased into each process. 8461da177e4SLinus Torvalds */ 8471da177e4SLinus Torvalds 8481da177e4SLinus Torvalds pg_dir = pgd_offset(mm,hpux_gw_page_addr); 8491da177e4SLinus Torvalds 8501da177e4SLinus Torvalds #if PTRS_PER_PMD == 1 8511da177e4SLinus Torvalds start_pmd = 0; 8521da177e4SLinus Torvalds #else 8531da177e4SLinus Torvalds start_pmd = ((hpux_gw_page_addr >> PMD_SHIFT) & (PTRS_PER_PMD - 1)); 8541da177e4SLinus Torvalds #endif 8551da177e4SLinus Torvalds start_pte = ((hpux_gw_page_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)); 8561da177e4SLinus Torvalds 8571da177e4SLinus Torvalds address = __pa(&hpux_gateway_page); 8581da177e4SLinus Torvalds #if PTRS_PER_PMD == 1 8591da177e4SLinus Torvalds pmd = (pmd_t *)__pa(pg_dir); 8601da177e4SLinus Torvalds #else 8611da177e4SLinus Torvalds pmd = (pmd_t *) pgd_address(*pg_dir); 8621da177e4SLinus Torvalds 8631da177e4SLinus Torvalds /* 8641da177e4SLinus Torvalds * pmd is physical at this point 8651da177e4SLinus Torvalds */ 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvalds if (!pmd) { 8681da177e4SLinus Torvalds pmd = (pmd_t *) get_zeroed_page(GFP_KERNEL); 8691da177e4SLinus Torvalds pmd = (pmd_t *) __pa(pmd); 8701da177e4SLinus Torvalds } 8711da177e4SLinus Torvalds 8721da177e4SLinus Torvalds __pgd_val_set(*pg_dir, PxD_FLAG_PRESENT | PxD_FLAG_VALID | (unsigned long) pmd); 8731da177e4SLinus Torvalds #endif 8741da177e4SLinus Torvalds /* now change pmd to kernel virtual addresses */ 8751da177e4SLinus Torvalds 8761da177e4SLinus Torvalds pmd = (pmd_t *)__va(pmd) + start_pmd; 8771da177e4SLinus Torvalds 8781da177e4SLinus Torvalds /* 8791da177e4SLinus Torvalds * pg_table is physical at this point 8801da177e4SLinus Torvalds */ 8811da177e4SLinus Torvalds 8821da177e4SLinus Torvalds pg_table = (pte_t *) pmd_address(*pmd); 8831da177e4SLinus Torvalds if (!pg_table) 8841da177e4SLinus Torvalds pg_table = (pte_t *) __pa(get_zeroed_page(GFP_KERNEL)); 8851da177e4SLinus Torvalds 8861da177e4SLinus Torvalds __pmd_val_set(*pmd, PxD_FLAG_PRESENT | PxD_FLAG_VALID | (unsigned long) pg_table); 8871da177e4SLinus Torvalds 8881da177e4SLinus Torvalds /* now change pg_table to kernel virtual addresses */ 8891da177e4SLinus Torvalds 8901da177e4SLinus Torvalds pg_table = (pte_t *) __va(pg_table) + start_pte; 8911da177e4SLinus Torvalds set_pte(pg_table, __mk_pte(address, PAGE_GATEWAY)); 8921da177e4SLinus Torvalds } 8931da177e4SLinus Torvalds EXPORT_SYMBOL(map_hpux_gateway_page); 8941da177e4SLinus Torvalds #endif 8951da177e4SLinus Torvalds 8961da177e4SLinus Torvalds void __init paging_init(void) 8971da177e4SLinus Torvalds { 8981da177e4SLinus Torvalds int i; 8991da177e4SLinus Torvalds 9001da177e4SLinus Torvalds setup_bootmem(); 9011da177e4SLinus Torvalds pagetable_init(); 9021da177e4SLinus Torvalds gateway_init(); 9031da177e4SLinus Torvalds flush_cache_all_local(); /* start with known state */ 904ce33941fSMatthew Wilcox flush_tlb_all_local(NULL); 9051da177e4SLinus Torvalds 9061da177e4SLinus Torvalds for (i = 0; i < npmem_ranges; i++) { 907f06a9684SChristoph Lameter unsigned long zones_size[MAX_NR_ZONES] = { 0, }; 9081da177e4SLinus Torvalds 90900592837SChristoph Lameter zones_size[ZONE_NORMAL] = pmem_ranges[i].pages; 9101da177e4SLinus Torvalds 9111da177e4SLinus Torvalds #ifdef CONFIG_DISCONTIGMEM 9121da177e4SLinus Torvalds /* Need to initialize the pfnnid_map before we can initialize 9131da177e4SLinus Torvalds the zone */ 9141da177e4SLinus Torvalds { 9151da177e4SLinus Torvalds int j; 9161da177e4SLinus Torvalds for (j = (pmem_ranges[i].start_pfn >> PFNNID_SHIFT); 9171da177e4SLinus Torvalds j <= ((pmem_ranges[i].start_pfn + pmem_ranges[i].pages) >> PFNNID_SHIFT); 9181da177e4SLinus Torvalds j++) { 9191da177e4SLinus Torvalds pfnnid_map[j] = i; 9201da177e4SLinus Torvalds } 9211da177e4SLinus Torvalds } 9221da177e4SLinus Torvalds #endif 9231da177e4SLinus Torvalds 9249109fb7bSJohannes Weiner free_area_init_node(i, zones_size, 9251da177e4SLinus Torvalds pmem_ranges[i].start_pfn, NULL); 9261da177e4SLinus Torvalds } 9271da177e4SLinus Torvalds } 9281da177e4SLinus Torvalds 9291da177e4SLinus Torvalds #ifdef CONFIG_PA20 9301da177e4SLinus Torvalds 9311da177e4SLinus Torvalds /* 9327022672eSSimon Arlott * Currently, all PA20 chips have 18 bit protection IDs, which is the 9331da177e4SLinus Torvalds * limiting factor (space ids are 32 bits). 9341da177e4SLinus Torvalds */ 9351da177e4SLinus Torvalds 9361da177e4SLinus Torvalds #define NR_SPACE_IDS 262144 9371da177e4SLinus Torvalds 9381da177e4SLinus Torvalds #else 9391da177e4SLinus Torvalds 9401da177e4SLinus Torvalds /* 9417022672eSSimon Arlott * Currently we have a one-to-one relationship between space IDs and 9427022672eSSimon Arlott * protection IDs. Older parisc chips (PCXS, PCXT, PCXL, PCXL2) only 9437022672eSSimon Arlott * support 15 bit protection IDs, so that is the limiting factor. 9447022672eSSimon Arlott * PCXT' has 18 bit protection IDs, but only 16 bit spaceids, so it's 9451da177e4SLinus Torvalds * probably not worth the effort for a special case here. 9461da177e4SLinus Torvalds */ 9471da177e4SLinus Torvalds 9481da177e4SLinus Torvalds #define NR_SPACE_IDS 32768 9491da177e4SLinus Torvalds 9501da177e4SLinus Torvalds #endif /* !CONFIG_PA20 */ 9511da177e4SLinus Torvalds 9521da177e4SLinus Torvalds #define RECYCLE_THRESHOLD (NR_SPACE_IDS / 2) 9531da177e4SLinus Torvalds #define SID_ARRAY_SIZE (NR_SPACE_IDS / (8 * sizeof(long))) 9541da177e4SLinus Torvalds 9551da177e4SLinus Torvalds static unsigned long space_id[SID_ARRAY_SIZE] = { 1 }; /* disallow space 0 */ 9561da177e4SLinus Torvalds static unsigned long dirty_space_id[SID_ARRAY_SIZE]; 9571da177e4SLinus Torvalds static unsigned long space_id_index; 9581da177e4SLinus Torvalds static unsigned long free_space_ids = NR_SPACE_IDS - 1; 9591da177e4SLinus Torvalds static unsigned long dirty_space_ids = 0; 9601da177e4SLinus Torvalds 9611da177e4SLinus Torvalds static DEFINE_SPINLOCK(sid_lock); 9621da177e4SLinus Torvalds 9631da177e4SLinus Torvalds unsigned long alloc_sid(void) 9641da177e4SLinus Torvalds { 9651da177e4SLinus Torvalds unsigned long index; 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds spin_lock(&sid_lock); 9681da177e4SLinus Torvalds 9691da177e4SLinus Torvalds if (free_space_ids == 0) { 9701da177e4SLinus Torvalds if (dirty_space_ids != 0) { 9711da177e4SLinus Torvalds spin_unlock(&sid_lock); 9721da177e4SLinus Torvalds flush_tlb_all(); /* flush_tlb_all() calls recycle_sids() */ 9731da177e4SLinus Torvalds spin_lock(&sid_lock); 9741da177e4SLinus Torvalds } 9752fd83038SHelge Deller BUG_ON(free_space_ids == 0); 9761da177e4SLinus Torvalds } 9771da177e4SLinus Torvalds 9781da177e4SLinus Torvalds free_space_ids--; 9791da177e4SLinus Torvalds 9801da177e4SLinus Torvalds index = find_next_zero_bit(space_id, NR_SPACE_IDS, space_id_index); 9811da177e4SLinus Torvalds space_id[index >> SHIFT_PER_LONG] |= (1L << (index & (BITS_PER_LONG - 1))); 9821da177e4SLinus Torvalds space_id_index = index; 9831da177e4SLinus Torvalds 9841da177e4SLinus Torvalds spin_unlock(&sid_lock); 9851da177e4SLinus Torvalds 9861da177e4SLinus Torvalds return index << SPACEID_SHIFT; 9871da177e4SLinus Torvalds } 9881da177e4SLinus Torvalds 9891da177e4SLinus Torvalds void free_sid(unsigned long spaceid) 9901da177e4SLinus Torvalds { 9911da177e4SLinus Torvalds unsigned long index = spaceid >> SPACEID_SHIFT; 9921da177e4SLinus Torvalds unsigned long *dirty_space_offset; 9931da177e4SLinus Torvalds 9941da177e4SLinus Torvalds dirty_space_offset = dirty_space_id + (index >> SHIFT_PER_LONG); 9951da177e4SLinus Torvalds index &= (BITS_PER_LONG - 1); 9961da177e4SLinus Torvalds 9971da177e4SLinus Torvalds spin_lock(&sid_lock); 9981da177e4SLinus Torvalds 9992fd83038SHelge Deller BUG_ON(*dirty_space_offset & (1L << index)); /* attempt to free space id twice */ 10001da177e4SLinus Torvalds 10011da177e4SLinus Torvalds *dirty_space_offset |= (1L << index); 10021da177e4SLinus Torvalds dirty_space_ids++; 10031da177e4SLinus Torvalds 10041da177e4SLinus Torvalds spin_unlock(&sid_lock); 10051da177e4SLinus Torvalds } 10061da177e4SLinus Torvalds 10071da177e4SLinus Torvalds 10081da177e4SLinus Torvalds #ifdef CONFIG_SMP 10091da177e4SLinus Torvalds static void get_dirty_sids(unsigned long *ndirtyptr,unsigned long *dirty_array) 10101da177e4SLinus Torvalds { 10111da177e4SLinus Torvalds int i; 10121da177e4SLinus Torvalds 10131da177e4SLinus Torvalds /* NOTE: sid_lock must be held upon entry */ 10141da177e4SLinus Torvalds 10151da177e4SLinus Torvalds *ndirtyptr = dirty_space_ids; 10161da177e4SLinus Torvalds if (dirty_space_ids != 0) { 10171da177e4SLinus Torvalds for (i = 0; i < SID_ARRAY_SIZE; i++) { 10181da177e4SLinus Torvalds dirty_array[i] = dirty_space_id[i]; 10191da177e4SLinus Torvalds dirty_space_id[i] = 0; 10201da177e4SLinus Torvalds } 10211da177e4SLinus Torvalds dirty_space_ids = 0; 10221da177e4SLinus Torvalds } 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds return; 10251da177e4SLinus Torvalds } 10261da177e4SLinus Torvalds 10271da177e4SLinus Torvalds static void recycle_sids(unsigned long ndirty,unsigned long *dirty_array) 10281da177e4SLinus Torvalds { 10291da177e4SLinus Torvalds int i; 10301da177e4SLinus Torvalds 10311da177e4SLinus Torvalds /* NOTE: sid_lock must be held upon entry */ 10321da177e4SLinus Torvalds 10331da177e4SLinus Torvalds if (ndirty != 0) { 10341da177e4SLinus Torvalds for (i = 0; i < SID_ARRAY_SIZE; i++) { 10351da177e4SLinus Torvalds space_id[i] ^= dirty_array[i]; 10361da177e4SLinus Torvalds } 10371da177e4SLinus Torvalds 10381da177e4SLinus Torvalds free_space_ids += ndirty; 10391da177e4SLinus Torvalds space_id_index = 0; 10401da177e4SLinus Torvalds } 10411da177e4SLinus Torvalds } 10421da177e4SLinus Torvalds 10431da177e4SLinus Torvalds #else /* CONFIG_SMP */ 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvalds static void recycle_sids(void) 10461da177e4SLinus Torvalds { 10471da177e4SLinus Torvalds int i; 10481da177e4SLinus Torvalds 10491da177e4SLinus Torvalds /* NOTE: sid_lock must be held upon entry */ 10501da177e4SLinus Torvalds 10511da177e4SLinus Torvalds if (dirty_space_ids != 0) { 10521da177e4SLinus Torvalds for (i = 0; i < SID_ARRAY_SIZE; i++) { 10531da177e4SLinus Torvalds space_id[i] ^= dirty_space_id[i]; 10541da177e4SLinus Torvalds dirty_space_id[i] = 0; 10551da177e4SLinus Torvalds } 10561da177e4SLinus Torvalds 10571da177e4SLinus Torvalds free_space_ids += dirty_space_ids; 10581da177e4SLinus Torvalds dirty_space_ids = 0; 10591da177e4SLinus Torvalds space_id_index = 0; 10601da177e4SLinus Torvalds } 10611da177e4SLinus Torvalds } 10621da177e4SLinus Torvalds #endif 10631da177e4SLinus Torvalds 10641da177e4SLinus Torvalds /* 10651da177e4SLinus Torvalds * flush_tlb_all() calls recycle_sids(), since whenever the entire tlb is 10661da177e4SLinus Torvalds * purged, we can safely reuse the space ids that were released but 10671da177e4SLinus Torvalds * not flushed from the tlb. 10681da177e4SLinus Torvalds */ 10691da177e4SLinus Torvalds 10701da177e4SLinus Torvalds #ifdef CONFIG_SMP 10711da177e4SLinus Torvalds 10721da177e4SLinus Torvalds static unsigned long recycle_ndirty; 10731da177e4SLinus Torvalds static unsigned long recycle_dirty_array[SID_ARRAY_SIZE]; 10742fd83038SHelge Deller static unsigned int recycle_inuse; 10751da177e4SLinus Torvalds 10761da177e4SLinus Torvalds void flush_tlb_all(void) 10771da177e4SLinus Torvalds { 10781da177e4SLinus Torvalds int do_recycle; 10791da177e4SLinus Torvalds 10801da177e4SLinus Torvalds do_recycle = 0; 10811da177e4SLinus Torvalds spin_lock(&sid_lock); 10821da177e4SLinus Torvalds if (dirty_space_ids > RECYCLE_THRESHOLD) { 10832fd83038SHelge Deller BUG_ON(recycle_inuse); /* FIXME: Use a semaphore/wait queue here */ 10841da177e4SLinus Torvalds get_dirty_sids(&recycle_ndirty,recycle_dirty_array); 10851da177e4SLinus Torvalds recycle_inuse++; 10861da177e4SLinus Torvalds do_recycle++; 10871da177e4SLinus Torvalds } 10881da177e4SLinus Torvalds spin_unlock(&sid_lock); 108915c8b6c1SJens Axboe on_each_cpu(flush_tlb_all_local, NULL, 1); 10901da177e4SLinus Torvalds if (do_recycle) { 10911da177e4SLinus Torvalds spin_lock(&sid_lock); 10921da177e4SLinus Torvalds recycle_sids(recycle_ndirty,recycle_dirty_array); 10931da177e4SLinus Torvalds recycle_inuse = 0; 10941da177e4SLinus Torvalds spin_unlock(&sid_lock); 10951da177e4SLinus Torvalds } 10961da177e4SLinus Torvalds } 10971da177e4SLinus Torvalds #else 10981da177e4SLinus Torvalds void flush_tlb_all(void) 10991da177e4SLinus Torvalds { 11001da177e4SLinus Torvalds spin_lock(&sid_lock); 11011b2425e3SMatthew Wilcox flush_tlb_all_local(NULL); 11021da177e4SLinus Torvalds recycle_sids(); 11031da177e4SLinus Torvalds spin_unlock(&sid_lock); 11041da177e4SLinus Torvalds } 11051da177e4SLinus Torvalds #endif 11061da177e4SLinus Torvalds 11071da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_INITRD 11081da177e4SLinus Torvalds void free_initrd_mem(unsigned long start, unsigned long end) 11091da177e4SLinus Torvalds { 111094c3e87aSHelge Deller if (start >= end) 111194c3e87aSHelge Deller return; 11121da177e4SLinus Torvalds printk(KERN_INFO "Freeing initrd memory: %ldk freed\n", (end - start) >> 10); 11131da177e4SLinus Torvalds for (; start < end; start += PAGE_SIZE) { 11141da177e4SLinus Torvalds ClearPageReserved(virt_to_page(start)); 11157835e98bSNick Piggin init_page_count(virt_to_page(start)); 11161da177e4SLinus Torvalds free_page(start); 11171da177e4SLinus Torvalds num_physpages++; 11181da177e4SLinus Torvalds totalram_pages++; 11191da177e4SLinus Torvalds } 11201da177e4SLinus Torvalds } 11211da177e4SLinus Torvalds #endif 1122