Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_PGALLOC_H |
| 2 | #define _ASM_POWERPC_PGALLOC_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 3 | #ifdef __KERNEL__ |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 4 | |
Kumar Gala | 0186f47 | 2008-11-19 12:50:04 +0000 | [diff] [blame] | 5 | #include <linux/mm.h> |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 6 | #include <asm-generic/tlb.h> |
Kumar Gala | 0186f47 | 2008-11-19 12:50:04 +0000 | [diff] [blame] | 7 | |
Benjamin Herrenschmidt | c7cc58a1 | 2009-07-23 23:15:28 +0000 | [diff] [blame] | 8 | #ifdef CONFIG_PPC_BOOK3E |
| 9 | extern void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address); |
| 10 | #else /* CONFIG_PPC_BOOK3E */ |
| 11 | static inline void tlb_flush_pgtable(struct mmu_gather *tlb, |
| 12 | unsigned long address) |
| 13 | { |
| 14 | } |
| 15 | #endif /* !CONFIG_PPC_BOOK3E */ |
| 16 | |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 17 | #ifdef CONFIG_PPC64 |
| 18 | #include <asm/pgalloc-64.h> |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 19 | #else |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 20 | #include <asm/pgalloc-32.h> |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 21 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 23 | #endif /* __KERNEL__ */ |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 24 | #endif /* _ASM_POWERPC_PGALLOC_H */ |