blob: 71e9cf6e5dab982418e31969590cb5faefbe164e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb2c1cac2014-02-26 15:59:21 -07002/*
3 * Copyright (c) 2013 Google, Inc
Simon Glassb2c1cac2014-02-26 15:59:21 -07004 */
5
6#include <common.h>
Joe Hershberger9dc1d712015-05-20 14:27:29 -05007#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -07008#include <console.h>
Simon Glassb2c1cac2014-02-26 15:59:21 -07009#include <dm.h>
10#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass0927a6f2014-10-04 11:29:50 -060012#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Simon Glass2d7c4992015-11-08 23:47:44 -070014#include <asm/state.h>
Simon Glassb2c1cac2014-02-26 15:59:21 -070015#include <dm/test.h>
16#include <dm/root.h>
17#include <dm/uclass-internal.h>
Simon Glass75c4d412020-07-19 10:15:37 -060018#include <test/test.h>
19#include <test/test.h>
Joe Hershberger3a77be52015-05-20 14:27:27 -050020#include <test/ut.h>
Simon Glassb2c1cac2014-02-26 15:59:21 -070021
22DECLARE_GLOBAL_DATA_PTR;
23
Joe Hershberger3a77be52015-05-20 14:27:27 -050024struct unit_test_state global_dm_test_state;
25static struct dm_test_state _global_priv_dm_test_state;
Simon Glassb2c1cac2014-02-26 15:59:21 -070026
27/* Get ready for testing */
Simon Glassd0fbcab2017-05-18 20:09:16 -060028static int dm_test_init(struct unit_test_state *uts, bool of_live)
Simon Glassb2c1cac2014-02-26 15:59:21 -070029{
Joe Hershberger3a77be52015-05-20 14:27:27 -050030 struct dm_test_state *dms = uts->priv;
31
Simon Glassb2c1cac2014-02-26 15:59:21 -070032 memset(dms, '\0', sizeof(*dms));
33 gd->dm_root = NULL;
Simon Glassc0b0b142020-10-25 20:38:27 -060034 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
35 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
Simon Glass36d08d822017-05-18 20:09:13 -060036 state_reset_for_test(state_get_current());
Simon Glassb2c1cac2014-02-26 15:59:21 -070037
Simon Glassd0fbcab2017-05-18 20:09:16 -060038 /* Determine whether to make the live tree available */
Simon Glass40916e62020-10-03 09:25:22 -060039 gd_set_of_root(of_live ? uts->of_root : NULL);
Simon Glassd0fbcab2017-05-18 20:09:16 -060040 ut_assertok(dm_init(of_live));
Simon Glassb2c1cac2014-02-26 15:59:21 -070041 dms->root = dm_root();
42
43 return 0;
44}
45
46/* Ensure all the test devices are probed */
Joe Hershberger3a77be52015-05-20 14:27:27 -050047static int do_autoprobe(struct unit_test_state *uts)
Simon Glassb2c1cac2014-02-26 15:59:21 -070048{
Heiko Schocherb74fcb42014-05-22 12:43:05 +020049 struct udevice *dev;
Simon Glassb2c1cac2014-02-26 15:59:21 -070050 int ret;
51
52 /* Scanning the uclass is enough to probe all the devices */
53 for (ret = uclass_first_device(UCLASS_TEST, &dev);
54 dev;
55 ret = uclass_next_device(&dev))
56 ;
57
58 return ret;
59}
60
Joe Hershberger3a77be52015-05-20 14:27:27 -050061static int dm_test_destroy(struct unit_test_state *uts)
Simon Glassb2c1cac2014-02-26 15:59:21 -070062{
63 int id;
64
65 for (id = 0; id < UCLASS_COUNT; id++) {
66 struct uclass *uc;
67
68 /*
69 * If the uclass doesn't exist we don't want to create it. So
Simon Glassa10a3832019-09-25 08:55:57 -060070 * check that here before we call uclass_find_device().
Simon Glassb2c1cac2014-02-26 15:59:21 -070071 */
72 uc = uclass_find(id);
73 if (!uc)
74 continue;
75 ut_assertok(uclass_destroy(uc));
76 }
77
78 return 0;
79}
80
Simon Glassd0fbcab2017-05-18 20:09:16 -060081static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
82 bool of_live)
Simon Glass3f65b032017-05-18 20:09:14 -060083{
84 struct sandbox_state *state = state_get_current();
Simon Glassbe408ee2017-05-18 20:09:15 -060085 const char *fname = strrchr(test->file, '/') + 1;
Simon Glass3f65b032017-05-18 20:09:14 -060086
Simon Glassd0fbcab2017-05-18 20:09:16 -060087 printf("Test: %s: %s%s\n", test->name, fname,
88 !of_live ? " (flat tree)" : "");
89 ut_assertok(dm_test_init(uts, of_live));
Simon Glass3f65b032017-05-18 20:09:14 -060090
91 uts->start = mallinfo();
Simon Glass974dccd2020-07-28 19:41:12 -060092 if (test->flags & UT_TESTF_SCAN_PDATA)
Simon Glassb75b15b2020-12-03 16:55:23 -070093 ut_assertok(dm_scan_plat(false));
Simon Glass974dccd2020-07-28 19:41:12 -060094 if (test->flags & UT_TESTF_PROBE_TEST)
Simon Glass3f65b032017-05-18 20:09:14 -060095 ut_assertok(do_autoprobe(uts));
Simon Glassc0b0b142020-10-25 20:38:27 -060096 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
97 (test->flags & UT_TESTF_SCAN_FDT))
Simon Glass4d71d602020-11-28 17:50:10 -070098 ut_assertok(dm_extended_scan(false));
Simon Glass3f65b032017-05-18 20:09:14 -060099
100 /*
Michal Simek1e5c4e12018-08-20 08:03:22 +0200101 * Silence the console and rely on console recording to get
Simon Glass3f65b032017-05-18 20:09:14 -0600102 * our output.
103 */
Simon Glass492d7b52020-01-27 08:49:55 -0700104 console_record_reset_enable();
Simon Glass3f65b032017-05-18 20:09:14 -0600105 if (!state->show_test_output)
106 gd->flags |= GD_FLG_SILENT;
107 test->func(uts);
Simon Glass492d7b52020-01-27 08:49:55 -0700108 gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
Simon Glass3f65b032017-05-18 20:09:14 -0600109 state_set_skip_delays(false);
110
111 ut_assertok(dm_test_destroy(uts));
112
113 return 0;
114}
115
Simon Glass017886b2017-05-18 20:09:17 -0600116/**
117 * dm_test_run_on_flattree() - Check if we should run a test with flat DT
118 *
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.
121 *
122 * @return true to run the given test on the flat device tree
123 */
124static bool dm_test_run_on_flattree(struct unit_test *test)
125{
126 const char *fname = strrchr(test->file, '/') + 1;
127
128 return !strstr(fname, "video") || strstr(test->name, "video_base");
129}
130
Simon Glass5792f4b2020-10-03 11:31:40 -0600131static bool test_matches(const char *test_name, const char *find_name)
132{
133 if (!find_name)
134 return true;
135
136 if (!strcmp(test_name, find_name))
137 return true;
138
139 /* All tests have this prefix */
140 if (!strncmp(test_name, "dm_test_", 8))
141 test_name += 8;
142
143 if (!strcmp(test_name, find_name))
144 return true;
145
146 return false;
147}
148
Simon Glassa1add9d2021-03-07 17:34:46 -0700149int dm_test_run(const char *test_name)
Simon Glassb2c1cac2014-02-26 15:59:21 -0700150{
Joe Hershberger3a77be52015-05-20 14:27:27 -0500151 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;
Joe Hershberger3a77be52015-05-20 14:27:27 -0500154 struct unit_test *test;
Simon Glassc5987ae2019-09-25 08:55:52 -0600155 int found;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700156
Simon Glassd0fbcab2017-05-18 20:09:16 -0600157 uts->priv = &_global_priv_dm_test_state;
Stephen Warrenfcebff52016-01-27 23:57:46 -0700158 uts->fail_count = 0;
159
Simon Glassc0b0b142020-10-25 20:38:27 -0600160 if (!CONFIG_IS_ENABLED(OF_PLATDATA)) {
161 /*
162 * If we have no device tree, or it only has a root node, then
163 * these * tests clearly aren't going to work...
164 */
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);
169 }
Simon Glassb2c1cac2014-02-26 15:59:21 -0700170 }
171
Simon Glass15061802015-03-25 12:23:04 -0600172 if (!test_name)
173 printf("Running %d driver model tests\n", n_ents);
Simon Glass5792f4b2020-10-03 11:31:40 -0600174 else
Simon Glassb2c1cac2014-02-26 15:59:21 -0700175
Simon Glassc5987ae2019-09-25 08:55:52 -0600176 found = 0;
Simon Glass40916e62020-10-03 09:25:22 -0600177 uts->of_root = gd_of_root();
Simon Glassb2c1cac2014-02-26 15:59:21 -0700178 for (test = tests; test < tests + n_ents; test++) {
Simon Glass5b0e9962015-07-06 12:54:23 -0600179 const char *name = test->name;
Simon Glass017886b2017-05-18 20:09:17 -0600180 int runs;
Simon Glass5b0e9962015-07-06 12:54:23 -0600181
Simon Glass5792f4b2020-10-03 11:31:40 -0600182 if (!test_matches(name, test_name))
Simon Glass15061802015-03-25 12:23:04 -0600183 continue;
Simon Glass017886b2017-05-18 20:09:17 -0600184
185 /* Run with the live tree if possible */
186 runs = 0;
Simon Glass40916e62020-10-03 09:25:22 -0600187 if (CONFIG_IS_ENABLED(OF_LIVE)) {
Simon Glass974dccd2020-07-28 19:41:12 -0600188 if (!(test->flags & UT_TESTF_FLAT_TREE)) {
Simon Glass017886b2017-05-18 20:09:17 -0600189 ut_assertok(dm_do_test(uts, test, true));
190 runs++;
191 }
192 }
193
194 /*
195 * Run with the flat tree if we couldn't run it with live tree,
196 * or it is a core test.
197 */
Simon Glass974dccd2020-07-28 19:41:12 -0600198 if (!(test->flags & UT_TESTF_LIVE_TREE) &&
Simon Glass017886b2017-05-18 20:09:17 -0600199 (!runs || dm_test_run_on_flattree(test))) {
200 ut_assertok(dm_do_test(uts, test, false));
201 runs++;
202 }
Simon Glassc5987ae2019-09-25 08:55:52 -0600203 found++;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700204 }
205
Simon Glassc5987ae2019-09-25 08:55:52 -0600206 if (test_name && !found)
Simon Glass5b0e9962015-07-06 12:54:23 -0600207 printf("Test '%s' not found\n", test_name);
208 else
209 printf("Failures: %d\n", uts->fail_count);
Simon Glassb2c1cac2014-02-26 15:59:21 -0700210
Simon Glass14866fb2019-09-25 08:55:51 -0600211 /* Put everything back to normal so that sandbox works as expected */
Simon Glass40916e62020-10-03 09:25:22 -0600212 gd_set_of_root(uts->of_root);
Joe Hershbergerff78e962015-05-20 14:27:35 -0500213 gd->dm_root = NULL;
Simon Glass40916e62020-10-03 09:25:22 -0600214 ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE)));
Simon Glassb75b15b2020-12-03 16:55:23 -0700215 dm_scan_plat(false);
Simon Glassc0b0b142020-10-25 20:38:27 -0600216 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
Simon Glass5039cab2020-11-28 17:50:09 -0700217 dm_scan_fdt(false);
Joe Hershbergerff78e962015-05-20 14:27:35 -0500218
Joe Hershberger9e5ce982015-05-20 14:27:32 -0500219 return uts->fail_count ? CMD_RET_FAILURE : 0;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700220}
Joe Hershberger9dc1d712015-05-20 14:27:29 -0500221
Simon Glassed38aef2020-05-10 11:40:03 -0600222int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershberger9dc1d712015-05-20 14:27:29 -0500223{
224 const char *test_name = NULL;
225
226 if (argc > 1)
227 test_name = argv[1];
228
Simon Glassa1add9d2021-03-07 17:34:46 -0700229 return dm_test_run(test_name);
Joe Hershberger9dc1d712015-05-20 14:27:29 -0500230}