1 // SPDX-License-Identifier: GPL-2.0+
7 * Test the real time clock runtime services.
10 #include <efi_selftest.h>
12 #define EFI_ST_NO_RTC "Could not read real time clock\n"
13 #define EFI_ST_NO_RTC_SET "Could not set real time clock\n"
15 static struct efi_runtime_services *runtime;
20 * @handle: handle of the loaded image
21 * @systable: system table
22 * Return: EFI_ST_SUCCESS for success
24 static int setup(const efi_handle_t handle,
25 const struct efi_system_table *systable)
27 runtime = systable->runtime;
28 return EFI_ST_SUCCESS;
34 * Read and display current time.
35 * Set a new value and read it back.
36 * Set the real time clock back the current time.
38 * Return: EFI_ST_SUCCESS for success
40 static int execute(void)
43 struct efi_time tm_old;
44 #ifdef CONFIG_EFI_SET_TIME
45 struct efi_time tm, tm_new = {
55 /* Display current time */
56 ret = runtime->get_time(&tm_old, NULL);
57 if (ret != EFI_SUCCESS) {
58 efi_st_error(EFI_ST_NO_RTC);
59 return EFI_ST_FAILURE;
61 efi_st_printf("Time according to real time clock: "
62 "%.4u-%.2u-%.2u %.2u:%.2u:%.2u\n",
63 tm_old.year, tm_old.month, tm_old.day,
64 tm_old.hour, tm_old.minute, tm_old.second);
65 #ifdef CONFIG_EFI_SET_TIME
66 ret = runtime->set_time(&tm_new);
67 if (ret != EFI_SUCCESS) {
68 efi_st_error(EFI_ST_NO_RTC_SET);
69 return EFI_ST_FAILURE;
71 ret = runtime->get_time(&tm, NULL);
72 if (ret != EFI_SUCCESS) {
73 efi_st_error(EFI_ST_NO_RTC);
74 return EFI_ST_FAILURE;
76 if (tm.year != tm_new.year ||
77 tm.month != tm_new.month ||
78 tm.day != tm_new.day ||
79 tm.hour != tm_new.hour ||
80 tm.minute != tm_new.minute ||
81 tm.second < tm_new.second ||
82 tm.second > tm_new.second + 2) {
83 efi_st_error(EFI_ST_NO_RTC_SET);
84 return EFI_ST_FAILURE;
86 /* Set time back to old value */
87 ret = runtime->set_time(&tm_old);
88 if (ret != EFI_SUCCESS) {
89 efi_st_error(EFI_ST_NO_RTC_SET);
90 return EFI_ST_FAILURE;
94 return EFI_ST_SUCCESS;
97 EFI_UNIT_TEST(rtc) = {
98 .name = "real time clock",
99 .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,