1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013 Google, Inc
13 #include <asm/global_data.h>
14 #include <asm/state.h>
17 #include <dm/uclass-internal.h>
18 #include <test/test.h>
19 #include <test/test.h>
22 DECLARE_GLOBAL_DATA_PTR;
24 struct unit_test_state global_dm_test_state;
25 static struct dm_test_state _global_priv_dm_test_state;
27 /* Get ready for testing */
28 static int dm_test_init(struct unit_test_state *uts, bool of_live)
30 struct dm_test_state *dms = uts->priv;
32 memset(dms, '\0', sizeof(*dms));
34 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
35 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
36 state_reset_for_test(state_get_current());
38 /* Determine whether to make the live tree available */
39 gd_set_of_root(of_live ? uts->of_root : NULL);
40 ut_assertok(dm_init(of_live));
41 dms->root = dm_root();
46 /* Ensure all the test devices are probed */
47 static int do_autoprobe(struct unit_test_state *uts)
52 /* Scanning the uclass is enough to probe all the devices */
53 for (ret = uclass_first_device(UCLASS_TEST, &dev);
55 ret = uclass_next_device(&dev))
61 static int dm_test_destroy(struct unit_test_state *uts)
65 for (id = 0; id < UCLASS_COUNT; id++) {
69 * If the uclass doesn't exist we don't want to create it. So
70 * check that here before we call uclass_find_device().
75 ut_assertok(uclass_destroy(uc));
81 static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
84 struct sandbox_state *state = state_get_current();
85 const char *fname = strrchr(test->file, '/') + 1;
87 printf("Test: %s: %s%s\n", test->name, fname,
88 !of_live ? " (flat tree)" : "");
89 ut_assertok(dm_test_init(uts, of_live));
91 uts->start = mallinfo();
92 if (test->flags & UT_TESTF_SCAN_PDATA)
93 ut_assertok(dm_scan_plat(false));
94 if (test->flags & UT_TESTF_PROBE_TEST)
95 ut_assertok(do_autoprobe(uts));
96 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
97 (test->flags & UT_TESTF_SCAN_FDT))
98 ut_assertok(dm_extended_scan(false));
101 * Silence the console and rely on console recording to get
104 console_record_reset_enable();
105 if (!state->show_test_output)
106 gd->flags |= GD_FLG_SILENT;
108 gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
109 state_set_skip_delays(false);
111 ut_assertok(dm_test_destroy(uts));
117 * dm_test_run_on_flattree() - Check if we should run a test with flat DT
119 * This skips long/slow tests where there is not much value in running a flat
120 * DT test in addition to a live DT test.
122 * @return true to run the given test on the flat device tree
124 static bool dm_test_run_on_flattree(struct unit_test *test)
126 const char *fname = strrchr(test->file, '/') + 1;
128 return !strstr(fname, "video") || strstr(test->name, "video_base");
131 static bool test_matches(const char *test_name, const char *find_name)
136 if (!strcmp(test_name, find_name))
139 /* All tests have this prefix */
140 if (!strncmp(test_name, "dm_test_", 8))
143 if (!strcmp(test_name, find_name))
149 int dm_test_main(const char *test_name)
151 struct unit_test *tests = ll_entry_start(struct unit_test, dm_test);
152 const int n_ents = ll_entry_count(struct unit_test, dm_test);
153 struct unit_test_state *uts = &global_dm_test_state;
154 struct unit_test *test;
157 uts->priv = &_global_priv_dm_test_state;
160 if (!CONFIG_IS_ENABLED(OF_PLATDATA)) {
162 * If we have no device tree, or it only has a root node, then
163 * these * tests clearly aren't going to work...
165 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
166 puts("Please run with test device tree:\n"
167 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
168 ut_assert(gd->fdt_blob);
173 printf("Running %d driver model tests\n", n_ents);
177 uts->of_root = gd_of_root();
178 for (test = tests; test < tests + n_ents; test++) {
179 const char *name = test->name;
182 if (!test_matches(name, test_name))
185 /* Run with the live tree if possible */
187 if (CONFIG_IS_ENABLED(OF_LIVE)) {
188 if (!(test->flags & UT_TESTF_FLAT_TREE)) {
189 ut_assertok(dm_do_test(uts, test, true));
195 * Run with the flat tree if we couldn't run it with live tree,
196 * or it is a core test.
198 if (!(test->flags & UT_TESTF_LIVE_TREE) &&
199 (!runs || dm_test_run_on_flattree(test))) {
200 ut_assertok(dm_do_test(uts, test, false));
206 if (test_name && !found)
207 printf("Test '%s' not found\n", test_name);
209 printf("Failures: %d\n", uts->fail_count);
211 /* Put everything back to normal so that sandbox works as expected */
212 gd_set_of_root(uts->of_root);
214 ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE)));
216 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
219 return uts->fail_count ? CMD_RET_FAILURE : 0;
222 int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
224 const char *test_name = NULL;
229 return dm_test_main(test_name);