blob: beb662d4e1b84f90055fea86983b4484f2178e82 [file] [log] [blame]
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +02001/*
2 * EFI application loader
3 *
4 * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef _EFI_SELFTEST_H
10#define _EFI_SELFTEST_H
11
12#include <common.h>
13#include <efi.h>
14#include <efi_api.h>
15#include <linker_lists.h>
16
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020017#define EFI_ST_SUCCESS 0
18#define EFI_ST_FAILURE 1
19
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020020/*
21 * Prints an error message.
22 *
23 * @... format string followed by fields to print
24 */
25#define efi_st_error(...) \
26 efi_st_printf("%s(%u):\nERROR: ", __FILE__, __LINE__); \
27 efi_st_printf(__VA_ARGS__) \
28
29/*
30 * A test may be setup and executed at boottime,
31 * it may be setup at boottime and executed at runtime,
32 * or it may be setup and executed at runtime.
33 */
34enum efi_test_phase {
35 EFI_EXECUTE_BEFORE_BOOTTIME_EXIT = 1,
36 EFI_SETUP_BEFORE_BOOTTIME_EXIT,
37 EFI_SETUP_AFTER_BOOTTIME_EXIT,
38};
39
40extern struct efi_simple_text_output_protocol *con_out;
41extern struct efi_simple_input_interface *con_in;
42
43/*
44 * Exit the boot services.
45 *
46 * The size of the memory map is determined.
47 * Pool memory is allocated to copy the memory map.
48 * The memory amp is copied and the map key is obtained.
49 * The map key is used to exit the boot services.
50 */
51void efi_st_exit_boot_services(void);
52
53/*
54 * Print a pointer to an u16 string
55 *
56 * @pointer: pointer
57 * @buf: pointer to buffer address
58 * on return position of terminating zero word
59 */
60void efi_st_printf(const char *fmt, ...)
61 __attribute__ ((format (__printf__, 1, 2)));
62
63/*
64 * Reads an Unicode character from the input device.
65 *
66 * @return: Unicode character
67 */
68u16 efi_st_get_key(void);
69
70/**
71 * struct efi_unit_test - EFI unit test
72 *
73 * An efi_unit_test provides a interface to an EFI unit test.
74 *
75 * @name: name of unit test
76 * @phase: specifies when setup and execute are executed
77 * @setup: set up the unit test
78 * @teardown: tear down the unit test
79 * @execute: execute the unit test
80 */
81struct efi_unit_test {
82 const char *name;
83 const enum efi_test_phase phase;
84 int (*setup)(const efi_handle_t handle,
85 const struct efi_system_table *systable);
86 int (*execute)(void);
87 int (*teardown)(void);
88};
89
90/* Declare a new EFI unit test */
91#define EFI_UNIT_TEST(__name) \
92 ll_entry_declare(struct efi_unit_test, __name, efi_unit_test)
93
94#endif /* _EFI_SELFTEST_H */