/* * Copyright (C) 2007-2008 Michal Simek <monstr@monstr.eu> * Copyright (C) 2006 Atmark Techno, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details.
*/
/* Use for MMU and noMMU because of PCI generic code */ int mem_init_done;
char *klimit = _end;
/* * Initialize the bootmem system and give it all the memory we * have available.
*/ unsignedlong memory_start;
EXPORT_SYMBOL(memory_start); unsignedlong memory_size;
EXPORT_SYMBOL(memory_size); unsignedlong lowmem_size;
int page_is_ram(unsignedlong pfn)
{ return pfn < max_low_pfn;
}
/* * Check for command-line options that affect what MMU_init will do.
*/ staticvoid __init mm_cmdline_setup(void)
{ unsignedlong maxmem = 0; char *p = cmd_line;
/* Look for mem= option on command line */
p = strstr(cmd_line, "mem="); if (p) {
p += 4;
maxmem = memparse(p, &p); if (maxmem && memory_size > maxmem) {
memory_size = maxmem;
memblock.memory.regions[0].size = memory_size;
}
}
}
/* * MMU_init_hw does the chip-specific initialization of the MMU hardware.
*/ staticvoid __init mmu_init_hw(void)
{ /* * The Zone Protection Register (ZPR) defines how protection will * be applied to every page which is a member of a given zone. At * present, we utilize only two of the zones. * The zone index bits (of ZSEL) in the PTE are used for software * indicators, except the LSB. For user access, zone 1 is used, * for kernel access, zone 0 is used. We set all but zone 1 * to zero, allowing only kernel access as indicated in the PTE. * For zone 1, we set a 01 binary (a value of 10 will not work) * to allow user access as indicated in the PTE. This also allows * kernel access as indicated in the PTE.
*/
__asm__ __volatile__ ("ori r11, r0, 0x10000000;" \ "mts rzpr, r11;"
: : : "r11");
}
/* * MMU_init sets up the basic memory mappings for the kernel, * including both RAM and possibly some I/O regions, * and sets up the page tables and the MMU hardware ready to go.
*/
/* called from head.S */
asmlinkage void __init mmu_init(void)
{ unsignedint kstart, ksize;
if ((u32) memblock.memory.regions[0].size < 0x400000) {
pr_emerg("Memory must be greater than 4MB\n");
machine_restart(NULL);
}
if ((u32) memblock.memory.regions[0].size < kernel_tlb) {
pr_emerg("Kernel size is greater than memory node\n");
machine_restart(NULL);
}
/* Find main memory where the kernel is */
memory_start = (u32) memblock.memory.regions[0].base;
lowmem_size = memory_size = (u32) memblock.memory.regions[0].size;
mm_cmdline_setup(); /* FIXME parse args from command line - not used */
/* * Map out the kernel text/data/bss from the available physical * memory.
*/
kstart = __pa(CONFIG_KERNEL_START); /* kernel start */ /* kernel size */
ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
memblock_reserve(kstart, ksize);
#ifdefined(CONFIG_BLK_DEV_INITRD) /* Remove the init RAM disk from the available memory. */ if (initrd_start) { unsignedlong size;
size = initrd_end - initrd_start;
memblock_reserve(__virt_to_phys(initrd_start), size);
} #endif/* CONFIG_BLK_DEV_INITRD */
/* Initialize the MMU hardware */
mmu_init_hw();
/* Map in all of RAM starting at CONFIG_KERNEL_START */
mapin_ram();
/* Extend vmalloc and ioremap area as big as possible */ #ifdef CONFIG_HIGHMEM
ioremap_base = ioremap_bot = PKMAP_BASE; #else
ioremap_base = ioremap_bot = FIXADDR_START; #endif
/* Initialize the context management stuff */
mmu_context_init();
/* Shortly after that, the entire linear mapping will be available */ /* This will also cause that unflatten device tree will be allocated
* inside 768MB limit */
memblock_set_current_limit(memory_start + lowmem_size - 1);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.