blob: 1077cbdf9e6aa88a4468065cd03cac249dfd086a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heinrich Schuchardtbd126692017-09-15 10:06:15 +02002/*
3 * efi_selftest_events
4 *
5 * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
6 *
Heinrich Schuchardtbd126692017-09-15 10:06:15 +02007 * This unit test uses timer events to check the implementation
8 * of the following boottime services:
9 * CreateEvent, CloseEvent, WaitForEvent, CheckEvent, SetTimer.
10 */
11
12#include <efi_selftest.h>
13
14static struct efi_event *event_notify;
15static struct efi_event *event_wait;
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020016static unsigned int timer_ticks;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020017static struct efi_boot_services *boottime;
18
19/*
Heinrich Schuchardtd8b22162018-09-27 20:44:40 +020020 * Notification function, increments the notification count if parameter
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020021 * context is provided.
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020022 *
23 * @event notified event
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020024 * @context pointer to the notification count
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020025 */
26static void EFIAPI notify(struct efi_event *event, void *context)
27{
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020028 unsigned int *count = context;
29
30 if (count)
31 ++*count;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020032}
33
34/*
35 * Setup unit test.
36 *
37 * Create two timer events.
38 * One with EVT_NOTIFY_SIGNAL, the other with EVT_NOTIFY_WAIT.
39 *
40 * @handle: handle of the loaded image
41 * @systable: system table
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020042 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020043 */
44static int setup(const efi_handle_t handle,
45 const struct efi_system_table *systable)
46{
47 efi_status_t ret;
48
49 boottime = systable->boottime;
50
51 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL,
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020052 TPL_CALLBACK, notify, (void *)&timer_ticks,
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020053 &event_notify);
54 if (ret != EFI_SUCCESS) {
55 efi_st_error("could not create event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020056 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020057 }
58 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT,
59 TPL_CALLBACK, notify, NULL, &event_wait);
60 if (ret != EFI_SUCCESS) {
61 efi_st_error("could not create event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020062 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020063 }
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020064 return EFI_ST_SUCCESS;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020065}
66
67/*
68 * Tear down unit test.
69 *
70 * Close the events created in setup.
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020071 *
72 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020073 */
74static int teardown(void)
75{
76 efi_status_t ret;
77
78 if (event_notify) {
79 ret = boottime->close_event(event_notify);
80 event_notify = NULL;
81 if (ret != EFI_SUCCESS) {
82 efi_st_error("could not close event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020083 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020084 }
85 }
86 if (event_wait) {
87 ret = boottime->close_event(event_wait);
88 event_wait = NULL;
89 if (ret != EFI_SUCCESS) {
90 efi_st_error("could not close event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020091 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020092 }
93 }
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020094 return EFI_ST_SUCCESS;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +020095}
96
97/*
98 * Execute unit test.
99 *
100 * Run a 10 ms periodic timer and check that it is called 10 times
101 * while waiting for 100 ms single shot timer.
102 *
103 * Run a 100 ms single shot timer and check that it is called once
104 * while waiting for 100 ms periodic timer for two periods.
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200105 *
106 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200107 */
108static int execute(void)
109{
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100110 efi_uintn_t index;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200111 efi_status_t ret;
112
113 /* Set 10 ms timer */
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200114 timer_ticks = 0;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200115 ret = boottime->set_timer(event_notify, EFI_TIMER_PERIODIC, 100000);
116 if (ret != EFI_SUCCESS) {
117 efi_st_error("Could not set timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200118 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200119 }
120 /* Set 100 ms timer */
121 ret = boottime->set_timer(event_wait, EFI_TIMER_RELATIVE, 1000000);
122 if (ret != EFI_SUCCESS) {
123 efi_st_error("Could not set timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200124 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200125 }
126
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200127 /* Set some arbitrary non-zero value to make change detectable. */
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200128 index = 5;
129 ret = boottime->wait_for_event(1, &event_wait, &index);
130 if (ret != EFI_SUCCESS) {
131 efi_st_error("Could not wait for event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200132 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200133 }
134 ret = boottime->check_event(event_wait);
135 if (ret != EFI_NOT_READY) {
136 efi_st_error("Signaled state was not cleared.\n");
137 efi_st_printf("ret = %u\n", (unsigned int)ret);
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200138 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200139 }
140 if (index != 0) {
141 efi_st_error("WaitForEvent returned wrong index\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200142 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200143 }
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200144 if (timer_ticks < 8 || timer_ticks > 12) {
Heinrich Schuchardtad50dcf2017-12-22 19:21:02 +0100145 efi_st_printf("Notification count periodic: %u\n", timer_ticks);
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200146 efi_st_error("Incorrect timing of events\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200147 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200148 }
149 ret = boottime->set_timer(event_notify, EFI_TIMER_STOP, 0);
Heinrich Schuchardt1309a152019-01-06 16:38:57 +0100150 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200151 efi_st_error("Could not cancel timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200152 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200153 }
154 /* Set 10 ms timer */
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200155 timer_ticks = 0;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200156 ret = boottime->set_timer(event_notify, EFI_TIMER_RELATIVE, 100000);
Heinrich Schuchardt1309a152019-01-06 16:38:57 +0100157 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200158 efi_st_error("Could not set timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200159 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200160 }
161 /* Set 100 ms timer */
162 ret = boottime->set_timer(event_wait, EFI_TIMER_PERIODIC, 1000000);
Heinrich Schuchardt1309a152019-01-06 16:38:57 +0100163 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200164 efi_st_error("Could not set timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200165 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200166 }
167 ret = boottime->wait_for_event(1, &event_wait, &index);
168 if (ret != EFI_SUCCESS) {
169 efi_st_error("Could not wait for event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200170 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200171 }
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200172 if (timer_ticks != 1) {
Heinrich Schuchardtad50dcf2017-12-22 19:21:02 +0100173 efi_st_printf("Notification count single shot: %u\n",
174 timer_ticks);
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200175 efi_st_error("Single shot timer failed\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200176 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200177 }
178 ret = boottime->wait_for_event(1, &event_wait, &index);
179 if (ret != EFI_SUCCESS) {
180 efi_st_error("Could not wait for event\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200181 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200182 }
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200183 if (timer_ticks != 1) {
Heinrich Schuchardtad50dcf2017-12-22 19:21:02 +0100184 efi_st_printf("Notification count stopped timer: %u\n",
185 timer_ticks);
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200186 efi_st_error("Stopped timer fired\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200187 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200188 }
189 ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0);
Heinrich Schuchardtabe99462017-10-13 01:00:05 +0200190 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200191 efi_st_error("Could not cancel timer\n");
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200192 return EFI_ST_FAILURE;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200193 }
194
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200195 return EFI_ST_SUCCESS;
Heinrich Schuchardtbd126692017-09-15 10:06:15 +0200196}
197
198EFI_UNIT_TEST(events) = {
199 .name = "event services",
200 .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
201 .setup = setup,
202 .execute = execute,
203 .teardown = teardown,
204};