2008-06-18 17:08:48 +02:00
|
|
|
#ifndef ASM_X86__PAT_H
|
|
|
|
#define ASM_X86__PAT_H
|
2008-03-19 01:00:14 +01:00
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2008-05-08 09:18:43 +02:00
|
|
|
#ifdef CONFIG_X86_PAT
|
2008-06-10 16:06:21 +02:00
|
|
|
extern int pat_enabled;
|
2008-05-08 09:18:43 +02:00
|
|
|
extern void validate_pat_support(struct cpuinfo_x86 *c);
|
|
|
|
#else
|
2008-06-10 16:06:21 +02:00
|
|
|
static const int pat_enabled;
|
2008-05-08 09:18:43 +02:00
|
|
|
static inline void validate_pat_support(struct cpuinfo_x86 *c) { }
|
|
|
|
#endif
|
2008-03-19 01:00:14 +01:00
|
|
|
|
|
|
|
extern void pat_init(void);
|
|
|
|
|
|
|
|
extern int reserve_memtype(u64 start, u64 end,
|
|
|
|
unsigned long req_type, unsigned long *ret_type);
|
|
|
|
extern int free_memtype(u64 start, u64 end);
|
|
|
|
|
2008-05-08 09:18:43 +02:00
|
|
|
extern void pat_disable(char *reason);
|
|
|
|
|
2008-06-18 17:08:48 +02:00
|
|
|
#endif /* ASM_X86__PAT_H */
|