Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:sev_status
(Results
1 - 14
of
14
) sorted by relevance
/kernel/linux/linux-6.6/arch/x86/coco/
H
A
D
core.c
65
if (
sev_status
& MSR_AMD64_SNP_VTOM)
in amd_cc_platform_has()
73
return sme_me_mask && !(
sev_status
& MSR_AMD64_SEV_ENABLED);
in amd_cc_platform_has()
76
return
sev_status
& MSR_AMD64_SEV_ENABLED;
in amd_cc_platform_has()
79
return
sev_status
& MSR_AMD64_SEV_ES_ENABLED;
in amd_cc_platform_has()
86
return (
sev_status
& MSR_AMD64_SEV_ENABLED) &&
in amd_cc_platform_has()
87
!(
sev_status
& MSR_AMD64_SEV_ES_ENABLED);
in amd_cc_platform_has()
90
return
sev_status
& MSR_AMD64_SEV_SNP_ENABLED;
in amd_cc_platform_has()
124
if (
sev_status
& MSR_AMD64_SNP_VTOM)
in cc_mkenc()
140
if (
sev_status
& MSR_AMD64_SNP_VTOM)
in cc_mkdec()
/kernel/linux/linux-5.10/arch/x86/kernel/
H
A
D
cc_platform.c
45
return sme_me_mask && !(
sev_status
& MSR_AMD64_SEV_ENABLED);
in amd_cc_platform_has()
48
return
sev_status
& MSR_AMD64_SEV_ENABLED;
in amd_cc_platform_has()
51
return
sev_status
& MSR_AMD64_SEV_ES_ENABLED;
in amd_cc_platform_has()
/kernel/linux/linux-6.6/arch/x86/boot/compressed/
H
A
D
sev.c
130
return
sev_status
& MSR_AMD64_SEV_SNP_ENABLED;
in sev_snp_enabled()
398
unsupported = snp_get_unsupported_features(
sev_status
);
in snp_check_features()
486
sev_status
= m.q;
in sev_enable()
487
if (!(
sev_status
& MSR_AMD64_SEV_ENABLED))
in sev_enable()
491
if (
sev_status
& MSR_AMD64_SEV_ES_ENABLED) {
in sev_enable()
500
if (
sev_status
& MSR_AMD64_SEV_SNP_ENABLED) {
in sev_enable()
507
if (snp && !(
sev_status
& MSR_AMD64_SEV_SNP_ENABLED))
in sev_enable()
H
A
D
idt_64.c
71
if (
sev_status
& BIT(1))
in load_stage2_idt()
H
A
D
head_64.S
190
* Set MSR_AMD64_SEV_ENABLED_BIT in
sev_status
so that
192
* initialize
sev_status
with all the bits reported by
196
movl $1, rva(
sev_status
)(%ebp)
/kernel/linux/linux-6.6/arch/x86/include/asm/
H
A
D
mem_encrypt.h
29
extern u64
sev_status
;
65
#define
sev_status
0ULL
macro
/kernel/linux/linux-5.10/arch/x86/mm/
H
A
D
mem_encrypt.c
42
u64
sev_status
__section(".data") = 0;
353
return
sev_status
& MSR_AMD64_SEV_ENABLED;
in sev_active()
360
return
sev_status
& MSR_AMD64_SEV_ES_ENABLED;
in sev_es_active()
H
A
D
mem_encrypt_identity.c
534
sev_status
= __rdmsr(MSR_AMD64_SEV);
in sme_enable()
535
feature_mask = (
sev_status
& MSR_AMD64_SEV_ENABLED) ? AMD_SEV_BIT : AMD_SME_BIT;
in sme_enable()
/kernel/linux/linux-6.6/arch/x86/mm/
H
A
D
mem_encrypt_amd.c
47
u64
sev_status
__section(".data") = 0;
519
if (
sev_status
& MSR_AMD64_SEV_ES_ENABLED)
in sme_early_init()
529
if (
sev_status
& MSR_AMD64_SEV_ENABLED)
in sme_early_init()
H
A
D
mem_encrypt_identity.c
308
if (!sme_get_me_mask() ||
sev_status
& MSR_AMD64_SEV_ENABLED)
in sme_encrypt_kernel()
545
sev_status
= __rdmsr(MSR_AMD64_SEV);
in sme_enable()
546
feature_mask = (
sev_status
& MSR_AMD64_SEV_ENABLED) ? AMD_SEV_BIT : AMD_SME_BIT;
in sme_enable()
549
if (snp && !(
sev_status
& MSR_AMD64_SEV_SNP_ENABLED))
in sme_enable()
/kernel/linux/linux-5.10/arch/x86/include/asm/
H
A
D
mem_encrypt.h
23
extern u64
sev_status
;
/kernel/linux/linux-6.6/arch/x86/hyperv/
H
A
D
ivm.c
338
vmsa->sev_features =
sev_status
>> 2;
in hv_snp_boot_ap()
584
* so SEV initialization is bypassed and
sev_status
isn't set.
in hv_vtom_init()
587
* Note: if CONFIG_AMD_MEM_ENCRYPT is not set,
sev_status
is
in hv_vtom_init()
592
sev_status
= MSR_AMD64_SNP_VTOM;
in hv_vtom_init()
/kernel/linux/linux-5.10/arch/x86/boot/compressed/
H
A
D
head_64.S
181
* Mark SEV as active in
sev_status
so that startup32_check_sev_cbit()
182
* will do a check. The
sev_status
memory will be fully initialized
187
movl $1, rva(
sev_status
)(%ebp)
844
/* Check for non-zero
sev_status
*/
845
movl rva(
sev_status
)(%ebp), %eax
/kernel/linux/linux-6.6/arch/x86/kernel/
H
A
D
sev.c
751
if (!(
sev_status
& MSR_AMD64_SEV_SNP_ENABLED))
in early_snp_set_memory_private()
770
if (!(
sev_status
& MSR_AMD64_SEV_SNP_ENABLED))
in early_snp_set_memory_shared()
1067
vmsa->sev_features =
sev_status
>> 2;
in wakeup_cpu_via_vmgexit()
1610
if (
sev_status
& MSR_AMD64_SNP_DEBUG_SWAP)
in vc_handle_dr7_write()
1650
if (
sev_status
& MSR_AMD64_SNP_DEBUG_SWAP)
in vc_handle_dr7_read()
Completed in 10 milliseconds