]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: add temperature command
authorRobert Marko <robimarko@gmail.com>
Tue, 6 Sep 2022 11:30:33 +0000 (13:30 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 11 Oct 2022 19:40:48 +0000 (15:40 -0400)
commitb0fb9f321501cfbe9695e2bd2e300be6cf7cffaa
treeedb703622a3b64f38e806da32791e7092a5fda56
parent555fe33070117c847438410dc30e81506c4d2885
cmd: add temperature command

Currently, there is no way for users to check the readings from thermal
sensors from U-boot console, only some boards print it during boot.

So, lets add a simple "temperature" command that allows listing thermal
uclass devices and getting their value.

Note that the thermal devices are intenionally probed if list is used as
almost always they will not get probed otherwise and there is no way for
users to manually call probe on a certain device from console.

Assumption is made that temperature is returned in degrees C and not
milidegrees like in Linux as this is what most drivers seem to return.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Reviewed-by: Simon Glass <sjg@chromium.org>
cmd/Kconfig
cmd/Makefile
cmd/temperature.c [new file with mode: 0644]