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