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
|
// SPDX-License-Identifier: GPL-2.0+
/*
* (C) 2018 Theobroma Systems Design und Consulting GmbH
*/
#include <common.h>
#include <dm.h>
#include <reboot-mode/reboot-mode.h>
#include <env.h>
#include <log.h>
#include <asm/gpio.h>
#include <asm/test.h>
#include <dm/test.h>
#include <test/test.h>
#include <test/ut.h>
static int dm_test_reboot_mode_gpio(struct unit_test_state *uts)
{
struct udevice *gpio_dev;
struct udevice *rm_dev;
int gpio0_offset = 0;
int gpio1_offset = 1;
uclass_get_device_by_name(UCLASS_GPIO, "pinmux-gpios", &gpio_dev);
/* Prepare the GPIOs for "download" mode */
sandbox_gpio_set_direction(gpio_dev, gpio0_offset, 0);
sandbox_gpio_set_direction(gpio_dev, gpio1_offset, 0);
sandbox_gpio_set_value(gpio_dev, gpio0_offset, 1);
sandbox_gpio_set_value(gpio_dev, gpio1_offset, 1);
ut_assertok(uclass_get_device_by_name(UCLASS_REBOOT_MODE,
"reboot-mode0", &rm_dev));
ut_assertok(dm_reboot_mode_update(rm_dev));
ut_asserteq_str("download", env_get("bootstatus"));
return 0;
}
DM_TEST(dm_test_reboot_mode_gpio,
UT_TESTF_PROBE_TEST | UT_TESTF_SCAN_FDT | UT_TESTF_FLAT_TREE);
|