1 // SPDX-License-Identifier: GPL-2.0+
3 * Tests for the core driver model code
5 * Copyright (c) 2013 Google, Inc
14 #include <dm/device-internal.h>
18 #include <dm/uclass-internal.h>
19 #include <test/test.h>
22 DECLARE_GLOBAL_DATA_PTR;
28 TEST_INTVAL_MANUAL = 101112,
29 TEST_INTVAL_PRE_RELOC = 7,
32 static const struct dm_test_pdata test_pdata[] = {
33 { .ping_add = TEST_INTVAL1, },
34 { .ping_add = TEST_INTVAL2, },
35 { .ping_add = TEST_INTVAL3, },
38 static const struct dm_test_pdata test_pdata_manual = {
39 .ping_add = TEST_INTVAL_MANUAL,
42 static const struct dm_test_pdata test_pdata_pre_reloc = {
43 .ping_add = TEST_INTVAL_PRE_RELOC,
46 U_BOOT_DEVICE(dm_test_info1) = {
48 .platdata = &test_pdata[0],
51 U_BOOT_DEVICE(dm_test_info2) = {
53 .platdata = &test_pdata[1],
56 U_BOOT_DEVICE(dm_test_info3) = {
58 .platdata = &test_pdata[2],
61 static struct driver_info driver_info_manual = {
62 .name = "test_manual_drv",
63 .platdata = &test_pdata_manual,
66 static struct driver_info driver_info_pre_reloc = {
67 .name = "test_pre_reloc_drv",
68 .platdata = &test_pdata_pre_reloc,
71 static struct driver_info driver_info_act_dma = {
72 .name = "test_act_dma_drv",
75 void dm_leak_check_start(struct unit_test_state *uts)
77 uts->start = mallinfo();
78 if (!uts->start.uordblks)
79 puts("Warning: Please add '#define DEBUG' to the top of common/dlmalloc.c\n");
82 int dm_leak_check_end(struct unit_test_state *uts)
87 /* Don't delete the root class, since we started with that */
88 for (id = UCLASS_ROOT + 1; id < UCLASS_COUNT; id++) {
94 ut_assertok(uclass_destroy(uc));
98 diff = end.uordblks - uts->start.uordblks;
100 printf("Leak: lost %#xd bytes\n", diff);
102 printf("Leak: gained %#xd bytes\n", -diff);
103 ut_asserteq(uts->start.uordblks, end.uordblks);
108 /* Test that binding with platdata occurs correctly */
109 static int dm_test_autobind(struct unit_test_state *uts)
111 struct dm_test_state *dms = uts->priv;
115 * We should have a single class (UCLASS_ROOT) and a single root
116 * device with no children.
118 ut_assert(dms->root);
119 ut_asserteq(1, list_count_items(&gd->uclass_root));
120 ut_asserteq(0, list_count_items(&gd->dm_root->child_head));
121 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]);
123 ut_assertok(dm_scan_platdata(false));
125 /* We should have our test class now at least, plus more children */
126 ut_assert(1 < list_count_items(&gd->uclass_root));
127 ut_assert(0 < list_count_items(&gd->dm_root->child_head));
129 /* Our 3 dm_test_infox children should be bound to the test uclass */
130 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_BIND]);
132 /* No devices should be probed */
133 list_for_each_entry(dev, &gd->dm_root->child_head, sibling_node)
134 ut_assert(!(dev->flags & DM_FLAG_ACTIVATED));
136 /* Our test driver should have been bound 3 times */
137 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND] == 3);
141 DM_TEST(dm_test_autobind, 0);
143 /* Test that binding with uclass platdata allocation occurs correctly */
144 static int dm_test_autobind_uclass_pdata_alloc(struct unit_test_state *uts)
146 struct dm_test_perdev_uc_pdata *uc_pdata;
150 ut_assertok(uclass_get(UCLASS_TEST, &uc));
154 * Test if test uclass driver requires allocation for the uclass
155 * platform data and then check the dev->uclass_platdata pointer.
157 ut_assert(uc->uc_drv->per_device_platdata_auto_alloc_size);
159 for (uclass_find_first_device(UCLASS_TEST, &dev);
161 uclass_find_next_device(&dev)) {
162 ut_assertnonnull(dev);
164 uc_pdata = dev_get_uclass_platdata(dev);
170 DM_TEST(dm_test_autobind_uclass_pdata_alloc, UT_TESTF_SCAN_PDATA);
172 /* Test that binding with uclass platdata setting occurs correctly */
173 static int dm_test_autobind_uclass_pdata_valid(struct unit_test_state *uts)
175 struct dm_test_perdev_uc_pdata *uc_pdata;
179 * In the test_postbind() method of test uclass driver, the uclass
180 * platform data should be set to three test int values - test it.
182 for (uclass_find_first_device(UCLASS_TEST, &dev);
184 uclass_find_next_device(&dev)) {
185 ut_assertnonnull(dev);
187 uc_pdata = dev_get_uclass_platdata(dev);
189 ut_assert(uc_pdata->intval1 == TEST_UC_PDATA_INTVAL1);
190 ut_assert(uc_pdata->intval2 == TEST_UC_PDATA_INTVAL2);
191 ut_assert(uc_pdata->intval3 == TEST_UC_PDATA_INTVAL3);
196 DM_TEST(dm_test_autobind_uclass_pdata_valid, UT_TESTF_SCAN_PDATA);
198 /* Test that autoprobe finds all the expected devices */
199 static int dm_test_autoprobe(struct unit_test_state *uts)
201 struct dm_test_state *dms = uts->priv;
202 int expected_base_add;
207 ut_assertok(uclass_get(UCLASS_TEST, &uc));
210 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
211 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]);
212 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]);
214 /* The root device should not be activated until needed */
215 ut_assert(dms->root->flags & DM_FLAG_ACTIVATED);
218 * We should be able to find the three test devices, and they should
219 * all be activated as they are used (lazy activation, required by
222 for (i = 0; i < 3; i++) {
223 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
225 ut_assertf(!(dev->flags & DM_FLAG_ACTIVATED),
226 "Driver %d/%s already activated", i, dev->name);
228 /* This should activate it */
229 ut_assertok(uclass_get_device(UCLASS_TEST, i, &dev));
231 ut_assert(dev->flags & DM_FLAG_ACTIVATED);
233 /* Activating a device should activate the root device */
235 ut_assert(dms->root->flags & DM_FLAG_ACTIVATED);
239 * Our 3 dm_test_info children should be passed to pre_probe and
242 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_POST_PROBE]);
243 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]);
245 /* Also we can check the per-device data */
246 expected_base_add = 0;
247 for (i = 0; i < 3; i++) {
248 struct dm_test_uclass_perdev_priv *priv;
249 struct dm_test_pdata *pdata;
251 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
254 priv = dev_get_uclass_priv(dev);
256 ut_asserteq(expected_base_add, priv->base_add);
258 pdata = dev->platdata;
259 expected_base_add += pdata->ping_add;
264 DM_TEST(dm_test_autoprobe, UT_TESTF_SCAN_PDATA);
266 /* Check that we see the correct platdata in each device */
267 static int dm_test_platdata(struct unit_test_state *uts)
269 const struct dm_test_pdata *pdata;
273 for (i = 0; i < 3; i++) {
274 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
276 pdata = dev->platdata;
277 ut_assert(pdata->ping_add == test_pdata[i].ping_add);
282 DM_TEST(dm_test_platdata, UT_TESTF_SCAN_PDATA);
284 /* Test that we can bind, probe, remove, unbind a driver */
285 static int dm_test_lifecycle(struct unit_test_state *uts)
287 struct dm_test_state *dms = uts->priv;
288 int op_count[DM_TEST_OP_COUNT];
289 struct udevice *dev, *test_dev;
293 memcpy(op_count, dm_testdrv_op_count, sizeof(op_count));
295 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
298 ut_assert(dm_testdrv_op_count[DM_TEST_OP_BIND]
299 == op_count[DM_TEST_OP_BIND] + 1);
300 ut_assert(!dev->priv);
302 /* Probe the device - it should fail allocating private data */
303 dms->force_fail_alloc = 1;
304 ret = device_probe(dev);
305 ut_assert(ret == -ENOMEM);
306 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE]
307 == op_count[DM_TEST_OP_PROBE] + 1);
308 ut_assert(!dev->priv);
310 /* Try again without the alloc failure */
311 dms->force_fail_alloc = 0;
312 ut_assertok(device_probe(dev));
313 ut_assert(dm_testdrv_op_count[DM_TEST_OP_PROBE]
314 == op_count[DM_TEST_OP_PROBE] + 2);
315 ut_assert(dev->priv);
317 /* This should be device 3 in the uclass */
318 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
319 ut_assert(dev == test_dev);
322 ut_assertok(test_ping(dev, 100, &pingret));
323 ut_assert(pingret == 102);
325 /* Now remove device 3 */
326 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]);
327 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
328 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_PRE_REMOVE]);
330 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
331 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]);
332 ut_assertok(device_unbind(dev));
333 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
334 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_PRE_UNBIND]);
338 DM_TEST(dm_test_lifecycle, UT_TESTF_SCAN_PDATA | UT_TESTF_PROBE_TEST);
340 /* Test that we can bind/unbind and the lists update correctly */
341 static int dm_test_ordering(struct unit_test_state *uts)
343 struct dm_test_state *dms = uts->priv;
344 struct udevice *dev, *dev_penultimate, *dev_last, *test_dev;
347 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
351 /* Bind two new devices (numbers 4 and 5) */
352 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
354 ut_assert(dev_penultimate);
355 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
359 /* Now remove device 3 */
360 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
361 ut_assertok(device_unbind(dev));
363 /* The device numbering should have shifted down one */
364 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
365 ut_assert(dev_penultimate == test_dev);
366 ut_assertok(uclass_find_device(UCLASS_TEST, 4, &test_dev));
367 ut_assert(dev_last == test_dev);
369 /* Add back the original device 3, now in position 5 */
370 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
375 ut_assertok(test_ping(dev, 100, &pingret));
376 ut_assert(pingret == 102);
379 ut_assertok(device_remove(dev_penultimate, DM_REMOVE_NORMAL));
380 ut_assertok(device_unbind(dev_penultimate));
381 ut_assertok(device_remove(dev_last, DM_REMOVE_NORMAL));
382 ut_assertok(device_unbind(dev_last));
384 /* Our device should now be in position 3 */
385 ut_assertok(uclass_find_device(UCLASS_TEST, 3, &test_dev));
386 ut_assert(dev == test_dev);
388 /* Now remove device 3 */
389 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
390 ut_assertok(device_unbind(dev));
394 DM_TEST(dm_test_ordering, UT_TESTF_SCAN_PDATA);
396 /* Check that we can perform operations on a device (do a ping) */
397 int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
398 uint32_t base, struct dm_test_priv *priv)
403 /* Getting the child device should allocate platdata / priv */
404 ut_assertok(testfdt_ping(dev, 10, &pingret));
405 ut_assert(dev->priv);
406 ut_assert(dev->platdata);
408 expected = 10 + base;
409 ut_asserteq(expected, pingret);
411 /* Do another ping */
412 ut_assertok(testfdt_ping(dev, 20, &pingret));
413 expected = 20 + base;
414 ut_asserteq(expected, pingret);
416 /* Now check the ping_total */
418 ut_asserteq(DM_TEST_START_TOTAL + 10 + 20 + base * 2,
424 /* Check that we can perform operations on devices */
425 static int dm_test_operations(struct unit_test_state *uts)
431 * Now check that the ping adds are what we expect. This is using the
432 * ping-add property in each node.
434 for (i = 0; i < ARRAY_SIZE(test_pdata); i++) {
437 ut_assertok(uclass_get_device(UCLASS_TEST, i, &dev));
440 * Get the 'reg' property, which tells us what the ping add
441 * should be. We don't use the platdata because we want
442 * to test the code that sets that up (testfdt_drv_probe()).
444 base = test_pdata[i].ping_add;
445 debug("dev=%d, base=%d\n", i, base);
447 ut_assert(!dm_check_operations(uts, dev, base, dev->priv));
452 DM_TEST(dm_test_operations, UT_TESTF_SCAN_PDATA);
454 /* Remove all drivers and check that things work */
455 static int dm_test_remove(struct unit_test_state *uts)
460 for (i = 0; i < 3; i++) {
461 ut_assertok(uclass_find_device(UCLASS_TEST, i, &dev));
463 ut_assertf(dev->flags & DM_FLAG_ACTIVATED,
464 "Driver %d/%s not activated", i, dev->name);
465 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
466 ut_assertf(!(dev->flags & DM_FLAG_ACTIVATED),
467 "Driver %d/%s should have deactivated", i,
469 ut_assert(!dev->priv);
474 DM_TEST(dm_test_remove, UT_TESTF_SCAN_PDATA | UT_TESTF_PROBE_TEST);
476 /* Remove and recreate everything, check for memory leaks */
477 static int dm_test_leak(struct unit_test_state *uts)
481 for (i = 0; i < 2; i++) {
486 dm_leak_check_start(uts);
488 ut_assertok(dm_scan_platdata(false));
489 ut_assertok(dm_scan_fdt(gd->fdt_blob, false));
491 /* Scanning the uclass is enough to probe all the devices */
492 for (id = UCLASS_ROOT; id < UCLASS_COUNT; id++) {
493 for (ret = uclass_first_device(UCLASS_TEST, &dev);
495 ret = uclass_next_device(&dev))
500 ut_assertok(dm_leak_check_end(uts));
505 DM_TEST(dm_test_leak, 0);
507 /* Test uclass init/destroy methods */
508 static int dm_test_uclass(struct unit_test_state *uts)
512 ut_assertok(uclass_get(UCLASS_TEST, &uc));
513 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
514 ut_asserteq(0, dm_testdrv_op_count[DM_TEST_OP_DESTROY]);
517 ut_assertok(uclass_destroy(uc));
518 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_INIT]);
519 ut_asserteq(1, dm_testdrv_op_count[DM_TEST_OP_DESTROY]);
523 DM_TEST(dm_test_uclass, 0);
526 * create_children() - Create children of a parent node
528 * @dms: Test system state
529 * @parent: Parent device
530 * @count: Number of children to create
531 * @key: Key value to put in first child. Subsequence children
532 * receive an incrementing value
533 * @child: If not NULL, then the child device pointers are written into
535 * @return 0 if OK, -ve on error
537 static int create_children(struct unit_test_state *uts, struct udevice *parent,
538 int count, int key, struct udevice *child[])
543 for (i = 0; i < count; i++) {
544 struct dm_test_pdata *pdata;
546 ut_assertok(device_bind_by_name(parent, false,
547 &driver_info_manual, &dev));
548 pdata = calloc(1, sizeof(*pdata));
549 pdata->ping_add = key + i;
550 dev->platdata = pdata;
558 #define NODE_COUNT 10
560 static int dm_test_children(struct unit_test_state *uts)
562 struct dm_test_state *dms = uts->priv;
563 struct udevice *top[NODE_COUNT];
564 struct udevice *child[NODE_COUNT];
565 struct udevice *grandchild[NODE_COUNT];
571 /* We don't care about the numbering for this test */
572 dms->skip_post_probe = 1;
574 ut_assert(NODE_COUNT > 5);
576 /* First create 10 top-level children */
577 ut_assertok(create_children(uts, dms->root, NODE_COUNT, 0, top));
579 /* Now a few have their own children */
580 ut_assertok(create_children(uts, top[2], NODE_COUNT, 2, NULL));
581 ut_assertok(create_children(uts, top[5], NODE_COUNT, 5, child));
583 /* And grandchildren */
584 for (i = 0; i < NODE_COUNT; i++)
585 ut_assertok(create_children(uts, child[i], NODE_COUNT, 50 * i,
586 i == 2 ? grandchild : NULL));
588 /* Check total number of devices */
589 total = NODE_COUNT * (3 + NODE_COUNT);
590 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_BIND]);
592 /* Try probing one of the grandchildren */
593 ut_assertok(uclass_get_device(UCLASS_TEST,
594 NODE_COUNT * 3 + 2 * NODE_COUNT, &dev));
595 ut_asserteq_ptr(grandchild[0], dev);
598 * This should have probed the child and top node also, for a total
601 ut_asserteq(3, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
603 /* Probe the other grandchildren */
604 for (i = 1; i < NODE_COUNT; i++)
605 ut_assertok(device_probe(grandchild[i]));
607 ut_asserteq(2 + NODE_COUNT, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
609 /* Probe everything */
610 for (ret = uclass_first_device(UCLASS_TEST, &dev);
612 ret = uclass_next_device(&dev))
616 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_PROBE]);
618 /* Remove a top-level child and check that the children are removed */
619 ut_assertok(device_remove(top[2], DM_REMOVE_NORMAL));
620 ut_asserteq(NODE_COUNT + 1, dm_testdrv_op_count[DM_TEST_OP_REMOVE]);
621 dm_testdrv_op_count[DM_TEST_OP_REMOVE] = 0;
623 /* Try one with grandchildren */
624 ut_assertok(uclass_get_device(UCLASS_TEST, 5, &dev));
625 ut_asserteq_ptr(dev, top[5]);
626 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
627 ut_asserteq(1 + NODE_COUNT * (1 + NODE_COUNT),
628 dm_testdrv_op_count[DM_TEST_OP_REMOVE]);
630 /* Try the same with unbind */
631 ut_assertok(device_unbind(top[2]));
632 ut_asserteq(NODE_COUNT + 1, dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
633 dm_testdrv_op_count[DM_TEST_OP_UNBIND] = 0;
635 /* Try one with grandchildren */
636 ut_assertok(uclass_get_device(UCLASS_TEST, 5, &dev));
637 ut_asserteq_ptr(dev, top[6]);
638 ut_assertok(device_unbind(top[5]));
639 ut_asserteq(1 + NODE_COUNT * (1 + NODE_COUNT),
640 dm_testdrv_op_count[DM_TEST_OP_UNBIND]);
644 DM_TEST(dm_test_children, 0);
646 static int dm_test_device_reparent(struct unit_test_state *uts)
648 struct dm_test_state *dms = uts->priv;
649 struct udevice *top[NODE_COUNT];
650 struct udevice *child[NODE_COUNT];
651 struct udevice *grandchild[NODE_COUNT];
657 /* We don't care about the numbering for this test */
658 dms->skip_post_probe = 1;
660 ut_assert(NODE_COUNT > 5);
662 /* First create 10 top-level children */
663 ut_assertok(create_children(uts, dms->root, NODE_COUNT, 0, top));
665 /* Now a few have their own children */
666 ut_assertok(create_children(uts, top[2], NODE_COUNT, 2, NULL));
667 ut_assertok(create_children(uts, top[5], NODE_COUNT, 5, child));
669 /* And grandchildren */
670 for (i = 0; i < NODE_COUNT; i++)
671 ut_assertok(create_children(uts, child[i], NODE_COUNT, 50 * i,
672 i == 2 ? grandchild : NULL));
674 /* Check total number of devices */
675 total = NODE_COUNT * (3 + NODE_COUNT);
676 ut_asserteq(total, dm_testdrv_op_count[DM_TEST_OP_BIND]);
678 /* Probe everything */
679 for (i = 0; i < total; i++)
680 ut_assertok(uclass_get_device(UCLASS_TEST, i, &dev));
682 /* Re-parent top-level children with no grandchildren. */
683 ut_assertok(device_reparent(top[3], top[0]));
684 /* try to get devices */
685 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
687 ret = uclass_find_next_device(&dev)) {
689 ut_assertnonnull(dev);
692 ut_assertok(device_reparent(top[4], top[0]));
693 /* try to get devices */
694 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
696 ret = uclass_find_next_device(&dev)) {
698 ut_assertnonnull(dev);
701 /* Re-parent top-level children with grandchildren. */
702 ut_assertok(device_reparent(top[2], top[0]));
703 /* try to get devices */
704 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
706 ret = uclass_find_next_device(&dev)) {
708 ut_assertnonnull(dev);
711 ut_assertok(device_reparent(top[5], top[2]));
712 /* try to get devices */
713 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
715 ret = uclass_find_next_device(&dev)) {
717 ut_assertnonnull(dev);
720 /* Re-parent grandchildren. */
721 ut_assertok(device_reparent(grandchild[0], top[1]));
722 /* try to get devices */
723 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
725 ret = uclass_find_next_device(&dev)) {
727 ut_assertnonnull(dev);
730 ut_assertok(device_reparent(grandchild[1], top[1]));
731 /* try to get devices */
732 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
734 ret = uclass_find_next_device(&dev)) {
736 ut_assertnonnull(dev);
739 /* Remove re-pareneted devices. */
740 ut_assertok(device_remove(top[3], DM_REMOVE_NORMAL));
741 /* try to get devices */
742 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
744 ret = uclass_find_next_device(&dev)) {
746 ut_assertnonnull(dev);
749 ut_assertok(device_remove(top[4], DM_REMOVE_NORMAL));
750 /* try to get devices */
751 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
753 ret = uclass_find_next_device(&dev)) {
755 ut_assertnonnull(dev);
758 ut_assertok(device_remove(top[5], DM_REMOVE_NORMAL));
759 /* try to get devices */
760 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
762 ret = uclass_find_next_device(&dev)) {
764 ut_assertnonnull(dev);
767 ut_assertok(device_remove(top[2], DM_REMOVE_NORMAL));
768 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
770 ret = uclass_find_next_device(&dev)) {
772 ut_assertnonnull(dev);
775 ut_assertok(device_remove(grandchild[0], DM_REMOVE_NORMAL));
776 /* try to get devices */
777 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
779 ret = uclass_find_next_device(&dev)) {
781 ut_assertnonnull(dev);
784 ut_assertok(device_remove(grandchild[1], DM_REMOVE_NORMAL));
785 /* try to get devices */
786 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
788 ret = uclass_find_next_device(&dev)) {
790 ut_assertnonnull(dev);
793 /* Try the same with unbind */
794 ut_assertok(device_unbind(top[3]));
795 ut_assertok(device_unbind(top[4]));
796 ut_assertok(device_unbind(top[5]));
797 ut_assertok(device_unbind(top[2]));
799 ut_assertok(device_unbind(grandchild[0]));
800 ut_assertok(device_unbind(grandchild[1]));
804 DM_TEST(dm_test_device_reparent, 0);
806 /* Test that pre-relocation devices work as expected */
807 static int dm_test_pre_reloc(struct unit_test_state *uts)
809 struct dm_test_state *dms = uts->priv;
812 /* The normal driver should refuse to bind before relocation */
813 ut_asserteq(-EPERM, device_bind_by_name(dms->root, true,
814 &driver_info_manual, &dev));
816 /* But this one is marked pre-reloc */
817 ut_assertok(device_bind_by_name(dms->root, true,
818 &driver_info_pre_reloc, &dev));
822 DM_TEST(dm_test_pre_reloc, 0);
825 * Test that removal of devices, either via the "normal" device_remove()
826 * API or via the device driver selective flag works as expected
828 static int dm_test_remove_active_dma(struct unit_test_state *uts)
830 struct dm_test_state *dms = uts->priv;
833 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_act_dma,
837 /* Probe the device */
838 ut_assertok(device_probe(dev));
840 /* Test if device is active right now */
841 ut_asserteq(true, device_active(dev));
843 /* Remove the device via selective remove flag */
844 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
846 /* Test if device is inactive right now */
847 ut_asserteq(false, device_active(dev));
849 /* Probe the device again */
850 ut_assertok(device_probe(dev));
852 /* Test if device is active right now */
853 ut_asserteq(true, device_active(dev));
855 /* Remove the device via "normal" remove API */
856 ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
858 /* Test if device is inactive right now */
859 ut_asserteq(false, device_active(dev));
862 * Test if a device without the active DMA flags is not removed upon
863 * the active DMA remove call
865 ut_assertok(device_unbind(dev));
866 ut_assertok(device_bind_by_name(dms->root, false, &driver_info_manual,
870 /* Probe the device */
871 ut_assertok(device_probe(dev));
873 /* Test if device is active right now */
874 ut_asserteq(true, device_active(dev));
876 /* Remove the device via selective remove flag */
877 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
879 /* Test if device is still active right now */
880 ut_asserteq(true, device_active(dev));
884 DM_TEST(dm_test_remove_active_dma, 0);
886 static int dm_test_uclass_before_ready(struct unit_test_state *uts)
890 ut_assertok(uclass_get(UCLASS_TEST, &uc));
893 gd->dm_root_f = NULL;
894 memset(&gd->uclass_root, '\0', sizeof(gd->uclass_root));
896 ut_asserteq_ptr(NULL, uclass_find(UCLASS_TEST));
900 DM_TEST(dm_test_uclass_before_ready, 0);
902 static int dm_test_uclass_devices_find(struct unit_test_state *uts)
907 for (ret = uclass_find_first_device(UCLASS_TEST, &dev);
909 ret = uclass_find_next_device(&dev)) {
911 ut_assertnonnull(dev);
914 ut_assertok(uclass_find_first_device(UCLASS_TEST_DUMMY, &dev));
919 DM_TEST(dm_test_uclass_devices_find, UT_TESTF_SCAN_PDATA);
921 static int dm_test_uclass_devices_find_by_name(struct unit_test_state *uts)
923 struct udevice *finddev;
924 struct udevice *testdev;
928 * For each test device found in fdt like: "a-test", "b-test", etc.,
929 * use its name and try to find it by uclass_find_device_by_name().
930 * Then, on success check if:
931 * - current 'testdev' name is equal to the returned 'finddev' name
932 * - current 'testdev' pointer is equal to the returned 'finddev'
934 * We assume that, each uclass's device name is unique, so if not, then
935 * this will fail on checking condition: testdev == finddev, since the
936 * uclass_find_device_by_name(), returns the first device by given name.
938 for (ret = uclass_find_first_device(UCLASS_TEST_FDT, &testdev);
940 ret = uclass_find_next_device(&testdev)) {
942 ut_assertnonnull(testdev);
944 findret = uclass_find_device_by_name(UCLASS_TEST_FDT,
948 ut_assertok(findret);
950 ut_asserteq_str(testdev->name, finddev->name);
951 ut_asserteq_ptr(testdev, finddev);
956 DM_TEST(dm_test_uclass_devices_find_by_name, UT_TESTF_SCAN_FDT);
958 static int dm_test_uclass_devices_get(struct unit_test_state *uts)
963 for (ret = uclass_first_device(UCLASS_TEST, &dev);
965 ret = uclass_next_device(&dev)) {
968 ut_assert(device_active(dev));
973 DM_TEST(dm_test_uclass_devices_get, UT_TESTF_SCAN_PDATA);
975 static int dm_test_uclass_devices_get_by_name(struct unit_test_state *uts)
977 struct udevice *finddev;
978 struct udevice *testdev;
982 * For each test device found in fdt like: "a-test", "b-test", etc.,
983 * use its name and try to get it by uclass_get_device_by_name().
984 * On success check if:
985 * - returned finddev' is active
986 * - current 'testdev' name is equal to the returned 'finddev' name
987 * - current 'testdev' pointer is equal to the returned 'finddev'
989 * We asserts that the 'testdev' is active on each loop entry, so we
990 * could be sure that the 'finddev' is activated too, but for sure
993 * We assume that, each uclass's device name is unique, so if not, then
994 * this will fail on checking condition: testdev == finddev, since the
995 * uclass_get_device_by_name(), returns the first device by given name.
997 for (ret = uclass_first_device(UCLASS_TEST_FDT, &testdev);
999 ret = uclass_next_device(&testdev)) {
1002 ut_assert(device_active(testdev));
1004 findret = uclass_get_device_by_name(UCLASS_TEST_FDT,
1008 ut_assertok(findret);
1010 ut_assert(device_active(finddev));
1011 ut_asserteq_str(testdev->name, finddev->name);
1012 ut_asserteq_ptr(testdev, finddev);
1017 DM_TEST(dm_test_uclass_devices_get_by_name, UT_TESTF_SCAN_FDT);
1019 static int dm_test_device_get_uclass_id(struct unit_test_state *uts)
1021 struct udevice *dev;
1023 ut_assertok(uclass_get_device(UCLASS_TEST, 0, &dev));
1024 ut_asserteq(UCLASS_TEST, device_get_uclass_id(dev));
1028 DM_TEST(dm_test_device_get_uclass_id, UT_TESTF_SCAN_PDATA);
1030 static int dm_test_uclass_names(struct unit_test_state *uts)
1032 ut_asserteq_str("test", uclass_get_name(UCLASS_TEST));
1033 ut_asserteq(UCLASS_TEST, uclass_get_by_name("test"));
1037 DM_TEST(dm_test_uclass_names, UT_TESTF_SCAN_PDATA);
1039 static int dm_test_inactive_child(struct unit_test_state *uts)
1041 struct dm_test_state *dms = uts->priv;
1042 struct udevice *parent, *dev1, *dev2;
1044 /* Skip the behaviour in test_post_probe() */
1045 dms->skip_post_probe = 1;
1047 ut_assertok(uclass_first_device_err(UCLASS_TEST, &parent));
1050 * Create a child but do not activate it. Calling the function again
1051 * should return the same child.
1053 ut_asserteq(-ENODEV, device_find_first_inactive_child(parent,
1054 UCLASS_TEST, &dev1));
1055 ut_assertok(device_bind_ofnode(parent, DM_GET_DRIVER(test_drv),
1056 "test_child", 0, ofnode_null(), &dev1));
1058 ut_assertok(device_find_first_inactive_child(parent, UCLASS_TEST,
1060 ut_asserteq_ptr(dev1, dev2);
1062 ut_assertok(device_probe(dev1));
1063 ut_asserteq(-ENODEV, device_find_first_inactive_child(parent,
1064 UCLASS_TEST, &dev2));
1068 DM_TEST(dm_test_inactive_child, UT_TESTF_SCAN_PDATA);