Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 7 | #include <command.h> |
Simon Glass | a73bda4 | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 8 | #include <console.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 0927a6f | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | 2d7c499 | 2015-11-08 23:47:44 -0700 | [diff] [blame] | 13 | #include <asm/state.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 14 | #include <dm/test.h> |
| 15 | #include <dm/root.h> |
| 16 | #include <dm/uclass-internal.h> |
Simon Glass | 75c4d41 | 2020-07-19 10:15:37 -0600 | [diff] [blame] | 17 | #include <test/test.h> |
| 18 | #include <test/test.h> |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 19 | #include <test/ut.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 23 | struct unit_test_state global_dm_test_state; |
| 24 | static struct dm_test_state _global_priv_dm_test_state; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 25 | |
| 26 | /* Get ready for testing */ |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 27 | static int dm_test_init(struct unit_test_state *uts, bool of_live) |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 28 | { |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 29 | struct dm_test_state *dms = uts->priv; |
| 30 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 31 | memset(dms, '\0', sizeof(*dms)); |
| 32 | gd->dm_root = NULL; |
| 33 | memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count)); |
Simon Glass | 36d08d82 | 2017-05-18 20:09:13 -0600 | [diff] [blame] | 34 | state_reset_for_test(state_get_current()); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 35 | |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 36 | /* Determine whether to make the live tree available */ |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 37 | gd_set_of_root(of_live ? uts->of_root : NULL); |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 38 | ut_assertok(dm_init(of_live)); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 39 | dms->root = dm_root(); |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | /* Ensure all the test devices are probed */ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 45 | static int do_autoprobe(struct unit_test_state *uts) |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 46 | { |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 47 | struct udevice *dev; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 48 | 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 Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 59 | static int dm_test_destroy(struct unit_test_state *uts) |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 60 | { |
| 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 Glass | a10a383 | 2019-09-25 08:55:57 -0600 | [diff] [blame] | 68 | * check that here before we call uclass_find_device(). |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 69 | */ |
| 70 | uc = uclass_find(id); |
| 71 | if (!uc) |
| 72 | continue; |
| 73 | ut_assertok(uclass_destroy(uc)); |
| 74 | } |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 79 | static int dm_do_test(struct unit_test_state *uts, struct unit_test *test, |
| 80 | bool of_live) |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 81 | { |
| 82 | struct sandbox_state *state = state_get_current(); |
Simon Glass | be408ee | 2017-05-18 20:09:15 -0600 | [diff] [blame] | 83 | const char *fname = strrchr(test->file, '/') + 1; |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 84 | |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 85 | printf("Test: %s: %s%s\n", test->name, fname, |
| 86 | !of_live ? " (flat tree)" : ""); |
| 87 | ut_assertok(dm_test_init(uts, of_live)); |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 88 | |
| 89 | uts->start = mallinfo(); |
Simon Glass | 974dccd | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 90 | if (test->flags & UT_TESTF_SCAN_PDATA) |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 91 | ut_assertok(dm_scan_platdata(false)); |
Simon Glass | 974dccd | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 92 | if (test->flags & UT_TESTF_PROBE_TEST) |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 93 | ut_assertok(do_autoprobe(uts)); |
Simon Glass | 974dccd | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 94 | if (test->flags & UT_TESTF_SCAN_FDT) |
Patrice Chotard | 9cc2d14 | 2017-09-04 14:55:57 +0200 | [diff] [blame] | 95 | ut_assertok(dm_extended_scan_fdt(gd->fdt_blob, false)); |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 96 | |
| 97 | /* |
Michal Simek | 1e5c4e1 | 2018-08-20 08:03:22 +0200 | [diff] [blame] | 98 | * Silence the console and rely on console recording to get |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 99 | * our output. |
| 100 | */ |
Simon Glass | 492d7b5 | 2020-01-27 08:49:55 -0700 | [diff] [blame] | 101 | console_record_reset_enable(); |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 102 | if (!state->show_test_output) |
| 103 | gd->flags |= GD_FLG_SILENT; |
| 104 | test->func(uts); |
Simon Glass | 492d7b5 | 2020-01-27 08:49:55 -0700 | [diff] [blame] | 105 | gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD); |
Simon Glass | 3f65b03 | 2017-05-18 20:09:14 -0600 | [diff] [blame] | 106 | state_set_skip_delays(false); |
| 107 | |
| 108 | ut_assertok(dm_test_destroy(uts)); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
Simon Glass | 017886b | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 113 | /** |
| 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 | */ |
| 121 | static 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 Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 128 | static int dm_test_main(const char *test_name) |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 129 | { |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 130 | 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 Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 133 | struct unit_test *test; |
Simon Glass | c5987ae | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 134 | int found; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 135 | |
Simon Glass | d0fbcab | 2017-05-18 20:09:16 -0600 | [diff] [blame] | 136 | uts->priv = &_global_priv_dm_test_state; |
Stephen Warren | fcebff5 | 2016-01-27 23:57:46 -0700 | [diff] [blame] | 137 | uts->fail_count = 0; |
| 138 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 139 | /* |
| 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 Marczak | 3dbb55e | 2015-05-13 13:38:34 +0200 | [diff] [blame] | 145 | " ./u-boot -d arch/sandbox/dts/test.dtb\n"); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 146 | ut_assert(gd->fdt_blob); |
| 147 | } |
| 148 | |
Simon Glass | 1506180 | 2015-03-25 12:23:04 -0600 | [diff] [blame] | 149 | if (!test_name) |
| 150 | printf("Running %d driver model tests\n", n_ents); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 151 | |
Simon Glass | c5987ae | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 152 | found = 0; |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 153 | uts->of_root = gd_of_root(); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 154 | for (test = tests; test < tests + n_ents; test++) { |
Simon Glass | 5b0e996 | 2015-07-06 12:54:23 -0600 | [diff] [blame] | 155 | const char *name = test->name; |
Simon Glass | 017886b | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 156 | int runs; |
Simon Glass | 5b0e996 | 2015-07-06 12:54:23 -0600 | [diff] [blame] | 157 | |
| 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 Glass | 1506180 | 2015-03-25 12:23:04 -0600 | [diff] [blame] | 162 | continue; |
Simon Glass | 017886b | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 163 | |
| 164 | /* Run with the live tree if possible */ |
| 165 | runs = 0; |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 166 | if (CONFIG_IS_ENABLED(OF_LIVE)) { |
Simon Glass | 974dccd | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 167 | if (!(test->flags & UT_TESTF_FLAT_TREE)) { |
Simon Glass | 017886b | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 168 | 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 Glass | 974dccd | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 177 | if (!(test->flags & UT_TESTF_LIVE_TREE) && |
Simon Glass | 017886b | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 178 | (!runs || dm_test_run_on_flattree(test))) { |
| 179 | ut_assertok(dm_do_test(uts, test, false)); |
| 180 | runs++; |
| 181 | } |
Simon Glass | c5987ae | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 182 | found++; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Simon Glass | c5987ae | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 185 | if (test_name && !found) |
Simon Glass | 5b0e996 | 2015-07-06 12:54:23 -0600 | [diff] [blame] | 186 | printf("Test '%s' not found\n", test_name); |
| 187 | else |
| 188 | printf("Failures: %d\n", uts->fail_count); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 189 | |
Simon Glass | 14866fb | 2019-09-25 08:55:51 -0600 | [diff] [blame] | 190 | /* Put everything back to normal so that sandbox works as expected */ |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 191 | gd_set_of_root(uts->of_root); |
Joe Hershberger | ff78e96 | 2015-05-20 14:27:35 -0500 | [diff] [blame] | 192 | gd->dm_root = NULL; |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 193 | ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE))); |
Joe Hershberger | ff78e96 | 2015-05-20 14:27:35 -0500 | [diff] [blame] | 194 | dm_scan_platdata(false); |
| 195 | dm_scan_fdt(gd->fdt_blob, false); |
| 196 | |
Joe Hershberger | 9e5ce98 | 2015-05-20 14:27:32 -0500 | [diff] [blame] | 197 | return uts->fail_count ? CMD_RET_FAILURE : 0; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 198 | } |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 199 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 200 | int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 201 | { |
| 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 | } |