2 * Self tests for device tree subsystem
5 #define pr_fmt(fmt) "### dt-test ### " fmt
9 #include <linux/errno.h>
10 #include <linux/hashtable.h>
11 #include <linux/module.h>
13 #include <linux/of_fdt.h>
14 #include <linux/of_irq.h>
15 #include <linux/of_platform.h>
16 #include <linux/list.h>
17 #include <linux/mutex.h>
18 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/platform_device.h>
21 #include <linux/of_platform.h>
23 #include <linux/i2c.h>
24 #include <linux/i2c-mux.h>
26 #include "of_private.h"
28 static struct unittest_results {
33 #define unittest(result, fmt, ...) ({ \
34 bool failed = !(result); \
36 unittest_results.failed++; \
37 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \
39 unittest_results.passed++; \
40 pr_debug("pass %s():%i\n", __func__, __LINE__); \
45 static void __init of_unittest_find_node_by_name(void)
47 struct device_node *np;
50 np = of_find_node_by_path("/testcase-data");
51 unittest(np && !strcmp("/testcase-data", np->full_name),
52 "find /testcase-data failed\n");
55 /* Test if trailing '/' works */
56 np = of_find_node_by_path("/testcase-data/");
57 unittest(!np, "trailing '/' on /testcase-data/ should fail\n");
59 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
60 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
61 "find /testcase-data/phandle-tests/consumer-a failed\n");
64 np = of_find_node_by_path("testcase-alias");
65 unittest(np && !strcmp("/testcase-data", np->full_name),
66 "find testcase-alias failed\n");
69 /* Test if trailing '/' works on aliases */
70 np = of_find_node_by_path("testcase-alias/");
71 unittest(!np, "trailing '/' on testcase-alias/ should fail\n");
73 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a");
74 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
75 "find testcase-alias/phandle-tests/consumer-a failed\n");
78 np = of_find_node_by_path("/testcase-data/missing-path");
79 unittest(!np, "non-existent path returned node %s\n", np->full_name);
82 np = of_find_node_by_path("missing-alias");
83 unittest(!np, "non-existent alias returned node %s\n", np->full_name);
86 np = of_find_node_by_path("testcase-alias/missing-path");
87 unittest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
90 np = of_find_node_opts_by_path("/testcase-data:testoption", &options);
91 unittest(np && !strcmp("testoption", options),
92 "option path test failed\n");
95 np = of_find_node_opts_by_path("/testcase-data:test/option", &options);
96 unittest(np && !strcmp("test/option", options),
97 "option path test, subcase #1 failed\n");
100 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options);
101 unittest(np && !strcmp("test/option", options),
102 "option path test, subcase #2 failed\n");
105 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL);
106 unittest(np, "NULL option path test failed\n");
109 np = of_find_node_opts_by_path("testcase-alias:testaliasoption",
111 unittest(np && !strcmp("testaliasoption", options),
112 "option alias path test failed\n");
115 np = of_find_node_opts_by_path("testcase-alias:test/alias/option",
117 unittest(np && !strcmp("test/alias/option", options),
118 "option alias path test, subcase #1 failed\n");
121 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL);
122 unittest(np, "NULL option alias path test failed\n");
125 options = "testoption";
126 np = of_find_node_opts_by_path("testcase-alias", &options);
127 unittest(np && !options, "option clearing test failed\n");
130 options = "testoption";
131 np = of_find_node_opts_by_path("/", &options);
132 unittest(np && !options, "option clearing root node test failed\n");
136 static void __init of_unittest_dynamic(void)
138 struct device_node *np;
139 struct property *prop;
141 np = of_find_node_by_path("/testcase-data");
143 pr_err("missing testcase data\n");
147 /* Array of 4 properties for the purpose of testing */
148 prop = kzalloc(sizeof(*prop) * 4, GFP_KERNEL);
150 unittest(0, "kzalloc() failed\n");
154 /* Add a new property - should pass*/
155 prop->name = "new-property";
156 prop->value = "new-property-data";
157 prop->length = strlen(prop->value);
158 unittest(of_add_property(np, prop) == 0, "Adding a new property failed\n");
160 /* Try to add an existing property - should fail */
162 prop->name = "new-property";
163 prop->value = "new-property-data-should-fail";
164 prop->length = strlen(prop->value);
165 unittest(of_add_property(np, prop) != 0,
166 "Adding an existing property should have failed\n");
168 /* Try to modify an existing property - should pass */
169 prop->value = "modify-property-data-should-pass";
170 prop->length = strlen(prop->value);
171 unittest(of_update_property(np, prop) == 0,
172 "Updating an existing property should have passed\n");
174 /* Try to modify non-existent property - should pass*/
176 prop->name = "modify-property";
177 prop->value = "modify-missing-property-data-should-pass";
178 prop->length = strlen(prop->value);
179 unittest(of_update_property(np, prop) == 0,
180 "Updating a missing property should have passed\n");
182 /* Remove property - should pass */
183 unittest(of_remove_property(np, prop) == 0,
184 "Removing a property should have passed\n");
186 /* Adding very large property - should pass */
188 prop->name = "large-property-PAGE_SIZEx8";
189 prop->length = PAGE_SIZE * 8;
190 prop->value = kzalloc(prop->length, GFP_KERNEL);
191 unittest(prop->value != NULL, "Unable to allocate large buffer\n");
193 unittest(of_add_property(np, prop) == 0,
194 "Adding a large property should have passed\n");
197 static int __init of_unittest_check_node_linkage(struct device_node *np)
199 struct device_node *child;
202 for_each_child_of_node(np, child) {
203 if (child->parent != np) {
204 pr_err("Child node %s links to wrong parent %s\n",
205 child->name, np->name);
209 rc = of_unittest_check_node_linkage(child);
218 static void __init of_unittest_check_tree_linkage(void)
220 struct device_node *np;
221 int allnode_count = 0, child_count;
226 for_each_of_allnodes(np)
228 child_count = of_unittest_check_node_linkage(of_root);
230 unittest(child_count > 0, "Device node data structure is corrupted\n");
231 unittest(child_count == allnode_count,
232 "allnodes list size (%i) doesn't match sibling lists size (%i)\n",
233 allnode_count, child_count);
234 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count);
238 struct hlist_node node;
239 struct device_node *np;
242 static DEFINE_HASHTABLE(phandle_ht, 8);
243 static void __init of_unittest_check_phandles(void)
245 struct device_node *np;
246 struct node_hash *nh;
247 struct hlist_node *tmp;
248 int i, dup_count = 0, phandle_count = 0;
250 for_each_of_allnodes(np) {
254 hash_for_each_possible(phandle_ht, nh, node, np->phandle) {
255 if (nh->np->phandle == np->phandle) {
256 pr_info("Duplicate phandle! %i used by %s and %s\n",
257 np->phandle, nh->np->full_name, np->full_name);
263 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
268 hash_add(phandle_ht, &nh->node, np->phandle);
271 unittest(dup_count == 0, "Found %i duplicates in %i phandles\n",
272 dup_count, phandle_count);
275 hash_for_each_safe(phandle_ht, i, tmp, nh, node) {
281 static void __init of_unittest_parse_phandle_with_args(void)
283 struct device_node *np;
284 struct of_phandle_args args;
287 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
289 pr_err("missing testcase data\n");
293 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells");
294 unittest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc);
296 for (i = 0; i < 8; i++) {
299 rc = of_parse_phandle_with_args(np, "phandle-list",
300 "#phandle-cells", i, &args);
302 /* Test the values from tests-phandle.dtsi */
306 passed &= (args.args_count == 1);
307 passed &= (args.args[0] == (i + 1));
311 passed &= (args.args_count == 2);
312 passed &= (args.args[0] == (i + 1));
313 passed &= (args.args[1] == 0);
316 passed &= (rc == -ENOENT);
320 passed &= (args.args_count == 3);
321 passed &= (args.args[0] == (i + 1));
322 passed &= (args.args[1] == 4);
323 passed &= (args.args[2] == 3);
327 passed &= (args.args_count == 2);
328 passed &= (args.args[0] == (i + 1));
329 passed &= (args.args[1] == 100);
333 passed &= (args.args_count == 0);
337 passed &= (args.args_count == 1);
338 passed &= (args.args[0] == (i + 1));
341 passed &= (rc == -ENOENT);
347 unittest(passed, "index %i - data error on node %s rc=%i\n",
348 i, args.np->full_name, rc);
351 /* Check for missing list property */
352 rc = of_parse_phandle_with_args(np, "phandle-list-missing",
353 "#phandle-cells", 0, &args);
354 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
355 rc = of_count_phandle_with_args(np, "phandle-list-missing",
357 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
359 /* Check for missing cells property */
360 rc = of_parse_phandle_with_args(np, "phandle-list",
361 "#phandle-cells-missing", 0, &args);
362 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
363 rc = of_count_phandle_with_args(np, "phandle-list",
364 "#phandle-cells-missing");
365 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
367 /* Check for bad phandle in list */
368 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle",
369 "#phandle-cells", 0, &args);
370 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
371 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle",
373 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
375 /* Check for incorrectly formed argument list */
376 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args",
377 "#phandle-cells", 1, &args);
378 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
379 rc = of_count_phandle_with_args(np, "phandle-list-bad-args",
381 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
384 static void __init of_unittest_property_string(void)
386 const char *strings[4];
387 struct device_node *np;
390 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
392 pr_err("No testcase data in device tree\n");
396 rc = of_property_match_string(np, "phandle-list-names", "first");
397 unittest(rc == 0, "first expected:0 got:%i\n", rc);
398 rc = of_property_match_string(np, "phandle-list-names", "second");
399 unittest(rc == 1, "second expected:1 got:%i\n", rc);
400 rc = of_property_match_string(np, "phandle-list-names", "third");
401 unittest(rc == 2, "third expected:2 got:%i\n", rc);
402 rc = of_property_match_string(np, "phandle-list-names", "fourth");
403 unittest(rc == -ENODATA, "unmatched string; rc=%i\n", rc);
404 rc = of_property_match_string(np, "missing-property", "blah");
405 unittest(rc == -EINVAL, "missing property; rc=%i\n", rc);
406 rc = of_property_match_string(np, "empty-property", "blah");
407 unittest(rc == -ENODATA, "empty property; rc=%i\n", rc);
408 rc = of_property_match_string(np, "unterminated-string", "blah");
409 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
411 /* of_property_count_strings() tests */
412 rc = of_property_count_strings(np, "string-property");
413 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc);
414 rc = of_property_count_strings(np, "phandle-list-names");
415 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc);
416 rc = of_property_count_strings(np, "unterminated-string");
417 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
418 rc = of_property_count_strings(np, "unterminated-string-list");
419 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
421 /* of_property_read_string_index() tests */
422 rc = of_property_read_string_index(np, "string-property", 0, strings);
423 unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc);
425 rc = of_property_read_string_index(np, "string-property", 1, strings);
426 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
427 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings);
428 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
429 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings);
430 unittest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc);
431 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings);
432 unittest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc);
434 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings);
435 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
437 rc = of_property_read_string_index(np, "unterminated-string", 0, strings);
438 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
439 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings);
440 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
442 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */
443 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
446 /* of_property_read_string_array() tests */
447 rc = of_property_read_string_array(np, "string-property", strings, 4);
448 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc);
449 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4);
450 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc);
451 rc = of_property_read_string_array(np, "unterminated-string", strings, 4);
452 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
453 /* -- An incorrectly formed string should cause a failure */
454 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4);
455 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
456 /* -- parsing the correctly formed strings should still work: */
458 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2);
459 unittest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc);
461 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1);
462 unittest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]);
465 #define propcmp(p1, p2) (((p1)->length == (p2)->length) && \
466 (p1)->value && (p2)->value && \
467 !memcmp((p1)->value, (p2)->value, (p1)->length) && \
468 !strcmp((p1)->name, (p2)->name))
469 static void __init of_unittest_property_copy(void)
471 #ifdef CONFIG_OF_DYNAMIC
472 struct property p1 = { .name = "p1", .length = 0, .value = "" };
473 struct property p2 = { .name = "p2", .length = 5, .value = "abcd" };
474 struct property *new;
476 new = __of_prop_dup(&p1, GFP_KERNEL);
477 unittest(new && propcmp(&p1, new), "empty property didn't copy correctly\n");
482 new = __of_prop_dup(&p2, GFP_KERNEL);
483 unittest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n");
490 static void __init of_unittest_changeset(void)
492 #ifdef CONFIG_OF_DYNAMIC
493 struct property *ppadd, padd = { .name = "prop-add", .length = 0, .value = "" };
494 struct property *ppupdate, pupdate = { .name = "prop-update", .length = 5, .value = "abcd" };
495 struct property *ppremove;
496 struct device_node *n1, *n2, *n21, *nremove, *parent, *np;
497 struct of_changeset chgset;
499 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1");
500 unittest(n1, "testcase setup failure\n");
501 n2 = __of_node_dup(NULL, "/testcase-data/changeset/n2");
502 unittest(n2, "testcase setup failure\n");
503 n21 = __of_node_dup(NULL, "%s/%s", "/testcase-data/changeset/n2", "n21");
504 unittest(n21, "testcase setup failure %p\n", n21);
505 nremove = of_find_node_by_path("/testcase-data/changeset/node-remove");
506 unittest(nremove, "testcase setup failure\n");
507 ppadd = __of_prop_dup(&padd, GFP_KERNEL);
508 unittest(ppadd, "testcase setup failure\n");
509 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL);
510 unittest(ppupdate, "testcase setup failure\n");
511 parent = nremove->parent;
516 ppremove = of_find_property(parent, "prop-remove", NULL);
517 unittest(ppremove, "failed to find removal prop");
519 of_changeset_init(&chgset);
520 unittest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n");
521 unittest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n");
522 unittest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n");
523 unittest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n");
524 unittest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop\n");
525 unittest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n");
526 unittest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n");
527 mutex_lock(&of_mutex);
528 unittest(!of_changeset_apply(&chgset), "apply failed\n");
529 mutex_unlock(&of_mutex);
531 /* Make sure node names are constructed correctly */
532 unittest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")),
533 "'%s' not added\n", n21->full_name);
536 mutex_lock(&of_mutex);
537 unittest(!of_changeset_revert(&chgset), "revert failed\n");
538 mutex_unlock(&of_mutex);
540 of_changeset_destroy(&chgset);
544 static void __init of_unittest_parse_interrupts(void)
546 struct device_node *np;
547 struct of_phandle_args args;
550 np = of_find_node_by_path("/testcase-data/interrupts/interrupts0");
552 pr_err("missing testcase data\n");
556 for (i = 0; i < 4; i++) {
560 rc = of_irq_parse_one(np, i, &args);
563 passed &= (args.args_count == 1);
564 passed &= (args.args[0] == (i + 1));
566 unittest(passed, "index %i - data error on node %s rc=%i\n",
567 i, args.np->full_name, rc);
571 np = of_find_node_by_path("/testcase-data/interrupts/interrupts1");
573 pr_err("missing testcase data\n");
577 for (i = 0; i < 4; i++) {
581 rc = of_irq_parse_one(np, i, &args);
583 /* Test the values from tests-phandle.dtsi */
587 passed &= (args.args_count == 1);
588 passed &= (args.args[0] == 9);
592 passed &= (args.args_count == 3);
593 passed &= (args.args[0] == 10);
594 passed &= (args.args[1] == 11);
595 passed &= (args.args[2] == 12);
599 passed &= (args.args_count == 2);
600 passed &= (args.args[0] == 13);
601 passed &= (args.args[1] == 14);
605 passed &= (args.args_count == 2);
606 passed &= (args.args[0] == 15);
607 passed &= (args.args[1] == 16);
612 unittest(passed, "index %i - data error on node %s rc=%i\n",
613 i, args.np->full_name, rc);
618 static void __init of_unittest_parse_interrupts_extended(void)
620 struct device_node *np;
621 struct of_phandle_args args;
624 np = of_find_node_by_path("/testcase-data/interrupts/interrupts-extended0");
626 pr_err("missing testcase data\n");
630 for (i = 0; i < 7; i++) {
633 rc = of_irq_parse_one(np, i, &args);
635 /* Test the values from tests-phandle.dtsi */
639 passed &= (args.args_count == 1);
640 passed &= (args.args[0] == 1);
644 passed &= (args.args_count == 3);
645 passed &= (args.args[0] == 2);
646 passed &= (args.args[1] == 3);
647 passed &= (args.args[2] == 4);
651 passed &= (args.args_count == 2);
652 passed &= (args.args[0] == 5);
653 passed &= (args.args[1] == 6);
657 passed &= (args.args_count == 1);
658 passed &= (args.args[0] == 9);
662 passed &= (args.args_count == 3);
663 passed &= (args.args[0] == 10);
664 passed &= (args.args[1] == 11);
665 passed &= (args.args[2] == 12);
669 passed &= (args.args_count == 2);
670 passed &= (args.args[0] == 13);
671 passed &= (args.args[1] == 14);
675 passed &= (args.args_count == 1);
676 passed &= (args.args[0] == 15);
682 unittest(passed, "index %i - data error on node %s rc=%i\n",
683 i, args.np->full_name, rc);
688 static const struct of_device_id match_node_table[] = {
689 { .data = "A", .name = "name0", }, /* Name alone is lowest priority */
690 { .data = "B", .type = "type1", }, /* followed by type alone */
692 { .data = "Ca", .name = "name2", .type = "type1", }, /* followed by both together */
693 { .data = "Cb", .name = "name2", }, /* Only match when type doesn't match */
694 { .data = "Cc", .name = "name2", .type = "type2", },
696 { .data = "E", .compatible = "compat3" },
697 { .data = "G", .compatible = "compat2", },
698 { .data = "H", .compatible = "compat2", .name = "name5", },
699 { .data = "I", .compatible = "compat2", .type = "type1", },
700 { .data = "J", .compatible = "compat2", .type = "type1", .name = "name8", },
701 { .data = "K", .compatible = "compat2", .name = "name9", },
708 } match_node_tests[] = {
709 { .path = "/testcase-data/match-node/name0", .data = "A", },
710 { .path = "/testcase-data/match-node/name1", .data = "B", },
711 { .path = "/testcase-data/match-node/a/name2", .data = "Ca", },
712 { .path = "/testcase-data/match-node/b/name2", .data = "Cb", },
713 { .path = "/testcase-data/match-node/c/name2", .data = "Cc", },
714 { .path = "/testcase-data/match-node/name3", .data = "E", },
715 { .path = "/testcase-data/match-node/name4", .data = "G", },
716 { .path = "/testcase-data/match-node/name5", .data = "H", },
717 { .path = "/testcase-data/match-node/name6", .data = "G", },
718 { .path = "/testcase-data/match-node/name7", .data = "I", },
719 { .path = "/testcase-data/match-node/name8", .data = "J", },
720 { .path = "/testcase-data/match-node/name9", .data = "K", },
723 static void __init of_unittest_match_node(void)
725 struct device_node *np;
726 const struct of_device_id *match;
729 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) {
730 np = of_find_node_by_path(match_node_tests[i].path);
732 unittest(0, "missing testcase node %s\n",
733 match_node_tests[i].path);
737 match = of_match_node(match_node_table, np);
739 unittest(0, "%s didn't match anything\n",
740 match_node_tests[i].path);
744 if (strcmp(match->data, match_node_tests[i].data) != 0) {
745 unittest(0, "%s got wrong match. expected %s, got %s\n",
746 match_node_tests[i].path, match_node_tests[i].data,
747 (const char *)match->data);
750 unittest(1, "passed");
754 static const struct platform_device_info test_bus_info = {
755 .name = "unittest-bus",
757 static void __init of_unittest_platform_populate(void)
760 struct device_node *np, *child, *grandchild;
761 struct platform_device *pdev, *test_bus;
762 const struct of_device_id match[] = {
763 { .compatible = "test-device", },
767 np = of_find_node_by_path("/testcase-data");
768 of_platform_populate(np, of_default_bus_match_table, NULL, NULL);
770 /* Test that a missing irq domain returns -EPROBE_DEFER */
771 np = of_find_node_by_path("/testcase-data/testcase-device1");
772 pdev = of_find_device_by_node(np);
773 unittest(pdev, "device 1 creation failed\n");
775 irq = platform_get_irq(pdev, 0);
776 unittest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
778 /* Test that a parsing failure does not return -EPROBE_DEFER */
779 np = of_find_node_by_path("/testcase-data/testcase-device2");
780 pdev = of_find_device_by_node(np);
781 unittest(pdev, "device 2 creation failed\n");
782 irq = platform_get_irq(pdev, 0);
783 unittest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
785 np = of_find_node_by_path("/testcase-data/platform-tests");
786 unittest(np, "No testcase data in device tree\n");
790 test_bus = platform_device_register_full(&test_bus_info);
791 rc = PTR_ERR_OR_ZERO(test_bus);
792 unittest(!rc, "testbus registration failed; rc=%i\n", rc);
795 test_bus->dev.of_node = np;
797 of_platform_populate(np, match, NULL, &test_bus->dev);
798 for_each_child_of_node(np, child) {
799 for_each_child_of_node(child, grandchild)
800 unittest(of_find_device_by_node(grandchild),
801 "Could not create device for node '%s'\n",
805 of_platform_depopulate(&test_bus->dev);
806 for_each_child_of_node(np, child) {
807 for_each_child_of_node(child, grandchild)
808 unittest(!of_find_device_by_node(grandchild),
809 "device didn't get destroyed '%s'\n",
813 platform_device_unregister(test_bus);
818 * update_node_properties - adds the properties
819 * of np into dup node (present in live tree) and
820 * updates parent of children of np to dup.
822 * @np: node already present in live tree
823 * @dup: node present in live tree to be updated
825 static void update_node_properties(struct device_node *np,
826 struct device_node *dup)
828 struct property *prop;
829 struct device_node *child;
831 for_each_property_of_node(np, prop)
832 of_add_property(dup, prop);
834 for_each_child_of_node(np, child)
839 * attach_node_and_children - attaches nodes
840 * and its children to live tree
842 * @np: Node to attach to live tree
844 static int attach_node_and_children(struct device_node *np)
846 struct device_node *next, *dup, *child;
849 dup = of_find_node_by_path(np->full_name);
851 update_node_properties(np, dup);
858 mutex_lock(&of_mutex);
859 raw_spin_lock_irqsave(&devtree_lock, flags);
860 np->sibling = np->parent->child;
861 np->parent->child = np;
862 of_node_clear_flag(np, OF_DETACHED);
863 raw_spin_unlock_irqrestore(&devtree_lock, flags);
865 __of_attach_node_sysfs(np);
866 mutex_unlock(&of_mutex);
869 next = child->sibling;
870 attach_node_and_children(child);
878 * unittest_data_add - Reads, copies data from
879 * linked tree and attaches it to the live tree
881 static int __init unittest_data_add(void)
884 struct device_node *unittest_data_node, *np;
886 * __dtb_testcases_begin[] and __dtb_testcases_end[] are magically
887 * created by cmd_dt_S_dtb in scripts/Makefile.lib
889 extern uint8_t __dtb_testcases_begin[];
890 extern uint8_t __dtb_testcases_end[];
891 const int size = __dtb_testcases_end - __dtb_testcases_begin;
895 pr_warn("%s: No testcase data to attach; not running tests\n",
901 unittest_data = kmemdup(__dtb_testcases_begin, size, GFP_KERNEL);
903 if (!unittest_data) {
904 pr_warn("%s: Failed to allocate memory for unittest_data; "
905 "not running tests\n", __func__);
908 of_fdt_unflatten_tree(unittest_data, &unittest_data_node);
909 if (!unittest_data_node) {
910 pr_warn("%s: No tree to attach; not running tests\n", __func__);
913 of_node_set_flag(unittest_data_node, OF_DETACHED);
914 rc = of_resolve_phandles(unittest_data_node);
916 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc);
921 of_root = unittest_data_node;
922 for_each_of_allnodes(np)
923 __of_attach_node_sysfs(np);
924 of_aliases = of_find_node_by_path("/aliases");
925 of_chosen = of_find_node_by_path("/chosen");
929 /* attach the sub-tree to live tree */
930 np = unittest_data_node->child;
932 struct device_node *next = np->sibling;
934 np->parent = of_root;
935 attach_node_and_children(np);
941 #ifdef CONFIG_OF_OVERLAY
943 static int unittest_probe(struct platform_device *pdev)
945 struct device *dev = &pdev->dev;
946 struct device_node *np = dev->of_node;
949 dev_err(dev, "No OF data for device\n");
954 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
956 of_platform_populate(np, NULL, NULL, &pdev->dev);
961 static int unittest_remove(struct platform_device *pdev)
963 struct device *dev = &pdev->dev;
964 struct device_node *np = dev->of_node;
966 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
970 static const struct of_device_id unittest_match[] = {
971 { .compatible = "unittest", },
975 static struct platform_driver unittest_driver = {
976 .probe = unittest_probe,
977 .remove = unittest_remove,
980 .owner = THIS_MODULE,
981 .of_match_table = of_match_ptr(unittest_match),
985 /* get the platform device instantiated at the path */
986 static struct platform_device *of_path_to_platform_device(const char *path)
988 struct device_node *np;
989 struct platform_device *pdev;
991 np = of_find_node_by_path(path);
995 pdev = of_find_device_by_node(np);
1001 /* find out if a platform device exists at that path */
1002 static int of_path_platform_device_exists(const char *path)
1004 struct platform_device *pdev;
1006 pdev = of_path_to_platform_device(path);
1007 platform_device_put(pdev);
1008 return pdev != NULL;
1011 #if IS_BUILTIN(CONFIG_I2C)
1013 /* get the i2c client device instantiated at the path */
1014 static struct i2c_client *of_path_to_i2c_client(const char *path)
1016 struct device_node *np;
1017 struct i2c_client *client;
1019 np = of_find_node_by_path(path);
1023 client = of_find_i2c_device_by_node(np);
1029 /* find out if a i2c client device exists at that path */
1030 static int of_path_i2c_client_exists(const char *path)
1032 struct i2c_client *client;
1034 client = of_path_to_i2c_client(path);
1036 put_device(&client->dev);
1037 return client != NULL;
1040 static int of_path_i2c_client_exists(const char *path)
1051 static int of_path_device_type_exists(const char *path,
1052 enum overlay_type ovtype)
1056 return of_path_platform_device_exists(path);
1058 return of_path_i2c_client_exists(path);
1063 static const char *unittest_path(int nr, enum overlay_type ovtype)
1066 static char buf[256];
1070 base = "/testcase-data/overlay-node/test-bus";
1073 base = "/testcase-data/overlay-node/test-bus/i2c-test-bus";
1079 snprintf(buf, sizeof(buf) - 1, "%s/test-unittest%d", base, nr);
1080 buf[sizeof(buf) - 1] = '\0';
1084 static int of_unittest_device_exists(int unittest_nr, enum overlay_type ovtype)
1088 path = unittest_path(unittest_nr, ovtype);
1092 return of_path_platform_device_exists(path);
1094 return of_path_i2c_client_exists(path);
1099 static const char *overlay_path(int nr)
1101 static char buf[256];
1103 snprintf(buf, sizeof(buf) - 1,
1104 "/testcase-data/overlay%d", nr);
1105 buf[sizeof(buf) - 1] = '\0';
1110 static const char *bus_path = "/testcase-data/overlay-node/test-bus";
1112 static int of_unittest_apply_overlay(int unittest_nr, int overlay_nr,
1115 struct device_node *np = NULL;
1118 np = of_find_node_by_path(overlay_path(overlay_nr));
1120 unittest(0, "could not find overlay node @\"%s\"\n",
1121 overlay_path(overlay_nr));
1126 ret = of_overlay_create(np);
1128 unittest(0, "could not create overlay from \"%s\"\n",
1129 overlay_path(overlay_nr));
1145 /* apply an overlay while checking before and after states */
1146 static int of_unittest_apply_overlay_check(int overlay_nr, int unittest_nr,
1147 int before, int after, enum overlay_type ovtype)
1151 /* unittest device must not be in before state */
1152 if (of_unittest_device_exists(unittest_nr, ovtype) != before) {
1153 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1154 overlay_path(overlay_nr),
1155 unittest_path(unittest_nr, ovtype),
1156 !before ? "enabled" : "disabled");
1160 ret = of_unittest_apply_overlay(overlay_nr, unittest_nr, NULL);
1162 /* of_unittest_apply_overlay already called unittest() */
1166 /* unittest device must be to set to after state */
1167 if (of_unittest_device_exists(unittest_nr, ovtype) != after) {
1168 unittest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1169 overlay_path(overlay_nr),
1170 unittest_path(unittest_nr, ovtype),
1171 !after ? "enabled" : "disabled");
1178 /* apply an overlay and then revert it while checking before, after states */
1179 static int of_unittest_apply_revert_overlay_check(int overlay_nr,
1180 int unittest_nr, int before, int after,
1181 enum overlay_type ovtype)
1185 /* unittest device must be in before state */
1186 if (of_unittest_device_exists(unittest_nr, ovtype) != before) {
1187 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1188 overlay_path(overlay_nr),
1189 unittest_path(unittest_nr, ovtype),
1190 !before ? "enabled" : "disabled");
1194 /* apply the overlay */
1195 ret = of_unittest_apply_overlay(overlay_nr, unittest_nr, &ov_id);
1197 /* of_unittest_apply_overlay already called unittest() */
1201 /* unittest device must be in after state */
1202 if (of_unittest_device_exists(unittest_nr, ovtype) != after) {
1203 unittest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1204 overlay_path(overlay_nr),
1205 unittest_path(unittest_nr, ovtype),
1206 !after ? "enabled" : "disabled");
1210 ret = of_overlay_destroy(ov_id);
1212 unittest(0, "overlay @\"%s\" failed to be destroyed @\"%s\"\n",
1213 overlay_path(overlay_nr),
1214 unittest_path(unittest_nr, ovtype));
1218 /* unittest device must be again in before state */
1219 if (of_unittest_device_exists(unittest_nr, PDEV_OVERLAY) != before) {
1220 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1221 overlay_path(overlay_nr),
1222 unittest_path(unittest_nr, ovtype),
1223 !before ? "enabled" : "disabled");
1230 /* test activation of device */
1231 static void of_unittest_overlay_0(void)
1235 /* device should enable */
1236 ret = of_unittest_apply_overlay_check(0, 0, 0, 1, PDEV_OVERLAY);
1240 unittest(1, "overlay test %d passed\n", 0);
1243 /* test deactivation of device */
1244 static void of_unittest_overlay_1(void)
1248 /* device should disable */
1249 ret = of_unittest_apply_overlay_check(1, 1, 1, 0, PDEV_OVERLAY);
1253 unittest(1, "overlay test %d passed\n", 1);
1256 /* test activation of device */
1257 static void of_unittest_overlay_2(void)
1261 /* device should enable */
1262 ret = of_unittest_apply_overlay_check(2, 2, 0, 1, PDEV_OVERLAY);
1266 unittest(1, "overlay test %d passed\n", 2);
1269 /* test deactivation of device */
1270 static void of_unittest_overlay_3(void)
1274 /* device should disable */
1275 ret = of_unittest_apply_overlay_check(3, 3, 1, 0, PDEV_OVERLAY);
1279 unittest(1, "overlay test %d passed\n", 3);
1282 /* test activation of a full device node */
1283 static void of_unittest_overlay_4(void)
1287 /* device should disable */
1288 ret = of_unittest_apply_overlay_check(4, 4, 0, 1, PDEV_OVERLAY);
1292 unittest(1, "overlay test %d passed\n", 4);
1295 /* test overlay apply/revert sequence */
1296 static void of_unittest_overlay_5(void)
1300 /* device should disable */
1301 ret = of_unittest_apply_revert_overlay_check(5, 5, 0, 1, PDEV_OVERLAY);
1305 unittest(1, "overlay test %d passed\n", 5);
1308 /* test overlay application in sequence */
1309 static void of_unittest_overlay_6(void)
1311 struct device_node *np;
1312 int ret, i, ov_id[2];
1313 int overlay_nr = 6, unittest_nr = 6;
1314 int before = 0, after = 1;
1316 /* unittest device must be in before state */
1317 for (i = 0; i < 2; i++) {
1318 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1320 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1321 overlay_path(overlay_nr + i),
1322 unittest_path(unittest_nr + i,
1324 !before ? "enabled" : "disabled");
1329 /* apply the overlays */
1330 for (i = 0; i < 2; i++) {
1332 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1334 unittest(0, "could not find overlay node @\"%s\"\n",
1335 overlay_path(overlay_nr + i));
1339 ret = of_overlay_create(np);
1341 unittest(0, "could not create overlay from \"%s\"\n",
1342 overlay_path(overlay_nr + i));
1348 for (i = 0; i < 2; i++) {
1349 /* unittest device must be in after state */
1350 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1352 unittest(0, "overlay @\"%s\" failed @\"%s\" %s\n",
1353 overlay_path(overlay_nr + i),
1354 unittest_path(unittest_nr + i,
1356 !after ? "enabled" : "disabled");
1361 for (i = 1; i >= 0; i--) {
1362 ret = of_overlay_destroy(ov_id[i]);
1364 unittest(0, "overlay @\"%s\" failed destroy @\"%s\"\n",
1365 overlay_path(overlay_nr + i),
1366 unittest_path(unittest_nr + i,
1372 for (i = 0; i < 2; i++) {
1373 /* unittest device must be again in before state */
1374 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY)
1376 unittest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1377 overlay_path(overlay_nr + i),
1378 unittest_path(unittest_nr + i,
1380 !before ? "enabled" : "disabled");
1385 unittest(1, "overlay test %d passed\n", 6);
1388 /* test overlay application in sequence */
1389 static void of_unittest_overlay_8(void)
1391 struct device_node *np;
1392 int ret, i, ov_id[2];
1393 int overlay_nr = 8, unittest_nr = 8;
1395 /* we don't care about device state in this test */
1397 /* apply the overlays */
1398 for (i = 0; i < 2; i++) {
1400 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1402 unittest(0, "could not find overlay node @\"%s\"\n",
1403 overlay_path(overlay_nr + i));
1407 ret = of_overlay_create(np);
1409 unittest(0, "could not create overlay from \"%s\"\n",
1410 overlay_path(overlay_nr + i));
1416 /* now try to remove first overlay (it should fail) */
1417 ret = of_overlay_destroy(ov_id[0]);
1419 unittest(0, "overlay @\"%s\" was destroyed @\"%s\"\n",
1420 overlay_path(overlay_nr + 0),
1421 unittest_path(unittest_nr,
1426 /* removing them in order should work */
1427 for (i = 1; i >= 0; i--) {
1428 ret = of_overlay_destroy(ov_id[i]);
1430 unittest(0, "overlay @\"%s\" not destroyed @\"%s\"\n",
1431 overlay_path(overlay_nr + i),
1432 unittest_path(unittest_nr,
1438 unittest(1, "overlay test %d passed\n", 8);
1441 /* test insertion of a bus with parent devices */
1442 static void of_unittest_overlay_10(void)
1447 /* device should disable */
1448 ret = of_unittest_apply_overlay_check(10, 10, 0, 1, PDEV_OVERLAY);
1449 if (unittest(ret == 0,
1450 "overlay test %d failed; overlay application\n", 10))
1453 child_path = kasprintf(GFP_KERNEL, "%s/test-unittest101",
1454 unittest_path(10, PDEV_OVERLAY));
1455 if (unittest(child_path, "overlay test %d failed; kasprintf\n", 10))
1458 ret = of_path_device_type_exists(child_path, PDEV_OVERLAY);
1460 if (unittest(ret, "overlay test %d failed; no child device\n", 10))
1464 /* test insertion of a bus with parent devices (and revert) */
1465 static void of_unittest_overlay_11(void)
1469 /* device should disable */
1470 ret = of_unittest_apply_revert_overlay_check(11, 11, 0, 1,
1472 if (unittest(ret == 0,
1473 "overlay test %d failed; overlay application\n", 11))
1477 #if IS_BUILTIN(CONFIG_I2C) && IS_ENABLED(CONFIG_OF_OVERLAY)
1479 struct unittest_i2c_bus_data {
1480 struct platform_device *pdev;
1481 struct i2c_adapter adap;
1484 static int unittest_i2c_master_xfer(struct i2c_adapter *adap,
1485 struct i2c_msg *msgs, int num)
1487 struct unittest_i2c_bus_data *std = i2c_get_adapdata(adap);
1494 static u32 unittest_i2c_functionality(struct i2c_adapter *adap)
1496 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
1499 static const struct i2c_algorithm unittest_i2c_algo = {
1500 .master_xfer = unittest_i2c_master_xfer,
1501 .functionality = unittest_i2c_functionality,
1504 static int unittest_i2c_bus_probe(struct platform_device *pdev)
1506 struct device *dev = &pdev->dev;
1507 struct device_node *np = dev->of_node;
1508 struct unittest_i2c_bus_data *std;
1509 struct i2c_adapter *adap;
1513 dev_err(dev, "No OF data for device\n");
1518 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1520 std = devm_kzalloc(dev, sizeof(*std), GFP_KERNEL);
1522 dev_err(dev, "Failed to allocate unittest i2c data\n");
1526 /* link them together */
1528 platform_set_drvdata(pdev, std);
1531 i2c_set_adapdata(adap, std);
1533 strlcpy(adap->name, pdev->name, sizeof(adap->name));
1534 adap->class = I2C_CLASS_DEPRECATED;
1535 adap->algo = &unittest_i2c_algo;
1536 adap->dev.parent = dev;
1537 adap->dev.of_node = dev->of_node;
1538 adap->timeout = 5 * HZ;
1541 ret = i2c_add_numbered_adapter(adap);
1543 dev_err(dev, "Failed to add I2C adapter\n");
1550 static int unittest_i2c_bus_remove(struct platform_device *pdev)
1552 struct device *dev = &pdev->dev;
1553 struct device_node *np = dev->of_node;
1554 struct unittest_i2c_bus_data *std = platform_get_drvdata(pdev);
1556 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1557 i2c_del_adapter(&std->adap);
1562 static const struct of_device_id unittest_i2c_bus_match[] = {
1563 { .compatible = "unittest-i2c-bus", },
1567 static struct platform_driver unittest_i2c_bus_driver = {
1568 .probe = unittest_i2c_bus_probe,
1569 .remove = unittest_i2c_bus_remove,
1571 .name = "unittest-i2c-bus",
1572 .of_match_table = of_match_ptr(unittest_i2c_bus_match),
1576 static int unittest_i2c_dev_probe(struct i2c_client *client,
1577 const struct i2c_device_id *id)
1579 struct device *dev = &client->dev;
1580 struct device_node *np = client->dev.of_node;
1583 dev_err(dev, "No OF node\n");
1587 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1592 static int unittest_i2c_dev_remove(struct i2c_client *client)
1594 struct device *dev = &client->dev;
1595 struct device_node *np = client->dev.of_node;
1597 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1601 static const struct i2c_device_id unittest_i2c_dev_id[] = {
1602 { .name = "unittest-i2c-dev" },
1606 static struct i2c_driver unittest_i2c_dev_driver = {
1608 .name = "unittest-i2c-dev",
1609 .owner = THIS_MODULE,
1611 .probe = unittest_i2c_dev_probe,
1612 .remove = unittest_i2c_dev_remove,
1613 .id_table = unittest_i2c_dev_id,
1616 #if IS_BUILTIN(CONFIG_I2C_MUX)
1618 struct unittest_i2c_mux_data {
1620 struct i2c_adapter *adap[];
1623 static int unittest_i2c_mux_select_chan(struct i2c_adapter *adap,
1624 void *client, u32 chan)
1629 static int unittest_i2c_mux_probe(struct i2c_client *client,
1630 const struct i2c_device_id *id)
1632 int ret, i, nchans, size;
1633 struct device *dev = &client->dev;
1634 struct i2c_adapter *adap = to_i2c_adapter(dev->parent);
1635 struct device_node *np = client->dev.of_node, *child;
1636 struct unittest_i2c_mux_data *stm;
1639 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1642 dev_err(dev, "No OF node\n");
1647 for_each_child_of_node(np, child) {
1648 ret = of_property_read_u32(child, "reg", ®);
1651 if (max_reg == (u32)-1 || reg > max_reg)
1654 nchans = max_reg == (u32)-1 ? 0 : max_reg + 1;
1656 dev_err(dev, "No channels\n");
1660 size = offsetof(struct unittest_i2c_mux_data, adap[nchans]);
1661 stm = devm_kzalloc(dev, size, GFP_KERNEL);
1663 dev_err(dev, "Out of memory\n");
1666 stm->nchans = nchans;
1667 for (i = 0; i < nchans; i++) {
1668 stm->adap[i] = i2c_add_mux_adapter(adap, dev, client,
1669 0, i, 0, unittest_i2c_mux_select_chan, NULL);
1670 if (!stm->adap[i]) {
1671 dev_err(dev, "Failed to register mux #%d\n", i);
1672 for (i--; i >= 0; i--)
1673 i2c_del_mux_adapter(stm->adap[i]);
1678 i2c_set_clientdata(client, stm);
1683 static int unittest_i2c_mux_remove(struct i2c_client *client)
1685 struct device *dev = &client->dev;
1686 struct device_node *np = client->dev.of_node;
1687 struct unittest_i2c_mux_data *stm = i2c_get_clientdata(client);
1690 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1691 for (i = stm->nchans - 1; i >= 0; i--)
1692 i2c_del_mux_adapter(stm->adap[i]);
1696 static const struct i2c_device_id unittest_i2c_mux_id[] = {
1697 { .name = "unittest-i2c-mux" },
1701 static struct i2c_driver unittest_i2c_mux_driver = {
1703 .name = "unittest-i2c-mux",
1704 .owner = THIS_MODULE,
1706 .probe = unittest_i2c_mux_probe,
1707 .remove = unittest_i2c_mux_remove,
1708 .id_table = unittest_i2c_mux_id,
1713 static int of_unittest_overlay_i2c_init(void)
1717 ret = i2c_add_driver(&unittest_i2c_dev_driver);
1718 if (unittest(ret == 0,
1719 "could not register unittest i2c device driver\n"))
1722 ret = platform_driver_register(&unittest_i2c_bus_driver);
1723 if (unittest(ret == 0,
1724 "could not register unittest i2c bus driver\n"))
1727 #if IS_BUILTIN(CONFIG_I2C_MUX)
1728 ret = i2c_add_driver(&unittest_i2c_mux_driver);
1729 if (unittest(ret == 0,
1730 "could not register unittest i2c mux driver\n"))
1737 static void of_unittest_overlay_i2c_cleanup(void)
1739 #if IS_BUILTIN(CONFIG_I2C_MUX)
1740 i2c_del_driver(&unittest_i2c_mux_driver);
1742 platform_driver_unregister(&unittest_i2c_bus_driver);
1743 i2c_del_driver(&unittest_i2c_dev_driver);
1746 static void of_unittest_overlay_i2c_12(void)
1750 /* device should enable */
1751 ret = of_unittest_apply_overlay_check(12, 12, 0, 1, I2C_OVERLAY);
1755 unittest(1, "overlay test %d passed\n", 12);
1758 /* test deactivation of device */
1759 static void of_unittest_overlay_i2c_13(void)
1763 /* device should disable */
1764 ret = of_unittest_apply_overlay_check(13, 13, 1, 0, I2C_OVERLAY);
1768 unittest(1, "overlay test %d passed\n", 13);
1771 /* just check for i2c mux existence */
1772 static void of_unittest_overlay_i2c_14(void)
1776 static void of_unittest_overlay_i2c_15(void)
1780 /* device should enable */
1781 ret = of_unittest_apply_overlay_check(16, 15, 0, 1, I2C_OVERLAY);
1785 unittest(1, "overlay test %d passed\n", 15);
1790 static inline void of_unittest_overlay_i2c_14(void) { }
1791 static inline void of_unittest_overlay_i2c_15(void) { }
1795 static void __init of_unittest_overlay(void)
1797 struct device_node *bus_np = NULL;
1800 ret = platform_driver_register(&unittest_driver);
1802 unittest(0, "could not register unittest driver\n");
1806 bus_np = of_find_node_by_path(bus_path);
1807 if (bus_np == NULL) {
1808 unittest(0, "could not find bus_path \"%s\"\n", bus_path);
1812 ret = of_platform_populate(bus_np, of_default_bus_match_table,
1815 unittest(0, "could not populate bus @ \"%s\"\n", bus_path);
1819 if (!of_unittest_device_exists(100, PDEV_OVERLAY)) {
1820 unittest(0, "could not find unittest0 @ \"%s\"\n",
1821 unittest_path(100, PDEV_OVERLAY));
1825 if (of_unittest_device_exists(101, PDEV_OVERLAY)) {
1826 unittest(0, "unittest1 @ \"%s\" should not exist\n",
1827 unittest_path(101, PDEV_OVERLAY));
1831 unittest(1, "basic infrastructure of overlays passed");
1833 /* tests in sequence */
1834 of_unittest_overlay_0();
1835 of_unittest_overlay_1();
1836 of_unittest_overlay_2();
1837 of_unittest_overlay_3();
1838 of_unittest_overlay_4();
1839 of_unittest_overlay_5();
1840 of_unittest_overlay_6();
1841 of_unittest_overlay_8();
1843 of_unittest_overlay_10();
1844 of_unittest_overlay_11();
1846 #if IS_BUILTIN(CONFIG_I2C)
1847 if (unittest(of_unittest_overlay_i2c_init() == 0, "i2c init failed\n"))
1850 of_unittest_overlay_i2c_12();
1851 of_unittest_overlay_i2c_13();
1852 of_unittest_overlay_i2c_14();
1853 of_unittest_overlay_i2c_15();
1855 of_unittest_overlay_i2c_cleanup();
1859 of_node_put(bus_np);
1863 static inline void __init of_unittest_overlay(void) { }
1866 static int __init of_unittest(void)
1868 struct device_node *np;
1871 /* adding data for unittest */
1872 res = unittest_data_add();
1876 of_aliases = of_find_node_by_path("/aliases");
1878 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
1880 pr_info("No testcase data in device tree; not running tests\n");
1885 pr_info("start of unittest - you will see error messages\n");
1886 of_unittest_check_tree_linkage();
1887 of_unittest_check_phandles();
1888 of_unittest_find_node_by_name();
1889 of_unittest_dynamic();
1890 of_unittest_parse_phandle_with_args();
1891 of_unittest_property_string();
1892 of_unittest_property_copy();
1893 of_unittest_changeset();
1894 of_unittest_parse_interrupts();
1895 of_unittest_parse_interrupts_extended();
1896 of_unittest_match_node();
1897 of_unittest_platform_populate();
1898 of_unittest_overlay();
1900 /* Double check linkage after removing testcase data */
1901 of_unittest_check_tree_linkage();
1903 pr_info("end of unittest - %i passed, %i failed\n",
1904 unittest_results.passed, unittest_results.failed);
1908 late_initcall(of_unittest);