u-boot-brain/test/dm/syscon.c
Tom Rini d024236e5a Remove unnecessary instances of DECLARE_GLOBAL_DATA_PTR
We have a large number of places where while we historically referenced
gd in the code we no longer do, as well as cases where the code added
that line "just in case" during development and never dropped it.

Signed-off-by: Tom Rini <trini@konsulko.com>
2018-04-27 14:54:48 -04:00

47 lines
1.1 KiB
C

/*
* 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>
/* 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);
/* Test system controller finding */
static int dm_test_syscon_by_driver_data(struct unit_test_state *uts)
{
struct udevice *dev;
ut_assertok(syscon_get_by_driver_data(SYSCON0, &dev));
ut_asserteq(SYSCON0, dev->driver_data);
ut_assertok(syscon_get_by_driver_data(SYSCON1, &dev));
ut_asserteq(SYSCON1, dev->driver_data);
ut_asserteq(-ENODEV, syscon_get_by_driver_data(2, &dev));
return 0;
}
DM_TEST(dm_test_syscon_by_driver_data, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);