iPXE
sbi.h
Go to the documentation of this file.
1 #ifndef CONFIG_DEFAULTS_SBI_H
2 #define CONFIG_DEFAULTS_SBI_H
3 
4 /** @file
5  *
6  * Configuration defaults for RISC-V SBI
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 #define IOAPI_RISCV
13 #define IOMAP_VIRT
14 #define DMAAPI_FLAT
15 #define UACCESS_FLAT
16 #define TIMER_ZICNTR
17 #define ENTROPY_ZKR
18 
19 #define CONSOLE_SBI
20 #define REBOOT_SBI
21 #define UMALLOC_SBI
22 
23 #define ACPI_NULL
24 #define MPAPI_NULL
25 #define NAP_NULL
26 #define PCIAPI_NULL
27 #define SANBOOT_NULL
28 #define SMBIOS_NULL
29 #define TIME_NULL
30 
31 #define IMAGE_SCRIPT
32 
33 #define REBOOT_CMD
34 #define POWEROFF_CMD
35 
36 #endif /* CONFIG_DEFAULTS_SBI_H */
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)