Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 2 | /* |
Heinrich Schuchardt | 702e778 | 2018-09-27 20:44:40 +0200 | [diff] [blame] | 3 | * efi_selftest_tpl |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de> |
| 6 | * |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 7 | * This unit test uses timer events to check the handling of |
| 8 | * task priority levels. |
| 9 | */ |
| 10 | |
| 11 | #include <efi_selftest.h> |
| 12 | |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 13 | static struct efi_event *efi_st_event_notify; |
| 14 | static struct efi_event *efi_st_event_wait; |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 15 | static unsigned int notification_count; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 16 | static struct efi_boot_services *boottime; |
| 17 | |
| 18 | /* |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 19 | * Notification function, increments the notification count. |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 20 | * |
| 21 | * @event notified event |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 22 | * @context pointer to the notification count |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 23 | */ |
| 24 | static void EFIAPI notify(struct efi_event *event, void *context) |
| 25 | { |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 26 | unsigned int *count = context; |
| 27 | |
Heinrich Schuchardt | c43fa8c | 2017-10-08 06:57:25 +0200 | [diff] [blame] | 28 | if (count) |
| 29 | ++*count; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | /* |
| 33 | * Setup unit test. |
| 34 | * |
| 35 | * Create two timer events. |
| 36 | * One with EVT_NOTIFY_SIGNAL, the other with EVT_NOTIFY_WAIT. |
| 37 | * |
| 38 | * @handle: handle of the loaded image |
| 39 | * @systable: system table |
Heinrich Schuchardt | fbe9021 | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 40 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 41 | */ |
| 42 | static int setup(const efi_handle_t handle, |
| 43 | const struct efi_system_table *systable) |
| 44 | { |
| 45 | efi_status_t ret; |
| 46 | |
| 47 | boottime = systable->boottime; |
| 48 | |
| 49 | ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 50 | TPL_CALLBACK, notify, |
| 51 | (void *)¬ification_count, |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 52 | &efi_st_event_notify); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 53 | if (ret != EFI_SUCCESS) { |
| 54 | efi_st_error("could not create event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 55 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 56 | } |
| 57 | ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT, |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 58 | TPL_NOTIFY, notify, NULL, |
| 59 | &efi_st_event_wait); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 60 | if (ret != EFI_SUCCESS) { |
| 61 | efi_st_error("could not create event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 62 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 63 | } |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 64 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /* |
| 68 | * Tear down unit test. |
| 69 | * |
| 70 | * Close the events created in setup. |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 71 | * |
Heinrich Schuchardt | fbe9021 | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 72 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 73 | */ |
| 74 | static int teardown(void) |
| 75 | { |
| 76 | efi_status_t ret; |
| 77 | |
Heinrich Schuchardt | 03964c5 | 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 | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 81 | if (ret != EFI_SUCCESS) { |
| 82 | efi_st_error("could not close event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 83 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 84 | } |
| 85 | } |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 86 | if (efi_st_event_wait) { |
| 87 | ret = boottime->close_event(efi_st_event_wait); |
| 88 | efi_st_event_wait = NULL; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 89 | if (ret != EFI_SUCCESS) { |
| 90 | efi_st_error("could not close event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 91 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | boottime->restore_tpl(TPL_APPLICATION); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 95 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | /* |
| 99 | * Execute unit test. |
| 100 | * |
| 101 | * Run a 10 ms periodic timer and check that it is called 10 times |
| 102 | * while waiting for 100 ms single shot timer. |
| 103 | * |
| 104 | * Raise the TPL level to the level of the 10 ms timer and observe |
| 105 | * that the notification function is not called again. |
| 106 | * |
| 107 | * Lower the TPL level and check that the queued notification |
| 108 | * function is called. |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 109 | * |
Heinrich Schuchardt | fbe9021 | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 110 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 111 | */ |
| 112 | static int execute(void) |
| 113 | { |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 114 | efi_uintn_t index; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 115 | efi_status_t ret; |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 116 | efi_uintn_t old_tpl; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 117 | |
| 118 | /* Set 10 ms timer */ |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 119 | notification_count = 0; |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 120 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_PERIODIC, |
| 121 | 100000); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 122 | if (ret != EFI_SUCCESS) { |
| 123 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 124 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 125 | } |
| 126 | /* Set 100 ms timer */ |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 127 | ret = boottime->set_timer(efi_st_event_wait, EFI_TIMER_RELATIVE, |
| 128 | 1000000); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 129 | if (ret != EFI_SUCCESS) { |
| 130 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 131 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 132 | } |
| 133 | index = 5; |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 134 | ret = boottime->wait_for_event(1, &efi_st_event_wait, &index); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 135 | if (ret != EFI_SUCCESS) { |
| 136 | efi_st_error("Could not wait for event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 137 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 138 | } |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 139 | ret = boottime->check_event(efi_st_event_wait); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 140 | if (ret != EFI_NOT_READY) { |
| 141 | efi_st_error("Signaled state was not cleared.\n"); |
| 142 | efi_st_printf("ret = %u\n", (unsigned int)ret); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 143 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 144 | } |
| 145 | if (index != 0) { |
| 146 | efi_st_error("WaitForEvent returned wrong index\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 147 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 148 | } |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 149 | if (notification_count < 8 || notification_count > 12) { |
Heinrich Schuchardt | 5cf88b6 | 2017-12-22 19:21:03 +0100 | [diff] [blame] | 150 | efi_st_printf( |
| 151 | "Notification count with TPL level TPL_APPLICATION: %u\n", |
| 152 | notification_count); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 153 | efi_st_error("Incorrect timing of events\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 154 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 155 | } |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 156 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_STOP, 0); |
Heinrich Schuchardt | dcbf5f5 | 2019-01-06 16:44:16 +0100 | [diff] [blame] | 157 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 158 | efi_st_error("Could not cancel timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 159 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 160 | } |
| 161 | /* Raise TPL level */ |
| 162 | old_tpl = boottime->raise_tpl(TPL_CALLBACK); |
| 163 | if (old_tpl != TPL_APPLICATION) { |
| 164 | efi_st_error("Initial TPL level was not TPL_APPLICATION"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 165 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 166 | } |
| 167 | /* Set 10 ms timer */ |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 168 | notification_count = 0; |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 169 | ret = boottime->set_timer(efi_st_event_notify, EFI_TIMER_PERIODIC, |
| 170 | 100000); |
Heinrich Schuchardt | dcbf5f5 | 2019-01-06 16:44:16 +0100 | [diff] [blame] | 171 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 172 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 173 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 174 | } |
| 175 | /* Set 100 ms timer */ |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 176 | ret = boottime->set_timer(efi_st_event_wait, EFI_TIMER_RELATIVE, |
| 177 | 1000000); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 178 | if (ret != EFI_SUCCESS) { |
| 179 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 180 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 181 | } |
| 182 | do { |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 183 | ret = boottime->check_event(efi_st_event_wait); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 184 | } while (ret == EFI_NOT_READY); |
| 185 | if (ret != EFI_SUCCESS) { |
| 186 | efi_st_error("Could not check event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 187 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 188 | } |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 189 | if (notification_count != 0) { |
Heinrich Schuchardt | 5cf88b6 | 2017-12-22 19:21:03 +0100 | [diff] [blame] | 190 | efi_st_printf( |
| 191 | "Notification count with TPL level TPL_CALLBACK: %u\n", |
| 192 | notification_count); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 193 | efi_st_error("Suppressed timer fired\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 194 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 195 | } |
| 196 | /* Set 1 ms timer */ |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 197 | ret = boottime->set_timer(efi_st_event_wait, EFI_TIMER_RELATIVE, 1000); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 198 | if (ret != EFI_SUCCESS) { |
| 199 | efi_st_error("Could not set timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 200 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 201 | } |
| 202 | /* Restore the old TPL level */ |
| 203 | boottime->restore_tpl(TPL_APPLICATION); |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 204 | ret = boottime->wait_for_event(1, &efi_st_event_wait, &index); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 205 | if (ret != EFI_SUCCESS) { |
| 206 | efi_st_error("Could not wait for event\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 207 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 208 | } |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 209 | if (notification_count < 1) { |
Heinrich Schuchardt | 5cf88b6 | 2017-12-22 19:21:03 +0100 | [diff] [blame] | 210 | efi_st_printf( |
| 211 | "Notification count with TPL level TPL_APPLICATION: %u\n", |
| 212 | notification_count); |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 213 | efi_st_error("Queued timer event did not fire\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 214 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 215 | } |
Heinrich Schuchardt | 03964c5 | 2022-10-06 07:28:19 +0200 | [diff] [blame] | 216 | ret = boottime->set_timer(efi_st_event_wait, EFI_TIMER_STOP, 0); |
Heinrich Schuchardt | f4ee272 | 2017-10-13 01:00:05 +0200 | [diff] [blame] | 217 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 218 | efi_st_error("Could not cancel timer\n"); |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 219 | return EFI_ST_FAILURE; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 220 | } |
| 221 | |
Heinrich Schuchardt | 1afe5f7 | 2017-10-04 15:31:26 +0200 | [diff] [blame] | 222 | return EFI_ST_SUCCESS; |
Heinrich Schuchardt | ee0f65d | 2017-09-15 10:06:17 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | EFI_UNIT_TEST(tpl) = { |
| 226 | .name = "task priority levels", |
| 227 | .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT, |
| 228 | .setup = setup, |
| 229 | .execute = execute, |
| 230 | .teardown = teardown, |
| 231 | }; |