Merge tag 'v3.19-rc6' into HEAD
[linux-2.6-block.git] / drivers / of / unittest.c
CommitLineData
53a42093
GL
1/*
2 * Self tests for device tree subsystem
3 */
4
cabb7d5b 5#define pr_fmt(fmt) "### dt-test ### " fmt
53a42093
GL
6
7#include <linux/clk.h>
8#include <linux/err.h>
9#include <linux/errno.h>
841ec213 10#include <linux/hashtable.h>
53a42093
GL
11#include <linux/module.h>
12#include <linux/of.h>
ae9304c9 13#include <linux/of_fdt.h>
a9f10ca7 14#include <linux/of_irq.h>
82c0f589 15#include <linux/of_platform.h>
53a42093
GL
16#include <linux/list.h>
17#include <linux/mutex.h>
18#include <linux/slab.h>
19#include <linux/device.h>
177d271c
PA
20#include <linux/platform_device.h>
21#include <linux/of_platform.h>
53a42093 22
69843396
PA
23#include "of_private.h"
24
a9f10ca7
GL
25static struct selftest_results {
26 int passed;
27 int failed;
28} selftest_results;
29
2eb46da2 30#define NO_OF_NODES 3
ae9304c9
GM
31static struct device_node *nodes[NO_OF_NODES];
32static int last_node_index;
b951f9dc 33static bool selftest_live_tree;
ae9304c9 34
851da976
GL
35#define selftest(result, fmt, ...) ({ \
36 bool failed = !(result); \
37 if (failed) { \
a9f10ca7
GL
38 selftest_results.failed++; \
39 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \
cabb7d5b 40 } else { \
a9f10ca7
GL
41 selftest_results.passed++; \
42 pr_debug("pass %s():%i\n", __func__, __LINE__); \
cabb7d5b 43 } \
851da976
GL
44 failed; \
45})
53a42093 46
ae91ff72
GL
47static void __init of_selftest_find_node_by_name(void)
48{
49 struct device_node *np;
75c28c09 50 const char *options;
ae91ff72
GL
51
52 np = of_find_node_by_path("/testcase-data");
53 selftest(np && !strcmp("/testcase-data", np->full_name),
54 "find /testcase-data failed\n");
55 of_node_put(np);
56
57 /* Test if trailing '/' works */
58 np = of_find_node_by_path("/testcase-data/");
59 selftest(!np, "trailing '/' on /testcase-data/ should fail\n");
60
61 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
62 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
63 "find /testcase-data/phandle-tests/consumer-a failed\n");
64 of_node_put(np);
65
66 np = of_find_node_by_path("testcase-alias");
67 selftest(np && !strcmp("/testcase-data", np->full_name),
68 "find testcase-alias failed\n");
69 of_node_put(np);
70
71 /* Test if trailing '/' works on aliases */
72 np = of_find_node_by_path("testcase-alias/");
73 selftest(!np, "trailing '/' on testcase-alias/ should fail\n");
74
75 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a");
76 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
77 "find testcase-alias/phandle-tests/consumer-a failed\n");
78 of_node_put(np);
79
80 np = of_find_node_by_path("/testcase-data/missing-path");
81 selftest(!np, "non-existent path returned node %s\n", np->full_name);
82 of_node_put(np);
83
84 np = of_find_node_by_path("missing-alias");
85 selftest(!np, "non-existent alias returned node %s\n", np->full_name);
86 of_node_put(np);
87
88 np = of_find_node_by_path("testcase-alias/missing-path");
89 selftest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
90 of_node_put(np);
75c28c09
LL
91
92 np = of_find_node_opts_by_path("/testcase-data:testoption", &options);
93 selftest(np && !strcmp("testoption", options),
94 "option path test failed\n");
95 of_node_put(np);
96
97 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL);
98 selftest(np, "NULL option path test failed\n");
99 of_node_put(np);
100
101 np = of_find_node_opts_by_path("testcase-alias:testaliasoption",
102 &options);
103 selftest(np && !strcmp("testaliasoption", options),
104 "option alias path test failed\n");
105 of_node_put(np);
106
107 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL);
108 selftest(np, "NULL option alias path test failed\n");
109 of_node_put(np);
110
111 options = "testoption";
112 np = of_find_node_opts_by_path("testcase-alias", &options);
113 selftest(np && !options, "option clearing test failed\n");
114 of_node_put(np);
115
116 options = "testoption";
117 np = of_find_node_opts_by_path("/", &options);
118 selftest(np && !options, "option clearing root node test failed\n");
119 of_node_put(np);
ae91ff72
GL
120}
121
7e66c5c7
GL
122static void __init of_selftest_dynamic(void)
123{
124 struct device_node *np;
125 struct property *prop;
126
127 np = of_find_node_by_path("/testcase-data");
128 if (!np) {
129 pr_err("missing testcase data\n");
130 return;
131 }
132
133 /* Array of 4 properties for the purpose of testing */
134 prop = kzalloc(sizeof(*prop) * 4, GFP_KERNEL);
135 if (!prop) {
136 selftest(0, "kzalloc() failed\n");
137 return;
138 }
139
140 /* Add a new property - should pass*/
141 prop->name = "new-property";
142 prop->value = "new-property-data";
143 prop->length = strlen(prop->value);
144 selftest(of_add_property(np, prop) == 0, "Adding a new property failed\n");
145
146 /* Try to add an existing property - should fail */
147 prop++;
148 prop->name = "new-property";
149 prop->value = "new-property-data-should-fail";
150 prop->length = strlen(prop->value);
151 selftest(of_add_property(np, prop) != 0,
152 "Adding an existing property should have failed\n");
153
154 /* Try to modify an existing property - should pass */
155 prop->value = "modify-property-data-should-pass";
156 prop->length = strlen(prop->value);
157 selftest(of_update_property(np, prop) == 0,
158 "Updating an existing property should have passed\n");
159
160 /* Try to modify non-existent property - should pass*/
161 prop++;
162 prop->name = "modify-property";
163 prop->value = "modify-missing-property-data-should-pass";
164 prop->length = strlen(prop->value);
165 selftest(of_update_property(np, prop) == 0,
166 "Updating a missing property should have passed\n");
167
168 /* Remove property - should pass */
169 selftest(of_remove_property(np, prop) == 0,
170 "Removing a property should have passed\n");
171
172 /* Adding very large property - should pass */
173 prop++;
174 prop->name = "large-property-PAGE_SIZEx8";
175 prop->length = PAGE_SIZE * 8;
176 prop->value = kzalloc(prop->length, GFP_KERNEL);
177 selftest(prop->value != NULL, "Unable to allocate large buffer\n");
178 if (prop->value)
179 selftest(of_add_property(np, prop) == 0,
180 "Adding a large property should have passed\n");
181}
182
f2051d6a
GL
183static int __init of_selftest_check_node_linkage(struct device_node *np)
184{
5063e25a 185 struct device_node *child;
f2051d6a
GL
186 int count = 0, rc;
187
188 for_each_child_of_node(np, child) {
189 if (child->parent != np) {
190 pr_err("Child node %s links to wrong parent %s\n",
191 child->name, np->name);
192 return -EINVAL;
193 }
194
f2051d6a
GL
195 rc = of_selftest_check_node_linkage(child);
196 if (rc < 0)
197 return rc;
198 count += rc;
199 }
200
201 return count + 1;
202}
203
204static void __init of_selftest_check_tree_linkage(void)
205{
206 struct device_node *np;
207 int allnode_count = 0, child_count;
208
5063e25a 209 if (!of_root)
f2051d6a
GL
210 return;
211
212 for_each_of_allnodes(np)
213 allnode_count++;
5063e25a 214 child_count = of_selftest_check_node_linkage(of_root);
f2051d6a
GL
215
216 selftest(child_count > 0, "Device node data structure is corrupted\n");
217 selftest(child_count == allnode_count, "allnodes list size (%i) doesn't match"
218 "sibling lists size (%i)\n", allnode_count, child_count);
219 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count);
220}
221
841ec213
GL
222struct node_hash {
223 struct hlist_node node;
224 struct device_node *np;
225};
226
2118f4b8 227static DEFINE_HASHTABLE(phandle_ht, 8);
841ec213
GL
228static void __init of_selftest_check_phandles(void)
229{
230 struct device_node *np;
231 struct node_hash *nh;
232 struct hlist_node *tmp;
233 int i, dup_count = 0, phandle_count = 0;
841ec213 234
841ec213
GL
235 for_each_of_allnodes(np) {
236 if (!np->phandle)
237 continue;
238
2118f4b8 239 hash_for_each_possible(phandle_ht, nh, node, np->phandle) {
841ec213
GL
240 if (nh->np->phandle == np->phandle) {
241 pr_info("Duplicate phandle! %i used by %s and %s\n",
242 np->phandle, nh->np->full_name, np->full_name);
243 dup_count++;
244 break;
245 }
246 }
247
248 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
249 if (WARN_ON(!nh))
250 return;
251
252 nh->np = np;
2118f4b8 253 hash_add(phandle_ht, &nh->node, np->phandle);
841ec213
GL
254 phandle_count++;
255 }
256 selftest(dup_count == 0, "Found %i duplicates in %i phandles\n",
257 dup_count, phandle_count);
258
259 /* Clean up */
2118f4b8 260 hash_for_each_safe(phandle_ht, i, tmp, nh, node) {
841ec213
GL
261 hash_del(&nh->node);
262 kfree(nh);
263 }
264}
265
53a42093
GL
266static void __init of_selftest_parse_phandle_with_args(void)
267{
268 struct device_node *np;
269 struct of_phandle_args args;
cabb7d5b 270 int i, rc;
53a42093 271
53a42093
GL
272 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
273 if (!np) {
274 pr_err("missing testcase data\n");
275 return;
276 }
277
bd69f73f
GL
278 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells");
279 selftest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc);
280
f7f951c2 281 for (i = 0; i < 8; i++) {
53a42093
GL
282 bool passed = true;
283 rc = of_parse_phandle_with_args(np, "phandle-list",
284 "#phandle-cells", i, &args);
285
286 /* Test the values from tests-phandle.dtsi */
287 switch (i) {
288 case 0:
289 passed &= !rc;
290 passed &= (args.args_count == 1);
291 passed &= (args.args[0] == (i + 1));
292 break;
293 case 1:
294 passed &= !rc;
295 passed &= (args.args_count == 2);
296 passed &= (args.args[0] == (i + 1));
297 passed &= (args.args[1] == 0);
298 break;
299 case 2:
300 passed &= (rc == -ENOENT);
301 break;
302 case 3:
303 passed &= !rc;
304 passed &= (args.args_count == 3);
305 passed &= (args.args[0] == (i + 1));
306 passed &= (args.args[1] == 4);
307 passed &= (args.args[2] == 3);
308 break;
309 case 4:
310 passed &= !rc;
311 passed &= (args.args_count == 2);
312 passed &= (args.args[0] == (i + 1));
313 passed &= (args.args[1] == 100);
314 break;
315 case 5:
316 passed &= !rc;
317 passed &= (args.args_count == 0);
318 break;
319 case 6:
320 passed &= !rc;
321 passed &= (args.args_count == 1);
322 passed &= (args.args[0] == (i + 1));
323 break;
324 case 7:
cabb7d5b 325 passed &= (rc == -ENOENT);
53a42093
GL
326 break;
327 default:
328 passed = false;
329 }
330
cabb7d5b
GL
331 selftest(passed, "index %i - data error on node %s rc=%i\n",
332 i, args.np->full_name, rc);
53a42093
GL
333 }
334
335 /* Check for missing list property */
336 rc = of_parse_phandle_with_args(np, "phandle-list-missing",
337 "#phandle-cells", 0, &args);
cabb7d5b 338 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
bd69f73f
GL
339 rc = of_count_phandle_with_args(np, "phandle-list-missing",
340 "#phandle-cells");
341 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
53a42093
GL
342
343 /* Check for missing cells property */
344 rc = of_parse_phandle_with_args(np, "phandle-list",
345 "#phandle-cells-missing", 0, &args);
cabb7d5b 346 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
bd69f73f
GL
347 rc = of_count_phandle_with_args(np, "phandle-list",
348 "#phandle-cells-missing");
349 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
53a42093
GL
350
351 /* Check for bad phandle in list */
352 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle",
353 "#phandle-cells", 0, &args);
cabb7d5b 354 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
bd69f73f
GL
355 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle",
356 "#phandle-cells");
357 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
53a42093
GL
358
359 /* Check for incorrectly formed argument list */
360 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args",
361 "#phandle-cells", 1, &args);
cabb7d5b 362 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
bd69f73f
GL
363 rc = of_count_phandle_with_args(np, "phandle-list-bad-args",
364 "#phandle-cells");
365 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
53a42093
GL
366}
367
a87fa1d8 368static void __init of_selftest_property_string(void)
7aff0fe3 369{
a87fa1d8 370 const char *strings[4];
7aff0fe3
GL
371 struct device_node *np;
372 int rc;
373
7aff0fe3
GL
374 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
375 if (!np) {
376 pr_err("No testcase data in device tree\n");
377 return;
378 }
379
380 rc = of_property_match_string(np, "phandle-list-names", "first");
381 selftest(rc == 0, "first expected:0 got:%i\n", rc);
382 rc = of_property_match_string(np, "phandle-list-names", "second");
383 selftest(rc == 1, "second expected:0 got:%i\n", rc);
384 rc = of_property_match_string(np, "phandle-list-names", "third");
385 selftest(rc == 2, "third expected:0 got:%i\n", rc);
386 rc = of_property_match_string(np, "phandle-list-names", "fourth");
a87fa1d8 387 selftest(rc == -ENODATA, "unmatched string; rc=%i\n", rc);
7aff0fe3 388 rc = of_property_match_string(np, "missing-property", "blah");
a87fa1d8 389 selftest(rc == -EINVAL, "missing property; rc=%i\n", rc);
7aff0fe3 390 rc = of_property_match_string(np, "empty-property", "blah");
a87fa1d8 391 selftest(rc == -ENODATA, "empty property; rc=%i\n", rc);
7aff0fe3 392 rc = of_property_match_string(np, "unterminated-string", "blah");
a87fa1d8
GL
393 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
394
395 /* of_property_count_strings() tests */
396 rc = of_property_count_strings(np, "string-property");
397 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc);
398 rc = of_property_count_strings(np, "phandle-list-names");
399 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc);
400 rc = of_property_count_strings(np, "unterminated-string");
401 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
402 rc = of_property_count_strings(np, "unterminated-string-list");
403 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
404
405 /* of_property_read_string_index() tests */
406 rc = of_property_read_string_index(np, "string-property", 0, strings);
407 selftest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc);
408 strings[0] = NULL;
409 rc = of_property_read_string_index(np, "string-property", 1, strings);
410 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
411 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings);
412 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
413 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings);
414 selftest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc);
415 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings);
416 selftest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc);
417 strings[0] = NULL;
418 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings);
419 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
420 strings[0] = NULL;
421 rc = of_property_read_string_index(np, "unterminated-string", 0, strings);
422 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
423 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings);
424 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
425 strings[0] = NULL;
426 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */
427 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
428 strings[1] = NULL;
429
430 /* of_property_read_string_array() tests */
431 rc = of_property_read_string_array(np, "string-property", strings, 4);
432 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc);
433 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4);
434 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc);
435 rc = of_property_read_string_array(np, "unterminated-string", strings, 4);
436 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
437 /* -- An incorrectly formed string should cause a failure */
438 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4);
439 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
440 /* -- parsing the correctly formed strings should still work: */
441 strings[2] = NULL;
442 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2);
443 selftest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc);
444 strings[1] = NULL;
445 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1);
446 selftest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]);
7aff0fe3
GL
447}
448
69843396
PA
449#define propcmp(p1, p2) (((p1)->length == (p2)->length) && \
450 (p1)->value && (p2)->value && \
451 !memcmp((p1)->value, (p2)->value, (p1)->length) && \
452 !strcmp((p1)->name, (p2)->name))
453static void __init of_selftest_property_copy(void)
454{
455#ifdef CONFIG_OF_DYNAMIC
456 struct property p1 = { .name = "p1", .length = 0, .value = "" };
457 struct property p2 = { .name = "p2", .length = 5, .value = "abcd" };
458 struct property *new;
459
460 new = __of_prop_dup(&p1, GFP_KERNEL);
461 selftest(new && propcmp(&p1, new), "empty property didn't copy correctly\n");
462 kfree(new->value);
463 kfree(new->name);
464 kfree(new);
465
466 new = __of_prop_dup(&p2, GFP_KERNEL);
467 selftest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n");
468 kfree(new->value);
469 kfree(new->name);
470 kfree(new);
471#endif
472}
473
201c910b
PA
474static void __init of_selftest_changeset(void)
475{
476#ifdef CONFIG_OF_DYNAMIC
477 struct property *ppadd, padd = { .name = "prop-add", .length = 0, .value = "" };
478 struct property *ppupdate, pupdate = { .name = "prop-update", .length = 5, .value = "abcd" };
479 struct property *ppremove;
e5179581 480 struct device_node *n1, *n2, *n21, *nremove, *parent, *np;
201c910b
PA
481 struct of_changeset chgset;
482
483 of_changeset_init(&chgset);
e5179581 484 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1");
201c910b 485 selftest(n1, "testcase setup failure\n");
e5179581 486 n2 = __of_node_dup(NULL, "/testcase-data/changeset/n2");
201c910b 487 selftest(n2, "testcase setup failure\n");
e5179581 488 n21 = __of_node_dup(NULL, "%s/%s", "/testcase-data/changeset/n2", "n21");
201c910b
PA
489 selftest(n21, "testcase setup failure %p\n", n21);
490 nremove = of_find_node_by_path("/testcase-data/changeset/node-remove");
491 selftest(nremove, "testcase setup failure\n");
492 ppadd = __of_prop_dup(&padd, GFP_KERNEL);
493 selftest(ppadd, "testcase setup failure\n");
494 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL);
495 selftest(ppupdate, "testcase setup failure\n");
496 parent = nremove->parent;
497 n1->parent = parent;
498 n2->parent = parent;
499 n21->parent = n2;
500 n2->child = n21;
501 ppremove = of_find_property(parent, "prop-remove", NULL);
502 selftest(ppremove, "failed to find removal prop");
503
504 of_changeset_init(&chgset);
505 selftest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n");
506 selftest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n");
507 selftest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n");
508 selftest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n");
509 selftest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop\n");
510 selftest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n");
511 selftest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n");
512 mutex_lock(&of_mutex);
513 selftest(!of_changeset_apply(&chgset), "apply failed\n");
514 mutex_unlock(&of_mutex);
515
e5179581
GL
516 /* Make sure node names are constructed correctly */
517 selftest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")),
518 "'%s' not added\n", n21->full_name);
c46ca3c8 519 of_node_put(np);
e5179581 520
201c910b
PA
521 mutex_lock(&of_mutex);
522 selftest(!of_changeset_revert(&chgset), "revert failed\n");
523 mutex_unlock(&of_mutex);
524
525 of_changeset_destroy(&chgset);
526#endif
527}
528
a9f10ca7
GL
529static void __init of_selftest_parse_interrupts(void)
530{
531 struct device_node *np;
532 struct of_phandle_args args;
533 int i, rc;
534
535 np = of_find_node_by_path("/testcase-data/interrupts/interrupts0");
536 if (!np) {
537 pr_err("missing testcase data\n");
538 return;
539 }
540
541 for (i = 0; i < 4; i++) {
542 bool passed = true;
543 args.args_count = 0;
544 rc = of_irq_parse_one(np, i, &args);
545
546 passed &= !rc;
547 passed &= (args.args_count == 1);
548 passed &= (args.args[0] == (i + 1));
549
550 selftest(passed, "index %i - data error on node %s rc=%i\n",
551 i, args.np->full_name, rc);
552 }
553 of_node_put(np);
554
555 np = of_find_node_by_path("/testcase-data/interrupts/interrupts1");
556 if (!np) {
557 pr_err("missing testcase data\n");
558 return;
559 }
560
561 for (i = 0; i < 4; i++) {
562 bool passed = true;
563 args.args_count = 0;
564 rc = of_irq_parse_one(np, i, &args);
565
566 /* Test the values from tests-phandle.dtsi */
567 switch (i) {
568 case 0:
569 passed &= !rc;
570 passed &= (args.args_count == 1);
571 passed &= (args.args[0] == 9);
572 break;
573 case 1:
574 passed &= !rc;
575 passed &= (args.args_count == 3);
576 passed &= (args.args[0] == 10);
577 passed &= (args.args[1] == 11);
578 passed &= (args.args[2] == 12);
579 break;
580 case 2:
581 passed &= !rc;
582 passed &= (args.args_count == 2);
583 passed &= (args.args[0] == 13);
584 passed &= (args.args[1] == 14);
585 break;
586 case 3:
587 passed &= !rc;
588 passed &= (args.args_count == 2);
589 passed &= (args.args[0] == 15);
590 passed &= (args.args[1] == 16);
591 break;
592 default:
593 passed = false;
594 }
595 selftest(passed, "index %i - data error on node %s rc=%i\n",
596 i, args.np->full_name, rc);
597 }
598 of_node_put(np);
599}
600
79d97015
GL
601static void __init of_selftest_parse_interrupts_extended(void)
602{
603 struct device_node *np;
604 struct of_phandle_args args;
605 int i, rc;
606
607 np = of_find_node_by_path("/testcase-data/interrupts/interrupts-extended0");
608 if (!np) {
609 pr_err("missing testcase data\n");
610 return;
611 }
612
613 for (i = 0; i < 7; i++) {
614 bool passed = true;
615 rc = of_irq_parse_one(np, i, &args);
616
617 /* Test the values from tests-phandle.dtsi */
618 switch (i) {
619 case 0:
620 passed &= !rc;
621 passed &= (args.args_count == 1);
622 passed &= (args.args[0] == 1);
623 break;
624 case 1:
625 passed &= !rc;
626 passed &= (args.args_count == 3);
627 passed &= (args.args[0] == 2);
628 passed &= (args.args[1] == 3);
629 passed &= (args.args[2] == 4);
630 break;
631 case 2:
632 passed &= !rc;
633 passed &= (args.args_count == 2);
634 passed &= (args.args[0] == 5);
635 passed &= (args.args[1] == 6);
636 break;
637 case 3:
638 passed &= !rc;
639 passed &= (args.args_count == 1);
640 passed &= (args.args[0] == 9);
641 break;
642 case 4:
643 passed &= !rc;
644 passed &= (args.args_count == 3);
645 passed &= (args.args[0] == 10);
646 passed &= (args.args[1] == 11);
647 passed &= (args.args[2] == 12);
648 break;
649 case 5:
650 passed &= !rc;
651 passed &= (args.args_count == 2);
652 passed &= (args.args[0] == 13);
653 passed &= (args.args[1] == 14);
654 break;
655 case 6:
656 passed &= !rc;
657 passed &= (args.args_count == 1);
658 passed &= (args.args[0] == 15);
659 break;
660 default:
661 passed = false;
662 }
663
664 selftest(passed, "index %i - data error on node %s rc=%i\n",
665 i, args.np->full_name, rc);
666 }
667 of_node_put(np);
668}
669
1f42e5dd
GL
670static struct of_device_id match_node_table[] = {
671 { .data = "A", .name = "name0", }, /* Name alone is lowest priority */
672 { .data = "B", .type = "type1", }, /* followed by type alone */
673
674 { .data = "Ca", .name = "name2", .type = "type1", }, /* followed by both together */
675 { .data = "Cb", .name = "name2", }, /* Only match when type doesn't match */
676 { .data = "Cc", .name = "name2", .type = "type2", },
677
678 { .data = "E", .compatible = "compat3" },
679 { .data = "G", .compatible = "compat2", },
680 { .data = "H", .compatible = "compat2", .name = "name5", },
681 { .data = "I", .compatible = "compat2", .type = "type1", },
682 { .data = "J", .compatible = "compat2", .type = "type1", .name = "name8", },
683 { .data = "K", .compatible = "compat2", .name = "name9", },
684 {}
685};
686
687static struct {
688 const char *path;
689 const char *data;
690} match_node_tests[] = {
691 { .path = "/testcase-data/match-node/name0", .data = "A", },
692 { .path = "/testcase-data/match-node/name1", .data = "B", },
693 { .path = "/testcase-data/match-node/a/name2", .data = "Ca", },
694 { .path = "/testcase-data/match-node/b/name2", .data = "Cb", },
695 { .path = "/testcase-data/match-node/c/name2", .data = "Cc", },
696 { .path = "/testcase-data/match-node/name3", .data = "E", },
697 { .path = "/testcase-data/match-node/name4", .data = "G", },
698 { .path = "/testcase-data/match-node/name5", .data = "H", },
699 { .path = "/testcase-data/match-node/name6", .data = "G", },
700 { .path = "/testcase-data/match-node/name7", .data = "I", },
701 { .path = "/testcase-data/match-node/name8", .data = "J", },
702 { .path = "/testcase-data/match-node/name9", .data = "K", },
703};
704
705static void __init of_selftest_match_node(void)
706{
707 struct device_node *np;
708 const struct of_device_id *match;
709 int i;
710
711 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) {
712 np = of_find_node_by_path(match_node_tests[i].path);
713 if (!np) {
714 selftest(0, "missing testcase node %s\n",
715 match_node_tests[i].path);
716 continue;
717 }
718
719 match = of_match_node(match_node_table, np);
720 if (!match) {
721 selftest(0, "%s didn't match anything\n",
722 match_node_tests[i].path);
723 continue;
724 }
725
726 if (strcmp(match->data, match_node_tests[i].data) != 0) {
727 selftest(0, "%s got wrong match. expected %s, got %s\n",
728 match_node_tests[i].path, match_node_tests[i].data,
729 (const char *)match->data);
730 continue;
731 }
732 selftest(1, "passed");
733 }
734}
735
851da976
GL
736struct device test_bus = {
737 .init_name = "unittest-bus",
738};
82c0f589
RH
739static void __init of_selftest_platform_populate(void)
740{
851da976
GL
741 int irq, rc;
742 struct device_node *np, *child, *grandchild;
82c0f589 743 struct platform_device *pdev;
fb2caa50
RH
744 struct of_device_id match[] = {
745 { .compatible = "test-device", },
746 {}
747 };
82c0f589
RH
748
749 np = of_find_node_by_path("/testcase-data");
750 of_platform_populate(np, of_default_bus_match_table, NULL, NULL);
751
752 /* Test that a missing irq domain returns -EPROBE_DEFER */
753 np = of_find_node_by_path("/testcase-data/testcase-device1");
754 pdev = of_find_device_by_node(np);
7d1cdc89
RH
755 selftest(pdev, "device 1 creation failed\n");
756
82c0f589 757 irq = platform_get_irq(pdev, 0);
7d1cdc89 758 selftest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
82c0f589
RH
759
760 /* Test that a parsing failure does not return -EPROBE_DEFER */
761 np = of_find_node_by_path("/testcase-data/testcase-device2");
762 pdev = of_find_device_by_node(np);
7d1cdc89 763 selftest(pdev, "device 2 creation failed\n");
82c0f589 764 irq = platform_get_irq(pdev, 0);
7d1cdc89 765 selftest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
82c0f589 766
851da976
GL
767 if (selftest(np = of_find_node_by_path("/testcase-data/platform-tests"),
768 "No testcase data in device tree\n"));
769 return;
770
771 if (selftest(!(rc = device_register(&test_bus)),
772 "testbus registration failed; rc=%i\n", rc));
fb2caa50 773 return;
fb2caa50
RH
774
775 for_each_child_of_node(np, child) {
851da976 776 of_platform_populate(child, match, NULL, &test_bus);
fb2caa50
RH
777 for_each_child_of_node(child, grandchild)
778 selftest(of_find_device_by_node(grandchild),
779 "Could not create device for node '%s'\n",
780 grandchild->name);
781 }
851da976
GL
782
783 of_platform_depopulate(&test_bus);
784 for_each_child_of_node(np, child) {
785 for_each_child_of_node(child, grandchild)
786 selftest(!of_find_device_by_node(grandchild),
787 "device didn't get destroyed '%s'\n",
788 grandchild->name);
789 }
790
791 device_unregister(&test_bus);
792 of_node_put(np);
82c0f589
RH
793}
794
ae9304c9
GM
795/**
796 * update_node_properties - adds the properties
797 * of np into dup node (present in live tree) and
798 * updates parent of children of np to dup.
799 *
800 * @np: node already present in live tree
801 * @dup: node present in live tree to be updated
802 */
803static void update_node_properties(struct device_node *np,
804 struct device_node *dup)
805{
806 struct property *prop;
807 struct device_node *child;
808
809 for_each_property_of_node(np, prop)
810 of_add_property(dup, prop);
811
812 for_each_child_of_node(np, child)
813 child->parent = dup;
814}
815
816/**
817 * attach_node_and_children - attaches nodes
818 * and its children to live tree
819 *
820 * @np: Node to attach to live tree
821 */
822static int attach_node_and_children(struct device_node *np)
823{
5063e25a 824 struct device_node *next, *dup, *child;
3ce04b4a 825 unsigned long flags;
ae9304c9 826
5063e25a
GL
827 dup = of_find_node_by_path(np->full_name);
828 if (dup) {
829 update_node_properties(np, dup);
830 return 0;
831 }
ae9304c9 832
5063e25a
GL
833 /* Children of the root need to be remembered for removal */
834 if (np->parent == of_root) {
e66c98c7
GL
835 if (WARN_ON(last_node_index >= NO_OF_NODES))
836 return -EINVAL;
5063e25a 837 nodes[last_node_index++] = np;
ae9304c9 838 }
ae9304c9 839
5063e25a
GL
840 child = np->child;
841 np->child = NULL;
3ce04b4a
GM
842
843 mutex_lock(&of_mutex);
844 raw_spin_lock_irqsave(&devtree_lock, flags);
845 np->sibling = np->parent->child;
846 np->parent->child = np;
847 of_node_clear_flag(np, OF_DETACHED);
848 raw_spin_unlock_irqrestore(&devtree_lock, flags);
849
850 __of_attach_node_sysfs(np);
851 mutex_unlock(&of_mutex);
852
5063e25a
GL
853 while (child) {
854 next = child->sibling;
855 attach_node_and_children(child);
856 child = next;
ae9304c9
GM
857 }
858
859 return 0;
860}
861
862/**
863 * selftest_data_add - Reads, copies data from
864 * linked tree and attaches it to the live tree
865 */
866static int __init selftest_data_add(void)
867{
868 void *selftest_data;
b951f9dc 869 struct device_node *selftest_data_node, *np;
ae9304c9
GM
870 extern uint8_t __dtb_testcases_begin[];
871 extern uint8_t __dtb_testcases_end[];
872 const int size = __dtb_testcases_end - __dtb_testcases_begin;
2eb46da2 873 int rc;
ae9304c9 874
b951f9dc 875 if (!size) {
ae9304c9
GM
876 pr_warn("%s: No testcase data to attach; not running tests\n",
877 __func__);
878 return -ENODATA;
879 }
880
881 /* creating copy */
882 selftest_data = kmemdup(__dtb_testcases_begin, size, GFP_KERNEL);
883
884 if (!selftest_data) {
885 pr_warn("%s: Failed to allocate memory for selftest_data; "
886 "not running tests\n", __func__);
887 return -ENOMEM;
888 }
889 of_fdt_unflatten_tree(selftest_data, &selftest_data_node);
b951f9dc
GM
890 if (!selftest_data_node) {
891 pr_warn("%s: No tree to attach; not running tests\n", __func__);
892 return -ENODATA;
893 }
2eb46da2
GL
894 of_node_set_flag(selftest_data_node, OF_DETACHED);
895 rc = of_resolve_phandles(selftest_data_node);
896 if (rc) {
897 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc);
898 return -EINVAL;
899 }
b951f9dc 900
5063e25a 901 if (!of_root) {
b951f9dc
GM
902 /* enabling flag for removing nodes */
903 selftest_live_tree = true;
5063e25a 904 of_root = selftest_data_node;
b951f9dc
GM
905
906 for_each_of_allnodes(np)
907 __of_attach_node_sysfs(np);
908 of_aliases = of_find_node_by_path("/aliases");
909 of_chosen = of_find_node_by_path("/chosen");
910 return 0;
911 }
ae9304c9
GM
912
913 /* attach the sub-tree to live tree */
5063e25a
GL
914 np = selftest_data_node->child;
915 while (np) {
916 struct device_node *next = np->sibling;
917 np->parent = of_root;
918 attach_node_and_children(np);
919 np = next;
920 }
921 return 0;
ae9304c9
GM
922}
923
177d271c
PA
924#ifdef CONFIG_OF_OVERLAY
925
926static int selftest_probe(struct platform_device *pdev)
927{
928 struct device *dev = &pdev->dev;
929 struct device_node *np = dev->of_node;
930
931 if (np == NULL) {
932 dev_err(dev, "No OF data for device\n");
933 return -EINVAL;
934
935 }
936
937 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
6b1271de
PA
938
939 of_platform_populate(np, NULL, NULL, &pdev->dev);
940
177d271c
PA
941 return 0;
942}
943
944static int selftest_remove(struct platform_device *pdev)
945{
946 struct device *dev = &pdev->dev;
947 struct device_node *np = dev->of_node;
948
949 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
950 return 0;
951}
952
953static struct of_device_id selftest_match[] = {
954 { .compatible = "selftest", },
955 {},
956};
177d271c
PA
957
958static struct platform_driver selftest_driver = {
959 .probe = selftest_probe,
960 .remove = selftest_remove,
961 .driver = {
962 .name = "selftest",
963 .owner = THIS_MODULE,
964 .of_match_table = of_match_ptr(selftest_match),
965 },
966};
967
968/* get the platform device instantiated at the path */
969static struct platform_device *of_path_to_platform_device(const char *path)
970{
971 struct device_node *np;
972 struct platform_device *pdev;
973
974 np = of_find_node_by_path(path);
975 if (np == NULL)
976 return NULL;
977
978 pdev = of_find_device_by_node(np);
979 of_node_put(np);
980
981 return pdev;
982}
983
984/* find out if a platform device exists at that path */
985static int of_path_platform_device_exists(const char *path)
986{
987 struct platform_device *pdev;
988
989 pdev = of_path_to_platform_device(path);
990 platform_device_put(pdev);
991 return pdev != NULL;
992}
993
994static const char *selftest_path(int nr)
995{
996 static char buf[256];
997
998 snprintf(buf, sizeof(buf) - 1,
999 "/testcase-data/overlay-node/test-bus/test-selftest%d", nr);
1000 buf[sizeof(buf) - 1] = '\0';
1001
1002 return buf;
1003}
1004
1005static const char *overlay_path(int nr)
1006{
1007 static char buf[256];
1008
1009 snprintf(buf, sizeof(buf) - 1,
1010 "/testcase-data/overlay%d", nr);
1011 buf[sizeof(buf) - 1] = '\0';
1012
1013 return buf;
1014}
1015
1016static const char *bus_path = "/testcase-data/overlay-node/test-bus";
1017
1018static int of_selftest_apply_overlay(int selftest_nr, int overlay_nr,
1019 int *overlay_id)
1020{
1021 struct device_node *np = NULL;
1022 int ret, id = -1;
1023
1024 np = of_find_node_by_path(overlay_path(overlay_nr));
1025 if (np == NULL) {
1026 selftest(0, "could not find overlay node @\"%s\"\n",
1027 overlay_path(overlay_nr));
1028 ret = -EINVAL;
1029 goto out;
1030 }
1031
1032 ret = of_overlay_create(np);
1033 if (ret < 0) {
1034 selftest(0, "could not create overlay from \"%s\"\n",
1035 overlay_path(overlay_nr));
1036 goto out;
1037 }
1038 id = ret;
1039
1040 ret = 0;
1041
1042out:
1043 of_node_put(np);
1044
1045 if (overlay_id)
1046 *overlay_id = id;
1047
1048 return ret;
1049}
1050
1051/* apply an overlay while checking before and after states */
1052static int of_selftest_apply_overlay_check(int overlay_nr, int selftest_nr,
1053 int before, int after)
1054{
1055 int ret;
1056
1057 /* selftest device must not be in before state */
1058 if (of_path_platform_device_exists(selftest_path(selftest_nr))
1059 != before) {
1060 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1061 overlay_path(overlay_nr),
1062 selftest_path(selftest_nr),
1063 !before ? "enabled" : "disabled");
1064 return -EINVAL;
1065 }
1066
1067 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, NULL);
1068 if (ret != 0) {
1069 /* of_selftest_apply_overlay already called selftest() */
1070 return ret;
1071 }
1072
1073 /* selftest device must be to set to after state */
1074 if (of_path_platform_device_exists(selftest_path(selftest_nr))
1075 != after) {
1076 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1077 overlay_path(overlay_nr),
1078 selftest_path(selftest_nr),
1079 !after ? "enabled" : "disabled");
1080 return -EINVAL;
1081 }
1082
1083 return 0;
1084}
1085
1086/* apply an overlay and then revert it while checking before, after states */
1087static int of_selftest_apply_revert_overlay_check(int overlay_nr,
1088 int selftest_nr, int before, int after)
1089{
1090 int ret, ov_id;
1091
1092 /* selftest device must be in before state */
1093 if (of_path_platform_device_exists(selftest_path(selftest_nr))
1094 != before) {
1095 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1096 overlay_path(overlay_nr),
1097 selftest_path(selftest_nr),
1098 !before ? "enabled" : "disabled");
1099 return -EINVAL;
1100 }
1101
1102 /* apply the overlay */
1103 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, &ov_id);
1104 if (ret != 0) {
1105 /* of_selftest_apply_overlay already called selftest() */
1106 return ret;
1107 }
1108
1109 /* selftest device must be in after state */
1110 if (of_path_platform_device_exists(selftest_path(selftest_nr))
1111 != after) {
1112 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1113 overlay_path(overlay_nr),
1114 selftest_path(selftest_nr),
1115 !after ? "enabled" : "disabled");
1116 return -EINVAL;
1117 }
1118
1119 ret = of_overlay_destroy(ov_id);
1120 if (ret != 0) {
1121 selftest(0, "overlay @\"%s\" failed to be destroyed @\"%s\"\n",
1122 overlay_path(overlay_nr),
1123 selftest_path(selftest_nr));
1124 return ret;
1125 }
1126
1127 /* selftest device must be again in before state */
1128 if (of_path_platform_device_exists(selftest_path(selftest_nr))
1129 != before) {
1130 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1131 overlay_path(overlay_nr),
1132 selftest_path(selftest_nr),
1133 !before ? "enabled" : "disabled");
1134 return -EINVAL;
1135 }
1136
1137 return 0;
1138}
1139
1140/* test activation of device */
1141static void of_selftest_overlay_0(void)
1142{
1143 int ret;
1144
1145 /* device should enable */
1146 ret = of_selftest_apply_overlay_check(0, 0, 0, 1);
1147 if (ret != 0)
1148 return;
1149
1150 selftest(1, "overlay test %d passed\n", 0);
1151}
1152
1153/* test deactivation of device */
1154static void of_selftest_overlay_1(void)
1155{
1156 int ret;
1157
1158 /* device should disable */
1159 ret = of_selftest_apply_overlay_check(1, 1, 1, 0);
1160 if (ret != 0)
1161 return;
1162
1163 selftest(1, "overlay test %d passed\n", 1);
1164}
1165
1166/* test activation of device */
1167static void of_selftest_overlay_2(void)
1168{
1169 int ret;
1170
1171 /* device should enable */
1172 ret = of_selftest_apply_overlay_check(2, 2, 0, 1);
1173 if (ret != 0)
1174 return;
1175
1176 selftest(1, "overlay test %d passed\n", 2);
1177}
1178
1179/* test deactivation of device */
1180static void of_selftest_overlay_3(void)
1181{
1182 int ret;
1183
1184 /* device should disable */
1185 ret = of_selftest_apply_overlay_check(3, 3, 1, 0);
1186 if (ret != 0)
1187 return;
1188
1189 selftest(1, "overlay test %d passed\n", 3);
1190}
1191
1192/* test activation of a full device node */
1193static void of_selftest_overlay_4(void)
1194{
1195 int ret;
1196
1197 /* device should disable */
1198 ret = of_selftest_apply_overlay_check(4, 4, 0, 1);
1199 if (ret != 0)
1200 return;
1201
1202 selftest(1, "overlay test %d passed\n", 4);
1203}
1204
1205/* test overlay apply/revert sequence */
1206static void of_selftest_overlay_5(void)
1207{
1208 int ret;
1209
1210 /* device should disable */
1211 ret = of_selftest_apply_revert_overlay_check(5, 5, 0, 1);
1212 if (ret != 0)
1213 return;
1214
1215 selftest(1, "overlay test %d passed\n", 5);
1216}
1217
1218/* test overlay application in sequence */
1219static void of_selftest_overlay_6(void)
1220{
1221 struct device_node *np;
1222 int ret, i, ov_id[2];
1223 int overlay_nr = 6, selftest_nr = 6;
1224 int before = 0, after = 1;
1225
1226 /* selftest device must be in before state */
1227 for (i = 0; i < 2; i++) {
1228 if (of_path_platform_device_exists(
1229 selftest_path(selftest_nr + i))
1230 != before) {
1231 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1232 overlay_path(overlay_nr + i),
1233 selftest_path(selftest_nr + i),
1234 !before ? "enabled" : "disabled");
1235 return;
1236 }
1237 }
1238
1239 /* apply the overlays */
1240 for (i = 0; i < 2; i++) {
1241
1242 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1243 if (np == NULL) {
1244 selftest(0, "could not find overlay node @\"%s\"\n",
1245 overlay_path(overlay_nr + i));
1246 return;
1247 }
1248
1249 ret = of_overlay_create(np);
1250 if (ret < 0) {
1251 selftest(0, "could not create overlay from \"%s\"\n",
1252 overlay_path(overlay_nr + i));
1253 return;
1254 }
1255 ov_id[i] = ret;
1256 }
1257
1258 for (i = 0; i < 2; i++) {
1259 /* selftest device must be in after state */
1260 if (of_path_platform_device_exists(
1261 selftest_path(selftest_nr + i))
1262 != after) {
1263 selftest(0, "overlay @\"%s\" failed @\"%s\" %s\n",
1264 overlay_path(overlay_nr + i),
1265 selftest_path(selftest_nr + i),
1266 !after ? "enabled" : "disabled");
1267 return;
1268 }
1269 }
1270
1271 for (i = 1; i >= 0; i--) {
1272 ret = of_overlay_destroy(ov_id[i]);
1273 if (ret != 0) {
1274 selftest(0, "overlay @\"%s\" failed destroy @\"%s\"\n",
1275 overlay_path(overlay_nr + i),
1276 selftest_path(selftest_nr + i));
1277 return;
1278 }
1279 }
1280
1281 for (i = 0; i < 2; i++) {
1282 /* selftest device must be again in before state */
1283 if (of_path_platform_device_exists(
1284 selftest_path(selftest_nr + i))
1285 != before) {
1286 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1287 overlay_path(overlay_nr + i),
1288 selftest_path(selftest_nr + i),
1289 !before ? "enabled" : "disabled");
1290 return;
1291 }
1292 }
1293
1294 selftest(1, "overlay test %d passed\n", 6);
1295}
1296
1297/* test overlay application in sequence */
1298static void of_selftest_overlay_8(void)
1299{
1300 struct device_node *np;
1301 int ret, i, ov_id[2];
1302 int overlay_nr = 8, selftest_nr = 8;
1303
1304 /* we don't care about device state in this test */
1305
1306 /* apply the overlays */
1307 for (i = 0; i < 2; i++) {
1308
1309 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1310 if (np == NULL) {
1311 selftest(0, "could not find overlay node @\"%s\"\n",
1312 overlay_path(overlay_nr + i));
1313 return;
1314 }
1315
1316 ret = of_overlay_create(np);
1317 if (ret < 0) {
1318 selftest(0, "could not create overlay from \"%s\"\n",
1319 overlay_path(overlay_nr + i));
1320 return;
1321 }
1322 ov_id[i] = ret;
1323 }
1324
1325 /* now try to remove first overlay (it should fail) */
1326 ret = of_overlay_destroy(ov_id[0]);
1327 if (ret == 0) {
1328 selftest(0, "overlay @\"%s\" was destroyed @\"%s\"\n",
1329 overlay_path(overlay_nr + 0),
1330 selftest_path(selftest_nr));
1331 return;
1332 }
1333
1334 /* removing them in order should work */
1335 for (i = 1; i >= 0; i--) {
1336 ret = of_overlay_destroy(ov_id[i]);
1337 if (ret != 0) {
1338 selftest(0, "overlay @\"%s\" not destroyed @\"%s\"\n",
1339 overlay_path(overlay_nr + i),
1340 selftest_path(selftest_nr));
1341 return;
1342 }
1343 }
1344
1345 selftest(1, "overlay test %d passed\n", 8);
1346}
1347
6b1271de
PA
1348/* test insertion of a bus with parent devices */
1349static void of_selftest_overlay_10(void)
1350{
1351 int ret;
1352 char *child_path;
1353
1354 /* device should disable */
1355 ret = of_selftest_apply_overlay_check(10, 10, 0, 1);
1356 if (selftest(ret == 0, "overlay test %d failed; overlay application\n", 10))
1357 return;
1358
1359 child_path = kasprintf(GFP_KERNEL, "%s/test-selftest101",
1360 selftest_path(10));
1361 if (selftest(child_path, "overlay test %d failed; kasprintf\n", 10))
1362 return;
1363
1364 ret = of_path_platform_device_exists(child_path);
1365 kfree(child_path);
1366 if (selftest(ret, "overlay test %d failed; no child device\n", 10))
1367 return;
1368}
1369
1370/* test insertion of a bus with parent devices (and revert) */
1371static void of_selftest_overlay_11(void)
1372{
1373 int ret;
1374
1375 /* device should disable */
1376 ret = of_selftest_apply_revert_overlay_check(11, 11, 0, 1);
1377 if (selftest(ret == 0, "overlay test %d failed; overlay application\n", 11))
1378 return;
1379}
1380
177d271c
PA
1381static void __init of_selftest_overlay(void)
1382{
1383 struct device_node *bus_np = NULL;
1384 int ret;
1385
1386 ret = platform_driver_register(&selftest_driver);
1387 if (ret != 0) {
1388 selftest(0, "could not register selftest driver\n");
1389 goto out;
1390 }
1391
1392 bus_np = of_find_node_by_path(bus_path);
1393 if (bus_np == NULL) {
1394 selftest(0, "could not find bus_path \"%s\"\n", bus_path);
1395 goto out;
1396 }
1397
1398 ret = of_platform_populate(bus_np, of_default_bus_match_table,
1399 NULL, NULL);
1400 if (ret != 0) {
1401 selftest(0, "could not populate bus @ \"%s\"\n", bus_path);
1402 goto out;
1403 }
1404
1405 if (!of_path_platform_device_exists(selftest_path(100))) {
1406 selftest(0, "could not find selftest0 @ \"%s\"\n",
1407 selftest_path(100));
1408 goto out;
1409 }
1410
1411 if (of_path_platform_device_exists(selftest_path(101))) {
1412 selftest(0, "selftest1 @ \"%s\" should not exist\n",
1413 selftest_path(101));
1414 goto out;
1415 }
1416
1417 selftest(1, "basic infrastructure of overlays passed");
1418
1419 /* tests in sequence */
1420 of_selftest_overlay_0();
1421 of_selftest_overlay_1();
1422 of_selftest_overlay_2();
1423 of_selftest_overlay_3();
1424 of_selftest_overlay_4();
1425 of_selftest_overlay_5();
1426 of_selftest_overlay_6();
1427 of_selftest_overlay_8();
1428
6b1271de
PA
1429 of_selftest_overlay_10();
1430 of_selftest_overlay_11();
1431
177d271c
PA
1432out:
1433 of_node_put(bus_np);
1434}
1435
1436#else
1437static inline void __init of_selftest_overlay(void) { }
1438#endif
1439
53a42093
GL
1440static int __init of_selftest(void)
1441{
1442 struct device_node *np;
ae9304c9
GM
1443 int res;
1444
1445 /* adding data for selftest */
1446 res = selftest_data_add();
1447 if (res)
1448 return res;
788ec2fc
GL
1449 if (!of_aliases)
1450 of_aliases = of_find_node_by_path("/aliases");
53a42093
GL
1451
1452 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
1453 if (!np) {
1454 pr_info("No testcase data in device tree; not running tests\n");
1455 return 0;
1456 }
1457 of_node_put(np);
1458
1459 pr_info("start of selftest - you will see error messages\n");
f2051d6a 1460 of_selftest_check_tree_linkage();
841ec213 1461 of_selftest_check_phandles();
ae91ff72 1462 of_selftest_find_node_by_name();
7e66c5c7 1463 of_selftest_dynamic();
53a42093 1464 of_selftest_parse_phandle_with_args();
a87fa1d8 1465 of_selftest_property_string();
69843396 1466 of_selftest_property_copy();
201c910b 1467 of_selftest_changeset();
a9f10ca7 1468 of_selftest_parse_interrupts();
79d97015 1469 of_selftest_parse_interrupts_extended();
1f42e5dd 1470 of_selftest_match_node();
82c0f589 1471 of_selftest_platform_populate();
177d271c 1472 of_selftest_overlay();
ae9304c9 1473
f2051d6a
GL
1474 /* Double check linkage after removing testcase data */
1475 of_selftest_check_tree_linkage();
1476
1477 pr_info("end of selftest - %i passed, %i failed\n",
1478 selftest_results.passed, selftest_results.failed);
1479
53a42093
GL
1480 return 0;
1481}
1482late_initcall(of_selftest);