[PATCH] no longer mark MTD_OBSOLETE_CHIPS as BROKEN
[linux-2.6/kvm.git] / include / asm-m32r / page.h
blob4ab5788763616c2f2b667b08c46dd4562d30a8c5
1 #ifndef _ASM_M32R_PAGE_H
2 #define _ASM_M32R_PAGE_H
4 #include <linux/config.h>
6 /* PAGE_SHIFT determines the page size */
7 #define PAGE_SHIFT 12
8 #define PAGE_SIZE (1UL << PAGE_SHIFT)
9 #define PAGE_MASK (~(PAGE_SIZE-1))
11 #ifdef __KERNEL__
12 #ifndef __ASSEMBLY__
14 extern void clear_page(void *to);
15 extern void copy_page(void *to, void *from);
17 #define clear_user_page(page, vaddr, pg) clear_page(page)
18 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
20 #define alloc_zeroed_user_highpage(vma, vaddr) alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO, vma, vaddr)
21 #define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
24 * These are used to make use of C type-checking..
26 typedef struct { unsigned long pte; } pte_t;
27 typedef struct { unsigned long pmd; } pmd_t;
28 typedef struct { unsigned long pgd; } pgd_t;
29 #define pte_val(x) ((x).pte)
30 #define PTE_MASK PAGE_MASK
32 typedef struct { unsigned long pgprot; } pgprot_t;
34 #define pmd_val(x) ((x).pmd)
35 #define pgd_val(x) ((x).pgd)
36 #define pgprot_val(x) ((x).pgprot)
38 #define __pte(x) ((pte_t) { (x) } )
39 #define __pmd(x) ((pmd_t) { (x) } )
40 #define __pgd(x) ((pgd_t) { (x) } )
41 #define __pgprot(x) ((pgprot_t) { (x) } )
43 #endif /* !__ASSEMBLY__ */
45 /* to align the pointer to the (next) page boundary */
46 #define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
49 * This handles the memory map.. We could make this a config
50 * option, but too many people screw it up, and too few need
51 * it.
53 * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
54 * a virtual address space of one gigabyte, which limits the
55 * amount of physical memory you can use to about 950MB.
57 * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
58 * and CONFIG_HIGHMEM64G options in the kernel configuration.
62 /* This handles the memory map.. */
64 #define __MEMORY_START CONFIG_MEMORY_START
65 #define __MEMORY_SIZE CONFIG_MEMORY_SIZE
67 #ifdef CONFIG_MMU
68 #define __PAGE_OFFSET (0x80000000)
69 #else
70 #define __PAGE_OFFSET (0x00000000)
71 #endif
73 #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
74 #define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
75 #define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
77 #ifndef CONFIG_DISCONTIGMEM
78 #define PFN_BASE (CONFIG_MEMORY_START >> PAGE_SHIFT)
79 #define pfn_to_page(pfn) (mem_map + ((pfn) - PFN_BASE))
80 #define page_to_pfn(page) \
81 ((unsigned long)((page) - mem_map) + PFN_BASE)
82 #define pfn_valid(pfn) (((pfn) - PFN_BASE) < max_mapnr)
83 #endif /* !CONFIG_DISCONTIGMEM */
85 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
86 #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
88 #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
89 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC )
91 #define devmem_is_allowed(x) 1
93 #endif /* __KERNEL__ */
95 #include <asm-generic/page.h>
97 #endif /* _ASM_M32R_PAGE_H */