2 * Copyright (c) 2013 Google, Inc
4 * SPDX-License-Identifier: GPL-2.0+
13 #include <asm/state.h>
16 #include <dm/uclass-internal.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 struct unit_test_state global_dm_test_state;
22 static struct dm_test_state _global_priv_dm_test_state;
24 /* Get ready for testing */
25 static int dm_test_init(struct unit_test_state *uts)
27 struct dm_test_state *dms = uts->priv;
29 memset(dms, '\0', sizeof(*dms));
31 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
33 ut_assertok(dm_init());
34 dms->root = dm_root();
39 /* Ensure all the test devices are probed */
40 static int do_autoprobe(struct unit_test_state *uts)
45 /* Scanning the uclass is enough to probe all the devices */
46 for (ret = uclass_first_device(UCLASS_TEST, &dev);
48 ret = uclass_next_device(&dev))
54 static int dm_test_destroy(struct unit_test_state *uts)
58 for (id = 0; id < UCLASS_COUNT; id++) {
62 * If the uclass doesn't exist we don't want to create it. So
63 * check that here before we call uclass_find_device()/
68 ut_assertok(uclass_destroy(uc));
74 static int dm_test_main(const char *test_name)
76 struct unit_test *tests = ll_entry_start(struct unit_test, dm_test);
77 const int n_ents = ll_entry_count(struct unit_test, dm_test);
78 struct unit_test_state *uts = &global_dm_test_state;
79 struct sandbox_state *state = state_get_current();
80 uts->priv = &_global_priv_dm_test_state;
81 struct unit_test *test;
87 * If we have no device tree, or it only has a root node, then these
88 * tests clearly aren't going to work...
90 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
91 puts("Please run with test device tree:\n"
92 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
93 ut_assert(gd->fdt_blob);
97 printf("Running %d driver model tests\n", n_ents);
100 for (test = tests; test < tests + n_ents; test++) {
101 const char *name = test->name;
103 /* All tests have this prefix */
104 if (!strncmp(name, "dm_test_", 8))
106 if (test_name && strcmp(test_name, name))
108 printf("Test: %s\n", test->name);
110 ut_assertok(dm_test_init(uts));
112 uts->start = mallinfo();
113 if (test->flags & DM_TESTF_SCAN_PDATA)
114 ut_assertok(dm_scan_platdata(false));
115 if (test->flags & DM_TESTF_PROBE_TEST)
116 ut_assertok(do_autoprobe(uts));
117 if (test->flags & DM_TESTF_SCAN_FDT)
118 ut_assertok(dm_scan_fdt(gd->fdt_blob, false));
121 * Silence the console and rely on console reocrding to get
124 console_record_reset();
125 if (!state->show_test_output)
126 gd->flags |= GD_FLG_SILENT;
128 gd->flags &= ~GD_FLG_SILENT;
129 state_set_skip_delays(false);
131 ut_assertok(dm_test_destroy(uts));
134 if (test_name && !run_count)
135 printf("Test '%s' not found\n", test_name);
137 printf("Failures: %d\n", uts->fail_count);
140 ut_assertok(dm_init());
141 dm_scan_platdata(false);
142 dm_scan_fdt(gd->fdt_blob, false);
144 return uts->fail_count ? CMD_RET_FAILURE : 0;
147 int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
149 const char *test_name = NULL;
154 return dm_test_main(test_name);