#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/mman.h>
#include <linux/nodemask.h>
#include <linux/memblock.h>
#include <linux/fs.h>
#include <linux/vmalloc.h>
#include <linux/sizes.h>
#include <asm/cp15.h>
#include <asm/cputype.h>
#include <asm/sections.h>
#include <asm/cachetype.h>
#include <asm/setup.h>
#include <asm/smp_plat.h>
#include <asm/tlb.h>
#include <asm/highmem.h>
#include <asm/system_info.h>
#include <asm/traps.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/pci.h>
#include "mm.h"
Go to the source code of this file.
|
| | EXPORT_SYMBOL (empty_zero_page) |
| |
| | EXPORT_SYMBOL (pgprot_user) |
| |
| | EXPORT_SYMBOL (pgprot_kernel) |
| |
| | early_param ("cachepolicy", early_cachepolicy) |
| |
| | early_param ("nocache", early_nocache) |
| |
| | early_param ("nowb", early_nowrite) |
| |
| | early_param ("ecc", early_ecc) |
| |
| | __setup ("noalign", noalign_setup) |
| |
| void | adjust_cr (unsigned long mask, unsigned long set) |
| |
| struct mem_type * | get_mem_type (unsigned int type) |
| |
| | EXPORT_SYMBOL (get_mem_type) |
| |
| void __init | iotable_init (struct map_desc *io_desc, int nr) |
| |
| void __init | vm_reserve_area_early (unsigned long addr, unsigned long size, void *caller) |
| |
| | early_param ("vmalloc", early_vmalloc) |
| |
| void __init | sanity_check_meminfo (void) |
| |
| void __init | arm_mm_memblock_reserve (void) |
| |
| void __init | paging_init (struct machine_desc *mdesc) |
| |
| #define CPOLICY_BUFFERED 1 |
Definition at line 51 of file mmu.c.
| #define CPOLICY_UNCACHED 0 |
Definition at line 50 of file mmu.c.
| #define CPOLICY_WRITEALLOC 4 |
Definition at line 54 of file mmu.c.
| #define CPOLICY_WRITEBACK 3 |
Definition at line 53 of file mmu.c.
| #define CPOLICY_WRITETHROUGH 2 |
Definition at line 52 of file mmu.c.
| #define pci_reserve_io |
( |
| ) |
do { } while (0) |
| __setup |
( |
"noalign" |
, |
|
|
noalign_setup |
|
|
) |
| |
| early_param |
( |
"cachepolicy" |
, |
|
|
early_cachepolicy |
|
|
) |
| |
| early_param |
( |
"nocache" |
, |
|
|
early_nocache |
|
|
) |
| |
| early_param |
( |
"nowb" |
, |
|
|
early_nowrite |
|
|
) |
| |
| early_param |
( |
"ecc" |
, |
|
|
early_ecc |
|
|
) |
| |
| early_param |
( |
"vmalloc" |
, |
|
|
early_vmalloc |
|
|
) |
| |
Definition at line 42 of file mmu.c.
Definition at line 59 of file mmu.c.
Definition at line 58 of file mmu.c.
Definition at line 48 of file mmu.c.