dm: test: Add a test for the system controller uclass
Add a test to confirm that we can access system controllers and find their driver data. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -27,6 +27,7 @@ obj-$(CONFIG_RESET) += reset.o
|
||||
obj-$(CONFIG_DM_RTC) += rtc.o
|
||||
obj-$(CONFIG_DM_SPI_FLASH) += sf.o
|
||||
obj-$(CONFIG_DM_SPI) += spi.o
|
||||
obj-y += syscon.o
|
||||
obj-$(CONFIG_DM_USB) += usb.o
|
||||
obj-$(CONFIG_DM_PMIC) += pmic.o
|
||||
obj-$(CONFIG_DM_REGULATOR) += regulator.o
|
||||
|
||||
31
test/dm/syscon.c
Normal file
31
test/dm/syscon.c
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright (C) 2015 Google, Inc
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <dm.h>
|
||||
#include <syscon.h>
|
||||
#include <asm/test.h>
|
||||
#include <dm/test.h>
|
||||
#include <test/ut.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
/* Base test of system controllers */
|
||||
static int dm_test_syscon_base(struct unit_test_state *uts)
|
||||
{
|
||||
struct udevice *dev;
|
||||
|
||||
ut_assertok(uclass_get_device(UCLASS_SYSCON, 0, &dev));
|
||||
ut_asserteq(SYSCON0, dev->driver_data);
|
||||
|
||||
ut_assertok(uclass_get_device(UCLASS_SYSCON, 1, &dev));
|
||||
ut_asserteq(SYSCON1, dev->driver_data);
|
||||
|
||||
ut_asserteq(-ENODEV, uclass_get_device(UCLASS_SYSCON, 2, &dev));
|
||||
|
||||
return 0;
|
||||
}
|
||||
DM_TEST(dm_test_syscon_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
|
||||
Reference in New Issue
Block a user