aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/psp.h
blob: 202162487ec3b95ce97ad9ba2a216af6df0c6ef4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __PSP_H
#define __PSP_H

#ifdef CONFIG_X86
#include <linux/mem_encrypt.h>

#define __psp_pa(x)	__sme_pa(x)
#else
#define __psp_pa(x)	__pa(x)
#endif

#endif /* __PSP_H */