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

Function print_tme

util/inteltool/cpu.c:255–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253}
254
255void print_tme(void)
256{
257#ifndef __DARWIN__
258 int tme_supported = is_tme_supported();
259
260 printf("\n============= Dumping INTEL TME status =============\n");
261
262 printf("TME supported : %s\n", tme_supported ? "YES" : "NO");
263
264 if (tme_supported) {
265 printf("TME locked : %s\n", is_tme_locked() ? "YES" : "NO");
266 printf("TME enabled : %s\n", is_tme_enabled() ? "YES" : "NO");
267 }
268 printf("====================================================\n");
269#else
270 printf("Not Implemented\n");
271#endif
272}
273
274static bool is_keylocker_supported(void)
275{

Callers 1

inteltool.cFile · 0.85

Calls 4

printfFunction · 0.85
is_tme_lockedFunction · 0.85
is_tme_enabledFunction · 0.85
is_tme_supportedFunction · 0.70

Tested by

no test coverage detected