mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 03:57:27 +07:00
88ba281108
Xen supports PAT without MTRRs for its guests. In order to enable WC attribute, it was necessary for xen_start_kernel() to call pat_init_cache_modes() to update PAT table before starting guest kernel. Now that the kernel initializes PAT table to the BIOS handoff state when MTRR is disabled, this Xen-specific PAT init code is no longer necessary. Delete it from xen_start_kernel(). Also change __init_cache_modes() to a static function since PAT table should not be tweaked by other modules. Signed-off-by: Toshi Kani <toshi.kani@hpe.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Juergen Gross <jgross@suse.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Borislav Petkov <bp@alien8.de> Cc: Borislav Petkov <bp@suse.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Luis R. Rodriguez <mcgrof@suse.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Toshi Kani <toshi.kani@hp.com> Cc: elliott@hpe.com Cc: paul.gortmaker@windriver.com Cc: xen-devel@lists.xenproject.org Link: http://lkml.kernel.org/r/1458769323-24491-7-git-send-email-toshi.kani@hpe.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
24 lines
641 B
C
24 lines
641 B
C
#ifndef _ASM_X86_PAT_H
|
|
#define _ASM_X86_PAT_H
|
|
|
|
#include <linux/types.h>
|
|
#include <asm/pgtable_types.h>
|
|
|
|
bool pat_enabled(void);
|
|
void pat_disable(const char *reason);
|
|
extern void pat_init(void);
|
|
|
|
extern int reserve_memtype(u64 start, u64 end,
|
|
enum page_cache_mode req_pcm, enum page_cache_mode *ret_pcm);
|
|
extern int free_memtype(u64 start, u64 end);
|
|
|
|
extern int kernel_map_sync_memtype(u64 base, unsigned long size,
|
|
enum page_cache_mode pcm);
|
|
|
|
int io_reserve_memtype(resource_size_t start, resource_size_t end,
|
|
enum page_cache_mode *pcm);
|
|
|
|
void io_free_memtype(resource_size_t start, resource_size_t end);
|
|
|
|
#endif /* _ASM_X86_PAT_H */
|