2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-07-06 15:35:52 -07: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-25 17:11:34 -07: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-14 19:10:35 -08:00
|
|
|
|
|
|
|
static inline bool kernel_page_present(struct page *page)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-07 18:07:59 -07: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-25 17:11:34 -07:00
|
|
|
#endif
|
2021-07-07 18:07:59 -07:00
|
|
|
#endif /* CONFIG_ARCH_HAS_SET_DIRECT_MAP */
|
2019-04-25 17:11:34 -07:00
|
|
|
|
2022-05-16 11:21:46 -07:00
|
|
|
#ifdef CONFIG_X86_64
|
2022-05-16 11:38:10 -07:00
|
|
|
int set_mce_nospec(unsigned long pfn);
|
2022-05-16 11:21:46 -07:00
|
|
|
int clear_mce_nospec(unsigned long pfn);
|
|
|
|
#else
|
2022-05-16 11:38:10 -07:00
|
|
|
static inline int set_mce_nospec(unsigned long pfn)
|
2018-07-13 21:50:32 -07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline int clear_mce_nospec(unsigned long pfn)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-03-19 11:38:22 +01: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-06 15:35:52 -07:00
|
|
|
#endif /* _LINUX_SET_MEMORY_H_ */
|