]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/avr32/include/asm/pgtable-2level.h
Merge tag 'efi-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into...
[mirror_ubuntu-artful-kernel.git] / arch / avr32 / include / asm / pgtable-2level.h
1 /*
2 * Copyright (C) 2004-2006 Atmel Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8 #ifndef __ASM_AVR32_PGTABLE_2LEVEL_H
9 #define __ASM_AVR32_PGTABLE_2LEVEL_H
10
11 #define __ARCH_USE_5LEVEL_HACK
12 #include <asm-generic/pgtable-nopmd.h>
13
14 /*
15 * Traditional 2-level paging structure
16 */
17 #define PGDIR_SHIFT 22
18 #define PTRS_PER_PGD 1024
19
20 #define PTRS_PER_PTE 1024
21
22 #ifndef __ASSEMBLY__
23 #define pte_ERROR(e) \
24 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
25 #define pgd_ERROR(e) \
26 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
27
28 /*
29 * Certain architectures need to do special things when PTEs
30 * within a page table are directly modified. Thus, the following
31 * hook is made available.
32 */
33 #define set_pte(pteptr, pteval) (*(pteptr) = pteval)
34 #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep, pteval)
35
36 /*
37 * (pmds are folded into pgds so this doesn't get actually called,
38 * but the define is needed for a generic inline function.)
39 */
40 #define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
41
42 #define pte_pfn(x) ((unsigned long)(((x).pte >> PAGE_SHIFT)))
43 #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
44 #define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
45
46 #endif /* !__ASSEMBLY__ */
47
48 #endif /* __ASM_AVR32_PGTABLE_2LEVEL_H */