summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/cros_cbi.c
blob: e92765cb52a54fb772f4a7863166fa9f3b0d04a2 (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
/* Copyright 2021 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/device.h>
#include <zephyr/ztest.h>

#include "cros_cbi.h"
#include "test/drivers/test_state.h"

ZTEST(cros_cbi, test_check_match)
{
	int value;

	value = cros_cbi_ssfc_check_match(
		CBI_SSFC_VALUE_ID(DT_NODELABEL(base_sensor_0)));
	zassert_true(value, "Expected cbi ssfc to match base_sensor_0");

	value = cros_cbi_ssfc_check_match(
		CBI_SSFC_VALUE_ID(DT_NODELABEL(base_sensor_1)));
	zassert_false(value, "Expected cbi ssfc not to match base_sensor_1");

	value = cros_cbi_ssfc_check_match(CBI_SSFC_VALUE_COUNT);
	zassert_false(value, "Expected cbi ssfc to fail on invalid enum");
}

ZTEST(cros_cbi, test_fail_check_match)
{
	int value;

	value = cros_cbi_ssfc_check_match(CBI_SSFC_VALUE_COUNT);
	zassert_false(value,
		      "Expected cbi ssfc to never match CBI_SSFC_VALUE_COUNT");
}

ZTEST(cros_cbi, test_fw_config)
{
	uint32_t value;
	int ret;

	ret = cros_cbi_get_fw_config(FW_CONFIG_FIELD_1, &value);
	zassert_true(ret == 0,
		     "Expected no error return from cros_cbi_get_fw_config");
	zassert_true(value == FW_FIELD_1_B,
		     "Expected field value to match FW_FIELD_1_B as default");

	ret = cros_cbi_get_fw_config(FW_CONFIG_FIELD_2, &value);
	zassert_true(ret == 0,
		     "Expected no error return from cros_cbi_get_fw_config");
	zassert_false(value == FW_FIELD_2_X,
		      "Expected field value to not match FW_FIELD_2_X");
}

ZTEST_SUITE(cros_cbi, drivers_predicate_post_main, NULL, NULL, NULL, NULL);