pat.h 506 字节
Newer Older
1
#ifndef _ASM_PAT_H
2
#define _ASM_PAT_H
3 4 5

#include <linux/types.h>

6
#ifdef CONFIG_X86_PAT
7
extern int pat_wc_enabled;
8 9
extern void validate_pat_support(struct cpuinfo_x86 *c);
#else
10
static const int pat_wc_enabled;
11 12
static inline void validate_pat_support(struct cpuinfo_x86 *c) { }
#endif
13 14 15 16 17 18 19

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);

20 21
extern void pat_disable(char *reason);

22
#endif