1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Google, Inc
13 DECLARE_GLOBAL_DATA_PTR;
15 /* Test that block devices can be created */
16 static int dm_test_blk_base(struct unit_test_state *uts)
18 struct udevice *blk1, *blk3, *dev;
20 /* Make sure there are no block devices */
21 ut_asserteq(-ENODEV, uclass_get_device_by_seq(UCLASS_BLK, 0, &dev));
23 /* Create two, one the parent of the other */
24 ut_assertok(blk_create_device(gd->dm_root, "sandbox_host_blk", "test",
25 IF_TYPE_HOST, 1, 512, 2, &blk1));
26 ut_assertok(blk_create_device(blk1, "sandbox_host_blk", "test",
27 IF_TYPE_HOST, 3, 512, 2, &blk3));
29 /* Check we can find them */
30 ut_asserteq(-ENODEV, blk_get_device(IF_TYPE_HOST, 0, &dev));
31 ut_assertok(blk_get_device(IF_TYPE_HOST, 1, &dev));
32 ut_asserteq_ptr(blk1, dev);
33 ut_assertok(blk_get_device(IF_TYPE_HOST, 3, &dev));
34 ut_asserteq_ptr(blk3, dev);
36 /* Check we can iterate */
37 ut_assertok(blk_first_device(IF_TYPE_HOST, &dev));
38 ut_asserteq_ptr(blk1, dev);
39 ut_assertok(blk_next_device(&dev));
40 ut_asserteq_ptr(blk3, dev);
44 DM_TEST(dm_test_blk_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
46 static int count_blk_devices(void)
53 ret = uclass_get(UCLASS_BLK, &uc);
57 uclass_foreach_dev(blk, uc)
63 /* Test that block devices work correctly with USB */
64 static int dm_test_blk_usb(struct unit_test_state *uts)
66 struct udevice *usb_dev, *dev;
67 struct blk_desc *dev_desc;
69 /* Get a flash device */
70 state_set_skip_delays(true);
71 ut_assertok(usb_init());
72 ut_assertok(uclass_get_device(UCLASS_MASS_STORAGE, 0, &usb_dev));
73 ut_assertok(blk_get_device_by_str("usb", "0", &dev_desc));
75 /* The parent should be a block device */
76 ut_assertok(blk_get_device(IF_TYPE_USB, 0, &dev));
77 ut_asserteq_ptr(usb_dev, dev_get_parent(dev));
79 /* Check we have one block device for each mass storage device */
80 ut_asserteq(6, count_blk_devices());
82 /* Now go around again, making sure the old devices were unbound */
83 ut_assertok(usb_stop());
84 ut_assertok(usb_init());
85 ut_asserteq(6, count_blk_devices());
86 ut_assertok(usb_stop());
90 DM_TEST(dm_test_blk_usb, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
92 /* Test that we can find block devices without probing them */
93 static int dm_test_blk_find(struct unit_test_state *uts)
95 struct udevice *blk, *dev;
97 ut_assertok(blk_create_device(gd->dm_root, "sandbox_host_blk", "test",
98 IF_TYPE_HOST, 1, 512, 2, &blk));
99 ut_asserteq(-ENODEV, blk_find_device(IF_TYPE_HOST, 0, &dev));
100 ut_assertok(blk_find_device(IF_TYPE_HOST, 1, &dev));
101 ut_asserteq_ptr(blk, dev);
102 ut_asserteq(false, device_active(dev));
104 /* Now activate it */
105 ut_assertok(blk_get_device(IF_TYPE_HOST, 1, &dev));
106 ut_asserteq_ptr(blk, dev);
107 ut_asserteq(true, device_active(dev));
111 DM_TEST(dm_test_blk_find, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
113 /* Test that block device numbering works as expected */
114 static int dm_test_blk_devnum(struct unit_test_state *uts)
116 struct udevice *dev, *mmc_dev, *parent;
120 * Probe the devices, with the first one being probed last. This is the
121 * one with no alias / sequence numnber.
123 ut_assertok(uclass_get_device(UCLASS_MMC, 1, &dev));
124 ut_assertok(uclass_get_device(UCLASS_MMC, 2, &dev));
125 ut_assertok(uclass_get_device(UCLASS_MMC, 0, &dev));
126 for (i = 0; i < 3; i++) {
127 struct blk_desc *desc;
129 /* Check that the bblock device is attached */
130 ut_assertok(uclass_get_device_by_seq(UCLASS_MMC, i, &mmc_dev));
131 ut_assertok(blk_find_device(IF_TYPE_MMC, i, &dev));
132 parent = dev_get_parent(dev);
133 ut_asserteq_ptr(parent, mmc_dev);
134 ut_asserteq(trailing_strtol(mmc_dev->name), i);
137 * Check that the block device devnum matches its parent's
140 desc = dev_get_uclass_platdata(dev);
141 ut_asserteq(desc->devnum, i);
146 DM_TEST(dm_test_blk_devnum, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
148 /* Test that we can get a block from its parent */
149 static int dm_test_blk_get_from_parent(struct unit_test_state *uts)
151 struct udevice *dev, *blk;
153 ut_assertok(uclass_get_device(UCLASS_MMC, 0, &dev));
154 ut_assertok(blk_get_from_parent(dev, &blk));
156 ut_assertok(uclass_get_device(UCLASS_I2C, 0, &dev));
157 ut_asserteq(-ENOTBLK, blk_get_from_parent(dev, &blk));
159 ut_assertok(uclass_get_device(UCLASS_GPIO, 0, &dev));
160 ut_asserteq(-ENODEV, blk_get_from_parent(dev, &blk));
164 DM_TEST(dm_test_blk_get_from_parent, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);