blob: 5c4a18a91f898502e3eae8b5521999b245a27136 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tom Lendacky7744ccd2017-07-17 16:10:03 -05002/*
3 * AMD Memory Encryption Support
4 *
5 * Copyright (C) 2016 Advanced Micro Devices, Inc.
6 *
7 * Author: Tom Lendacky <thomas.lendacky@amd.com>
Tom Lendacky7744ccd2017-07-17 16:10:03 -05008 */
9
10#ifndef __MEM_ENCRYPT_H__
11#define __MEM_ENCRYPT_H__
12
13#ifndef __ASSEMBLY__
14
15#ifdef CONFIG_ARCH_HAS_MEM_ENCRYPT
16
17#include <asm/mem_encrypt.h>
18
19#else /* !CONFIG_ARCH_HAS_MEM_ENCRYPT */
20
Thiago Jung Bauermann284e21f2019-08-06 01:49:17 -030021static inline bool mem_encrypt_active(void) { return false; }
Tom Lendackyd8aa7ee2017-10-20 09:30:44 -050022
Tom Lendacky7744ccd2017-07-17 16:10:03 -050023#endif /* CONFIG_ARCH_HAS_MEM_ENCRYPT */
24
Borislav Petkov21d9bb42017-09-07 11:38:37 +020025#ifdef CONFIG_AMD_MEM_ENCRYPT
Tom Lendacky21729f82017-07-17 16:10:07 -050026/*
27 * The __sme_set() and __sme_clr() macros are useful for adding or removing
28 * the encryption mask from a value (e.g. when dealing with pagetable
29 * entries).
30 */
Borislav Petkov21d9bb42017-09-07 11:38:37 +020031#define __sme_set(x) ((x) | sme_me_mask)
32#define __sme_clr(x) ((x) & ~sme_me_mask)
33#else
34#define __sme_set(x) (x)
35#define __sme_clr(x) (x)
36#endif
Tom Lendacky21729f82017-07-17 16:10:07 -050037
Tom Lendacky7744ccd2017-07-17 16:10:03 -050038#endif /* __ASSEMBLY__ */
39
40#endif /* __MEM_ENCRYPT_H__ */