ACPI / LPSS: Make acpi_lpss_find_device() also find PCI devices
[linux/fpc-iii.git] / arch / x86 / include / asm / page_32.h
blob94dbd51df58f826ca45291a07b8465d024efaa78
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_PAGE_32_H
3 #define _ASM_X86_PAGE_32_H
5 #include <asm/page_32_types.h>
7 #ifndef __ASSEMBLY__
9 #define __phys_addr_nodebug(x) ((x) - PAGE_OFFSET)
10 #ifdef CONFIG_DEBUG_VIRTUAL
11 extern unsigned long __phys_addr(unsigned long);
12 #else
13 #define __phys_addr(x) __phys_addr_nodebug(x)
14 #endif
15 #define __phys_addr_symbol(x) __phys_addr(x)
16 #define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
18 #ifdef CONFIG_FLATMEM
19 #define pfn_valid(pfn) ((pfn) < max_mapnr)
20 #endif /* CONFIG_FLATMEM */
22 #ifdef CONFIG_X86_USE_3DNOW
23 #include <asm/mmx.h>
25 static inline void clear_page(void *page)
27 mmx_clear_page(page);
30 static inline void copy_page(void *to, void *from)
32 mmx_copy_page(to, from);
34 #else /* !CONFIG_X86_USE_3DNOW */
35 #include <linux/string.h>
37 static inline void clear_page(void *page)
39 memset(page, 0, PAGE_SIZE);
42 static inline void copy_page(void *to, void *from)
44 memcpy(to, from, PAGE_SIZE);
46 #endif /* CONFIG_X86_3DNOW */
47 #endif /* !__ASSEMBLY__ */
49 #endif /* _ASM_X86_PAGE_32_H */