1 /* SPDX-License-Identifier: GPL-2.0 */
3 * AMD Encrypted Register State Support
8 #ifndef __ASM_ENCRYPTED_STATE_H
9 #define __ASM_ENCRYPTED_STATE_H
11 #include <linux/types.h>
12 #include <linux/sev-guest.h>
15 #include <asm/sev-common.h>
16 #include <asm/bootparam.h>
19 #define GHCB_PROTOCOL_MIN 1ULL
20 #define GHCB_PROTOCOL_MAX 2ULL
21 #define GHCB_DEFAULT_USAGE 0ULL
23 #define VMGEXIT() { asm volatile("rep; vmmcall\n\r"); }
27 ES_UNSUPPORTED, /* Requested operation not supported */
28 ES_VMM_ERROR, /* Unexpected state from the VMM */
29 ES_DECODE_FAILED, /* Instruction decoding failed */
30 ES_EXCEPTION, /* Instruction caused exception */
31 ES_RETRY, /* Retry instruction emulation */
34 struct es_fault_info {
36 unsigned long error_code;
42 /* ES instruction emulation context */
46 struct es_fault_info fi;
50 * AMD SEV Confidential computing blob structure. The structure is
51 * defined in OVMF UEFI firmware header:
52 * https://github.com/tianocore/edk2/blob/master/OvmfPkg/Include/Guid/ConfidentialComputingSevSnpBlob.h
54 #define CC_BLOB_SEV_HDR_MAGIC 0x45444d41
55 struct cc_blob_sev_info {
67 void do_vc_no_ghcb(struct pt_regs *regs, unsigned long exit_code);
69 static inline u64 lower_bits(u64 val, unsigned int bits)
71 u64 mask = (1ULL << bits) - 1;
76 struct real_mode_header;
79 /* Early IDT entry points for #VC handler */
80 extern void vc_no_ghcb(void);
81 extern void vc_boot_ghcb(void);
82 extern bool handle_vc_boot_ghcb(struct pt_regs *regs);
84 /* PVALIDATE return codes */
85 #define PVALIDATE_FAIL_SIZEMISMATCH 6
87 /* Software defined (when rFlags.CF = 1) */
88 #define PVALIDATE_FAIL_NOUPDATE 255
91 #define RMP_PG_SIZE_4K 0
92 #define RMP_PG_SIZE_2M 1
94 #define RMPADJUST_VMSA_PAGE_BIT BIT(16)
96 /* SNP Guest message request */
98 unsigned long req_gpa;
99 unsigned long resp_gpa;
100 unsigned long data_gpa;
101 unsigned int data_npages;
104 struct sev_guest_platform_data {
109 * The secrets page contains 96-bytes of reserved field that can be used by
110 * the guest OS. The guest OS uses the area to save the message sequence
111 * number for each VMPCK.
113 * See the GHCB spec section Secret page layout for the format for this area.
115 struct secrets_os_area {
120 u64 ap_jump_table_pa;
125 #define VMPCK_KEY_LEN 32
127 /* See the SNP spec version 0.9 for secrets page format */
128 struct snp_secrets_page_layout {
135 u8 vmpck0[VMPCK_KEY_LEN];
136 u8 vmpck1[VMPCK_KEY_LEN];
137 u8 vmpck2[VMPCK_KEY_LEN];
138 u8 vmpck3[VMPCK_KEY_LEN];
139 struct secrets_os_area os_area;
143 #ifdef CONFIG_AMD_MEM_ENCRYPT
144 extern void __sev_es_ist_enter(struct pt_regs *regs);
145 extern void __sev_es_ist_exit(void);
146 static __always_inline void sev_es_ist_enter(struct pt_regs *regs)
148 if (cc_vendor == CC_VENDOR_AMD &&
149 cc_platform_has(CC_ATTR_GUEST_STATE_ENCRYPT))
150 __sev_es_ist_enter(regs);
152 static __always_inline void sev_es_ist_exit(void)
154 if (cc_vendor == CC_VENDOR_AMD &&
155 cc_platform_has(CC_ATTR_GUEST_STATE_ENCRYPT))
158 extern int sev_es_setup_ap_jump_table(struct real_mode_header *rmh);
159 extern void __sev_es_nmi_complete(void);
160 static __always_inline void sev_es_nmi_complete(void)
162 if (cc_vendor == CC_VENDOR_AMD &&
163 cc_platform_has(CC_ATTR_GUEST_STATE_ENCRYPT))
164 __sev_es_nmi_complete();
166 extern int __init sev_es_efi_map_ghcbs(pgd_t *pgd);
168 static inline int rmpadjust(unsigned long vaddr, bool rmp_psize, unsigned long attrs)
172 /* "rmpadjust" mnemonic support in binutils 2.36 and newer */
173 asm volatile(".byte 0xF3,0x0F,0x01,0xFE\n\t"
175 : "a"(vaddr), "c"(rmp_psize), "d"(attrs)
180 static inline int pvalidate(unsigned long vaddr, bool rmp_psize, bool validate)
185 /* "pvalidate" mnemonic support in binutils 2.36 and newer */
186 asm volatile(".byte 0xF2, 0x0F, 0x01, 0xFF\n\t"
188 : CC_OUT(c) (no_rmpupdate), "=a"(rc)
189 : "a"(vaddr), "c"(rmp_psize), "d"(validate)
193 return PVALIDATE_FAIL_NOUPDATE;
198 struct snp_guest_request_ioctl;
200 void setup_ghcb(void);
201 void __init early_snp_set_memory_private(unsigned long vaddr, unsigned long paddr,
202 unsigned long npages);
203 void __init early_snp_set_memory_shared(unsigned long vaddr, unsigned long paddr,
204 unsigned long npages);
205 void __init snp_prep_memory(unsigned long paddr, unsigned int sz, enum psc_op op);
206 void snp_set_memory_shared(unsigned long vaddr, unsigned long npages);
207 void snp_set_memory_private(unsigned long vaddr, unsigned long npages);
208 void snp_set_wakeup_secondary_cpu(void);
209 bool snp_init(struct boot_params *bp);
210 void __init __noreturn snp_abort(void);
211 int snp_issue_guest_request(u64 exit_code, struct snp_req_data *input, struct snp_guest_request_ioctl *rio);
212 void snp_accept_memory(phys_addr_t start, phys_addr_t end);
214 static inline void sev_es_ist_enter(struct pt_regs *regs) { }
215 static inline void sev_es_ist_exit(void) { }
216 static inline int sev_es_setup_ap_jump_table(struct real_mode_header *rmh) { return 0; }
217 static inline void sev_es_nmi_complete(void) { }
218 static inline int sev_es_efi_map_ghcbs(pgd_t *pgd) { return 0; }
219 static inline int pvalidate(unsigned long vaddr, bool rmp_psize, bool validate) { return 0; }
220 static inline int rmpadjust(unsigned long vaddr, bool rmp_psize, unsigned long attrs) { return 0; }
221 static inline void setup_ghcb(void) { }
222 static inline void __init
223 early_snp_set_memory_private(unsigned long vaddr, unsigned long paddr, unsigned long npages) { }
224 static inline void __init
225 early_snp_set_memory_shared(unsigned long vaddr, unsigned long paddr, unsigned long npages) { }
226 static inline void __init snp_prep_memory(unsigned long paddr, unsigned int sz, enum psc_op op) { }
227 static inline void snp_set_memory_shared(unsigned long vaddr, unsigned long npages) { }
228 static inline void snp_set_memory_private(unsigned long vaddr, unsigned long npages) { }
229 static inline void snp_set_wakeup_secondary_cpu(void) { }
230 static inline bool snp_init(struct boot_params *bp) { return false; }
231 static inline void snp_abort(void) { }
232 static inline int snp_issue_guest_request(u64 exit_code, struct snp_req_data *input, struct snp_guest_request_ioctl *rio)
237 static inline void snp_accept_memory(phys_addr_t start, phys_addr_t end) { }