1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013 Google, Inc
12 #include <asm/state.h>
15 #include <dm/uclass-internal.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 struct unit_test_state global_dm_test_state;
21 static struct dm_test_state _global_priv_dm_test_state;
23 /* Get ready for testing */
24 static int dm_test_init(struct unit_test_state *uts, bool of_live)
26 struct dm_test_state *dms = uts->priv;
28 memset(dms, '\0', sizeof(*dms));
30 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
31 state_reset_for_test(state_get_current());
34 /* Determine whether to make the live tree available */
35 gd->of_root = of_live ? uts->of_root : NULL;
37 ut_assertok(dm_init(of_live));
38 dms->root = dm_root();
43 /* Ensure all the test devices are probed */
44 static int do_autoprobe(struct unit_test_state *uts)
49 /* Scanning the uclass is enough to probe all the devices */
50 for (ret = uclass_first_device(UCLASS_TEST, &dev);
52 ret = uclass_next_device(&dev))
58 static int dm_test_destroy(struct unit_test_state *uts)
62 for (id = 0; id < UCLASS_COUNT; id++) {
66 * If the uclass doesn't exist we don't want to create it. So
67 * check that here before we call uclass_find_device()/
72 ut_assertok(uclass_destroy(uc));
78 static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
81 struct sandbox_state *state = state_get_current();
82 const char *fname = strrchr(test->file, '/') + 1;
84 printf("Test: %s: %s%s\n", test->name, fname,
85 !of_live ? " (flat tree)" : "");
86 ut_assertok(dm_test_init(uts, of_live));
88 uts->start = mallinfo();
89 if (test->flags & DM_TESTF_SCAN_PDATA)
90 ut_assertok(dm_scan_platdata(false));
91 if (test->flags & DM_TESTF_PROBE_TEST)
92 ut_assertok(do_autoprobe(uts));
93 if (test->flags & DM_TESTF_SCAN_FDT)
94 ut_assertok(dm_extended_scan_fdt(gd->fdt_blob, false));
97 * Silence the console and rely on console recording to get
100 console_record_reset();
101 if (!state->show_test_output)
102 gd->flags |= GD_FLG_SILENT;
104 gd->flags &= ~GD_FLG_SILENT;
105 state_set_skip_delays(false);
107 ut_assertok(dm_test_destroy(uts));
113 * dm_test_run_on_flattree() - Check if we should run a test with flat DT
115 * This skips long/slow tests where there is not much value in running a flat
116 * DT test in addition to a live DT test.
118 * @return true to run the given test on the flat device tree
120 static bool dm_test_run_on_flattree(struct unit_test *test)
122 const char *fname = strrchr(test->file, '/') + 1;
124 return !strstr(fname, "video") || strstr(test->name, "video_base");
127 static int dm_test_main(const char *test_name)
129 struct unit_test *tests = ll_entry_start(struct unit_test, dm_test);
130 const int n_ents = ll_entry_count(struct unit_test, dm_test);
131 struct unit_test_state *uts = &global_dm_test_state;
132 struct unit_test *test;
135 uts->priv = &_global_priv_dm_test_state;
139 * If we have no device tree, or it only has a root node, then these
140 * tests clearly aren't going to work...
142 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
143 puts("Please run with test device tree:\n"
144 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
145 ut_assert(gd->fdt_blob);
149 printf("Running %d driver model tests\n", n_ents);
152 #ifdef CONFIG_OF_LIVE
153 uts->of_root = gd->of_root;
155 for (test = tests; test < tests + n_ents; test++) {
156 const char *name = test->name;
159 /* All tests have this prefix */
160 if (!strncmp(name, "dm_test_", 8))
162 if (test_name && strcmp(test_name, name))
165 /* Run with the live tree if possible */
167 if (IS_ENABLED(CONFIG_OF_LIVE)) {
168 if (!(test->flags & DM_TESTF_FLAT_TREE)) {
169 ut_assertok(dm_do_test(uts, test, true));
175 * Run with the flat tree if we couldn't run it with live tree,
176 * or it is a core test.
178 if (!(test->flags & DM_TESTF_LIVE_TREE) &&
179 (!runs || dm_test_run_on_flattree(test))) {
180 ut_assertok(dm_do_test(uts, test, false));
186 if (test_name && !run_count)
187 printf("Test '%s' not found\n", test_name);
189 printf("Failures: %d\n", uts->fail_count);
192 ut_assertok(dm_init(false));
193 dm_scan_platdata(false);
194 dm_scan_fdt(gd->fdt_blob, false);
196 return uts->fail_count ? CMD_RET_FAILURE : 0;
199 int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
201 const char *test_name = NULL;
206 return dm_test_main(test_name);