1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic ADC thermal driver
5 * Copyright (C) 2016 NVIDIA CORPORATION. All rights reserved.
7 * Author: Laxman Dewangan <ldewangan@nvidia.com>
9 #include <linux/iio/consumer.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/slab.h>
14 #include <linux/thermal.h>
16 struct gadc_thermal_info
{
18 struct thermal_zone_device
*tz_dev
;
19 struct iio_channel
*channel
;
24 static int gadc_thermal_adc_to_temp(struct gadc_thermal_info
*gti
, int val
)
26 int temp
, temp_hi
, temp_lo
, adc_hi
, adc_lo
;
29 if (!gti
->lookup_table
)
32 for (i
= 0; i
< gti
->nlookup_table
; i
++) {
33 if (val
>= gti
->lookup_table
[2 * i
+ 1])
38 temp
= gti
->lookup_table
[0];
39 } else if (i
>= gti
->nlookup_table
) {
40 temp
= gti
->lookup_table
[2 * (gti
->nlookup_table
- 1)];
42 adc_hi
= gti
->lookup_table
[2 * i
- 1];
43 adc_lo
= gti
->lookup_table
[2 * i
+ 1];
45 temp_hi
= gti
->lookup_table
[2 * i
- 2];
46 temp_lo
= gti
->lookup_table
[2 * i
];
48 temp
= temp_hi
+ mult_frac(temp_lo
- temp_hi
, val
- adc_hi
,
55 static int gadc_thermal_get_temp(void *data
, int *temp
)
57 struct gadc_thermal_info
*gti
= data
;
61 ret
= iio_read_channel_processed(gti
->channel
, &val
);
63 dev_err(gti
->dev
, "IIO channel read failed %d\n", ret
);
66 *temp
= gadc_thermal_adc_to_temp(gti
, val
);
71 static const struct thermal_zone_of_device_ops gadc_thermal_ops
= {
72 .get_temp
= gadc_thermal_get_temp
,
75 static int gadc_thermal_read_linear_lookup_table(struct device
*dev
,
76 struct gadc_thermal_info
*gti
)
78 struct device_node
*np
= dev
->of_node
;
79 enum iio_chan_type chan_type
;
83 ntable
= of_property_count_elems_of_size(np
, "temperature-lookup-table",
86 ret
= iio_get_channel_type(gti
->channel
, &chan_type
);
87 if (ret
|| chan_type
!= IIO_TEMP
)
89 "no lookup table, assuming DAC channel returns milliCelcius\n");
94 dev_err(dev
, "Pair of temperature vs ADC read value missing\n");
98 gti
->lookup_table
= devm_kcalloc(dev
,
99 ntable
, sizeof(*gti
->lookup_table
),
101 if (!gti
->lookup_table
)
104 ret
= of_property_read_u32_array(np
, "temperature-lookup-table",
105 (u32
*)gti
->lookup_table
, ntable
);
107 dev_err(dev
, "Failed to read temperature lookup table: %d\n",
112 gti
->nlookup_table
= ntable
/ 2;
117 static int gadc_thermal_probe(struct platform_device
*pdev
)
119 struct gadc_thermal_info
*gti
;
122 if (!pdev
->dev
.of_node
) {
123 dev_err(&pdev
->dev
, "Only DT based supported\n");
127 gti
= devm_kzalloc(&pdev
->dev
, sizeof(*gti
), GFP_KERNEL
);
131 gti
->channel
= devm_iio_channel_get(&pdev
->dev
, "sensor-channel");
132 if (IS_ERR(gti
->channel
)) {
133 ret
= PTR_ERR(gti
->channel
);
134 if (ret
!= -EPROBE_DEFER
)
135 dev_err(&pdev
->dev
, "IIO channel not found: %d\n", ret
);
139 ret
= gadc_thermal_read_linear_lookup_table(&pdev
->dev
, gti
);
143 gti
->dev
= &pdev
->dev
;
144 platform_set_drvdata(pdev
, gti
);
146 gti
->tz_dev
= devm_thermal_zone_of_sensor_register(&pdev
->dev
, 0, gti
,
148 if (IS_ERR(gti
->tz_dev
)) {
149 ret
= PTR_ERR(gti
->tz_dev
);
150 if (ret
!= -EPROBE_DEFER
)
152 "Thermal zone sensor register failed: %d\n",
160 static const struct of_device_id of_adc_thermal_match
[] = {
161 { .compatible
= "generic-adc-thermal", },
164 MODULE_DEVICE_TABLE(of
, of_adc_thermal_match
);
166 static struct platform_driver gadc_thermal_driver
= {
168 .name
= "generic-adc-thermal",
169 .of_match_table
= of_adc_thermal_match
,
171 .probe
= gadc_thermal_probe
,
174 module_platform_driver(gadc_thermal_driver
);
176 MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
177 MODULE_DESCRIPTION("Generic ADC thermal driver using IIO framework with DT");
178 MODULE_LICENSE("GPL v2");