• Home
  • Raw
  • Download

Lines Matching +full:4 +full:kb +full:- +full:page

1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 1995-2005 Russell King
4 // Copyright (C) 2013-2017 Andes Technology Corporation
19 #include <asm/page.h>
26 * empty_zero_page is a special page that is used for
27 * zero-initialized data and COW.
29 struct page *empty_zero_page;
47 * This is explicitly coded for two-level page tables, so if you need
58 /* These mark extents of read-only kernel pages... in map_ram()
76 "two-level page tables", __func__); in map_ram()
79 /* Alloc one page for holding PTE's... */ in map_ram()
86 /* Fill the newly allocated page with PTE'S */ in map_ram()
90 /* TODO: more fine grant for page access permission */ in map_ram()
109 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1); in fixedrange_init()
134 * paging_init() sets up the page tables, initialises the zone memory
135 * maps, and sets up the zero page, bad page and bad page tables.
197 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n" in mem_init()
199 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n" in mem_init()
201 " consist : 0x%08lx - 0x%08lx (%4ld MB)\n" in mem_init()
202 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n" in mem_init()
203 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n" in mem_init()
204 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n" in mem_init()
205 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n" in mem_init()
206 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n", in mem_init()
207 FIXADDR_START, FIXADDR_TOP, (FIXADDR_TOP - FIXADDR_START) >> 10, in mem_init()
213 ((CONSISTENT_END) - (CONSISTENT_BASE)) >> 20, VMALLOC_START, in mem_init()
214 (unsigned long)VMALLOC_END, (VMALLOC_END - VMALLOC_START) >> 20, in mem_init()
216 ((unsigned long)high_memory - in mem_init()
219 ((unsigned long)&__init_end - in mem_init()
222 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10, in mem_init()
224 ((unsigned long)&_etext - (unsigned long)&_text) >> 10); in mem_init()