Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 7 | #include <command.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 8 | #include <console.h> |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Simon Glass | 3884c98 | 2015-11-08 23:47:44 -0700 | [diff] [blame] | 14 | #include <asm/state.h> |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 15 | #include <dm/root.h> |
| 16 | #include <dm/uclass-internal.h> |
Simon Glass | 0e1fad4 | 2020-07-19 10:15:37 -0600 | [diff] [blame] | 17 | #include <test/test.h> |
| 18 | #include <test/test.h> |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 19 | #include <test/ut.h> |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 23 | struct unit_test_state global_dm_test_state; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 24 | |
Simon Glass | 8a38abf | 2020-10-03 11:31:40 -0600 | [diff] [blame] | 25 | static bool test_matches(const char *test_name, const char *find_name) |
| 26 | { |
| 27 | if (!find_name) |
| 28 | return true; |
| 29 | |
| 30 | if (!strcmp(test_name, find_name)) |
| 31 | return true; |
| 32 | |
| 33 | /* All tests have this prefix */ |
| 34 | if (!strncmp(test_name, "dm_test_", 8)) |
| 35 | test_name += 8; |
| 36 | |
| 37 | if (!strcmp(test_name, find_name)) |
| 38 | return true; |
| 39 | |
| 40 | return false; |
| 41 | } |
| 42 | |
Simon Glass | 409f4a2 | 2021-03-07 17:34:46 -0700 | [diff] [blame] | 43 | int dm_test_run(const char *test_name) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 44 | { |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 45 | struct unit_test *tests = ll_entry_start(struct unit_test, dm_test); |
| 46 | const int n_ents = ll_entry_count(struct unit_test, dm_test); |
| 47 | struct unit_test_state *uts = &global_dm_test_state; |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 48 | struct unit_test *test; |
Simon Glass | ad95047 | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 49 | int found; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 50 | |
Stephen Warren | 26e1bec | 2016-01-27 23:57:46 -0700 | [diff] [blame] | 51 | uts->fail_count = 0; |
| 52 | |
Simon Glass | 5b448ce | 2020-10-25 20:38:27 -0600 | [diff] [blame] | 53 | if (!CONFIG_IS_ENABLED(OF_PLATDATA)) { |
| 54 | /* |
| 55 | * If we have no device tree, or it only has a root node, then |
| 56 | * these * tests clearly aren't going to work... |
| 57 | */ |
| 58 | if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) { |
| 59 | puts("Please run with test device tree:\n" |
| 60 | " ./u-boot -d arch/sandbox/dts/test.dtb\n"); |
| 61 | ut_assert(gd->fdt_blob); |
| 62 | } |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Simon Glass | 57f54d5 | 2015-03-25 12:23:04 -0600 | [diff] [blame] | 65 | if (!test_name) |
| 66 | printf("Running %d driver model tests\n", n_ents); |
Simon Glass | 8a38abf | 2020-10-03 11:31:40 -0600 | [diff] [blame] | 67 | else |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 68 | |
Simon Glass | ad95047 | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 69 | found = 0; |
Simon Glass | a652d9c | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 70 | uts->of_root = gd_of_root(); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 71 | for (test = tests; test < tests + n_ents; test++) { |
Simon Glass | c02790c | 2015-07-06 12:54:23 -0600 | [diff] [blame] | 72 | const char *name = test->name; |
| 73 | |
Simon Glass | 8a38abf | 2020-10-03 11:31:40 -0600 | [diff] [blame] | 74 | if (!test_matches(name, test_name)) |
Simon Glass | 57f54d5 | 2015-03-25 12:23:04 -0600 | [diff] [blame] | 75 | continue; |
Simon Glass | 6fb2f57 | 2017-05-18 20:09:17 -0600 | [diff] [blame] | 76 | |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame^] | 77 | ut_assertok(ut_run_test_live_flat(uts, test, test->name)); |
Simon Glass | ad95047 | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 78 | found++; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Simon Glass | ad95047 | 2019-09-25 08:55:52 -0600 | [diff] [blame] | 81 | if (test_name && !found) |
Simon Glass | c02790c | 2015-07-06 12:54:23 -0600 | [diff] [blame] | 82 | printf("Test '%s' not found\n", test_name); |
| 83 | else |
| 84 | printf("Failures: %d\n", uts->fail_count); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 85 | |
Simon Glass | fe9a967 | 2019-09-25 08:55:51 -0600 | [diff] [blame] | 86 | /* Put everything back to normal so that sandbox works as expected */ |
Simon Glass | a652d9c | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 87 | gd_set_of_root(uts->of_root); |
Joe Hershberger | b6227d3 | 2015-05-20 14:27:35 -0500 | [diff] [blame] | 88 | gd->dm_root = NULL; |
Simon Glass | a652d9c | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 89 | ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE))); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 90 | dm_scan_plat(false); |
Simon Glass | 5b448ce | 2020-10-25 20:38:27 -0600 | [diff] [blame] | 91 | if (!CONFIG_IS_ENABLED(OF_PLATDATA)) |
Simon Glass | 725e4fc | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 92 | dm_scan_fdt(false); |
Joe Hershberger | b6227d3 | 2015-05-20 14:27:35 -0500 | [diff] [blame] | 93 | |
Joe Hershberger | 7cccc66 | 2015-05-20 14:27:32 -0500 | [diff] [blame] | 94 | return uts->fail_count ? CMD_RET_FAILURE : 0; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 95 | } |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 96 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 97 | int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 98 | { |
| 99 | const char *test_name = NULL; |
| 100 | |
| 101 | if (argc > 1) |
| 102 | test_name = argv[1]; |
| 103 | |
Simon Glass | 409f4a2 | 2021-03-07 17:34:46 -0700 | [diff] [blame] | 104 | return dm_test_run(test_name); |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 105 | } |