aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/unittest.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/of/unittest.c')
-rw-r--r--drivers/of/unittest.c708
1 files changed, 354 insertions, 354 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 52c45c7df07f..fdb597766be9 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -25,115 +25,115 @@
25 25
26#include "of_private.h" 26#include "of_private.h"
27 27
28static struct selftest_results { 28static struct unittest_results {
29 int passed; 29 int passed;
30 int failed; 30 int failed;
31} selftest_results; 31} unittest_results;
32 32
33#define selftest(result, fmt, ...) ({ \ 33#define unittest(result, fmt, ...) ({ \
34 bool failed = !(result); \ 34 bool failed = !(result); \
35 if (failed) { \ 35 if (failed) { \
36 selftest_results.failed++; \ 36 unittest_results.failed++; \
37 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \ 37 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \
38 } else { \ 38 } else { \
39 selftest_results.passed++; \ 39 unittest_results.passed++; \
40 pr_debug("pass %s():%i\n", __func__, __LINE__); \ 40 pr_debug("pass %s():%i\n", __func__, __LINE__); \
41 } \ 41 } \
42 failed; \ 42 failed; \
43}) 43})
44 44
45static void __init of_selftest_find_node_by_name(void) 45static void __init of_unittest_find_node_by_name(void)
46{ 46{
47 struct device_node *np; 47 struct device_node *np;
48 const char *options; 48 const char *options;
49 49
50 np = of_find_node_by_path("/testcase-data"); 50 np = of_find_node_by_path("/testcase-data");
51 selftest(np && !strcmp("/testcase-data", np->full_name), 51 unittest(np && !strcmp("/testcase-data", np->full_name),
52 "find /testcase-data failed\n"); 52 "find /testcase-data failed\n");
53 of_node_put(np); 53 of_node_put(np);
54 54
55 /* Test if trailing '/' works */ 55 /* Test if trailing '/' works */
56 np = of_find_node_by_path("/testcase-data/"); 56 np = of_find_node_by_path("/testcase-data/");
57 selftest(!np, "trailing '/' on /testcase-data/ should fail\n"); 57 unittest(!np, "trailing '/' on /testcase-data/ should fail\n");
58 58
59 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); 59 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
60 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name), 60 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
61 "find /testcase-data/phandle-tests/consumer-a failed\n"); 61 "find /testcase-data/phandle-tests/consumer-a failed\n");
62 of_node_put(np); 62 of_node_put(np);
63 63
64 np = of_find_node_by_path("testcase-alias"); 64 np = of_find_node_by_path("testcase-alias");
65 selftest(np && !strcmp("/testcase-data", np->full_name), 65 unittest(np && !strcmp("/testcase-data", np->full_name),
66 "find testcase-alias failed\n"); 66 "find testcase-alias failed\n");
67 of_node_put(np); 67 of_node_put(np);
68 68
69 /* Test if trailing '/' works on aliases */ 69 /* Test if trailing '/' works on aliases */
70 np = of_find_node_by_path("testcase-alias/"); 70 np = of_find_node_by_path("testcase-alias/");
71 selftest(!np, "trailing '/' on testcase-alias/ should fail\n"); 71 unittest(!np, "trailing '/' on testcase-alias/ should fail\n");
72 72
73 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a"); 73 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a");
74 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name), 74 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
75 "find testcase-alias/phandle-tests/consumer-a failed\n"); 75 "find testcase-alias/phandle-tests/consumer-a failed\n");
76 of_node_put(np); 76 of_node_put(np);
77 77
78 np = of_find_node_by_path("/testcase-data/missing-path"); 78 np = of_find_node_by_path("/testcase-data/missing-path");
79 selftest(!np, "non-existent path returned node %s\n", np->full_name); 79 unittest(!np, "non-existent path returned node %s\n", np->full_name);
80 of_node_put(np); 80 of_node_put(np);
81 81
82 np = of_find_node_by_path("missing-alias"); 82 np = of_find_node_by_path("missing-alias");
83 selftest(!np, "non-existent alias returned node %s\n", np->full_name); 83 unittest(!np, "non-existent alias returned node %s\n", np->full_name);
84 of_node_put(np); 84 of_node_put(np);
85 85
86 np = of_find_node_by_path("testcase-alias/missing-path"); 86 np = of_find_node_by_path("testcase-alias/missing-path");
87 selftest(!np, "non-existent alias with relative path returned node %s\n", np->full_name); 87 unittest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
88 of_node_put(np); 88 of_node_put(np);
89 89
90 np = of_find_node_opts_by_path("/testcase-data:testoption", &options); 90 np = of_find_node_opts_by_path("/testcase-data:testoption", &options);
91 selftest(np && !strcmp("testoption", options), 91 unittest(np && !strcmp("testoption", options),
92 "option path test failed\n"); 92 "option path test failed\n");
93 of_node_put(np); 93 of_node_put(np);
94 94
95 np = of_find_node_opts_by_path("/testcase-data:test/option", &options); 95 np = of_find_node_opts_by_path("/testcase-data:test/option", &options);
96 selftest(np && !strcmp("test/option", options), 96 unittest(np && !strcmp("test/option", options),
97 "option path test, subcase #1 failed\n"); 97 "option path test, subcase #1 failed\n");
98 of_node_put(np); 98 of_node_put(np);
99 99
100 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options); 100 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options);
101 selftest(np && !strcmp("test/option", options), 101 unittest(np && !strcmp("test/option", options),
102 "option path test, subcase #2 failed\n"); 102 "option path test, subcase #2 failed\n");
103 of_node_put(np); 103 of_node_put(np);
104 104
105 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL); 105 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL);
106 selftest(np, "NULL option path test failed\n"); 106 unittest(np, "NULL option path test failed\n");
107 of_node_put(np); 107 of_node_put(np);
108 108
109 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", 109 np = of_find_node_opts_by_path("testcase-alias:testaliasoption",
110 &options); 110 &options);
111 selftest(np && !strcmp("testaliasoption", options), 111 unittest(np && !strcmp("testaliasoption", options),
112 "option alias path test failed\n"); 112 "option alias path test failed\n");
113 of_node_put(np); 113 of_node_put(np);
114 114
115 np = of_find_node_opts_by_path("testcase-alias:test/alias/option", 115 np = of_find_node_opts_by_path("testcase-alias:test/alias/option",
116 &options); 116 &options);
117 selftest(np && !strcmp("test/alias/option", options), 117 unittest(np && !strcmp("test/alias/option", options),
118 "option alias path test, subcase #1 failed\n"); 118 "option alias path test, subcase #1 failed\n");
119 of_node_put(np); 119 of_node_put(np);
120 120
121 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL); 121 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL);
122 selftest(np, "NULL option alias path test failed\n"); 122 unittest(np, "NULL option alias path test failed\n");
123 of_node_put(np); 123 of_node_put(np);
124 124
125 options = "testoption"; 125 options = "testoption";
126 np = of_find_node_opts_by_path("testcase-alias", &options); 126 np = of_find_node_opts_by_path("testcase-alias", &options);
127 selftest(np && !options, "option clearing test failed\n"); 127 unittest(np && !options, "option clearing test failed\n");
128 of_node_put(np); 128 of_node_put(np);
129 129
130 options = "testoption"; 130 options = "testoption";
131 np = of_find_node_opts_by_path("/", &options); 131 np = of_find_node_opts_by_path("/", &options);
132 selftest(np && !options, "option clearing root node test failed\n"); 132 unittest(np && !options, "option clearing root node test failed\n");
133 of_node_put(np); 133 of_node_put(np);
134} 134}
135 135
136static void __init of_selftest_dynamic(void) 136static void __init of_unittest_dynamic(void)
137{ 137{
138 struct device_node *np; 138 struct device_node *np;
139 struct property *prop; 139 struct property *prop;
@@ -147,7 +147,7 @@ static void __init of_selftest_dynamic(void)
147 /* Array of 4 properties for the purpose of testing */ 147 /* Array of 4 properties for the purpose of testing */
148 prop = kzalloc(sizeof(*prop) * 4, GFP_KERNEL); 148 prop = kzalloc(sizeof(*prop) * 4, GFP_KERNEL);
149 if (!prop) { 149 if (!prop) {
150 selftest(0, "kzalloc() failed\n"); 150 unittest(0, "kzalloc() failed\n");
151 return; 151 return;
152 } 152 }
153 153
@@ -155,20 +155,20 @@ static void __init of_selftest_dynamic(void)
155 prop->name = "new-property"; 155 prop->name = "new-property";
156 prop->value = "new-property-data"; 156 prop->value = "new-property-data";
157 prop->length = strlen(prop->value); 157 prop->length = strlen(prop->value);
158 selftest(of_add_property(np, prop) == 0, "Adding a new property failed\n"); 158 unittest(of_add_property(np, prop) == 0, "Adding a new property failed\n");
159 159
160 /* Try to add an existing property - should fail */ 160 /* Try to add an existing property - should fail */
161 prop++; 161 prop++;
162 prop->name = "new-property"; 162 prop->name = "new-property";
163 prop->value = "new-property-data-should-fail"; 163 prop->value = "new-property-data-should-fail";
164 prop->length = strlen(prop->value); 164 prop->length = strlen(prop->value);
165 selftest(of_add_property(np, prop) != 0, 165 unittest(of_add_property(np, prop) != 0,
166 "Adding an existing property should have failed\n"); 166 "Adding an existing property should have failed\n");
167 167
168 /* Try to modify an existing property - should pass */ 168 /* Try to modify an existing property - should pass */
169 prop->value = "modify-property-data-should-pass"; 169 prop->value = "modify-property-data-should-pass";
170 prop->length = strlen(prop->value); 170 prop->length = strlen(prop->value);
171 selftest(of_update_property(np, prop) == 0, 171 unittest(of_update_property(np, prop) == 0,
172 "Updating an existing property should have passed\n"); 172 "Updating an existing property should have passed\n");
173 173
174 /* Try to modify non-existent property - should pass*/ 174 /* Try to modify non-existent property - should pass*/
@@ -176,11 +176,11 @@ static void __init of_selftest_dynamic(void)
176 prop->name = "modify-property"; 176 prop->name = "modify-property";
177 prop->value = "modify-missing-property-data-should-pass"; 177 prop->value = "modify-missing-property-data-should-pass";
178 prop->length = strlen(prop->value); 178 prop->length = strlen(prop->value);
179 selftest(of_update_property(np, prop) == 0, 179 unittest(of_update_property(np, prop) == 0,
180 "Updating a missing property should have passed\n"); 180 "Updating a missing property should have passed\n");
181 181
182 /* Remove property - should pass */ 182 /* Remove property - should pass */
183 selftest(of_remove_property(np, prop) == 0, 183 unittest(of_remove_property(np, prop) == 0,
184 "Removing a property should have passed\n"); 184 "Removing a property should have passed\n");
185 185
186 /* Adding very large property - should pass */ 186 /* Adding very large property - should pass */
@@ -188,13 +188,13 @@ static void __init of_selftest_dynamic(void)
188 prop->name = "large-property-PAGE_SIZEx8"; 188 prop->name = "large-property-PAGE_SIZEx8";
189 prop->length = PAGE_SIZE * 8; 189 prop->length = PAGE_SIZE * 8;
190 prop->value = kzalloc(prop->length, GFP_KERNEL); 190 prop->value = kzalloc(prop->length, GFP_KERNEL);
191 selftest(prop->value != NULL, "Unable to allocate large buffer\n"); 191 unittest(prop->value != NULL, "Unable to allocate large buffer\n");
192 if (prop->value) 192 if (prop->value)
193 selftest(of_add_property(np, prop) == 0, 193 unittest(of_add_property(np, prop) == 0,
194 "Adding a large property should have passed\n"); 194 "Adding a large property should have passed\n");
195} 195}
196 196
197static int __init of_selftest_check_node_linkage(struct device_node *np) 197static int __init of_unittest_check_node_linkage(struct device_node *np)
198{ 198{
199 struct device_node *child; 199 struct device_node *child;
200 int count = 0, rc; 200 int count = 0, rc;
@@ -206,7 +206,7 @@ static int __init of_selftest_check_node_linkage(struct device_node *np)
206 return -EINVAL; 206 return -EINVAL;
207 } 207 }
208 208
209 rc = of_selftest_check_node_linkage(child); 209 rc = of_unittest_check_node_linkage(child);
210 if (rc < 0) 210 if (rc < 0)
211 return rc; 211 return rc;
212 count += rc; 212 count += rc;
@@ -215,7 +215,7 @@ static int __init of_selftest_check_node_linkage(struct device_node *np)
215 return count + 1; 215 return count + 1;
216} 216}
217 217
218static void __init of_selftest_check_tree_linkage(void) 218static void __init of_unittest_check_tree_linkage(void)
219{ 219{
220 struct device_node *np; 220 struct device_node *np;
221 int allnode_count = 0, child_count; 221 int allnode_count = 0, child_count;
@@ -225,10 +225,10 @@ static void __init of_selftest_check_tree_linkage(void)
225 225
226 for_each_of_allnodes(np) 226 for_each_of_allnodes(np)
227 allnode_count++; 227 allnode_count++;
228 child_count = of_selftest_check_node_linkage(of_root); 228 child_count = of_unittest_check_node_linkage(of_root);
229 229
230 selftest(child_count > 0, "Device node data structure is corrupted\n"); 230 unittest(child_count > 0, "Device node data structure is corrupted\n");
231 selftest(child_count == allnode_count, "allnodes list size (%i) doesn't match" 231 unittest(child_count == allnode_count, "allnodes list size (%i) doesn't match"
232 "sibling lists size (%i)\n", allnode_count, child_count); 232 "sibling lists size (%i)\n", allnode_count, child_count);
233 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count); 233 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count);
234} 234}
@@ -239,7 +239,7 @@ struct node_hash {
239}; 239};
240 240
241static DEFINE_HASHTABLE(phandle_ht, 8); 241static DEFINE_HASHTABLE(phandle_ht, 8);
242static void __init of_selftest_check_phandles(void) 242static void __init of_unittest_check_phandles(void)
243{ 243{
244 struct device_node *np; 244 struct device_node *np;
245 struct node_hash *nh; 245 struct node_hash *nh;
@@ -267,7 +267,7 @@ static void __init of_selftest_check_phandles(void)
267 hash_add(phandle_ht, &nh->node, np->phandle); 267 hash_add(phandle_ht, &nh->node, np->phandle);
268 phandle_count++; 268 phandle_count++;
269 } 269 }
270 selftest(dup_count == 0, "Found %i duplicates in %i phandles\n", 270 unittest(dup_count == 0, "Found %i duplicates in %i phandles\n",
271 dup_count, phandle_count); 271 dup_count, phandle_count);
272 272
273 /* Clean up */ 273 /* Clean up */
@@ -277,7 +277,7 @@ static void __init of_selftest_check_phandles(void)
277 } 277 }
278} 278}
279 279
280static void __init of_selftest_parse_phandle_with_args(void) 280static void __init of_unittest_parse_phandle_with_args(void)
281{ 281{
282 struct device_node *np; 282 struct device_node *np;
283 struct of_phandle_args args; 283 struct of_phandle_args args;
@@ -290,7 +290,7 @@ static void __init of_selftest_parse_phandle_with_args(void)
290 } 290 }
291 291
292 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells"); 292 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells");
293 selftest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc); 293 unittest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc);
294 294
295 for (i = 0; i < 8; i++) { 295 for (i = 0; i < 8; i++) {
296 bool passed = true; 296 bool passed = true;
@@ -342,44 +342,44 @@ static void __init of_selftest_parse_phandle_with_args(void)
342 passed = false; 342 passed = false;
343 } 343 }
344 344
345 selftest(passed, "index %i - data error on node %s rc=%i\n", 345 unittest(passed, "index %i - data error on node %s rc=%i\n",
346 i, args.np->full_name, rc); 346 i, args.np->full_name, rc);
347 } 347 }
348 348
349 /* Check for missing list property */ 349 /* Check for missing list property */
350 rc = of_parse_phandle_with_args(np, "phandle-list-missing", 350 rc = of_parse_phandle_with_args(np, "phandle-list-missing",
351 "#phandle-cells", 0, &args); 351 "#phandle-cells", 0, &args);
352 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc); 352 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
353 rc = of_count_phandle_with_args(np, "phandle-list-missing", 353 rc = of_count_phandle_with_args(np, "phandle-list-missing",
354 "#phandle-cells"); 354 "#phandle-cells");
355 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc); 355 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
356 356
357 /* Check for missing cells property */ 357 /* Check for missing cells property */
358 rc = of_parse_phandle_with_args(np, "phandle-list", 358 rc = of_parse_phandle_with_args(np, "phandle-list",
359 "#phandle-cells-missing", 0, &args); 359 "#phandle-cells-missing", 0, &args);
360 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 360 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
361 rc = of_count_phandle_with_args(np, "phandle-list", 361 rc = of_count_phandle_with_args(np, "phandle-list",
362 "#phandle-cells-missing"); 362 "#phandle-cells-missing");
363 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 363 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
364 364
365 /* Check for bad phandle in list */ 365 /* Check for bad phandle in list */
366 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle", 366 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle",
367 "#phandle-cells", 0, &args); 367 "#phandle-cells", 0, &args);
368 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 368 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
369 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle", 369 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle",
370 "#phandle-cells"); 370 "#phandle-cells");
371 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 371 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
372 372
373 /* Check for incorrectly formed argument list */ 373 /* Check for incorrectly formed argument list */
374 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args", 374 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args",
375 "#phandle-cells", 1, &args); 375 "#phandle-cells", 1, &args);
376 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 376 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
377 rc = of_count_phandle_with_args(np, "phandle-list-bad-args", 377 rc = of_count_phandle_with_args(np, "phandle-list-bad-args",
378 "#phandle-cells"); 378 "#phandle-cells");
379 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 379 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
380} 380}
381 381
382static void __init of_selftest_property_string(void) 382static void __init of_unittest_property_string(void)
383{ 383{
384 const char *strings[4]; 384 const char *strings[4];
385 struct device_node *np; 385 struct device_node *np;
@@ -392,79 +392,79 @@ static void __init of_selftest_property_string(void)
392 } 392 }
393 393
394 rc = of_property_match_string(np, "phandle-list-names", "first"); 394 rc = of_property_match_string(np, "phandle-list-names", "first");
395 selftest(rc == 0, "first expected:0 got:%i\n", rc); 395 unittest(rc == 0, "first expected:0 got:%i\n", rc);
396 rc = of_property_match_string(np, "phandle-list-names", "second"); 396 rc = of_property_match_string(np, "phandle-list-names", "second");
397 selftest(rc == 1, "second expected:1 got:%i\n", rc); 397 unittest(rc == 1, "second expected:1 got:%i\n", rc);
398 rc = of_property_match_string(np, "phandle-list-names", "third"); 398 rc = of_property_match_string(np, "phandle-list-names", "third");
399 selftest(rc == 2, "third expected:2 got:%i\n", rc); 399 unittest(rc == 2, "third expected:2 got:%i\n", rc);
400 rc = of_property_match_string(np, "phandle-list-names", "fourth"); 400 rc = of_property_match_string(np, "phandle-list-names", "fourth");
401 selftest(rc == -ENODATA, "unmatched string; rc=%i\n", rc); 401 unittest(rc == -ENODATA, "unmatched string; rc=%i\n", rc);
402 rc = of_property_match_string(np, "missing-property", "blah"); 402 rc = of_property_match_string(np, "missing-property", "blah");
403 selftest(rc == -EINVAL, "missing property; rc=%i\n", rc); 403 unittest(rc == -EINVAL, "missing property; rc=%i\n", rc);
404 rc = of_property_match_string(np, "empty-property", "blah"); 404 rc = of_property_match_string(np, "empty-property", "blah");
405 selftest(rc == -ENODATA, "empty property; rc=%i\n", rc); 405 unittest(rc == -ENODATA, "empty property; rc=%i\n", rc);
406 rc = of_property_match_string(np, "unterminated-string", "blah"); 406 rc = of_property_match_string(np, "unterminated-string", "blah");
407 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 407 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
408 408
409 /* of_property_count_strings() tests */ 409 /* of_property_count_strings() tests */
410 rc = of_property_count_strings(np, "string-property"); 410 rc = of_property_count_strings(np, "string-property");
411 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc); 411 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc);
412 rc = of_property_count_strings(np, "phandle-list-names"); 412 rc = of_property_count_strings(np, "phandle-list-names");
413 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc); 413 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc);
414 rc = of_property_count_strings(np, "unterminated-string"); 414 rc = of_property_count_strings(np, "unterminated-string");
415 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 415 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
416 rc = of_property_count_strings(np, "unterminated-string-list"); 416 rc = of_property_count_strings(np, "unterminated-string-list");
417 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc); 417 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
418 418
419 /* of_property_read_string_index() tests */ 419 /* of_property_read_string_index() tests */
420 rc = of_property_read_string_index(np, "string-property", 0, strings); 420 rc = of_property_read_string_index(np, "string-property", 0, strings);
421 selftest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc); 421 unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc);
422 strings[0] = NULL; 422 strings[0] = NULL;
423 rc = of_property_read_string_index(np, "string-property", 1, strings); 423 rc = of_property_read_string_index(np, "string-property", 1, strings);
424 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 424 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
425 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings); 425 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings);
426 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc); 426 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
427 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings); 427 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings);
428 selftest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc); 428 unittest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc);
429 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings); 429 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings);
430 selftest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc); 430 unittest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc);
431 strings[0] = NULL; 431 strings[0] = NULL;
432 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings); 432 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings);
433 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 433 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
434 strings[0] = NULL; 434 strings[0] = NULL;
435 rc = of_property_read_string_index(np, "unterminated-string", 0, strings); 435 rc = of_property_read_string_index(np, "unterminated-string", 0, strings);
436 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 436 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
437 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings); 437 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings);
438 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc); 438 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
439 strings[0] = NULL; 439 strings[0] = NULL;
440 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */ 440 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */
441 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 441 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
442 strings[1] = NULL; 442 strings[1] = NULL;
443 443
444 /* of_property_read_string_array() tests */ 444 /* of_property_read_string_array() tests */
445 rc = of_property_read_string_array(np, "string-property", strings, 4); 445 rc = of_property_read_string_array(np, "string-property", strings, 4);
446 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc); 446 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc);
447 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4); 447 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4);
448 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc); 448 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc);
449 rc = of_property_read_string_array(np, "unterminated-string", strings, 4); 449 rc = of_property_read_string_array(np, "unterminated-string", strings, 4);
450 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 450 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
451 /* -- An incorrectly formed string should cause a failure */ 451 /* -- An incorrectly formed string should cause a failure */
452 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4); 452 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4);
453 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc); 453 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
454 /* -- parsing the correctly formed strings should still work: */ 454 /* -- parsing the correctly formed strings should still work: */
455 strings[2] = NULL; 455 strings[2] = NULL;
456 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2); 456 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2);
457 selftest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc); 457 unittest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc);
458 strings[1] = NULL; 458 strings[1] = NULL;
459 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1); 459 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1);
460 selftest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]); 460 unittest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]);
461} 461}
462 462
463#define propcmp(p1, p2) (((p1)->length == (p2)->length) && \ 463#define propcmp(p1, p2) (((p1)->length == (p2)->length) && \
464 (p1)->value && (p2)->value && \ 464 (p1)->value && (p2)->value && \
465 !memcmp((p1)->value, (p2)->value, (p1)->length) && \ 465 !memcmp((p1)->value, (p2)->value, (p1)->length) && \
466 !strcmp((p1)->name, (p2)->name)) 466 !strcmp((p1)->name, (p2)->name))
467static void __init of_selftest_property_copy(void) 467static void __init of_unittest_property_copy(void)
468{ 468{
469#ifdef CONFIG_OF_DYNAMIC 469#ifdef CONFIG_OF_DYNAMIC
470 struct property p1 = { .name = "p1", .length = 0, .value = "" }; 470 struct property p1 = { .name = "p1", .length = 0, .value = "" };
@@ -472,20 +472,20 @@ static void __init of_selftest_property_copy(void)
472 struct property *new; 472 struct property *new;
473 473
474 new = __of_prop_dup(&p1, GFP_KERNEL); 474 new = __of_prop_dup(&p1, GFP_KERNEL);
475 selftest(new && propcmp(&p1, new), "empty property didn't copy correctly\n"); 475 unittest(new && propcmp(&p1, new), "empty property didn't copy correctly\n");
476 kfree(new->value); 476 kfree(new->value);
477 kfree(new->name); 477 kfree(new->name);
478 kfree(new); 478 kfree(new);
479 479
480 new = __of_prop_dup(&p2, GFP_KERNEL); 480 new = __of_prop_dup(&p2, GFP_KERNEL);
481 selftest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n"); 481 unittest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n");
482 kfree(new->value); 482 kfree(new->value);
483 kfree(new->name); 483 kfree(new->name);
484 kfree(new); 484 kfree(new);
485#endif 485#endif
486} 486}
487 487
488static void __init of_selftest_changeset(void) 488static void __init of_unittest_changeset(void)
489{ 489{
490#ifdef CONFIG_OF_DYNAMIC 490#ifdef CONFIG_OF_DYNAMIC
491 struct property *ppadd, padd = { .name = "prop-add", .length = 0, .value = "" }; 491 struct property *ppadd, padd = { .name = "prop-add", .length = 0, .value = "" };
@@ -495,51 +495,51 @@ static void __init of_selftest_changeset(void)
495 struct of_changeset chgset; 495 struct of_changeset chgset;
496 496
497 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1"); 497 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1");
498 selftest(n1, "testcase setup failure\n"); 498 unittest(n1, "testcase setup failure\n");
499 n2 = __of_node_dup(NULL, "/testcase-data/changeset/n2"); 499 n2 = __of_node_dup(NULL, "/testcase-data/changeset/n2");
500 selftest(n2, "testcase setup failure\n"); 500 unittest(n2, "testcase setup failure\n");
501 n21 = __of_node_dup(NULL, "%s/%s", "/testcase-data/changeset/n2", "n21"); 501 n21 = __of_node_dup(NULL, "%s/%s", "/testcase-data/changeset/n2", "n21");
502 selftest(n21, "testcase setup failure %p\n", n21); 502 unittest(n21, "testcase setup failure %p\n", n21);
503 nremove = of_find_node_by_path("/testcase-data/changeset/node-remove"); 503 nremove = of_find_node_by_path("/testcase-data/changeset/node-remove");
504 selftest(nremove, "testcase setup failure\n"); 504 unittest(nremove, "testcase setup failure\n");
505 ppadd = __of_prop_dup(&padd, GFP_KERNEL); 505 ppadd = __of_prop_dup(&padd, GFP_KERNEL);
506 selftest(ppadd, "testcase setup failure\n"); 506 unittest(ppadd, "testcase setup failure\n");
507 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL); 507 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL);
508 selftest(ppupdate, "testcase setup failure\n"); 508 unittest(ppupdate, "testcase setup failure\n");
509 parent = nremove->parent; 509 parent = nremove->parent;
510 n1->parent = parent; 510 n1->parent = parent;
511 n2->parent = parent; 511 n2->parent = parent;
512 n21->parent = n2; 512 n21->parent = n2;
513 n2->child = n21; 513 n2->child = n21;
514 ppremove = of_find_property(parent, "prop-remove", NULL); 514 ppremove = of_find_property(parent, "prop-remove", NULL);
515 selftest(ppremove, "failed to find removal prop"); 515 unittest(ppremove, "failed to find removal prop");
516 516
517 of_changeset_init(&chgset); 517 of_changeset_init(&chgset);
518 selftest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n"); 518 unittest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n");
519 selftest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n"); 519 unittest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n");
520 selftest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n"); 520 unittest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n");
521 selftest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n"); 521 unittest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n");
522 selftest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop\n"); 522 unittest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop\n");
523 selftest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n"); 523 unittest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n");
524 selftest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n"); 524 unittest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n");
525 mutex_lock(&of_mutex); 525 mutex_lock(&of_mutex);
526 selftest(!of_changeset_apply(&chgset), "apply failed\n"); 526 unittest(!of_changeset_apply(&chgset), "apply failed\n");
527 mutex_unlock(&of_mutex); 527 mutex_unlock(&of_mutex);
528 528
529 /* Make sure node names are constructed correctly */ 529 /* Make sure node names are constructed correctly */
530 selftest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")), 530 unittest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")),
531 "'%s' not added\n", n21->full_name); 531 "'%s' not added\n", n21->full_name);
532 of_node_put(np); 532 of_node_put(np);
533 533
534 mutex_lock(&of_mutex); 534 mutex_lock(&of_mutex);
535 selftest(!of_changeset_revert(&chgset), "revert failed\n"); 535 unittest(!of_changeset_revert(&chgset), "revert failed\n");
536 mutex_unlock(&of_mutex); 536 mutex_unlock(&of_mutex);
537 537
538 of_changeset_destroy(&chgset); 538 of_changeset_destroy(&chgset);
539#endif 539#endif
540} 540}
541 541
542static void __init of_selftest_parse_interrupts(void) 542static void __init of_unittest_parse_interrupts(void)
543{ 543{
544 struct device_node *np; 544 struct device_node *np;
545 struct of_phandle_args args; 545 struct of_phandle_args args;
@@ -560,7 +560,7 @@ static void __init of_selftest_parse_interrupts(void)
560 passed &= (args.args_count == 1); 560 passed &= (args.args_count == 1);
561 passed &= (args.args[0] == (i + 1)); 561 passed &= (args.args[0] == (i + 1));
562 562
563 selftest(passed, "index %i - data error on node %s rc=%i\n", 563 unittest(passed, "index %i - data error on node %s rc=%i\n",
564 i, args.np->full_name, rc); 564 i, args.np->full_name, rc);
565 } 565 }
566 of_node_put(np); 566 of_node_put(np);
@@ -605,13 +605,13 @@ static void __init of_selftest_parse_interrupts(void)
605 default: 605 default:
606 passed = false; 606 passed = false;
607 } 607 }
608 selftest(passed, "index %i - data error on node %s rc=%i\n", 608 unittest(passed, "index %i - data error on node %s rc=%i\n",
609 i, args.np->full_name, rc); 609 i, args.np->full_name, rc);
610 } 610 }
611 of_node_put(np); 611 of_node_put(np);
612} 612}
613 613
614static void __init of_selftest_parse_interrupts_extended(void) 614static void __init of_unittest_parse_interrupts_extended(void)
615{ 615{
616 struct device_node *np; 616 struct device_node *np;
617 struct of_phandle_args args; 617 struct of_phandle_args args;
@@ -674,7 +674,7 @@ static void __init of_selftest_parse_interrupts_extended(void)
674 passed = false; 674 passed = false;
675 } 675 }
676 676
677 selftest(passed, "index %i - data error on node %s rc=%i\n", 677 unittest(passed, "index %i - data error on node %s rc=%i\n",
678 i, args.np->full_name, rc); 678 i, args.np->full_name, rc);
679 } 679 }
680 of_node_put(np); 680 of_node_put(np);
@@ -715,7 +715,7 @@ static struct {
715 { .path = "/testcase-data/match-node/name9", .data = "K", }, 715 { .path = "/testcase-data/match-node/name9", .data = "K", },
716}; 716};
717 717
718static void __init of_selftest_match_node(void) 718static void __init of_unittest_match_node(void)
719{ 719{
720 struct device_node *np; 720 struct device_node *np;
721 const struct of_device_id *match; 721 const struct of_device_id *match;
@@ -724,32 +724,32 @@ static void __init of_selftest_match_node(void)
724 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) { 724 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) {
725 np = of_find_node_by_path(match_node_tests[i].path); 725 np = of_find_node_by_path(match_node_tests[i].path);
726 if (!np) { 726 if (!np) {
727 selftest(0, "missing testcase node %s\n", 727 unittest(0, "missing testcase node %s\n",
728 match_node_tests[i].path); 728 match_node_tests[i].path);
729 continue; 729 continue;
730 } 730 }
731 731
732 match = of_match_node(match_node_table, np); 732 match = of_match_node(match_node_table, np);
733 if (!match) { 733 if (!match) {
734 selftest(0, "%s didn't match anything\n", 734 unittest(0, "%s didn't match anything\n",
735 match_node_tests[i].path); 735 match_node_tests[i].path);
736 continue; 736 continue;
737 } 737 }
738 738
739 if (strcmp(match->data, match_node_tests[i].data) != 0) { 739 if (strcmp(match->data, match_node_tests[i].data) != 0) {
740 selftest(0, "%s got wrong match. expected %s, got %s\n", 740 unittest(0, "%s got wrong match. expected %s, got %s\n",
741 match_node_tests[i].path, match_node_tests[i].data, 741 match_node_tests[i].path, match_node_tests[i].data,
742 (const char *)match->data); 742 (const char *)match->data);
743 continue; 743 continue;
744 } 744 }
745 selftest(1, "passed"); 745 unittest(1, "passed");
746 } 746 }
747} 747}
748 748
749struct device test_bus = { 749struct device test_bus = {
750 .init_name = "unittest-bus", 750 .init_name = "unittest-bus",
751}; 751};
752static void __init of_selftest_platform_populate(void) 752static void __init of_unittest_platform_populate(void)
753{ 753{
754 int irq, rc; 754 int irq, rc;
755 struct device_node *np, *child, *grandchild; 755 struct device_node *np, *child, *grandchild;
@@ -765,30 +765,30 @@ static void __init of_selftest_platform_populate(void)
765 /* Test that a missing irq domain returns -EPROBE_DEFER */ 765 /* Test that a missing irq domain returns -EPROBE_DEFER */
766 np = of_find_node_by_path("/testcase-data/testcase-device1"); 766 np = of_find_node_by_path("/testcase-data/testcase-device1");
767 pdev = of_find_device_by_node(np); 767 pdev = of_find_device_by_node(np);
768 selftest(pdev, "device 1 creation failed\n"); 768 unittest(pdev, "device 1 creation failed\n");
769 769
770 irq = platform_get_irq(pdev, 0); 770 irq = platform_get_irq(pdev, 0);
771 selftest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq); 771 unittest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
772 772
773 /* Test that a parsing failure does not return -EPROBE_DEFER */ 773 /* Test that a parsing failure does not return -EPROBE_DEFER */
774 np = of_find_node_by_path("/testcase-data/testcase-device2"); 774 np = of_find_node_by_path("/testcase-data/testcase-device2");
775 pdev = of_find_device_by_node(np); 775 pdev = of_find_device_by_node(np);
776 selftest(pdev, "device 2 creation failed\n"); 776 unittest(pdev, "device 2 creation failed\n");
777 irq = platform_get_irq(pdev, 0); 777 irq = platform_get_irq(pdev, 0);
778 selftest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq); 778 unittest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
779 779
780 if (selftest(np = of_find_node_by_path("/testcase-data/platform-tests"), 780 if (unittest(np = of_find_node_by_path("/testcase-data/platform-tests"),
781 "No testcase data in device tree\n")); 781 "No testcase data in device tree\n"));
782 return; 782 return;
783 783
784 if (selftest(!(rc = device_register(&test_bus)), 784 if (unittest(!(rc = device_register(&test_bus)),
785 "testbus registration failed; rc=%i\n", rc)); 785 "testbus registration failed; rc=%i\n", rc));
786 return; 786 return;
787 787
788 for_each_child_of_node(np, child) { 788 for_each_child_of_node(np, child) {
789 of_platform_populate(child, match, NULL, &test_bus); 789 of_platform_populate(child, match, NULL, &test_bus);
790 for_each_child_of_node(child, grandchild) 790 for_each_child_of_node(child, grandchild)
791 selftest(of_find_device_by_node(grandchild), 791 unittest(of_find_device_by_node(grandchild),
792 "Could not create device for node '%s'\n", 792 "Could not create device for node '%s'\n",
793 grandchild->name); 793 grandchild->name);
794 } 794 }
@@ -796,7 +796,7 @@ static void __init of_selftest_platform_populate(void)
796 of_platform_depopulate(&test_bus); 796 of_platform_depopulate(&test_bus);
797 for_each_child_of_node(np, child) { 797 for_each_child_of_node(np, child) {
798 for_each_child_of_node(child, grandchild) 798 for_each_child_of_node(child, grandchild)
799 selftest(!of_find_device_by_node(grandchild), 799 unittest(!of_find_device_by_node(grandchild),
800 "device didn't get destroyed '%s'\n", 800 "device didn't get destroyed '%s'\n",
801 grandchild->name); 801 grandchild->name);
802 } 802 }
@@ -866,13 +866,13 @@ static int attach_node_and_children(struct device_node *np)
866} 866}
867 867
868/** 868/**
869 * selftest_data_add - Reads, copies data from 869 * unittest_data_add - Reads, copies data from
870 * linked tree and attaches it to the live tree 870 * linked tree and attaches it to the live tree
871 */ 871 */
872static int __init selftest_data_add(void) 872static int __init unittest_data_add(void)
873{ 873{
874 void *selftest_data; 874 void *unittest_data;
875 struct device_node *selftest_data_node, *np; 875 struct device_node *unittest_data_node, *np;
876 extern uint8_t __dtb_testcases_begin[]; 876 extern uint8_t __dtb_testcases_begin[];
877 extern uint8_t __dtb_testcases_end[]; 877 extern uint8_t __dtb_testcases_end[];
878 const int size = __dtb_testcases_end - __dtb_testcases_begin; 878 const int size = __dtb_testcases_end - __dtb_testcases_begin;
@@ -885,27 +885,27 @@ static int __init selftest_data_add(void)
885 } 885 }
886 886
887 /* creating copy */ 887 /* creating copy */
888 selftest_data = kmemdup(__dtb_testcases_begin, size, GFP_KERNEL); 888 unittest_data = kmemdup(__dtb_testcases_begin, size, GFP_KERNEL);
889 889
890 if (!selftest_data) { 890 if (!unittest_data) {
891 pr_warn("%s: Failed to allocate memory for selftest_data; " 891 pr_warn("%s: Failed to allocate memory for unittest_data; "
892 "not running tests\n", __func__); 892 "not running tests\n", __func__);
893 return -ENOMEM; 893 return -ENOMEM;
894 } 894 }
895 of_fdt_unflatten_tree(selftest_data, &selftest_data_node); 895 of_fdt_unflatten_tree(unittest_data, &unittest_data_node);
896 if (!selftest_data_node) { 896 if (!unittest_data_node) {
897 pr_warn("%s: No tree to attach; not running tests\n", __func__); 897 pr_warn("%s: No tree to attach; not running tests\n", __func__);
898 return -ENODATA; 898 return -ENODATA;
899 } 899 }
900 of_node_set_flag(selftest_data_node, OF_DETACHED); 900 of_node_set_flag(unittest_data_node, OF_DETACHED);
901 rc = of_resolve_phandles(selftest_data_node); 901 rc = of_resolve_phandles(unittest_data_node);
902 if (rc) { 902 if (rc) {
903 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc); 903 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc);
904 return -EINVAL; 904 return -EINVAL;
905 } 905 }
906 906
907 if (!of_root) { 907 if (!of_root) {
908 of_root = selftest_data_node; 908 of_root = unittest_data_node;
909 for_each_of_allnodes(np) 909 for_each_of_allnodes(np)
910 __of_attach_node_sysfs(np); 910 __of_attach_node_sysfs(np);
911 of_aliases = of_find_node_by_path("/aliases"); 911 of_aliases = of_find_node_by_path("/aliases");
@@ -914,7 +914,7 @@ static int __init selftest_data_add(void)
914 } 914 }
915 915
916 /* attach the sub-tree to live tree */ 916 /* attach the sub-tree to live tree */
917 np = selftest_data_node->child; 917 np = unittest_data_node->child;
918 while (np) { 918 while (np) {
919 struct device_node *next = np->sibling; 919 struct device_node *next = np->sibling;
920 np->parent = of_root; 920 np->parent = of_root;
@@ -926,7 +926,7 @@ static int __init selftest_data_add(void)
926 926
927#ifdef CONFIG_OF_OVERLAY 927#ifdef CONFIG_OF_OVERLAY
928 928
929static int selftest_probe(struct platform_device *pdev) 929static int unittest_probe(struct platform_device *pdev)
930{ 930{
931 struct device *dev = &pdev->dev; 931 struct device *dev = &pdev->dev;
932 struct device_node *np = dev->of_node; 932 struct device_node *np = dev->of_node;
@@ -944,7 +944,7 @@ static int selftest_probe(struct platform_device *pdev)
944 return 0; 944 return 0;
945} 945}
946 946
947static int selftest_remove(struct platform_device *pdev) 947static int unittest_remove(struct platform_device *pdev)
948{ 948{
949 struct device *dev = &pdev->dev; 949 struct device *dev = &pdev->dev;
950 struct device_node *np = dev->of_node; 950 struct device_node *np = dev->of_node;
@@ -953,18 +953,18 @@ static int selftest_remove(struct platform_device *pdev)
953 return 0; 953 return 0;
954} 954}
955 955
956static struct of_device_id selftest_match[] = { 956static struct of_device_id unittest_match[] = {
957 { .compatible = "selftest", }, 957 { .compatible = "unittest", },
958 {}, 958 {},
959}; 959};
960 960
961static struct platform_driver selftest_driver = { 961static struct platform_driver unittest_driver = {
962 .probe = selftest_probe, 962 .probe = unittest_probe,
963 .remove = selftest_remove, 963 .remove = unittest_remove,
964 .driver = { 964 .driver = {
965 .name = "selftest", 965 .name = "unittest",
966 .owner = THIS_MODULE, 966 .owner = THIS_MODULE,
967 .of_match_table = of_match_ptr(selftest_match), 967 .of_match_table = of_match_ptr(unittest_match),
968 }, 968 },
969}; 969};
970 970
@@ -1046,7 +1046,7 @@ static int of_path_device_type_exists(const char *path,
1046 return 0; 1046 return 0;
1047} 1047}
1048 1048
1049static const char *selftest_path(int nr, enum overlay_type ovtype) 1049static const char *unittest_path(int nr, enum overlay_type ovtype)
1050{ 1050{
1051 const char *base; 1051 const char *base;
1052 static char buf[256]; 1052 static char buf[256];
@@ -1062,16 +1062,16 @@ static const char *selftest_path(int nr, enum overlay_type ovtype)
1062 buf[0] = '\0'; 1062 buf[0] = '\0';
1063 return buf; 1063 return buf;
1064 } 1064 }
1065 snprintf(buf, sizeof(buf) - 1, "%s/test-selftest%d", base, nr); 1065 snprintf(buf, sizeof(buf) - 1, "%s/test-unittest%d", base, nr);
1066 buf[sizeof(buf) - 1] = '\0'; 1066 buf[sizeof(buf) - 1] = '\0';
1067 return buf; 1067 return buf;
1068} 1068}
1069 1069
1070static int of_selftest_device_exists(int selftest_nr, enum overlay_type ovtype) 1070static int of_unittest_device_exists(int unittest_nr, enum overlay_type ovtype)
1071{ 1071{
1072 const char *path; 1072 const char *path;
1073 1073
1074 path = selftest_path(selftest_nr, ovtype); 1074 path = unittest_path(unittest_nr, ovtype);
1075 1075
1076 switch (ovtype) { 1076 switch (ovtype) {
1077 case PDEV_OVERLAY: 1077 case PDEV_OVERLAY:
@@ -1095,7 +1095,7 @@ static const char *overlay_path(int nr)
1095 1095
1096static const char *bus_path = "/testcase-data/overlay-node/test-bus"; 1096static const char *bus_path = "/testcase-data/overlay-node/test-bus";
1097 1097
1098static int of_selftest_apply_overlay(int selftest_nr, int overlay_nr, 1098static int of_unittest_apply_overlay(int unittest_nr, int overlay_nr,
1099 int *overlay_id) 1099 int *overlay_id)
1100{ 1100{
1101 struct device_node *np = NULL; 1101 struct device_node *np = NULL;
@@ -1103,7 +1103,7 @@ static int of_selftest_apply_overlay(int selftest_nr, int overlay_nr,
1103 1103
1104 np = of_find_node_by_path(overlay_path(overlay_nr)); 1104 np = of_find_node_by_path(overlay_path(overlay_nr));
1105 if (np == NULL) { 1105 if (np == NULL) {
1106 selftest(0, "could not find overlay node @\"%s\"\n", 1106 unittest(0, "could not find overlay node @\"%s\"\n",
1107 overlay_path(overlay_nr)); 1107 overlay_path(overlay_nr));
1108 ret = -EINVAL; 1108 ret = -EINVAL;
1109 goto out; 1109 goto out;
@@ -1111,7 +1111,7 @@ static int of_selftest_apply_overlay(int selftest_nr, int overlay_nr,
1111 1111
1112 ret = of_overlay_create(np); 1112 ret = of_overlay_create(np);
1113 if (ret < 0) { 1113 if (ret < 0) {
1114 selftest(0, "could not create overlay from \"%s\"\n", 1114 unittest(0, "could not create overlay from \"%s\"\n",
1115 overlay_path(overlay_nr)); 1115 overlay_path(overlay_nr));
1116 goto out; 1116 goto out;
1117 } 1117 }
@@ -1129,31 +1129,31 @@ out:
1129} 1129}
1130 1130
1131/* apply an overlay while checking before and after states */ 1131/* apply an overlay while checking before and after states */
1132static int of_selftest_apply_overlay_check(int overlay_nr, int selftest_nr, 1132static int of_unittest_apply_overlay_check(int overlay_nr, int unittest_nr,
1133 int before, int after, enum overlay_type ovtype) 1133 int before, int after, enum overlay_type ovtype)
1134{ 1134{
1135 int ret; 1135 int ret;
1136 1136
1137 /* selftest device must not be in before state */ 1137 /* unittest device must not be in before state */
1138 if (of_selftest_device_exists(selftest_nr, ovtype) != before) { 1138 if (of_unittest_device_exists(unittest_nr, ovtype) != before) {
1139 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n", 1139 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1140 overlay_path(overlay_nr), 1140 overlay_path(overlay_nr),
1141 selftest_path(selftest_nr, ovtype), 1141 unittest_path(unittest_nr, ovtype),
1142 !before ? "enabled" : "disabled"); 1142 !before ? "enabled" : "disabled");
1143 return -EINVAL; 1143 return -EINVAL;
1144 } 1144 }
1145 1145
1146 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, NULL); 1146 ret = of_unittest_apply_overlay(overlay_nr, unittest_nr, NULL);
1147 if (ret != 0) { 1147 if (ret != 0) {
1148 /* of_selftest_apply_overlay already called selftest() */ 1148 /* of_unittest_apply_overlay already called unittest() */
1149 return ret; 1149 return ret;
1150 } 1150 }
1151 1151
1152 /* selftest device must be to set to after state */ 1152 /* unittest device must be to set to after state */
1153 if (of_selftest_device_exists(selftest_nr, ovtype) != after) { 1153 if (of_unittest_device_exists(unittest_nr, ovtype) != after) {
1154 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n", 1154 unittest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1155 overlay_path(overlay_nr), 1155 overlay_path(overlay_nr),
1156 selftest_path(selftest_nr, ovtype), 1156 unittest_path(unittest_nr, ovtype),
1157 !after ? "enabled" : "disabled"); 1157 !after ? "enabled" : "disabled");
1158 return -EINVAL; 1158 return -EINVAL;
1159 } 1159 }
@@ -1162,50 +1162,50 @@ static int of_selftest_apply_overlay_check(int overlay_nr, int selftest_nr,
1162} 1162}
1163 1163
1164/* apply an overlay and then revert it while checking before, after states */ 1164/* apply an overlay and then revert it while checking before, after states */
1165static int of_selftest_apply_revert_overlay_check(int overlay_nr, 1165static int of_unittest_apply_revert_overlay_check(int overlay_nr,
1166 int selftest_nr, int before, int after, 1166 int unittest_nr, int before, int after,
1167 enum overlay_type ovtype) 1167 enum overlay_type ovtype)
1168{ 1168{
1169 int ret, ov_id; 1169 int ret, ov_id;
1170 1170
1171 /* selftest device must be in before state */ 1171 /* unittest device must be in before state */
1172 if (of_selftest_device_exists(selftest_nr, ovtype) != before) { 1172 if (of_unittest_device_exists(unittest_nr, ovtype) != before) {
1173 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n", 1173 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1174 overlay_path(overlay_nr), 1174 overlay_path(overlay_nr),
1175 selftest_path(selftest_nr, ovtype), 1175 unittest_path(unittest_nr, ovtype),
1176 !before ? "enabled" : "disabled"); 1176 !before ? "enabled" : "disabled");
1177 return -EINVAL; 1177 return -EINVAL;
1178 } 1178 }
1179 1179
1180 /* apply the overlay */ 1180 /* apply the overlay */
1181 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, &ov_id); 1181 ret = of_unittest_apply_overlay(overlay_nr, unittest_nr, &ov_id);
1182 if (ret != 0) { 1182 if (ret != 0) {
1183 /* of_selftest_apply_overlay already called selftest() */ 1183 /* of_unittest_apply_overlay already called unittest() */
1184 return ret; 1184 return ret;
1185 } 1185 }
1186 1186
1187 /* selftest device must be in after state */ 1187 /* unittest device must be in after state */
1188 if (of_selftest_device_exists(selftest_nr, ovtype) != after) { 1188 if (of_unittest_device_exists(unittest_nr, ovtype) != after) {
1189 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n", 1189 unittest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1190 overlay_path(overlay_nr), 1190 overlay_path(overlay_nr),
1191 selftest_path(selftest_nr, ovtype), 1191 unittest_path(unittest_nr, ovtype),
1192 !after ? "enabled" : "disabled"); 1192 !after ? "enabled" : "disabled");
1193 return -EINVAL; 1193 return -EINVAL;
1194 } 1194 }
1195 1195
1196 ret = of_overlay_destroy(ov_id); 1196 ret = of_overlay_destroy(ov_id);
1197 if (ret != 0) { 1197 if (ret != 0) {
1198 selftest(0, "overlay @\"%s\" failed to be destroyed @\"%s\"\n", 1198 unittest(0, "overlay @\"%s\" failed to be destroyed @\"%s\"\n",
1199 overlay_path(overlay_nr), 1199 overlay_path(overlay_nr),
1200 selftest_path(selftest_nr, ovtype)); 1200 unittest_path(unittest_nr, ovtype));
1201 return ret; 1201 return ret;
1202 } 1202 }
1203 1203
1204 /* selftest device must be again in before state */ 1204 /* unittest device must be again in before state */
1205 if (of_selftest_device_exists(selftest_nr, PDEV_OVERLAY) != before) { 1205 if (of_unittest_device_exists(unittest_nr, PDEV_OVERLAY) != before) {
1206 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n", 1206 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1207 overlay_path(overlay_nr), 1207 overlay_path(overlay_nr),
1208 selftest_path(selftest_nr, ovtype), 1208 unittest_path(unittest_nr, ovtype),
1209 !before ? "enabled" : "disabled"); 1209 !before ? "enabled" : "disabled");
1210 return -EINVAL; 1210 return -EINVAL;
1211 } 1211 }
@@ -1214,98 +1214,98 @@ static int of_selftest_apply_revert_overlay_check(int overlay_nr,
1214} 1214}
1215 1215
1216/* test activation of device */ 1216/* test activation of device */
1217static void of_selftest_overlay_0(void) 1217static void of_unittest_overlay_0(void)
1218{ 1218{
1219 int ret; 1219 int ret;
1220 1220
1221 /* device should enable */ 1221 /* device should enable */
1222 ret = of_selftest_apply_overlay_check(0, 0, 0, 1, PDEV_OVERLAY); 1222 ret = of_unittest_apply_overlay_check(0, 0, 0, 1, PDEV_OVERLAY);
1223 if (ret != 0) 1223 if (ret != 0)
1224 return; 1224 return;
1225 1225
1226 selftest(1, "overlay test %d passed\n", 0); 1226 unittest(1, "overlay test %d passed\n", 0);
1227} 1227}
1228 1228
1229/* test deactivation of device */ 1229/* test deactivation of device */
1230static void of_selftest_overlay_1(void) 1230static void of_unittest_overlay_1(void)
1231{ 1231{
1232 int ret; 1232 int ret;
1233 1233
1234 /* device should disable */ 1234 /* device should disable */
1235 ret = of_selftest_apply_overlay_check(1, 1, 1, 0, PDEV_OVERLAY); 1235 ret = of_unittest_apply_overlay_check(1, 1, 1, 0, PDEV_OVERLAY);
1236 if (ret != 0) 1236 if (ret != 0)
1237 return; 1237 return;
1238 1238
1239 selftest(1, "overlay test %d passed\n", 1); 1239 unittest(1, "overlay test %d passed\n", 1);
1240} 1240}
1241 1241
1242/* test activation of device */ 1242/* test activation of device */
1243static void of_selftest_overlay_2(void) 1243static void of_unittest_overlay_2(void)
1244{ 1244{
1245 int ret; 1245 int ret;
1246 1246
1247 /* device should enable */ 1247 /* device should enable */
1248 ret = of_selftest_apply_overlay_check(2, 2, 0, 1, PDEV_OVERLAY); 1248 ret = of_unittest_apply_overlay_check(2, 2, 0, 1, PDEV_OVERLAY);
1249 if (ret != 0) 1249 if (ret != 0)
1250 return; 1250 return;
1251 1251
1252 selftest(1, "overlay test %d passed\n", 2); 1252 unittest(1, "overlay test %d passed\n", 2);
1253} 1253}
1254 1254
1255/* test deactivation of device */ 1255/* test deactivation of device */
1256static void of_selftest_overlay_3(void) 1256static void of_unittest_overlay_3(void)
1257{ 1257{
1258 int ret; 1258 int ret;
1259 1259
1260 /* device should disable */ 1260 /* device should disable */
1261 ret = of_selftest_apply_overlay_check(3, 3, 1, 0, PDEV_OVERLAY); 1261 ret = of_unittest_apply_overlay_check(3, 3, 1, 0, PDEV_OVERLAY);
1262 if (ret != 0) 1262 if (ret != 0)
1263 return; 1263 return;
1264 1264
1265 selftest(1, "overlay test %d passed\n", 3); 1265 unittest(1, "overlay test %d passed\n", 3);
1266} 1266}
1267 1267
1268/* test activation of a full device node */ 1268/* test activation of a full device node */
1269static void of_selftest_overlay_4(void) 1269static void of_unittest_overlay_4(void)
1270{ 1270{
1271 int ret; 1271 int ret;
1272 1272
1273 /* device should disable */ 1273 /* device should disable */
1274 ret = of_selftest_apply_overlay_check(4, 4, 0, 1, PDEV_OVERLAY); 1274 ret = of_unittest_apply_overlay_check(4, 4, 0, 1, PDEV_OVERLAY);
1275 if (ret != 0) 1275 if (ret != 0)
1276 return; 1276 return;
1277 1277
1278 selftest(1, "overlay test %d passed\n", 4); 1278 unittest(1, "overlay test %d passed\n", 4);
1279} 1279}
1280 1280
1281/* test overlay apply/revert sequence */ 1281/* test overlay apply/revert sequence */
1282static void of_selftest_overlay_5(void) 1282static void of_unittest_overlay_5(void)
1283{ 1283{
1284 int ret; 1284 int ret;
1285 1285
1286 /* device should disable */ 1286 /* device should disable */
1287 ret = of_selftest_apply_revert_overlay_check(5, 5, 0, 1, PDEV_OVERLAY); 1287 ret = of_unittest_apply_revert_overlay_check(5, 5, 0, 1, PDEV_OVERLAY);
1288 if (ret != 0) 1288 if (ret != 0)
1289 return; 1289 return;
1290 1290
1291 selftest(1, "overlay test %d passed\n", 5); 1291 unittest(1, "overlay test %d passed\n", 5);
1292} 1292}
1293 1293
1294/* test overlay application in sequence */ 1294/* test overlay application in sequence */
1295static void of_selftest_overlay_6(void) 1295static void of_unittest_overlay_6(void)
1296{ 1296{
1297 struct device_node *np; 1297 struct device_node *np;
1298 int ret, i, ov_id[2]; 1298 int ret, i, ov_id[2];
1299 int overlay_nr = 6, selftest_nr = 6; 1299 int overlay_nr = 6, unittest_nr = 6;
1300 int before = 0, after = 1; 1300 int before = 0, after = 1;
1301 1301
1302 /* selftest device must be in before state */ 1302 /* unittest device must be in before state */
1303 for (i = 0; i < 2; i++) { 1303 for (i = 0; i < 2; i++) {
1304 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY) 1304 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1305 != before) { 1305 != before) {
1306 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n", 1306 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1307 overlay_path(overlay_nr + i), 1307 overlay_path(overlay_nr + i),
1308 selftest_path(selftest_nr + i, 1308 unittest_path(unittest_nr + i,
1309 PDEV_OVERLAY), 1309 PDEV_OVERLAY),
1310 !before ? "enabled" : "disabled"); 1310 !before ? "enabled" : "disabled");
1311 return; 1311 return;
@@ -1317,14 +1317,14 @@ static void of_selftest_overlay_6(void)
1317 1317
1318 np = of_find_node_by_path(overlay_path(overlay_nr + i)); 1318 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1319 if (np == NULL) { 1319 if (np == NULL) {
1320 selftest(0, "could not find overlay node @\"%s\"\n", 1320 unittest(0, "could not find overlay node @\"%s\"\n",
1321 overlay_path(overlay_nr + i)); 1321 overlay_path(overlay_nr + i));
1322 return; 1322 return;
1323 } 1323 }
1324 1324
1325 ret = of_overlay_create(np); 1325 ret = of_overlay_create(np);
1326 if (ret < 0) { 1326 if (ret < 0) {
1327 selftest(0, "could not create overlay from \"%s\"\n", 1327 unittest(0, "could not create overlay from \"%s\"\n",
1328 overlay_path(overlay_nr + i)); 1328 overlay_path(overlay_nr + i));
1329 return; 1329 return;
1330 } 1330 }
@@ -1332,12 +1332,12 @@ static void of_selftest_overlay_6(void)
1332 } 1332 }
1333 1333
1334 for (i = 0; i < 2; i++) { 1334 for (i = 0; i < 2; i++) {
1335 /* selftest device must be in after state */ 1335 /* unittest device must be in after state */
1336 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY) 1336 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1337 != after) { 1337 != after) {
1338 selftest(0, "overlay @\"%s\" failed @\"%s\" %s\n", 1338 unittest(0, "overlay @\"%s\" failed @\"%s\" %s\n",
1339 overlay_path(overlay_nr + i), 1339 overlay_path(overlay_nr + i),
1340 selftest_path(selftest_nr + i, 1340 unittest_path(unittest_nr + i,
1341 PDEV_OVERLAY), 1341 PDEV_OVERLAY),
1342 !after ? "enabled" : "disabled"); 1342 !after ? "enabled" : "disabled");
1343 return; 1343 return;
@@ -1347,36 +1347,36 @@ static void of_selftest_overlay_6(void)
1347 for (i = 1; i >= 0; i--) { 1347 for (i = 1; i >= 0; i--) {
1348 ret = of_overlay_destroy(ov_id[i]); 1348 ret = of_overlay_destroy(ov_id[i]);
1349 if (ret != 0) { 1349 if (ret != 0) {
1350 selftest(0, "overlay @\"%s\" failed destroy @\"%s\"\n", 1350 unittest(0, "overlay @\"%s\" failed destroy @\"%s\"\n",
1351 overlay_path(overlay_nr + i), 1351 overlay_path(overlay_nr + i),
1352 selftest_path(selftest_nr + i, 1352 unittest_path(unittest_nr + i,
1353 PDEV_OVERLAY)); 1353 PDEV_OVERLAY));
1354 return; 1354 return;
1355 } 1355 }
1356 } 1356 }
1357 1357
1358 for (i = 0; i < 2; i++) { 1358 for (i = 0; i < 2; i++) {
1359 /* selftest device must be again in before state */ 1359 /* unittest device must be again in before state */
1360 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY) 1360 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1361 != before) { 1361 != before) {
1362 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n", 1362 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1363 overlay_path(overlay_nr + i), 1363 overlay_path(overlay_nr + i),
1364 selftest_path(selftest_nr + i, 1364 unittest_path(unittest_nr + i,
1365 PDEV_OVERLAY), 1365 PDEV_OVERLAY),
1366 !before ? "enabled" : "disabled"); 1366 !before ? "enabled" : "disabled");
1367 return; 1367 return;
1368 } 1368 }
1369 } 1369 }
1370 1370
1371 selftest(1, "overlay test %d passed\n", 6); 1371 unittest(1, "overlay test %d passed\n", 6);
1372} 1372}
1373 1373
1374/* test overlay application in sequence */ 1374/* test overlay application in sequence */
1375static void of_selftest_overlay_8(void) 1375static void of_unittest_overlay_8(void)
1376{ 1376{
1377 struct device_node *np; 1377 struct device_node *np;
1378 int ret, i, ov_id[2]; 1378 int ret, i, ov_id[2];
1379 int overlay_nr = 8, selftest_nr = 8; 1379 int overlay_nr = 8, unittest_nr = 8;
1380 1380
1381 /* we don't care about device state in this test */ 1381 /* we don't care about device state in this test */
1382 1382
@@ -1385,14 +1385,14 @@ static void of_selftest_overlay_8(void)
1385 1385
1386 np = of_find_node_by_path(overlay_path(overlay_nr + i)); 1386 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1387 if (np == NULL) { 1387 if (np == NULL) {
1388 selftest(0, "could not find overlay node @\"%s\"\n", 1388 unittest(0, "could not find overlay node @\"%s\"\n",
1389 overlay_path(overlay_nr + i)); 1389 overlay_path(overlay_nr + i));
1390 return; 1390 return;
1391 } 1391 }
1392 1392
1393 ret = of_overlay_create(np); 1393 ret = of_overlay_create(np);
1394 if (ret < 0) { 1394 if (ret < 0) {
1395 selftest(0, "could not create overlay from \"%s\"\n", 1395 unittest(0, "could not create overlay from \"%s\"\n",
1396 overlay_path(overlay_nr + i)); 1396 overlay_path(overlay_nr + i));
1397 return; 1397 return;
1398 } 1398 }
@@ -1402,9 +1402,9 @@ static void of_selftest_overlay_8(void)
1402 /* now try to remove first overlay (it should fail) */ 1402 /* now try to remove first overlay (it should fail) */
1403 ret = of_overlay_destroy(ov_id[0]); 1403 ret = of_overlay_destroy(ov_id[0]);
1404 if (ret == 0) { 1404 if (ret == 0) {
1405 selftest(0, "overlay @\"%s\" was destroyed @\"%s\"\n", 1405 unittest(0, "overlay @\"%s\" was destroyed @\"%s\"\n",
1406 overlay_path(overlay_nr + 0), 1406 overlay_path(overlay_nr + 0),
1407 selftest_path(selftest_nr, 1407 unittest_path(unittest_nr,
1408 PDEV_OVERLAY)); 1408 PDEV_OVERLAY));
1409 return; 1409 return;
1410 } 1410 }
@@ -1413,85 +1413,85 @@ static void of_selftest_overlay_8(void)
1413 for (i = 1; i >= 0; i--) { 1413 for (i = 1; i >= 0; i--) {
1414 ret = of_overlay_destroy(ov_id[i]); 1414 ret = of_overlay_destroy(ov_id[i]);
1415 if (ret != 0) { 1415 if (ret != 0) {
1416 selftest(0, "overlay @\"%s\" not destroyed @\"%s\"\n", 1416 unittest(0, "overlay @\"%s\" not destroyed @\"%s\"\n",
1417 overlay_path(overlay_nr + i), 1417 overlay_path(overlay_nr + i),
1418 selftest_path(selftest_nr, 1418 unittest_path(unittest_nr,
1419 PDEV_OVERLAY)); 1419 PDEV_OVERLAY));
1420 return; 1420 return;
1421 } 1421 }
1422 } 1422 }
1423 1423
1424 selftest(1, "overlay test %d passed\n", 8); 1424 unittest(1, "overlay test %d passed\n", 8);
1425} 1425}
1426 1426
1427/* test insertion of a bus with parent devices */ 1427/* test insertion of a bus with parent devices */
1428static void of_selftest_overlay_10(void) 1428static void of_unittest_overlay_10(void)
1429{ 1429{
1430 int ret; 1430 int ret;
1431 char *child_path; 1431 char *child_path;
1432 1432
1433 /* device should disable */ 1433 /* device should disable */
1434 ret = of_selftest_apply_overlay_check(10, 10, 0, 1, PDEV_OVERLAY); 1434 ret = of_unittest_apply_overlay_check(10, 10, 0, 1, PDEV_OVERLAY);
1435 if (selftest(ret == 0, 1435 if (unittest(ret == 0,
1436 "overlay test %d failed; overlay application\n", 10)) 1436 "overlay test %d failed; overlay application\n", 10))
1437 return; 1437 return;
1438 1438
1439 child_path = kasprintf(GFP_KERNEL, "%s/test-selftest101", 1439 child_path = kasprintf(GFP_KERNEL, "%s/test-unittest101",
1440 selftest_path(10, PDEV_OVERLAY)); 1440 unittest_path(10, PDEV_OVERLAY));
1441 if (selftest(child_path, "overlay test %d failed; kasprintf\n", 10)) 1441 if (unittest(child_path, "overlay test %d failed; kasprintf\n", 10))
1442 return; 1442 return;
1443 1443
1444 ret = of_path_device_type_exists(child_path, PDEV_OVERLAY); 1444 ret = of_path_device_type_exists(child_path, PDEV_OVERLAY);
1445 kfree(child_path); 1445 kfree(child_path);
1446 if (selftest(ret, "overlay test %d failed; no child device\n", 10)) 1446 if (unittest(ret, "overlay test %d failed; no child device\n", 10))
1447 return; 1447 return;
1448} 1448}
1449 1449
1450/* test insertion of a bus with parent devices (and revert) */ 1450/* test insertion of a bus with parent devices (and revert) */
1451static void of_selftest_overlay_11(void) 1451static void of_unittest_overlay_11(void)
1452{ 1452{
1453 int ret; 1453 int ret;
1454 1454
1455 /* device should disable */ 1455 /* device should disable */
1456 ret = of_selftest_apply_revert_overlay_check(11, 11, 0, 1, 1456 ret = of_unittest_apply_revert_overlay_check(11, 11, 0, 1,
1457 PDEV_OVERLAY); 1457 PDEV_OVERLAY);
1458 if (selftest(ret == 0, 1458 if (unittest(ret == 0,
1459 "overlay test %d failed; overlay application\n", 11)) 1459 "overlay test %d failed; overlay application\n", 11))
1460 return; 1460 return;
1461} 1461}
1462 1462
1463#if IS_BUILTIN(CONFIG_I2C) && IS_ENABLED(CONFIG_OF_OVERLAY) 1463#if IS_BUILTIN(CONFIG_I2C) && IS_ENABLED(CONFIG_OF_OVERLAY)
1464 1464
1465struct selftest_i2c_bus_data { 1465struct unittest_i2c_bus_data {
1466 struct platform_device *pdev; 1466 struct platform_device *pdev;
1467 struct i2c_adapter adap; 1467 struct i2c_adapter adap;
1468}; 1468};
1469 1469
1470static int selftest_i2c_master_xfer(struct i2c_adapter *adap, 1470static int unittest_i2c_master_xfer(struct i2c_adapter *adap,
1471 struct i2c_msg *msgs, int num) 1471 struct i2c_msg *msgs, int num)
1472{ 1472{
1473 struct selftest_i2c_bus_data *std = i2c_get_adapdata(adap); 1473 struct unittest_i2c_bus_data *std = i2c_get_adapdata(adap);
1474 1474
1475 (void)std; 1475 (void)std;
1476 1476
1477 return num; 1477 return num;
1478} 1478}
1479 1479
1480static u32 selftest_i2c_functionality(struct i2c_adapter *adap) 1480static u32 unittest_i2c_functionality(struct i2c_adapter *adap)
1481{ 1481{
1482 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; 1482 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
1483} 1483}
1484 1484
1485static const struct i2c_algorithm selftest_i2c_algo = { 1485static const struct i2c_algorithm unittest_i2c_algo = {
1486 .master_xfer = selftest_i2c_master_xfer, 1486 .master_xfer = unittest_i2c_master_xfer,
1487 .functionality = selftest_i2c_functionality, 1487 .functionality = unittest_i2c_functionality,
1488}; 1488};
1489 1489
1490static int selftest_i2c_bus_probe(struct platform_device *pdev) 1490static int unittest_i2c_bus_probe(struct platform_device *pdev)
1491{ 1491{
1492 struct device *dev = &pdev->dev; 1492 struct device *dev = &pdev->dev;
1493 struct device_node *np = dev->of_node; 1493 struct device_node *np = dev->of_node;
1494 struct selftest_i2c_bus_data *std; 1494 struct unittest_i2c_bus_data *std;
1495 struct i2c_adapter *adap; 1495 struct i2c_adapter *adap;
1496 int ret; 1496 int ret;
1497 1497
@@ -1505,7 +1505,7 @@ static int selftest_i2c_bus_probe(struct platform_device *pdev)
1505 1505
1506 std = devm_kzalloc(dev, sizeof(*std), GFP_KERNEL); 1506 std = devm_kzalloc(dev, sizeof(*std), GFP_KERNEL);
1507 if (!std) { 1507 if (!std) {
1508 dev_err(dev, "Failed to allocate selftest i2c data\n"); 1508 dev_err(dev, "Failed to allocate unittest i2c data\n");
1509 return -ENOMEM; 1509 return -ENOMEM;
1510 } 1510 }
1511 1511
@@ -1518,7 +1518,7 @@ static int selftest_i2c_bus_probe(struct platform_device *pdev)
1518 adap->nr = -1; 1518 adap->nr = -1;
1519 strlcpy(adap->name, pdev->name, sizeof(adap->name)); 1519 strlcpy(adap->name, pdev->name, sizeof(adap->name));
1520 adap->class = I2C_CLASS_DEPRECATED; 1520 adap->class = I2C_CLASS_DEPRECATED;
1521 adap->algo = &selftest_i2c_algo; 1521 adap->algo = &unittest_i2c_algo;
1522 adap->dev.parent = dev; 1522 adap->dev.parent = dev;
1523 adap->dev.of_node = dev->of_node; 1523 adap->dev.of_node = dev->of_node;
1524 adap->timeout = 5 * HZ; 1524 adap->timeout = 5 * HZ;
@@ -1533,11 +1533,11 @@ static int selftest_i2c_bus_probe(struct platform_device *pdev)
1533 return 0; 1533 return 0;
1534} 1534}
1535 1535
1536static int selftest_i2c_bus_remove(struct platform_device *pdev) 1536static int unittest_i2c_bus_remove(struct platform_device *pdev)
1537{ 1537{
1538 struct device *dev = &pdev->dev; 1538 struct device *dev = &pdev->dev;
1539 struct device_node *np = dev->of_node; 1539 struct device_node *np = dev->of_node;
1540 struct selftest_i2c_bus_data *std = platform_get_drvdata(pdev); 1540 struct unittest_i2c_bus_data *std = platform_get_drvdata(pdev);
1541 1541
1542 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); 1542 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1543 i2c_del_adapter(&std->adap); 1543 i2c_del_adapter(&std->adap);
@@ -1545,21 +1545,21 @@ static int selftest_i2c_bus_remove(struct platform_device *pdev)
1545 return 0; 1545 return 0;
1546} 1546}
1547 1547
1548static struct of_device_id selftest_i2c_bus_match[] = { 1548static struct of_device_id unittest_i2c_bus_match[] = {
1549 { .compatible = "selftest-i2c-bus", }, 1549 { .compatible = "unittest-i2c-bus", },
1550 {}, 1550 {},
1551}; 1551};
1552 1552
1553static struct platform_driver selftest_i2c_bus_driver = { 1553static struct platform_driver unittest_i2c_bus_driver = {
1554 .probe = selftest_i2c_bus_probe, 1554 .probe = unittest_i2c_bus_probe,
1555 .remove = selftest_i2c_bus_remove, 1555 .remove = unittest_i2c_bus_remove,
1556 .driver = { 1556 .driver = {
1557 .name = "selftest-i2c-bus", 1557 .name = "unittest-i2c-bus",
1558 .of_match_table = of_match_ptr(selftest_i2c_bus_match), 1558 .of_match_table = of_match_ptr(unittest_i2c_bus_match),
1559 }, 1559 },
1560}; 1560};
1561 1561
1562static int selftest_i2c_dev_probe(struct i2c_client *client, 1562static int unittest_i2c_dev_probe(struct i2c_client *client,
1563 const struct i2c_device_id *id) 1563 const struct i2c_device_id *id)
1564{ 1564{
1565 struct device *dev = &client->dev; 1565 struct device *dev = &client->dev;
@@ -1575,7 +1575,7 @@ static int selftest_i2c_dev_probe(struct i2c_client *client,
1575 return 0; 1575 return 0;
1576}; 1576};
1577 1577
1578static int selftest_i2c_dev_remove(struct i2c_client *client) 1578static int unittest_i2c_dev_remove(struct i2c_client *client)
1579{ 1579{
1580 struct device *dev = &client->dev; 1580 struct device *dev = &client->dev;
1581 struct device_node *np = client->dev.of_node; 1581 struct device_node *np = client->dev.of_node;
@@ -1584,42 +1584,42 @@ static int selftest_i2c_dev_remove(struct i2c_client *client)
1584 return 0; 1584 return 0;
1585} 1585}
1586 1586
1587static const struct i2c_device_id selftest_i2c_dev_id[] = { 1587static const struct i2c_device_id unittest_i2c_dev_id[] = {
1588 { .name = "selftest-i2c-dev" }, 1588 { .name = "unittest-i2c-dev" },
1589 { } 1589 { }
1590}; 1590};
1591 1591
1592static struct i2c_driver selftest_i2c_dev_driver = { 1592static struct i2c_driver unittest_i2c_dev_driver = {
1593 .driver = { 1593 .driver = {
1594 .name = "selftest-i2c-dev", 1594 .name = "unittest-i2c-dev",
1595 .owner = THIS_MODULE, 1595 .owner = THIS_MODULE,
1596 }, 1596 },
1597 .probe = selftest_i2c_dev_probe, 1597 .probe = unittest_i2c_dev_probe,
1598 .remove = selftest_i2c_dev_remove, 1598 .remove = unittest_i2c_dev_remove,
1599 .id_table = selftest_i2c_dev_id, 1599 .id_table = unittest_i2c_dev_id,
1600}; 1600};
1601 1601
1602#if IS_BUILTIN(CONFIG_I2C_MUX) 1602#if IS_BUILTIN(CONFIG_I2C_MUX)
1603 1603
1604struct selftest_i2c_mux_data { 1604struct unittest_i2c_mux_data {
1605 int nchans; 1605 int nchans;
1606 struct i2c_adapter *adap[]; 1606 struct i2c_adapter *adap[];
1607}; 1607};
1608 1608
1609static int selftest_i2c_mux_select_chan(struct i2c_adapter *adap, 1609static int unittest_i2c_mux_select_chan(struct i2c_adapter *adap,
1610 void *client, u32 chan) 1610 void *client, u32 chan)
1611{ 1611{
1612 return 0; 1612 return 0;
1613} 1613}
1614 1614
1615static int selftest_i2c_mux_probe(struct i2c_client *client, 1615static int unittest_i2c_mux_probe(struct i2c_client *client,
1616 const struct i2c_device_id *id) 1616 const struct i2c_device_id *id)
1617{ 1617{
1618 int ret, i, nchans, size; 1618 int ret, i, nchans, size;
1619 struct device *dev = &client->dev; 1619 struct device *dev = &client->dev;
1620 struct i2c_adapter *adap = to_i2c_adapter(dev->parent); 1620 struct i2c_adapter *adap = to_i2c_adapter(dev->parent);
1621 struct device_node *np = client->dev.of_node, *child; 1621 struct device_node *np = client->dev.of_node, *child;
1622 struct selftest_i2c_mux_data *stm; 1622 struct unittest_i2c_mux_data *stm;
1623 u32 reg, max_reg; 1623 u32 reg, max_reg;
1624 1624
1625 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); 1625 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
@@ -1643,7 +1643,7 @@ static int selftest_i2c_mux_probe(struct i2c_client *client,
1643 return -EINVAL; 1643 return -EINVAL;
1644 } 1644 }
1645 1645
1646 size = offsetof(struct selftest_i2c_mux_data, adap[nchans]); 1646 size = offsetof(struct unittest_i2c_mux_data, adap[nchans]);
1647 stm = devm_kzalloc(dev, size, GFP_KERNEL); 1647 stm = devm_kzalloc(dev, size, GFP_KERNEL);
1648 if (!stm) { 1648 if (!stm) {
1649 dev_err(dev, "Out of memory\n"); 1649 dev_err(dev, "Out of memory\n");
@@ -1652,7 +1652,7 @@ static int selftest_i2c_mux_probe(struct i2c_client *client,
1652 stm->nchans = nchans; 1652 stm->nchans = nchans;
1653 for (i = 0; i < nchans; i++) { 1653 for (i = 0; i < nchans; i++) {
1654 stm->adap[i] = i2c_add_mux_adapter(adap, dev, client, 1654 stm->adap[i] = i2c_add_mux_adapter(adap, dev, client,
1655 0, i, 0, selftest_i2c_mux_select_chan, NULL); 1655 0, i, 0, unittest_i2c_mux_select_chan, NULL);
1656 if (!stm->adap[i]) { 1656 if (!stm->adap[i]) {
1657 dev_err(dev, "Failed to register mux #%d\n", i); 1657 dev_err(dev, "Failed to register mux #%d\n", i);
1658 for (i--; i >= 0; i--) 1658 for (i--; i >= 0; i--)
@@ -1666,11 +1666,11 @@ static int selftest_i2c_mux_probe(struct i2c_client *client,
1666 return 0; 1666 return 0;
1667}; 1667};
1668 1668
1669static int selftest_i2c_mux_remove(struct i2c_client *client) 1669static int unittest_i2c_mux_remove(struct i2c_client *client)
1670{ 1670{
1671 struct device *dev = &client->dev; 1671 struct device *dev = &client->dev;
1672 struct device_node *np = client->dev.of_node; 1672 struct device_node *np = client->dev.of_node;
1673 struct selftest_i2c_mux_data *stm = i2c_get_clientdata(client); 1673 struct unittest_i2c_mux_data *stm = i2c_get_clientdata(client);
1674 int i; 1674 int i;
1675 1675
1676 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); 1676 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
@@ -1679,166 +1679,166 @@ static int selftest_i2c_mux_remove(struct i2c_client *client)
1679 return 0; 1679 return 0;
1680} 1680}
1681 1681
1682static const struct i2c_device_id selftest_i2c_mux_id[] = { 1682static const struct i2c_device_id unittest_i2c_mux_id[] = {
1683 { .name = "selftest-i2c-mux" }, 1683 { .name = "unittest-i2c-mux" },
1684 { } 1684 { }
1685}; 1685};
1686 1686
1687static struct i2c_driver selftest_i2c_mux_driver = { 1687static struct i2c_driver unittest_i2c_mux_driver = {
1688 .driver = { 1688 .driver = {
1689 .name = "selftest-i2c-mux", 1689 .name = "unittest-i2c-mux",
1690 .owner = THIS_MODULE, 1690 .owner = THIS_MODULE,
1691 }, 1691 },
1692 .probe = selftest_i2c_mux_probe, 1692 .probe = unittest_i2c_mux_probe,
1693 .remove = selftest_i2c_mux_remove, 1693 .remove = unittest_i2c_mux_remove,
1694 .id_table = selftest_i2c_mux_id, 1694 .id_table = unittest_i2c_mux_id,
1695}; 1695};
1696 1696
1697#endif 1697#endif
1698 1698
1699static int of_selftest_overlay_i2c_init(void) 1699static int of_unittest_overlay_i2c_init(void)
1700{ 1700{
1701 int ret; 1701 int ret;
1702 1702
1703 ret = i2c_add_driver(&selftest_i2c_dev_driver); 1703 ret = i2c_add_driver(&unittest_i2c_dev_driver);
1704 if (selftest(ret == 0, 1704 if (unittest(ret == 0,
1705 "could not register selftest i2c device driver\n")) 1705 "could not register unittest i2c device driver\n"))
1706 return ret; 1706 return ret;
1707 1707
1708 ret = platform_driver_register(&selftest_i2c_bus_driver); 1708 ret = platform_driver_register(&unittest_i2c_bus_driver);
1709 if (selftest(ret == 0, 1709 if (unittest(ret == 0,
1710 "could not register selftest i2c bus driver\n")) 1710 "could not register unittest i2c bus driver\n"))
1711 return ret; 1711 return ret;
1712 1712
1713#if IS_BUILTIN(CONFIG_I2C_MUX) 1713#if IS_BUILTIN(CONFIG_I2C_MUX)
1714 ret = i2c_add_driver(&selftest_i2c_mux_driver); 1714 ret = i2c_add_driver(&unittest_i2c_mux_driver);
1715 if (selftest(ret == 0, 1715 if (unittest(ret == 0,
1716 "could not register selftest i2c mux driver\n")) 1716 "could not register unittest i2c mux driver\n"))
1717 return ret; 1717 return ret;
1718#endif 1718#endif
1719 1719
1720 return 0; 1720 return 0;
1721} 1721}
1722 1722
1723static void of_selftest_overlay_i2c_cleanup(void) 1723static void of_unittest_overlay_i2c_cleanup(void)
1724{ 1724{
1725#if IS_BUILTIN(CONFIG_I2C_MUX) 1725#if IS_BUILTIN(CONFIG_I2C_MUX)
1726 i2c_del_driver(&selftest_i2c_mux_driver); 1726 i2c_del_driver(&unittest_i2c_mux_driver);
1727#endif 1727#endif
1728 platform_driver_unregister(&selftest_i2c_bus_driver); 1728 platform_driver_unregister(&unittest_i2c_bus_driver);
1729 i2c_del_driver(&selftest_i2c_dev_driver); 1729 i2c_del_driver(&unittest_i2c_dev_driver);
1730} 1730}
1731 1731
1732static void of_selftest_overlay_i2c_12(void) 1732static void of_unittest_overlay_i2c_12(void)
1733{ 1733{
1734 int ret; 1734 int ret;
1735 1735
1736 /* device should enable */ 1736 /* device should enable */
1737 ret = of_selftest_apply_overlay_check(12, 12, 0, 1, I2C_OVERLAY); 1737 ret = of_unittest_apply_overlay_check(12, 12, 0, 1, I2C_OVERLAY);
1738 if (ret != 0) 1738 if (ret != 0)
1739 return; 1739 return;
1740 1740
1741 selftest(1, "overlay test %d passed\n", 12); 1741 unittest(1, "overlay test %d passed\n", 12);
1742} 1742}
1743 1743
1744/* test deactivation of device */ 1744/* test deactivation of device */
1745static void of_selftest_overlay_i2c_13(void) 1745static void of_unittest_overlay_i2c_13(void)
1746{ 1746{
1747 int ret; 1747 int ret;
1748 1748
1749 /* device should disable */ 1749 /* device should disable */
1750 ret = of_selftest_apply_overlay_check(13, 13, 1, 0, I2C_OVERLAY); 1750 ret = of_unittest_apply_overlay_check(13, 13, 1, 0, I2C_OVERLAY);
1751 if (ret != 0) 1751 if (ret != 0)
1752 return; 1752 return;
1753 1753
1754 selftest(1, "overlay test %d passed\n", 13); 1754 unittest(1, "overlay test %d passed\n", 13);
1755} 1755}
1756 1756
1757/* just check for i2c mux existence */ 1757/* just check for i2c mux existence */
1758static void of_selftest_overlay_i2c_14(void) 1758static void of_unittest_overlay_i2c_14(void)
1759{ 1759{
1760} 1760}
1761 1761
1762static void of_selftest_overlay_i2c_15(void) 1762static void of_unittest_overlay_i2c_15(void)
1763{ 1763{
1764 int ret; 1764 int ret;
1765 1765
1766 /* device should enable */ 1766 /* device should enable */
1767 ret = of_selftest_apply_overlay_check(16, 15, 0, 1, I2C_OVERLAY); 1767 ret = of_unittest_apply_overlay_check(16, 15, 0, 1, I2C_OVERLAY);
1768 if (ret != 0) 1768 if (ret != 0)
1769 return; 1769 return;
1770 1770
1771 selftest(1, "overlay test %d passed\n", 15); 1771 unittest(1, "overlay test %d passed\n", 15);
1772} 1772}
1773 1773
1774#else 1774#else
1775 1775
1776static inline void of_selftest_overlay_i2c_14(void) { } 1776static inline void of_unittest_overlay_i2c_14(void) { }
1777static inline void of_selftest_overlay_i2c_15(void) { } 1777static inline void of_unittest_overlay_i2c_15(void) { }
1778 1778
1779#endif 1779#endif
1780 1780
1781static void __init of_selftest_overlay(void) 1781static void __init of_unittest_overlay(void)
1782{ 1782{
1783 struct device_node *bus_np = NULL; 1783 struct device_node *bus_np = NULL;
1784 int ret; 1784 int ret;
1785 1785
1786 ret = platform_driver_register(&selftest_driver); 1786 ret = platform_driver_register(&unittest_driver);
1787 if (ret != 0) { 1787 if (ret != 0) {
1788 selftest(0, "could not register selftest driver\n"); 1788 unittest(0, "could not register unittest driver\n");
1789 goto out; 1789 goto out;
1790 } 1790 }
1791 1791
1792 bus_np = of_find_node_by_path(bus_path); 1792 bus_np = of_find_node_by_path(bus_path);
1793 if (bus_np == NULL) { 1793 if (bus_np == NULL) {
1794 selftest(0, "could not find bus_path \"%s\"\n", bus_path); 1794 unittest(0, "could not find bus_path \"%s\"\n", bus_path);
1795 goto out; 1795 goto out;
1796 } 1796 }
1797 1797
1798 ret = of_platform_populate(bus_np, of_default_bus_match_table, 1798 ret = of_platform_populate(bus_np, of_default_bus_match_table,
1799 NULL, NULL); 1799 NULL, NULL);
1800 if (ret != 0) { 1800 if (ret != 0) {
1801 selftest(0, "could not populate bus @ \"%s\"\n", bus_path); 1801 unittest(0, "could not populate bus @ \"%s\"\n", bus_path);
1802 goto out; 1802 goto out;
1803 } 1803 }
1804 1804
1805 if (!of_selftest_device_exists(100, PDEV_OVERLAY)) { 1805 if (!of_unittest_device_exists(100, PDEV_OVERLAY)) {
1806 selftest(0, "could not find selftest0 @ \"%s\"\n", 1806 unittest(0, "could not find unittest0 @ \"%s\"\n",
1807 selftest_path(100, PDEV_OVERLAY)); 1807 unittest_path(100, PDEV_OVERLAY));
1808 goto out; 1808 goto out;
1809 } 1809 }
1810 1810
1811 if (of_selftest_device_exists(101, PDEV_OVERLAY)) { 1811 if (of_unittest_device_exists(101, PDEV_OVERLAY)) {
1812 selftest(0, "selftest1 @ \"%s\" should not exist\n", 1812 unittest(0, "unittest1 @ \"%s\" should not exist\n",
1813 selftest_path(101, PDEV_OVERLAY)); 1813 unittest_path(101, PDEV_OVERLAY));
1814 goto out; 1814 goto out;
1815 } 1815 }
1816 1816
1817 selftest(1, "basic infrastructure of overlays passed"); 1817 unittest(1, "basic infrastructure of overlays passed");
1818 1818
1819 /* tests in sequence */ 1819 /* tests in sequence */
1820 of_selftest_overlay_0(); 1820 of_unittest_overlay_0();
1821 of_selftest_overlay_1(); 1821 of_unittest_overlay_1();
1822 of_selftest_overlay_2(); 1822 of_unittest_overlay_2();
1823 of_selftest_overlay_3(); 1823 of_unittest_overlay_3();
1824 of_selftest_overlay_4(); 1824 of_unittest_overlay_4();
1825 of_selftest_overlay_5(); 1825 of_unittest_overlay_5();
1826 of_selftest_overlay_6(); 1826 of_unittest_overlay_6();
1827 of_selftest_overlay_8(); 1827 of_unittest_overlay_8();
1828 1828
1829 of_selftest_overlay_10(); 1829 of_unittest_overlay_10();
1830 of_selftest_overlay_11(); 1830 of_unittest_overlay_11();
1831 1831
1832#if IS_BUILTIN(CONFIG_I2C) 1832#if IS_BUILTIN(CONFIG_I2C)
1833 if (selftest(of_selftest_overlay_i2c_init() == 0, "i2c init failed\n")) 1833 if (unittest(of_unittest_overlay_i2c_init() == 0, "i2c init failed\n"))
1834 goto out; 1834 goto out;
1835 1835
1836 of_selftest_overlay_i2c_12(); 1836 of_unittest_overlay_i2c_12();
1837 of_selftest_overlay_i2c_13(); 1837 of_unittest_overlay_i2c_13();
1838 of_selftest_overlay_i2c_14(); 1838 of_unittest_overlay_i2c_14();
1839 of_selftest_overlay_i2c_15(); 1839 of_unittest_overlay_i2c_15();
1840 1840
1841 of_selftest_overlay_i2c_cleanup(); 1841 of_unittest_overlay_i2c_cleanup();
1842#endif 1842#endif
1843 1843
1844out: 1844out:
@@ -1846,16 +1846,16 @@ out:
1846} 1846}
1847 1847
1848#else 1848#else
1849static inline void __init of_selftest_overlay(void) { } 1849static inline void __init of_unittest_overlay(void) { }
1850#endif 1850#endif
1851 1851
1852static int __init of_selftest(void) 1852static int __init of_unittest(void)
1853{ 1853{
1854 struct device_node *np; 1854 struct device_node *np;
1855 int res; 1855 int res;
1856 1856
1857 /* adding data for selftest */ 1857 /* adding data for unittest */
1858 res = selftest_data_add(); 1858 res = unittest_data_add();
1859 if (res) 1859 if (res)
1860 return res; 1860 return res;
1861 if (!of_aliases) 1861 if (!of_aliases)
@@ -1868,27 +1868,27 @@ static int __init of_selftest(void)
1868 } 1868 }
1869 of_node_put(np); 1869 of_node_put(np);
1870 1870
1871 pr_info("start of selftest - you will see error messages\n"); 1871 pr_info("start of unittest - you will see error messages\n");
1872 of_selftest_check_tree_linkage(); 1872 of_unittest_check_tree_linkage();
1873 of_selftest_check_phandles(); 1873 of_unittest_check_phandles();
1874 of_selftest_find_node_by_name(); 1874 of_unittest_find_node_by_name();
1875 of_selftest_dynamic(); 1875 of_unittest_dynamic();
1876 of_selftest_parse_phandle_with_args(); 1876 of_unittest_parse_phandle_with_args();
1877 of_selftest_property_string(); 1877 of_unittest_property_string();
1878 of_selftest_property_copy(); 1878 of_unittest_property_copy();
1879 of_selftest_changeset(); 1879 of_unittest_changeset();
1880 of_selftest_parse_interrupts(); 1880 of_unittest_parse_interrupts();
1881 of_selftest_parse_interrupts_extended(); 1881 of_unittest_parse_interrupts_extended();
1882 of_selftest_match_node(); 1882 of_unittest_match_node();
1883 of_selftest_platform_populate(); 1883 of_unittest_platform_populate();
1884 of_selftest_overlay(); 1884 of_unittest_overlay();
1885 1885
1886 /* Double check linkage after removing testcase data */ 1886 /* Double check linkage after removing testcase data */
1887 of_selftest_check_tree_linkage(); 1887 of_unittest_check_tree_linkage();
1888 1888
1889 pr_info("end of selftest - %i passed, %i failed\n", 1889 pr_info("end of unittest - %i passed, %i failed\n",
1890 selftest_results.passed, selftest_results.failed); 1890 unittest_results.passed, unittest_results.failed);
1891 1891
1892 return 0; 1892 return 0;
1893} 1893}
1894late_initcall(of_selftest); 1894late_initcall(of_unittest);