2020-10-26 02:38:29 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
2020-10-03 17:31:28 +00:00
|
|
|
#include <dt-structs.h>
|
2020-10-26 02:38:29 +00:00
|
|
|
#include <dm/test.h>
|
|
|
|
#include <test/test.h>
|
|
|
|
#include <test/ut.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2020-10-26 02:38:29 +00:00
|
|
|
|
|
|
|
/* Test that we can find a device using of-platdata */
|
2020-12-03 23:55:23 +00:00
|
|
|
static int dm_test_of_plat_base(struct unit_test_state *uts)
|
2020-10-26 02:38:29 +00:00
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
|
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_SERIAL, &dev));
|
|
|
|
ut_asserteq_str("sandbox_serial", dev->name);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-03 23:55:23 +00:00
|
|
|
DM_TEST(dm_test_of_plat_base, UT_TESTF_SCAN_PDATA);
|
2020-10-03 17:31:28 +00:00
|
|
|
|
|
|
|
/* Test that we can read properties from a device */
|
2020-12-03 23:55:23 +00:00
|
|
|
static int dm_test_of_plat_props(struct unit_test_state *uts)
|
2020-10-03 17:31:28 +00:00
|
|
|
{
|
|
|
|
struct dtd_sandbox_spl_test *plat;
|
|
|
|
struct udevice *dev;
|
|
|
|
int i;
|
|
|
|
|
2020-10-03 17:31:32 +00:00
|
|
|
/* Skip the clock */
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_MISC, &dev));
|
2020-10-03 17:31:32 +00:00
|
|
|
ut_asserteq_str("sandbox_clk_test", dev->name);
|
|
|
|
|
|
|
|
ut_assertok(uclass_next_device_err(&dev));
|
2020-12-03 23:55:20 +00:00
|
|
|
plat = dev_get_plat(dev);
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_assert(plat->boolval);
|
|
|
|
ut_asserteq(1, plat->intval);
|
2021-07-29 01:23:10 +00:00
|
|
|
ut_asserteq(3, ARRAY_SIZE(plat->intarray));
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_asserteq(2, plat->intarray[0]);
|
|
|
|
ut_asserteq(3, plat->intarray[1]);
|
|
|
|
ut_asserteq(4, plat->intarray[2]);
|
|
|
|
ut_asserteq(5, plat->byteval);
|
2021-07-29 01:23:11 +00:00
|
|
|
ut_asserteq(1, ARRAY_SIZE(plat->maybe_empty_int));
|
|
|
|
ut_asserteq(0, plat->maybe_empty_int[0]);
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_asserteq(3, ARRAY_SIZE(plat->bytearray));
|
|
|
|
ut_asserteq(6, plat->bytearray[0]);
|
|
|
|
ut_asserteq(0, plat->bytearray[1]);
|
|
|
|
ut_asserteq(0, plat->bytearray[2]);
|
|
|
|
ut_asserteq(9, ARRAY_SIZE(plat->longbytearray));
|
|
|
|
for (i = 0; i < ARRAY_SIZE(plat->longbytearray); i++)
|
|
|
|
ut_asserteq(9 + i, plat->longbytearray[i]);
|
|
|
|
ut_asserteq_str("message", plat->stringval);
|
|
|
|
ut_asserteq(3, ARRAY_SIZE(plat->stringarray));
|
|
|
|
ut_asserteq_str("multi-word", plat->stringarray[0]);
|
|
|
|
ut_asserteq_str("message", plat->stringarray[1]);
|
|
|
|
ut_asserteq_str("", plat->stringarray[2]);
|
|
|
|
|
|
|
|
ut_assertok(uclass_next_device_err(&dev));
|
2020-12-03 23:55:20 +00:00
|
|
|
plat = dev_get_plat(dev);
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_assert(!plat->boolval);
|
|
|
|
ut_asserteq(3, plat->intval);
|
|
|
|
ut_asserteq(5, plat->intarray[0]);
|
|
|
|
ut_asserteq(0, plat->intarray[1]);
|
|
|
|
ut_asserteq(0, plat->intarray[2]);
|
|
|
|
ut_asserteq(8, plat->byteval);
|
|
|
|
ut_asserteq(3, ARRAY_SIZE(plat->bytearray));
|
|
|
|
ut_asserteq(1, plat->bytearray[0]);
|
|
|
|
ut_asserteq(0x23, plat->bytearray[1]);
|
|
|
|
ut_asserteq(0x34, plat->bytearray[2]);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(plat->longbytearray); i++)
|
|
|
|
ut_asserteq(i < 4 ? 9 + i : 0, plat->longbytearray[i]);
|
|
|
|
ut_asserteq_str("message2", plat->stringval);
|
|
|
|
ut_asserteq_str("another", plat->stringarray[0]);
|
|
|
|
ut_asserteq_str("multi-word", plat->stringarray[1]);
|
|
|
|
ut_asserteq_str("message", plat->stringarray[2]);
|
|
|
|
|
|
|
|
ut_assertok(uclass_next_device_err(&dev));
|
2020-12-03 23:55:20 +00:00
|
|
|
plat = dev_get_plat(dev);
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_assert(!plat->boolval);
|
|
|
|
ut_asserteq_str("one", plat->stringarray[0]);
|
|
|
|
ut_asserteq_str("", plat->stringarray[1]);
|
|
|
|
ut_asserteq_str("", plat->stringarray[2]);
|
2021-07-29 01:23:11 +00:00
|
|
|
ut_asserteq(1, plat->maybe_empty_int[0]);
|
2020-10-03 17:31:28 +00:00
|
|
|
|
|
|
|
ut_assertok(uclass_next_device_err(&dev));
|
2020-12-03 23:55:20 +00:00
|
|
|
plat = dev_get_plat(dev);
|
2020-10-03 17:31:28 +00:00
|
|
|
ut_assert(!plat->boolval);
|
|
|
|
ut_asserteq_str("spl", plat->stringarray[0]);
|
|
|
|
|
|
|
|
ut_asserteq(-ENODEV, uclass_next_device_err(&dev));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-03 23:55:23 +00:00
|
|
|
DM_TEST(dm_test_of_plat_props, UT_TESTF_SCAN_PDATA);
|
2020-10-03 17:31:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* find_driver_info - recursively find the driver_info for a device
|
|
|
|
*
|
|
|
|
* This sets found[idx] to true when it finds the driver_info record for a
|
|
|
|
* device, where idx is the index in the driver_info linker list.
|
|
|
|
*
|
|
|
|
* @uts: Test state
|
|
|
|
* @parent: Parent to search
|
|
|
|
* @found: bool array to update
|
|
|
|
* @return 0 if OK, non-zero on error
|
|
|
|
*/
|
|
|
|
static int find_driver_info(struct unit_test_state *uts, struct udevice *parent,
|
|
|
|
bool found[])
|
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
|
|
|
|
/* If not the root device, find the entry that caused it to be bound */
|
|
|
|
if (parent->parent) {
|
|
|
|
const int n_ents =
|
|
|
|
ll_entry_count(struct driver_info, driver_info);
|
|
|
|
int idx = -1;
|
2020-10-03 17:31:33 +00:00
|
|
|
int i;
|
2020-10-03 17:31:31 +00:00
|
|
|
|
2020-10-03 17:31:33 +00:00
|
|
|
for (i = 0; i < n_ents; i++) {
|
|
|
|
const struct driver_rt *drt = gd_dm_driver_rt() + i;
|
|
|
|
|
|
|
|
if (drt->dev == parent) {
|
|
|
|
idx = i;
|
2020-10-03 17:31:31 +00:00
|
|
|
found[idx] = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ut_assert(idx != -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
device_foreach_child(dev, parent) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = find_driver_info(uts, dev, found);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that every device is recorded in its driver_info struct */
|
2020-12-03 23:55:23 +00:00
|
|
|
static int dm_test_of_plat_dev(struct unit_test_state *uts)
|
2020-10-03 17:31:31 +00:00
|
|
|
{
|
|
|
|
const int n_ents = ll_entry_count(struct driver_info, driver_info);
|
|
|
|
bool found[n_ents];
|
|
|
|
uint i;
|
|
|
|
|
2021-03-15 04:25:32 +00:00
|
|
|
/* Skip this test if there is no platform data */
|
2021-03-15 04:25:36 +00:00
|
|
|
if (!CONFIG_IS_ENABLED(OF_PLATDATA_DRIVER_RT))
|
2021-03-15 04:25:32 +00:00
|
|
|
return 0;
|
|
|
|
|
2020-10-03 17:31:31 +00:00
|
|
|
/* Record the indexes that are found */
|
|
|
|
memset(found, '\0', sizeof(found));
|
|
|
|
ut_assertok(find_driver_info(uts, gd->dm_root, found));
|
|
|
|
|
|
|
|
/* Make sure that the driver entries without devices have no ->dev */
|
|
|
|
for (i = 0; i < n_ents; i++) {
|
2020-10-03 17:31:33 +00:00
|
|
|
const struct driver_rt *drt = gd_dm_driver_rt() + i;
|
2020-10-03 17:31:31 +00:00
|
|
|
struct udevice *dev;
|
|
|
|
|
|
|
|
if (found[i]) {
|
|
|
|
/* Make sure we can find it */
|
2020-10-03 17:31:33 +00:00
|
|
|
ut_assertnonnull(drt->dev);
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(i, &dev));
|
2020-10-03 17:31:33 +00:00
|
|
|
ut_asserteq_ptr(dev, drt->dev);
|
2020-10-03 17:31:31 +00:00
|
|
|
} else {
|
2020-10-03 17:31:33 +00:00
|
|
|
ut_assertnull(drt->dev);
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_asserteq(-ENOENT, device_get_by_ofplat_idx(i, &dev));
|
2020-10-03 17:31:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-03 23:55:23 +00:00
|
|
|
DM_TEST(dm_test_of_plat_dev, UT_TESTF_SCAN_PDATA);
|
2020-10-03 17:31:32 +00:00
|
|
|
|
|
|
|
/* Test handling of phandles that point to other devices */
|
2020-12-03 23:55:23 +00:00
|
|
|
static int dm_test_of_plat_phandle(struct unit_test_state *uts)
|
2020-10-03 17:31:32 +00:00
|
|
|
{
|
|
|
|
struct dtd_sandbox_clk_test *plat;
|
|
|
|
struct udevice *dev, *clk;
|
|
|
|
|
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_MISC, &dev));
|
|
|
|
ut_asserteq_str("sandbox_clk_test", dev->name);
|
2020-12-03 23:55:20 +00:00
|
|
|
plat = dev_get_plat(dev);
|
2020-10-03 17:31:32 +00:00
|
|
|
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(plat->clocks[0].idx, &clk));
|
2021-03-15 04:25:24 +00:00
|
|
|
ut_asserteq_str("sandbox_fixed_clock", clk->name);
|
2020-10-03 17:31:32 +00:00
|
|
|
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(plat->clocks[1].idx, &clk));
|
2020-10-03 17:31:32 +00:00
|
|
|
ut_asserteq_str("sandbox_clk", clk->name);
|
|
|
|
ut_asserteq(1, plat->clocks[1].arg[0]);
|
|
|
|
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(plat->clocks[2].idx, &clk));
|
2020-10-03 17:31:32 +00:00
|
|
|
ut_asserteq_str("sandbox_clk", clk->name);
|
|
|
|
ut_asserteq(0, plat->clocks[2].arg[0]);
|
|
|
|
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(plat->clocks[3].idx, &clk));
|
2020-10-03 17:31:32 +00:00
|
|
|
ut_asserteq_str("sandbox_clk", clk->name);
|
|
|
|
ut_asserteq(3, plat->clocks[3].arg[0]);
|
|
|
|
|
2021-03-15 04:25:28 +00:00
|
|
|
ut_assertok(device_get_by_ofplat_idx(plat->clocks[4].idx, &clk));
|
2020-10-03 17:31:32 +00:00
|
|
|
ut_asserteq_str("sandbox_clk", clk->name);
|
|
|
|
ut_asserteq(2, plat->clocks[4].arg[0]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-03 23:55:23 +00:00
|
|
|
DM_TEST(dm_test_of_plat_phandle, UT_TESTF_SCAN_PDATA);
|
2020-10-03 17:31:36 +00:00
|
|
|
|
|
|
|
#if CONFIG_IS_ENABLED(OF_PLATDATA_PARENT)
|
|
|
|
/* Test that device parents are correctly set up */
|
2020-12-03 23:55:23 +00:00
|
|
|
static int dm_test_of_plat_parent(struct unit_test_state *uts)
|
2020-10-03 17:31:36 +00:00
|
|
|
{
|
2021-03-15 04:25:31 +00:00
|
|
|
struct udevice *rtc, *i2c;
|
2020-10-03 17:31:36 +00:00
|
|
|
|
2021-03-15 04:25:31 +00:00
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_RTC, &rtc));
|
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_I2C, &i2c));
|
|
|
|
ut_asserteq_ptr(i2c, dev_get_parent(rtc));
|
2020-10-03 17:31:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-12-03 23:55:23 +00:00
|
|
|
DM_TEST(dm_test_of_plat_parent, UT_TESTF_SCAN_PDATA);
|
2020-10-03 17:31:36 +00:00
|
|
|
#endif
|