blob: a47bb370223ca6d805ddae4db643e4a17b89b673 [file] [log] [blame]
Simon Glass2e7d35d2014-02-26 15:59:21 -07001/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
Simon Glass756ac0b2014-10-04 11:29:50 -060010#include <malloc.h>
Simon Glass2e7d35d2014-02-26 15:59:21 -070011#include <dm/test.h>
12#include <dm/root.h>
13#include <dm/uclass-internal.h>
14#include <dm/ut.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
18struct dm_test_state global_test_state;
19
20/* Get ready for testing */
21static int dm_test_init(struct dm_test_state *dms)
22{
23 memset(dms, '\0', sizeof(*dms));
24 gd->dm_root = NULL;
25 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
26
27 ut_assertok(dm_init());
28 dms->root = dm_root();
29
30 return 0;
31}
32
33/* Ensure all the test devices are probed */
34static int do_autoprobe(struct dm_test_state *dms)
35{
Heiko Schocher54c5d082014-05-22 12:43:05 +020036 struct udevice *dev;
Simon Glass2e7d35d2014-02-26 15:59:21 -070037 int ret;
38
39 /* Scanning the uclass is enough to probe all the devices */
40 for (ret = uclass_first_device(UCLASS_TEST, &dev);
41 dev;
42 ret = uclass_next_device(&dev))
43 ;
44
45 return ret;
46}
47
48static int dm_test_destroy(struct dm_test_state *dms)
49{
50 int id;
51
52 for (id = 0; id < UCLASS_COUNT; id++) {
53 struct uclass *uc;
54
55 /*
56 * If the uclass doesn't exist we don't want to create it. So
57 * check that here before we call uclass_find_device()/
58 */
59 uc = uclass_find(id);
60 if (!uc)
61 continue;
62 ut_assertok(uclass_destroy(uc));
63 }
64
65 return 0;
66}
67
Simon Glass57f54d52015-03-25 12:23:04 -060068int dm_test_main(const char *test_name)
Simon Glass2e7d35d2014-02-26 15:59:21 -070069{
70 struct dm_test *tests = ll_entry_start(struct dm_test, dm_test);
71 const int n_ents = ll_entry_count(struct dm_test, dm_test);
72 struct dm_test_state *dms = &global_test_state;
73 struct dm_test *test;
74
75 /*
76 * If we have no device tree, or it only has a root node, then these
77 * tests clearly aren't going to work...
78 */
79 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
80 puts("Please run with test device tree:\n"
81 " dtc -I dts -O dtb test/dm/test.dts -o test/dm/test.dtb\n"
82 " ./u-boot -d test/dm/test.dtb\n");
83 ut_assert(gd->fdt_blob);
84 }
85
Simon Glass57f54d52015-03-25 12:23:04 -060086 if (!test_name)
87 printf("Running %d driver model tests\n", n_ents);
Simon Glass2e7d35d2014-02-26 15:59:21 -070088
89 for (test = tests; test < tests + n_ents; test++) {
Simon Glass57f54d52015-03-25 12:23:04 -060090 if (test_name && strcmp(test_name, test->name))
91 continue;
Simon Glass2e7d35d2014-02-26 15:59:21 -070092 printf("Test: %s\n", test->name);
93 ut_assertok(dm_test_init(dms));
94
Simon Glass756ac0b2014-10-04 11:29:50 -060095 dms->start = mallinfo();
Simon Glass2e7d35d2014-02-26 15:59:21 -070096 if (test->flags & DM_TESTF_SCAN_PDATA)
Simon Glass00606d72014-07-23 06:55:03 -060097 ut_assertok(dm_scan_platdata(false));
Simon Glass2e7d35d2014-02-26 15:59:21 -070098 if (test->flags & DM_TESTF_PROBE_TEST)
99 ut_assertok(do_autoprobe(dms));
100 if (test->flags & DM_TESTF_SCAN_FDT)
Simon Glass00606d72014-07-23 06:55:03 -0600101 ut_assertok(dm_scan_fdt(gd->fdt_blob, false));
Simon Glass2e7d35d2014-02-26 15:59:21 -0700102
103 if (test->func(dms))
104 break;
105
106 ut_assertok(dm_test_destroy(dms));
107 }
108
109 printf("Failures: %d\n", dms->fail_count);
110
111 return 0;
112}