1 #ifndef _ASM_X86_PAGE_32_H
2 #define _ASM_X86_PAGE_32_H
4 #include <asm/page_32_types.h>
8 #define __phys_addr_nodebug(x) ((x) - PAGE_OFFSET)
9 #ifdef CONFIG_DEBUG_VIRTUAL
10 extern unsigned long __phys_addr(unsigned long);
12 #define __phys_addr(x) __phys_addr_nodebug(x)
14 #define __phys_addr_symbol(x) __phys_addr(x)
15 #define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
18 #define pfn_valid(pfn) ((pfn) < max_mapnr)
19 #endif /* CONFIG_FLATMEM */
21 #ifdef CONFIG_X86_USE_3DNOW
24 static inline void clear_page(void *page
)
29 static inline void copy_page(void *to
, void *from
)
31 mmx_copy_page(to
, from
);
33 #else /* !CONFIG_X86_USE_3DNOW */
34 #include <linux/string.h>
36 static inline void clear_page(void *page
)
38 memset(page
, 0, PAGE_SIZE
);
41 static inline void copy_page(void *to
, void *from
)
43 memcpy(to
, from
, PAGE_SIZE
);
45 #endif /* CONFIG_X86_3DNOW */
46 #endif /* !__ASSEMBLY__ */
48 #endif /* _ASM_X86_PAGE_32_H */