blob: f0fe912e31314c6e7a574a68cd2554c8c4a5ed53 [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
16
17int thermal_get_temp(struct udevice *dev, int *temp)
18{
19 const struct dm_thermal_ops *ops = device_get_ops(dev);
20
21 if (!ops->get_temp)
22 return -ENOSYS;
23
24 return ops->get_temp(dev, temp);
25}
26
27UCLASS_DRIVER(thermal) = {
28 .id = UCLASS_THERMAL,
29 .name = "thermal",
30};