page.h 6.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * 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.
 *
 * Copyright (C) 1994 - 1999, 2000, 03 Ralf Baechle
 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
 */
#ifndef _ASM_PAGE_H
#define _ASM_PAGE_H

#include <spaces.h>
13
#include <linux/const.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26

/*
 * PAGE_SHIFT determines the page size
 */
#ifdef CONFIG_PAGE_SIZE_4KB
#define PAGE_SHIFT	12
#endif
#ifdef CONFIG_PAGE_SIZE_8KB
#define PAGE_SHIFT	13
#endif
#ifdef CONFIG_PAGE_SIZE_16KB
#define PAGE_SHIFT	14
#endif
27 28 29
#ifdef CONFIG_PAGE_SIZE_32KB
#define PAGE_SHIFT	15
#endif
L
Linus Torvalds 已提交
30 31 32
#ifdef CONFIG_PAGE_SIZE_64KB
#define PAGE_SHIFT	16
#endif
33
#define PAGE_SIZE	(_AC(1,UL) << PAGE_SHIFT)
34
#define PAGE_MASK       (~(PAGE_SIZE - 1))
L
Linus Torvalds 已提交
35

36
#ifdef CONFIG_HUGETLB_PAGE
D
David Daney 已提交
37
#define HPAGE_SHIFT	(PAGE_SHIFT + PAGE_SHIFT - 3)
38
#define HPAGE_SIZE	(_AC(1,UL) << HPAGE_SHIFT)
D
David Daney 已提交
39 40
#define HPAGE_MASK	(~(HPAGE_SIZE - 1))
#define HUGETLB_PAGE_ORDER	(HPAGE_SHIFT - PAGE_SHIFT)
H
Hillf Danton 已提交
41 42 43 44 45
#else /* !CONFIG_HUGETLB_PAGE */
#define HPAGE_SHIFT	({BUILD_BUG(); 0; })
#define HPAGE_SIZE	({BUILD_BUG(); 0; })
#define HPAGE_MASK	({BUILD_BUG(); 0; })
#define HUGETLB_PAGE_ORDER	({BUILD_BUG(); 0; })
46
#endif /* CONFIG_HUGETLB_PAGE */
D
David Daney 已提交
47

L
Linus Torvalds 已提交
48 49
#ifndef __ASSEMBLY__

50
#include <linux/pfn.h>
51
#include <asm/io.h>
52

53 54 55
extern void build_clear_page(void);
extern void build_copy_page(void);

56 57 58 59 60 61 62
/*
 * It's normally defined only for FLATMEM config but it's
 * used in our early mem init code for all memory models.
 * So always define it.
 */
#define ARCH_PFN_OFFSET		PFN_UP(PHYS_OFFSET)

L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
extern void clear_page(void * page);
extern void copy_page(void * to, void * from);

extern unsigned long shm_align_mask;

static inline unsigned long pages_do_alias(unsigned long addr1,
	unsigned long addr2)
{
	return (addr1 ^ addr2) & shm_align_mask;
}

struct page;

static inline void clear_user_page(void *addr, unsigned long vaddr,
	struct page *page)
{
	extern void (*flush_data_cache_page)(unsigned long addr);

	clear_page(addr);
82
	if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
L
Linus Torvalds 已提交
83 84 85
		flush_data_cache_page((unsigned long)addr);
}

86 87 88 89 90
extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
	struct page *to);
struct vm_area_struct;
extern void copy_user_highpage(struct page *to, struct page *from,
	unsigned long vaddr, struct vm_area_struct *vma);
L
Linus Torvalds 已提交
91

92
#define __HAVE_ARCH_COPY_USER_HIGHPAGE
L
Linus Torvalds 已提交
93 94 95 96 97

/*
 * These are used to make use of C type-checking..
 */
#ifdef CONFIG_64BIT_PHYS_ADDR
98
  #ifdef CONFIG_CPU_MIPS32
L
Linus Torvalds 已提交
99 100
    typedef struct { unsigned long pte_low, pte_high; } pte_t;
    #define pte_val(x)    ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
101
    #define __pte(x)      ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
L
Linus Torvalds 已提交
102 103 104
  #else
     typedef struct { unsigned long long pte; } pte_t;
     #define pte_val(x)	((x).pte)
105
     #define __pte(x)	((pte_t) { (x) } )
L
Linus Torvalds 已提交
106 107 108 109
  #endif
#else
typedef struct { unsigned long pte; } pte_t;
#define pte_val(x)	((x).pte)
110
#define __pte(x)	((pte_t) { (x) } )
111
#endif
112
typedef struct page *pgtable_t;
L
Linus Torvalds 已提交
113

114 115 116 117 118 119 120 121 122 123
/*
 * Right now we don't support 4-level pagetables, so all pud-related
 * definitions come from <asm-generic/pgtable-nopud.h>.
 */

/*
 * Finall the top of the hierarchy, the pgd
 */
typedef struct { unsigned long pgd; } pgd_t;
#define pgd_val(x)	((x).pgd)
L
Linus Torvalds 已提交
124
#define __pgd(x)	((pgd_t) { (x) } )
125 126 127 128 129 130

/*
 * Manipulate page protection bits
 */
typedef struct { unsigned long pgprot; } pgprot_t;
#define pgprot_val(x)	((x).pgprot)
L
Linus Torvalds 已提交
131 132
#define __pgprot(x)	((pgprot_t) { (x) } )

133 134 135 136 137 138 139 140 141
/*
 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
 * pair of pages we only have a single global bit per pair of pages.  When
 * writing to the TLB make sure we always have the bit set for both pages
 * or none.  This macro is used to access the `buddy' of the pte we're just
 * working on.
 */
#define ptep_buddy(x)	((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))

L
Linus Torvalds 已提交
142 143
#endif /* !__ASSEMBLY__ */

144 145 146
/*
 * __pa()/__va() should be used only during mem init.
 */
147
#ifdef CONFIG_64BIT
148 149 150 151 152
#define __pa(x)								\
({									\
    unsigned long __x = (unsigned long)(x);				\
    __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x);			\
})
153
#else
154 155
#define __pa(x)								\
    ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
156
#endif
157
#define __va(x)		((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
158 159 160 161 162 163 164 165 166 167 168 169 170 171

/*
 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org).  The
 * discussion can be found in lkml posting
 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
 *
 * It is unclear if the misscompilations mentioned in
 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
 * until GCC 3.x has been retired before we can apply
 * https://patchwork.linux-mips.org/patch/1541/
 */

172
#define __pa_symbol(x)	__pa(RELOC_HIDE((unsigned long)(x), 0))
L
Linus Torvalds 已提交
173 174 175

#define pfn_to_kaddr(pfn)	__va((pfn) << PAGE_SHIFT)

176 177
#ifdef CONFIG_FLATMEM

178 179 180 181 182 183 184 185
#define pfn_valid(pfn)							\
({									\
	unsigned long __pfn = (pfn);					\
	/* avoid <linux/bootmem.h> include hell */			\
	extern unsigned long min_low_pfn;				\
									\
	__pfn >= min_low_pfn && __pfn < max_mapnr;			\
})
186

A
Atsushi Nemoto 已提交
187 188 189 190
#elif defined(CONFIG_SPARSEMEM)

/* pfn_valid is defined in linux/mmzone.h */

191 192 193 194 195 196 197 198 199 200 201 202 203
#elif defined(CONFIG_NEED_MULTIPLE_NODES)

#define pfn_valid(pfn)							\
({									\
	unsigned long __pfn = (pfn);					\
	int __n = pfn_to_nid(__pfn);					\
	((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn +		\
	                       NODE_DATA(__n)->node_spanned_pages)	\
	            : 0);						\
})

#endif

204 205
#define virt_to_page(kaddr)	pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
#define virt_addr_valid(kaddr)	pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
L
Linus Torvalds 已提交
206 207 208 209

#define VM_DATA_DEFAULT_FLAGS	(VM_READ | VM_WRITE | VM_EXEC | \
				 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)

210 211 212 213
#define UNCAC_ADDR(addr)	((addr) - PAGE_OFFSET + UNCAC_BASE + 	\
								PHYS_OFFSET)
#define CAC_ADDR(addr)		((addr) - UNCAC_BASE + PAGE_OFFSET -	\
								PHYS_OFFSET)
L
Linus Torvalds 已提交
214

215
#include <asm-generic/memory_model.h>
216
#include <asm-generic/getorder.h>
217

L
Linus Torvalds 已提交
218
#endif /* _ASM_PAGE_H */