page_32.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef _ASM_POWERPC_PAGE_32_H
  2. #define _ASM_POWERPC_PAGE_32_H
  3. #include <asm/cache.h>
  4. #if defined(CONFIG_PHYSICAL_ALIGN) && (CONFIG_PHYSICAL_START != 0)
  5. #if (CONFIG_PHYSICAL_START % CONFIG_PHYSICAL_ALIGN) != 0
  6. #error "CONFIG_PHYSICAL_START must be a multiple of CONFIG_PHYSICAL_ALIGN"
  7. #endif
  8. #endif
  9. #define VM_DATA_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS32
  10. #ifdef CONFIG_NOT_COHERENT_CACHE
  11. #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
  12. #endif
  13. #ifdef CONFIG_PTE_64BIT
  14. #define PTE_FLAGS_OFFSET 4 /* offset of PTE flags, in bytes */
  15. #else
  16. #define PTE_FLAGS_OFFSET 0
  17. #endif
  18. #ifdef CONFIG_PPC_256K_PAGES
  19. #define PTE_SHIFT (PAGE_SHIFT - PTE_T_LOG2 - 2) /* 1/4 of a page */
  20. #else
  21. #define PTE_SHIFT (PAGE_SHIFT - PTE_T_LOG2) /* full page */
  22. #endif
  23. #ifndef __ASSEMBLY__
  24. /*
  25. * The basic type of a PTE - 64 bits for those CPUs with > 32 bit
  26. * physical addressing.
  27. */
  28. #ifdef CONFIG_PTE_64BIT
  29. typedef unsigned long long pte_basic_t;
  30. #else
  31. typedef unsigned long pte_basic_t;
  32. #endif
  33. /*
  34. * Clear page using the dcbz instruction, which doesn't cause any
  35. * memory traffic (except to write out any cache lines which get
  36. * displaced). This only works on cacheable memory.
  37. */
  38. static inline void clear_page(void *addr)
  39. {
  40. unsigned int i;
  41. for (i = 0; i < PAGE_SIZE / L1_CACHE_BYTES; i++, addr += L1_CACHE_BYTES)
  42. dcbz(addr);
  43. }
  44. extern void copy_page(void *to, void *from);
  45. #include <asm-generic/getorder.h>
  46. #define PGD_T_LOG2 (__builtin_ffs(sizeof(pgd_t)) - 1)
  47. #define PTE_T_LOG2 (__builtin_ffs(sizeof(pte_t)) - 1)
  48. #endif /* __ASSEMBLY__ */
  49. #endif /* _ASM_POWERPC_PAGE_32_H */