blob: 6f7035dee616968fc1a56e0cacec32af798d87a2 [file] [log] [blame]
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * efi_selftest_rtc
4 *
5 * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
6 *
7 * Test the real time clock runtime services.
8 */
9
10#include <efi_selftest.h>
11
12#define EFI_ST_NO_RTC "Could not read real time clock\n"
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020013#define EFI_ST_NO_RTC_SET "Could not set real time clock\n"
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020014
15static struct efi_runtime_services *runtime;
16
17/*
18 * Setup unit test.
19 *
20 * @handle: handle of the loaded image
21 * @systable: system table
22 * @return: EFI_ST_SUCCESS for success
23 */
24static int setup(const efi_handle_t handle,
25 const struct efi_system_table *systable)
26{
27 runtime = systable->runtime;
28 return EFI_ST_SUCCESS;
29}
30
31/*
32 * Execute unit test.
33 *
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020034 * Read and display current time.
35 * Set a new value and read it back.
36 * Set the real time clock back the current time.
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020037 *
38 * @return: EFI_ST_SUCCESS for success
39 */
40static int execute(void)
41{
42 efi_status_t ret;
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +020043 struct efi_time tm_old;
44#ifdef CONFIG_EFI_SET_TIME
45 struct efi_time tm, tm_new = {
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020046 .year = 2017,
47 .month = 5,
48 .day = 19,
49 .hour = 13,
50 .minute = 47,
51 .second = 53,
52 };
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +020053#endif
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020054
55 /* Display current time */
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020056 ret = runtime->get_time(&tm_old, NULL);
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020057 if (ret != EFI_SUCCESS) {
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020058 efi_st_error(EFI_ST_NO_RTC);
59 return EFI_ST_FAILURE;
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020060 }
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);
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +020065#ifdef CONFIG_EFI_SET_TIME
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020066 ret = runtime->set_time(&tm_new);
67 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020068 efi_st_error(EFI_ST_NO_RTC_SET);
69 return EFI_ST_FAILURE;
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +020070 }
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;
75 }
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;
85 }
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;
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020091 }
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +020092#endif
Heinrich Schuchardta7be4b82018-07-07 23:39:16 +020093
94 return EFI_ST_SUCCESS;
95}
96
97EFI_UNIT_TEST(rtc) = {
98 .name = "real time clock",
99 .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
100 .setup = setup,
101 .execute = execute,
102};