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

Function print_keylocker

util/inteltool/cpu.c:299–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299void print_keylocker(void)
300{
301#ifndef __DARWIN__
302 int keylocker_supported = is_keylocker_supported();
303
304 printf("\n============= Dumping INTEL Key Locker status =============\n");
305
306 printf("Key Locker supported : %s\n", keylocker_supported ? "YES" : "NO");
307
308 if (keylocker_supported) {
309 printf("AESKL instructions enabled : %s\n", is_aeskl_enabled() ? "YES" : "NO");
310 }
311 printf("===========================================================\n");
312#else
313 printf("Not Implemented\n");
314#endif
315}
316
317int print_intel_msrs(unsigned int range_start, unsigned int range_end)
318{

Callers 1

inteltool.cFile · 0.85

Calls 3

printfFunction · 0.85
is_aeskl_enabledFunction · 0.85
is_keylocker_supportedFunction · 0.70

Tested by

no test coverage detected