blob: f9941caf22d50e249a43d7cbd9396d485481a439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* Check current exception level on ARMv8.
*/
#include <efi_loader.h>
#include <efi_selftest.h>
/**
* current_exception_level()
*
* Return: current exception level, 0 - 3
*/
static unsigned int current_exception_level(void)
{
unsigned long el;
asm volatile (
"MRS %0, CurrentEL"
: "=r" (el) : : );
return (el >> 2) & 0x3;
}
/**
* execute() - execute test
*
* Check that the exception level is not EL3.
*/
static int execute(void)
{
unsigned int el = current_exception_level();
efi_st_printf("Exception level EL%u\n", el);
if (el != 1 && el != 2) {
efi_st_error("EL1 or EL2 expected");
return EFI_ST_FAILURE;
}
return EFI_ST_SUCCESS;
}
EFI_UNIT_TEST(el) = {
.name = "exception level",
.phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
.execute = execute,
};
|