ACPI / LPSS: Make acpi_lpss_find_device() also find PCI devices
[linux/fpc-iii.git] / arch / x86 / include / asm / mem_encrypt.h
blobc0643831706e12aaf490c709dbedc428d2bc75f4
1 /*
2 * AMD Memory Encryption Support
4 * Copyright (C) 2016 Advanced Micro Devices, Inc.
6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #ifndef __X86_MEM_ENCRYPT_H__
14 #define __X86_MEM_ENCRYPT_H__
16 #ifndef __ASSEMBLY__
18 #include <linux/init.h>
20 #include <asm/bootparam.h>
22 #ifdef CONFIG_AMD_MEM_ENCRYPT
24 extern u64 sme_me_mask;
25 extern bool sev_enabled;
27 void sme_encrypt_execute(unsigned long encrypted_kernel_vaddr,
28 unsigned long decrypted_kernel_vaddr,
29 unsigned long kernel_len,
30 unsigned long encryption_wa,
31 unsigned long encryption_pgd);
33 void __init sme_early_encrypt(resource_size_t paddr,
34 unsigned long size);
35 void __init sme_early_decrypt(resource_size_t paddr,
36 unsigned long size);
38 void __init sme_map_bootdata(char *real_mode_data);
39 void __init sme_unmap_bootdata(char *real_mode_data);
41 void __init sme_early_init(void);
43 void __init sme_encrypt_kernel(struct boot_params *bp);
44 void __init sme_enable(struct boot_params *bp);
46 int __init early_set_memory_decrypted(unsigned long vaddr, unsigned long size);
47 int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size);
49 /* Architecture __weak replacement functions */
50 void __init mem_encrypt_init(void);
52 bool sme_active(void);
53 bool sev_active(void);
55 #else /* !CONFIG_AMD_MEM_ENCRYPT */
57 #define sme_me_mask 0ULL
59 static inline void __init sme_early_encrypt(resource_size_t paddr,
60 unsigned long size) { }
61 static inline void __init sme_early_decrypt(resource_size_t paddr,
62 unsigned long size) { }
64 static inline void __init sme_map_bootdata(char *real_mode_data) { }
65 static inline void __init sme_unmap_bootdata(char *real_mode_data) { }
67 static inline void __init sme_early_init(void) { }
69 static inline void __init sme_encrypt_kernel(struct boot_params *bp) { }
70 static inline void __init sme_enable(struct boot_params *bp) { }
72 static inline bool sme_active(void) { return false; }
73 static inline bool sev_active(void) { return false; }
75 static inline int __init
76 early_set_memory_decrypted(unsigned long vaddr, unsigned long size) { return 0; }
77 static inline int __init
78 early_set_memory_encrypted(unsigned long vaddr, unsigned long size) { return 0; }
80 #endif /* CONFIG_AMD_MEM_ENCRYPT */
83 * The __sme_pa() and __sme_pa_nodebug() macros are meant for use when
84 * writing to or comparing values from the cr3 register. Having the
85 * encryption mask set in cr3 enables the PGD entry to be encrypted and
86 * avoid special case handling of PGD allocations.
88 #define __sme_pa(x) (__pa(x) | sme_me_mask)
89 #define __sme_pa_nodebug(x) (__pa_nodebug(x) | sme_me_mask)
91 #endif /* __ASSEMBLY__ */
93 #endif /* __X86_MEM_ENCRYPT_H__ */