Merge remote-tracking branch 'keys/keys-next'
[deliverable/linux.git] / drivers / thermal / mtk_thermal.c
1 /*
2 * Copyright (c) 2015 MediaTek Inc.
3 * Author: Hanyi Wu <hanyi.wu@mediatek.com>
4 * Sascha Hauer <s.hauer@pengutronix.de>
5 * Dawei Chien <dawei.chien@mediatek.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17 #include <linux/clk.h>
18 #include <linux/delay.h>
19 #include <linux/interrupt.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/nvmem-consumer.h>
23 #include <linux/of.h>
24 #include <linux/of_address.h>
25 #include <linux/of_device.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28 #include <linux/io.h>
29 #include <linux/thermal.h>
30 #include <linux/reset.h>
31 #include <linux/types.h>
32
33 /* AUXADC Registers */
34 #define AUXADC_CON0_V 0x000
35 #define AUXADC_CON1_V 0x004
36 #define AUXADC_CON1_SET_V 0x008
37 #define AUXADC_CON1_CLR_V 0x00c
38 #define AUXADC_CON2_V 0x010
39 #define AUXADC_DATA(channel) (0x14 + (channel) * 4)
40 #define AUXADC_MISC_V 0x094
41
42 #define AUXADC_CON1_CHANNEL(x) BIT(x)
43
44 #define APMIXED_SYS_TS_CON1 0x604
45
46 /* Thermal Controller Registers */
47 #define TEMP_MONCTL0 0x000
48 #define TEMP_MONCTL1 0x004
49 #define TEMP_MONCTL2 0x008
50 #define TEMP_MONIDET0 0x014
51 #define TEMP_MONIDET1 0x018
52 #define TEMP_MSRCTL0 0x038
53 #define TEMP_AHBPOLL 0x040
54 #define TEMP_AHBTO 0x044
55 #define TEMP_ADCPNP0 0x048
56 #define TEMP_ADCPNP1 0x04c
57 #define TEMP_ADCPNP2 0x050
58 #define TEMP_ADCPNP3 0x0b4
59
60 #define TEMP_ADCMUX 0x054
61 #define TEMP_ADCEN 0x060
62 #define TEMP_PNPMUXADDR 0x064
63 #define TEMP_ADCMUXADDR 0x068
64 #define TEMP_ADCENADDR 0x074
65 #define TEMP_ADCVALIDADDR 0x078
66 #define TEMP_ADCVOLTADDR 0x07c
67 #define TEMP_RDCTRL 0x080
68 #define TEMP_ADCVALIDMASK 0x084
69 #define TEMP_ADCVOLTAGESHIFT 0x088
70 #define TEMP_ADCWRITECTRL 0x08c
71 #define TEMP_MSR0 0x090
72 #define TEMP_MSR1 0x094
73 #define TEMP_MSR2 0x098
74 #define TEMP_MSR3 0x0B8
75
76 #define TEMP_SPARE0 0x0f0
77
78 #define PTPCORESEL 0x400
79
80 #define TEMP_MONCTL1_PERIOD_UNIT(x) ((x) & 0x3ff)
81
82 #define TEMP_MONCTL2_FILTER_INTERVAL(x) (((x) & 0x3ff) << 16)
83 #define TEMP_MONCTL2_SENSOR_INTERVAL(x) ((x) & 0x3ff)
84
85 #define TEMP_AHBPOLL_ADC_POLL_INTERVAL(x) (x)
86
87 #define TEMP_ADCWRITECTRL_ADC_PNP_WRITE BIT(0)
88 #define TEMP_ADCWRITECTRL_ADC_MUX_WRITE BIT(1)
89
90 #define TEMP_ADCVALIDMASK_VALID_HIGH BIT(5)
91 #define TEMP_ADCVALIDMASK_VALID_POS(bit) (bit)
92
93 /* MT8173 thermal sensors */
94 #define MT8173_TS1 0
95 #define MT8173_TS2 1
96 #define MT8173_TS3 2
97 #define MT8173_TS4 3
98 #define MT8173_TSABB 4
99
100 /* AUXADC channel 11 is used for the temperature sensors */
101 #define MT8173_TEMP_AUXADC_CHANNEL 11
102
103 /* The total number of temperature sensors in the MT8173 */
104 #define MT8173_NUM_SENSORS 5
105
106 /* The number of banks in the MT8173 */
107 #define MT8173_NUM_ZONES 4
108
109 /* The number of sensing points per bank */
110 #define MT8173_NUM_SENSORS_PER_ZONE 4
111
112 /*
113 * Layout of the fuses providing the calibration data
114 * These macros could be used for both MT8173 and MT2701.
115 * MT8173 has five sensors and need five VTS calibration data,
116 * and MT2701 has three sensors and need three VTS calibration data.
117 */
118 #define MT8173_CALIB_BUF0_VALID BIT(0)
119 #define MT8173_CALIB_BUF1_ADC_GE(x) (((x) >> 22) & 0x3ff)
120 #define MT8173_CALIB_BUF0_VTS_TS1(x) (((x) >> 17) & 0x1ff)
121 #define MT8173_CALIB_BUF0_VTS_TS2(x) (((x) >> 8) & 0x1ff)
122 #define MT8173_CALIB_BUF1_VTS_TS3(x) (((x) >> 0) & 0x1ff)
123 #define MT8173_CALIB_BUF2_VTS_TS4(x) (((x) >> 23) & 0x1ff)
124 #define MT8173_CALIB_BUF2_VTS_TSABB(x) (((x) >> 14) & 0x1ff)
125 #define MT8173_CALIB_BUF0_DEGC_CALI(x) (((x) >> 1) & 0x3f)
126 #define MT8173_CALIB_BUF0_O_SLOPE(x) (((x) >> 26) & 0x3f)
127
128 /* MT2701 thermal sensors */
129 #define MT2701_TS1 0
130 #define MT2701_TS2 1
131 #define MT2701_TSABB 2
132
133 /* AUXADC channel 11 is used for the temperature sensors */
134 #define MT2701_TEMP_AUXADC_CHANNEL 11
135
136 /* The total number of temperature sensors in the MT2701 */
137 #define MT2701_NUM_SENSORS 3
138
139 #define THERMAL_NAME "mtk-thermal"
140
141 /* The number of sensing points per bank */
142 #define MT2701_NUM_SENSORS_PER_ZONE 3
143
144 struct mtk_thermal;
145
146 struct thermal_bank_cfg {
147 unsigned int num_sensors;
148 const int *sensors;
149 };
150
151 struct mtk_thermal_bank {
152 struct mtk_thermal *mt;
153 int id;
154 };
155
156 struct mtk_thermal_data {
157 s32 num_banks;
158 s32 num_sensors;
159 s32 auxadc_channel;
160 const int *sensor_mux_values;
161 const int *msr;
162 const int *adcpnp;
163 struct thermal_bank_cfg bank_data[];
164 };
165
166 struct mtk_thermal {
167 struct device *dev;
168 void __iomem *thermal_base;
169
170 struct clk *clk_peri_therm;
171 struct clk *clk_auxadc;
172 /* lock: for getting and putting banks */
173 struct mutex lock;
174
175 /* Calibration values */
176 s32 adc_ge;
177 s32 degc_cali;
178 s32 o_slope;
179 s32 vts[MT8173_NUM_SENSORS];
180
181 const struct mtk_thermal_data *conf;
182 struct mtk_thermal_bank banks[];
183 };
184
185 /* MT8173 thermal sensor data */
186 const int mt8173_bank_data[MT8173_NUM_ZONES][3] = {
187 { MT8173_TS2, MT8173_TS3 },
188 { MT8173_TS2, MT8173_TS4 },
189 { MT8173_TS1, MT8173_TS2, MT8173_TSABB },
190 { MT8173_TS2 },
191 };
192
193 const int mt8173_msr[MT8173_NUM_SENSORS_PER_ZONE] = {
194 TEMP_MSR0, TEMP_MSR1, TEMP_MSR2, TEMP_MSR2
195 };
196
197 const int mt8173_adcpnp[MT8173_NUM_SENSORS_PER_ZONE] = {
198 TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2, TEMP_ADCPNP3
199 };
200
201 const int mt8173_mux_values[MT8173_NUM_SENSORS] = { 0, 1, 2, 3, 16 };
202
203 /* MT2701 thermal sensor data */
204 const int mt2701_bank_data[MT2701_NUM_SENSORS] = {
205 MT2701_TS1, MT2701_TS2, MT2701_TSABB
206 };
207
208 const int mt2701_msr[MT2701_NUM_SENSORS_PER_ZONE] = {
209 TEMP_MSR0, TEMP_MSR1, TEMP_MSR2
210 };
211
212 const int mt2701_adcpnp[MT2701_NUM_SENSORS_PER_ZONE] = {
213 TEMP_ADCPNP0, TEMP_ADCPNP1, TEMP_ADCPNP2
214 };
215
216 const int mt2701_mux_values[MT2701_NUM_SENSORS] = { 0, 1, 16 };
217
218 /**
219 * The MT8173 thermal controller has four banks. Each bank can read up to
220 * four temperature sensors simultaneously. The MT8173 has a total of 5
221 * temperature sensors. We use each bank to measure a certain area of the
222 * SoC. Since TS2 is located centrally in the SoC it is influenced by multiple
223 * areas, hence is used in different banks.
224 *
225 * The thermal core only gets the maximum temperature of all banks, so
226 * the bank concept wouldn't be necessary here. However, the SVS (Smart
227 * Voltage Scaling) unit makes its decisions based on the same bank
228 * data, and this indeed needs the temperatures of the individual banks
229 * for making better decisions.
230 */
231 static const struct mtk_thermal_data mt8173_thermal_data = {
232 .auxadc_channel = MT8173_TEMP_AUXADC_CHANNEL,
233 .num_banks = MT8173_NUM_ZONES,
234 .num_sensors = MT8173_NUM_SENSORS,
235 .bank_data = {
236 {
237 .num_sensors = 2,
238 .sensors = mt8173_bank_data[0],
239 }, {
240 .num_sensors = 2,
241 .sensors = mt8173_bank_data[1],
242 }, {
243 .num_sensors = 3,
244 .sensors = mt8173_bank_data[2],
245 }, {
246 .num_sensors = 1,
247 .sensors = mt8173_bank_data[3],
248 },
249 },
250 .msr = mt8173_msr,
251 .adcpnp = mt8173_adcpnp,
252 .sensor_mux_values = mt8173_mux_values,
253 };
254
255 /**
256 * The MT2701 thermal controller has one bank, which can read up to
257 * three temperature sensors simultaneously. The MT2701 has a total of 3
258 * temperature sensors.
259 *
260 * The thermal core only gets the maximum temperature of this one bank,
261 * so the bank concept wouldn't be necessary here. However, the SVS (Smart
262 * Voltage Scaling) unit makes its decisions based on the same bank
263 * data.
264 */
265 static const struct mtk_thermal_data mt2701_thermal_data = {
266 .auxadc_channel = MT2701_TEMP_AUXADC_CHANNEL,
267 .num_banks = 1,
268 .num_sensors = MT2701_NUM_SENSORS,
269 .bank_data = {
270 {
271 .num_sensors = 3,
272 .sensors = mt2701_bank_data,
273 },
274 },
275 .msr = mt2701_msr,
276 .adcpnp = mt2701_adcpnp,
277 .sensor_mux_values = mt2701_mux_values,
278 };
279
280 /**
281 * raw_to_mcelsius - convert a raw ADC value to mcelsius
282 * @mt: The thermal controller
283 * @raw: raw ADC value
284 *
285 * This converts the raw ADC value to mcelsius using the SoC specific
286 * calibration constants
287 */
288 static int raw_to_mcelsius(struct mtk_thermal *mt, int sensno, s32 raw)
289 {
290 s32 tmp;
291
292 raw &= 0xfff;
293
294 tmp = 203450520 << 3;
295 tmp /= 165 + mt->o_slope;
296 tmp /= 10000 + mt->adc_ge;
297 tmp *= raw - mt->vts[sensno] - 3350;
298 tmp >>= 3;
299
300 return mt->degc_cali * 500 - tmp;
301 }
302
303 /**
304 * mtk_thermal_get_bank - get bank
305 * @bank: The bank
306 *
307 * The bank registers are banked, we have to select a bank in the
308 * PTPCORESEL register to access it.
309 */
310 static void mtk_thermal_get_bank(struct mtk_thermal_bank *bank)
311 {
312 struct mtk_thermal *mt = bank->mt;
313 u32 val;
314
315 mutex_lock(&mt->lock);
316
317 val = readl(mt->thermal_base + PTPCORESEL);
318 val &= ~0xf;
319 val |= bank->id;
320 writel(val, mt->thermal_base + PTPCORESEL);
321 }
322
323 /**
324 * mtk_thermal_put_bank - release bank
325 * @bank: The bank
326 *
327 * release a bank previously taken with mtk_thermal_get_bank,
328 */
329 static void mtk_thermal_put_bank(struct mtk_thermal_bank *bank)
330 {
331 struct mtk_thermal *mt = bank->mt;
332
333 mutex_unlock(&mt->lock);
334 }
335
336 /**
337 * mtk_thermal_bank_temperature - get the temperature of a bank
338 * @bank: The bank
339 *
340 * The temperature of a bank is considered the maximum temperature of
341 * the sensors associated to the bank.
342 */
343 static int mtk_thermal_bank_temperature(struct mtk_thermal_bank *bank)
344 {
345 struct mtk_thermal *mt = bank->mt;
346 const struct mtk_thermal_data *conf = mt->conf;
347 int i, temp = INT_MIN, max = INT_MIN;
348 u32 raw;
349
350 for (i = 0; i < conf->bank_data[bank->id].num_sensors; i++) {
351 raw = readl(mt->thermal_base + conf->msr[i]);
352
353 temp = raw_to_mcelsius(mt,
354 conf->bank_data[bank->id].sensors[i],
355 raw);
356
357 /*
358 * The first read of a sensor often contains very high bogus
359 * temperature value. Filter these out so that the system does
360 * not immediately shut down.
361 */
362 if (temp > 200000)
363 temp = 0;
364
365 if (temp > max)
366 max = temp;
367 }
368
369 return max;
370 }
371
372 static int mtk_read_temp(void *data, int *temperature)
373 {
374 struct mtk_thermal *mt = data;
375 int i;
376 int tempmax = INT_MIN;
377
378 for (i = 0; i < mt->conf->num_banks; i++) {
379 struct mtk_thermal_bank *bank = &mt->banks[i];
380
381 mtk_thermal_get_bank(bank);
382
383 tempmax = max(tempmax, mtk_thermal_bank_temperature(bank));
384
385 mtk_thermal_put_bank(bank);
386 }
387
388 *temperature = tempmax;
389
390 return 0;
391 }
392
393 static const struct thermal_zone_of_device_ops mtk_thermal_ops = {
394 .get_temp = mtk_read_temp,
395 };
396
397 static void mtk_thermal_init_bank(struct mtk_thermal *mt, int num,
398 u32 apmixed_phys_base, u32 auxadc_phys_base)
399 {
400 struct mtk_thermal_bank *bank = &mt->banks[num];
401 const struct mtk_thermal_data *conf = mt->conf;
402 int i;
403
404 bank->id = num;
405 bank->mt = mt;
406
407 mtk_thermal_get_bank(bank);
408
409 /* bus clock 66M counting unit is 12 * 15.15ns * 256 = 46.540us */
410 writel(TEMP_MONCTL1_PERIOD_UNIT(12), mt->thermal_base + TEMP_MONCTL1);
411
412 /*
413 * filt interval is 1 * 46.540us = 46.54us,
414 * sen interval is 429 * 46.540us = 19.96ms
415 */
416 writel(TEMP_MONCTL2_FILTER_INTERVAL(1) |
417 TEMP_MONCTL2_SENSOR_INTERVAL(429),
418 mt->thermal_base + TEMP_MONCTL2);
419
420 /* poll is set to 10u */
421 writel(TEMP_AHBPOLL_ADC_POLL_INTERVAL(768),
422 mt->thermal_base + TEMP_AHBPOLL);
423
424 /* temperature sampling control, 1 sample */
425 writel(0x0, mt->thermal_base + TEMP_MSRCTL0);
426
427 /* exceed this polling time, IRQ would be inserted */
428 writel(0xffffffff, mt->thermal_base + TEMP_AHBTO);
429
430 /* number of interrupts per event, 1 is enough */
431 writel(0x0, mt->thermal_base + TEMP_MONIDET0);
432 writel(0x0, mt->thermal_base + TEMP_MONIDET1);
433
434 /*
435 * The MT8173 thermal controller does not have its own ADC. Instead it
436 * uses AHB bus accesses to control the AUXADC. To do this the thermal
437 * controller has to be programmed with the physical addresses of the
438 * AUXADC registers and with the various bit positions in the AUXADC.
439 * Also the thermal controller controls a mux in the APMIXEDSYS register
440 * space.
441 */
442
443 /*
444 * this value will be stored to TEMP_PNPMUXADDR (TEMP_SPARE0)
445 * automatically by hw
446 */
447 writel(BIT(conf->auxadc_channel), mt->thermal_base + TEMP_ADCMUX);
448
449 /* AHB address for auxadc mux selection */
450 writel(auxadc_phys_base + AUXADC_CON1_CLR_V,
451 mt->thermal_base + TEMP_ADCMUXADDR);
452
453 /* AHB address for pnp sensor mux selection */
454 writel(apmixed_phys_base + APMIXED_SYS_TS_CON1,
455 mt->thermal_base + TEMP_PNPMUXADDR);
456
457 /* AHB value for auxadc enable */
458 writel(BIT(conf->auxadc_channel), mt->thermal_base + TEMP_ADCEN);
459
460 /* AHB address for auxadc enable (channel 0 immediate mode selected) */
461 writel(auxadc_phys_base + AUXADC_CON1_SET_V,
462 mt->thermal_base + TEMP_ADCENADDR);
463
464 /* AHB address for auxadc valid bit */
465 writel(auxadc_phys_base + AUXADC_DATA(conf->auxadc_channel),
466 mt->thermal_base + TEMP_ADCVALIDADDR);
467
468 /* AHB address for auxadc voltage output */
469 writel(auxadc_phys_base + AUXADC_DATA(conf->auxadc_channel),
470 mt->thermal_base + TEMP_ADCVOLTADDR);
471
472 /* read valid & voltage are at the same register */
473 writel(0x0, mt->thermal_base + TEMP_RDCTRL);
474
475 /* indicate where the valid bit is */
476 writel(TEMP_ADCVALIDMASK_VALID_HIGH | TEMP_ADCVALIDMASK_VALID_POS(12),
477 mt->thermal_base + TEMP_ADCVALIDMASK);
478
479 /* no shift */
480 writel(0x0, mt->thermal_base + TEMP_ADCVOLTAGESHIFT);
481
482 /* enable auxadc mux write transaction */
483 writel(TEMP_ADCWRITECTRL_ADC_MUX_WRITE,
484 mt->thermal_base + TEMP_ADCWRITECTRL);
485
486 for (i = 0; i < conf->bank_data[num].num_sensors; i++)
487 writel(conf->sensor_mux_values[conf->bank_data[num].sensors[i]],
488 mt->thermal_base + conf->adcpnp[i]);
489
490 writel((1 << conf->bank_data[num].num_sensors) - 1,
491 mt->thermal_base + TEMP_MONCTL0);
492
493 writel(TEMP_ADCWRITECTRL_ADC_PNP_WRITE |
494 TEMP_ADCWRITECTRL_ADC_MUX_WRITE,
495 mt->thermal_base + TEMP_ADCWRITECTRL);
496
497 mtk_thermal_put_bank(bank);
498 }
499
500 static u64 of_get_phys_base(struct device_node *np)
501 {
502 u64 size64;
503 const __be32 *regaddr_p;
504
505 regaddr_p = of_get_address(np, 0, &size64, NULL);
506 if (!regaddr_p)
507 return OF_BAD_ADDR;
508
509 return of_translate_address(np, regaddr_p);
510 }
511
512 static int mtk_thermal_get_calibration_data(struct device *dev,
513 struct mtk_thermal *mt)
514 {
515 struct nvmem_cell *cell;
516 u32 *buf;
517 size_t len;
518 int i, ret = 0;
519
520 /* Start with default values */
521 mt->adc_ge = 512;
522 for (i = 0; i < mt->conf->num_sensors; i++)
523 mt->vts[i] = 260;
524 mt->degc_cali = 40;
525 mt->o_slope = 0;
526
527 cell = nvmem_cell_get(dev, "calibration-data");
528 if (IS_ERR(cell)) {
529 if (PTR_ERR(cell) == -EPROBE_DEFER)
530 return PTR_ERR(cell);
531 return 0;
532 }
533
534 buf = (u32 *)nvmem_cell_read(cell, &len);
535
536 nvmem_cell_put(cell);
537
538 if (IS_ERR(buf))
539 return PTR_ERR(buf);
540
541 if (len < 3 * sizeof(u32)) {
542 dev_warn(dev, "invalid calibration data\n");
543 ret = -EINVAL;
544 goto out;
545 }
546
547 if (buf[0] & MT8173_CALIB_BUF0_VALID) {
548 mt->adc_ge = MT8173_CALIB_BUF1_ADC_GE(buf[1]);
549 mt->vts[MT8173_TS1] = MT8173_CALIB_BUF0_VTS_TS1(buf[0]);
550 mt->vts[MT8173_TS2] = MT8173_CALIB_BUF0_VTS_TS2(buf[0]);
551 mt->vts[MT8173_TS3] = MT8173_CALIB_BUF1_VTS_TS3(buf[1]);
552 mt->vts[MT8173_TS4] = MT8173_CALIB_BUF2_VTS_TS4(buf[2]);
553 mt->vts[MT8173_TSABB] = MT8173_CALIB_BUF2_VTS_TSABB(buf[2]);
554 mt->degc_cali = MT8173_CALIB_BUF0_DEGC_CALI(buf[0]);
555 mt->o_slope = MT8173_CALIB_BUF0_O_SLOPE(buf[0]);
556 } else {
557 dev_info(dev, "Device not calibrated, using default calibration values\n");
558 }
559
560 out:
561 kfree(buf);
562
563 return ret;
564 }
565
566 static const struct of_device_id mtk_thermal_of_match[] = {
567 {
568 .compatible = "mediatek,mt8173-thermal",
569 .data = (void *)&mt8173_thermal_data,
570 },
571 {
572 .compatible = "mediatek,mt2701-thermal",
573 .data = (void *)&mt2701_thermal_data,
574 }, {
575 },
576 };
577 MODULE_DEVICE_TABLE(of, mtk_thermal_of_match);
578
579 static int mtk_thermal_probe(struct platform_device *pdev)
580 {
581 int ret, i;
582 struct device_node *auxadc, *apmixedsys, *np = pdev->dev.of_node;
583 struct mtk_thermal *mt;
584 struct resource *res;
585 const struct of_device_id *of_id;
586 u64 auxadc_phys_base, apmixed_phys_base;
587
588 mt = devm_kzalloc(&pdev->dev, sizeof(*mt), GFP_KERNEL);
589 if (!mt)
590 return -ENOMEM;
591
592 of_id = of_match_device(mtk_thermal_of_match, &pdev->dev);
593 if (of_id)
594 mt->conf = (const struct mtk_thermal_data *)of_id->data;
595
596 mt->clk_peri_therm = devm_clk_get(&pdev->dev, "therm");
597 if (IS_ERR(mt->clk_peri_therm))
598 return PTR_ERR(mt->clk_peri_therm);
599
600 mt->clk_auxadc = devm_clk_get(&pdev->dev, "auxadc");
601 if (IS_ERR(mt->clk_auxadc))
602 return PTR_ERR(mt->clk_auxadc);
603
604 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
605 mt->thermal_base = devm_ioremap_resource(&pdev->dev, res);
606 if (IS_ERR(mt->thermal_base))
607 return PTR_ERR(mt->thermal_base);
608
609 ret = mtk_thermal_get_calibration_data(&pdev->dev, mt);
610 if (ret)
611 return ret;
612
613 mutex_init(&mt->lock);
614
615 mt->dev = &pdev->dev;
616
617 auxadc = of_parse_phandle(np, "mediatek,auxadc", 0);
618 if (!auxadc) {
619 dev_err(&pdev->dev, "missing auxadc node\n");
620 return -ENODEV;
621 }
622
623 auxadc_phys_base = of_get_phys_base(auxadc);
624
625 of_node_put(auxadc);
626
627 if (auxadc_phys_base == OF_BAD_ADDR) {
628 dev_err(&pdev->dev, "Can't get auxadc phys address\n");
629 return -EINVAL;
630 }
631
632 apmixedsys = of_parse_phandle(np, "mediatek,apmixedsys", 0);
633 if (!apmixedsys) {
634 dev_err(&pdev->dev, "missing apmixedsys node\n");
635 return -ENODEV;
636 }
637
638 apmixed_phys_base = of_get_phys_base(apmixedsys);
639
640 of_node_put(apmixedsys);
641
642 if (apmixed_phys_base == OF_BAD_ADDR) {
643 dev_err(&pdev->dev, "Can't get auxadc phys address\n");
644 return -EINVAL;
645 }
646
647 ret = clk_prepare_enable(mt->clk_auxadc);
648 if (ret) {
649 dev_err(&pdev->dev, "Can't enable auxadc clk: %d\n", ret);
650 return ret;
651 }
652
653 ret = device_reset(&pdev->dev);
654 if (ret)
655 goto err_disable_clk_auxadc;
656
657 ret = clk_prepare_enable(mt->clk_peri_therm);
658 if (ret) {
659 dev_err(&pdev->dev, "Can't enable peri clk: %d\n", ret);
660 goto err_disable_clk_auxadc;
661 }
662
663 for (i = 0; i < mt->conf->num_banks; i++)
664 mtk_thermal_init_bank(mt, i, apmixed_phys_base,
665 auxadc_phys_base);
666
667 platform_set_drvdata(pdev, mt);
668
669 devm_thermal_zone_of_sensor_register(&pdev->dev, 0, mt,
670 &mtk_thermal_ops);
671
672 return 0;
673
674 err_disable_clk_auxadc:
675 clk_disable_unprepare(mt->clk_auxadc);
676
677 return ret;
678 }
679
680 static int mtk_thermal_remove(struct platform_device *pdev)
681 {
682 struct mtk_thermal *mt = platform_get_drvdata(pdev);
683
684 clk_disable_unprepare(mt->clk_peri_therm);
685 clk_disable_unprepare(mt->clk_auxadc);
686
687 return 0;
688 }
689
690 static struct platform_driver mtk_thermal_driver = {
691 .probe = mtk_thermal_probe,
692 .remove = mtk_thermal_remove,
693 .driver = {
694 .name = THERMAL_NAME,
695 .of_match_table = mtk_thermal_of_match,
696 },
697 };
698
699 module_platform_driver(mtk_thermal_driver);
700
701 MODULE_AUTHOR("Dawei Chien <dawei.chien@mediatek.com>");
702 MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
703 MODULE_AUTHOR("Hanyi Wu <hanyi.wu@mediatek.com>");
704 MODULE_DESCRIPTION("Mediatek thermal driver");
705 MODULE_LICENSE("GPL v2");
This page took 0.047077 seconds and 5 git commands to generate.