summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/system.c
blob: 01956d87214a6a81639c25e6794d987d6f518b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* Copyright 2022 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <zephyr/kernel.h>
#include <zephyr/ztest.h>

#include "ec_commands.h"
#include "host_command.h"
#include "system.h"
#include "test/drivers/test_state.h"

/* System Host Commands */

ZTEST_USER(system, test_hostcmd_sysinfo)
{
	struct ec_response_sysinfo response;
	struct host_cmd_handler_args args =
		BUILD_HOST_COMMAND_RESPONSE(EC_CMD_SYSINFO, 0, response);

	/* Simply issue the command and get the results */
	zassert_ok(host_command_process(&args), NULL);
	zassert_ok(args.result, NULL);
	zassert_equal(args.response_size, sizeof(response), NULL);
	zassert_equal(response.reset_flags, 0, "response.reset_flags = %d",
		      response.reset_flags);
	zassert_equal(response.current_image, EC_IMAGE_RO,
		      "response.current_image = %d", response.current_image);
	zassert_equal(response.flags, 0, "response.flags = %d", response.flags);
}

ZTEST_USER(system, test_hostcmd_board_version)
{
	struct ec_response_board_version response;
	struct host_cmd_handler_args args = BUILD_HOST_COMMAND_RESPONSE(
		EC_CMD_GET_BOARD_VERSION, 0, response);

	/* Get the board version, which is default 0. */
	zassert_ok(host_command_process(&args), NULL);
	zassert_ok(args.result, NULL);
	zassert_equal(args.response_size, sizeof(response), NULL);
	zassert_equal(response.board_version, 0, "response.board_version = %d",
		      response.board_version);
}

/* System Function Testing */

static void system_flags_before_after(void *data)
{
	ARG_UNUSED(data);
	system_clear_reset_flags(-1);
}

ZTEST(system_save_flags, test_system_encode_save_flags)
{
	int flags_to_save = 0;
	uint32_t saved_flags = 0;
	int arbitrary_reset_flags = 1;

	/* Save all possible flags */
	flags_to_save = -1;

	/* Clear all reset flags and set them arbitrarily */
	system_set_reset_flags(arbitrary_reset_flags);

	system_encode_save_flags(flags_to_save, &saved_flags);

	/* Verify all non-mutually exclusive flags */
	zassert_equal(1, saved_flags & system_get_reset_flags(), NULL);
	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_AP_OFF, NULL);
	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_STAY_IN_RO, NULL);
	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_AP_WATCHDOG, NULL);
}

ZTEST(system_save_flags,
      test_system_encode_save_flags_mutually_exclusive_reset_flags)
{
	int flags_to_save = 0;
	uint32_t saved_flags = 0;

	/* Verify reset hard takes precedence over hibernate/soft */
	flags_to_save = SYSTEM_RESET_HARD | SYSTEM_RESET_HIBERNATE;

	system_encode_save_flags(flags_to_save, &saved_flags);

	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_HARD, NULL);
	zassert_equal(0, saved_flags & EC_RESET_FLAG_HIBERNATE, NULL);
	zassert_equal(0, saved_flags & EC_RESET_FLAG_SOFT, NULL);

	/* Verify reset hibernate takes precedence over soft */
	flags_to_save = SYSTEM_RESET_HIBERNATE;

	system_encode_save_flags(flags_to_save, &saved_flags);

	zassert_equal(0, saved_flags & EC_RESET_FLAG_HARD, NULL);
	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_HIBERNATE, NULL);
	zassert_equal(0, saved_flags & EC_RESET_FLAG_SOFT, NULL);

	/* Verify reset soft is always saved given no other flags */
	flags_to_save = 0;

	system_encode_save_flags(flags_to_save, &saved_flags);

	zassert_equal(0, saved_flags & EC_RESET_FLAG_HARD, NULL);
	zassert_equal(0, saved_flags & EC_RESET_FLAG_HIBERNATE, NULL);
	zassert_not_equal(0, saved_flags & EC_RESET_FLAG_SOFT, NULL);
}

ZTEST_SUITE(system, drivers_predicate_post_main, NULL, NULL, NULL, NULL);

ZTEST_SUITE(system_save_flags, drivers_predicate_post_main, NULL,
	    system_flags_before_after, system_flags_before_after, NULL);