blob: 5cc8d4f6006f084cece25933a1512df42e91620e [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>
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020015#include <efi_loader.h>
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020016#include <linker_lists.h>
17
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020018#define EFI_ST_SUCCESS 0
19#define EFI_ST_FAILURE 1
20
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020021/*
22 * Prints an error message.
23 *
24 * @... format string followed by fields to print
25 */
26#define efi_st_error(...) \
Heinrich Schuchardt9820c2f2017-10-05 16:36:05 +020027 (efi_st_printf("%s(%u):\nERROR: ", __FILE__, __LINE__), \
28 efi_st_printf(__VA_ARGS__)) \
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020029
30/*
31 * A test may be setup and executed at boottime,
32 * it may be setup at boottime and executed at runtime,
33 * or it may be setup and executed at runtime.
34 */
35enum efi_test_phase {
36 EFI_EXECUTE_BEFORE_BOOTTIME_EXIT = 1,
37 EFI_SETUP_BEFORE_BOOTTIME_EXIT,
38 EFI_SETUP_AFTER_BOOTTIME_EXIT,
39};
40
41extern struct efi_simple_text_output_protocol *con_out;
42extern struct efi_simple_input_interface *con_in;
43
44/*
45 * Exit the boot services.
46 *
47 * The size of the memory map is determined.
48 * Pool memory is allocated to copy the memory map.
49 * The memory amp is copied and the map key is obtained.
50 * The map key is used to exit the boot services.
51 */
52void efi_st_exit_boot_services(void);
53
54/*
55 * Print a pointer to an u16 string
56 *
57 * @pointer: pointer
58 * @buf: pointer to buffer address
59 * on return position of terminating zero word
60 */
61void efi_st_printf(const char *fmt, ...)
62 __attribute__ ((format (__printf__, 1, 2)));
63
64/*
Heinrich Schuchardt5ca23ed2017-10-05 16:36:07 +020065 * Compare memory.
66 * We cannot use lib/string.c due to different CFLAGS values.
67 *
68 * @buf1: first buffer
69 * @buf2: second buffer
70 * @length: number of bytes to compare
71 * @return: 0 if both buffers contain the same bytes
72 */
73int efi_st_memcmp(const void *buf1, const void *buf2, size_t length);
74
75/*
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020076 * Compare an u16 string to a char string.
77 *
78 * @buf1: u16 string
79 * @buf2: char string
80 * @return: 0 if both buffers contain the same bytes
81 */
82int efi_st_strcmp_16_8(const u16 *buf1, const char *buf2);
83
84/*
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020085 * Reads an Unicode character from the input device.
86 *
87 * @return: Unicode character
88 */
89u16 efi_st_get_key(void);
90
91/**
92 * struct efi_unit_test - EFI unit test
93 *
94 * An efi_unit_test provides a interface to an EFI unit test.
95 *
96 * @name: name of unit test
97 * @phase: specifies when setup and execute are executed
98 * @setup: set up the unit test
99 * @teardown: tear down the unit test
100 * @execute: execute the unit test
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200101 * @on_request: test is only executed on request
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200102 */
103struct efi_unit_test {
104 const char *name;
105 const enum efi_test_phase phase;
106 int (*setup)(const efi_handle_t handle,
107 const struct efi_system_table *systable);
108 int (*execute)(void);
109 int (*teardown)(void);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200110 bool on_request;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200111};
112
113/* Declare a new EFI unit test */
114#define EFI_UNIT_TEST(__name) \
115 ll_entry_declare(struct efi_unit_test, __name, efi_unit_test)
116
117#endif /* _EFI_SELFTEST_H */