blob: a50785dbbf672d89f06e76a5e045643a9fc94b4f [file] [log] [blame]
Simon Glass5fe76d42022-07-30 15:52:37 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Test for vbe-simple bootmeth. All start with 'vbe_simple'
4 *
5 * Copyright 2023 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#include <common.h>
10#include <bootmeth.h>
11#include <dm.h>
12#include <image.h>
Simon Glass5fe76d42022-07-30 15:52:37 -060013#include <of_live.h>
14#include <vbe.h>
Simon Glass5fe76d42022-07-30 15:52:37 -060015#include <test/suites.h>
16#include <test/ut.h>
Simon Glass5fe76d42022-07-30 15:52:37 -060017#include "bootstd_common.h"
18
Simon Glass5fe76d42022-07-30 15:52:37 -060019/* Basic test of reading nvdata and updating a fwupd node in the device tree */
20static int vbe_simple_test_base(struct unit_test_state *uts)
21{
Simon Glass5fe76d42022-07-30 15:52:37 -060022 const char *version, *bl_version;
23 struct event_ft_fixup fixup;
Simon Glassbfdfc5d2022-10-11 09:47:13 -060024 struct udevice *dev;
Simon Glass5fe76d42022-07-30 15:52:37 -060025 struct device_node *np;
Simon Glass5fe76d42022-07-30 15:52:37 -060026 char fdt_buf[0x400];
27 char info[100];
28 int node_ofs;
29 ofnode node;
30 u32 vernum;
31
Simon Glassbfdfc5d2022-10-11 09:47:13 -060032 /* Set up the VBE info */
33 ut_assertok(bootstd_setup_for_tests());
Simon Glass5fe76d42022-07-30 15:52:37 -060034
35 /* Read the version back */
36 ut_assertok(vbe_find_by_any("firmware0", &dev));
37 ut_assertok(bootmeth_get_state_desc(dev, info, sizeof(info)));
38 ut_asserteq_str("Version: " TEST_VERSION "\nVernum: 1/2", info);
39
40 ut_assertok(fdt_create_empty_tree(fdt_buf, sizeof(fdt_buf)));
41 node_ofs = fdt_add_subnode(fdt_buf, 0, "chosen");
42 ut_assert(node_ofs > 0);
43
44 node_ofs = fdt_add_subnode(fdt_buf, node_ofs, "fwupd");
45 ut_assert(node_ofs > 0);
46
47 node_ofs = fdt_add_subnode(fdt_buf, node_ofs, "firmware0");
48 ut_assert(node_ofs > 0);
49
Simon Glass0d632132022-09-06 20:27:31 -060050 if (of_live_active()) {
51 ut_assertok(unflatten_device_tree(fdt_buf, &np));
52 fixup.tree = oftree_from_np(np);
53 } else {
54 fixup.tree = oftree_from_fdt(fdt_buf);
55 }
Simon Glass5fe76d42022-07-30 15:52:37 -060056
57 /*
58 * It would be better to call image_setup_libfdt() here, but that
59 * function does not allow passing an ofnode. We can pass fdt_buf but
Simon Glass0d632132022-09-06 20:27:31 -060060 * when it comes to send the event, it creates an ofnode that uses the
Simon Glass5fe76d42022-07-30 15:52:37 -060061 * control FDT, since it has no way of accessing the live tree created
62 * here.
63 *
Simon Glass0d632132022-09-06 20:27:31 -060064 * Two fix this we need image_setup_libfdt() is updated to use ofnode
Simon Glass5fe76d42022-07-30 15:52:37 -060065 */
Simon Glassbfdfc5d2022-10-11 09:47:13 -060066 fixup.images = NULL;
Simon Glass5fe76d42022-07-30 15:52:37 -060067 ut_assertok(event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup)));
68
Simon Glassb7bd94f2022-09-06 20:27:24 -060069 node = oftree_path(fixup.tree, "/chosen/fwupd/firmware0");
Simon Glass5fe76d42022-07-30 15:52:37 -060070
71 version = ofnode_read_string(node, "cur-version");
72 ut_assertnonnull(version);
73 ut_asserteq_str(TEST_VERSION, version);
74
75 ut_assertok(ofnode_read_u32(node, "cur-vernum", &vernum));
76 ut_asserteq(TEST_VERNUM, vernum);
77
78 bl_version = ofnode_read_string(node, "bootloader-version");
79 ut_assertnonnull(bl_version);
Simon Glasse45d2262022-10-20 18:23:12 -060080 ut_asserteq_str(version_string + 7, bl_version);
Simon Glass5fe76d42022-07-30 15:52:37 -060081
82 return 0;
83}
Simon Glass0d632132022-09-06 20:27:31 -060084BOOTSTD_TEST(vbe_simple_test_base, UT_TESTF_DM | UT_TESTF_SCAN_FDT);