blob: c61e6c3ee0ea01dd39443e71207b6c31aed275d6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ye.Lid049afa2014-11-20 21:14:13 +08002/*
3 * (C) Copyright 2014 Freescale Semiconductor, Inc
Ye.Lid049afa2014-11-20 21:14:13 +08004 */
5
Patrick Delaunay81313352021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_THERMAL
7
Ye.Lid049afa2014-11-20 21:14:13 +08008#include <dm.h>
9#include <thermal.h>
10#include <errno.h>
11#include <fdtdec.h>
12#include <malloc.h>
13#include <asm/io.h>
14#include <linux/list.h>
15
Ye.Lid049afa2014-11-20 21:14:13 +080016int thermal_get_temp(struct udevice *dev, int *temp)
17{
18 const struct dm_thermal_ops *ops = device_get_ops(dev);
19
20 if (!ops->get_temp)
21 return -ENOSYS;
22
23 return ops->get_temp(dev, temp);
24}
25
26UCLASS_DRIVER(thermal) = {
27 .id = UCLASS_THERMAL,
28 .name = "thermal",
29};