mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-20 17:01:50 +01:00
Linux kernel .get_temp() callback reports values in millicelsius, U-Boot currently reports them in celsius. Align the two and report in millicelsius. Update drivers accordingly. Update callsites that use thermal_get_temp() as well. The 'temperature' command now reports temperature in millicelsius as well, with additional accuracy. This changes command line ABI slightly. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Reviewed-by: David Zang <davidzangcs@gmail.com> [trini: Update test/cmd/temperature.c] Signed-off-by: Tom Rini <trini@konsulko.com>
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Executes tests for temperature command
|
|
*
|
|
* Copyright (C) 2022 Sartura Ltd.
|
|
*/
|
|
|
|
#include <command.h>
|
|
#include <dm.h>
|
|
#include <dm/test.h>
|
|
#include <test/test.h>
|
|
#include <test/ut.h>
|
|
|
|
static int dm_test_cmd_temperature(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_THERMAL, 0, &dev));
|
|
ut_assertnonnull(dev);
|
|
|
|
/* Test that "temperature list" shows the sandbox device */
|
|
ut_assertok(run_command("temperature list", 0));
|
|
ut_assert_nextline("| Device | Driver | Parent");
|
|
ut_assert_nextline("| thermal | thermal-sandbox | root_driver");
|
|
ut_assert_console_end();
|
|
|
|
/* Test that "temperature get thermal" returns expected value */
|
|
console_record_reset();
|
|
ut_assertok(run_command("temperature get thermal", 0));
|
|
ut_assert_nextline("thermal: 100000 mC");
|
|
ut_assert_console_end();
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_cmd_temperature, UTF_SCAN_FDT | UTF_CONSOLE);
|