1fad399ebSBalsam CHIHI // SPDX-License-Identifier: GPL-2.0-only
2fad399ebSBalsam CHIHI /*
3fad399ebSBalsam CHIHI * Copyright (c) 2015 MediaTek Inc.
4fad399ebSBalsam CHIHI * Author: Hanyi Wu <hanyi.wu@mediatek.com>
5fad399ebSBalsam CHIHI * Sascha Hauer <s.hauer@pengutronix.de>
6fad399ebSBalsam CHIHI * Dawei Chien <dawei.chien@mediatek.com>
7fad399ebSBalsam CHIHI * Louis Yu <louis.yu@mediatek.com>
8fad399ebSBalsam CHIHI */
9fad399ebSBalsam CHIHI
10fad399ebSBalsam CHIHI #include <linux/clk.h>
11fad399ebSBalsam CHIHI #include <linux/delay.h>
12fad399ebSBalsam CHIHI #include <linux/interrupt.h>
13fad399ebSBalsam CHIHI #include <linux/kernel.h>
14fad399ebSBalsam CHIHI #include <linux/module.h>
15fad399ebSBalsam CHIHI #include <linux/nvmem-consumer.h>
16fad399ebSBalsam CHIHI #include <linux/of.h>
17fad399ebSBalsam CHIHI #include <linux/of_address.h>
18fad399ebSBalsam CHIHI #include <linux/platform_device.h>
19fad399ebSBalsam CHIHI #include <linux/slab.h>
20fad399ebSBalsam CHIHI #include <linux/io.h>
21fad399ebSBalsam CHIHI #include <linux/thermal.h>
22fad399ebSBalsam CHIHI #include <linux/reset.h>
23fad399ebSBalsam CHIHI #include <linux/types.h>
24fad399ebSBalsam CHIHI
25fad399ebSBalsam CHIHI #include "../thermal_hwmon.h"
26fad399ebSBalsam CHIHI
27fad399ebSBalsam CHIHI /* AUXADC Registers */
28fad399ebSBalsam CHIHI #define AUXADC_CON1_SET_V 0x008
29fad399ebSBalsam CHIHI #define AUXADC_CON1_CLR_V 0x00c
30fad399ebSBalsam CHIHI #define AUXADC_CON2_V 0x010
31fad399ebSBalsam CHIHI #define AUXADC_DATA(channel) (0x14 + (channel) * 4)
32fad399ebSBalsam CHIHI
3356edffdcSFabien Parent #define APMIXED_SYS_TS_CON0 0x600
34fad399ebSBalsam CHIHI #define APMIXED_SYS_TS_CON1 0x604
35fad399ebSBalsam CHIHI
36fad399ebSBalsam CHIHI /* Thermal Controller Registers */
37fad399ebSBalsam CHIHI #define TEMP_MONCTL0 0x000
38fad399ebSBalsam CHIHI #define TEMP_MONCTL1 0x004
39fad399ebSBalsam CHIHI #define TEMP_MONCTL2 0x008
40fad399ebSBalsam CHIHI #define TEMP_MONIDET0 0x014
41fad399ebSBalsam CHIHI #define TEMP_MONIDET1 0x018
42fad399ebSBalsam CHIHI #define TEMP_MSRCTL0 0x038
43fad399ebSBalsam CHIHI #define TEMP_MSRCTL1 0x03c
44fad399ebSBalsam CHIHI #define TEMP_AHBPOLL 0x040
45fad399ebSBalsam CHIHI #define TEMP_AHBTO 0x044
46fad399ebSBalsam CHIHI #define TEMP_ADCPNP0 0x048
47fad399ebSBalsam CHIHI #define TEMP_ADCPNP1 0x04c
48fad399ebSBalsam CHIHI #define TEMP_ADCPNP2 0x050
49fad399ebSBalsam CHIHI #define TEMP_ADCPNP3 0x0b4
50fad399ebSBalsam CHIHI
51fad399ebSBalsam CHIHI #define TEMP_ADCMUX 0x054
52fad399ebSBalsam CHIHI #define TEMP_ADCEN 0x060
53fad399ebSBalsam CHIHI #define TEMP_PNPMUXADDR 0x064
54fad399ebSBalsam CHIHI #define TEMP_ADCMUXADDR 0x068
55fad399ebSBalsam CHIHI #define TEMP_ADCENADDR 0x074
56fad399ebSBalsam CHIHI #define TEMP_ADCVALIDADDR 0x078
57fad399ebSBalsam CHIHI #define TEMP_ADCVOLTADDR 0x07c
58fad399ebSBalsam CHIHI #define TEMP_RDCTRL 0x080
59fad399ebSBalsam CHIHI #define TEMP_ADCVALIDMASK 0x084
60fad399ebSBalsam CHIHI #define TEMP_ADCVOLTAGESHIFT 0x088
61fad399ebSBalsam CHIHI #define TEMP_ADCWRITECTRL 0x08c
62fad399ebSBalsam CHIHI #define TEMP_MSR0 0x090
63fad399ebSBalsam CHIHI #define TEMP_MSR1 0x094
64fad399ebSBalsam CHIHI #define TEMP_MSR2 0x098
65fad399ebSBalsam CHIHI #define TEMP_MSR3 0x0B8
66fad399ebSBalsam CHIHI
67fad399ebSBalsam CHIHI #define TEMP_SPARE0 0x0f0
68fad399ebSBalsam CHIHI
69fad399ebSBalsam CHIHI #define TEMP_ADCPNP0_1 0x148
70fad399ebSBalsam CHIHI #define TEMP_ADCPNP1_1 0x14c
71fad399ebSBalsam CHIHI #define TEMP_ADCPNP2_1 0x150
72fad399ebSBalsam CHIHI #define TEMP_MSR0_1 0x190
73fad399ebSBalsam CHIHI #define TEMP_MSR1_1 0x194
74fad399ebSBalsam CHIHI #define TEMP_MSR2_1 0x198
75fad399ebSBalsam CHIHI #define TEMP_ADCPNP3_1 0x1b4
76fad399ebSBalsam CHIHI #define TEMP_MSR3_1 0x1B8
77fad399ebSBalsam CHIHI
78fad399ebSBalsam CHIHI #define PTPCORESEL 0x400
79fad399ebSBalsam CHIHI
80fad399ebSBalsam CHIHI #define TEMP_MONCTL1_PERIOD_UNIT(x) ((x) & 0x3ff)
81fad399ebSBalsam CHIHI
82fad399ebSBalsam CHIHI #define TEMP_MONCTL2_FILTER_INTERVAL(x) (((x) & 0x3ff) << 16)
83fad399ebSBalsam CHIHI #define TEMP_MONCTL2_SENSOR_INTERVAL(x) ((x) & 0x3ff)
84fad399ebSBalsam CHIHI
85fad399ebSBalsam CHIHI #define TEMP_AHBPOLL_ADC_POLL_INTERVAL(x) (x)
86fad399ebSBalsam CHIHI
87fad399ebSBalsam CHIHI #define TEMP_ADCWRITECTRL_ADC_PNP_WRITE BIT(0)
88fad399ebSBalsam CHIHI #define TEMP_ADCWRITECTRL_ADC_MUX_WRITE BIT(1)
89fad399ebSBalsam CHIHI
90fad399ebSBalsam CHIHI #define TEMP_ADCVALIDMASK_VALID_HIGH BIT(5)
91fad399ebSBalsam CHIHI #define TEMP_ADCVALIDMASK_VALID_POS(bit) (bit)
92fad399ebSBalsam CHIHI
93fad399ebSBalsam CHIHI /* MT8173 thermal sensors */
94fad399ebSBalsam CHIHI #define MT8173_TS1 0
95fad399ebSBalsam CHIHI #define MT8173_TS2 1
96fad399ebSBalsam CHIHI #define MT8173_TS3 2
97fad399ebSBalsam CHIHI #define MT8173_TS4 3
98fad399ebSBalsam CHIHI #define MT8173_TSABB 4
99fad399ebSBalsam CHIHI
100fad399ebSBalsam CHIHI /* AUXADC channel 11 is used for the temperature sensors */
101fad399ebSBalsam CHIHI #define MT8173_TEMP_AUXADC_CHANNEL 11
102fad399ebSBalsam CHIHI
103fad399ebSBalsam CHIHI /* The total number of temperature sensors in the MT8173 */
104fad399ebSBalsam CHIHI #define MT8173_NUM_SENSORS 5
105fad399ebSBalsam CHIHI
106fad399ebSBalsam CHIHI /* The number of banks in the MT8173 */
107fad399ebSBalsam CHIHI #define MT8173_NUM_ZONES 4
108fad399ebSBalsam CHIHI
109fad399ebSBalsam CHIHI /* The number of sensing points per bank */
110fad399ebSBalsam CHIHI #define MT8173_NUM_SENSORS_PER_ZONE 4
111fad399ebSBalsam CHIHI
112fad399ebSBalsam CHIHI /* The number of controller in the MT8173 */
113fad399ebSBalsam CHIHI #define MT8173_NUM_CONTROLLER 1
114fad399ebSBalsam CHIHI
115fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
116fad399ebSBalsam CHIHI #define MT8173_CALIBRATION 165
117fad399ebSBalsam CHIHI
11847cbb046SAngeloGioacchino Del Regno /* Valid temperatures range */
11947cbb046SAngeloGioacchino Del Regno #define MT8173_TEMP_MIN -20000
12047cbb046SAngeloGioacchino Del Regno #define MT8173_TEMP_MAX 150000
12147cbb046SAngeloGioacchino Del Regno
122fad399ebSBalsam CHIHI /*
123fad399ebSBalsam CHIHI * Layout of the fuses providing the calibration data
124fad399ebSBalsam CHIHI * These macros could be used for MT8183, MT8173, MT2701, and MT2712.
125fad399ebSBalsam CHIHI * MT8183 has 6 sensors and needs 6 VTS calibration data.
126fad399ebSBalsam CHIHI * MT8173 has 5 sensors and needs 5 VTS calibration data.
127fad399ebSBalsam CHIHI * MT2701 has 3 sensors and needs 3 VTS calibration data.
128fad399ebSBalsam CHIHI * MT2712 has 4 sensors and needs 4 VTS calibration data.
129fad399ebSBalsam CHIHI */
130fad399ebSBalsam CHIHI #define CALIB_BUF0_VALID_V1 BIT(0)
131fad399ebSBalsam CHIHI #define CALIB_BUF1_ADC_GE_V1(x) (((x) >> 22) & 0x3ff)
132fad399ebSBalsam CHIHI #define CALIB_BUF0_VTS_TS1_V1(x) (((x) >> 17) & 0x1ff)
133fad399ebSBalsam CHIHI #define CALIB_BUF0_VTS_TS2_V1(x) (((x) >> 8) & 0x1ff)
134fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TS3_V1(x) (((x) >> 0) & 0x1ff)
135fad399ebSBalsam CHIHI #define CALIB_BUF2_VTS_TS4_V1(x) (((x) >> 23) & 0x1ff)
136fad399ebSBalsam CHIHI #define CALIB_BUF2_VTS_TS5_V1(x) (((x) >> 5) & 0x1ff)
137fad399ebSBalsam CHIHI #define CALIB_BUF2_VTS_TSABB_V1(x) (((x) >> 14) & 0x1ff)
138fad399ebSBalsam CHIHI #define CALIB_BUF0_DEGC_CALI_V1(x) (((x) >> 1) & 0x3f)
139fad399ebSBalsam CHIHI #define CALIB_BUF0_O_SLOPE_V1(x) (((x) >> 26) & 0x3f)
140fad399ebSBalsam CHIHI #define CALIB_BUF0_O_SLOPE_SIGN_V1(x) (((x) >> 7) & 0x1)
141fad399ebSBalsam CHIHI #define CALIB_BUF1_ID_V1(x) (((x) >> 9) & 0x1)
142fad399ebSBalsam CHIHI
143fad399ebSBalsam CHIHI /*
144fad399ebSBalsam CHIHI * Layout of the fuses providing the calibration data
145fad399ebSBalsam CHIHI * These macros could be used for MT7622.
146fad399ebSBalsam CHIHI */
147fad399ebSBalsam CHIHI #define CALIB_BUF0_ADC_OE_V2(x) (((x) >> 22) & 0x3ff)
148fad399ebSBalsam CHIHI #define CALIB_BUF0_ADC_GE_V2(x) (((x) >> 12) & 0x3ff)
149fad399ebSBalsam CHIHI #define CALIB_BUF0_DEGC_CALI_V2(x) (((x) >> 6) & 0x3f)
150fad399ebSBalsam CHIHI #define CALIB_BUF0_O_SLOPE_V2(x) (((x) >> 0) & 0x3f)
151fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TS1_V2(x) (((x) >> 23) & 0x1ff)
152fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TS2_V2(x) (((x) >> 14) & 0x1ff)
153fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TSABB_V2(x) (((x) >> 5) & 0x1ff)
154fad399ebSBalsam CHIHI #define CALIB_BUF1_VALID_V2(x) (((x) >> 4) & 0x1)
155fad399ebSBalsam CHIHI #define CALIB_BUF1_O_SLOPE_SIGN_V2(x) (((x) >> 3) & 0x1)
156fad399ebSBalsam CHIHI
157fad399ebSBalsam CHIHI /*
158fad399ebSBalsam CHIHI * Layout of the fuses providing the calibration data
159fad399ebSBalsam CHIHI * These macros can be used for MT7981 and MT7986.
160fad399ebSBalsam CHIHI */
161fad399ebSBalsam CHIHI #define CALIB_BUF0_ADC_GE_V3(x) (((x) >> 0) & 0x3ff)
162fad399ebSBalsam CHIHI #define CALIB_BUF0_DEGC_CALI_V3(x) (((x) >> 20) & 0x3f)
163fad399ebSBalsam CHIHI #define CALIB_BUF0_O_SLOPE_V3(x) (((x) >> 26) & 0x3f)
164fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TS1_V3(x) (((x) >> 0) & 0x1ff)
165fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TS2_V3(x) (((x) >> 21) & 0x1ff)
166fad399ebSBalsam CHIHI #define CALIB_BUF1_VTS_TSABB_V3(x) (((x) >> 9) & 0x1ff)
167fad399ebSBalsam CHIHI #define CALIB_BUF1_VALID_V3(x) (((x) >> 18) & 0x1)
168fad399ebSBalsam CHIHI #define CALIB_BUF1_O_SLOPE_SIGN_V3(x) (((x) >> 19) & 0x1)
169fad399ebSBalsam CHIHI #define CALIB_BUF1_ID_V3(x) (((x) >> 20) & 0x1)
170fad399ebSBalsam CHIHI
171fad399ebSBalsam CHIHI enum {
172fad399ebSBalsam CHIHI VTS1,
173fad399ebSBalsam CHIHI VTS2,
174fad399ebSBalsam CHIHI VTS3,
175fad399ebSBalsam CHIHI VTS4,
176fad399ebSBalsam CHIHI VTS5,
177fad399ebSBalsam CHIHI VTSABB,
178fad399ebSBalsam CHIHI MAX_NUM_VTS,
179fad399ebSBalsam CHIHI };
180fad399ebSBalsam CHIHI
181fad399ebSBalsam CHIHI enum mtk_thermal_version {
182fad399ebSBalsam CHIHI MTK_THERMAL_V1 = 1,
183fad399ebSBalsam CHIHI MTK_THERMAL_V2,
184fad399ebSBalsam CHIHI MTK_THERMAL_V3,
185fad399ebSBalsam CHIHI };
186fad399ebSBalsam CHIHI
187fad399ebSBalsam CHIHI /* MT2701 thermal sensors */
188fad399ebSBalsam CHIHI #define MT2701_TS1 0
189fad399ebSBalsam CHIHI #define MT2701_TS2 1
190fad399ebSBalsam CHIHI #define MT2701_TSABB 2
191fad399ebSBalsam CHIHI
192fad399ebSBalsam CHIHI /* AUXADC channel 11 is used for the temperature sensors */
193fad399ebSBalsam CHIHI #define MT2701_TEMP_AUXADC_CHANNEL 11
194fad399ebSBalsam CHIHI
195fad399ebSBalsam CHIHI /* The total number of temperature sensors in the MT2701 */
196fad399ebSBalsam CHIHI #define MT2701_NUM_SENSORS 3
197fad399ebSBalsam CHIHI
198fad399ebSBalsam CHIHI /* The number of sensing points per bank */
199fad399ebSBalsam CHIHI #define MT2701_NUM_SENSORS_PER_ZONE 3
200fad399ebSBalsam CHIHI
201fad399ebSBalsam CHIHI /* The number of controller in the MT2701 */
202fad399ebSBalsam CHIHI #define MT2701_NUM_CONTROLLER 1
203fad399ebSBalsam CHIHI
204fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
205fad399ebSBalsam CHIHI #define MT2701_CALIBRATION 165
206fad399ebSBalsam CHIHI
207fad399ebSBalsam CHIHI /* MT2712 thermal sensors */
208fad399ebSBalsam CHIHI #define MT2712_TS1 0
209fad399ebSBalsam CHIHI #define MT2712_TS2 1
210fad399ebSBalsam CHIHI #define MT2712_TS3 2
211fad399ebSBalsam CHIHI #define MT2712_TS4 3
212fad399ebSBalsam CHIHI
213fad399ebSBalsam CHIHI /* AUXADC channel 11 is used for the temperature sensors */
214fad399ebSBalsam CHIHI #define MT2712_TEMP_AUXADC_CHANNEL 11
215fad399ebSBalsam CHIHI
216fad399ebSBalsam CHIHI /* The total number of temperature sensors in the MT2712 */
217fad399ebSBalsam CHIHI #define MT2712_NUM_SENSORS 4
218fad399ebSBalsam CHIHI
219fad399ebSBalsam CHIHI /* The number of sensing points per bank */
220fad399ebSBalsam CHIHI #define MT2712_NUM_SENSORS_PER_ZONE 4
221fad399ebSBalsam CHIHI
222fad399ebSBalsam CHIHI /* The number of controller in the MT2712 */
223fad399ebSBalsam CHIHI #define MT2712_NUM_CONTROLLER 1
224fad399ebSBalsam CHIHI
225fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
226fad399ebSBalsam CHIHI #define MT2712_CALIBRATION 165
227fad399ebSBalsam CHIHI
228fad399ebSBalsam CHIHI #define MT7622_TEMP_AUXADC_CHANNEL 11
229fad399ebSBalsam CHIHI #define MT7622_NUM_SENSORS 1
230fad399ebSBalsam CHIHI #define MT7622_NUM_ZONES 1
231fad399ebSBalsam CHIHI #define MT7622_NUM_SENSORS_PER_ZONE 1
232fad399ebSBalsam CHIHI #define MT7622_TS1 0
233fad399ebSBalsam CHIHI #define MT7622_NUM_CONTROLLER 1
234fad399ebSBalsam CHIHI
235fad399ebSBalsam CHIHI /* The maximum number of banks */
236fad399ebSBalsam CHIHI #define MAX_NUM_ZONES 8
237fad399ebSBalsam CHIHI
238fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
239fad399ebSBalsam CHIHI #define MT7622_CALIBRATION 165
240fad399ebSBalsam CHIHI
241fad399ebSBalsam CHIHI /* MT8183 thermal sensors */
242fad399ebSBalsam CHIHI #define MT8183_TS1 0
243fad399ebSBalsam CHIHI #define MT8183_TS2 1
244fad399ebSBalsam CHIHI #define MT8183_TS3 2
245fad399ebSBalsam CHIHI #define MT8183_TS4 3
246fad399ebSBalsam CHIHI #define MT8183_TS5 4
247fad399ebSBalsam CHIHI #define MT8183_TSABB 5
248fad399ebSBalsam CHIHI
249fad399ebSBalsam CHIHI /* AUXADC channel is used for the temperature sensors */
250fad399ebSBalsam CHIHI #define MT8183_TEMP_AUXADC_CHANNEL 11
251fad399ebSBalsam CHIHI
252fad399ebSBalsam CHIHI /* The total number of temperature sensors in the MT8183 */
253fad399ebSBalsam CHIHI #define MT8183_NUM_SENSORS 6
254fad399ebSBalsam CHIHI
255fad399ebSBalsam CHIHI /* The number of banks in the MT8183 */
256fad399ebSBalsam CHIHI #define MT8183_NUM_ZONES 1
257fad399ebSBalsam CHIHI
258fad399ebSBalsam CHIHI /* The number of sensing points per bank */
259fad399ebSBalsam CHIHI #define MT8183_NUM_SENSORS_PER_ZONE 6
260fad399ebSBalsam CHIHI
261fad399ebSBalsam CHIHI /* The number of controller in the MT8183 */
262fad399ebSBalsam CHIHI #define MT8183_NUM_CONTROLLER 2
263fad399ebSBalsam CHIHI
264fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
265fad399ebSBalsam CHIHI #define MT8183_CALIBRATION 153
266fad399ebSBalsam CHIHI
267fad399ebSBalsam CHIHI /* AUXADC channel 11 is used for the temperature sensors */
268fad399ebSBalsam CHIHI #define MT7986_TEMP_AUXADC_CHANNEL 11
269fad399ebSBalsam CHIHI
270fad399ebSBalsam CHIHI /* The total number of temperature sensors in the MT7986 */
271fad399ebSBalsam CHIHI #define MT7986_NUM_SENSORS 1
272fad399ebSBalsam CHIHI
273fad399ebSBalsam CHIHI /* The number of banks in the MT7986 */
274fad399ebSBalsam CHIHI #define MT7986_NUM_ZONES 1
275fad399ebSBalsam CHIHI
276fad399ebSBalsam CHIHI /* The number of sensing points per bank */
277fad399ebSBalsam CHIHI #define MT7986_NUM_SENSORS_PER_ZONE 1
278fad399ebSBalsam CHIHI
279fad399ebSBalsam CHIHI /* MT7986 thermal sensors */
280fad399ebSBalsam CHIHI #define MT7986_TS1 0
281fad399ebSBalsam CHIHI
282fad399ebSBalsam CHIHI /* The number of controller in the MT7986 */
283fad399ebSBalsam CHIHI #define MT7986_NUM_CONTROLLER 1
284fad399ebSBalsam CHIHI
285fad399ebSBalsam CHIHI /* The calibration coefficient of sensor */
286fad399ebSBalsam CHIHI #define MT7986_CALIBRATION 165
287fad399ebSBalsam CHIHI
28856edffdcSFabien Parent /* MT8365 */
28956edffdcSFabien Parent #define MT8365_TEMP_AUXADC_CHANNEL 11
29056edffdcSFabien Parent #define MT8365_CALIBRATION 164
29156edffdcSFabien Parent #define MT8365_NUM_CONTROLLER 1
29256edffdcSFabien Parent #define MT8365_NUM_BANKS 1
29356edffdcSFabien Parent #define MT8365_NUM_SENSORS 3
29456edffdcSFabien Parent #define MT8365_NUM_SENSORS_PER_ZONE 3
29556edffdcSFabien Parent #define MT8365_TS1 0
29656edffdcSFabien Parent #define MT8365_TS2 1
29756edffdcSFabien Parent #define MT8365_TS3 2
29856edffdcSFabien Parent
299fad399ebSBalsam CHIHI struct mtk_thermal;
300fad399ebSBalsam CHIHI
301fad399ebSBalsam CHIHI struct thermal_bank_cfg {
302fad399ebSBalsam CHIHI unsigned int num_sensors;
303fad399ebSBalsam CHIHI const int *sensors;
304fad399ebSBalsam CHIHI };
305fad399ebSBalsam CHIHI
306fad399ebSBalsam CHIHI struct mtk_thermal_bank {
307fad399ebSBalsam CHIHI struct mtk_thermal *mt;
308fad399ebSBalsam CHIHI int id;
309fad399ebSBalsam CHIHI };
310fad399ebSBalsam CHIHI
311fad399ebSBalsam CHIHI struct mtk_thermal_data {
312fad399ebSBalsam CHIHI s32 num_banks;
313fad399ebSBalsam CHIHI s32 num_sensors;
314fad399ebSBalsam CHIHI s32 auxadc_channel;
315fad399ebSBalsam CHIHI const int *vts_index;
316fad399ebSBalsam CHIHI const int *sensor_mux_values;
317fad399ebSBalsam CHIHI const int *msr;
318fad399ebSBalsam CHIHI const int *adcpnp;
319fad399ebSBalsam CHIHI const int cali_val;
320fad399ebSBalsam CHIHI const int num_controller;
321fad399ebSBalsam CHIHI const int *controller_offset;
322fad399ebSBalsam CHIHI bool need_switch_bank;
323fad399ebSBalsam CHIHI struct thermal_bank_cfg bank_data[MAX_NUM_ZONES];
324fad399ebSBalsam CHIHI enum mtk_thermal_version version;
32533140e66SMarkus Schneider-Pargmann u32 apmixed_buffer_ctl_reg;
32633140e66SMarkus Schneider-Pargmann u32 apmixed_buffer_ctl_mask;
32733140e66SMarkus Schneider-Pargmann u32 apmixed_buffer_ctl_set;
328fad399ebSBalsam CHIHI };
329fad399ebSBalsam CHIHI
330fad399ebSBalsam CHIHI struct mtk_thermal {
331fad399ebSBalsam CHIHI struct device *dev;
332fad399ebSBalsam CHIHI void __iomem *thermal_base;
333fad399ebSBalsam CHIHI
334fad399ebSBalsam CHIHI struct clk *clk_peri_therm;
335fad399ebSBalsam CHIHI struct clk *clk_auxadc;
336fad399ebSBalsam CHIHI /* lock: for getting and putting banks */
337fad399ebSBalsam CHIHI struct mutex lock;
338fad399ebSBalsam CHIHI
339fad399ebSBalsam CHIHI /* Calibration values */
340fad399ebSBalsam CHIHI s32 adc_ge;
341fad399ebSBalsam CHIHI s32 adc_oe;
342fad399ebSBalsam CHIHI s32 degc_cali;
343fad399ebSBalsam CHIHI s32 o_slope;
344fad399ebSBalsam CHIHI s32 o_slope_sign;
345fad399ebSBalsam CHIHI s32 vts[MAX_NUM_VTS];
346fad399ebSBalsam CHIHI
347fad399ebSBalsam CHIHI const struct mtk_thermal_data *conf;
348fad399ebSBalsam CHIHI struct mtk_thermal_bank banks[MAX_NUM_ZONES];
349fad399ebSBalsam CHIHI
350fad399ebSBalsam CHIHI int (*raw_to_mcelsius)(struct mtk_thermal *mt, int sensno, s32 raw);
351fad399ebSBalsam CHIHI };
352fad399ebSBalsam CHIHI
353fad399ebSBalsam CHIHI /* MT8183 thermal sensor data */
354fad399ebSBalsam CHIHI static const int mt8183_bank_data[MT8183_NUM_SENSORS] = {
355fad399ebSBalsam CHIHI MT8183_TS1, MT8183_TS2, MT8183_TS3, MT8183_TS4, MT8183_TS5, MT8183_TSABB
356fad399ebSBalsam CHIHI };
357fad399ebSBalsam CHIHI
358fad399ebSBalsam CHIHI static const int mt8183_msr[MT8183_NUM_SENSORS_PER_ZONE] = {
359fad399ebSBalsam CHIHI TEMP_MSR0_1, TEMP_MSR1_1, TEMP_MSR2_1, TEMP_MSR1, TEMP_MSR0, TEMP_MSR3_1
360fad399ebSBalsam CHIHI };
361fad399ebSBalsam CHIHI
362fad399ebSBalsam CHIHI static const int mt8183_adcpnp[MT8183_NUM_SENSORS_PER_ZONE] = {
363fad399ebSBalsam CHIHI TEMP_ADCPNP0_1, TEMP_ADCPNP1_1, TEMP_ADCPNP2_1,
364fad399ebSBalsam CHIHI TEMP_ADCPNP1, TEMP_ADCPNP0, TEMP_ADCPNP3_1
365fad399ebSBalsam CHIHI };
366fad399ebSBalsam CHIHI
367fad399ebSBalsam CHIHI static const int mt8183_mux_values[MT8183_NUM_SENSORS] = { 0, 1, 2, 3, 4, 0 };
368fad399ebSBalsam CHIHI static const int mt8183_tc_offset[MT8183_NUM_CONTROLLER] = {0x0, 0x100};
369fad399ebSBalsam CHIHI
370fad399ebSBalsam CHIHI static const int mt8183_vts_index[MT8183_NUM_SENSORS] = {
371fad399ebSBalsam CHIHI VTS1, VTS2, VTS3, VTS4, VTS5, VTSABB
372fad399ebSBalsam CHIHI };
373fad399ebSBalsam CHIHI
374fad399ebSBalsam CHIHI /* MT8173 thermal sensor data */
375fad399ebSBalsam CHIHI static const int mt8173_bank_data[MT8173_NUM_ZONES][3] = {
376fad399ebSBalsam CHIHI { MT8173_TS2, MT8173_TS3 },
377fad399ebSBalsam CHIHI { MT8173_TS2, MT8173_TS4 },
378fad399ebSBalsam CHIHI { MT8173_TS1, MT8173_TS2, MT8173_TSABB },
379fad399ebSBalsam CHIHI { MT8173_TS2 },
380fad399ebSBalsam CHIHI };
381fad399ebSBalsam CHIHI
382fad399ebSBalsam CHIHI static const int mt8173_msr[MT8173_NUM_SENSORS_PER_ZONE] = {
383fad399ebSBalsam CHIHI TEMP_MSR0, TEMP_MSR1, TEMP_MSR2, TEMP_MSR3
384fad399ebSBalsam CHIHI };
385fad399ebSBalsam CHIHI
386fad399ebSBalsam CHIHI static const int mt8173_adcpnp[MT8173_NUM_SENSORS_PER_ZONE] = {
387fad399ebSBalsam CHIHI TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2, TEMP_ADCPNP3
388fad399ebSBalsam CHIHI };
389fad399ebSBalsam CHIHI
390fad399ebSBalsam CHIHI static const int mt8173_mux_values[MT8173_NUM_SENSORS] = { 0, 1, 2, 3, 16 };
391fad399ebSBalsam CHIHI static const int mt8173_tc_offset[MT8173_NUM_CONTROLLER] = { 0x0, };
392fad399ebSBalsam CHIHI
393fad399ebSBalsam CHIHI static const int mt8173_vts_index[MT8173_NUM_SENSORS] = {
394fad399ebSBalsam CHIHI VTS1, VTS2, VTS3, VTS4, VTSABB
395fad399ebSBalsam CHIHI };
396fad399ebSBalsam CHIHI
397fad399ebSBalsam CHIHI /* MT2701 thermal sensor data */
398fad399ebSBalsam CHIHI static const int mt2701_bank_data[MT2701_NUM_SENSORS] = {
399fad399ebSBalsam CHIHI MT2701_TS1, MT2701_TS2, MT2701_TSABB
400fad399ebSBalsam CHIHI };
401fad399ebSBalsam CHIHI
402fad399ebSBalsam CHIHI static const int mt2701_msr[MT2701_NUM_SENSORS_PER_ZONE] = {
403fad399ebSBalsam CHIHI TEMP_MSR0, TEMP_MSR1, TEMP_MSR2
404fad399ebSBalsam CHIHI };
405fad399ebSBalsam CHIHI
406fad399ebSBalsam CHIHI static const int mt2701_adcpnp[MT2701_NUM_SENSORS_PER_ZONE] = {
407fad399ebSBalsam CHIHI TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2
408fad399ebSBalsam CHIHI };
409fad399ebSBalsam CHIHI
410fad399ebSBalsam CHIHI static const int mt2701_mux_values[MT2701_NUM_SENSORS] = { 0, 1, 16 };
411fad399ebSBalsam CHIHI static const int mt2701_tc_offset[MT2701_NUM_CONTROLLER] = { 0x0, };
412fad399ebSBalsam CHIHI
413fad399ebSBalsam CHIHI static const int mt2701_vts_index[MT2701_NUM_SENSORS] = {
414fad399ebSBalsam CHIHI VTS1, VTS2, VTS3
415fad399ebSBalsam CHIHI };
416fad399ebSBalsam CHIHI
417fad399ebSBalsam CHIHI /* MT2712 thermal sensor data */
418fad399ebSBalsam CHIHI static const int mt2712_bank_data[MT2712_NUM_SENSORS] = {
419fad399ebSBalsam CHIHI MT2712_TS1, MT2712_TS2, MT2712_TS3, MT2712_TS4
420fad399ebSBalsam CHIHI };
421fad399ebSBalsam CHIHI
422fad399ebSBalsam CHIHI static const int mt2712_msr[MT2712_NUM_SENSORS_PER_ZONE] = {
423fad399ebSBalsam CHIHI TEMP_MSR0, TEMP_MSR1, TEMP_MSR2, TEMP_MSR3
424fad399ebSBalsam CHIHI };
425fad399ebSBalsam CHIHI
426fad399ebSBalsam CHIHI static const int mt2712_adcpnp[MT2712_NUM_SENSORS_PER_ZONE] = {
427fad399ebSBalsam CHIHI TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2, TEMP_ADCPNP3
428fad399ebSBalsam CHIHI };
429fad399ebSBalsam CHIHI
430fad399ebSBalsam CHIHI static const int mt2712_mux_values[MT2712_NUM_SENSORS] = { 0, 1, 2, 3 };
431fad399ebSBalsam CHIHI static const int mt2712_tc_offset[MT2712_NUM_CONTROLLER] = { 0x0, };
432fad399ebSBalsam CHIHI
433fad399ebSBalsam CHIHI static const int mt2712_vts_index[MT2712_NUM_SENSORS] = {
434fad399ebSBalsam CHIHI VTS1, VTS2, VTS3, VTS4
435fad399ebSBalsam CHIHI };
436fad399ebSBalsam CHIHI
437fad399ebSBalsam CHIHI /* MT7622 thermal sensor data */
438fad399ebSBalsam CHIHI static const int mt7622_bank_data[MT7622_NUM_SENSORS] = { MT7622_TS1, };
439fad399ebSBalsam CHIHI static const int mt7622_msr[MT7622_NUM_SENSORS_PER_ZONE] = { TEMP_MSR0, };
440fad399ebSBalsam CHIHI static const int mt7622_adcpnp[MT7622_NUM_SENSORS_PER_ZONE] = { TEMP_ADCPNP0, };
441fad399ebSBalsam CHIHI static const int mt7622_mux_values[MT7622_NUM_SENSORS] = { 0, };
442fad399ebSBalsam CHIHI static const int mt7622_vts_index[MT7622_NUM_SENSORS] = { VTS1 };
443fad399ebSBalsam CHIHI static const int mt7622_tc_offset[MT7622_NUM_CONTROLLER] = { 0x0, };
444fad399ebSBalsam CHIHI
445fad399ebSBalsam CHIHI /* MT7986 thermal sensor data */
446fad399ebSBalsam CHIHI static const int mt7986_bank_data[MT7986_NUM_SENSORS] = { MT7986_TS1, };
447fad399ebSBalsam CHIHI static const int mt7986_msr[MT7986_NUM_SENSORS_PER_ZONE] = { TEMP_MSR0, };
448fad399ebSBalsam CHIHI static const int mt7986_adcpnp[MT7986_NUM_SENSORS_PER_ZONE] = { TEMP_ADCPNP0, };
449fad399ebSBalsam CHIHI static const int mt7986_mux_values[MT7986_NUM_SENSORS] = { 0, };
450fad399ebSBalsam CHIHI static const int mt7986_vts_index[MT7986_NUM_SENSORS] = { VTS1 };
451fad399ebSBalsam CHIHI static const int mt7986_tc_offset[MT7986_NUM_CONTROLLER] = { 0x0, };
452fad399ebSBalsam CHIHI
45356edffdcSFabien Parent /* MT8365 thermal sensor data */
45456edffdcSFabien Parent static const int mt8365_bank_data[MT8365_NUM_SENSORS] = {
45556edffdcSFabien Parent MT8365_TS1, MT8365_TS2, MT8365_TS3
45656edffdcSFabien Parent };
45756edffdcSFabien Parent
45856edffdcSFabien Parent static const int mt8365_msr[MT8365_NUM_SENSORS_PER_ZONE] = {
45956edffdcSFabien Parent TEMP_MSR0, TEMP_MSR1, TEMP_MSR2
46056edffdcSFabien Parent };
46156edffdcSFabien Parent
46256edffdcSFabien Parent static const int mt8365_adcpnp[MT8365_NUM_SENSORS_PER_ZONE] = {
46356edffdcSFabien Parent TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2
46456edffdcSFabien Parent };
46556edffdcSFabien Parent
46656edffdcSFabien Parent static const int mt8365_mux_values[MT8365_NUM_SENSORS] = { 0, 1, 2 };
46756edffdcSFabien Parent static const int mt8365_tc_offset[MT8365_NUM_CONTROLLER] = { 0 };
46856edffdcSFabien Parent
46956edffdcSFabien Parent static const int mt8365_vts_index[MT8365_NUM_SENSORS] = { VTS1, VTS2, VTS3 };
47056edffdcSFabien Parent
471fad399ebSBalsam CHIHI /*
472fad399ebSBalsam CHIHI * The MT8173 thermal controller has four banks. Each bank can read up to
473fad399ebSBalsam CHIHI * four temperature sensors simultaneously. The MT8173 has a total of 5
474fad399ebSBalsam CHIHI * temperature sensors. We use each bank to measure a certain area of the
475fad399ebSBalsam CHIHI * SoC. Since TS2 is located centrally in the SoC it is influenced by multiple
476fad399ebSBalsam CHIHI * areas, hence is used in different banks.
477fad399ebSBalsam CHIHI *
478fad399ebSBalsam CHIHI * The thermal core only gets the maximum temperature of all banks, so
479fad399ebSBalsam CHIHI * the bank concept wouldn't be necessary here. However, the SVS (Smart
480fad399ebSBalsam CHIHI * Voltage Scaling) unit makes its decisions based on the same bank
481fad399ebSBalsam CHIHI * data, and this indeed needs the temperatures of the individual banks
482fad399ebSBalsam CHIHI * for making better decisions.
483fad399ebSBalsam CHIHI */
484fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt8173_thermal_data = {
485fad399ebSBalsam CHIHI .auxadc_channel = MT8173_TEMP_AUXADC_CHANNEL,
486fad399ebSBalsam CHIHI .num_banks = MT8173_NUM_ZONES,
487fad399ebSBalsam CHIHI .num_sensors = MT8173_NUM_SENSORS,
488fad399ebSBalsam CHIHI .vts_index = mt8173_vts_index,
489fad399ebSBalsam CHIHI .cali_val = MT8173_CALIBRATION,
490fad399ebSBalsam CHIHI .num_controller = MT8173_NUM_CONTROLLER,
491fad399ebSBalsam CHIHI .controller_offset = mt8173_tc_offset,
492fad399ebSBalsam CHIHI .need_switch_bank = true,
493fad399ebSBalsam CHIHI .bank_data = {
494fad399ebSBalsam CHIHI {
495fad399ebSBalsam CHIHI .num_sensors = 2,
496fad399ebSBalsam CHIHI .sensors = mt8173_bank_data[0],
497fad399ebSBalsam CHIHI }, {
498fad399ebSBalsam CHIHI .num_sensors = 2,
499fad399ebSBalsam CHIHI .sensors = mt8173_bank_data[1],
500fad399ebSBalsam CHIHI }, {
501fad399ebSBalsam CHIHI .num_sensors = 3,
502fad399ebSBalsam CHIHI .sensors = mt8173_bank_data[2],
503fad399ebSBalsam CHIHI }, {
504fad399ebSBalsam CHIHI .num_sensors = 1,
505fad399ebSBalsam CHIHI .sensors = mt8173_bank_data[3],
506fad399ebSBalsam CHIHI },
507fad399ebSBalsam CHIHI },
508fad399ebSBalsam CHIHI .msr = mt8173_msr,
509fad399ebSBalsam CHIHI .adcpnp = mt8173_adcpnp,
510fad399ebSBalsam CHIHI .sensor_mux_values = mt8173_mux_values,
511fad399ebSBalsam CHIHI .version = MTK_THERMAL_V1,
512fad399ebSBalsam CHIHI };
513fad399ebSBalsam CHIHI
514fad399ebSBalsam CHIHI /*
515fad399ebSBalsam CHIHI * The MT2701 thermal controller has one bank, which can read up to
516fad399ebSBalsam CHIHI * three temperature sensors simultaneously. The MT2701 has a total of 3
517fad399ebSBalsam CHIHI * temperature sensors.
518fad399ebSBalsam CHIHI *
519fad399ebSBalsam CHIHI * The thermal core only gets the maximum temperature of this one bank,
520fad399ebSBalsam CHIHI * so the bank concept wouldn't be necessary here. However, the SVS (Smart
521fad399ebSBalsam CHIHI * Voltage Scaling) unit makes its decisions based on the same bank
522fad399ebSBalsam CHIHI * data.
523fad399ebSBalsam CHIHI */
524fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt2701_thermal_data = {
525fad399ebSBalsam CHIHI .auxadc_channel = MT2701_TEMP_AUXADC_CHANNEL,
526fad399ebSBalsam CHIHI .num_banks = 1,
527fad399ebSBalsam CHIHI .num_sensors = MT2701_NUM_SENSORS,
528fad399ebSBalsam CHIHI .vts_index = mt2701_vts_index,
529fad399ebSBalsam CHIHI .cali_val = MT2701_CALIBRATION,
530fad399ebSBalsam CHIHI .num_controller = MT2701_NUM_CONTROLLER,
531fad399ebSBalsam CHIHI .controller_offset = mt2701_tc_offset,
532fad399ebSBalsam CHIHI .need_switch_bank = true,
533fad399ebSBalsam CHIHI .bank_data = {
534fad399ebSBalsam CHIHI {
535fad399ebSBalsam CHIHI .num_sensors = 3,
536fad399ebSBalsam CHIHI .sensors = mt2701_bank_data,
537fad399ebSBalsam CHIHI },
538fad399ebSBalsam CHIHI },
539fad399ebSBalsam CHIHI .msr = mt2701_msr,
540fad399ebSBalsam CHIHI .adcpnp = mt2701_adcpnp,
541fad399ebSBalsam CHIHI .sensor_mux_values = mt2701_mux_values,
542fad399ebSBalsam CHIHI .version = MTK_THERMAL_V1,
543fad399ebSBalsam CHIHI };
544fad399ebSBalsam CHIHI
545fad399ebSBalsam CHIHI /*
54656edffdcSFabien Parent * The MT8365 thermal controller has one bank, which can read up to
54756edffdcSFabien Parent * four temperature sensors simultaneously. The MT8365 has a total of 3
54856edffdcSFabien Parent * temperature sensors.
54956edffdcSFabien Parent *
55056edffdcSFabien Parent * The thermal core only gets the maximum temperature of this one bank,
55156edffdcSFabien Parent * so the bank concept wouldn't be necessary here. However, the SVS (Smart
55256edffdcSFabien Parent * Voltage Scaling) unit makes its decisions based on the same bank
55356edffdcSFabien Parent * data.
55456edffdcSFabien Parent */
55556edffdcSFabien Parent static const struct mtk_thermal_data mt8365_thermal_data = {
55656edffdcSFabien Parent .auxadc_channel = MT8365_TEMP_AUXADC_CHANNEL,
55756edffdcSFabien Parent .num_banks = MT8365_NUM_BANKS,
55856edffdcSFabien Parent .num_sensors = MT8365_NUM_SENSORS,
55956edffdcSFabien Parent .vts_index = mt8365_vts_index,
56056edffdcSFabien Parent .cali_val = MT8365_CALIBRATION,
56156edffdcSFabien Parent .num_controller = MT8365_NUM_CONTROLLER,
56256edffdcSFabien Parent .controller_offset = mt8365_tc_offset,
56356edffdcSFabien Parent .need_switch_bank = false,
56456edffdcSFabien Parent .bank_data = {
56556edffdcSFabien Parent {
56656edffdcSFabien Parent .num_sensors = MT8365_NUM_SENSORS,
56756edffdcSFabien Parent .sensors = mt8365_bank_data
56856edffdcSFabien Parent },
56956edffdcSFabien Parent },
57056edffdcSFabien Parent .msr = mt8365_msr,
57156edffdcSFabien Parent .adcpnp = mt8365_adcpnp,
57256edffdcSFabien Parent .sensor_mux_values = mt8365_mux_values,
57356edffdcSFabien Parent .version = MTK_THERMAL_V1,
57456edffdcSFabien Parent .apmixed_buffer_ctl_reg = APMIXED_SYS_TS_CON0,
57556edffdcSFabien Parent .apmixed_buffer_ctl_mask = (u32) ~GENMASK(29, 28),
57656edffdcSFabien Parent .apmixed_buffer_ctl_set = 0,
57756edffdcSFabien Parent };
57856edffdcSFabien Parent
57956edffdcSFabien Parent /*
580fad399ebSBalsam CHIHI * The MT2712 thermal controller has one bank, which can read up to
581fad399ebSBalsam CHIHI * four temperature sensors simultaneously. The MT2712 has a total of 4
582fad399ebSBalsam CHIHI * temperature sensors.
583fad399ebSBalsam CHIHI *
584fad399ebSBalsam CHIHI * The thermal core only gets the maximum temperature of this one bank,
585fad399ebSBalsam CHIHI * so the bank concept wouldn't be necessary here. However, the SVS (Smart
586fad399ebSBalsam CHIHI * Voltage Scaling) unit makes its decisions based on the same bank
587fad399ebSBalsam CHIHI * data.
588fad399ebSBalsam CHIHI */
589fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt2712_thermal_data = {
590fad399ebSBalsam CHIHI .auxadc_channel = MT2712_TEMP_AUXADC_CHANNEL,
591fad399ebSBalsam CHIHI .num_banks = 1,
592fad399ebSBalsam CHIHI .num_sensors = MT2712_NUM_SENSORS,
593fad399ebSBalsam CHIHI .vts_index = mt2712_vts_index,
594fad399ebSBalsam CHIHI .cali_val = MT2712_CALIBRATION,
595fad399ebSBalsam CHIHI .num_controller = MT2712_NUM_CONTROLLER,
596fad399ebSBalsam CHIHI .controller_offset = mt2712_tc_offset,
597fad399ebSBalsam CHIHI .need_switch_bank = true,
598fad399ebSBalsam CHIHI .bank_data = {
599fad399ebSBalsam CHIHI {
600fad399ebSBalsam CHIHI .num_sensors = 4,
601fad399ebSBalsam CHIHI .sensors = mt2712_bank_data,
602fad399ebSBalsam CHIHI },
603fad399ebSBalsam CHIHI },
604fad399ebSBalsam CHIHI .msr = mt2712_msr,
605fad399ebSBalsam CHIHI .adcpnp = mt2712_adcpnp,
606fad399ebSBalsam CHIHI .sensor_mux_values = mt2712_mux_values,
607fad399ebSBalsam CHIHI .version = MTK_THERMAL_V1,
608fad399ebSBalsam CHIHI };
609fad399ebSBalsam CHIHI
610fad399ebSBalsam CHIHI /*
611fad399ebSBalsam CHIHI * MT7622 have only one sensing point which uses AUXADC Channel 11 for raw data
612fad399ebSBalsam CHIHI * access.
613fad399ebSBalsam CHIHI */
614fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt7622_thermal_data = {
615fad399ebSBalsam CHIHI .auxadc_channel = MT7622_TEMP_AUXADC_CHANNEL,
616fad399ebSBalsam CHIHI .num_banks = MT7622_NUM_ZONES,
617fad399ebSBalsam CHIHI .num_sensors = MT7622_NUM_SENSORS,
618fad399ebSBalsam CHIHI .vts_index = mt7622_vts_index,
619fad399ebSBalsam CHIHI .cali_val = MT7622_CALIBRATION,
620fad399ebSBalsam CHIHI .num_controller = MT7622_NUM_CONTROLLER,
621fad399ebSBalsam CHIHI .controller_offset = mt7622_tc_offset,
622fad399ebSBalsam CHIHI .need_switch_bank = true,
623fad399ebSBalsam CHIHI .bank_data = {
624fad399ebSBalsam CHIHI {
625fad399ebSBalsam CHIHI .num_sensors = 1,
626fad399ebSBalsam CHIHI .sensors = mt7622_bank_data,
627fad399ebSBalsam CHIHI },
628fad399ebSBalsam CHIHI },
629fad399ebSBalsam CHIHI .msr = mt7622_msr,
630fad399ebSBalsam CHIHI .adcpnp = mt7622_adcpnp,
631fad399ebSBalsam CHIHI .sensor_mux_values = mt7622_mux_values,
632fad399ebSBalsam CHIHI .version = MTK_THERMAL_V2,
63333140e66SMarkus Schneider-Pargmann .apmixed_buffer_ctl_reg = APMIXED_SYS_TS_CON1,
63433140e66SMarkus Schneider-Pargmann .apmixed_buffer_ctl_mask = GENMASK(31, 6) | BIT(3),
63533140e66SMarkus Schneider-Pargmann .apmixed_buffer_ctl_set = BIT(0),
636fad399ebSBalsam CHIHI };
637fad399ebSBalsam CHIHI
638fad399ebSBalsam CHIHI /*
639fad399ebSBalsam CHIHI * The MT8183 thermal controller has one bank for the current SW framework.
640fad399ebSBalsam CHIHI * The MT8183 has a total of 6 temperature sensors.
641fad399ebSBalsam CHIHI * There are two thermal controller to control the six sensor.
642fad399ebSBalsam CHIHI * The first one bind 2 sensor, and the other bind 4 sensors.
643fad399ebSBalsam CHIHI * The thermal core only gets the maximum temperature of all sensor, so
644fad399ebSBalsam CHIHI * the bank concept wouldn't be necessary here. However, the SVS (Smart
645fad399ebSBalsam CHIHI * Voltage Scaling) unit makes its decisions based on the same bank
646fad399ebSBalsam CHIHI * data, and this indeed needs the temperatures of the individual banks
647fad399ebSBalsam CHIHI * for making better decisions.
648fad399ebSBalsam CHIHI */
649fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt8183_thermal_data = {
650fad399ebSBalsam CHIHI .auxadc_channel = MT8183_TEMP_AUXADC_CHANNEL,
651fad399ebSBalsam CHIHI .num_banks = MT8183_NUM_ZONES,
652fad399ebSBalsam CHIHI .num_sensors = MT8183_NUM_SENSORS,
653fad399ebSBalsam CHIHI .vts_index = mt8183_vts_index,
654fad399ebSBalsam CHIHI .cali_val = MT8183_CALIBRATION,
655fad399ebSBalsam CHIHI .num_controller = MT8183_NUM_CONTROLLER,
656fad399ebSBalsam CHIHI .controller_offset = mt8183_tc_offset,
657fad399ebSBalsam CHIHI .need_switch_bank = false,
658fad399ebSBalsam CHIHI .bank_data = {
659fad399ebSBalsam CHIHI {
660fad399ebSBalsam CHIHI .num_sensors = 6,
661fad399ebSBalsam CHIHI .sensors = mt8183_bank_data,
662fad399ebSBalsam CHIHI },
663fad399ebSBalsam CHIHI },
664fad399ebSBalsam CHIHI
665fad399ebSBalsam CHIHI .msr = mt8183_msr,
666fad399ebSBalsam CHIHI .adcpnp = mt8183_adcpnp,
667fad399ebSBalsam CHIHI .sensor_mux_values = mt8183_mux_values,
668fad399ebSBalsam CHIHI .version = MTK_THERMAL_V1,
669fad399ebSBalsam CHIHI };
670fad399ebSBalsam CHIHI
671fad399ebSBalsam CHIHI /*
672fad399ebSBalsam CHIHI * MT7986 uses AUXADC Channel 11 for raw data access.
673fad399ebSBalsam CHIHI */
674fad399ebSBalsam CHIHI static const struct mtk_thermal_data mt7986_thermal_data = {
675fad399ebSBalsam CHIHI .auxadc_channel = MT7986_TEMP_AUXADC_CHANNEL,
676fad399ebSBalsam CHIHI .num_banks = MT7986_NUM_ZONES,
677fad399ebSBalsam CHIHI .num_sensors = MT7986_NUM_SENSORS,
678fad399ebSBalsam CHIHI .vts_index = mt7986_vts_index,
679fad399ebSBalsam CHIHI .cali_val = MT7986_CALIBRATION,
680fad399ebSBalsam CHIHI .num_controller = MT7986_NUM_CONTROLLER,
681fad399ebSBalsam CHIHI .controller_offset = mt7986_tc_offset,
682fad399ebSBalsam CHIHI .need_switch_bank = true,
683fad399ebSBalsam CHIHI .bank_data = {
684fad399ebSBalsam CHIHI {
685fad399ebSBalsam CHIHI .num_sensors = 1,
686fad399ebSBalsam CHIHI .sensors = mt7986_bank_data,
687fad399ebSBalsam CHIHI },
688fad399ebSBalsam CHIHI },
689fad399ebSBalsam CHIHI .msr = mt7986_msr,
690fad399ebSBalsam CHIHI .adcpnp = mt7986_adcpnp,
691fad399ebSBalsam CHIHI .sensor_mux_values = mt7986_mux_values,
692fad399ebSBalsam CHIHI .version = MTK_THERMAL_V3,
693*fe750e27SFrank Wunderlich .apmixed_buffer_ctl_reg = APMIXED_SYS_TS_CON1,
694*fe750e27SFrank Wunderlich .apmixed_buffer_ctl_mask = GENMASK(31, 6) | BIT(3),
695*fe750e27SFrank Wunderlich .apmixed_buffer_ctl_set = BIT(0),
696fad399ebSBalsam CHIHI };
697fad399ebSBalsam CHIHI
mtk_thermal_temp_is_valid(int temp)69847cbb046SAngeloGioacchino Del Regno static bool mtk_thermal_temp_is_valid(int temp)
69947cbb046SAngeloGioacchino Del Regno {
70047cbb046SAngeloGioacchino Del Regno return (temp >= MT8173_TEMP_MIN) && (temp <= MT8173_TEMP_MAX);
70147cbb046SAngeloGioacchino Del Regno }
70247cbb046SAngeloGioacchino Del Regno
703fad399ebSBalsam CHIHI /**
704fad399ebSBalsam CHIHI * raw_to_mcelsius_v1 - convert a raw ADC value to mcelsius
705fad399ebSBalsam CHIHI * @mt: The thermal controller
706fad399ebSBalsam CHIHI * @sensno: sensor number
707fad399ebSBalsam CHIHI * @raw: raw ADC value
708fad399ebSBalsam CHIHI *
709fad399ebSBalsam CHIHI * This converts the raw ADC value to mcelsius using the SoC specific
710fad399ebSBalsam CHIHI * calibration constants
711fad399ebSBalsam CHIHI */
raw_to_mcelsius_v1(struct mtk_thermal * mt,int sensno,s32 raw)712fad399ebSBalsam CHIHI static int raw_to_mcelsius_v1(struct mtk_thermal *mt, int sensno, s32 raw)
713fad399ebSBalsam CHIHI {
714fad399ebSBalsam CHIHI s32 tmp;
715fad399ebSBalsam CHIHI
716fad399ebSBalsam CHIHI raw &= 0xfff;
717fad399ebSBalsam CHIHI
718fad399ebSBalsam CHIHI tmp = 203450520 << 3;
719fad399ebSBalsam CHIHI tmp /= mt->conf->cali_val + mt->o_slope;
720fad399ebSBalsam CHIHI tmp /= 10000 + mt->adc_ge;
721fad399ebSBalsam CHIHI tmp *= raw - mt->vts[sensno] - 3350;
722fad399ebSBalsam CHIHI tmp >>= 3;
723fad399ebSBalsam CHIHI
724fad399ebSBalsam CHIHI return mt->degc_cali * 500 - tmp;
725fad399ebSBalsam CHIHI }
726fad399ebSBalsam CHIHI
raw_to_mcelsius_v2(struct mtk_thermal * mt,int sensno,s32 raw)727fad399ebSBalsam CHIHI static int raw_to_mcelsius_v2(struct mtk_thermal *mt, int sensno, s32 raw)
728fad399ebSBalsam CHIHI {
729fad399ebSBalsam CHIHI s32 format_1;
730fad399ebSBalsam CHIHI s32 format_2;
731fad399ebSBalsam CHIHI s32 g_oe;
732fad399ebSBalsam CHIHI s32 g_gain;
733fad399ebSBalsam CHIHI s32 g_x_roomt;
734fad399ebSBalsam CHIHI s32 tmp;
735fad399ebSBalsam CHIHI
736fad399ebSBalsam CHIHI if (raw == 0)
737fad399ebSBalsam CHIHI return 0;
738fad399ebSBalsam CHIHI
739fad399ebSBalsam CHIHI raw &= 0xfff;
740fad399ebSBalsam CHIHI g_gain = 10000 + (((mt->adc_ge - 512) * 10000) >> 12);
741fad399ebSBalsam CHIHI g_oe = mt->adc_oe - 512;
742fad399ebSBalsam CHIHI format_1 = mt->vts[VTS2] + 3105 - g_oe;
743fad399ebSBalsam CHIHI format_2 = (mt->degc_cali * 10) >> 1;
744fad399ebSBalsam CHIHI g_x_roomt = (((format_1 * 10000) >> 12) * 10000) / g_gain;
745fad399ebSBalsam CHIHI
746fad399ebSBalsam CHIHI tmp = (((((raw - g_oe) * 10000) >> 12) * 10000) / g_gain) - g_x_roomt;
747fad399ebSBalsam CHIHI tmp = tmp * 10 * 100 / 11;
748fad399ebSBalsam CHIHI
749fad399ebSBalsam CHIHI if (mt->o_slope_sign == 0)
750fad399ebSBalsam CHIHI tmp = tmp / (165 - mt->o_slope);
751fad399ebSBalsam CHIHI else
752fad399ebSBalsam CHIHI tmp = tmp / (165 + mt->o_slope);
753fad399ebSBalsam CHIHI
754fad399ebSBalsam CHIHI return (format_2 - tmp) * 100;
755fad399ebSBalsam CHIHI }
756fad399ebSBalsam CHIHI
raw_to_mcelsius_v3(struct mtk_thermal * mt,int sensno,s32 raw)757fad399ebSBalsam CHIHI static int raw_to_mcelsius_v3(struct mtk_thermal *mt, int sensno, s32 raw)
758fad399ebSBalsam CHIHI {
759fad399ebSBalsam CHIHI s32 tmp;
760fad399ebSBalsam CHIHI
761fad399ebSBalsam CHIHI if (raw == 0)
762fad399ebSBalsam CHIHI return 0;
763fad399ebSBalsam CHIHI
764fad399ebSBalsam CHIHI raw &= 0xfff;
765fad399ebSBalsam CHIHI tmp = 100000 * 15 / 16 * 10000;
766fad399ebSBalsam CHIHI tmp /= 4096 - 512 + mt->adc_ge;
767fad399ebSBalsam CHIHI tmp /= 1490;
768fad399ebSBalsam CHIHI tmp *= raw - mt->vts[sensno] - 2900;
769fad399ebSBalsam CHIHI
770fad399ebSBalsam CHIHI return mt->degc_cali * 500 - tmp;
771fad399ebSBalsam CHIHI }
772fad399ebSBalsam CHIHI
773fad399ebSBalsam CHIHI /**
774fad399ebSBalsam CHIHI * mtk_thermal_get_bank - get bank
775fad399ebSBalsam CHIHI * @bank: The bank
776fad399ebSBalsam CHIHI *
777fad399ebSBalsam CHIHI * The bank registers are banked, we have to select a bank in the
778fad399ebSBalsam CHIHI * PTPCORESEL register to access it.
779fad399ebSBalsam CHIHI */
mtk_thermal_get_bank(struct mtk_thermal_bank * bank)780fad399ebSBalsam CHIHI static void mtk_thermal_get_bank(struct mtk_thermal_bank *bank)
781fad399ebSBalsam CHIHI {
782fad399ebSBalsam CHIHI struct mtk_thermal *mt = bank->mt;
783fad399ebSBalsam CHIHI u32 val;
784fad399ebSBalsam CHIHI
785fad399ebSBalsam CHIHI if (mt->conf->need_switch_bank) {
786fad399ebSBalsam CHIHI mutex_lock(&mt->lock);
787fad399ebSBalsam CHIHI
788fad399ebSBalsam CHIHI val = readl(mt->thermal_base + PTPCORESEL);
789fad399ebSBalsam CHIHI val &= ~0xf;
790fad399ebSBalsam CHIHI val |= bank->id;
791fad399ebSBalsam CHIHI writel(val, mt->thermal_base + PTPCORESEL);
792fad399ebSBalsam CHIHI }
793fad399ebSBalsam CHIHI }
794fad399ebSBalsam CHIHI
795fad399ebSBalsam CHIHI /**
796fad399ebSBalsam CHIHI * mtk_thermal_put_bank - release bank
797fad399ebSBalsam CHIHI * @bank: The bank
798fad399ebSBalsam CHIHI *
799fad399ebSBalsam CHIHI * release a bank previously taken with mtk_thermal_get_bank,
800fad399ebSBalsam CHIHI */
mtk_thermal_put_bank(struct mtk_thermal_bank * bank)801fad399ebSBalsam CHIHI static void mtk_thermal_put_bank(struct mtk_thermal_bank *bank)
802fad399ebSBalsam CHIHI {
803fad399ebSBalsam CHIHI struct mtk_thermal *mt = bank->mt;
804fad399ebSBalsam CHIHI
805fad399ebSBalsam CHIHI if (mt->conf->need_switch_bank)
806fad399ebSBalsam CHIHI mutex_unlock(&mt->lock);
807fad399ebSBalsam CHIHI }
808fad399ebSBalsam CHIHI
809fad399ebSBalsam CHIHI /**
810fad399ebSBalsam CHIHI * mtk_thermal_bank_temperature - get the temperature of a bank
811fad399ebSBalsam CHIHI * @bank: The bank
812fad399ebSBalsam CHIHI *
813fad399ebSBalsam CHIHI * The temperature of a bank is considered the maximum temperature of
814fad399ebSBalsam CHIHI * the sensors associated to the bank.
815fad399ebSBalsam CHIHI */
mtk_thermal_bank_temperature(struct mtk_thermal_bank * bank)816fad399ebSBalsam CHIHI static int mtk_thermal_bank_temperature(struct mtk_thermal_bank *bank)
817fad399ebSBalsam CHIHI {
818fad399ebSBalsam CHIHI struct mtk_thermal *mt = bank->mt;
819fad399ebSBalsam CHIHI const struct mtk_thermal_data *conf = mt->conf;
820fad399ebSBalsam CHIHI int i, temp = INT_MIN, max = INT_MIN;
821fad399ebSBalsam CHIHI u32 raw;
822fad399ebSBalsam CHIHI
823fad399ebSBalsam CHIHI for (i = 0; i < conf->bank_data[bank->id].num_sensors; i++) {
824fad399ebSBalsam CHIHI raw = readl(mt->thermal_base + conf->msr[i]);
825fad399ebSBalsam CHIHI
826fad399ebSBalsam CHIHI temp = mt->raw_to_mcelsius(
827fad399ebSBalsam CHIHI mt, conf->bank_data[bank->id].sensors[i], raw);
828fad399ebSBalsam CHIHI
8290a677eeaSAngeloGioacchino Del Regno /*
83047cbb046SAngeloGioacchino Del Regno * Depending on the filt/sen intervals and ADC polling time,
83147cbb046SAngeloGioacchino Del Regno * we may need up to 60 milliseconds after initialization: this
83247cbb046SAngeloGioacchino Del Regno * will result in the first reading containing an out of range
83347cbb046SAngeloGioacchino Del Regno * temperature value.
83447cbb046SAngeloGioacchino Del Regno * Validate the reading to both address the aforementioned issue
83547cbb046SAngeloGioacchino Del Regno * and to eventually avoid bogus readings during runtime in the
83647cbb046SAngeloGioacchino Del Regno * event that the AUXADC gets unstable due to high EMI, etc.
8370a677eeaSAngeloGioacchino Del Regno */
83847cbb046SAngeloGioacchino Del Regno if (!mtk_thermal_temp_is_valid(temp))
83947cbb046SAngeloGioacchino Del Regno temp = THERMAL_TEMP_INVALID;
8400a677eeaSAngeloGioacchino Del Regno
841fad399ebSBalsam CHIHI if (temp > max)
842fad399ebSBalsam CHIHI max = temp;
843fad399ebSBalsam CHIHI }
844fad399ebSBalsam CHIHI
845fad399ebSBalsam CHIHI return max;
846fad399ebSBalsam CHIHI }
847fad399ebSBalsam CHIHI
mtk_read_temp(struct thermal_zone_device * tz,int * temperature)848fad399ebSBalsam CHIHI static int mtk_read_temp(struct thermal_zone_device *tz, int *temperature)
849fad399ebSBalsam CHIHI {
8505f68d078SDaniel Lezcano struct mtk_thermal *mt = thermal_zone_device_priv(tz);
851fad399ebSBalsam CHIHI int i;
852fad399ebSBalsam CHIHI int tempmax = INT_MIN;
853fad399ebSBalsam CHIHI
854fad399ebSBalsam CHIHI for (i = 0; i < mt->conf->num_banks; i++) {
855fad399ebSBalsam CHIHI struct mtk_thermal_bank *bank = &mt->banks[i];
856fad399ebSBalsam CHIHI
857fad399ebSBalsam CHIHI mtk_thermal_get_bank(bank);
858fad399ebSBalsam CHIHI
859fad399ebSBalsam CHIHI tempmax = max(tempmax, mtk_thermal_bank_temperature(bank));
860fad399ebSBalsam CHIHI
861fad399ebSBalsam CHIHI mtk_thermal_put_bank(bank);
862fad399ebSBalsam CHIHI }
863fad399ebSBalsam CHIHI
864fad399ebSBalsam CHIHI *temperature = tempmax;
865fad399ebSBalsam CHIHI
866fad399ebSBalsam CHIHI return 0;
867fad399ebSBalsam CHIHI }
868fad399ebSBalsam CHIHI
869fad399ebSBalsam CHIHI static const struct thermal_zone_device_ops mtk_thermal_ops = {
870fad399ebSBalsam CHIHI .get_temp = mtk_read_temp,
871fad399ebSBalsam CHIHI };
872fad399ebSBalsam CHIHI
mtk_thermal_init_bank(struct mtk_thermal * mt,int num,u32 apmixed_phys_base,u32 auxadc_phys_base,int ctrl_id)873fad399ebSBalsam CHIHI static void mtk_thermal_init_bank(struct mtk_thermal *mt, int num,
874fad399ebSBalsam CHIHI u32 apmixed_phys_base, u32 auxadc_phys_base,
875fad399ebSBalsam CHIHI int ctrl_id)
876fad399ebSBalsam CHIHI {
877fad399ebSBalsam CHIHI struct mtk_thermal_bank *bank = &mt->banks[num];
878fad399ebSBalsam CHIHI const struct mtk_thermal_data *conf = mt->conf;
879fad399ebSBalsam CHIHI int i;
880fad399ebSBalsam CHIHI
881fad399ebSBalsam CHIHI int offset = mt->conf->controller_offset[ctrl_id];
882fad399ebSBalsam CHIHI void __iomem *controller_base = mt->thermal_base + offset;
883fad399ebSBalsam CHIHI
884fad399ebSBalsam CHIHI bank->id = num;
885fad399ebSBalsam CHIHI bank->mt = mt;
886fad399ebSBalsam CHIHI
887fad399ebSBalsam CHIHI mtk_thermal_get_bank(bank);
888fad399ebSBalsam CHIHI
889fad399ebSBalsam CHIHI /* bus clock 66M counting unit is 12 * 15.15ns * 256 = 46.540us */
890fad399ebSBalsam CHIHI writel(TEMP_MONCTL1_PERIOD_UNIT(12), controller_base + TEMP_MONCTL1);
891fad399ebSBalsam CHIHI
892fad399ebSBalsam CHIHI /*
893fad399ebSBalsam CHIHI * filt interval is 1 * 46.540us = 46.54us,
894fad399ebSBalsam CHIHI * sen interval is 429 * 46.540us = 19.96ms
895fad399ebSBalsam CHIHI */
896fad399ebSBalsam CHIHI writel(TEMP_MONCTL2_FILTER_INTERVAL(1) |
897fad399ebSBalsam CHIHI TEMP_MONCTL2_SENSOR_INTERVAL(429),
898fad399ebSBalsam CHIHI controller_base + TEMP_MONCTL2);
899fad399ebSBalsam CHIHI
900fad399ebSBalsam CHIHI /* poll is set to 10u */
901fad399ebSBalsam CHIHI writel(TEMP_AHBPOLL_ADC_POLL_INTERVAL(768),
902fad399ebSBalsam CHIHI controller_base + TEMP_AHBPOLL);
903fad399ebSBalsam CHIHI
904fad399ebSBalsam CHIHI /* temperature sampling control, 1 sample */
905fad399ebSBalsam CHIHI writel(0x0, controller_base + TEMP_MSRCTL0);
906fad399ebSBalsam CHIHI
907fad399ebSBalsam CHIHI /* exceed this polling time, IRQ would be inserted */
908fad399ebSBalsam CHIHI writel(0xffffffff, controller_base + TEMP_AHBTO);
909fad399ebSBalsam CHIHI
910fad399ebSBalsam CHIHI /* number of interrupts per event, 1 is enough */
911fad399ebSBalsam CHIHI writel(0x0, controller_base + TEMP_MONIDET0);
912fad399ebSBalsam CHIHI writel(0x0, controller_base + TEMP_MONIDET1);
913fad399ebSBalsam CHIHI
914fad399ebSBalsam CHIHI /*
915fad399ebSBalsam CHIHI * The MT8173 thermal controller does not have its own ADC. Instead it
916fad399ebSBalsam CHIHI * uses AHB bus accesses to control the AUXADC. To do this the thermal
917fad399ebSBalsam CHIHI * controller has to be programmed with the physical addresses of the
918fad399ebSBalsam CHIHI * AUXADC registers and with the various bit positions in the AUXADC.
919fad399ebSBalsam CHIHI * Also the thermal controller controls a mux in the APMIXEDSYS register
920fad399ebSBalsam CHIHI * space.
921fad399ebSBalsam CHIHI */
922fad399ebSBalsam CHIHI
923fad399ebSBalsam CHIHI /*
924fad399ebSBalsam CHIHI * this value will be stored to TEMP_PNPMUXADDR (TEMP_SPARE0)
925fad399ebSBalsam CHIHI * automatically by hw
926fad399ebSBalsam CHIHI */
927fad399ebSBalsam CHIHI writel(BIT(conf->auxadc_channel), controller_base + TEMP_ADCMUX);
928fad399ebSBalsam CHIHI
929fad399ebSBalsam CHIHI /* AHB address for auxadc mux selection */
930fad399ebSBalsam CHIHI writel(auxadc_phys_base + AUXADC_CON1_CLR_V,
931fad399ebSBalsam CHIHI controller_base + TEMP_ADCMUXADDR);
932fad399ebSBalsam CHIHI
933fad399ebSBalsam CHIHI if (mt->conf->version == MTK_THERMAL_V1) {
934fad399ebSBalsam CHIHI /* AHB address for pnp sensor mux selection */
935fad399ebSBalsam CHIHI writel(apmixed_phys_base + APMIXED_SYS_TS_CON1,
936fad399ebSBalsam CHIHI controller_base + TEMP_PNPMUXADDR);
937fad399ebSBalsam CHIHI }
938fad399ebSBalsam CHIHI
939fad399ebSBalsam CHIHI /* AHB value for auxadc enable */
940fad399ebSBalsam CHIHI writel(BIT(conf->auxadc_channel), controller_base + TEMP_ADCEN);
941fad399ebSBalsam CHIHI
942fad399ebSBalsam CHIHI /* AHB address for auxadc enable (channel 0 immediate mode selected) */
943fad399ebSBalsam CHIHI writel(auxadc_phys_base + AUXADC_CON1_SET_V,
944fad399ebSBalsam CHIHI controller_base + TEMP_ADCENADDR);
945fad399ebSBalsam CHIHI
946fad399ebSBalsam CHIHI /* AHB address for auxadc valid bit */
947fad399ebSBalsam CHIHI writel(auxadc_phys_base + AUXADC_DATA(conf->auxadc_channel),
948fad399ebSBalsam CHIHI controller_base + TEMP_ADCVALIDADDR);
949fad399ebSBalsam CHIHI
950fad399ebSBalsam CHIHI /* AHB address for auxadc voltage output */
951fad399ebSBalsam CHIHI writel(auxadc_phys_base + AUXADC_DATA(conf->auxadc_channel),
952fad399ebSBalsam CHIHI controller_base + TEMP_ADCVOLTADDR);
953fad399ebSBalsam CHIHI
954fad399ebSBalsam CHIHI /* read valid & voltage are at the same register */
955fad399ebSBalsam CHIHI writel(0x0, controller_base + TEMP_RDCTRL);
956fad399ebSBalsam CHIHI
957fad399ebSBalsam CHIHI /* indicate where the valid bit is */
958fad399ebSBalsam CHIHI writel(TEMP_ADCVALIDMASK_VALID_HIGH | TEMP_ADCVALIDMASK_VALID_POS(12),
959fad399ebSBalsam CHIHI controller_base + TEMP_ADCVALIDMASK);
960fad399ebSBalsam CHIHI
961fad399ebSBalsam CHIHI /* no shift */
962fad399ebSBalsam CHIHI writel(0x0, controller_base + TEMP_ADCVOLTAGESHIFT);
963fad399ebSBalsam CHIHI
964fad399ebSBalsam CHIHI /* enable auxadc mux write transaction */
965fad399ebSBalsam CHIHI writel(TEMP_ADCWRITECTRL_ADC_MUX_WRITE,
966fad399ebSBalsam CHIHI controller_base + TEMP_ADCWRITECTRL);
967fad399ebSBalsam CHIHI
968fad399ebSBalsam CHIHI for (i = 0; i < conf->bank_data[num].num_sensors; i++)
969fad399ebSBalsam CHIHI writel(conf->sensor_mux_values[conf->bank_data[num].sensors[i]],
970fad399ebSBalsam CHIHI mt->thermal_base + conf->adcpnp[i]);
971fad399ebSBalsam CHIHI
972fad399ebSBalsam CHIHI writel((1 << conf->bank_data[num].num_sensors) - 1,
973fad399ebSBalsam CHIHI controller_base + TEMP_MONCTL0);
974fad399ebSBalsam CHIHI
975fad399ebSBalsam CHIHI writel(TEMP_ADCWRITECTRL_ADC_PNP_WRITE |
976fad399ebSBalsam CHIHI TEMP_ADCWRITECTRL_ADC_MUX_WRITE,
977fad399ebSBalsam CHIHI controller_base + TEMP_ADCWRITECTRL);
978fad399ebSBalsam CHIHI
979fad399ebSBalsam CHIHI mtk_thermal_put_bank(bank);
980fad399ebSBalsam CHIHI }
981fad399ebSBalsam CHIHI
of_get_phys_base(struct device_node * np)982fad399ebSBalsam CHIHI static u64 of_get_phys_base(struct device_node *np)
983fad399ebSBalsam CHIHI {
984f0fb67c2SRob Herring struct resource res;
985fad399ebSBalsam CHIHI
986f0fb67c2SRob Herring if (of_address_to_resource(np, 0, &res))
987fad399ebSBalsam CHIHI return OF_BAD_ADDR;
988fad399ebSBalsam CHIHI
989f0fb67c2SRob Herring return res.start;
990fad399ebSBalsam CHIHI }
991fad399ebSBalsam CHIHI
mtk_thermal_extract_efuse_v1(struct mtk_thermal * mt,u32 * buf)992fad399ebSBalsam CHIHI static int mtk_thermal_extract_efuse_v1(struct mtk_thermal *mt, u32 *buf)
993fad399ebSBalsam CHIHI {
994fad399ebSBalsam CHIHI int i;
995fad399ebSBalsam CHIHI
996fad399ebSBalsam CHIHI if (!(buf[0] & CALIB_BUF0_VALID_V1))
997fad399ebSBalsam CHIHI return -EINVAL;
998fad399ebSBalsam CHIHI
999fad399ebSBalsam CHIHI mt->adc_ge = CALIB_BUF1_ADC_GE_V1(buf[1]);
1000fad399ebSBalsam CHIHI
1001fad399ebSBalsam CHIHI for (i = 0; i < mt->conf->num_sensors; i++) {
1002fad399ebSBalsam CHIHI switch (mt->conf->vts_index[i]) {
1003fad399ebSBalsam CHIHI case VTS1:
1004fad399ebSBalsam CHIHI mt->vts[VTS1] = CALIB_BUF0_VTS_TS1_V1(buf[0]);
1005fad399ebSBalsam CHIHI break;
1006fad399ebSBalsam CHIHI case VTS2:
1007fad399ebSBalsam CHIHI mt->vts[VTS2] = CALIB_BUF0_VTS_TS2_V1(buf[0]);
1008fad399ebSBalsam CHIHI break;
1009fad399ebSBalsam CHIHI case VTS3:
1010fad399ebSBalsam CHIHI mt->vts[VTS3] = CALIB_BUF1_VTS_TS3_V1(buf[1]);
1011fad399ebSBalsam CHIHI break;
1012fad399ebSBalsam CHIHI case VTS4:
1013fad399ebSBalsam CHIHI mt->vts[VTS4] = CALIB_BUF2_VTS_TS4_V1(buf[2]);
1014fad399ebSBalsam CHIHI break;
1015fad399ebSBalsam CHIHI case VTS5:
1016fad399ebSBalsam CHIHI mt->vts[VTS5] = CALIB_BUF2_VTS_TS5_V1(buf[2]);
1017fad399ebSBalsam CHIHI break;
1018fad399ebSBalsam CHIHI case VTSABB:
1019fad399ebSBalsam CHIHI mt->vts[VTSABB] =
1020fad399ebSBalsam CHIHI CALIB_BUF2_VTS_TSABB_V1(buf[2]);
1021fad399ebSBalsam CHIHI break;
1022fad399ebSBalsam CHIHI default:
1023fad399ebSBalsam CHIHI break;
1024fad399ebSBalsam CHIHI }
1025fad399ebSBalsam CHIHI }
1026fad399ebSBalsam CHIHI
1027fad399ebSBalsam CHIHI mt->degc_cali = CALIB_BUF0_DEGC_CALI_V1(buf[0]);
1028fad399ebSBalsam CHIHI if (CALIB_BUF1_ID_V1(buf[1]) &
1029fad399ebSBalsam CHIHI CALIB_BUF0_O_SLOPE_SIGN_V1(buf[0]))
1030fad399ebSBalsam CHIHI mt->o_slope = -CALIB_BUF0_O_SLOPE_V1(buf[0]);
1031fad399ebSBalsam CHIHI else
1032fad399ebSBalsam CHIHI mt->o_slope = CALIB_BUF0_O_SLOPE_V1(buf[0]);
1033fad399ebSBalsam CHIHI
1034fad399ebSBalsam CHIHI return 0;
1035fad399ebSBalsam CHIHI }
1036fad399ebSBalsam CHIHI
mtk_thermal_extract_efuse_v2(struct mtk_thermal * mt,u32 * buf)1037fad399ebSBalsam CHIHI static int mtk_thermal_extract_efuse_v2(struct mtk_thermal *mt, u32 *buf)
1038fad399ebSBalsam CHIHI {
1039fad399ebSBalsam CHIHI if (!CALIB_BUF1_VALID_V2(buf[1]))
1040fad399ebSBalsam CHIHI return -EINVAL;
1041fad399ebSBalsam CHIHI
1042fad399ebSBalsam CHIHI mt->adc_oe = CALIB_BUF0_ADC_OE_V2(buf[0]);
1043fad399ebSBalsam CHIHI mt->adc_ge = CALIB_BUF0_ADC_GE_V2(buf[0]);
1044fad399ebSBalsam CHIHI mt->degc_cali = CALIB_BUF0_DEGC_CALI_V2(buf[0]);
1045fad399ebSBalsam CHIHI mt->o_slope = CALIB_BUF0_O_SLOPE_V2(buf[0]);
1046fad399ebSBalsam CHIHI mt->vts[VTS1] = CALIB_BUF1_VTS_TS1_V2(buf[1]);
1047fad399ebSBalsam CHIHI mt->vts[VTS2] = CALIB_BUF1_VTS_TS2_V2(buf[1]);
1048fad399ebSBalsam CHIHI mt->vts[VTSABB] = CALIB_BUF1_VTS_TSABB_V2(buf[1]);
1049fad399ebSBalsam CHIHI mt->o_slope_sign = CALIB_BUF1_O_SLOPE_SIGN_V2(buf[1]);
1050fad399ebSBalsam CHIHI
1051fad399ebSBalsam CHIHI return 0;
1052fad399ebSBalsam CHIHI }
1053fad399ebSBalsam CHIHI
mtk_thermal_extract_efuse_v3(struct mtk_thermal * mt,u32 * buf)1054fad399ebSBalsam CHIHI static int mtk_thermal_extract_efuse_v3(struct mtk_thermal *mt, u32 *buf)
1055fad399ebSBalsam CHIHI {
1056fad399ebSBalsam CHIHI if (!CALIB_BUF1_VALID_V3(buf[1]))
1057fad399ebSBalsam CHIHI return -EINVAL;
1058fad399ebSBalsam CHIHI
1059fad399ebSBalsam CHIHI mt->adc_ge = CALIB_BUF0_ADC_GE_V3(buf[0]);
1060fad399ebSBalsam CHIHI mt->degc_cali = CALIB_BUF0_DEGC_CALI_V3(buf[0]);
1061fad399ebSBalsam CHIHI mt->o_slope = CALIB_BUF0_O_SLOPE_V3(buf[0]);
1062fad399ebSBalsam CHIHI mt->vts[VTS1] = CALIB_BUF1_VTS_TS1_V3(buf[1]);
1063fad399ebSBalsam CHIHI mt->vts[VTS2] = CALIB_BUF1_VTS_TS2_V3(buf[1]);
1064fad399ebSBalsam CHIHI mt->vts[VTSABB] = CALIB_BUF1_VTS_TSABB_V3(buf[1]);
1065fad399ebSBalsam CHIHI mt->o_slope_sign = CALIB_BUF1_O_SLOPE_SIGN_V3(buf[1]);
1066fad399ebSBalsam CHIHI
1067fad399ebSBalsam CHIHI if (CALIB_BUF1_ID_V3(buf[1]) == 0)
1068fad399ebSBalsam CHIHI mt->o_slope = 0;
1069fad399ebSBalsam CHIHI
1070fad399ebSBalsam CHIHI return 0;
1071fad399ebSBalsam CHIHI }
1072fad399ebSBalsam CHIHI
mtk_thermal_get_calibration_data(struct device * dev,struct mtk_thermal * mt)1073fad399ebSBalsam CHIHI static int mtk_thermal_get_calibration_data(struct device *dev,
1074fad399ebSBalsam CHIHI struct mtk_thermal *mt)
1075fad399ebSBalsam CHIHI {
1076fad399ebSBalsam CHIHI struct nvmem_cell *cell;
1077fad399ebSBalsam CHIHI u32 *buf;
1078fad399ebSBalsam CHIHI size_t len;
1079fad399ebSBalsam CHIHI int i, ret = 0;
1080fad399ebSBalsam CHIHI
1081fad399ebSBalsam CHIHI /* Start with default values */
1082fad399ebSBalsam CHIHI mt->adc_ge = 512;
1083fad399ebSBalsam CHIHI mt->adc_oe = 512;
1084fad399ebSBalsam CHIHI for (i = 0; i < mt->conf->num_sensors; i++)
1085fad399ebSBalsam CHIHI mt->vts[i] = 260;
1086fad399ebSBalsam CHIHI mt->degc_cali = 40;
1087fad399ebSBalsam CHIHI mt->o_slope = 0;
1088fad399ebSBalsam CHIHI
1089fad399ebSBalsam CHIHI cell = nvmem_cell_get(dev, "calibration-data");
1090fad399ebSBalsam CHIHI if (IS_ERR(cell)) {
1091fad399ebSBalsam CHIHI if (PTR_ERR(cell) == -EPROBE_DEFER)
1092fad399ebSBalsam CHIHI return PTR_ERR(cell);
1093fad399ebSBalsam CHIHI return 0;
1094fad399ebSBalsam CHIHI }
1095fad399ebSBalsam CHIHI
1096fad399ebSBalsam CHIHI buf = (u32 *)nvmem_cell_read(cell, &len);
1097fad399ebSBalsam CHIHI
1098fad399ebSBalsam CHIHI nvmem_cell_put(cell);
1099fad399ebSBalsam CHIHI
1100fad399ebSBalsam CHIHI if (IS_ERR(buf))
1101fad399ebSBalsam CHIHI return PTR_ERR(buf);
1102fad399ebSBalsam CHIHI
1103fad399ebSBalsam CHIHI if (len < 3 * sizeof(u32)) {
1104fad399ebSBalsam CHIHI dev_warn(dev, "invalid calibration data\n");
1105fad399ebSBalsam CHIHI ret = -EINVAL;
1106fad399ebSBalsam CHIHI goto out;
1107fad399ebSBalsam CHIHI }
1108fad399ebSBalsam CHIHI
1109fad399ebSBalsam CHIHI switch (mt->conf->version) {
1110fad399ebSBalsam CHIHI case MTK_THERMAL_V1:
1111fad399ebSBalsam CHIHI ret = mtk_thermal_extract_efuse_v1(mt, buf);
1112fad399ebSBalsam CHIHI break;
1113fad399ebSBalsam CHIHI case MTK_THERMAL_V2:
1114fad399ebSBalsam CHIHI ret = mtk_thermal_extract_efuse_v2(mt, buf);
1115fad399ebSBalsam CHIHI break;
1116fad399ebSBalsam CHIHI case MTK_THERMAL_V3:
1117fad399ebSBalsam CHIHI ret = mtk_thermal_extract_efuse_v3(mt, buf);
1118fad399ebSBalsam CHIHI break;
1119fad399ebSBalsam CHIHI default:
1120fad399ebSBalsam CHIHI ret = -EINVAL;
1121fad399ebSBalsam CHIHI break;
1122fad399ebSBalsam CHIHI }
1123fad399ebSBalsam CHIHI
1124fad399ebSBalsam CHIHI if (ret) {
1125fad399ebSBalsam CHIHI dev_info(dev, "Device not calibrated, using default calibration values\n");
1126fad399ebSBalsam CHIHI ret = 0;
1127fad399ebSBalsam CHIHI }
1128fad399ebSBalsam CHIHI
1129fad399ebSBalsam CHIHI out:
1130fad399ebSBalsam CHIHI kfree(buf);
1131fad399ebSBalsam CHIHI
1132fad399ebSBalsam CHIHI return ret;
1133fad399ebSBalsam CHIHI }
1134fad399ebSBalsam CHIHI
1135fad399ebSBalsam CHIHI static const struct of_device_id mtk_thermal_of_match[] = {
1136fad399ebSBalsam CHIHI {
1137fad399ebSBalsam CHIHI .compatible = "mediatek,mt8173-thermal",
1138fad399ebSBalsam CHIHI .data = (void *)&mt8173_thermal_data,
1139fad399ebSBalsam CHIHI },
1140fad399ebSBalsam CHIHI {
1141fad399ebSBalsam CHIHI .compatible = "mediatek,mt2701-thermal",
1142fad399ebSBalsam CHIHI .data = (void *)&mt2701_thermal_data,
1143fad399ebSBalsam CHIHI },
1144fad399ebSBalsam CHIHI {
1145fad399ebSBalsam CHIHI .compatible = "mediatek,mt2712-thermal",
1146fad399ebSBalsam CHIHI .data = (void *)&mt2712_thermal_data,
1147fad399ebSBalsam CHIHI },
1148fad399ebSBalsam CHIHI {
1149fad399ebSBalsam CHIHI .compatible = "mediatek,mt7622-thermal",
1150fad399ebSBalsam CHIHI .data = (void *)&mt7622_thermal_data,
1151fad399ebSBalsam CHIHI },
1152fad399ebSBalsam CHIHI {
1153fad399ebSBalsam CHIHI .compatible = "mediatek,mt7986-thermal",
1154fad399ebSBalsam CHIHI .data = (void *)&mt7986_thermal_data,
1155fad399ebSBalsam CHIHI },
1156fad399ebSBalsam CHIHI {
1157fad399ebSBalsam CHIHI .compatible = "mediatek,mt8183-thermal",
1158fad399ebSBalsam CHIHI .data = (void *)&mt8183_thermal_data,
115956edffdcSFabien Parent },
116056edffdcSFabien Parent {
116156edffdcSFabien Parent .compatible = "mediatek,mt8365-thermal",
116256edffdcSFabien Parent .data = (void *)&mt8365_thermal_data,
1163fad399ebSBalsam CHIHI }, {
1164fad399ebSBalsam CHIHI },
1165fad399ebSBalsam CHIHI };
1166fad399ebSBalsam CHIHI MODULE_DEVICE_TABLE(of, mtk_thermal_of_match);
1167fad399ebSBalsam CHIHI
mtk_thermal_turn_on_buffer(struct mtk_thermal * mt,void __iomem * apmixed_base)116833140e66SMarkus Schneider-Pargmann static void mtk_thermal_turn_on_buffer(struct mtk_thermal *mt,
116933140e66SMarkus Schneider-Pargmann void __iomem *apmixed_base)
1170fad399ebSBalsam CHIHI {
117133140e66SMarkus Schneider-Pargmann u32 tmp;
1172fad399ebSBalsam CHIHI
117333140e66SMarkus Schneider-Pargmann if (!mt->conf->apmixed_buffer_ctl_reg)
117433140e66SMarkus Schneider-Pargmann return;
117533140e66SMarkus Schneider-Pargmann
117633140e66SMarkus Schneider-Pargmann tmp = readl(apmixed_base + mt->conf->apmixed_buffer_ctl_reg);
117733140e66SMarkus Schneider-Pargmann tmp &= mt->conf->apmixed_buffer_ctl_mask;
117833140e66SMarkus Schneider-Pargmann tmp |= mt->conf->apmixed_buffer_ctl_set;
117933140e66SMarkus Schneider-Pargmann writel(tmp, apmixed_base + mt->conf->apmixed_buffer_ctl_reg);
1180fad399ebSBalsam CHIHI udelay(200);
1181fad399ebSBalsam CHIHI }
1182fad399ebSBalsam CHIHI
mtk_thermal_release_periodic_ts(struct mtk_thermal * mt,void __iomem * auxadc_base)1183fad399ebSBalsam CHIHI static void mtk_thermal_release_periodic_ts(struct mtk_thermal *mt,
1184fad399ebSBalsam CHIHI void __iomem *auxadc_base)
1185fad399ebSBalsam CHIHI {
1186fad399ebSBalsam CHIHI int tmp;
1187fad399ebSBalsam CHIHI
1188fad399ebSBalsam CHIHI writel(0x800, auxadc_base + AUXADC_CON1_SET_V);
1189fad399ebSBalsam CHIHI writel(0x1, mt->thermal_base + TEMP_MONCTL0);
1190fad399ebSBalsam CHIHI tmp = readl(mt->thermal_base + TEMP_MSRCTL1);
1191fad399ebSBalsam CHIHI writel((tmp & (~0x10e)), mt->thermal_base + TEMP_MSRCTL1);
1192fad399ebSBalsam CHIHI }
1193fad399ebSBalsam CHIHI
mtk_thermal_probe(struct platform_device * pdev)1194fad399ebSBalsam CHIHI static int mtk_thermal_probe(struct platform_device *pdev)
1195fad399ebSBalsam CHIHI {
1196fad399ebSBalsam CHIHI int ret, i, ctrl_id;
1197fad399ebSBalsam CHIHI struct device_node *auxadc, *apmixedsys, *np = pdev->dev.of_node;
1198fad399ebSBalsam CHIHI struct mtk_thermal *mt;
1199fad399ebSBalsam CHIHI u64 auxadc_phys_base, apmixed_phys_base;
1200fad399ebSBalsam CHIHI struct thermal_zone_device *tzdev;
1201fad399ebSBalsam CHIHI void __iomem *apmixed_base, *auxadc_base;
1202fad399ebSBalsam CHIHI
1203fad399ebSBalsam CHIHI mt = devm_kzalloc(&pdev->dev, sizeof(*mt), GFP_KERNEL);
1204fad399ebSBalsam CHIHI if (!mt)
1205fad399ebSBalsam CHIHI return -ENOMEM;
1206fad399ebSBalsam CHIHI
1207fad399ebSBalsam CHIHI mt->conf = of_device_get_match_data(&pdev->dev);
1208fad399ebSBalsam CHIHI
1209fad399ebSBalsam CHIHI mt->thermal_base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
1210fad399ebSBalsam CHIHI if (IS_ERR(mt->thermal_base))
1211fad399ebSBalsam CHIHI return PTR_ERR(mt->thermal_base);
1212fad399ebSBalsam CHIHI
1213fad399ebSBalsam CHIHI ret = mtk_thermal_get_calibration_data(&pdev->dev, mt);
1214fad399ebSBalsam CHIHI if (ret)
1215fad399ebSBalsam CHIHI return ret;
1216fad399ebSBalsam CHIHI
1217fad399ebSBalsam CHIHI mutex_init(&mt->lock);
1218fad399ebSBalsam CHIHI
1219fad399ebSBalsam CHIHI mt->dev = &pdev->dev;
1220fad399ebSBalsam CHIHI
1221fad399ebSBalsam CHIHI auxadc = of_parse_phandle(np, "mediatek,auxadc", 0);
1222fad399ebSBalsam CHIHI if (!auxadc) {
1223fad399ebSBalsam CHIHI dev_err(&pdev->dev, "missing auxadc node\n");
1224fad399ebSBalsam CHIHI return -ENODEV;
1225fad399ebSBalsam CHIHI }
1226fad399ebSBalsam CHIHI
122786edac7dSRicardo Cañuelo auxadc_base = of_iomap(auxadc, 0);
1228fad399ebSBalsam CHIHI auxadc_phys_base = of_get_phys_base(auxadc);
1229fad399ebSBalsam CHIHI
1230fad399ebSBalsam CHIHI of_node_put(auxadc);
1231fad399ebSBalsam CHIHI
1232fad399ebSBalsam CHIHI if (auxadc_phys_base == OF_BAD_ADDR) {
1233fad399ebSBalsam CHIHI dev_err(&pdev->dev, "Can't get auxadc phys address\n");
1234fad399ebSBalsam CHIHI return -EINVAL;
1235fad399ebSBalsam CHIHI }
1236fad399ebSBalsam CHIHI
1237fad399ebSBalsam CHIHI apmixedsys = of_parse_phandle(np, "mediatek,apmixedsys", 0);
1238fad399ebSBalsam CHIHI if (!apmixedsys) {
1239fad399ebSBalsam CHIHI dev_err(&pdev->dev, "missing apmixedsys node\n");
1240fad399ebSBalsam CHIHI return -ENODEV;
1241fad399ebSBalsam CHIHI }
1242fad399ebSBalsam CHIHI
124386edac7dSRicardo Cañuelo apmixed_base = of_iomap(apmixedsys, 0);
1244fad399ebSBalsam CHIHI apmixed_phys_base = of_get_phys_base(apmixedsys);
1245fad399ebSBalsam CHIHI
1246fad399ebSBalsam CHIHI of_node_put(apmixedsys);
1247fad399ebSBalsam CHIHI
1248fad399ebSBalsam CHIHI if (apmixed_phys_base == OF_BAD_ADDR) {
1249fad399ebSBalsam CHIHI dev_err(&pdev->dev, "Can't get auxadc phys address\n");
1250fad399ebSBalsam CHIHI return -EINVAL;
1251fad399ebSBalsam CHIHI }
1252fad399ebSBalsam CHIHI
1253fad399ebSBalsam CHIHI ret = device_reset_optional(&pdev->dev);
1254fad399ebSBalsam CHIHI if (ret)
1255fad399ebSBalsam CHIHI return ret;
1256fad399ebSBalsam CHIHI
1257a3e9a9a5SKang Chen mt->clk_auxadc = devm_clk_get_enabled(&pdev->dev, "auxadc");
1258a3e9a9a5SKang Chen if (IS_ERR(mt->clk_auxadc)) {
1259a3e9a9a5SKang Chen ret = PTR_ERR(mt->clk_auxadc);
1260fad399ebSBalsam CHIHI dev_err(&pdev->dev, "Can't enable auxadc clk: %d\n", ret);
1261fad399ebSBalsam CHIHI return ret;
1262fad399ebSBalsam CHIHI }
1263fad399ebSBalsam CHIHI
1264a3e9a9a5SKang Chen mt->clk_peri_therm = devm_clk_get_enabled(&pdev->dev, "therm");
1265a3e9a9a5SKang Chen if (IS_ERR(mt->clk_peri_therm)) {
1266a3e9a9a5SKang Chen ret = PTR_ERR(mt->clk_peri_therm);
1267fad399ebSBalsam CHIHI dev_err(&pdev->dev, "Can't enable peri clk: %d\n", ret);
1268a3e9a9a5SKang Chen return ret;
1269fad399ebSBalsam CHIHI }
1270fad399ebSBalsam CHIHI
127133140e66SMarkus Schneider-Pargmann mtk_thermal_turn_on_buffer(mt, apmixed_base);
127233140e66SMarkus Schneider-Pargmann
1273d4960de7SMarkus Schneider-Pargmann if (mt->conf->version != MTK_THERMAL_V1)
1274fad399ebSBalsam CHIHI mtk_thermal_release_periodic_ts(mt, auxadc_base);
1275fad399ebSBalsam CHIHI
1276fad399ebSBalsam CHIHI if (mt->conf->version == MTK_THERMAL_V1)
1277fad399ebSBalsam CHIHI mt->raw_to_mcelsius = raw_to_mcelsius_v1;
1278fad399ebSBalsam CHIHI else if (mt->conf->version == MTK_THERMAL_V2)
1279fad399ebSBalsam CHIHI mt->raw_to_mcelsius = raw_to_mcelsius_v2;
1280fad399ebSBalsam CHIHI else
1281fad399ebSBalsam CHIHI mt->raw_to_mcelsius = raw_to_mcelsius_v3;
1282fad399ebSBalsam CHIHI
1283fad399ebSBalsam CHIHI for (ctrl_id = 0; ctrl_id < mt->conf->num_controller ; ctrl_id++)
1284fad399ebSBalsam CHIHI for (i = 0; i < mt->conf->num_banks; i++)
1285fad399ebSBalsam CHIHI mtk_thermal_init_bank(mt, i, apmixed_phys_base,
1286fad399ebSBalsam CHIHI auxadc_phys_base, ctrl_id);
1287fad399ebSBalsam CHIHI
1288fad399ebSBalsam CHIHI tzdev = devm_thermal_of_zone_register(&pdev->dev, 0, mt,
1289fad399ebSBalsam CHIHI &mtk_thermal_ops);
1290a3e9a9a5SKang Chen if (IS_ERR(tzdev))
1291a3e9a9a5SKang Chen return PTR_ERR(tzdev);
1292fad399ebSBalsam CHIHI
12934a16c190SDaniel Lezcano ret = devm_thermal_add_hwmon_sysfs(&pdev->dev, tzdev);
1294fad399ebSBalsam CHIHI if (ret)
1295fad399ebSBalsam CHIHI dev_warn(&pdev->dev, "error in thermal_add_hwmon_sysfs");
1296fad399ebSBalsam CHIHI
1297fad399ebSBalsam CHIHI return 0;
1298fad399ebSBalsam CHIHI }
1299fad399ebSBalsam CHIHI
1300fad399ebSBalsam CHIHI static struct platform_driver mtk_thermal_driver = {
1301fad399ebSBalsam CHIHI .probe = mtk_thermal_probe,
1302fad399ebSBalsam CHIHI .driver = {
1303fad399ebSBalsam CHIHI .name = "mtk-thermal",
1304fad399ebSBalsam CHIHI .of_match_table = mtk_thermal_of_match,
1305fad399ebSBalsam CHIHI },
1306fad399ebSBalsam CHIHI };
1307fad399ebSBalsam CHIHI
1308fad399ebSBalsam CHIHI module_platform_driver(mtk_thermal_driver);
1309fad399ebSBalsam CHIHI
1310fad399ebSBalsam CHIHI MODULE_AUTHOR("Michael Kao <michael.kao@mediatek.com>");
1311fad399ebSBalsam CHIHI MODULE_AUTHOR("Louis Yu <louis.yu@mediatek.com>");
1312fad399ebSBalsam CHIHI MODULE_AUTHOR("Dawei Chien <dawei.chien@mediatek.com>");
1313fad399ebSBalsam CHIHI MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
1314fad399ebSBalsam CHIHI MODULE_AUTHOR("Hanyi Wu <hanyi.wu@mediatek.com>");
1315fad399ebSBalsam CHIHI MODULE_DESCRIPTION("Mediatek thermal driver");
1316fad399ebSBalsam CHIHI MODULE_LICENSE("GPL v2");
1317