MCPcopy Create free account
hub / github.com/coreboot/coreboot / is_aeskl_enabled

Function is_aeskl_enabled

util/inteltool/cpu.c:290–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288}
289
290static bool is_aeskl_enabled(void)
291{
292 cpuid_result_t cpuid_regs;
293
294 /* CPUID leaf 0x19 subleaf 0x0 to detect details of Intel Key Locker feature */
295 cpuid_regs = cpuid_ext(CPUID_KEYLOCKER_FEATURE_FLAGS, 0x0);
296 return (cpuid_regs.ebx & KEYLOCKER_AESKL);
297}
298
299void print_keylocker(void)
300{

Callers 1

print_keylockerFunction · 0.85

Calls 1

cpuid_extFunction · 0.70

Tested by

no test coverage detected