blob: 51f8134b5939393e66072a66935f642e7f322f55 [file] [log] [blame]
Michael Ellerman5cd16ee2005-11-11 14:25:24 +11001#ifndef _ASM_POWERPC_PAGE_32_H
2#define _ASM_POWERPC_PAGE_32_H
3
4#define VM_DATA_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS32
5
Benjamin Herrenschmidt52142e72007-11-19 19:25:06 +11006#ifdef CONFIG_NOT_COHERENT_CACHE
7#define ARCH_KMALLOC_MINALIGN L1_CACHE_BYTES
8#endif
9
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110010#ifndef __ASSEMBLY__
11/*
12 * The basic type of a PTE - 64 bits for those CPUs with > 32 bit
13 * physical addressing. For now this just the IBM PPC440.
14 */
15#ifdef CONFIG_PTE_64BIT
16typedef unsigned long long pte_basic_t;
17#define PTE_SHIFT (PAGE_SHIFT - 3) /* 512 ptes per page */
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110018#else
19typedef unsigned long pte_basic_t;
20#define PTE_SHIFT (PAGE_SHIFT - 2) /* 1024 ptes per page */
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110021#endif
22
23struct page;
24extern void clear_pages(void *page, int order);
25static inline void clear_page(void *page) { clear_pages(page, 0); }
26extern void copy_page(void *to, void *from);
27
David Howellsef55d532006-12-08 02:37:53 -080028#include <asm-generic/page.h>
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110029
30#endif /* __ASSEMBLY__ */
31
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110032#endif /* _ASM_POWERPC_PAGE_32_H */