mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-20 05:11:30 +02: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 commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
34 lines
795 B
C
34 lines
795 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Test for power-management controller uclass (PMC)
|
|
*
|
|
* Copyright 2019 Google LLC
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <power/acpi_pmc.h>
|
|
#include <dm/test.h>
|
|
#include <test/ut.h>
|
|
|
|
/* Base test of the PMC uclass */
|
|
static int dm_test_pmc_base(struct unit_test_state *uts)
|
|
{
|
|
struct acpi_pmc_upriv *upriv;
|
|
struct udevice *dev;
|
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_ACPI_PMC, &dev));
|
|
|
|
ut_assertok(pmc_disable_tco(dev));
|
|
ut_assertok(pmc_init(dev));
|
|
ut_assertok(pmc_prev_sleep_state(dev));
|
|
|
|
/* Check some values to see that I/O works */
|
|
upriv = dev_get_uclass_priv(dev);
|
|
ut_asserteq(0x24, upriv->gpe0_sts[1]);
|
|
ut_asserteq(0x64, upriv->tco1_sts);
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_pmc_base, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|