nommu.c 1.9 KB
Newer Older
1 2 3 4 5 6
/*
 *  linux/arch/arm/mm/nommu.c
 *
 * ARM uCLinux supporting functions.
 */
#include <linux/module.h>
7 8
#include <linux/mm.h>
#include <linux/pagemap.h>
R
Russell King 已提交
9
#include <linux/bootmem.h>
10
#include <linux/io.h>
11

12
#include <asm/cacheflush.h>
R
Russell King 已提交
13
#include <asm/sections.h>
14
#include <asm/page.h>
15
#include <asm/setup.h>
R
Russell King 已提交
16
#include <asm/mach/arch.h>
17

18 19 20 21 22 23 24 25 26 27 28 29
#include "mm.h"

/*
 * Reserve the various regions of node 0
 */
void __init reserve_node_zero(pg_data_t *pgdat)
{
	/*
	 * Register the kernel text and data with bootmem.
	 * Note that this can only be in node 0.
	 */
#ifdef CONFIG_XIP_KERNEL
R
Russell King 已提交
30
	reserve_bootmem_node(pgdat, __pa(_data), _end - _data,
31
			BOOTMEM_DEFAULT);
32
#else
R
Russell King 已提交
33
	reserve_bootmem_node(pgdat, __pa(_stext), _end - _stext,
34
			BOOTMEM_DEFAULT);
35 36 37 38 39 40 41
#endif

	/*
	 * Register the exception vector page.
	 * some architectures which the DRAM is the exception vector to trap,
	 * alloc_page breaks with error, although it is not NULL, but "0."
	 */
42 43
	reserve_bootmem_node(pgdat, CONFIG_VECTORS_BASE, PAGE_SIZE,
			BOOTMEM_DEFAULT);
44 45 46 47 48 49
}

/*
 * paging_init() sets up the page tables, initialises the zone memory
 * maps, and sets up the zero page, bad page and bad page tables.
 */
50
void __init paging_init(struct machine_desc *mdesc)
51
{
52
	bootmem_init();
53 54
}

55 56 57 58 59 60 61
/*
 * We don't need to do anything here for nommu machines.
 */
void setup_mm_for_reboot(char mode)
{
}

62 63 64 65
void flush_dcache_page(struct page *page)
{
	__cpuc_flush_dcache_page(page_address(page));
}
66
EXPORT_SYMBOL(flush_dcache_page);
67

68 69
void __iomem *__arm_ioremap_pfn(unsigned long pfn, unsigned long offset,
				size_t size, unsigned int mtype)
70 71 72 73 74
{
	if (pfn >= (0x100000000ULL >> PAGE_SHIFT))
		return NULL;
	return (void __iomem *) (offset + (pfn << PAGE_SHIFT));
}
75
EXPORT_SYMBOL(__arm_ioremap_pfn);
76

77 78
void __iomem *__arm_ioremap(unsigned long phys_addr, size_t size,
			    unsigned int mtype)
79 80 81
{
	return (void __iomem *)phys_addr;
}
82
EXPORT_SYMBOL(__arm_ioremap);
83

R
Russell King 已提交
84
void __iounmap(volatile void __iomem *addr)
85 86 87
{
}
EXPORT_SYMBOL(__iounmap);