Merge branch 'linus' into irq/genirq
[sfrench/cifs-2.6.git] / arch / powerpc / include / asm / page_32.h
1 #ifndef _ASM_POWERPC_PAGE_32_H
2 #define _ASM_POWERPC_PAGE_32_H
3
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
10 #define VM_DATA_DEFAULT_FLAGS   VM_DATA_DEFAULT_FLAGS32
11
12 #ifdef CONFIG_NOT_COHERENT_CACHE
13 #define ARCH_KMALLOC_MINALIGN   L1_CACHE_BYTES
14 #endif
15
16 #ifdef CONFIG_PTE_64BIT
17 #define PTE_FLAGS_OFFSET        4       /* offset of PTE flags, in bytes */
18 #else
19 #define PTE_FLAGS_OFFSET        0
20 #endif
21
22 #define PTE_SHIFT       (PAGE_SHIFT - PTE_T_LOG2)       /* full page */
23
24 #ifndef __ASSEMBLY__
25 /*
26  * The basic type of a PTE - 64 bits for those CPUs with > 32 bit
27  * physical addressing.
28  */
29 #ifdef CONFIG_PTE_64BIT
30 typedef unsigned long long pte_basic_t;
31 #else
32 typedef unsigned long pte_basic_t;
33 #endif
34
35 struct page;
36 extern void clear_pages(void *page, int order);
37 static inline void clear_page(void *page) { clear_pages(page, 0); }
38 extern void copy_page(void *to, void *from);
39
40 #include <asm-generic/page.h>
41
42 #define PGD_T_LOG2      (__builtin_ffs(sizeof(pgd_t)) - 1)
43 #define PTE_T_LOG2      (__builtin_ffs(sizeof(pte_t)) - 1)
44
45 #endif /* __ASSEMBLY__ */
46
47 #endif /* _ASM_POWERPC_PAGE_32_H */