1 // SPDX-License-Identifier: GPL-2.0+
3 * Test for Primary-to-Sideband bus (P2SB)
5 * Copyright 2019 Google LLC
14 /* Base test of the PMC uclass */
15 static int dm_test_p2sb_base(struct unit_test_state *uts)
19 sandbox_set_enable_memio(true);
20 ut_assertok(uclass_get_device_by_name(UCLASS_AXI, "adder", &dev));
21 ut_asserteq(0x03000004, pcr_read32(dev, 4));
22 ut_asserteq(0x300, pcr_read16(dev, 6));
23 ut_asserteq(4, pcr_read8(dev, 4));
27 DM_TEST(dm_test_p2sb_base, UTF_SCAN_PDATA | UTF_SCAN_FDT);