mirror of
https://xff.cz/git/u-boot/
synced 2026-01-20 07:07:21 +01:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d, reversing changes made to2ee6f3a5f7. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <timer.h>
|
|
#include <dm/test.h>
|
|
#include <dm/device-internal.h>
|
|
#include <test/test.h>
|
|
#include <test/ut.h>
|
|
#include <asm/cpu.h>
|
|
|
|
/*
|
|
* Basic test of the timer uclass.
|
|
*/
|
|
static int dm_test_timer_base(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
|
|
ut_assertok(uclass_get_device_by_name(UCLASS_TIMER, "timer@0", &dev));
|
|
ut_asserteq(1000000, timer_get_rate(dev));
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_timer_base, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|
|
|
|
/*
|
|
* Test of timebase fallback
|
|
*/
|
|
static int dm_test_timer_timebase_fallback(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
|
|
cpu_sandbox_set_current("cpu@1");
|
|
ut_assertok(uclass_get_device_by_name(UCLASS_TIMER, "timer@1", &dev));
|
|
ut_asserteq(3000000, timer_get_rate(dev));
|
|
ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
|
|
|
|
cpu_sandbox_set_current("cpu@2");
|
|
ut_assertok(uclass_get_device_by_name(UCLASS_TIMER, "timer@1", &dev));
|
|
ut_asserteq(2000000, timer_get_rate(dev));
|
|
|
|
cpu_sandbox_set_current("cpu@1");
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_timer_timebase_fallback,
|
|
UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|