Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 2 | /* |
| 3 | * efi_selftest_events |
| 4 | * |
| 5 | * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de> |
| 6 | * |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 7 | * 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 | |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 14 | static struct efi_event *efi_st_event_notify; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 15 | static struct efi_event *event_wait; |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 16 | static unsigned int timer_ticks; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 17 | static struct efi_boot_services *boottime; |
| 18 | |
| 19 | /* |
Heinrich Schuchardt | d8b2216 | 2018-09-27 20:44:40 +0200 | [diff] [blame] | 20 | * Notification function, increments the notification count if parameter |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 21 | * context is provided. |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 22 | * |
| 23 | * @event notified event |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 24 | * @context pointer to the notification count |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 25 | */ |
| 26 | static void EFIAPI notify(struct efi_event *event, void *context) |
| 27 | { |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 28 | unsigned int *count = context; |
| 29 | |
| 30 | if (count) |
| 31 | ++*count; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 32 | } |
| 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 Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 42 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 43 | */ |
| 44 | static 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 Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 52 | TPL_CALLBACK, notify, (void *)&timer_ticks, |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 53 | &efi_st_event_notify); |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 54 | if (ret != EFI_SUCCESS) { |
| 55 | efi_st_error("could not create event\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 56 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 57 | } |
| 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 Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 62 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 63 | } |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 64 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /* |
| 68 | * Tear down unit test. |
| 69 | * |
| 70 | * Close the events created in setup. |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 71 | * |
Heinrich Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 72 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 73 | */ |
| 74 | static int teardown(void) |
| 75 | { |
| 76 | efi_status_t ret; |
| 77 | |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 78 | if (efi_st_event_notify) { |
| 79 | ret = boottime->close_event(efi_st_event_notify); |
| 80 | efi_st_event_notify = NULL; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 81 | if (ret != EFI_SUCCESS) { |
| 82 | efi_st_error("could not close event\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 83 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 84 | } |
| 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 Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 91 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 92 | } |
| 93 | } |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 94 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 95 | } |
| 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 Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 105 | * |
Heinrich Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 106 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 107 | */ |
| 108 | static int execute(void) |
| 109 | { |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 110 | efi_uintn_t index; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 111 | efi_status_t ret; |
| 112 | |
| 113 | /* Set 10 ms timer */ |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 114 | timer_ticks = 0; |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 115 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_PERIODIC, |
| 116 | 100000); |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 117 | if (ret != EFI_SUCCESS) { |
| 118 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 119 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 120 | } |
| 121 | /* Set 100 ms timer */ |
| 122 | ret = boottime->set_timer(event_wait, EFI_TIMER_RELATIVE, 1000000); |
| 123 | if (ret != EFI_SUCCESS) { |
| 124 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 125 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 128 | /* Set some arbitrary non-zero value to make change detectable. */ |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 129 | index = 5; |
| 130 | ret = boottime->wait_for_event(1, &event_wait, &index); |
| 131 | if (ret != EFI_SUCCESS) { |
| 132 | efi_st_error("Could not wait for event\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 133 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 134 | } |
| 135 | ret = boottime->check_event(event_wait); |
| 136 | if (ret != EFI_NOT_READY) { |
| 137 | efi_st_error("Signaled state was not cleared.\n"); |
| 138 | efi_st_printf("ret = %u\n", (unsigned int)ret); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 139 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 140 | } |
| 141 | if (index != 0) { |
| 142 | efi_st_error("WaitForEvent returned wrong index\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 143 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 144 | } |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 145 | if (timer_ticks < 8 || timer_ticks > 12) { |
Heinrich Schuchardt | ad50dcf | 2017-12-22 19:21:02 +0100 | [diff] [blame] | 146 | efi_st_printf("Notification count periodic: %u\n", timer_ticks); |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 147 | efi_st_error("Incorrect timing of events\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 148 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 149 | } |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 150 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_STOP, 0); |
Heinrich Schuchardt | 1309a15 | 2019-01-06 16:38:57 +0100 | [diff] [blame] | 151 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 152 | efi_st_error("Could not cancel timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 153 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 154 | } |
| 155 | /* Set 10 ms timer */ |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 156 | timer_ticks = 0; |
Heinrich Schuchardt | 564e55c | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 157 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_RELATIVE, |
| 158 | 100000); |
Heinrich Schuchardt | 1309a15 | 2019-01-06 16:38:57 +0100 | [diff] [blame] | 159 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 160 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 161 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 162 | } |
| 163 | /* Set 100 ms timer */ |
| 164 | ret = boottime->set_timer(event_wait, EFI_TIMER_PERIODIC, 1000000); |
Heinrich Schuchardt | 1309a15 | 2019-01-06 16:38:57 +0100 | [diff] [blame] | 165 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 166 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 167 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 168 | } |
| 169 | ret = boottime->wait_for_event(1, &event_wait, &index); |
| 170 | if (ret != EFI_SUCCESS) { |
| 171 | efi_st_error("Could not wait for event\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 172 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 173 | } |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 174 | if (timer_ticks != 1) { |
Heinrich Schuchardt | ad50dcf | 2017-12-22 19:21:02 +0100 | [diff] [blame] | 175 | efi_st_printf("Notification count single shot: %u\n", |
| 176 | timer_ticks); |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 177 | efi_st_error("Single shot timer failed\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 178 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 179 | } |
| 180 | ret = boottime->wait_for_event(1, &event_wait, &index); |
| 181 | if (ret != EFI_SUCCESS) { |
| 182 | efi_st_error("Could not wait for event\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 183 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 184 | } |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 185 | if (timer_ticks != 1) { |
Heinrich Schuchardt | ad50dcf | 2017-12-22 19:21:02 +0100 | [diff] [blame] | 186 | efi_st_printf("Notification count stopped timer: %u\n", |
| 187 | timer_ticks); |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 188 | efi_st_error("Stopped timer fired\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 189 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 190 | } |
| 191 | ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0); |
Heinrich Schuchardt | abe9946 | 2017-10-13 01:00:05 +0200 | [diff] [blame] | 192 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 193 | efi_st_error("Could not cancel timer\n"); |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 194 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Heinrich Schuchardt | e67e724 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 197 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | bd12669 | 2017-09-15 10:06:15 +0200 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | EFI_UNIT_TEST(events) = { |
| 201 | .name = "event services", |
| 202 | .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT, |
| 203 | .setup = setup, |
| 204 | .execute = execute, |
| 205 | .teardown = teardown, |
| 206 | }; |