blob: 7a40836507a70bde2e6e4710dfb3eb6e7dde3ca2 [file] [log] [blame]
Simon Glassb255efc2022-04-24 23:31:24 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Test for bootdev functions. All start with 'bootdev'
4 *
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#include <common.h>
10#include <bootstd.h>
11#include <dm.h>
Simon Glass80253462022-10-11 09:47:13 -060012#include <memalign.h>
13#include <mmc.h>
14#include <linux/log2.h>
Simon Glassb255efc2022-04-24 23:31:24 -060015#include <test/suites.h>
16#include <test/ut.h>
Simon Glass80253462022-10-11 09:47:13 -060017#include <u-boot/crc.h>
Simon Glassb255efc2022-04-24 23:31:24 -060018#include "bootstd_common.h"
19
Simon Glass1b035c12022-10-11 09:47:17 -060020/* tracks whether bootstd_setup_for_tests() has been run yet */
Simon Glass80253462022-10-11 09:47:13 -060021bool vbe_setup_done;
22
23/* set up MMC for VBE tests */
24int bootstd_setup_for_tests(void)
25{
26 ALLOC_CACHE_ALIGN_BUFFER(u8, buf, MMC_MAX_BLOCK_LEN);
27 struct udevice *mmc;
28 struct blk_desc *desc;
29 int ret;
30
Simon Glass1b035c12022-10-11 09:47:17 -060031 if (vbe_setup_done)
32 return 0;
33
Simon Glass80253462022-10-11 09:47:13 -060034 /* Set up the version string */
35 ret = uclass_get_device(UCLASS_MMC, 1, &mmc);
36 if (ret)
37 return log_msg_ret("mmc", -EIO);
38 desc = blk_get_by_device(mmc);
39
40 memset(buf, '\0', MMC_MAX_BLOCK_LEN);
41 strcpy(buf, TEST_VERSION);
42 if (blk_dwrite(desc, VERSION_START_BLK, 1, buf) != 1)
43 return log_msg_ret("wr1", -EIO);
44
45 /* Set up the nvdata */
46 memset(buf, '\0', MMC_MAX_BLOCK_LEN);
47 buf[1] = ilog2(0x40) << 4 | 1;
48 *(u32 *)(buf + 4) = TEST_VERNUM;
49 buf[0] = crc8(0, buf + 1, 0x3f);
50 if (blk_dwrite(desc, NVDATA_START_BLK, 1, buf) != 1)
51 return log_msg_ret("wr2", -EIO);
52
Simon Glass1b035c12022-10-11 09:47:17 -060053 vbe_setup_done = true;
54
Simon Glass80253462022-10-11 09:47:13 -060055 return 0;
56}
57
Simon Glassb255efc2022-04-24 23:31:24 -060058int bootstd_test_drop_bootdev_order(struct unit_test_state *uts)
59{
60 struct bootstd_priv *priv;
61 struct udevice *bootstd;
62
63 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
64 priv = dev_get_priv(bootstd);
65 priv->bootdev_order = NULL;
66
67 return 0;
68}
69
70int do_ut_bootstd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
71{
72 struct unit_test *tests = UNIT_TEST_SUITE_START(bootstd_test);
73 const int n_ents = UNIT_TEST_SUITE_COUNT(bootstd_test);
Simon Glass1b035c12022-10-11 09:47:17 -060074 int ret;
Simon Glass80253462022-10-11 09:47:13 -060075
Simon Glass1b035c12022-10-11 09:47:17 -060076 ret = bootstd_setup_for_tests();
77 if (ret) {
78 printf("Failed to set up for bootstd tests (err=%d)\n", ret);
79 return CMD_RET_FAILURE;
Simon Glass80253462022-10-11 09:47:13 -060080 }
81
Simon Glassb255efc2022-04-24 23:31:24 -060082 return cmd_ut_category("bootstd", "bootstd_test_",
83 tests, n_ents, argc, argv);
84}