blob: 995988723ae40c45f68817f28bd65fc652fb56fe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass2e7d35d2014-02-26 15:59:21 -07002/*
3 * Copyright (c) 2013 Google, Inc
Simon Glass2e7d35d2014-02-26 15:59:21 -07004 */
5
6#include <common.h>
Joe Hershberger40441e02015-05-20 14:27:29 -05007#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -07008#include <console.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -07009#include <dm.h>
10#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass756ac0b2014-10-04 11:29:50 -060012#include <malloc.h>
Simon Glass3884c982015-11-08 23:47:44 -070013#include <asm/state.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070014#include <dm/test.h>
15#include <dm/root.h>
16#include <dm/uclass-internal.h>
Simon Glass0e1fad42020-07-19 10:15:37 -060017#include <test/test.h>
18#include <test/test.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050019#include <test/ut.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070020
21DECLARE_GLOBAL_DATA_PTR;
22
Joe Hershbergere721b882015-05-20 14:27:27 -050023struct unit_test_state global_dm_test_state;
24static struct dm_test_state _global_priv_dm_test_state;
Simon Glass2e7d35d2014-02-26 15:59:21 -070025
26/* Get ready for testing */
Simon Glassc166c472017-05-18 20:09:16 -060027static int dm_test_init(struct unit_test_state *uts, bool of_live)
Simon Glass2e7d35d2014-02-26 15:59:21 -070028{
Joe Hershbergere721b882015-05-20 14:27:27 -050029 struct dm_test_state *dms = uts->priv;
30
Simon Glass2e7d35d2014-02-26 15:59:21 -070031 memset(dms, '\0', sizeof(*dms));
32 gd->dm_root = NULL;
33 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
Simon Glass34b744b2017-05-18 20:09:13 -060034 state_reset_for_test(state_get_current());
Simon Glass2e7d35d2014-02-26 15:59:21 -070035
Simon Glassc166c472017-05-18 20:09:16 -060036 /* Determine whether to make the live tree available */
Simon Glassa652d9c2020-10-03 09:25:22 -060037 gd_set_of_root(of_live ? uts->of_root : NULL);
Simon Glassc166c472017-05-18 20:09:16 -060038 ut_assertok(dm_init(of_live));
Simon Glass2e7d35d2014-02-26 15:59:21 -070039 dms->root = dm_root();
40
41 return 0;
42}
43
44/* Ensure all the test devices are probed */
Joe Hershbergere721b882015-05-20 14:27:27 -050045static int do_autoprobe(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -070046{
Heiko Schocher54c5d082014-05-22 12:43:05 +020047 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -070048 int ret;
49
50 /* Scanning the uclass is enough to probe all the devices */
51 for (ret = uclass_first_device(UCLASS_TEST, &dev);
52 dev;
53 ret = uclass_next_device(&dev))
54 ;
55
56 return ret;
57}
58
Joe Hershbergere721b882015-05-20 14:27:27 -050059static int dm_test_destroy(struct unit_test_state *uts)
Simon Glass2e7d35d2014-02-26 15:59:21 -070060{
61 int id;
62
63 for (id = 0; id < UCLASS_COUNT; id++) {
64 struct uclass *uc;
65
66 /*
67 * If the uclass doesn't exist we don't want to create it. So
Simon Glass22327002019-09-25 08:55:57 -060068 * check that here before we call uclass_find_device().
Simon Glass2e7d35d2014-02-26 15:59:21 -070069 */
70 uc = uclass_find(id);
71 if (!uc)
72 continue;
73 ut_assertok(uclass_destroy(uc));
74 }
75
76 return 0;
77}
78
Simon Glassc166c472017-05-18 20:09:16 -060079static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
80 bool of_live)
Simon Glassf86db102017-05-18 20:09:14 -060081{
82 struct sandbox_state *state = state_get_current();
Simon Glass801587b2017-05-18 20:09:15 -060083 const char *fname = strrchr(test->file, '/') + 1;
Simon Glassf86db102017-05-18 20:09:14 -060084
Simon Glassc166c472017-05-18 20:09:16 -060085 printf("Test: %s: %s%s\n", test->name, fname,
86 !of_live ? " (flat tree)" : "");
87 ut_assertok(dm_test_init(uts, of_live));
Simon Glassf86db102017-05-18 20:09:14 -060088
89 uts->start = mallinfo();
Simon Glasse180c2b2020-07-28 19:41:12 -060090 if (test->flags & UT_TESTF_SCAN_PDATA)
Simon Glassf86db102017-05-18 20:09:14 -060091 ut_assertok(dm_scan_platdata(false));
Simon Glasse180c2b2020-07-28 19:41:12 -060092 if (test->flags & UT_TESTF_PROBE_TEST)
Simon Glassf86db102017-05-18 20:09:14 -060093 ut_assertok(do_autoprobe(uts));
Simon Glasse180c2b2020-07-28 19:41:12 -060094 if (test->flags & UT_TESTF_SCAN_FDT)
Patrice Chotardee87a092017-09-04 14:55:57 +020095 ut_assertok(dm_extended_scan_fdt(gd->fdt_blob, false));
Simon Glassf86db102017-05-18 20:09:14 -060096
97 /*
Michal Simek96ffe872018-08-20 08:03:22 +020098 * Silence the console and rely on console recording to get
Simon Glassf86db102017-05-18 20:09:14 -060099 * our output.
100 */
Simon Glasscfccff82020-01-27 08:49:55 -0700101 console_record_reset_enable();
Simon Glassf86db102017-05-18 20:09:14 -0600102 if (!state->show_test_output)
103 gd->flags |= GD_FLG_SILENT;
104 test->func(uts);
Simon Glasscfccff82020-01-27 08:49:55 -0700105 gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
Simon Glassf86db102017-05-18 20:09:14 -0600106 state_set_skip_delays(false);
107
108 ut_assertok(dm_test_destroy(uts));
109
110 return 0;
111}
112
Simon Glass6fb2f572017-05-18 20:09:17 -0600113/**
114 * dm_test_run_on_flattree() - Check if we should run a test with flat DT
115 *
116 * This skips long/slow tests where there is not much value in running a flat
117 * DT test in addition to a live DT test.
118 *
119 * @return true to run the given test on the flat device tree
120 */
121static bool dm_test_run_on_flattree(struct unit_test *test)
122{
123 const char *fname = strrchr(test->file, '/') + 1;
124
125 return !strstr(fname, "video") || strstr(test->name, "video_base");
126}
127
Joe Hershberger40441e02015-05-20 14:27:29 -0500128static int dm_test_main(const char *test_name)
Simon Glass2e7d35d2014-02-26 15:59:21 -0700129{
Joe Hershbergere721b882015-05-20 14:27:27 -0500130 struct unit_test *tests = ll_entry_start(struct unit_test, dm_test);
131 const int n_ents = ll_entry_count(struct unit_test, dm_test);
132 struct unit_test_state *uts = &global_dm_test_state;
Joe Hershbergere721b882015-05-20 14:27:27 -0500133 struct unit_test *test;
Simon Glassad950472019-09-25 08:55:52 -0600134 int found;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700135
Simon Glassc166c472017-05-18 20:09:16 -0600136 uts->priv = &_global_priv_dm_test_state;
Stephen Warren26e1bec2016-01-27 23:57:46 -0700137 uts->fail_count = 0;
138
Simon Glass2e7d35d2014-02-26 15:59:21 -0700139 /*
140 * If we have no device tree, or it only has a root node, then these
141 * tests clearly aren't going to work...
142 */
143 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
144 puts("Please run with test device tree:\n"
Przemyslaw Marczakf64000c2015-05-13 13:38:34 +0200145 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
Simon Glass2e7d35d2014-02-26 15:59:21 -0700146 ut_assert(gd->fdt_blob);
147 }
148
Simon Glass57f54d52015-03-25 12:23:04 -0600149 if (!test_name)
150 printf("Running %d driver model tests\n", n_ents);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700151
Simon Glassad950472019-09-25 08:55:52 -0600152 found = 0;
Simon Glassa652d9c2020-10-03 09:25:22 -0600153 uts->of_root = gd_of_root();
Simon Glass2e7d35d2014-02-26 15:59:21 -0700154 for (test = tests; test < tests + n_ents; test++) {
Simon Glassc02790c2015-07-06 12:54:23 -0600155 const char *name = test->name;
Simon Glass6fb2f572017-05-18 20:09:17 -0600156 int runs;
Simon Glassc02790c2015-07-06 12:54:23 -0600157
158 /* All tests have this prefix */
159 if (!strncmp(name, "dm_test_", 8))
160 name += 8;
161 if (test_name && strcmp(test_name, name))
Simon Glass57f54d52015-03-25 12:23:04 -0600162 continue;
Simon Glass6fb2f572017-05-18 20:09:17 -0600163
164 /* Run with the live tree if possible */
165 runs = 0;
Simon Glassa652d9c2020-10-03 09:25:22 -0600166 if (CONFIG_IS_ENABLED(OF_LIVE)) {
Simon Glasse180c2b2020-07-28 19:41:12 -0600167 if (!(test->flags & UT_TESTF_FLAT_TREE)) {
Simon Glass6fb2f572017-05-18 20:09:17 -0600168 ut_assertok(dm_do_test(uts, test, true));
169 runs++;
170 }
171 }
172
173 /*
174 * Run with the flat tree if we couldn't run it with live tree,
175 * or it is a core test.
176 */
Simon Glasse180c2b2020-07-28 19:41:12 -0600177 if (!(test->flags & UT_TESTF_LIVE_TREE) &&
Simon Glass6fb2f572017-05-18 20:09:17 -0600178 (!runs || dm_test_run_on_flattree(test))) {
179 ut_assertok(dm_do_test(uts, test, false));
180 runs++;
181 }
Simon Glassad950472019-09-25 08:55:52 -0600182 found++;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700183 }
184
Simon Glassad950472019-09-25 08:55:52 -0600185 if (test_name && !found)
Simon Glassc02790c2015-07-06 12:54:23 -0600186 printf("Test '%s' not found\n", test_name);
187 else
188 printf("Failures: %d\n", uts->fail_count);
Simon Glass2e7d35d2014-02-26 15:59:21 -0700189
Simon Glassfe9a9672019-09-25 08:55:51 -0600190 /* Put everything back to normal so that sandbox works as expected */
Simon Glassa652d9c2020-10-03 09:25:22 -0600191 gd_set_of_root(uts->of_root);
Joe Hershbergerb6227d32015-05-20 14:27:35 -0500192 gd->dm_root = NULL;
Simon Glassa652d9c2020-10-03 09:25:22 -0600193 ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE)));
Joe Hershbergerb6227d32015-05-20 14:27:35 -0500194 dm_scan_platdata(false);
195 dm_scan_fdt(gd->fdt_blob, false);
196
Joe Hershberger7cccc662015-05-20 14:27:32 -0500197 return uts->fail_count ? CMD_RET_FAILURE : 0;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700198}
Joe Hershberger40441e02015-05-20 14:27:29 -0500199
Simon Glass09140112020-05-10 11:40:03 -0600200int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershberger40441e02015-05-20 14:27:29 -0500201{
202 const char *test_name = NULL;
203
204 if (argc > 1)
205 test_name = argv[1];
206
207 return dm_test_main(test_name);
208}