blob: 6f6ecf7d14a3550bafd331892704b75a0c51fe8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_M32R_PAGE_H
2#define _ASM_M32R_PAGE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004/* PAGE_SHIFT determines the page size */
5#define PAGE_SHIFT 12
6#define PAGE_SIZE (1UL << PAGE_SHIFT)
7#define PAGE_MASK (~(PAGE_SIZE-1))
8
9#ifdef __KERNEL__
10#ifndef __ASSEMBLY__
11
12extern void clear_page(void *to);
13extern void copy_page(void *to, void *from);
14
15#define clear_user_page(page, vaddr, pg) clear_page(page)
16#define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
17
18#define alloc_zeroed_user_highpage(vma, vaddr) alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO, vma, vaddr)
19#define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
20
21/*
22 * These are used to make use of C type-checking..
23 */
24typedef struct { unsigned long pte; } pte_t;
25typedef struct { unsigned long pmd; } pmd_t;
26typedef struct { unsigned long pgd; } pgd_t;
27#define pte_val(x) ((x).pte)
28#define PTE_MASK PAGE_MASK
29
30typedef struct { unsigned long pgprot; } pgprot_t;
31
32#define pmd_val(x) ((x).pmd)
33#define pgd_val(x) ((x).pgd)
34#define pgprot_val(x) ((x).pgprot)
35
36#define __pte(x) ((pte_t) { (x) } )
37#define __pmd(x) ((pmd_t) { (x) } )
38#define __pgd(x) ((pgd_t) { (x) } )
39#define __pgprot(x) ((pgprot_t) { (x) } )
40
41#endif /* !__ASSEMBLY__ */
42
43/* to align the pointer to the (next) page boundary */
44#define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
45
46/*
47 * This handles the memory map.. We could make this a config
48 * option, but too many people screw it up, and too few need
49 * it.
50 *
51 * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
52 * a virtual address space of one gigabyte, which limits the
53 * amount of physical memory you can use to about 950MB.
54 *
55 * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
56 * and CONFIG_HIGHMEM64G options in the kernel configuration.
57 */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define __MEMORY_START CONFIG_MEMORY_START
60#define __MEMORY_SIZE CONFIG_MEMORY_SIZE
61
62#ifdef CONFIG_MMU
63#define __PAGE_OFFSET (0x80000000)
64#else
65#define __PAGE_OFFSET (0x00000000)
66#endif
67
68#define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
69#define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
70#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
71
72#ifndef CONFIG_DISCONTIGMEM
73#define PFN_BASE (CONFIG_MEMORY_START >> PAGE_SHIFT)
KAMEZAWA Hiroyuki7126cff2006-03-27 01:15:42 -080074#define ARCH_PFN_OFFSET PFN_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define pfn_valid(pfn) (((pfn) - PFN_BASE) < max_mapnr)
76#endif /* !CONFIG_DISCONTIGMEM */
77
78#define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
79#define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
80
81#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
82 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC )
83
84#define devmem_is_allowed(x) 1
85
KAMEZAWA Hiroyuki7126cff2006-03-27 01:15:42 -080086#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -070087#include <asm-generic/page.h>
88
David Woodhouse47dbec72006-09-17 08:39:39 +010089#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif /* _ASM_M32R_PAGE_H */