2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-07-07 01:35:52 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2017, Michael Ellerman, IBM Corporation.
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_SET_MEMORY_H_
|
|
|
|
#define _LINUX_SET_MEMORY_H_
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_HAS_SET_MEMORY
|
|
|
|
#include <asm/set_memory.h>
|
|
|
|
#else
|
|
|
|
static inline int set_memory_ro(unsigned long addr, int numpages) { return 0; }
|
|
|
|
static inline int set_memory_rw(unsigned long addr, int numpages) { return 0; }
|
|
|
|
static inline int set_memory_x(unsigned long addr, int numpages) { return 0; }
|
|
|
|
static inline int set_memory_nx(unsigned long addr, int numpages) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2019-04-26 03:11:34 +03:00
|
|
|
#ifndef CONFIG_ARCH_HAS_SET_DIRECT_MAP
|
|
|
|
static inline int set_direct_map_invalid_noflush(struct page *page)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline int set_direct_map_default_noflush(struct page *page)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-15 06:10:35 +03:00
|
|
|
|
|
|
|
static inline bool kernel_page_present(struct page *page)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-08 04:07:59 +03:00
|
|
|
#else /* CONFIG_ARCH_HAS_SET_DIRECT_MAP */
|
|
|
|
/*
|
|
|
|
* Some architectures, e.g. ARM64 can disable direct map modifications at
|
|
|
|
* boot time. Let them overrive this query.
|
|
|
|
*/
|
|
|
|
#ifndef can_set_direct_map
|
|
|
|
static inline bool can_set_direct_map(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#define can_set_direct_map can_set_direct_map
|
2019-04-26 03:11:34 +03:00
|
|
|
#endif
|
2021-07-08 04:07:59 +03:00
|
|
|
#endif /* CONFIG_ARCH_HAS_SET_DIRECT_MAP */
|
2019-04-26 03:11:34 +03:00
|
|
|
|
2022-05-16 21:21:46 +03:00
|
|
|
#ifdef CONFIG_X86_64
|
2022-05-16 21:38:10 +03:00
|
|
|
int set_mce_nospec(unsigned long pfn);
|
2022-05-16 21:21:46 +03:00
|
|
|
int clear_mce_nospec(unsigned long pfn);
|
|
|
|
#else
|
2022-05-16 21:38:10 +03:00
|
|
|
static inline int set_mce_nospec(unsigned long pfn)
|
2018-07-14 07:50:32 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline int clear_mce_nospec(unsigned long pfn)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-03-19 13:38:22 +03:00
|
|
|
#ifndef CONFIG_ARCH_HAS_MEM_ENCRYPT
|
|
|
|
static inline int set_memory_encrypted(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int set_memory_decrypted(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_ARCH_HAS_MEM_ENCRYPT */
|
|
|
|
|
2017-07-07 01:35:52 +03:00
|
|
|
#endif /* _LINUX_SET_MEMORY_H_ */
|