1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Self tests for device tree subsystem 4 */ 5 6 #define pr_fmt(fmt) "### dt-test ### " fmt 7 8 #include <linux/memblock.h> 9 #include <linux/clk.h> 10 #include <linux/dma-direct.h> /* to test phys_to_dma/dma_to_phys */ 11 #include <linux/err.h> 12 #include <linux/errno.h> 13 #include <linux/hashtable.h> 14 #include <linux/libfdt.h> 15 #include <linux/of.h> 16 #include <linux/of_address.h> 17 #include <linux/of_fdt.h> 18 #include <linux/of_irq.h> 19 #include <linux/of_platform.h> 20 #include <linux/list.h> 21 #include <linux/mutex.h> 22 #include <linux/slab.h> 23 #include <linux/device.h> 24 #include <linux/platform_device.h> 25 #include <linux/pci.h> 26 #include <linux/kernel.h> 27 28 #include <linux/i2c.h> 29 #include <linux/i2c-mux.h> 30 #include <linux/gpio/driver.h> 31 32 #include <linux/bitops.h> 33 34 #include "of_private.h" 35 36 static struct unittest_results { 37 int passed; 38 int failed; 39 } unittest_results; 40 41 #define unittest(result, fmt, ...) ({ \ 42 bool failed = !(result); \ 43 if (failed) { \ 44 unittest_results.failed++; \ 45 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \ 46 } else { \ 47 unittest_results.passed++; \ 48 pr_info("pass %s():%i\n", __func__, __LINE__); \ 49 } \ 50 failed; \ 51 }) 52 53 #ifdef CONFIG_OF_KOBJ 54 #define OF_KREF_READ(NODE) kref_read(&(NODE)->kobj.kref) 55 #else 56 #define OF_KREF_READ(NODE) 1 57 #endif 58 59 /* 60 * Expected message may have a message level other than KERN_INFO. 61 * Print the expected message only if the current loglevel will allow 62 * the actual message to print. 63 * 64 * Do not use EXPECT_BEGIN(), EXPECT_END(), EXPECT_NOT_BEGIN(), or 65 * EXPECT_NOT_END() to report messages expected to be reported or not 66 * reported by pr_debug(). 67 */ 68 #define EXPECT_BEGIN(level, fmt, ...) \ 69 printk(level pr_fmt("EXPECT \\ : ") fmt, ##__VA_ARGS__) 70 71 #define EXPECT_END(level, fmt, ...) \ 72 printk(level pr_fmt("EXPECT / : ") fmt, ##__VA_ARGS__) 73 74 #define EXPECT_NOT_BEGIN(level, fmt, ...) \ 75 printk(level pr_fmt("EXPECT_NOT \\ : ") fmt, ##__VA_ARGS__) 76 77 #define EXPECT_NOT_END(level, fmt, ...) \ 78 printk(level pr_fmt("EXPECT_NOT / : ") fmt, ##__VA_ARGS__) 79 80 static void __init of_unittest_find_node_by_name(void) 81 { 82 struct device_node *np; 83 const char *options, *name; 84 85 np = of_find_node_by_path("/testcase-data"); 86 name = kasprintf(GFP_KERNEL, "%pOF", np); 87 unittest(np && name && !strcmp("/testcase-data", name), 88 "find /testcase-data failed\n"); 89 of_node_put(np); 90 kfree(name); 91 92 /* Test if trailing '/' works */ 93 np = of_find_node_by_path("/testcase-data/"); 94 unittest(!np, "trailing '/' on /testcase-data/ should fail\n"); 95 96 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); 97 name = kasprintf(GFP_KERNEL, "%pOF", np); 98 unittest(np && name && !strcmp("/testcase-data/phandle-tests/consumer-a", name), 99 "find /testcase-data/phandle-tests/consumer-a failed\n"); 100 of_node_put(np); 101 kfree(name); 102 103 np = of_find_node_by_path("testcase-alias"); 104 name = kasprintf(GFP_KERNEL, "%pOF", np); 105 unittest(np && name && !strcmp("/testcase-data", name), 106 "find testcase-alias failed\n"); 107 of_node_put(np); 108 kfree(name); 109 110 /* Test if trailing '/' works on aliases */ 111 np = of_find_node_by_path("testcase-alias/"); 112 unittest(!np, "trailing '/' on testcase-alias/ should fail\n"); 113 114 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a"); 115 name = kasprintf(GFP_KERNEL, "%pOF", np); 116 unittest(np && name && !strcmp("/testcase-data/phandle-tests/consumer-a", name), 117 "find testcase-alias/phandle-tests/consumer-a failed\n"); 118 of_node_put(np); 119 kfree(name); 120 121 np = of_find_node_by_path("/testcase-data/missing-path"); 122 unittest(!np, "non-existent path returned node %pOF\n", np); 123 of_node_put(np); 124 125 np = of_find_node_by_path("missing-alias"); 126 unittest(!np, "non-existent alias returned node %pOF\n", np); 127 of_node_put(np); 128 129 np = of_find_node_by_path("testcase-alias/missing-path"); 130 unittest(!np, "non-existent alias with relative path returned node %pOF\n", np); 131 of_node_put(np); 132 133 np = of_find_node_opts_by_path("/testcase-data:testoption", &options); 134 unittest(np && !strcmp("testoption", options), 135 "option path test failed\n"); 136 of_node_put(np); 137 138 np = of_find_node_opts_by_path("/testcase-data:test/option", &options); 139 unittest(np && !strcmp("test/option", options), 140 "option path test, subcase #1 failed\n"); 141 of_node_put(np); 142 143 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options); 144 unittest(np && !strcmp("test/option", options), 145 "option path test, subcase #2 failed\n"); 146 of_node_put(np); 147 148 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL); 149 unittest(np, "NULL option path test failed\n"); 150 of_node_put(np); 151 152 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", 153 &options); 154 unittest(np && !strcmp("testaliasoption", options), 155 "option alias path test failed\n"); 156 of_node_put(np); 157 158 np = of_find_node_opts_by_path("testcase-alias:test/alias/option", 159 &options); 160 unittest(np && !strcmp("test/alias/option", options), 161 "option alias path test, subcase #1 failed\n"); 162 of_node_put(np); 163 164 np = of_find_node_opts_by_path("testcase-alias/phandle-tests/consumer-a:testaliasoption", 165 &options); 166 name = kasprintf(GFP_KERNEL, "%pOF", np); 167 unittest(np && name && !strcmp("/testcase-data/phandle-tests/consumer-a", name) && 168 !strcmp("testaliasoption", options), 169 "option alias path test, subcase #2 failed\n"); 170 of_node_put(np); 171 kfree(name); 172 173 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL); 174 unittest(np, "NULL option alias path test failed\n"); 175 of_node_put(np); 176 177 options = "testoption"; 178 np = of_find_node_opts_by_path("testcase-alias", &options); 179 unittest(np && !options, "option clearing test failed\n"); 180 of_node_put(np); 181 182 options = "testoption"; 183 np = of_find_node_opts_by_path("/", &options); 184 unittest(np && !options, "option clearing root node test failed\n"); 185 of_node_put(np); 186 } 187 188 static void __init of_unittest_dynamic(void) 189 { 190 struct device_node *np; 191 struct property *prop; 192 193 np = of_find_node_by_path("/testcase-data"); 194 if (!np) { 195 pr_err("missing testcase data\n"); 196 return; 197 } 198 199 /* Array of 4 properties for the purpose of testing */ 200 prop = kcalloc(4, sizeof(*prop), GFP_KERNEL); 201 if (!prop) { 202 unittest(0, "kzalloc() failed\n"); 203 return; 204 } 205 206 /* Add a new property - should pass*/ 207 prop->name = "new-property"; 208 prop->value = "new-property-data"; 209 prop->length = strlen(prop->value) + 1; 210 unittest(of_add_property(np, prop) == 0, "Adding a new property failed\n"); 211 212 /* Try to add an existing property - should fail */ 213 prop++; 214 prop->name = "new-property"; 215 prop->value = "new-property-data-should-fail"; 216 prop->length = strlen(prop->value) + 1; 217 unittest(of_add_property(np, prop) != 0, 218 "Adding an existing property should have failed\n"); 219 220 /* Try to modify an existing property - should pass */ 221 prop->value = "modify-property-data-should-pass"; 222 prop->length = strlen(prop->value) + 1; 223 unittest(of_update_property(np, prop) == 0, 224 "Updating an existing property should have passed\n"); 225 226 /* Try to modify non-existent property - should pass*/ 227 prop++; 228 prop->name = "modify-property"; 229 prop->value = "modify-missing-property-data-should-pass"; 230 prop->length = strlen(prop->value) + 1; 231 unittest(of_update_property(np, prop) == 0, 232 "Updating a missing property should have passed\n"); 233 234 /* Remove property - should pass */ 235 unittest(of_remove_property(np, prop) == 0, 236 "Removing a property should have passed\n"); 237 238 /* Adding very large property - should pass */ 239 prop++; 240 prop->name = "large-property-PAGE_SIZEx8"; 241 prop->length = PAGE_SIZE * 8; 242 prop->value = kzalloc(prop->length, GFP_KERNEL); 243 unittest(prop->value != NULL, "Unable to allocate large buffer\n"); 244 if (prop->value) 245 unittest(of_add_property(np, prop) == 0, 246 "Adding a large property should have passed\n"); 247 } 248 249 static int __init of_unittest_check_node_linkage(struct device_node *np) 250 { 251 int count = 0, rc; 252 253 for_each_child_of_node_scoped(np, child) { 254 if (child->parent != np) { 255 pr_err("Child node %pOFn links to wrong parent %pOFn\n", 256 child, np); 257 return -EINVAL; 258 } 259 260 rc = of_unittest_check_node_linkage(child); 261 if (rc < 0) 262 return rc; 263 count += rc; 264 } 265 266 return count + 1; 267 } 268 269 static void __init of_unittest_check_tree_linkage(void) 270 { 271 struct device_node *np; 272 int allnode_count = 0, child_count; 273 274 if (!of_root) 275 return; 276 277 for_each_of_allnodes(np) 278 allnode_count++; 279 child_count = of_unittest_check_node_linkage(of_root); 280 281 unittest(child_count > 0, "Device node data structure is corrupted\n"); 282 unittest(child_count == allnode_count, 283 "allnodes list size (%i) doesn't match sibling lists size (%i)\n", 284 allnode_count, child_count); 285 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count); 286 } 287 288 static void __init of_unittest_printf_one(struct device_node *np, const char *fmt, 289 const char *expected) 290 { 291 unsigned char *buf; 292 int buf_size; 293 int size, i; 294 295 buf_size = strlen(expected) + 10; 296 buf = kmalloc(buf_size, GFP_KERNEL); 297 if (!buf) 298 return; 299 300 /* Baseline; check conversion with a large size limit */ 301 memset(buf, 0xff, buf_size); 302 size = snprintf(buf, buf_size - 2, fmt, np); 303 304 /* use strcmp() instead of strncmp() here to be absolutely sure strings match */ 305 unittest((strcmp(buf, expected) == 0) && (buf[size+1] == 0xff), 306 "sprintf failed; fmt='%s' expected='%s' rslt='%s'\n", 307 fmt, expected, buf); 308 309 /* Make sure length limits work */ 310 size++; 311 for (i = 0; i < 2; i++, size--) { 312 /* Clear the buffer, and make sure it works correctly still */ 313 memset(buf, 0xff, buf_size); 314 snprintf(buf, size+1, fmt, np); 315 unittest(strncmp(buf, expected, size) == 0 && (buf[size+1] == 0xff), 316 "snprintf failed; size=%i fmt='%s' expected='%s' rslt='%s'\n", 317 size, fmt, expected, buf); 318 } 319 kfree(buf); 320 } 321 322 static void __init of_unittest_printf(void) 323 { 324 struct device_node *np; 325 const char *full_name = "/testcase-data/platform-tests/test-device@1/dev@100"; 326 char phandle_str[16] = ""; 327 328 np = of_find_node_by_path(full_name); 329 if (!np) { 330 unittest(np, "testcase data missing\n"); 331 return; 332 } 333 334 num_to_str(phandle_str, sizeof(phandle_str), np->phandle, 0); 335 336 of_unittest_printf_one(np, "%pOF", full_name); 337 of_unittest_printf_one(np, "%pOFf", full_name); 338 of_unittest_printf_one(np, "%pOFn", "dev"); 339 of_unittest_printf_one(np, "%2pOFn", "dev"); 340 of_unittest_printf_one(np, "%5pOFn", " dev"); 341 of_unittest_printf_one(np, "%pOFnc", "dev:test-sub-device"); 342 of_unittest_printf_one(np, "%pOFp", phandle_str); 343 of_unittest_printf_one(np, "%pOFP", "dev@100"); 344 of_unittest_printf_one(np, "ABC %pOFP ABC", "ABC dev@100 ABC"); 345 of_unittest_printf_one(np, "%10pOFP", " dev@100"); 346 of_unittest_printf_one(np, "%-10pOFP", "dev@100 "); 347 of_unittest_printf_one(of_root, "%pOFP", "/"); 348 of_unittest_printf_one(np, "%pOFF", "----"); 349 of_unittest_printf_one(np, "%pOFPF", "dev@100:----"); 350 of_unittest_printf_one(np, "%pOFPFPc", "dev@100:----:dev@100:test-sub-device"); 351 of_unittest_printf_one(np, "%pOFc", "test-sub-device"); 352 of_unittest_printf_one(np, "%pOFC", 353 "\"test-sub-device\",\"test-compat2\",\"test-compat3\""); 354 } 355 356 struct node_hash { 357 struct hlist_node node; 358 struct device_node *np; 359 }; 360 361 static DEFINE_HASHTABLE(phandle_ht, 8); 362 static void __init of_unittest_check_phandles(void) 363 { 364 struct device_node *np; 365 struct node_hash *nh; 366 struct hlist_node *tmp; 367 int i, dup_count = 0, phandle_count = 0; 368 369 for_each_of_allnodes(np) { 370 if (!np->phandle) 371 continue; 372 373 hash_for_each_possible(phandle_ht, nh, node, np->phandle) { 374 if (nh->np->phandle == np->phandle) { 375 pr_info("Duplicate phandle! %i used by %pOF and %pOF\n", 376 np->phandle, nh->np, np); 377 dup_count++; 378 break; 379 } 380 } 381 382 nh = kzalloc(sizeof(*nh), GFP_KERNEL); 383 if (!nh) 384 return; 385 386 nh->np = np; 387 hash_add(phandle_ht, &nh->node, np->phandle); 388 phandle_count++; 389 } 390 unittest(dup_count == 0, "Found %i duplicates in %i phandles\n", 391 dup_count, phandle_count); 392 393 /* Clean up */ 394 hash_for_each_safe(phandle_ht, i, tmp, nh, node) { 395 hash_del(&nh->node); 396 kfree(nh); 397 } 398 } 399 400 static void __init of_unittest_parse_phandle_with_args(void) 401 { 402 struct device_node *np; 403 struct of_phandle_args args; 404 int i, rc; 405 406 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); 407 if (!np) { 408 pr_err("missing testcase data\n"); 409 return; 410 } 411 412 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells"); 413 unittest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc); 414 415 for (i = 0; i < 8; i++) { 416 bool passed = true; 417 418 memset(&args, 0, sizeof(args)); 419 rc = of_parse_phandle_with_args(np, "phandle-list", 420 "#phandle-cells", i, &args); 421 422 /* Test the values from tests-phandle.dtsi */ 423 switch (i) { 424 case 0: 425 passed &= !rc; 426 passed &= (args.args_count == 1); 427 passed &= (args.args[0] == (i + 1)); 428 break; 429 case 1: 430 passed &= !rc; 431 passed &= (args.args_count == 2); 432 passed &= (args.args[0] == (i + 1)); 433 passed &= (args.args[1] == 0); 434 break; 435 case 2: 436 passed &= (rc == -ENOENT); 437 break; 438 case 3: 439 passed &= !rc; 440 passed &= (args.args_count == 3); 441 passed &= (args.args[0] == (i + 1)); 442 passed &= (args.args[1] == 4); 443 passed &= (args.args[2] == 3); 444 break; 445 case 4: 446 passed &= !rc; 447 passed &= (args.args_count == 2); 448 passed &= (args.args[0] == (i + 1)); 449 passed &= (args.args[1] == 100); 450 break; 451 case 5: 452 passed &= !rc; 453 passed &= (args.args_count == 0); 454 break; 455 case 6: 456 passed &= !rc; 457 passed &= (args.args_count == 1); 458 passed &= (args.args[0] == (i + 1)); 459 break; 460 case 7: 461 passed &= (rc == -ENOENT); 462 break; 463 default: 464 passed = false; 465 } 466 467 unittest(passed, "index %i - data error on node %pOF rc=%i\n", 468 i, args.np, rc); 469 470 if (rc == 0) 471 of_node_put(args.np); 472 } 473 474 /* Check for missing list property */ 475 memset(&args, 0, sizeof(args)); 476 rc = of_parse_phandle_with_args(np, "phandle-list-missing", 477 "#phandle-cells", 0, &args); 478 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc); 479 rc = of_count_phandle_with_args(np, "phandle-list-missing", 480 "#phandle-cells"); 481 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc); 482 483 /* Check for missing cells property */ 484 memset(&args, 0, sizeof(args)); 485 486 EXPECT_BEGIN(KERN_INFO, 487 "OF: /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1"); 488 489 rc = of_parse_phandle_with_args(np, "phandle-list", 490 "#phandle-cells-missing", 0, &args); 491 492 EXPECT_END(KERN_INFO, 493 "OF: /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1"); 494 495 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 496 497 EXPECT_BEGIN(KERN_INFO, 498 "OF: /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1"); 499 500 rc = of_count_phandle_with_args(np, "phandle-list", 501 "#phandle-cells-missing"); 502 503 EXPECT_END(KERN_INFO, 504 "OF: /testcase-data/phandle-tests/consumer-a: could not get #phandle-cells-missing for /testcase-data/phandle-tests/provider1"); 505 506 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 507 508 /* Check for bad phandle in list */ 509 memset(&args, 0, sizeof(args)); 510 511 EXPECT_BEGIN(KERN_INFO, 512 "OF: /testcase-data/phandle-tests/consumer-a: could not find phandle"); 513 514 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle", 515 "#phandle-cells", 0, &args); 516 517 EXPECT_END(KERN_INFO, 518 "OF: /testcase-data/phandle-tests/consumer-a: could not find phandle"); 519 520 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 521 522 EXPECT_BEGIN(KERN_INFO, 523 "OF: /testcase-data/phandle-tests/consumer-a: could not find phandle"); 524 525 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle", 526 "#phandle-cells"); 527 528 EXPECT_END(KERN_INFO, 529 "OF: /testcase-data/phandle-tests/consumer-a: could not find phandle"); 530 531 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 532 533 /* Check for incorrectly formed argument list */ 534 memset(&args, 0, sizeof(args)); 535 536 EXPECT_BEGIN(KERN_INFO, 537 "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1"); 538 539 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args", 540 "#phandle-cells", 1, &args); 541 542 EXPECT_END(KERN_INFO, 543 "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1"); 544 545 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 546 547 EXPECT_BEGIN(KERN_INFO, 548 "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1"); 549 550 rc = of_count_phandle_with_args(np, "phandle-list-bad-args", 551 "#phandle-cells"); 552 553 EXPECT_END(KERN_INFO, 554 "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1"); 555 556 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 557 } 558 559 static void __init of_unittest_parse_phandle_with_args_map(void) 560 { 561 struct device_node *np, *p[6] = {}; 562 struct of_phandle_args args; 563 unsigned int prefs[6]; 564 int i, rc; 565 566 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-b"); 567 if (!np) { 568 pr_err("missing testcase data\n"); 569 return; 570 } 571 572 p[0] = of_find_node_by_path("/testcase-data/phandle-tests/provider0"); 573 p[1] = of_find_node_by_path("/testcase-data/phandle-tests/provider1"); 574 p[2] = of_find_node_by_path("/testcase-data/phandle-tests/provider2"); 575 p[3] = of_find_node_by_path("/testcase-data/phandle-tests/provider3"); 576 p[4] = of_find_node_by_path("/testcase-data/phandle-tests/provider4"); 577 p[5] = of_find_node_by_path("/testcase-data/phandle-tests/provider5"); 578 for (i = 0; i < ARRAY_SIZE(p); ++i) { 579 if (!p[i]) { 580 pr_err("missing testcase data\n"); 581 return; 582 } 583 prefs[i] = OF_KREF_READ(p[i]); 584 } 585 586 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells"); 587 unittest(rc == 8, "of_count_phandle_with_args() returned %i, expected 8\n", rc); 588 589 for (i = 0; i < 9; i++) { 590 bool passed = true; 591 592 memset(&args, 0, sizeof(args)); 593 rc = of_parse_phandle_with_args_map(np, "phandle-list", 594 "phandle", i, &args); 595 596 /* Test the values from tests-phandle.dtsi */ 597 switch (i) { 598 case 0: 599 passed &= !rc; 600 passed &= (args.np == p[1]); 601 passed &= (args.args_count == 1); 602 passed &= (args.args[0] == 1); 603 break; 604 case 1: 605 passed &= !rc; 606 passed &= (args.np == p[3]); 607 passed &= (args.args_count == 3); 608 passed &= (args.args[0] == 2); 609 passed &= (args.args[1] == 5); 610 passed &= (args.args[2] == 3); 611 break; 612 case 2: 613 passed &= (rc == -ENOENT); 614 break; 615 case 3: 616 passed &= !rc; 617 passed &= (args.np == p[0]); 618 passed &= (args.args_count == 0); 619 break; 620 case 4: 621 passed &= !rc; 622 passed &= (args.np == p[1]); 623 passed &= (args.args_count == 1); 624 passed &= (args.args[0] == 3); 625 break; 626 case 5: 627 passed &= !rc; 628 passed &= (args.np == p[0]); 629 passed &= (args.args_count == 0); 630 break; 631 case 6: 632 passed &= !rc; 633 passed &= (args.np == p[2]); 634 passed &= (args.args_count == 2); 635 passed &= (args.args[0] == 15); 636 passed &= (args.args[1] == 0x20); 637 break; 638 case 7: 639 passed &= !rc; 640 passed &= (args.np == p[3]); 641 passed &= (args.args_count == 3); 642 passed &= (args.args[0] == 2); 643 passed &= (args.args[1] == 5); 644 passed &= (args.args[2] == 3); 645 break; 646 case 8: 647 passed &= (rc == -ENOENT); 648 break; 649 default: 650 passed = false; 651 } 652 653 unittest(passed, "index %i - data error on node %s rc=%i\n", 654 i, args.np->full_name, rc); 655 656 if (rc == 0) 657 of_node_put(args.np); 658 } 659 660 /* Check for missing list property */ 661 memset(&args, 0, sizeof(args)); 662 rc = of_parse_phandle_with_args_map(np, "phandle-list-missing", 663 "phandle", 0, &args); 664 unittest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc); 665 666 /* Check for missing cells,map,mask property */ 667 memset(&args, 0, sizeof(args)); 668 669 EXPECT_BEGIN(KERN_INFO, 670 "OF: /testcase-data/phandle-tests/consumer-b: could not get #phandle-missing-cells for /testcase-data/phandle-tests/provider1"); 671 672 rc = of_parse_phandle_with_args_map(np, "phandle-list", 673 "phandle-missing", 0, &args); 674 EXPECT_END(KERN_INFO, 675 "OF: /testcase-data/phandle-tests/consumer-b: could not get #phandle-missing-cells for /testcase-data/phandle-tests/provider1"); 676 677 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 678 679 /* Check for bad phandle in list */ 680 memset(&args, 0, sizeof(args)); 681 682 EXPECT_BEGIN(KERN_INFO, 683 "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle 12345678"); 684 685 rc = of_parse_phandle_with_args_map(np, "phandle-list-bad-phandle", 686 "phandle", 0, &args); 687 EXPECT_END(KERN_INFO, 688 "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle 12345678"); 689 690 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 691 692 /* Check for incorrectly formed argument list */ 693 memset(&args, 0, sizeof(args)); 694 695 EXPECT_BEGIN(KERN_INFO, 696 "OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found 1"); 697 698 rc = of_parse_phandle_with_args_map(np, "phandle-list-bad-args", 699 "phandle", 1, &args); 700 EXPECT_END(KERN_INFO, 701 "OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found 1"); 702 703 unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); 704 705 for (i = 0; i < ARRAY_SIZE(p); ++i) { 706 unittest(prefs[i] == OF_KREF_READ(p[i]), 707 "provider%d: expected:%d got:%d\n", 708 i, prefs[i], OF_KREF_READ(p[i])); 709 of_node_put(p[i]); 710 } 711 } 712 713 static void __init of_unittest_property_string(void) 714 { 715 const char *strings[4]; 716 struct device_node *np; 717 int rc; 718 719 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); 720 if (!np) { 721 pr_err("No testcase data in device tree\n"); 722 return; 723 } 724 725 rc = of_property_match_string(np, "phandle-list-names", "first"); 726 unittest(rc == 0, "first expected:0 got:%i\n", rc); 727 rc = of_property_match_string(np, "phandle-list-names", "second"); 728 unittest(rc == 1, "second expected:1 got:%i\n", rc); 729 rc = of_property_match_string(np, "phandle-list-names", "third"); 730 unittest(rc == 2, "third expected:2 got:%i\n", rc); 731 rc = of_property_match_string(np, "phandle-list-names", "fourth"); 732 unittest(rc == -ENODATA, "unmatched string; rc=%i\n", rc); 733 rc = of_property_match_string(np, "missing-property", "blah"); 734 unittest(rc == -EINVAL, "missing property; rc=%i\n", rc); 735 rc = of_property_match_string(np, "empty-property", "blah"); 736 unittest(rc == -ENODATA, "empty property; rc=%i\n", rc); 737 rc = of_property_match_string(np, "unterminated-string", "blah"); 738 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 739 740 /* of_property_count_strings() tests */ 741 rc = of_property_count_strings(np, "string-property"); 742 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc); 743 rc = of_property_count_strings(np, "phandle-list-names"); 744 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc); 745 rc = of_property_count_strings(np, "unterminated-string"); 746 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 747 rc = of_property_count_strings(np, "unterminated-string-list"); 748 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc); 749 750 /* of_property_read_string_index() tests */ 751 rc = of_property_read_string_index(np, "string-property", 0, strings); 752 unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc); 753 strings[0] = NULL; 754 rc = of_property_read_string_index(np, "string-property", 1, strings); 755 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 756 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings); 757 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc); 758 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings); 759 unittest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc); 760 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings); 761 unittest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc); 762 strings[0] = NULL; 763 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings); 764 unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 765 strings[0] = NULL; 766 rc = of_property_read_string_index(np, "unterminated-string", 0, strings); 767 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 768 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings); 769 unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc); 770 strings[0] = NULL; 771 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */ 772 unittest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc); 773 strings[1] = NULL; 774 775 /* of_property_read_string_array() tests */ 776 rc = of_property_read_string_array(np, "string-property", strings, 4); 777 unittest(rc == 1, "Incorrect string count; rc=%i\n", rc); 778 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4); 779 unittest(rc == 3, "Incorrect string count; rc=%i\n", rc); 780 rc = of_property_read_string_array(np, "unterminated-string", strings, 4); 781 unittest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc); 782 /* -- An incorrectly formed string should cause a failure */ 783 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4); 784 unittest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc); 785 /* -- parsing the correctly formed strings should still work: */ 786 strings[2] = NULL; 787 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2); 788 unittest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc); 789 strings[1] = NULL; 790 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1); 791 unittest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]); 792 } 793 794 #define propcmp(p1, p2) (((p1)->length == (p2)->length) && \ 795 (p1)->value && (p2)->value && \ 796 !memcmp((p1)->value, (p2)->value, (p1)->length) && \ 797 !strcmp((p1)->name, (p2)->name)) 798 static void __init of_unittest_property_copy(void) 799 { 800 #ifdef CONFIG_OF_DYNAMIC 801 struct property p1 = { .name = "p1", .length = 0, .value = "" }; 802 struct property p2 = { .name = "p2", .length = 5, .value = "abcd" }; 803 struct property *new; 804 805 new = __of_prop_dup(&p1, GFP_KERNEL); 806 unittest(new && propcmp(&p1, new), "empty property didn't copy correctly\n"); 807 if (new) 808 __of_prop_free(new); 809 810 new = __of_prop_dup(&p2, GFP_KERNEL); 811 unittest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n"); 812 if (new) 813 __of_prop_free(new); 814 #endif 815 } 816 817 static void __init of_unittest_changeset(void) 818 { 819 #ifdef CONFIG_OF_DYNAMIC 820 int ret; 821 struct property *ppadd, padd = { .name = "prop-add", .length = 1, .value = "" }; 822 struct property *ppname_n1, pname_n1 = { .name = "name", .length = 3, .value = "n1" }; 823 struct property *ppname_n2, pname_n2 = { .name = "name", .length = 3, .value = "n2" }; 824 struct property *ppname_n21, pname_n21 = { .name = "name", .length = 3, .value = "n21" }; 825 struct property *ppupdate, pupdate = { .name = "prop-update", .length = 5, .value = "abcd" }; 826 struct property *ppremove; 827 struct device_node *n1, *n2, *n21, *n22, *nchangeset, *nremove, *parent, *np; 828 static const char * const str_array[] = { "str1", "str2", "str3" }; 829 const u32 u32_array[] = { 1, 2, 3 }; 830 struct of_changeset chgset; 831 const char *propstr = NULL; 832 833 n1 = __of_node_dup(NULL, "n1"); 834 unittest(n1, "testcase setup failure\n"); 835 836 n2 = __of_node_dup(NULL, "n2"); 837 unittest(n2, "testcase setup failure\n"); 838 839 n21 = __of_node_dup(NULL, "n21"); 840 unittest(n21, "testcase setup failure %p\n", n21); 841 842 nchangeset = of_find_node_by_path("/testcase-data/changeset"); 843 nremove = of_get_child_by_name(nchangeset, "node-remove"); 844 unittest(nremove, "testcase setup failure\n"); 845 846 ppadd = __of_prop_dup(&padd, GFP_KERNEL); 847 unittest(ppadd, "testcase setup failure\n"); 848 849 ppname_n1 = __of_prop_dup(&pname_n1, GFP_KERNEL); 850 unittest(ppname_n1, "testcase setup failure\n"); 851 852 ppname_n2 = __of_prop_dup(&pname_n2, GFP_KERNEL); 853 unittest(ppname_n2, "testcase setup failure\n"); 854 855 ppname_n21 = __of_prop_dup(&pname_n21, GFP_KERNEL); 856 unittest(ppname_n21, "testcase setup failure\n"); 857 858 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL); 859 unittest(ppupdate, "testcase setup failure\n"); 860 861 parent = nchangeset; 862 n1->parent = parent; 863 n2->parent = parent; 864 n21->parent = n2; 865 866 ppremove = of_find_property(parent, "prop-remove", NULL); 867 unittest(ppremove, "failed to find removal prop"); 868 869 of_changeset_init(&chgset); 870 871 unittest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n"); 872 unittest(!of_changeset_add_property(&chgset, n1, ppname_n1), "fail add prop name\n"); 873 874 unittest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n"); 875 unittest(!of_changeset_add_property(&chgset, n2, ppname_n2), "fail add prop name\n"); 876 877 unittest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n"); 878 unittest(!of_changeset_add_property(&chgset, n21, ppname_n21), "fail add prop name\n"); 879 880 unittest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n"); 881 882 unittest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop prop-add\n"); 883 unittest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n"); 884 unittest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n"); 885 n22 = of_changeset_create_node(&chgset, n2, "n22"); 886 unittest(n22, "fail create n22\n"); 887 unittest(!of_changeset_add_prop_string(&chgset, n22, "prop-str", "abcd"), 888 "fail add prop prop-str"); 889 unittest(!of_changeset_add_prop_string_array(&chgset, n22, "prop-str-array", 890 (const char **)str_array, 891 ARRAY_SIZE(str_array)), 892 "fail add prop prop-str-array"); 893 unittest(!of_changeset_add_prop_u32_array(&chgset, n22, "prop-u32-array", 894 u32_array, ARRAY_SIZE(u32_array)), 895 "fail add prop prop-u32-array"); 896 897 unittest(!of_changeset_apply(&chgset), "apply failed\n"); 898 899 of_node_put(nchangeset); 900 901 /* Make sure node names are constructed correctly */ 902 unittest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")), 903 "'%pOF' not added\n", n21); 904 of_node_put(np); 905 unittest((np = of_find_node_by_path("/testcase-data/changeset/n2/n22")), 906 "'%pOF' not added\n", n22); 907 of_node_put(np); 908 909 unittest(!of_changeset_revert(&chgset), "revert failed\n"); 910 911 unittest(!of_find_node_by_path("/testcase-data/changeset/n2/n21"), 912 "'%pOF' still present after revert\n", n21); 913 914 unittest(of_property_present(parent, "prop-remove"), 915 "failed to find removed prop after revert\n"); 916 917 ret = of_property_read_string(parent, "prop-update", &propstr); 918 unittest(!ret, "failed to find updated prop after revert\n"); 919 if (!ret) 920 unittest(strcmp(propstr, "hello") == 0, "original value not in updated property after revert"); 921 922 of_changeset_destroy(&chgset); 923 924 of_node_put(n1); 925 of_node_put(n2); 926 of_node_put(n21); 927 of_node_put(n22); 928 #endif 929 } 930 931 static void __init __maybe_unused changeset_check_string(struct device_node *np, 932 const char *prop_name, 933 const char *expected_str) 934 { 935 const char *str; 936 int ret; 937 938 ret = of_property_read_string(np, prop_name, &str); 939 if (unittest(ret == 0, "failed to read %s\n", prop_name)) 940 return; 941 942 unittest(strcmp(str, expected_str) == 0, 943 "%s value mismatch (read '%s', exp '%s')\n", 944 prop_name, str, expected_str); 945 } 946 947 static void __init __maybe_unused changeset_check_string_array(struct device_node *np, 948 const char *prop_name, 949 const char * const *expected_array, 950 unsigned int count) 951 { 952 const char *str; 953 unsigned int i; 954 int ret; 955 int cnt; 956 957 cnt = of_property_count_strings(np, prop_name); 958 if (unittest(cnt >= 0, "failed to get %s count\n", prop_name)) 959 return; 960 961 if (unittest(cnt == count, 962 "%s count mismatch (read %d, exp %u)\n", 963 prop_name, cnt, count)) 964 return; 965 966 for (i = 0; i < count; i++) { 967 ret = of_property_read_string_index(np, prop_name, i, &str); 968 if (unittest(ret == 0, "failed to read %s[%d]\n", prop_name, i)) 969 continue; 970 971 unittest(strcmp(str, expected_array[i]) == 0, 972 "%s[%d] value mismatch (read '%s', exp '%s')\n", 973 prop_name, i, str, expected_array[i]); 974 } 975 } 976 977 static void __init __maybe_unused changeset_check_u32(struct device_node *np, 978 const char *prop_name, 979 u32 expected_u32) 980 { 981 u32 val32; 982 int ret; 983 984 ret = of_property_read_u32(np, prop_name, &val32); 985 if (unittest(ret == 0, "failed to read %s\n", prop_name)) 986 return; 987 988 unittest(val32 == expected_u32, 989 "%s value mismatch (read '%u', exp '%u')\n", 990 prop_name, val32, expected_u32); 991 } 992 993 static void __init __maybe_unused changeset_check_u32_array(struct device_node *np, 994 const char *prop_name, 995 const u32 *expected_array, 996 unsigned int count) 997 { 998 unsigned int i; 999 u32 val32; 1000 int ret; 1001 int cnt; 1002 1003 cnt = of_property_count_u32_elems(np, prop_name); 1004 if (unittest(cnt >= 0, "failed to get %s count\n", prop_name)) 1005 return; 1006 1007 if (unittest(cnt == count, 1008 "%s count mismatch (read %d, exp %u)\n", 1009 prop_name, cnt, count)) 1010 return; 1011 1012 for (i = 0; i < count; i++) { 1013 ret = of_property_read_u32_index(np, prop_name, i, &val32); 1014 if (unittest(ret == 0, "failed to read %s[%d]\n", prop_name, i)) 1015 continue; 1016 1017 unittest(val32 == expected_array[i], 1018 "%s[%d] value mismatch (read '%u', exp '%u')\n", 1019 prop_name, i, val32, expected_array[i]); 1020 } 1021 } 1022 1023 static void __init __maybe_unused changeset_check_bool(struct device_node *np, 1024 const char *prop_name) 1025 { 1026 unittest(of_property_read_bool(np, prop_name), 1027 "%s value mismatch (read 'false', exp 'true')\n", prop_name); 1028 } 1029 1030 static void __init of_unittest_changeset_prop(void) 1031 { 1032 #ifdef CONFIG_OF_DYNAMIC 1033 static const char * const str_array[] = { "abc", "defg", "hij" }; 1034 static const u32 u32_array[] = { 123, 4567, 89, 10, 11 }; 1035 struct device_node *nchangeset, *np; 1036 struct of_changeset chgset; 1037 int ret; 1038 1039 nchangeset = of_find_node_by_path("/testcase-data/changeset"); 1040 if (!nchangeset) { 1041 pr_err("missing testcase data\n"); 1042 return; 1043 } 1044 1045 of_changeset_init(&chgset); 1046 1047 np = of_changeset_create_node(&chgset, nchangeset, "test-prop"); 1048 if (unittest(np, "failed to create test-prop node\n")) 1049 goto end_changeset_destroy; 1050 1051 ret = of_changeset_add_prop_string(&chgset, np, "prop-string", "abcde"); 1052 unittest(ret == 0, "failed to add prop-string\n"); 1053 1054 ret = of_changeset_add_prop_string_array(&chgset, np, "prop-string-array", 1055 str_array, ARRAY_SIZE(str_array)); 1056 unittest(ret == 0, "failed to add prop-string-array\n"); 1057 1058 ret = of_changeset_add_prop_u32(&chgset, np, "prop-u32", 1234); 1059 unittest(ret == 0, "failed to add prop-u32\n"); 1060 1061 ret = of_changeset_add_prop_u32_array(&chgset, np, "prop-u32-array", 1062 u32_array, ARRAY_SIZE(u32_array)); 1063 unittest(ret == 0, "failed to add prop-u32-array\n"); 1064 1065 ret = of_changeset_add_prop_bool(&chgset, np, "prop-bool"); 1066 unittest(ret == 0, "failed to add prop-bool\n"); 1067 1068 of_node_put(np); 1069 1070 ret = of_changeset_apply(&chgset); 1071 if (unittest(ret == 0, "failed to apply changeset\n")) 1072 goto end_changeset_destroy; 1073 1074 np = of_find_node_by_path("/testcase-data/changeset/test-prop"); 1075 if (unittest(np, "failed to find test-prop node\n")) 1076 goto end_revert_changeset; 1077 1078 changeset_check_string(np, "prop-string", "abcde"); 1079 changeset_check_string_array(np, "prop-string-array", str_array, ARRAY_SIZE(str_array)); 1080 changeset_check_u32(np, "prop-u32", 1234); 1081 changeset_check_u32_array(np, "prop-u32-array", u32_array, ARRAY_SIZE(u32_array)); 1082 changeset_check_bool(np, "prop-bool"); 1083 1084 of_node_put(np); 1085 1086 end_revert_changeset: 1087 ret = of_changeset_revert(&chgset); 1088 unittest(ret == 0, "failed to revert changeset\n"); 1089 1090 end_changeset_destroy: 1091 of_changeset_destroy(&chgset); 1092 of_node_put(nchangeset); 1093 #endif 1094 } 1095 1096 static void __init of_unittest_dma_get_max_cpu_address(void) 1097 { 1098 struct device_node *np; 1099 phys_addr_t cpu_addr; 1100 1101 if (!IS_ENABLED(CONFIG_OF_ADDRESS)) 1102 return; 1103 1104 np = of_find_node_by_path("/testcase-data/address-tests"); 1105 if (!np) { 1106 pr_err("missing testcase data\n"); 1107 return; 1108 } 1109 1110 cpu_addr = of_dma_get_max_cpu_address(np); 1111 unittest(cpu_addr == 0x4fffffff, 1112 "of_dma_get_max_cpu_address: wrong CPU addr %pad (expecting %x)\n", 1113 &cpu_addr, 0x4fffffff); 1114 } 1115 1116 static void __init of_unittest_dma_ranges_one(const char *path, 1117 u64 expect_dma_addr, u64 expect_paddr) 1118 { 1119 #ifdef CONFIG_HAS_DMA 1120 struct device_node *np; 1121 const struct bus_dma_region *map = NULL; 1122 int rc; 1123 1124 np = of_find_node_by_path(path); 1125 if (!np) { 1126 pr_err("missing testcase data\n"); 1127 return; 1128 } 1129 1130 rc = of_dma_get_range(np, &map); 1131 1132 unittest(!rc, "of_dma_get_range failed on node %pOF rc=%i\n", np, rc); 1133 1134 if (!rc) { 1135 phys_addr_t paddr; 1136 dma_addr_t dma_addr; 1137 struct device *dev_bogus; 1138 1139 dev_bogus = kzalloc(sizeof(struct device), GFP_KERNEL); 1140 if (!dev_bogus) { 1141 unittest(0, "kzalloc() failed\n"); 1142 kfree(map); 1143 return; 1144 } 1145 1146 dev_bogus->dma_range_map = map; 1147 paddr = dma_to_phys(dev_bogus, expect_dma_addr); 1148 dma_addr = phys_to_dma(dev_bogus, expect_paddr); 1149 1150 unittest(paddr == expect_paddr, 1151 "of_dma_get_range: wrong phys addr %pap (expecting %llx) on node %pOF\n", 1152 &paddr, expect_paddr, np); 1153 unittest(dma_addr == expect_dma_addr, 1154 "of_dma_get_range: wrong DMA addr %pad (expecting %llx) on node %pOF\n", 1155 &dma_addr, expect_dma_addr, np); 1156 1157 kfree(map); 1158 kfree(dev_bogus); 1159 } 1160 of_node_put(np); 1161 #endif 1162 } 1163 1164 static void __init of_unittest_parse_dma_ranges(void) 1165 { 1166 of_unittest_dma_ranges_one("/testcase-data/address-tests/device@70000000", 1167 0x0, 0x20000000); 1168 if (IS_ENABLED(CONFIG_ARCH_DMA_ADDR_T_64BIT)) 1169 of_unittest_dma_ranges_one("/testcase-data/address-tests/bus@80000000/device@1000", 1170 0x100000000, 0x20000000); 1171 of_unittest_dma_ranges_one("/testcase-data/address-tests/pci@90000000", 1172 0x80000000, 0x20000000); 1173 } 1174 1175 static void __init of_unittest_pci_dma_ranges(void) 1176 { 1177 struct device_node *np; 1178 struct of_pci_range range; 1179 struct of_pci_range_parser parser; 1180 int i = 0; 1181 1182 if (!IS_ENABLED(CONFIG_PCI)) 1183 return; 1184 1185 np = of_find_node_by_path("/testcase-data/address-tests/pci@90000000"); 1186 if (!np) { 1187 pr_err("missing testcase data\n"); 1188 return; 1189 } 1190 1191 if (of_pci_dma_range_parser_init(&parser, np)) { 1192 pr_err("missing dma-ranges property\n"); 1193 return; 1194 } 1195 1196 /* 1197 * Get the dma-ranges from the device tree 1198 */ 1199 for_each_of_pci_range(&parser, &range) { 1200 if (!i) { 1201 unittest(range.size == 0x10000000, 1202 "for_each_of_pci_range wrong size on node %pOF size=%llx\n", 1203 np, range.size); 1204 unittest(range.cpu_addr == 0x20000000, 1205 "for_each_of_pci_range wrong CPU addr (%llx) on node %pOF", 1206 range.cpu_addr, np); 1207 unittest(range.pci_addr == 0x80000000, 1208 "for_each_of_pci_range wrong DMA addr (%llx) on node %pOF", 1209 range.pci_addr, np); 1210 } else { 1211 unittest(range.size == 0x10000000, 1212 "for_each_of_pci_range wrong size on node %pOF size=%llx\n", 1213 np, range.size); 1214 unittest(range.cpu_addr == 0x40000000, 1215 "for_each_of_pci_range wrong CPU addr (%llx) on node %pOF", 1216 range.cpu_addr, np); 1217 unittest(range.pci_addr == 0xc0000000, 1218 "for_each_of_pci_range wrong DMA addr (%llx) on node %pOF", 1219 range.pci_addr, np); 1220 } 1221 i++; 1222 } 1223 1224 of_node_put(np); 1225 } 1226 1227 static void __init of_unittest_pci_empty_dma_ranges(void) 1228 { 1229 struct device_node *np; 1230 struct of_pci_range range; 1231 struct of_pci_range_parser parser; 1232 1233 if (!IS_ENABLED(CONFIG_PCI)) 1234 return; 1235 1236 np = of_find_node_by_path("/testcase-data/address-tests2/pcie@d1070000/pci@0,0/dev@0,0/local-bus@0"); 1237 if (!np) { 1238 pr_err("missing testcase data\n"); 1239 return; 1240 } 1241 1242 if (of_pci_dma_range_parser_init(&parser, np)) { 1243 pr_err("missing dma-ranges property\n"); 1244 return; 1245 } 1246 1247 /* 1248 * Get the dma-ranges from the device tree 1249 */ 1250 for_each_of_pci_range(&parser, &range) { 1251 unittest(range.size == 0x10000000, 1252 "for_each_of_pci_range wrong size on node %pOF size=%llx\n", 1253 np, range.size); 1254 unittest(range.cpu_addr == 0x00000000, 1255 "for_each_of_pci_range wrong CPU addr (%llx) on node %pOF", 1256 range.cpu_addr, np); 1257 unittest(range.pci_addr == 0xc0000000, 1258 "for_each_of_pci_range wrong DMA addr (%llx) on node %pOF", 1259 range.pci_addr, np); 1260 } 1261 1262 of_node_put(np); 1263 } 1264 1265 static void __init of_unittest_bus_ranges(void) 1266 { 1267 struct device_node *np; 1268 struct of_range range; 1269 struct of_range_parser parser; 1270 struct resource res; 1271 int ret, count, i = 0; 1272 1273 np = of_find_node_by_path("/testcase-data/address-tests"); 1274 if (!np) { 1275 pr_err("missing testcase data\n"); 1276 return; 1277 } 1278 1279 if (of_range_parser_init(&parser, np)) { 1280 pr_err("missing ranges property\n"); 1281 return; 1282 } 1283 1284 ret = of_range_to_resource(np, 1, &res); 1285 unittest(!ret, "of_range_to_resource returned error (%d) node %pOF\n", 1286 ret, np); 1287 unittest(resource_type(&res) == IORESOURCE_MEM, 1288 "of_range_to_resource wrong resource type on node %pOF res=%pR\n", 1289 np, &res); 1290 unittest(res.start == 0xd0000000, 1291 "of_range_to_resource wrong resource start address on node %pOF res=%pR\n", 1292 np, &res); 1293 unittest(resource_size(&res) == 0x20000000, 1294 "of_range_to_resource wrong resource start address on node %pOF res=%pR\n", 1295 np, &res); 1296 1297 count = of_range_count(&parser); 1298 unittest(count == 2, 1299 "of_range_count wrong size on node %pOF count=%d\n", 1300 np, count); 1301 1302 /* 1303 * Get the "ranges" from the device tree 1304 */ 1305 for_each_of_range(&parser, &range) { 1306 unittest(range.flags == IORESOURCE_MEM, 1307 "for_each_of_range wrong flags on node %pOF flags=%x (expected %x)\n", 1308 np, range.flags, IORESOURCE_MEM); 1309 if (!i) { 1310 unittest(range.size == 0x50000000, 1311 "for_each_of_range wrong size on node %pOF size=%llx\n", 1312 np, range.size); 1313 unittest(range.cpu_addr == 0x70000000, 1314 "for_each_of_range wrong CPU addr (%llx) on node %pOF", 1315 range.cpu_addr, np); 1316 unittest(range.bus_addr == 0x70000000, 1317 "for_each_of_range wrong bus addr (%llx) on node %pOF", 1318 range.pci_addr, np); 1319 } else { 1320 unittest(range.size == 0x20000000, 1321 "for_each_of_range wrong size on node %pOF size=%llx\n", 1322 np, range.size); 1323 unittest(range.cpu_addr == 0xd0000000, 1324 "for_each_of_range wrong CPU addr (%llx) on node %pOF", 1325 range.cpu_addr, np); 1326 unittest(range.bus_addr == 0x00000000, 1327 "for_each_of_range wrong bus addr (%llx) on node %pOF", 1328 range.pci_addr, np); 1329 } 1330 i++; 1331 } 1332 1333 of_node_put(np); 1334 } 1335 1336 static void __init of_unittest_bus_3cell_ranges(void) 1337 { 1338 struct device_node *np; 1339 struct of_range range; 1340 struct of_range_parser parser; 1341 int i = 0; 1342 1343 np = of_find_node_by_path("/testcase-data/address-tests/bus@a0000000"); 1344 if (!np) { 1345 pr_err("missing testcase data\n"); 1346 return; 1347 } 1348 1349 if (of_range_parser_init(&parser, np)) { 1350 pr_err("missing ranges property\n"); 1351 return; 1352 } 1353 1354 /* 1355 * Get the "ranges" from the device tree 1356 */ 1357 for_each_of_range(&parser, &range) { 1358 if (!i) { 1359 unittest(range.flags == 0xf00baa, 1360 "for_each_of_range wrong flags on node %pOF flags=%x\n", 1361 np, range.flags); 1362 unittest(range.size == 0x100000, 1363 "for_each_of_range wrong size on node %pOF size=%llx\n", 1364 np, range.size); 1365 unittest(range.cpu_addr == 0xa0000000, 1366 "for_each_of_range wrong CPU addr (%llx) on node %pOF", 1367 range.cpu_addr, np); 1368 unittest(range.bus_addr == 0x0, 1369 "for_each_of_range wrong bus addr (%llx) on node %pOF", 1370 range.pci_addr, np); 1371 } else { 1372 unittest(range.flags == 0xf00bee, 1373 "for_each_of_range wrong flags on node %pOF flags=%x\n", 1374 np, range.flags); 1375 unittest(range.size == 0x200000, 1376 "for_each_of_range wrong size on node %pOF size=%llx\n", 1377 np, range.size); 1378 unittest(range.cpu_addr == 0xb0000000, 1379 "for_each_of_range wrong CPU addr (%llx) on node %pOF", 1380 range.cpu_addr, np); 1381 unittest(range.bus_addr == 0x100000000, 1382 "for_each_of_range wrong bus addr (%llx) on node %pOF", 1383 range.pci_addr, np); 1384 } 1385 i++; 1386 } 1387 1388 of_node_put(np); 1389 } 1390 1391 static void __init of_unittest_reg(void) 1392 { 1393 struct device_node *np; 1394 struct resource res; 1395 int ret; 1396 u64 addr, size; 1397 1398 np = of_find_node_by_path("/testcase-data/address-tests/bus@80000000/device@1000"); 1399 if (!np) { 1400 pr_err("missing testcase data\n"); 1401 return; 1402 } 1403 1404 ret = of_property_read_reg(np, 0, &addr, &size); 1405 unittest(!ret, "of_property_read_reg(%pOF) returned error %d\n", 1406 np, ret); 1407 unittest(addr == 0x1000, "of_property_read_reg(%pOF) untranslated address (%llx) incorrect\n", 1408 np, addr); 1409 1410 of_node_put(np); 1411 1412 np = of_find_node_by_path("/testcase-data/platform-tests-2/node/test-device@100"); 1413 if (!np) { 1414 pr_err("missing testcase data\n"); 1415 return; 1416 } 1417 1418 ret = of_address_to_resource(np, 0, &res); 1419 unittest(ret == -EINVAL, "of_address_to_resource(%pOF) expected error on untranslatable address\n", 1420 np); 1421 1422 of_node_put(np); 1423 1424 } 1425 1426 struct of_unittest_expected_res { 1427 int index; 1428 struct resource res; 1429 }; 1430 1431 static void __init of_unittest_check_addr(const char *node_path, 1432 const struct of_unittest_expected_res *tab_exp, 1433 unsigned int tab_exp_count) 1434 { 1435 const struct of_unittest_expected_res *expected; 1436 struct device_node *np; 1437 struct resource res; 1438 unsigned int count; 1439 int ret; 1440 1441 if (!IS_ENABLED(CONFIG_OF_ADDRESS)) 1442 return; 1443 1444 np = of_find_node_by_path(node_path); 1445 if (!np) { 1446 pr_err("missing testcase data (%s)\n", node_path); 1447 return; 1448 } 1449 1450 expected = tab_exp; 1451 count = tab_exp_count; 1452 while (count--) { 1453 ret = of_address_to_resource(np, expected->index, &res); 1454 unittest(!ret, "of_address_to_resource(%pOF, %d) returned error %d\n", 1455 np, expected->index, ret); 1456 unittest(resource_type(&res) == resource_type(&expected->res) && 1457 res.start == expected->res.start && 1458 resource_size(&res) == resource_size(&expected->res), 1459 "of_address_to_resource(%pOF, %d) wrong resource %pR, expected %pR\n", 1460 np, expected->index, &res, &expected->res); 1461 expected++; 1462 } 1463 1464 of_node_put(np); 1465 } 1466 1467 static const struct of_unittest_expected_res of_unittest_reg_2cell_expected_res[] = { 1468 {.index = 0, .res = DEFINE_RES_MEM(0xa0a01000, 0x100) }, 1469 {.index = 1, .res = DEFINE_RES_MEM(0xa0a02000, 0x100) }, 1470 {.index = 2, .res = DEFINE_RES_MEM(0xc0c01000, 0x100) }, 1471 {.index = 3, .res = DEFINE_RES_MEM(0xd0d01000, 0x100) }, 1472 }; 1473 1474 static const struct of_unittest_expected_res of_unittest_reg_3cell_expected_res[] = { 1475 {.index = 0, .res = DEFINE_RES_MEM(0xa0a01000, 0x100) }, 1476 {.index = 1, .res = DEFINE_RES_MEM(0xa0b02000, 0x100) }, 1477 {.index = 2, .res = DEFINE_RES_MEM(0xc0c01000, 0x100) }, 1478 {.index = 3, .res = DEFINE_RES_MEM(0xc0c09000, 0x100) }, 1479 {.index = 4, .res = DEFINE_RES_MEM(0xd0d01000, 0x100) }, 1480 }; 1481 1482 static const struct of_unittest_expected_res of_unittest_reg_pci_expected_res[] = { 1483 {.index = 0, .res = DEFINE_RES_MEM(0xe8001000, 0x1000) }, 1484 {.index = 1, .res = DEFINE_RES_MEM(0xea002000, 0x2000) }, 1485 }; 1486 1487 static void __init of_unittest_translate_addr(void) 1488 { 1489 of_unittest_check_addr("/testcase-data/address-tests2/bus-2cell@10000000/device@100000", 1490 of_unittest_reg_2cell_expected_res, 1491 ARRAY_SIZE(of_unittest_reg_2cell_expected_res)); 1492 1493 of_unittest_check_addr("/testcase-data/address-tests2/bus-3cell@20000000/local-bus@100000/device@f1001000", 1494 of_unittest_reg_3cell_expected_res, 1495 ARRAY_SIZE(of_unittest_reg_3cell_expected_res)); 1496 1497 of_unittest_check_addr("/testcase-data/address-tests2/pcie@d1070000/pci@0,0/dev@0,0/local-bus@0/dev@e0000000", 1498 of_unittest_reg_pci_expected_res, 1499 ARRAY_SIZE(of_unittest_reg_pci_expected_res)); 1500 } 1501 1502 static void __init of_unittest_parse_interrupts(void) 1503 { 1504 struct device_node *np; 1505 struct of_phandle_args args; 1506 int i, rc; 1507 1508 if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC) 1509 return; 1510 1511 np = of_find_node_by_path("/testcase-data/interrupts/interrupts0"); 1512 if (!np) { 1513 pr_err("missing testcase data\n"); 1514 return; 1515 } 1516 1517 for (i = 0; i < 4; i++) { 1518 bool passed = true; 1519 1520 memset(&args, 0, sizeof(args)); 1521 rc = of_irq_parse_one(np, i, &args); 1522 1523 passed &= !rc; 1524 passed &= (args.args_count == 1); 1525 passed &= (args.args[0] == (i + 1)); 1526 1527 unittest(passed, "index %i - data error on node %pOF rc=%i\n", 1528 i, args.np, rc); 1529 } 1530 of_node_put(np); 1531 1532 np = of_find_node_by_path("/testcase-data/interrupts/interrupts1"); 1533 if (!np) { 1534 pr_err("missing testcase data\n"); 1535 return; 1536 } 1537 1538 for (i = 0; i < 4; i++) { 1539 bool passed = true; 1540 1541 memset(&args, 0, sizeof(args)); 1542 rc = of_irq_parse_one(np, i, &args); 1543 1544 /* Test the values from tests-phandle.dtsi */ 1545 switch (i) { 1546 case 0: 1547 passed &= !rc; 1548 passed &= (args.args_count == 1); 1549 passed &= (args.args[0] == 9); 1550 break; 1551 case 1: 1552 passed &= !rc; 1553 passed &= (args.args_count == 3); 1554 passed &= (args.args[0] == 10); 1555 passed &= (args.args[1] == 11); 1556 passed &= (args.args[2] == 12); 1557 break; 1558 case 2: 1559 passed &= !rc; 1560 passed &= (args.args_count == 2); 1561 passed &= (args.args[0] == 13); 1562 passed &= (args.args[1] == 14); 1563 break; 1564 case 3: 1565 passed &= !rc; 1566 passed &= (args.args_count == 2); 1567 passed &= (args.args[0] == 15); 1568 passed &= (args.args[1] == 16); 1569 break; 1570 default: 1571 passed = false; 1572 } 1573 unittest(passed, "index %i - data error on node %pOF rc=%i\n", 1574 i, args.np, rc); 1575 } 1576 of_node_put(np); 1577 } 1578 1579 static void __init of_unittest_parse_interrupts_extended(void) 1580 { 1581 struct device_node *np; 1582 struct of_phandle_args args; 1583 int i, rc; 1584 1585 if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC) 1586 return; 1587 1588 np = of_find_node_by_path("/testcase-data/interrupts/interrupts-extended0"); 1589 if (!np) { 1590 pr_err("missing testcase data\n"); 1591 return; 1592 } 1593 1594 for (i = 0; i < 7; i++) { 1595 bool passed = true; 1596 1597 memset(&args, 0, sizeof(args)); 1598 rc = of_irq_parse_one(np, i, &args); 1599 1600 /* Test the values from tests-phandle.dtsi */ 1601 switch (i) { 1602 case 0: 1603 passed &= !rc; 1604 passed &= (args.args_count == 1); 1605 passed &= (args.args[0] == 1); 1606 break; 1607 case 1: 1608 passed &= !rc; 1609 passed &= (args.args_count == 3); 1610 passed &= (args.args[0] == 2); 1611 passed &= (args.args[1] == 3); 1612 passed &= (args.args[2] == 4); 1613 break; 1614 case 2: 1615 passed &= !rc; 1616 passed &= (args.args_count == 2); 1617 passed &= (args.args[0] == 5); 1618 passed &= (args.args[1] == 6); 1619 break; 1620 case 3: 1621 passed &= !rc; 1622 passed &= (args.args_count == 1); 1623 passed &= (args.args[0] == 9); 1624 break; 1625 case 4: 1626 passed &= !rc; 1627 passed &= (args.args_count == 3); 1628 passed &= (args.args[0] == 10); 1629 passed &= (args.args[1] == 11); 1630 passed &= (args.args[2] == 12); 1631 break; 1632 case 5: 1633 passed &= !rc; 1634 passed &= (args.args_count == 2); 1635 passed &= (args.args[0] == 13); 1636 passed &= (args.args[1] == 14); 1637 break; 1638 case 6: 1639 /* 1640 * Tests child node that is missing property 1641 * #address-cells. See the comments in 1642 * drivers/of/unittest-data/tests-interrupts.dtsi 1643 * nodes intmap1 and interrupts-extended0 1644 */ 1645 passed &= !rc; 1646 passed &= (args.args_count == 1); 1647 passed &= (args.args[0] == 15); 1648 break; 1649 default: 1650 passed = false; 1651 } 1652 1653 unittest(passed, "index %i - data error on node %pOF rc=%i\n", 1654 i, args.np, rc); 1655 } 1656 of_node_put(np); 1657 } 1658 1659 #if IS_ENABLED(CONFIG_OF_DYNAMIC) 1660 static void __init of_unittest_irq_refcount(void) 1661 { 1662 struct of_phandle_args args; 1663 struct device_node *intc0, *int_ext0; 1664 struct device_node *int2, *intc_intmap0; 1665 unsigned int ref_c0, ref_c1, ref_c2; 1666 int rc; 1667 bool passed; 1668 1669 if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC) 1670 return; 1671 1672 intc0 = of_find_node_by_path("/testcase-data/interrupts/intc0"); 1673 int_ext0 = of_find_node_by_path("/testcase-data/interrupts/interrupts-extended0"); 1674 intc_intmap0 = of_find_node_by_path("/testcase-data/interrupts/intc-intmap0"); 1675 int2 = of_find_node_by_path("/testcase-data/interrupts/interrupts2"); 1676 if (!intc0 || !int_ext0 || !intc_intmap0 || !int2) { 1677 pr_err("missing testcase data\n"); 1678 goto out; 1679 } 1680 1681 /* Test refcount for API of_irq_parse_one() */ 1682 passed = true; 1683 ref_c0 = OF_KREF_READ(intc0); 1684 ref_c1 = ref_c0 + 1; 1685 memset(&args, 0, sizeof(args)); 1686 rc = of_irq_parse_one(int_ext0, 0, &args); 1687 ref_c2 = OF_KREF_READ(intc0); 1688 of_node_put(args.np); 1689 1690 passed &= !rc; 1691 passed &= (args.np == intc0); 1692 passed &= (args.args_count == 1); 1693 passed &= (args.args[0] == 1); 1694 passed &= (ref_c1 == ref_c2); 1695 unittest(passed, "IRQ refcount case #1 failed, original(%u) expected(%u) got(%u)\n", 1696 ref_c0, ref_c1, ref_c2); 1697 1698 /* Test refcount for API of_irq_parse_raw() */ 1699 passed = true; 1700 ref_c0 = OF_KREF_READ(intc_intmap0); 1701 ref_c1 = ref_c0 + 1; 1702 memset(&args, 0, sizeof(args)); 1703 rc = of_irq_parse_one(int2, 0, &args); 1704 ref_c2 = OF_KREF_READ(intc_intmap0); 1705 of_node_put(args.np); 1706 1707 passed &= !rc; 1708 passed &= (args.np == intc_intmap0); 1709 passed &= (args.args_count == 1); 1710 passed &= (args.args[0] == 2); 1711 passed &= (ref_c1 == ref_c2); 1712 unittest(passed, "IRQ refcount case #2 failed, original(%u) expected(%u) got(%u)\n", 1713 ref_c0, ref_c1, ref_c2); 1714 1715 out: 1716 of_node_put(int2); 1717 of_node_put(intc_intmap0); 1718 of_node_put(int_ext0); 1719 of_node_put(intc0); 1720 } 1721 #else 1722 static inline void __init of_unittest_irq_refcount(void) { } 1723 #endif 1724 1725 static const struct of_device_id match_node_table[] = { 1726 { .data = "A", .name = "name0", }, /* Name alone is lowest priority */ 1727 { .data = "B", .type = "type1", }, /* followed by type alone */ 1728 1729 { .data = "Ca", .name = "name2", .type = "type1", }, /* followed by both together */ 1730 { .data = "Cb", .name = "name2", }, /* Only match when type doesn't match */ 1731 { .data = "Cc", .name = "name2", .type = "type2", }, 1732 1733 { .data = "E", .compatible = "compat3" }, 1734 { .data = "G", .compatible = "compat2", }, 1735 { .data = "H", .compatible = "compat2", .name = "name5", }, 1736 { .data = "I", .compatible = "compat2", .type = "type1", }, 1737 { .data = "J", .compatible = "compat2", .type = "type1", .name = "name8", }, 1738 { .data = "K", .compatible = "compat2", .name = "name9", }, 1739 {} 1740 }; 1741 1742 static struct { 1743 const char *path; 1744 const char *data; 1745 } match_node_tests[] = { 1746 { .path = "/testcase-data/match-node/name0", .data = "A", }, 1747 { .path = "/testcase-data/match-node/name1", .data = "B", }, 1748 { .path = "/testcase-data/match-node/a/name2", .data = "Ca", }, 1749 { .path = "/testcase-data/match-node/b/name2", .data = "Cb", }, 1750 { .path = "/testcase-data/match-node/c/name2", .data = "Cc", }, 1751 { .path = "/testcase-data/match-node/name3", .data = "E", }, 1752 { .path = "/testcase-data/match-node/name4", .data = "G", }, 1753 { .path = "/testcase-data/match-node/name5", .data = "H", }, 1754 { .path = "/testcase-data/match-node/name6", .data = "G", }, 1755 { .path = "/testcase-data/match-node/name7", .data = "I", }, 1756 { .path = "/testcase-data/match-node/name8", .data = "J", }, 1757 { .path = "/testcase-data/match-node/name9", .data = "K", }, 1758 }; 1759 1760 static void __init of_unittest_match_node(void) 1761 { 1762 struct device_node *np; 1763 const struct of_device_id *match; 1764 int i; 1765 1766 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) { 1767 np = of_find_node_by_path(match_node_tests[i].path); 1768 if (!np) { 1769 unittest(0, "missing testcase node %s\n", 1770 match_node_tests[i].path); 1771 continue; 1772 } 1773 1774 match = of_match_node(match_node_table, np); 1775 if (!match) { 1776 unittest(0, "%s didn't match anything\n", 1777 match_node_tests[i].path); 1778 continue; 1779 } 1780 1781 if (strcmp(match->data, match_node_tests[i].data) != 0) { 1782 unittest(0, "%s got wrong match. expected %s, got %s\n", 1783 match_node_tests[i].path, match_node_tests[i].data, 1784 (const char *)match->data); 1785 continue; 1786 } 1787 unittest(1, "passed"); 1788 } 1789 } 1790 1791 static struct resource test_bus_res = DEFINE_RES_MEM(0xfffffff8, 2); 1792 static const struct platform_device_info test_bus_info = { 1793 .name = "unittest-bus", 1794 }; 1795 static void __init of_unittest_platform_populate(void) 1796 { 1797 int irq, rc; 1798 struct device_node *np, *child, *grandchild; 1799 struct platform_device *pdev, *test_bus; 1800 const struct of_device_id match[] = { 1801 { .compatible = "test-device", }, 1802 {} 1803 }; 1804 1805 np = of_find_node_by_path("/testcase-data"); 1806 of_platform_default_populate(np, NULL, NULL); 1807 1808 /* Test that a missing irq domain returns -EPROBE_DEFER */ 1809 np = of_find_node_by_path("/testcase-data/testcase-device1"); 1810 pdev = of_find_device_by_node(np); 1811 unittest(pdev, "device 1 creation failed\n"); 1812 1813 if (!(of_irq_workarounds & OF_IMAP_OLDWORLD_MAC)) { 1814 irq = platform_get_irq(pdev, 0); 1815 unittest(irq == -EPROBE_DEFER, 1816 "device deferred probe failed - %d\n", irq); 1817 1818 /* Test that a parsing failure does not return -EPROBE_DEFER */ 1819 np = of_find_node_by_path("/testcase-data/testcase-device2"); 1820 pdev = of_find_device_by_node(np); 1821 unittest(pdev, "device 2 creation failed\n"); 1822 1823 EXPECT_BEGIN(KERN_INFO, 1824 "platform testcase-data:testcase-device2: error -ENXIO: IRQ index 0 not found"); 1825 1826 irq = platform_get_irq(pdev, 0); 1827 1828 EXPECT_END(KERN_INFO, 1829 "platform testcase-data:testcase-device2: error -ENXIO: IRQ index 0 not found"); 1830 1831 unittest(irq < 0 && irq != -EPROBE_DEFER, 1832 "device parsing error failed - %d\n", irq); 1833 } 1834 1835 np = of_find_node_by_path("/testcase-data/platform-tests"); 1836 unittest(np, "No testcase data in device tree\n"); 1837 if (!np) 1838 return; 1839 1840 test_bus = platform_device_register_full(&test_bus_info); 1841 rc = PTR_ERR_OR_ZERO(test_bus); 1842 unittest(!rc, "testbus registration failed; rc=%i\n", rc); 1843 if (rc) { 1844 of_node_put(np); 1845 return; 1846 } 1847 test_bus->dev.of_node = np; 1848 1849 /* 1850 * Add a dummy resource to the test bus node after it is 1851 * registered to catch problems with un-inserted resources. The 1852 * DT code doesn't insert the resources, and it has caused the 1853 * kernel to oops in the past. This makes sure the same bug 1854 * doesn't crop up again. 1855 */ 1856 platform_device_add_resources(test_bus, &test_bus_res, 1); 1857 1858 of_platform_populate(np, match, NULL, &test_bus->dev); 1859 for_each_child_of_node(np, child) { 1860 for_each_child_of_node(child, grandchild) { 1861 if (!of_property_present(grandchild, "compatible")) 1862 continue; 1863 pdev = of_find_device_by_node(grandchild); 1864 unittest(pdev, 1865 "Could not create device for node '%pOFn'\n", 1866 grandchild); 1867 platform_device_put(pdev); 1868 } 1869 } 1870 1871 of_platform_depopulate(&test_bus->dev); 1872 for_each_child_of_node(np, child) { 1873 for_each_child_of_node(child, grandchild) 1874 unittest(!of_find_device_by_node(grandchild), 1875 "device didn't get destroyed '%pOFn'\n", 1876 grandchild); 1877 } 1878 1879 platform_device_unregister(test_bus); 1880 of_node_put(np); 1881 } 1882 1883 /** 1884 * update_node_properties - adds the properties 1885 * of np into dup node (present in live tree) and 1886 * updates parent of children of np to dup. 1887 * 1888 * @np: node whose properties are being added to the live tree 1889 * @dup: node present in live tree to be updated 1890 */ 1891 static void update_node_properties(struct device_node *np, 1892 struct device_node *dup) 1893 { 1894 struct property *prop; 1895 struct property *save_next; 1896 struct device_node *child; 1897 int ret; 1898 1899 for_each_child_of_node(np, child) 1900 child->parent = dup; 1901 1902 /* 1903 * "unittest internal error: unable to add testdata property" 1904 * 1905 * If this message reports a property in node '/__symbols__' then 1906 * the respective unittest overlay contains a label that has the 1907 * same name as a label in the live devicetree. The label will 1908 * be in the live devicetree only if the devicetree source was 1909 * compiled with the '-@' option. If you encounter this error, 1910 * please consider renaming __all__ of the labels in the unittest 1911 * overlay dts files with an odd prefix that is unlikely to be 1912 * used in a real devicetree. 1913 */ 1914 1915 /* 1916 * open code for_each_property_of_node() because of_add_property() 1917 * sets prop->next to NULL 1918 */ 1919 for (prop = np->properties; prop != NULL; prop = save_next) { 1920 save_next = prop->next; 1921 ret = of_add_property(dup, prop); 1922 if (ret) { 1923 if (ret == -EEXIST && !strcmp(prop->name, "name")) 1924 continue; 1925 pr_err("unittest internal error: unable to add testdata property %pOF/%s", 1926 np, prop->name); 1927 } 1928 } 1929 } 1930 1931 /** 1932 * attach_node_and_children - attaches nodes 1933 * and its children to live tree. 1934 * CAUTION: misleading function name - if node @np already exists in 1935 * the live tree then children of @np are *not* attached to the live 1936 * tree. This works for the current test devicetree nodes because such 1937 * nodes do not have child nodes. 1938 * 1939 * @np: Node to attach to live tree 1940 */ 1941 static void attach_node_and_children(struct device_node *np) 1942 { 1943 struct device_node *next, *dup, *child; 1944 unsigned long flags; 1945 const char *full_name; 1946 1947 full_name = kasprintf(GFP_KERNEL, "%pOF", np); 1948 if (!full_name) 1949 return; 1950 1951 if (!strcmp(full_name, "/__local_fixups__") || 1952 !strcmp(full_name, "/__fixups__")) { 1953 kfree(full_name); 1954 return; 1955 } 1956 1957 dup = of_find_node_by_path(full_name); 1958 kfree(full_name); 1959 if (dup) { 1960 update_node_properties(np, dup); 1961 return; 1962 } 1963 1964 child = np->child; 1965 np->child = NULL; 1966 1967 mutex_lock(&of_mutex); 1968 raw_spin_lock_irqsave(&devtree_lock, flags); 1969 np->sibling = np->parent->child; 1970 np->parent->child = np; 1971 of_node_clear_flag(np, OF_DETACHED); 1972 raw_spin_unlock_irqrestore(&devtree_lock, flags); 1973 1974 __of_attach_node_sysfs(np); 1975 mutex_unlock(&of_mutex); 1976 1977 while (child) { 1978 next = child->sibling; 1979 attach_node_and_children(child); 1980 child = next; 1981 } 1982 } 1983 1984 /** 1985 * unittest_data_add - Reads, copies data from 1986 * linked tree and attaches it to the live tree 1987 */ 1988 static int __init unittest_data_add(void) 1989 { 1990 void *unittest_data; 1991 void *unittest_data_align; 1992 struct device_node *unittest_data_node = NULL, *np; 1993 /* 1994 * __dtbo_testcases_begin[] and __dtbo_testcases_end[] are magically 1995 * created by cmd_wrap_S_dtbo in scripts/Makefile.dtbs 1996 */ 1997 extern uint8_t __dtbo_testcases_begin[]; 1998 extern uint8_t __dtbo_testcases_end[]; 1999 const int size = __dtbo_testcases_end - __dtbo_testcases_begin; 2000 int rc; 2001 void *ret; 2002 2003 if (!size) { 2004 pr_warn("%s: testcases is empty\n", __func__); 2005 return -ENODATA; 2006 } 2007 2008 /* creating copy */ 2009 unittest_data = kmalloc(size + FDT_ALIGN_SIZE, GFP_KERNEL); 2010 if (!unittest_data) 2011 return -ENOMEM; 2012 2013 unittest_data_align = PTR_ALIGN(unittest_data, FDT_ALIGN_SIZE); 2014 memcpy(unittest_data_align, __dtbo_testcases_begin, size); 2015 2016 ret = of_fdt_unflatten_tree(unittest_data_align, NULL, &unittest_data_node); 2017 if (!ret) { 2018 pr_warn("%s: unflatten testcases tree failed\n", __func__); 2019 kfree(unittest_data); 2020 return -ENODATA; 2021 } 2022 if (!unittest_data_node) { 2023 pr_warn("%s: testcases tree is empty\n", __func__); 2024 kfree(unittest_data); 2025 return -ENODATA; 2026 } 2027 2028 /* 2029 * This lock normally encloses of_resolve_phandles() 2030 */ 2031 of_overlay_mutex_lock(); 2032 2033 rc = of_resolve_phandles(unittest_data_node); 2034 if (rc) { 2035 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc); 2036 rc = -EINVAL; 2037 goto unlock; 2038 } 2039 2040 /* attach the sub-tree to live tree */ 2041 if (!of_root) { 2042 pr_warn("%s: no live tree to attach sub-tree\n", __func__); 2043 kfree(unittest_data); 2044 rc = -ENODEV; 2045 goto unlock; 2046 } 2047 2048 EXPECT_BEGIN(KERN_INFO, 2049 "Duplicate name in testcase-data, renamed to \"duplicate-name#1\""); 2050 2051 np = unittest_data_node->child; 2052 while (np) { 2053 struct device_node *next = np->sibling; 2054 2055 np->parent = of_root; 2056 /* this will clear OF_DETACHED in np and children */ 2057 attach_node_and_children(np); 2058 np = next; 2059 } 2060 2061 EXPECT_END(KERN_INFO, 2062 "Duplicate name in testcase-data, renamed to \"duplicate-name#1\""); 2063 2064 unlock: 2065 of_overlay_mutex_unlock(); 2066 2067 return rc; 2068 } 2069 2070 #ifdef CONFIG_OF_OVERLAY 2071 static int __init overlay_data_apply(const char *overlay_name, int *ovcs_id); 2072 2073 static int unittest_probe(struct platform_device *pdev) 2074 { 2075 struct device *dev = &pdev->dev; 2076 struct device_node *np = dev->of_node; 2077 2078 if (np == NULL) { 2079 dev_err(dev, "No OF data for device\n"); 2080 return -EINVAL; 2081 2082 } 2083 2084 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 2085 2086 of_platform_populate(np, NULL, NULL, &pdev->dev); 2087 2088 return 0; 2089 } 2090 2091 static void unittest_remove(struct platform_device *pdev) 2092 { 2093 struct device *dev = &pdev->dev; 2094 struct device_node *np = dev->of_node; 2095 2096 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 2097 } 2098 2099 static const struct of_device_id unittest_match[] = { 2100 { .compatible = "unittest", }, 2101 {}, 2102 }; 2103 2104 static struct platform_driver unittest_driver = { 2105 .probe = unittest_probe, 2106 .remove = unittest_remove, 2107 .driver = { 2108 .name = "unittest", 2109 .of_match_table = unittest_match, 2110 }, 2111 }; 2112 2113 /* get the platform device instantiated at the path */ 2114 static struct platform_device *of_path_to_platform_device(const char *path) 2115 { 2116 struct device_node *np; 2117 struct platform_device *pdev; 2118 2119 np = of_find_node_by_path(path); 2120 if (np == NULL) 2121 return NULL; 2122 2123 pdev = of_find_device_by_node(np); 2124 of_node_put(np); 2125 2126 return pdev; 2127 } 2128 2129 /* find out if a platform device exists at that path */ 2130 static int of_path_platform_device_exists(const char *path) 2131 { 2132 struct platform_device *pdev; 2133 2134 pdev = of_path_to_platform_device(path); 2135 platform_device_put(pdev); 2136 return pdev != NULL; 2137 } 2138 2139 #ifdef CONFIG_OF_GPIO 2140 2141 struct unittest_gpio_dev { 2142 struct gpio_chip chip; 2143 }; 2144 2145 static int unittest_gpio_chip_request_count; 2146 static int unittest_gpio_probe_count; 2147 static int unittest_gpio_probe_pass_count; 2148 2149 static int unittest_gpio_chip_request(struct gpio_chip *chip, unsigned int offset) 2150 { 2151 unittest_gpio_chip_request_count++; 2152 2153 pr_debug("%s(): %s %d %d\n", __func__, chip->label, offset, 2154 unittest_gpio_chip_request_count); 2155 return 0; 2156 } 2157 2158 static int unittest_gpio_probe(struct platform_device *pdev) 2159 { 2160 struct unittest_gpio_dev *devptr; 2161 int ret; 2162 2163 unittest_gpio_probe_count++; 2164 2165 devptr = kzalloc(sizeof(*devptr), GFP_KERNEL); 2166 if (!devptr) 2167 return -ENOMEM; 2168 2169 platform_set_drvdata(pdev, devptr); 2170 2171 devptr->chip.fwnode = dev_fwnode(&pdev->dev); 2172 devptr->chip.label = "of-unittest-gpio"; 2173 devptr->chip.base = -1; /* dynamic allocation */ 2174 devptr->chip.ngpio = 5; 2175 devptr->chip.request = unittest_gpio_chip_request; 2176 2177 ret = gpiochip_add_data(&devptr->chip, NULL); 2178 2179 unittest(!ret, 2180 "gpiochip_add_data() for node @%pfw failed, ret = %d\n", devptr->chip.fwnode, ret); 2181 2182 if (!ret) 2183 unittest_gpio_probe_pass_count++; 2184 return ret; 2185 } 2186 2187 static void unittest_gpio_remove(struct platform_device *pdev) 2188 { 2189 struct unittest_gpio_dev *devptr = platform_get_drvdata(pdev); 2190 struct device *dev = &pdev->dev; 2191 2192 dev_dbg(dev, "%s for node @%pfw\n", __func__, devptr->chip.fwnode); 2193 2194 if (devptr->chip.base != -1) 2195 gpiochip_remove(&devptr->chip); 2196 2197 kfree(devptr); 2198 } 2199 2200 static const struct of_device_id unittest_gpio_id[] = { 2201 { .compatible = "unittest-gpio", }, 2202 {} 2203 }; 2204 2205 static struct platform_driver unittest_gpio_driver = { 2206 .probe = unittest_gpio_probe, 2207 .remove = unittest_gpio_remove, 2208 .driver = { 2209 .name = "unittest-gpio", 2210 .of_match_table = unittest_gpio_id, 2211 }, 2212 }; 2213 2214 static void __init of_unittest_overlay_gpio(void) 2215 { 2216 int chip_request_count; 2217 int probe_pass_count; 2218 int ret; 2219 2220 /* 2221 * tests: apply overlays before registering driver 2222 * Similar to installing a driver as a module, the 2223 * driver is registered after applying the overlays. 2224 * 2225 * The overlays are applied by overlay_data_apply() 2226 * instead of of_unittest_apply_overlay() so that they 2227 * will not be tracked. Thus they will not be removed 2228 * by of_unittest_remove_tracked_overlays(). 2229 * 2230 * - apply overlay_gpio_01 2231 * - apply overlay_gpio_02a 2232 * - apply overlay_gpio_02b 2233 * - register driver 2234 * 2235 * register driver will result in 2236 * - probe and processing gpio hog for overlay_gpio_01 2237 * - probe for overlay_gpio_02a 2238 * - processing gpio for overlay_gpio_02b 2239 */ 2240 2241 probe_pass_count = unittest_gpio_probe_pass_count; 2242 chip_request_count = unittest_gpio_chip_request_count; 2243 2244 /* 2245 * overlay_gpio_01 contains gpio node and child gpio hog node 2246 * overlay_gpio_02a contains gpio node 2247 * overlay_gpio_02b contains child gpio hog node 2248 */ 2249 2250 unittest(overlay_data_apply("overlay_gpio_01", NULL), 2251 "Adding overlay 'overlay_gpio_01' failed\n"); 2252 2253 unittest(overlay_data_apply("overlay_gpio_02a", NULL), 2254 "Adding overlay 'overlay_gpio_02a' failed\n"); 2255 2256 unittest(overlay_data_apply("overlay_gpio_02b", NULL), 2257 "Adding overlay 'overlay_gpio_02b' failed\n"); 2258 2259 ret = platform_driver_register(&unittest_gpio_driver); 2260 if (unittest(ret == 0, "could not register unittest gpio driver\n")) 2261 return; 2262 2263 unittest(probe_pass_count + 2 == unittest_gpio_probe_pass_count, 2264 "unittest_gpio_probe() failed or not called\n"); 2265 2266 unittest(chip_request_count + 2 == unittest_gpio_chip_request_count, 2267 "unittest_gpio_chip_request() called %d times (expected 1 time)\n", 2268 unittest_gpio_chip_request_count - chip_request_count); 2269 2270 /* 2271 * tests: apply overlays after registering driver 2272 * 2273 * Similar to a driver built-in to the kernel, the 2274 * driver is registered before applying the overlays. 2275 * 2276 * overlay_gpio_03 contains gpio node and child gpio hog node 2277 * 2278 * - apply overlay_gpio_03 2279 * 2280 * apply overlay will result in 2281 * - probe and processing gpio hog. 2282 */ 2283 2284 probe_pass_count = unittest_gpio_probe_pass_count; 2285 chip_request_count = unittest_gpio_chip_request_count; 2286 2287 /* overlay_gpio_03 contains gpio node and child gpio hog node */ 2288 2289 unittest(overlay_data_apply("overlay_gpio_03", NULL), 2290 "Adding overlay 'overlay_gpio_03' failed\n"); 2291 2292 unittest(probe_pass_count + 1 == unittest_gpio_probe_pass_count, 2293 "unittest_gpio_probe() failed or not called\n"); 2294 2295 unittest(chip_request_count + 1 == unittest_gpio_chip_request_count, 2296 "unittest_gpio_chip_request() called %d times (expected 1 time)\n", 2297 unittest_gpio_chip_request_count - chip_request_count); 2298 2299 /* 2300 * overlay_gpio_04a contains gpio node 2301 * 2302 * - apply overlay_gpio_04a 2303 * 2304 * apply the overlay will result in 2305 * - probe for overlay_gpio_04a 2306 */ 2307 2308 probe_pass_count = unittest_gpio_probe_pass_count; 2309 chip_request_count = unittest_gpio_chip_request_count; 2310 2311 /* overlay_gpio_04a contains gpio node */ 2312 2313 unittest(overlay_data_apply("overlay_gpio_04a", NULL), 2314 "Adding overlay 'overlay_gpio_04a' failed\n"); 2315 2316 unittest(probe_pass_count + 1 == unittest_gpio_probe_pass_count, 2317 "unittest_gpio_probe() failed or not called\n"); 2318 2319 /* 2320 * overlay_gpio_04b contains child gpio hog node 2321 * 2322 * - apply overlay_gpio_04b 2323 * 2324 * apply the overlay will result in 2325 * - processing gpio for overlay_gpio_04b 2326 */ 2327 2328 /* overlay_gpio_04b contains child gpio hog node */ 2329 2330 unittest(overlay_data_apply("overlay_gpio_04b", NULL), 2331 "Adding overlay 'overlay_gpio_04b' failed\n"); 2332 2333 unittest(chip_request_count + 1 == unittest_gpio_chip_request_count, 2334 "unittest_gpio_chip_request() called %d times (expected 1 time)\n", 2335 unittest_gpio_chip_request_count - chip_request_count); 2336 } 2337 2338 #else 2339 2340 static void __init of_unittest_overlay_gpio(void) 2341 { 2342 /* skip tests */ 2343 } 2344 2345 #endif 2346 2347 #if IS_BUILTIN(CONFIG_I2C) 2348 2349 /* get the i2c client device instantiated at the path */ 2350 static struct i2c_client *of_path_to_i2c_client(const char *path) 2351 { 2352 struct device_node *np; 2353 struct i2c_client *client; 2354 2355 np = of_find_node_by_path(path); 2356 if (np == NULL) 2357 return NULL; 2358 2359 client = of_find_i2c_device_by_node(np); 2360 of_node_put(np); 2361 2362 return client; 2363 } 2364 2365 /* find out if a i2c client device exists at that path */ 2366 static int of_path_i2c_client_exists(const char *path) 2367 { 2368 struct i2c_client *client; 2369 2370 client = of_path_to_i2c_client(path); 2371 if (client) 2372 put_device(&client->dev); 2373 return client != NULL; 2374 } 2375 #else 2376 static int of_path_i2c_client_exists(const char *path) 2377 { 2378 return 0; 2379 } 2380 #endif 2381 2382 enum overlay_type { 2383 PDEV_OVERLAY, 2384 I2C_OVERLAY 2385 }; 2386 2387 static int of_path_device_type_exists(const char *path, 2388 enum overlay_type ovtype) 2389 { 2390 switch (ovtype) { 2391 case PDEV_OVERLAY: 2392 return of_path_platform_device_exists(path); 2393 case I2C_OVERLAY: 2394 return of_path_i2c_client_exists(path); 2395 } 2396 return 0; 2397 } 2398 2399 static const char *unittest_path(int nr, enum overlay_type ovtype) 2400 { 2401 const char *base; 2402 static char buf[256]; 2403 2404 switch (ovtype) { 2405 case PDEV_OVERLAY: 2406 base = "/testcase-data/overlay-node/test-bus"; 2407 break; 2408 case I2C_OVERLAY: 2409 base = "/testcase-data/overlay-node/test-bus/i2c-test-bus"; 2410 break; 2411 default: 2412 buf[0] = '\0'; 2413 return buf; 2414 } 2415 snprintf(buf, sizeof(buf) - 1, "%s/test-unittest%d", base, nr); 2416 buf[sizeof(buf) - 1] = '\0'; 2417 return buf; 2418 } 2419 2420 static int of_unittest_device_exists(int unittest_nr, enum overlay_type ovtype) 2421 { 2422 const char *path; 2423 2424 path = unittest_path(unittest_nr, ovtype); 2425 2426 switch (ovtype) { 2427 case PDEV_OVERLAY: 2428 return of_path_platform_device_exists(path); 2429 case I2C_OVERLAY: 2430 return of_path_i2c_client_exists(path); 2431 } 2432 return 0; 2433 } 2434 2435 static const char *overlay_name_from_nr(int nr) 2436 { 2437 static char buf[256]; 2438 2439 snprintf(buf, sizeof(buf) - 1, 2440 "overlay_%d", nr); 2441 buf[sizeof(buf) - 1] = '\0'; 2442 2443 return buf; 2444 } 2445 2446 static const char *bus_path = "/testcase-data/overlay-node/test-bus"; 2447 2448 #define MAX_TRACK_OVCS_IDS 256 2449 2450 static int track_ovcs_id[MAX_TRACK_OVCS_IDS]; 2451 static int track_ovcs_id_overlay_nr[MAX_TRACK_OVCS_IDS]; 2452 static int track_ovcs_id_cnt; 2453 2454 static void of_unittest_track_overlay(int ovcs_id, int overlay_nr) 2455 { 2456 if (WARN_ON(track_ovcs_id_cnt >= MAX_TRACK_OVCS_IDS)) 2457 return; 2458 2459 track_ovcs_id[track_ovcs_id_cnt] = ovcs_id; 2460 track_ovcs_id_overlay_nr[track_ovcs_id_cnt] = overlay_nr; 2461 track_ovcs_id_cnt++; 2462 } 2463 2464 static void of_unittest_untrack_overlay(int ovcs_id) 2465 { 2466 if (WARN_ON(track_ovcs_id_cnt < 1)) 2467 return; 2468 2469 track_ovcs_id_cnt--; 2470 2471 /* If out of synch then test is broken. Do not try to recover. */ 2472 WARN_ON(track_ovcs_id[track_ovcs_id_cnt] != ovcs_id); 2473 } 2474 2475 static void of_unittest_remove_tracked_overlays(void) 2476 { 2477 int ret, ovcs_id, overlay_nr, save_ovcs_id; 2478 const char *overlay_name; 2479 2480 while (track_ovcs_id_cnt > 0) { 2481 2482 ovcs_id = track_ovcs_id[track_ovcs_id_cnt - 1]; 2483 overlay_nr = track_ovcs_id_overlay_nr[track_ovcs_id_cnt - 1]; 2484 save_ovcs_id = ovcs_id; 2485 ret = of_overlay_remove(&ovcs_id); 2486 if (ret == -ENODEV) { 2487 overlay_name = overlay_name_from_nr(overlay_nr); 2488 pr_warn("%s: of_overlay_remove() for overlay \"%s\" failed, ret = %d\n", 2489 __func__, overlay_name, ret); 2490 } 2491 of_unittest_untrack_overlay(save_ovcs_id); 2492 } 2493 2494 } 2495 2496 static int __init of_unittest_apply_overlay(int overlay_nr, int *ovcs_id) 2497 { 2498 /* 2499 * The overlay will be tracked, thus it will be removed 2500 * by of_unittest_remove_tracked_overlays(). 2501 */ 2502 2503 const char *overlay_name; 2504 2505 overlay_name = overlay_name_from_nr(overlay_nr); 2506 2507 if (!overlay_data_apply(overlay_name, ovcs_id)) { 2508 unittest(0, "could not apply overlay \"%s\"\n", overlay_name); 2509 return -EFAULT; 2510 } 2511 of_unittest_track_overlay(*ovcs_id, overlay_nr); 2512 2513 return 0; 2514 } 2515 2516 static int __init __of_unittest_apply_overlay_check(int overlay_nr, 2517 int unittest_nr, int before, int after, 2518 enum overlay_type ovtype) 2519 { 2520 int ret, ovcs_id; 2521 2522 /* unittest device must be in before state */ 2523 if (of_unittest_device_exists(unittest_nr, ovtype) != before) { 2524 unittest(0, "%s with device @\"%s\" %s\n", 2525 overlay_name_from_nr(overlay_nr), 2526 unittest_path(unittest_nr, ovtype), 2527 !before ? "enabled" : "disabled"); 2528 return -EINVAL; 2529 } 2530 2531 /* apply the overlay */ 2532 ovcs_id = 0; 2533 ret = of_unittest_apply_overlay(overlay_nr, &ovcs_id); 2534 if (ret != 0) { 2535 /* of_unittest_apply_overlay already called unittest() */ 2536 return ret; 2537 } 2538 2539 /* unittest device must be in after state */ 2540 if (of_unittest_device_exists(unittest_nr, ovtype) != after) { 2541 unittest(0, "%s with device @\"%s\" %s\n", 2542 overlay_name_from_nr(overlay_nr), 2543 unittest_path(unittest_nr, ovtype), 2544 !after ? "enabled" : "disabled"); 2545 return -EINVAL; 2546 } 2547 2548 return ovcs_id; 2549 } 2550 2551 /* apply an overlay while checking before and after states */ 2552 static int __init of_unittest_apply_overlay_check(int overlay_nr, 2553 int unittest_nr, int before, int after, 2554 enum overlay_type ovtype) 2555 { 2556 int ovcs_id = __of_unittest_apply_overlay_check(overlay_nr, 2557 unittest_nr, before, after, ovtype); 2558 if (ovcs_id < 0) 2559 return ovcs_id; 2560 2561 return 0; 2562 } 2563 2564 /* apply an overlay and then revert it while checking before, after states */ 2565 static int __init of_unittest_apply_revert_overlay_check(int overlay_nr, 2566 int unittest_nr, int before, int after, 2567 enum overlay_type ovtype) 2568 { 2569 int ret, ovcs_id, save_ovcs_id; 2570 2571 ovcs_id = __of_unittest_apply_overlay_check(overlay_nr, unittest_nr, 2572 before, after, ovtype); 2573 if (ovcs_id < 0) 2574 return ovcs_id; 2575 2576 /* remove the overlay */ 2577 save_ovcs_id = ovcs_id; 2578 ret = of_overlay_remove(&ovcs_id); 2579 if (ret != 0) { 2580 unittest(0, "%s failed to be destroyed @\"%s\"\n", 2581 overlay_name_from_nr(overlay_nr), 2582 unittest_path(unittest_nr, ovtype)); 2583 return ret; 2584 } 2585 of_unittest_untrack_overlay(save_ovcs_id); 2586 2587 /* unittest device must be again in before state */ 2588 if (of_unittest_device_exists(unittest_nr, ovtype) != before) { 2589 unittest(0, "%s with device @\"%s\" %s\n", 2590 overlay_name_from_nr(overlay_nr), 2591 unittest_path(unittest_nr, ovtype), 2592 !before ? "enabled" : "disabled"); 2593 return -EINVAL; 2594 } 2595 2596 return 0; 2597 } 2598 2599 /* test activation of device */ 2600 static void __init of_unittest_overlay_0(void) 2601 { 2602 int ret; 2603 2604 EXPECT_BEGIN(KERN_INFO, 2605 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest0/status"); 2606 2607 /* device should enable */ 2608 ret = of_unittest_apply_overlay_check(0, 0, 0, 1, PDEV_OVERLAY); 2609 2610 EXPECT_END(KERN_INFO, 2611 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest0/status"); 2612 2613 if (ret) 2614 return; 2615 2616 unittest(1, "overlay test %d passed\n", 0); 2617 } 2618 2619 /* test deactivation of device */ 2620 static void __init of_unittest_overlay_1(void) 2621 { 2622 int ret; 2623 2624 EXPECT_BEGIN(KERN_INFO, 2625 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest1/status"); 2626 2627 /* device should disable */ 2628 ret = of_unittest_apply_overlay_check(1, 1, 1, 0, PDEV_OVERLAY); 2629 2630 EXPECT_END(KERN_INFO, 2631 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest1/status"); 2632 2633 if (ret) 2634 return; 2635 2636 unittest(1, "overlay test %d passed\n", 1); 2637 2638 } 2639 2640 /* test activation of device */ 2641 static void __init of_unittest_overlay_2(void) 2642 { 2643 int ret; 2644 2645 EXPECT_BEGIN(KERN_INFO, 2646 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest2/status"); 2647 2648 /* device should enable */ 2649 ret = of_unittest_apply_overlay_check(2, 2, 0, 1, PDEV_OVERLAY); 2650 2651 EXPECT_END(KERN_INFO, 2652 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest2/status"); 2653 2654 if (ret) 2655 return; 2656 unittest(1, "overlay test %d passed\n", 2); 2657 } 2658 2659 /* test deactivation of device */ 2660 static void __init of_unittest_overlay_3(void) 2661 { 2662 int ret; 2663 2664 EXPECT_BEGIN(KERN_INFO, 2665 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest3/status"); 2666 2667 /* device should disable */ 2668 ret = of_unittest_apply_overlay_check(3, 3, 1, 0, PDEV_OVERLAY); 2669 2670 EXPECT_END(KERN_INFO, 2671 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest3/status"); 2672 2673 if (ret) 2674 return; 2675 2676 unittest(1, "overlay test %d passed\n", 3); 2677 } 2678 2679 /* test activation of a full device node */ 2680 static void __init of_unittest_overlay_4(void) 2681 { 2682 /* device should disable */ 2683 if (of_unittest_apply_overlay_check(4, 4, 0, 1, PDEV_OVERLAY)) 2684 return; 2685 2686 unittest(1, "overlay test %d passed\n", 4); 2687 } 2688 2689 /* test overlay apply/revert sequence */ 2690 static void __init of_unittest_overlay_5(void) 2691 { 2692 int ret; 2693 2694 EXPECT_BEGIN(KERN_INFO, 2695 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest5/status"); 2696 2697 /* device should disable */ 2698 ret = of_unittest_apply_revert_overlay_check(5, 5, 0, 1, PDEV_OVERLAY); 2699 2700 EXPECT_END(KERN_INFO, 2701 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest5/status"); 2702 2703 if (ret) 2704 return; 2705 2706 unittest(1, "overlay test %d passed\n", 5); 2707 } 2708 2709 /* test overlay application in sequence */ 2710 static void __init of_unittest_overlay_6(void) 2711 { 2712 int i, save_ovcs_id[2], ovcs_id; 2713 int overlay_nr = 6, unittest_nr = 6; 2714 int before = 0, after = 1; 2715 const char *overlay_name; 2716 2717 int ret; 2718 2719 /* unittest device must be in before state */ 2720 for (i = 0; i < 2; i++) { 2721 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY) 2722 != before) { 2723 unittest(0, "%s with device @\"%s\" %s\n", 2724 overlay_name_from_nr(overlay_nr + i), 2725 unittest_path(unittest_nr + i, 2726 PDEV_OVERLAY), 2727 !before ? "enabled" : "disabled"); 2728 return; 2729 } 2730 } 2731 2732 /* apply the overlays */ 2733 2734 EXPECT_BEGIN(KERN_INFO, 2735 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest6/status"); 2736 2737 overlay_name = overlay_name_from_nr(overlay_nr + 0); 2738 2739 ret = overlay_data_apply(overlay_name, &ovcs_id); 2740 2741 if (!ret) { 2742 unittest(0, "could not apply overlay \"%s\"\n", overlay_name); 2743 return; 2744 } 2745 save_ovcs_id[0] = ovcs_id; 2746 of_unittest_track_overlay(ovcs_id, overlay_nr + 0); 2747 2748 EXPECT_END(KERN_INFO, 2749 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest6/status"); 2750 2751 EXPECT_BEGIN(KERN_INFO, 2752 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest7/status"); 2753 2754 overlay_name = overlay_name_from_nr(overlay_nr + 1); 2755 2756 ret = overlay_data_apply(overlay_name, &ovcs_id); 2757 2758 if (!ret) { 2759 unittest(0, "could not apply overlay \"%s\"\n", overlay_name); 2760 return; 2761 } 2762 save_ovcs_id[1] = ovcs_id; 2763 of_unittest_track_overlay(ovcs_id, overlay_nr + 1); 2764 2765 EXPECT_END(KERN_INFO, 2766 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest7/status"); 2767 2768 2769 for (i = 0; i < 2; i++) { 2770 /* unittest device must be in after state */ 2771 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY) 2772 != after) { 2773 unittest(0, "overlay @\"%s\" failed @\"%s\" %s\n", 2774 overlay_name_from_nr(overlay_nr + i), 2775 unittest_path(unittest_nr + i, 2776 PDEV_OVERLAY), 2777 !after ? "enabled" : "disabled"); 2778 return; 2779 } 2780 } 2781 2782 for (i = 1; i >= 0; i--) { 2783 ovcs_id = save_ovcs_id[i]; 2784 if (of_overlay_remove(&ovcs_id)) { 2785 unittest(0, "%s failed destroy @\"%s\"\n", 2786 overlay_name_from_nr(overlay_nr + i), 2787 unittest_path(unittest_nr + i, 2788 PDEV_OVERLAY)); 2789 return; 2790 } 2791 of_unittest_untrack_overlay(save_ovcs_id[i]); 2792 } 2793 2794 for (i = 0; i < 2; i++) { 2795 /* unittest device must be again in before state */ 2796 if (of_unittest_device_exists(unittest_nr + i, PDEV_OVERLAY) 2797 != before) { 2798 unittest(0, "%s with device @\"%s\" %s\n", 2799 overlay_name_from_nr(overlay_nr + i), 2800 unittest_path(unittest_nr + i, 2801 PDEV_OVERLAY), 2802 !before ? "enabled" : "disabled"); 2803 return; 2804 } 2805 } 2806 2807 unittest(1, "overlay test %d passed\n", 6); 2808 2809 } 2810 2811 /* test overlay application in sequence */ 2812 static void __init of_unittest_overlay_8(void) 2813 { 2814 int i, save_ovcs_id[2], ovcs_id; 2815 int overlay_nr = 8, unittest_nr = 8; 2816 const char *overlay_name; 2817 int ret; 2818 2819 /* we don't care about device state in this test */ 2820 2821 EXPECT_BEGIN(KERN_INFO, 2822 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest8/status"); 2823 2824 overlay_name = overlay_name_from_nr(overlay_nr + 0); 2825 2826 ret = overlay_data_apply(overlay_name, &ovcs_id); 2827 if (!ret) 2828 unittest(0, "could not apply overlay \"%s\"\n", overlay_name); 2829 2830 EXPECT_END(KERN_INFO, 2831 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest8/status"); 2832 2833 if (!ret) 2834 return; 2835 2836 save_ovcs_id[0] = ovcs_id; 2837 of_unittest_track_overlay(ovcs_id, overlay_nr + 0); 2838 2839 overlay_name = overlay_name_from_nr(overlay_nr + 1); 2840 2841 EXPECT_BEGIN(KERN_INFO, 2842 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest8/property-foo"); 2843 2844 /* apply the overlays */ 2845 ret = overlay_data_apply(overlay_name, &ovcs_id); 2846 2847 EXPECT_END(KERN_INFO, 2848 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/test-unittest8/property-foo"); 2849 2850 if (!ret) { 2851 unittest(0, "could not apply overlay \"%s\"\n", overlay_name); 2852 return; 2853 } 2854 2855 save_ovcs_id[1] = ovcs_id; 2856 of_unittest_track_overlay(ovcs_id, overlay_nr + 1); 2857 2858 /* now try to remove first overlay (it should fail) */ 2859 ovcs_id = save_ovcs_id[0]; 2860 2861 EXPECT_BEGIN(KERN_INFO, 2862 "OF: overlay: node_overlaps_later_cs: #6 overlaps with #7 @/testcase-data/overlay-node/test-bus/test-unittest8"); 2863 2864 EXPECT_BEGIN(KERN_INFO, 2865 "OF: overlay: overlay #6 is not topmost"); 2866 2867 ret = of_overlay_remove(&ovcs_id); 2868 2869 EXPECT_END(KERN_INFO, 2870 "OF: overlay: overlay #6 is not topmost"); 2871 2872 EXPECT_END(KERN_INFO, 2873 "OF: overlay: node_overlaps_later_cs: #6 overlaps with #7 @/testcase-data/overlay-node/test-bus/test-unittest8"); 2874 2875 if (!ret) { 2876 /* 2877 * Should never get here. If we do, expect a lot of 2878 * subsequent tracking and overlay removal related errors. 2879 */ 2880 unittest(0, "%s was destroyed @\"%s\"\n", 2881 overlay_name_from_nr(overlay_nr + 0), 2882 unittest_path(unittest_nr, 2883 PDEV_OVERLAY)); 2884 return; 2885 } 2886 2887 /* removing them in order should work */ 2888 for (i = 1; i >= 0; i--) { 2889 ovcs_id = save_ovcs_id[i]; 2890 if (of_overlay_remove(&ovcs_id)) { 2891 unittest(0, "%s not destroyed @\"%s\"\n", 2892 overlay_name_from_nr(overlay_nr + i), 2893 unittest_path(unittest_nr, 2894 PDEV_OVERLAY)); 2895 return; 2896 } 2897 of_unittest_untrack_overlay(save_ovcs_id[i]); 2898 } 2899 2900 unittest(1, "overlay test %d passed\n", 8); 2901 } 2902 2903 /* test insertion of a bus with parent devices */ 2904 static void __init of_unittest_overlay_10(void) 2905 { 2906 int ret; 2907 char *child_path; 2908 2909 /* device should disable */ 2910 ret = of_unittest_apply_overlay_check(10, 10, 0, 1, PDEV_OVERLAY); 2911 2912 if (unittest(ret == 0, 2913 "overlay test %d failed; overlay application\n", 10)) 2914 return; 2915 2916 child_path = kasprintf(GFP_KERNEL, "%s/test-unittest101", 2917 unittest_path(10, PDEV_OVERLAY)); 2918 if (unittest(child_path, "overlay test %d failed; kasprintf\n", 10)) 2919 return; 2920 2921 ret = of_path_device_type_exists(child_path, PDEV_OVERLAY); 2922 kfree(child_path); 2923 2924 unittest(ret, "overlay test %d failed; no child device\n", 10); 2925 } 2926 2927 /* test insertion of a bus with parent devices (and revert) */ 2928 static void __init of_unittest_overlay_11(void) 2929 { 2930 int ret; 2931 2932 /* device should disable */ 2933 ret = of_unittest_apply_revert_overlay_check(11, 11, 0, 1, 2934 PDEV_OVERLAY); 2935 2936 unittest(ret == 0, "overlay test %d failed; overlay apply\n", 11); 2937 } 2938 2939 #if IS_BUILTIN(CONFIG_I2C) && IS_ENABLED(CONFIG_OF_OVERLAY) 2940 2941 struct unittest_i2c_bus_data { 2942 struct platform_device *pdev; 2943 struct i2c_adapter adap; 2944 }; 2945 2946 static int unittest_i2c_master_xfer(struct i2c_adapter *adap, 2947 struct i2c_msg *msgs, int num) 2948 { 2949 struct unittest_i2c_bus_data *std = i2c_get_adapdata(adap); 2950 2951 (void)std; 2952 2953 return num; 2954 } 2955 2956 static u32 unittest_i2c_functionality(struct i2c_adapter *adap) 2957 { 2958 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL; 2959 } 2960 2961 static const struct i2c_algorithm unittest_i2c_algo = { 2962 .master_xfer = unittest_i2c_master_xfer, 2963 .functionality = unittest_i2c_functionality, 2964 }; 2965 2966 static int unittest_i2c_bus_probe(struct platform_device *pdev) 2967 { 2968 struct device *dev = &pdev->dev; 2969 struct device_node *np = dev->of_node; 2970 struct unittest_i2c_bus_data *std; 2971 struct i2c_adapter *adap; 2972 int ret; 2973 2974 if (np == NULL) { 2975 dev_err(dev, "No OF data for device\n"); 2976 return -EINVAL; 2977 2978 } 2979 2980 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 2981 2982 std = devm_kzalloc(dev, sizeof(*std), GFP_KERNEL); 2983 if (!std) 2984 return -ENOMEM; 2985 2986 /* link them together */ 2987 std->pdev = pdev; 2988 platform_set_drvdata(pdev, std); 2989 2990 adap = &std->adap; 2991 i2c_set_adapdata(adap, std); 2992 adap->nr = -1; 2993 strscpy(adap->name, pdev->name, sizeof(adap->name)); 2994 adap->class = I2C_CLASS_DEPRECATED; 2995 adap->algo = &unittest_i2c_algo; 2996 adap->dev.parent = dev; 2997 adap->dev.of_node = dev->of_node; 2998 adap->timeout = 5 * HZ; 2999 adap->retries = 3; 3000 3001 ret = i2c_add_numbered_adapter(adap); 3002 if (ret != 0) { 3003 dev_err(dev, "Failed to add I2C adapter\n"); 3004 return ret; 3005 } 3006 3007 return 0; 3008 } 3009 3010 static void unittest_i2c_bus_remove(struct platform_device *pdev) 3011 { 3012 struct device *dev = &pdev->dev; 3013 struct device_node *np = dev->of_node; 3014 struct unittest_i2c_bus_data *std = platform_get_drvdata(pdev); 3015 3016 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 3017 i2c_del_adapter(&std->adap); 3018 } 3019 3020 static const struct of_device_id unittest_i2c_bus_match[] = { 3021 { .compatible = "unittest-i2c-bus", }, 3022 {}, 3023 }; 3024 3025 static struct platform_driver unittest_i2c_bus_driver = { 3026 .probe = unittest_i2c_bus_probe, 3027 .remove = unittest_i2c_bus_remove, 3028 .driver = { 3029 .name = "unittest-i2c-bus", 3030 .of_match_table = unittest_i2c_bus_match, 3031 }, 3032 }; 3033 3034 static int unittest_i2c_dev_probe(struct i2c_client *client) 3035 { 3036 struct device *dev = &client->dev; 3037 struct device_node *np = client->dev.of_node; 3038 3039 if (!np) { 3040 dev_err(dev, "No OF node\n"); 3041 return -EINVAL; 3042 } 3043 3044 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 3045 3046 return 0; 3047 }; 3048 3049 static void unittest_i2c_dev_remove(struct i2c_client *client) 3050 { 3051 struct device *dev = &client->dev; 3052 struct device_node *np = client->dev.of_node; 3053 3054 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 3055 } 3056 3057 static const struct i2c_device_id unittest_i2c_dev_id[] = { 3058 { .name = "unittest-i2c-dev" }, 3059 { } 3060 }; 3061 3062 static struct i2c_driver unittest_i2c_dev_driver = { 3063 .driver = { 3064 .name = "unittest-i2c-dev", 3065 }, 3066 .probe = unittest_i2c_dev_probe, 3067 .remove = unittest_i2c_dev_remove, 3068 .id_table = unittest_i2c_dev_id, 3069 }; 3070 3071 #if IS_BUILTIN(CONFIG_I2C_MUX) 3072 3073 static int unittest_i2c_mux_select_chan(struct i2c_mux_core *muxc, u32 chan) 3074 { 3075 return 0; 3076 } 3077 3078 static int unittest_i2c_mux_probe(struct i2c_client *client) 3079 { 3080 int i, nchans; 3081 struct device *dev = &client->dev; 3082 struct i2c_adapter *adap = client->adapter; 3083 struct device_node *np = client->dev.of_node, *child; 3084 struct i2c_mux_core *muxc; 3085 u32 reg, max_reg; 3086 3087 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 3088 3089 if (!np) { 3090 dev_err(dev, "No OF node\n"); 3091 return -EINVAL; 3092 } 3093 3094 max_reg = (u32)-1; 3095 for_each_child_of_node(np, child) { 3096 if (of_property_read_u32(child, "reg", ®)) 3097 continue; 3098 if (max_reg == (u32)-1 || reg > max_reg) 3099 max_reg = reg; 3100 } 3101 nchans = max_reg == (u32)-1 ? 0 : max_reg + 1; 3102 if (nchans == 0) { 3103 dev_err(dev, "No channels\n"); 3104 return -EINVAL; 3105 } 3106 3107 muxc = i2c_mux_alloc(adap, dev, nchans, 0, 0, 3108 unittest_i2c_mux_select_chan, NULL); 3109 if (!muxc) 3110 return -ENOMEM; 3111 for (i = 0; i < nchans; i++) { 3112 if (i2c_mux_add_adapter(muxc, 0, i)) { 3113 dev_err(dev, "Failed to register mux #%d\n", i); 3114 i2c_mux_del_adapters(muxc); 3115 return -ENODEV; 3116 } 3117 } 3118 3119 i2c_set_clientdata(client, muxc); 3120 3121 return 0; 3122 }; 3123 3124 static void unittest_i2c_mux_remove(struct i2c_client *client) 3125 { 3126 struct device *dev = &client->dev; 3127 struct device_node *np = client->dev.of_node; 3128 struct i2c_mux_core *muxc = i2c_get_clientdata(client); 3129 3130 dev_dbg(dev, "%s for node @%pOF\n", __func__, np); 3131 i2c_mux_del_adapters(muxc); 3132 } 3133 3134 static const struct i2c_device_id unittest_i2c_mux_id[] = { 3135 { .name = "unittest-i2c-mux" }, 3136 { } 3137 }; 3138 3139 static struct i2c_driver unittest_i2c_mux_driver = { 3140 .driver = { 3141 .name = "unittest-i2c-mux", 3142 }, 3143 .probe = unittest_i2c_mux_probe, 3144 .remove = unittest_i2c_mux_remove, 3145 .id_table = unittest_i2c_mux_id, 3146 }; 3147 3148 #endif 3149 3150 static int of_unittest_overlay_i2c_init(void) 3151 { 3152 int ret; 3153 3154 ret = i2c_add_driver(&unittest_i2c_dev_driver); 3155 if (unittest(ret == 0, 3156 "could not register unittest i2c device driver\n")) 3157 return ret; 3158 3159 ret = platform_driver_register(&unittest_i2c_bus_driver); 3160 3161 if (unittest(ret == 0, 3162 "could not register unittest i2c bus driver\n")) 3163 return ret; 3164 3165 #if IS_BUILTIN(CONFIG_I2C_MUX) 3166 3167 EXPECT_BEGIN(KERN_INFO, 3168 "i2c i2c-1: Added multiplexed i2c bus 2"); 3169 3170 ret = i2c_add_driver(&unittest_i2c_mux_driver); 3171 3172 EXPECT_END(KERN_INFO, 3173 "i2c i2c-1: Added multiplexed i2c bus 2"); 3174 3175 if (unittest(ret == 0, 3176 "could not register unittest i2c mux driver\n")) 3177 return ret; 3178 #endif 3179 3180 return 0; 3181 } 3182 3183 static void of_unittest_overlay_i2c_cleanup(void) 3184 { 3185 #if IS_BUILTIN(CONFIG_I2C_MUX) 3186 i2c_del_driver(&unittest_i2c_mux_driver); 3187 #endif 3188 platform_driver_unregister(&unittest_i2c_bus_driver); 3189 i2c_del_driver(&unittest_i2c_dev_driver); 3190 } 3191 3192 static void __init of_unittest_overlay_i2c_12(void) 3193 { 3194 int ret; 3195 3196 /* device should enable */ 3197 EXPECT_BEGIN(KERN_INFO, 3198 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/i2c-test-bus/test-unittest12/status"); 3199 3200 ret = of_unittest_apply_overlay_check(12, 12, 0, 1, I2C_OVERLAY); 3201 3202 EXPECT_END(KERN_INFO, 3203 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/i2c-test-bus/test-unittest12/status"); 3204 3205 if (ret) 3206 return; 3207 3208 unittest(1, "overlay test %d passed\n", 12); 3209 } 3210 3211 /* test deactivation of device */ 3212 static void __init of_unittest_overlay_i2c_13(void) 3213 { 3214 int ret; 3215 3216 EXPECT_BEGIN(KERN_INFO, 3217 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/i2c-test-bus/test-unittest13/status"); 3218 3219 /* device should disable */ 3220 ret = of_unittest_apply_overlay_check(13, 13, 1, 0, I2C_OVERLAY); 3221 3222 EXPECT_END(KERN_INFO, 3223 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data/overlay-node/test-bus/i2c-test-bus/test-unittest13/status"); 3224 3225 if (ret) 3226 return; 3227 3228 unittest(1, "overlay test %d passed\n", 13); 3229 } 3230 3231 /* just check for i2c mux existence */ 3232 static void of_unittest_overlay_i2c_14(void) 3233 { 3234 } 3235 3236 static void __init of_unittest_overlay_i2c_15(void) 3237 { 3238 int ret; 3239 3240 /* device should enable */ 3241 EXPECT_BEGIN(KERN_INFO, 3242 "i2c i2c-1: Added multiplexed i2c bus 3"); 3243 3244 ret = of_unittest_apply_overlay_check(15, 15, 0, 1, I2C_OVERLAY); 3245 3246 EXPECT_END(KERN_INFO, 3247 "i2c i2c-1: Added multiplexed i2c bus 3"); 3248 3249 if (ret) 3250 return; 3251 3252 unittest(1, "overlay test %d passed\n", 15); 3253 } 3254 3255 #else 3256 3257 static inline void of_unittest_overlay_i2c_14(void) { } 3258 static inline void of_unittest_overlay_i2c_15(void) { } 3259 3260 #endif 3261 3262 static int of_notify(struct notifier_block *nb, unsigned long action, 3263 void *arg) 3264 { 3265 struct of_overlay_notify_data *nd = arg; 3266 struct device_node *found; 3267 int ret; 3268 3269 /* 3270 * For overlay_16 .. overlay_19, check that returning an error 3271 * works for each of the actions by setting an arbitrary return 3272 * error number that matches the test number. e.g. for unittest16, 3273 * ret = -EBUSY which is -16. 3274 * 3275 * OVERLAY_INFO() for the overlays is declared to expect the same 3276 * error number, so overlay_data_apply() will return no error. 3277 * 3278 * overlay_20 will return NOTIFY_DONE 3279 */ 3280 3281 ret = 0; 3282 of_node_get(nd->overlay); 3283 3284 switch (action) { 3285 3286 case OF_OVERLAY_PRE_APPLY: 3287 found = of_find_node_by_name(nd->overlay, "test-unittest16"); 3288 if (found) { 3289 of_node_put(found); 3290 ret = -EBUSY; 3291 } 3292 break; 3293 3294 case OF_OVERLAY_POST_APPLY: 3295 found = of_find_node_by_name(nd->overlay, "test-unittest17"); 3296 if (found) { 3297 of_node_put(found); 3298 ret = -EEXIST; 3299 } 3300 break; 3301 3302 case OF_OVERLAY_PRE_REMOVE: 3303 found = of_find_node_by_name(nd->overlay, "test-unittest18"); 3304 if (found) { 3305 of_node_put(found); 3306 ret = -EXDEV; 3307 } 3308 break; 3309 3310 case OF_OVERLAY_POST_REMOVE: 3311 found = of_find_node_by_name(nd->overlay, "test-unittest19"); 3312 if (found) { 3313 of_node_put(found); 3314 ret = -ENODEV; 3315 } 3316 break; 3317 3318 default: /* should not happen */ 3319 of_node_put(nd->overlay); 3320 ret = -EINVAL; 3321 break; 3322 } 3323 3324 if (ret) 3325 return notifier_from_errno(ret); 3326 3327 return NOTIFY_DONE; 3328 } 3329 3330 static struct notifier_block of_nb = { 3331 .notifier_call = of_notify, 3332 }; 3333 3334 static void __init of_unittest_overlay_notify(void) 3335 { 3336 int ovcs_id; 3337 int ret; 3338 3339 ret = of_overlay_notifier_register(&of_nb); 3340 unittest(!ret, 3341 "of_overlay_notifier_register() failed, ret = %d\n", ret); 3342 if (ret) 3343 return; 3344 3345 /* 3346 * The overlays are applied by overlay_data_apply() 3347 * instead of of_unittest_apply_overlay() so that they 3348 * will not be tracked. Thus they will not be removed 3349 * by of_unittest_remove_tracked_overlays(). 3350 * 3351 * Applying overlays 16 - 19 will each trigger an error for a 3352 * different action in of_notify(). 3353 * 3354 * Applying overlay 20 will not trigger any error in of_notify(). 3355 */ 3356 3357 /* --- overlay 16 --- */ 3358 3359 EXPECT_BEGIN(KERN_INFO, "OF: overlay: overlay changeset pre-apply notifier error -16, target: /testcase-data/overlay-node/test-bus"); 3360 3361 unittest(overlay_data_apply("overlay_16", &ovcs_id), 3362 "test OF_OVERLAY_PRE_APPLY notify injected error\n"); 3363 3364 EXPECT_END(KERN_INFO, "OF: overlay: overlay changeset pre-apply notifier error -16, target: /testcase-data/overlay-node/test-bus"); 3365 3366 unittest(ovcs_id, "ovcs_id not created for overlay_16\n"); 3367 3368 /* --- overlay 17 --- */ 3369 3370 EXPECT_BEGIN(KERN_INFO, "OF: overlay: overlay changeset post-apply notifier error -17, target: /testcase-data/overlay-node/test-bus"); 3371 3372 unittest(overlay_data_apply("overlay_17", &ovcs_id), 3373 "test OF_OVERLAY_POST_APPLY notify injected error\n"); 3374 3375 EXPECT_END(KERN_INFO, "OF: overlay: overlay changeset post-apply notifier error -17, target: /testcase-data/overlay-node/test-bus"); 3376 3377 unittest(ovcs_id, "ovcs_id not created for overlay_17\n"); 3378 3379 /* --- overlay 18 --- */ 3380 3381 unittest(overlay_data_apply("overlay_18", &ovcs_id), 3382 "OF_OVERLAY_PRE_REMOVE notify injected error\n"); 3383 3384 unittest(ovcs_id, "ovcs_id not created for overlay_18\n"); 3385 3386 if (ovcs_id) { 3387 EXPECT_BEGIN(KERN_INFO, "OF: overlay: overlay changeset pre-remove notifier error -18, target: /testcase-data/overlay-node/test-bus"); 3388 3389 ret = of_overlay_remove(&ovcs_id); 3390 EXPECT_END(KERN_INFO, "OF: overlay: overlay changeset pre-remove notifier error -18, target: /testcase-data/overlay-node/test-bus"); 3391 if (ret == -EXDEV) { 3392 /* 3393 * change set ovcs_id should still exist 3394 */ 3395 unittest(1, "overlay_18 of_overlay_remove() injected error for OF_OVERLAY_PRE_REMOVE\n"); 3396 } else { 3397 unittest(0, "overlay_18 of_overlay_remove() injected error for OF_OVERLAY_PRE_REMOVE not returned\n"); 3398 } 3399 } else { 3400 unittest(1, "ovcs_id not created for overlay_18\n"); 3401 } 3402 3403 unittest(ovcs_id, "ovcs_id removed for overlay_18\n"); 3404 3405 /* --- overlay 19 --- */ 3406 3407 unittest(overlay_data_apply("overlay_19", &ovcs_id), 3408 "OF_OVERLAY_POST_REMOVE notify injected error\n"); 3409 3410 unittest(ovcs_id, "ovcs_id not created for overlay_19\n"); 3411 3412 if (ovcs_id) { 3413 EXPECT_BEGIN(KERN_INFO, "OF: overlay: overlay changeset post-remove notifier error -19, target: /testcase-data/overlay-node/test-bus"); 3414 ret = of_overlay_remove(&ovcs_id); 3415 EXPECT_END(KERN_INFO, "OF: overlay: overlay changeset post-remove notifier error -19, target: /testcase-data/overlay-node/test-bus"); 3416 if (ret == -ENODEV) 3417 unittest(1, "overlay_19 of_overlay_remove() injected error for OF_OVERLAY_POST_REMOVE\n"); 3418 else 3419 unittest(0, "overlay_19 of_overlay_remove() injected error for OF_OVERLAY_POST_REMOVE not returned\n"); 3420 } else { 3421 unittest(1, "ovcs_id removed for overlay_19\n"); 3422 } 3423 3424 unittest(!ovcs_id, "changeset ovcs_id = %d not removed for overlay_19\n", 3425 ovcs_id); 3426 3427 /* --- overlay 20 --- */ 3428 3429 unittest(overlay_data_apply("overlay_20", &ovcs_id), 3430 "overlay notify no injected error\n"); 3431 3432 if (ovcs_id) { 3433 ret = of_overlay_remove(&ovcs_id); 3434 if (ret) 3435 unittest(1, "overlay_20 failed to be destroyed, ret = %d\n", 3436 ret); 3437 } else { 3438 unittest(1, "ovcs_id not created for overlay_20\n"); 3439 } 3440 3441 unittest(!of_overlay_notifier_unregister(&of_nb), 3442 "of_overlay_notifier_unregister() failed, ret = %d\n", ret); 3443 } 3444 3445 static void __init of_unittest_overlay(void) 3446 { 3447 struct device_node *bus_np = NULL; 3448 unsigned int i; 3449 3450 if (platform_driver_register(&unittest_driver)) { 3451 unittest(0, "could not register unittest driver\n"); 3452 goto out; 3453 } 3454 3455 bus_np = of_find_node_by_path(bus_path); 3456 if (bus_np == NULL) { 3457 unittest(0, "could not find bus_path \"%s\"\n", bus_path); 3458 goto out; 3459 } 3460 3461 if (of_platform_default_populate(bus_np, NULL, NULL)) { 3462 unittest(0, "could not populate bus @ \"%s\"\n", bus_path); 3463 goto out; 3464 } 3465 3466 if (!of_unittest_device_exists(100, PDEV_OVERLAY)) { 3467 unittest(0, "could not find unittest0 @ \"%s\"\n", 3468 unittest_path(100, PDEV_OVERLAY)); 3469 goto out; 3470 } 3471 3472 if (of_unittest_device_exists(101, PDEV_OVERLAY)) { 3473 unittest(0, "unittest1 @ \"%s\" should not exist\n", 3474 unittest_path(101, PDEV_OVERLAY)); 3475 goto out; 3476 } 3477 3478 unittest(1, "basic infrastructure of overlays passed"); 3479 3480 /* tests in sequence */ 3481 of_unittest_overlay_0(); 3482 of_unittest_overlay_1(); 3483 of_unittest_overlay_2(); 3484 of_unittest_overlay_3(); 3485 of_unittest_overlay_4(); 3486 for (i = 0; i < 3; i++) 3487 of_unittest_overlay_5(); 3488 of_unittest_overlay_6(); 3489 of_unittest_overlay_8(); 3490 3491 of_unittest_overlay_10(); 3492 of_unittest_overlay_11(); 3493 3494 #if IS_BUILTIN(CONFIG_I2C) 3495 if (unittest(of_unittest_overlay_i2c_init() == 0, "i2c init failed\n")) 3496 goto out; 3497 3498 of_unittest_overlay_i2c_12(); 3499 of_unittest_overlay_i2c_13(); 3500 of_unittest_overlay_i2c_14(); 3501 of_unittest_overlay_i2c_15(); 3502 3503 of_unittest_overlay_i2c_cleanup(); 3504 #endif 3505 3506 of_unittest_overlay_gpio(); 3507 3508 of_unittest_remove_tracked_overlays(); 3509 3510 of_unittest_overlay_notify(); 3511 3512 out: 3513 of_node_put(bus_np); 3514 } 3515 3516 #else 3517 static inline void __init of_unittest_overlay(void) { } 3518 #endif 3519 3520 static void __init of_unittest_lifecycle(void) 3521 { 3522 #ifdef CONFIG_OF_DYNAMIC 3523 unsigned int refcount; 3524 int found_refcount_one = 0; 3525 int put_count = 0; 3526 struct device_node *np; 3527 struct device_node *prev_sibling, *next_sibling; 3528 const char *refcount_path = "/testcase-data/refcount-node"; 3529 const char *refcount_parent_path = "/testcase-data"; 3530 3531 /* 3532 * Node lifecycle tests, non-dynamic node: 3533 * 3534 * - Decrementing refcount to zero via of_node_put() should cause the 3535 * attempt to free the node memory by of_node_release() to fail 3536 * because the node is not a dynamic node. 3537 * 3538 * - Decrementing refcount past zero should result in additional 3539 * errors reported. 3540 */ 3541 3542 np = of_find_node_by_path(refcount_path); 3543 unittest(np, "find refcount_path \"%s\"\n", refcount_path); 3544 if (np == NULL) 3545 goto out_skip_tests; 3546 3547 while (!found_refcount_one) { 3548 3549 if (put_count++ > 10) { 3550 unittest(0, "guardrail to avoid infinite loop\n"); 3551 goto out_skip_tests; 3552 } 3553 3554 refcount = kref_read(&np->kobj.kref); 3555 if (refcount == 1) 3556 found_refcount_one = 1; 3557 else 3558 of_node_put(np); 3559 } 3560 3561 EXPECT_BEGIN(KERN_INFO, "OF: ERROR: of_node_release() detected bad of_node_put() on /testcase-data/refcount-node"); 3562 3563 /* 3564 * refcount is now one, decrementing to zero will result in a call to 3565 * of_node_release() to free the node's memory, which should result 3566 * in an error 3567 */ 3568 unittest(1, "/testcase-data/refcount-node is one"); 3569 of_node_put(np); 3570 3571 EXPECT_END(KERN_INFO, "OF: ERROR: of_node_release() detected bad of_node_put() on /testcase-data/refcount-node"); 3572 3573 3574 /* 3575 * expect stack trace for subsequent of_node_put(): 3576 * __refcount_sub_and_test() calls: 3577 * refcount_warn_saturate(r, REFCOUNT_SUB_UAF) 3578 * 3579 * Not capturing entire WARN_ONCE() trace with EXPECT_*(), just 3580 * the first three lines, and the last line. 3581 */ 3582 EXPECT_BEGIN(KERN_INFO, "------------[ cut here ]------------"); 3583 EXPECT_BEGIN(KERN_INFO, "WARNING: <<all>>"); 3584 EXPECT_BEGIN(KERN_INFO, "refcount_t: underflow; use-after-free."); 3585 EXPECT_BEGIN(KERN_INFO, "---[ end trace <<int>> ]---"); 3586 3587 /* refcount is now zero, this should fail */ 3588 unittest(1, "/testcase-data/refcount-node is zero"); 3589 of_node_put(np); 3590 3591 EXPECT_END(KERN_INFO, "---[ end trace <<int>> ]---"); 3592 EXPECT_END(KERN_INFO, "refcount_t: underflow; use-after-free."); 3593 EXPECT_END(KERN_INFO, "WARNING: <<all>>"); 3594 EXPECT_END(KERN_INFO, "------------[ cut here ]------------"); 3595 3596 /* 3597 * Q. do we expect to get yet another warning? 3598 * A. no, the WARNING is from WARN_ONCE() 3599 */ 3600 EXPECT_NOT_BEGIN(KERN_INFO, "------------[ cut here ]------------"); 3601 EXPECT_NOT_BEGIN(KERN_INFO, "WARNING: <<all>>"); 3602 EXPECT_NOT_BEGIN(KERN_INFO, "refcount_t: underflow; use-after-free."); 3603 EXPECT_NOT_BEGIN(KERN_INFO, "---[ end trace <<int>> ]---"); 3604 3605 unittest(1, "/testcase-data/refcount-node is zero, second time"); 3606 of_node_put(np); 3607 3608 EXPECT_NOT_END(KERN_INFO, "---[ end trace <<int>> ]---"); 3609 EXPECT_NOT_END(KERN_INFO, "refcount_t: underflow; use-after-free."); 3610 EXPECT_NOT_END(KERN_INFO, "WARNING: <<all>>"); 3611 EXPECT_NOT_END(KERN_INFO, "------------[ cut here ]------------"); 3612 3613 /* 3614 * refcount of zero will trigger stack traces from any further 3615 * attempt to of_node_get() node "refcount-node". One example of 3616 * this is where of_unittest_check_node_linkage() will recursively 3617 * scan the tree, with 'for_each_child_of_node()' doing an 3618 * of_node_get() of the children of a node. 3619 * 3620 * Prevent the stack trace by removing node "refcount-node" from 3621 * its parent's child list. 3622 * 3623 * WARNING: EVIL, EVIL, EVIL: 3624 * 3625 * Directly manipulate the child list of node /testcase-data to 3626 * remove child refcount-node. This is ignoring all proper methods 3627 * of removing a child and will leak a small amount of memory. 3628 */ 3629 3630 np = of_find_node_by_path(refcount_parent_path); 3631 unittest(np, "find refcount_parent_path \"%s\"\n", refcount_parent_path); 3632 unittest(np, "ERROR: devicetree live tree left in a 'bad state' if test fail\n"); 3633 if (np == NULL) 3634 return; 3635 3636 prev_sibling = np->child; 3637 next_sibling = prev_sibling->sibling; 3638 if (!strcmp(prev_sibling->full_name, "refcount-node")) { 3639 np->child = next_sibling; 3640 next_sibling = next_sibling->sibling; 3641 } 3642 while (next_sibling) { 3643 if (!strcmp(next_sibling->full_name, "refcount-node")) 3644 prev_sibling->sibling = next_sibling->sibling; 3645 prev_sibling = next_sibling; 3646 next_sibling = next_sibling->sibling; 3647 } 3648 of_node_put(np); 3649 3650 return; 3651 3652 out_skip_tests: 3653 #endif 3654 unittest(0, "One or more lifecycle tests skipped\n"); 3655 } 3656 3657 #ifdef CONFIG_OF_OVERLAY 3658 3659 /* 3660 * __dtbo_##overlay_name##_begin[] and __dtbo_##overlay_name##_end[] are 3661 * created by cmd_wrap_S_dtbo in scripts/Makefile.dtbs 3662 */ 3663 3664 #define OVERLAY_INFO_EXTERN(overlay_name) \ 3665 extern uint8_t __dtbo_##overlay_name##_begin[]; \ 3666 extern uint8_t __dtbo_##overlay_name##_end[] 3667 3668 #define OVERLAY_INFO(overlay_name, expected, expected_remove) \ 3669 { .dtbo_begin = __dtbo_##overlay_name##_begin, \ 3670 .dtbo_end = __dtbo_##overlay_name##_end, \ 3671 .expected_result = expected, \ 3672 .expected_result_remove = expected_remove, \ 3673 .name = #overlay_name, \ 3674 } 3675 3676 struct overlay_info { 3677 uint8_t *dtbo_begin; 3678 uint8_t *dtbo_end; 3679 int expected_result; 3680 int expected_result_remove; /* if apply failed */ 3681 int ovcs_id; 3682 char *name; 3683 }; 3684 3685 OVERLAY_INFO_EXTERN(overlay_base); 3686 OVERLAY_INFO_EXTERN(overlay); 3687 OVERLAY_INFO_EXTERN(overlay_0); 3688 OVERLAY_INFO_EXTERN(overlay_1); 3689 OVERLAY_INFO_EXTERN(overlay_2); 3690 OVERLAY_INFO_EXTERN(overlay_3); 3691 OVERLAY_INFO_EXTERN(overlay_4); 3692 OVERLAY_INFO_EXTERN(overlay_5); 3693 OVERLAY_INFO_EXTERN(overlay_6); 3694 OVERLAY_INFO_EXTERN(overlay_7); 3695 OVERLAY_INFO_EXTERN(overlay_8); 3696 OVERLAY_INFO_EXTERN(overlay_9); 3697 OVERLAY_INFO_EXTERN(overlay_10); 3698 OVERLAY_INFO_EXTERN(overlay_11); 3699 OVERLAY_INFO_EXTERN(overlay_12); 3700 OVERLAY_INFO_EXTERN(overlay_13); 3701 OVERLAY_INFO_EXTERN(overlay_15); 3702 OVERLAY_INFO_EXTERN(overlay_16); 3703 OVERLAY_INFO_EXTERN(overlay_17); 3704 OVERLAY_INFO_EXTERN(overlay_18); 3705 OVERLAY_INFO_EXTERN(overlay_19); 3706 OVERLAY_INFO_EXTERN(overlay_20); 3707 OVERLAY_INFO_EXTERN(overlay_gpio_01); 3708 OVERLAY_INFO_EXTERN(overlay_gpio_02a); 3709 OVERLAY_INFO_EXTERN(overlay_gpio_02b); 3710 OVERLAY_INFO_EXTERN(overlay_gpio_03); 3711 OVERLAY_INFO_EXTERN(overlay_gpio_04a); 3712 OVERLAY_INFO_EXTERN(overlay_gpio_04b); 3713 OVERLAY_INFO_EXTERN(overlay_pci_node); 3714 OVERLAY_INFO_EXTERN(overlay_bad_add_dup_node); 3715 OVERLAY_INFO_EXTERN(overlay_bad_add_dup_prop); 3716 OVERLAY_INFO_EXTERN(overlay_bad_phandle); 3717 OVERLAY_INFO_EXTERN(overlay_bad_symbol); 3718 OVERLAY_INFO_EXTERN(overlay_bad_unresolved); 3719 3720 /* entries found by name */ 3721 static struct overlay_info overlays[] = { 3722 OVERLAY_INFO(overlay_base, -9999, 0), 3723 OVERLAY_INFO(overlay, 0, 0), 3724 OVERLAY_INFO(overlay_0, 0, 0), 3725 OVERLAY_INFO(overlay_1, 0, 0), 3726 OVERLAY_INFO(overlay_2, 0, 0), 3727 OVERLAY_INFO(overlay_3, 0, 0), 3728 OVERLAY_INFO(overlay_4, 0, 0), 3729 OVERLAY_INFO(overlay_5, 0, 0), 3730 OVERLAY_INFO(overlay_6, 0, 0), 3731 OVERLAY_INFO(overlay_7, 0, 0), 3732 OVERLAY_INFO(overlay_8, 0, 0), 3733 OVERLAY_INFO(overlay_9, 0, 0), 3734 OVERLAY_INFO(overlay_10, 0, 0), 3735 OVERLAY_INFO(overlay_11, 0, 0), 3736 OVERLAY_INFO(overlay_12, 0, 0), 3737 OVERLAY_INFO(overlay_13, 0, 0), 3738 OVERLAY_INFO(overlay_15, 0, 0), 3739 OVERLAY_INFO(overlay_16, -EBUSY, 0), 3740 OVERLAY_INFO(overlay_17, -EEXIST, 0), 3741 OVERLAY_INFO(overlay_18, 0, 0), 3742 OVERLAY_INFO(overlay_19, 0, 0), 3743 OVERLAY_INFO(overlay_20, 0, 0), 3744 OVERLAY_INFO(overlay_gpio_01, 0, 0), 3745 OVERLAY_INFO(overlay_gpio_02a, 0, 0), 3746 OVERLAY_INFO(overlay_gpio_02b, 0, 0), 3747 OVERLAY_INFO(overlay_gpio_03, 0, 0), 3748 OVERLAY_INFO(overlay_gpio_04a, 0, 0), 3749 OVERLAY_INFO(overlay_gpio_04b, 0, 0), 3750 OVERLAY_INFO(overlay_pci_node, 0, 0), 3751 OVERLAY_INFO(overlay_bad_add_dup_node, -EINVAL, -ENODEV), 3752 OVERLAY_INFO(overlay_bad_add_dup_prop, -EINVAL, -ENODEV), 3753 OVERLAY_INFO(overlay_bad_phandle, -EINVAL, 0), 3754 OVERLAY_INFO(overlay_bad_symbol, -EINVAL, -ENODEV), 3755 OVERLAY_INFO(overlay_bad_unresolved, -EINVAL, 0), 3756 /* end marker */ 3757 { } 3758 }; 3759 3760 static struct device_node *overlay_base_root; 3761 3762 static void * __init dt_alloc_memory(u64 size, u64 align) 3763 { 3764 return memblock_alloc_or_panic(size, align); 3765 } 3766 3767 /* 3768 * Create base device tree for the overlay unittest. 3769 * 3770 * This is called from very early boot code. 3771 * 3772 * Do as much as possible the same way as done in __unflatten_device_tree 3773 * and other early boot steps for the normal FDT so that the overlay base 3774 * unflattened tree will have the same characteristics as the real tree 3775 * (such as having memory allocated by the early allocator). The goal 3776 * is to test "the real thing" as much as possible, and test "test setup 3777 * code" as little as possible. 3778 * 3779 * Have to stop before resolving phandles, because that uses kmalloc. 3780 */ 3781 void __init unittest_unflatten_overlay_base(void) 3782 { 3783 struct overlay_info *info; 3784 u32 data_size; 3785 void *new_fdt; 3786 u32 size; 3787 int found = 0; 3788 const char *overlay_name = "overlay_base"; 3789 3790 for (info = overlays; info && info->name; info++) { 3791 if (!strcmp(overlay_name, info->name)) { 3792 found = 1; 3793 break; 3794 } 3795 } 3796 if (!found) { 3797 pr_err("no overlay data for %s\n", overlay_name); 3798 return; 3799 } 3800 3801 info = &overlays[0]; 3802 3803 if (info->expected_result != -9999) { 3804 pr_err("No dtb 'overlay_base' to attach\n"); 3805 return; 3806 } 3807 3808 data_size = info->dtbo_end - info->dtbo_begin; 3809 if (!data_size) { 3810 pr_err("No dtb 'overlay_base' to attach\n"); 3811 return; 3812 } 3813 3814 size = fdt_totalsize(info->dtbo_begin); 3815 if (size != data_size) { 3816 pr_err("dtb 'overlay_base' header totalsize != actual size"); 3817 return; 3818 } 3819 3820 new_fdt = dt_alloc_memory(size, roundup_pow_of_two(FDT_V17_SIZE)); 3821 if (!new_fdt) { 3822 pr_err("alloc for dtb 'overlay_base' failed"); 3823 return; 3824 } 3825 3826 memcpy(new_fdt, info->dtbo_begin, size); 3827 3828 __unflatten_device_tree(new_fdt, NULL, &overlay_base_root, 3829 dt_alloc_memory, true); 3830 } 3831 3832 /* 3833 * The purpose of of_unittest_overlay_data_add is to add an 3834 * overlay in the normal fashion. This is a test of the whole 3835 * picture, instead of testing individual elements. 3836 * 3837 * A secondary purpose is to be able to verify that the contents of 3838 * /proc/device-tree/ contains the updated structure and values from 3839 * the overlay. That must be verified separately in user space. 3840 * 3841 * Return 0 on unexpected error. 3842 */ 3843 static int __init overlay_data_apply(const char *overlay_name, int *ovcs_id) 3844 { 3845 struct overlay_info *info; 3846 int passed = 1; 3847 int found = 0; 3848 int ret, ret2; 3849 u32 size; 3850 3851 for (info = overlays; info && info->name; info++) { 3852 if (!strcmp(overlay_name, info->name)) { 3853 found = 1; 3854 break; 3855 } 3856 } 3857 if (!found) { 3858 pr_err("no overlay data for %s\n", overlay_name); 3859 return 0; 3860 } 3861 3862 size = info->dtbo_end - info->dtbo_begin; 3863 if (!size) 3864 pr_err("no overlay data for %s\n", overlay_name); 3865 3866 ret = of_overlay_fdt_apply(info->dtbo_begin, size, &info->ovcs_id, 3867 NULL); 3868 if (ovcs_id) 3869 *ovcs_id = info->ovcs_id; 3870 if (ret < 0) 3871 goto out; 3872 3873 pr_debug("%s applied\n", overlay_name); 3874 3875 out: 3876 if (ret != info->expected_result) { 3877 pr_err("of_overlay_fdt_apply() expected %d, ret=%d, %s\n", 3878 info->expected_result, ret, overlay_name); 3879 passed = 0; 3880 } 3881 3882 if (ret < 0) { 3883 /* changeset may be partially applied */ 3884 ret2 = of_overlay_remove(&info->ovcs_id); 3885 if (ret2 != info->expected_result_remove) { 3886 pr_err("of_overlay_remove() expected %d, ret=%d, %s\n", 3887 info->expected_result_remove, ret2, 3888 overlay_name); 3889 passed = 0; 3890 } 3891 } 3892 3893 return passed; 3894 } 3895 3896 /* 3897 * The purpose of of_unittest_overlay_high_level is to add an overlay 3898 * in the normal fashion. This is a test of the whole picture, 3899 * instead of individual elements. 3900 * 3901 * The first part of the function is _not_ normal overlay usage; it is 3902 * finishing splicing the base overlay device tree into the live tree. 3903 */ 3904 static __init void of_unittest_overlay_high_level(void) 3905 { 3906 struct device_node *last_sibling; 3907 struct device_node *np; 3908 struct device_node *of_symbols; 3909 struct device_node *overlay_base_symbols; 3910 struct device_node **pprev; 3911 struct property *prop; 3912 int ret; 3913 3914 if (!overlay_base_root) { 3915 unittest(0, "overlay_base_root not initialized\n"); 3916 return; 3917 } 3918 3919 /* 3920 * Could not fixup phandles in unittest_unflatten_overlay_base() 3921 * because kmalloc() was not yet available. 3922 */ 3923 of_overlay_mutex_lock(); 3924 of_resolve_phandles(overlay_base_root); 3925 of_overlay_mutex_unlock(); 3926 3927 3928 /* 3929 * do not allow overlay_base to duplicate any node already in 3930 * tree, this greatly simplifies the code 3931 */ 3932 3933 /* 3934 * remove overlay_base_root node "__local_fixups", after 3935 * being used by of_resolve_phandles() 3936 */ 3937 pprev = &overlay_base_root->child; 3938 for (np = overlay_base_root->child; np; np = np->sibling) { 3939 if (of_node_name_eq(np, "__local_fixups__")) { 3940 *pprev = np->sibling; 3941 break; 3942 } 3943 pprev = &np->sibling; 3944 } 3945 3946 /* remove overlay_base_root node "__symbols__" if in live tree */ 3947 of_symbols = of_get_child_by_name(of_root, "__symbols__"); 3948 if (of_symbols) { 3949 /* will have to graft properties from node into live tree */ 3950 pprev = &overlay_base_root->child; 3951 for (np = overlay_base_root->child; np; np = np->sibling) { 3952 if (of_node_name_eq(np, "__symbols__")) { 3953 overlay_base_symbols = np; 3954 *pprev = np->sibling; 3955 break; 3956 } 3957 pprev = &np->sibling; 3958 } 3959 } 3960 3961 for_each_child_of_node(overlay_base_root, np) { 3962 struct device_node *base_child; 3963 for_each_child_of_node(of_root, base_child) { 3964 if (!strcmp(np->full_name, base_child->full_name)) { 3965 unittest(0, "illegal node name in overlay_base %pOFn", 3966 np); 3967 of_node_put(np); 3968 of_node_put(base_child); 3969 return; 3970 } 3971 } 3972 } 3973 3974 /* 3975 * overlay 'overlay_base' is not allowed to have root 3976 * properties, so only need to splice nodes into main device tree. 3977 * 3978 * root node of *overlay_base_root will not be freed, it is lost 3979 * memory. 3980 */ 3981 3982 for (np = overlay_base_root->child; np; np = np->sibling) 3983 np->parent = of_root; 3984 3985 mutex_lock(&of_mutex); 3986 3987 for (last_sibling = np = of_root->child; np; np = np->sibling) 3988 last_sibling = np; 3989 3990 if (last_sibling) 3991 last_sibling->sibling = overlay_base_root->child; 3992 else 3993 of_root->child = overlay_base_root->child; 3994 3995 for_each_of_allnodes_from(overlay_base_root, np) 3996 __of_attach_node_sysfs(np); 3997 3998 if (of_symbols) { 3999 struct property *new_prop; 4000 for_each_property_of_node(overlay_base_symbols, prop) { 4001 4002 new_prop = __of_prop_dup(prop, GFP_KERNEL); 4003 if (!new_prop) { 4004 unittest(0, "__of_prop_dup() of '%s' from overlay_base node __symbols__", 4005 prop->name); 4006 goto err_unlock; 4007 } 4008 if (__of_add_property(of_symbols, new_prop)) { 4009 __of_prop_free(new_prop); 4010 /* "name" auto-generated by unflatten */ 4011 if (!strcmp(prop->name, "name")) 4012 continue; 4013 unittest(0, "duplicate property '%s' in overlay_base node __symbols__", 4014 prop->name); 4015 goto err_unlock; 4016 } 4017 if (__of_add_property_sysfs(of_symbols, new_prop)) { 4018 unittest(0, "unable to add property '%s' in overlay_base node __symbols__ to sysfs", 4019 prop->name); 4020 goto err_unlock; 4021 } 4022 } 4023 } 4024 4025 mutex_unlock(&of_mutex); 4026 4027 4028 /* now do the normal overlay usage test */ 4029 4030 /* --- overlay --- */ 4031 4032 EXPECT_BEGIN(KERN_ERR, 4033 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/substation@100/status"); 4034 EXPECT_BEGIN(KERN_ERR, 4035 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/status"); 4036 EXPECT_BEGIN(KERN_ERR, 4037 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/ride@100/track@30/incline-up"); 4038 EXPECT_BEGIN(KERN_ERR, 4039 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/ride@100/track@40/incline-up"); 4040 EXPECT_BEGIN(KERN_ERR, 4041 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/status"); 4042 EXPECT_BEGIN(KERN_ERR, 4043 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/color"); 4044 EXPECT_BEGIN(KERN_ERR, 4045 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/rate"); 4046 EXPECT_BEGIN(KERN_ERR, 4047 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/hvac_2"); 4048 EXPECT_BEGIN(KERN_ERR, 4049 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200"); 4050 EXPECT_BEGIN(KERN_ERR, 4051 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200_left"); 4052 EXPECT_BEGIN(KERN_ERR, 4053 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200_right"); 4054 4055 ret = overlay_data_apply("overlay", NULL); 4056 4057 EXPECT_END(KERN_ERR, 4058 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200_right"); 4059 EXPECT_END(KERN_ERR, 4060 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200_left"); 4061 EXPECT_END(KERN_ERR, 4062 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/ride_200"); 4063 EXPECT_END(KERN_ERR, 4064 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /__symbols__/hvac_2"); 4065 EXPECT_END(KERN_ERR, 4066 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/rate"); 4067 EXPECT_END(KERN_ERR, 4068 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/color"); 4069 EXPECT_END(KERN_ERR, 4070 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/lights@40000/status"); 4071 EXPECT_END(KERN_ERR, 4072 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/ride@100/track@40/incline-up"); 4073 EXPECT_END(KERN_ERR, 4074 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/ride@100/track@30/incline-up"); 4075 EXPECT_END(KERN_ERR, 4076 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/fairway-1/status"); 4077 EXPECT_END(KERN_ERR, 4078 "OF: overlay: WARNING: memory leak will occur if overlay removed, property: /testcase-data-2/substation@100/status"); 4079 4080 unittest(ret, "Adding overlay 'overlay' failed\n"); 4081 4082 /* --- overlay_bad_add_dup_node --- */ 4083 4084 EXPECT_BEGIN(KERN_ERR, 4085 "OF: overlay: ERROR: multiple fragments add and/or delete node /testcase-data-2/substation@100/motor-1/controller"); 4086 EXPECT_BEGIN(KERN_ERR, 4087 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/controller/name"); 4088 EXPECT_BEGIN(KERN_ERR, 4089 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/motor-1/controller:name"); 4090 EXPECT_BEGIN(KERN_ERR, 4091 "OF: Error reverting changeset (-19)"); 4092 4093 unittest(overlay_data_apply("overlay_bad_add_dup_node", NULL), 4094 "Adding overlay 'overlay_bad_add_dup_node' failed\n"); 4095 4096 EXPECT_END(KERN_ERR, 4097 "OF: Error reverting changeset (-19)"); 4098 EXPECT_END(KERN_ERR, 4099 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/motor-1/controller:name"); 4100 EXPECT_END(KERN_ERR, 4101 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/controller/name"); 4102 EXPECT_END(KERN_ERR, 4103 "OF: overlay: ERROR: multiple fragments add and/or delete node /testcase-data-2/substation@100/motor-1/controller"); 4104 4105 /* --- overlay_bad_add_dup_prop --- */ 4106 4107 EXPECT_BEGIN(KERN_ERR, 4108 "OF: overlay: ERROR: multiple fragments add and/or delete node /testcase-data-2/substation@100/motor-1/electric"); 4109 EXPECT_BEGIN(KERN_ERR, 4110 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/electric/rpm_avail"); 4111 EXPECT_BEGIN(KERN_ERR, 4112 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/electric/name"); 4113 EXPECT_BEGIN(KERN_ERR, 4114 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/motor-1/electric:name"); 4115 EXPECT_BEGIN(KERN_ERR, 4116 "OF: Error reverting changeset (-19)"); 4117 4118 unittest(overlay_data_apply("overlay_bad_add_dup_prop", NULL), 4119 "Adding overlay 'overlay_bad_add_dup_prop' failed\n"); 4120 4121 EXPECT_END(KERN_ERR, 4122 "OF: Error reverting changeset (-19)"); 4123 EXPECT_END(KERN_ERR, 4124 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/motor-1/electric:name"); 4125 EXPECT_END(KERN_ERR, 4126 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/electric/name"); 4127 EXPECT_END(KERN_ERR, 4128 "OF: overlay: ERROR: multiple fragments add, update, and/or delete property /testcase-data-2/substation@100/motor-1/electric/rpm_avail"); 4129 EXPECT_END(KERN_ERR, 4130 "OF: overlay: ERROR: multiple fragments add and/or delete node /testcase-data-2/substation@100/motor-1/electric"); 4131 4132 /* --- overlay_bad_phandle --- */ 4133 4134 unittest(overlay_data_apply("overlay_bad_phandle", NULL), 4135 "Adding overlay 'overlay_bad_phandle' failed\n"); 4136 4137 /* --- overlay_bad_symbol --- */ 4138 4139 EXPECT_BEGIN(KERN_ERR, 4140 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/hvac-medium-2:name"); 4141 EXPECT_BEGIN(KERN_ERR, 4142 "OF: Error reverting changeset (-19)"); 4143 4144 unittest(overlay_data_apply("overlay_bad_symbol", NULL), 4145 "Adding overlay 'overlay_bad_symbol' failed\n"); 4146 4147 EXPECT_END(KERN_ERR, 4148 "OF: Error reverting changeset (-19)"); 4149 EXPECT_END(KERN_ERR, 4150 "OF: changeset: apply failed: REMOVE_PROPERTY /testcase-data-2/substation@100/hvac-medium-2:name"); 4151 4152 /* --- overlay_bad_unresolved --- */ 4153 4154 EXPECT_BEGIN(KERN_ERR, 4155 "OF: resolver: node label 'this_label_does_not_exist' not found in live devicetree symbols table"); 4156 EXPECT_BEGIN(KERN_ERR, 4157 "OF: resolver: overlay phandle fixup failed: -22"); 4158 4159 unittest(overlay_data_apply("overlay_bad_unresolved", NULL), 4160 "Adding overlay 'overlay_bad_unresolved' failed\n"); 4161 4162 EXPECT_END(KERN_ERR, 4163 "OF: resolver: overlay phandle fixup failed: -22"); 4164 EXPECT_END(KERN_ERR, 4165 "OF: resolver: node label 'this_label_does_not_exist' not found in live devicetree symbols table"); 4166 4167 return; 4168 4169 err_unlock: 4170 mutex_unlock(&of_mutex); 4171 } 4172 4173 static int of_unittest_pci_dev_num; 4174 static int of_unittest_pci_child_num; 4175 4176 /* 4177 * PCI device tree node test driver 4178 */ 4179 static const struct pci_device_id testdrv_pci_ids[] = { 4180 { PCI_DEVICE(PCI_VENDOR_ID_REDHAT, 0x5), }, /* PCI_VENDOR_ID_REDHAT */ 4181 { 0, } 4182 }; 4183 4184 static int testdrv_probe(struct pci_dev *pdev, const struct pci_device_id *id) 4185 { 4186 struct overlay_info *info; 4187 struct device_node *dn; 4188 int ret, ovcs_id; 4189 u32 size; 4190 4191 dn = pdev->dev.of_node; 4192 if (!dn) { 4193 dev_err(&pdev->dev, "does not find bus endpoint"); 4194 return -EINVAL; 4195 } 4196 4197 for (info = overlays; info && info->name; info++) { 4198 if (!strcmp(info->name, "overlay_pci_node")) 4199 break; 4200 } 4201 if (!info || !info->name) { 4202 dev_err(&pdev->dev, "no overlay data for overlay_pci_node"); 4203 return -ENODEV; 4204 } 4205 4206 size = info->dtbo_end - info->dtbo_begin; 4207 ret = of_overlay_fdt_apply(info->dtbo_begin, size, &ovcs_id, dn); 4208 of_node_put(dn); 4209 if (ret) 4210 return ret; 4211 4212 of_platform_default_populate(dn, NULL, &pdev->dev); 4213 pci_set_drvdata(pdev, (void *)(uintptr_t)ovcs_id); 4214 4215 return 0; 4216 } 4217 4218 static void testdrv_remove(struct pci_dev *pdev) 4219 { 4220 int ovcs_id = (int)(uintptr_t)pci_get_drvdata(pdev); 4221 4222 of_platform_depopulate(&pdev->dev); 4223 of_overlay_remove(&ovcs_id); 4224 } 4225 4226 static struct pci_driver testdrv_driver = { 4227 .name = "pci_dt_testdrv", 4228 .id_table = testdrv_pci_ids, 4229 .probe = testdrv_probe, 4230 .remove = testdrv_remove, 4231 }; 4232 4233 static int unittest_pci_probe(struct platform_device *pdev) 4234 { 4235 struct resource *res; 4236 struct device *dev; 4237 u64 exp_addr; 4238 4239 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 4240 if (!res) 4241 return -ENODEV; 4242 4243 dev = &pdev->dev; 4244 while (dev && !dev_is_pci(dev)) 4245 dev = dev->parent; 4246 if (!dev) { 4247 pr_err("unable to find parent device\n"); 4248 return -ENODEV; 4249 } 4250 4251 exp_addr = pci_resource_start(to_pci_dev(dev), 0) + 0x100; 4252 unittest(res->start == exp_addr, "Incorrect translated address %llx, expected %llx\n", 4253 (u64)res->start, exp_addr); 4254 4255 of_unittest_pci_child_num++; 4256 4257 return 0; 4258 } 4259 4260 static const struct of_device_id unittest_pci_of_match[] = { 4261 { .compatible = "unittest-pci" }, 4262 { } 4263 }; 4264 4265 static struct platform_driver unittest_pci_driver = { 4266 .probe = unittest_pci_probe, 4267 .driver = { 4268 .name = "unittest-pci", 4269 .of_match_table = unittest_pci_of_match, 4270 }, 4271 }; 4272 4273 static int of_unittest_pci_node_verify(struct pci_dev *pdev, bool add) 4274 { 4275 struct device_node *pnp, *np = NULL; 4276 struct device *child_dev; 4277 char *path = NULL; 4278 const __be32 *reg; 4279 int rc = 0; 4280 4281 pnp = pdev->dev.of_node; 4282 unittest(pnp, "Failed creating PCI dt node\n"); 4283 if (!pnp) 4284 return -ENODEV; 4285 4286 if (add) { 4287 path = kasprintf(GFP_KERNEL, "%pOF/pci-ep-bus@0/unittest-pci@100", pnp); 4288 np = of_find_node_by_path(path); 4289 unittest(np, "Failed to get unittest-pci node under PCI node\n"); 4290 if (!np) { 4291 rc = -ENODEV; 4292 goto failed; 4293 } 4294 4295 reg = of_get_property(np, "reg", NULL); 4296 unittest(reg, "Failed to get reg property\n"); 4297 if (!reg) 4298 rc = -ENODEV; 4299 } else { 4300 path = kasprintf(GFP_KERNEL, "%pOF/pci-ep-bus@0", pnp); 4301 np = of_find_node_by_path(path); 4302 unittest(!np, "Child device tree node is not removed\n"); 4303 child_dev = device_find_any_child(&pdev->dev); 4304 unittest(!child_dev, "Child device is not removed\n"); 4305 put_device(child_dev); 4306 } 4307 4308 failed: 4309 kfree(path); 4310 if (np) 4311 of_node_put(np); 4312 4313 return rc; 4314 } 4315 4316 static void __init of_unittest_pci_node(void) 4317 { 4318 struct pci_dev *pdev = NULL; 4319 int rc; 4320 4321 if (!IS_ENABLED(CONFIG_PCI_DYNAMIC_OF_NODES)) 4322 return; 4323 4324 rc = pci_register_driver(&testdrv_driver); 4325 unittest(!rc, "Failed to register pci test driver; rc = %d\n", rc); 4326 if (rc) 4327 return; 4328 4329 rc = platform_driver_register(&unittest_pci_driver); 4330 if (unittest(!rc, "Failed to register unittest pci driver\n")) { 4331 pci_unregister_driver(&testdrv_driver); 4332 return; 4333 } 4334 4335 while ((pdev = pci_get_device(PCI_VENDOR_ID_REDHAT, 0x5, pdev)) != NULL) { 4336 of_unittest_pci_node_verify(pdev, true); 4337 of_unittest_pci_dev_num++; 4338 } 4339 if (pdev) 4340 pci_dev_put(pdev); 4341 4342 unittest(of_unittest_pci_dev_num, 4343 "No test PCI device been found. Please run QEMU with '-device pci-testdev'\n"); 4344 unittest(of_unittest_pci_dev_num == of_unittest_pci_child_num, 4345 "Child device number %d is not expected %d", of_unittest_pci_child_num, 4346 of_unittest_pci_dev_num); 4347 4348 platform_driver_unregister(&unittest_pci_driver); 4349 pci_unregister_driver(&testdrv_driver); 4350 4351 while ((pdev = pci_get_device(PCI_VENDOR_ID_REDHAT, 0x5, pdev)) != NULL) 4352 of_unittest_pci_node_verify(pdev, false); 4353 if (pdev) 4354 pci_dev_put(pdev); 4355 } 4356 #else 4357 4358 static inline __init void of_unittest_overlay_high_level(void) {} 4359 static inline __init void of_unittest_pci_node(void) { } 4360 4361 #endif 4362 4363 static int __init of_unittest(void) 4364 { 4365 struct device_node *np; 4366 int res; 4367 4368 pr_info("start of unittest - you will see error messages\n"); 4369 4370 /* Taint the kernel so we know we've run tests. */ 4371 add_taint(TAINT_TEST, LOCKDEP_STILL_OK); 4372 4373 /* adding data for unittest */ 4374 res = unittest_data_add(); 4375 if (res) 4376 return res; 4377 if (!of_aliases) 4378 of_aliases = of_find_node_by_path("/aliases"); 4379 4380 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); 4381 if (!np) { 4382 pr_info("No testcase data in device tree; not running tests\n"); 4383 return 0; 4384 } 4385 of_node_put(np); 4386 4387 of_unittest_check_tree_linkage(); 4388 of_unittest_check_phandles(); 4389 of_unittest_find_node_by_name(); 4390 of_unittest_dynamic(); 4391 of_unittest_parse_phandle_with_args(); 4392 of_unittest_parse_phandle_with_args_map(); 4393 of_unittest_printf(); 4394 of_unittest_property_string(); 4395 of_unittest_property_copy(); 4396 of_unittest_changeset(); 4397 of_unittest_changeset_prop(); 4398 of_unittest_parse_interrupts(); 4399 of_unittest_parse_interrupts_extended(); 4400 of_unittest_irq_refcount(); 4401 of_unittest_dma_get_max_cpu_address(); 4402 of_unittest_parse_dma_ranges(); 4403 of_unittest_pci_dma_ranges(); 4404 of_unittest_pci_empty_dma_ranges(); 4405 of_unittest_bus_ranges(); 4406 of_unittest_bus_3cell_ranges(); 4407 of_unittest_reg(); 4408 of_unittest_translate_addr(); 4409 of_unittest_match_node(); 4410 of_unittest_platform_populate(); 4411 of_unittest_overlay(); 4412 of_unittest_lifecycle(); 4413 of_unittest_pci_node(); 4414 4415 /* Double check linkage after removing testcase data */ 4416 of_unittest_check_tree_linkage(); 4417 4418 of_unittest_overlay_high_level(); 4419 4420 pr_info("end of unittest - %i passed, %i failed\n", 4421 unittest_results.passed, unittest_results.failed); 4422 4423 return 0; 4424 } 4425 late_initcall(of_unittest); 4426