mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
crypto: ccp - Add a header for multiple drivers to use __psp_pa
The TEE subdriver for CCP, the amdtee driver and the i2c-designware-amdpsp drivers all include `psp-sev.h` even though they don't use SEV functionality. Move the definition of `__psp_pa` into a common header to be included by all of these drivers. Reviewed-by: Jan Dabros <jsd@semihalf.com> Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> # For the drivers/i2c/busses/i2c-designware-amdpsp.c Acked-by: Sumit Garg <sumit.garg@linaro.org> # For TEE subsystem bits Acked-by: Tom Lendacky <thomas.lendacky@amd.com> Acked-by: Sean Christopherson <seanjc@google.com> # KVM Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
committed by
Herbert Xu
parent
a7ca7bbdb5
commit
ae7d45fb7c
14
include/linux/psp.h
Normal file
14
include/linux/psp.h
Normal file
@@ -0,0 +1,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 */
|
||||
Reference in New Issue
Block a user