blob: 54e6577b00987bac219d048646d9e29fed1b349e [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 Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Simon Glass3884c982015-11-08 23:47:44 -070014#include <asm/state.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070015#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
Simon Glass409f4a22021-03-07 17:34:46 -070023int dm_test_run(const char *test_name)
Simon Glass2e7d35d2014-02-26 15:59:21 -070024{
Joe Hershbergere721b882015-05-20 14:27:27 -050025 struct unit_test *tests = ll_entry_start(struct unit_test, dm_test);
26 const int n_ents = ll_entry_count(struct unit_test, dm_test);
Simon Glassfe806862021-03-07 17:35:04 -070027 struct unit_test_state uts_s = { .fail_count = 0 }, *uts = &uts_s;
Simon Glassf97f85e2021-03-07 17:35:05 -070028 struct device_node *of_root;
Simon Glass45d191a2021-03-07 17:35:06 -070029 int ret;
Stephen Warren26e1bec2016-01-27 23:57:46 -070030
Simon Glass5b448ce2020-10-25 20:38:27 -060031 if (!CONFIG_IS_ENABLED(OF_PLATDATA)) {
32 /*
33 * If we have no device tree, or it only has a root node, then
34 * these * tests clearly aren't going to work...
35 */
36 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
37 puts("Please run with test device tree:\n"
38 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
Simon Glass45d191a2021-03-07 17:35:06 -070039 return CMD_RET_FAILURE;
Simon Glass5b448ce2020-10-25 20:38:27 -060040 }
Simon Glass2e7d35d2014-02-26 15:59:21 -070041 }
42
Simon Glassf97f85e2021-03-07 17:35:05 -070043 of_root = gd_of_root();
Simon Glass45d191a2021-03-07 17:35:06 -070044 ret = ut_run_list("driver model", "dm_test_", tests, n_ents, test_name);
Simon Glass2e7d35d2014-02-26 15:59:21 -070045
Simon Glassfe9a9672019-09-25 08:55:51 -060046 /* Put everything back to normal so that sandbox works as expected */
Simon Glassf97f85e2021-03-07 17:35:05 -070047 gd_set_of_root(of_root);
Joe Hershbergerb6227d32015-05-20 14:27:35 -050048 gd->dm_root = NULL;
Simon Glass45d191a2021-03-07 17:35:06 -070049 if (dm_init(CONFIG_IS_ENABLED(OF_LIVE)))
50 return CMD_RET_FAILURE;
Simon Glass8a8d24b2020-12-03 16:55:23 -070051 dm_scan_plat(false);
Simon Glass5b448ce2020-10-25 20:38:27 -060052 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
Simon Glass725e4fc2020-11-28 17:50:09 -070053 dm_scan_fdt(false);
Joe Hershbergerb6227d32015-05-20 14:27:35 -050054
Simon Glass45d191a2021-03-07 17:35:06 -070055 return ret ? CMD_RET_FAILURE : 0;
Simon Glass2e7d35d2014-02-26 15:59:21 -070056}
Joe Hershberger40441e02015-05-20 14:27:29 -050057
Simon Glass09140112020-05-10 11:40:03 -060058int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershberger40441e02015-05-20 14:27:29 -050059{
60 const char *test_name = NULL;
61
62 if (argc > 1)
63 test_name = argv[1];
64
Simon Glass409f4a22021-03-07 17:34:46 -070065 return dm_test_run(test_name);
Joe Hershberger40441e02015-05-20 14:27:29 -050066}