pgtable-2level.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. #include <asm-generic/pgtable-nopmd.h>
  11. /*
  12. * Traditional 2-level paging structure
  13. */
  14. #define PGDIR_SHIFT 22
  15. #define PTRS_PER_PGD 1024
  16. #define PTRS_PER_PTE 1024
  17. #ifndef __ASSEMBLY__
  18. #define pte_ERROR(e) \
  19. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
  20. #define pgd_ERROR(e) \
  21. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  22. /*
  23. * Certain architectures need to do special things when PTEs
  24. * within a page table are directly modified. Thus, the following
  25. * hook is made available.
  26. */
  27. #define set_pte(pteptr, pteval) (*(pteptr) = pteval)
  28. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep, pteval)
  29. /*
  30. * (pmds are folded into pgds so this doesn't get actually called,
  31. * but the define is needed for a generic inline function.)
  32. */
  33. #define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
  34. #define pte_pfn(x) ((unsigned long)(((x).pte >> PAGE_SHIFT)))
  35. #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  36. #define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  37. #endif /* !__ASSEMBLY__ */
  38. #endif /* __ASM_AVR32_PGTABLE_2LEVEL_H */