blob: 65cdc8f9e3b387904950d637e35b7522afaf4cad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _I386_PGTABLE_2LEVEL_H
2#define _I386_PGTABLE_2LEVEL_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#define pte_ERROR(e) \
5 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte_low)
6#define pgd_ERROR(e) \
7 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
8
9/*
10 * Certain architectures need to do special things when PTEs
11 * within a page table are directly modified. Thus, the following
12 * hook is made available.
13 */
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020014static inline void native_set_pte(pte_t *ptep , pte_t pte)
15{
16 *ptep = pte;
17}
18static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
19 pte_t *ptep , pte_t pte)
20{
21 native_set_pte(ptep, pte);
22}
23static inline void native_set_pmd(pmd_t *pmdp, pmd_t pmd)
24{
25 *pmdp = pmd;
26}
Rusty Russellda181a82006-12-07 02:14:08 +010027#ifndef CONFIG_PARAVIRT
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020028#define set_pte(pteptr, pteval) native_set_pte(pteptr, pteval)
29#define set_pte_at(mm,addr,ptep,pteval) native_set_pte_at(mm, addr, ptep, pteval)
30#define set_pmd(pmdptr, pmdval) native_set_pmd(pmdptr, pmdval)
Rusty Russellda181a82006-12-07 02:14:08 +010031#endif
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define set_pte_atomic(pteptr, pteval) set_pte(pteptr,pteval)
Zachary Amsdend6d861e2006-09-30 23:29:36 -070034#define set_pte_present(mm,addr,ptep,pteval) set_pte_at(mm,addr,ptep,pteval)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Zachary Amsden6e5882c2006-04-27 11:32:29 -070036#define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
37
Zachary Amsdenc2c1acc2007-05-02 19:27:19 +020038static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *xp)
39{
40 *xp = __pte(0);
41}
42
Zachary Amsden142dd972007-05-02 19:27:19 +020043#ifdef CONFIG_SMP
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020044static inline pte_t native_ptep_get_and_clear(pte_t *xp)
45{
46 return __pte(xchg(&xp->pte_low, 0));
47}
Zachary Amsden142dd972007-05-02 19:27:19 +020048#else
49#define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp)
50#endif
Rusty Russell60497422006-09-25 23:32:30 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define pte_page(x) pfn_to_page(pte_pfn(x))
53#define pte_none(x) (!(x).pte_low)
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020054#define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * All present pages are kernel-executable:
58 */
59static inline int pte_exec_kernel(pte_t pte)
60{
61 return 1;
62}
63
64/*
65 * Bits 0, 6 and 7 are taken, split up the 29 bits of offset
66 * into this range:
67 */
68#define PTE_FILE_MAX_BITS 29
69
70#define pte_to_pgoff(pte) \
71 ((((pte).pte_low >> 1) & 0x1f ) + (((pte).pte_low >> 8) << 5 ))
72
73#define pgoff_to_pte(off) \
Jeremy Fitzhardingec8e53932008-01-30 13:32:57 +010074 ((pte_t) { .pte_low = (((off) & 0x1f) << 1) + (((off) >> 5) << 8) + _PAGE_FILE })
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Encode and de-code a swap entry */
77#define __swp_type(x) (((x).val >> 1) & 0x1f)
78#define __swp_offset(x) ((x).val >> 8)
79#define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) })
80#define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).pte_low })
Jeremy Fitzhardingec8e53932008-01-30 13:32:57 +010081#define __swp_entry_to_pte(x) ((pte_t) { .pte = (x).val })
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif /* _I386_PGTABLE_2LEVEL_H */