• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * AMD Memory Encryption Support
4  *
5  * Copyright (C) 2016 Advanced Micro Devices, Inc.
6  *
7  * Author: Tom Lendacky <thomas.lendacky@amd.com>
8  */
9 
10 #ifndef __X86_MEM_ENCRYPT_H__
11 #define __X86_MEM_ENCRYPT_H__
12 
13 #ifndef __ASSEMBLY__
14 
15 #include <linux/init.h>
16 #include <linux/cc_platform.h>
17 
18 #include <asm/bootparam.h>
19 
20 #ifdef CONFIG_AMD_MEM_ENCRYPT
21 
22 extern u64 sme_me_mask;
23 extern u64 sev_status;
24 extern bool sev_enabled;
25 
26 void sme_encrypt_execute(unsigned long encrypted_kernel_vaddr,
27 			 unsigned long decrypted_kernel_vaddr,
28 			 unsigned long kernel_len,
29 			 unsigned long encryption_wa,
30 			 unsigned long encryption_pgd);
31 
32 void __init sme_early_encrypt(resource_size_t paddr,
33 			      unsigned long size);
34 void __init sme_early_decrypt(resource_size_t paddr,
35 			      unsigned long size);
36 
37 void __init sme_map_bootdata(char *real_mode_data);
38 void __init sme_unmap_bootdata(char *real_mode_data);
39 
40 void __init sme_early_init(void);
41 
42 void __init sme_encrypt_kernel(struct boot_params *bp);
43 void __init sme_enable(struct boot_params *bp);
44 
45 int __init early_set_memory_decrypted(unsigned long vaddr, unsigned long size);
46 int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size);
47 
48 void __init mem_encrypt_free_decrypted_mem(void);
49 
50 /* Architecture __weak replacement functions */
51 void __init mem_encrypt_init(void);
52 
53 void __init sev_es_init_vc_handling(void);
54 bool sme_active(void);
55 bool sev_active(void);
56 bool sev_es_active(void);
57 
58 #define __bss_decrypted __section(".bss..decrypted")
59 
60 #else	/* !CONFIG_AMD_MEM_ENCRYPT */
61 
62 #define sme_me_mask	0ULL
63 
sme_early_encrypt(resource_size_t paddr,unsigned long size)64 static inline void __init sme_early_encrypt(resource_size_t paddr,
65 					    unsigned long size) { }
sme_early_decrypt(resource_size_t paddr,unsigned long size)66 static inline void __init sme_early_decrypt(resource_size_t paddr,
67 					    unsigned long size) { }
68 
sme_map_bootdata(char * real_mode_data)69 static inline void __init sme_map_bootdata(char *real_mode_data) { }
sme_unmap_bootdata(char * real_mode_data)70 static inline void __init sme_unmap_bootdata(char *real_mode_data) { }
71 
sme_early_init(void)72 static inline void __init sme_early_init(void) { }
73 
sme_encrypt_kernel(struct boot_params * bp)74 static inline void __init sme_encrypt_kernel(struct boot_params *bp) { }
sme_enable(struct boot_params * bp)75 static inline void __init sme_enable(struct boot_params *bp) { }
76 
sev_es_init_vc_handling(void)77 static inline void sev_es_init_vc_handling(void) { }
sme_active(void)78 static inline bool sme_active(void) { return false; }
sev_active(void)79 static inline bool sev_active(void) { return false; }
sev_es_active(void)80 static inline bool sev_es_active(void) { return false; }
81 
82 static inline int __init
early_set_memory_decrypted(unsigned long vaddr,unsigned long size)83 early_set_memory_decrypted(unsigned long vaddr, unsigned long size) { return 0; }
84 static inline int __init
early_set_memory_encrypted(unsigned long vaddr,unsigned long size)85 early_set_memory_encrypted(unsigned long vaddr, unsigned long size) { return 0; }
86 
mem_encrypt_free_decrypted_mem(void)87 static inline void mem_encrypt_free_decrypted_mem(void) { }
88 
89 #define __bss_decrypted
90 
91 #endif	/* CONFIG_AMD_MEM_ENCRYPT */
92 
93 /*
94  * The __sme_pa() and __sme_pa_nodebug() macros are meant for use when
95  * writing to or comparing values from the cr3 register.  Having the
96  * encryption mask set in cr3 enables the PGD entry to be encrypted and
97  * avoid special case handling of PGD allocations.
98  */
99 #define __sme_pa(x)		(__pa(x) | sme_me_mask)
100 #define __sme_pa_nodebug(x)	(__pa_nodebug(x) | sme_me_mask)
101 
102 extern char __start_bss_decrypted[], __end_bss_decrypted[], __start_bss_decrypted_unused[];
103 
mem_encrypt_active(void)104 static inline bool mem_encrypt_active(void)
105 {
106 	return sme_me_mask;
107 }
108 
sme_get_me_mask(void)109 static inline u64 sme_get_me_mask(void)
110 {
111 	return sme_me_mask;
112 }
113 
114 #endif	/* __ASSEMBLY__ */
115 
116 #endif	/* __X86_MEM_ENCRYPT_H__ */
117