2 * Copyright (C) ST-Ericsson SA 2012
4 * Battery temperature driver for AB8500
6 * License Terms: GNU General Public License v2
8 * Johan Palsson <johan.palsson@stericsson.com>
9 * Karl Komierowski <karl.komierowski@stericsson.com>
10 * Arun R Murthy <arun.murthy@stericsson.com>
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/interrupt.h>
17 #include <linux/delay.h>
18 #include <linux/slab.h>
19 #include <linux/platform_device.h>
20 #include <linux/power_supply.h>
21 #include <linux/completion.h>
22 #include <linux/workqueue.h>
23 #include <linux/jiffies.h>
25 #include <linux/mfd/core.h>
26 #include <linux/mfd/abx500.h>
27 #include <linux/mfd/abx500/ab8500.h>
28 #include <linux/mfd/abx500/ab8500-bm.h>
29 #include <linux/mfd/abx500/ab8500-gpadc.h>
33 #define BTEMP_THERMAL_LOW_LIMIT -10
34 #define BTEMP_THERMAL_MED_LIMIT 0
35 #define BTEMP_THERMAL_HIGH_LIMIT_52 52
36 #define BTEMP_THERMAL_HIGH_LIMIT_57 57
37 #define BTEMP_THERMAL_HIGH_LIMIT_62 62
39 #define BTEMP_BATCTRL_CURR_SRC_7UA 7
40 #define BTEMP_BATCTRL_CURR_SRC_20UA 20
42 #define BTEMP_BATCTRL_CURR_SRC_16UA 16
43 #define BTEMP_BATCTRL_CURR_SRC_18UA 18
45 #define BTEMP_BATCTRL_CURR_SRC_60UA 60
46 #define BTEMP_BATCTRL_CURR_SRC_120UA 120
49 * struct ab8500_btemp_interrupts - ab8500 interrupts
50 * @name: name of the interrupt
51 * @isr function pointer to the isr
53 struct ab8500_btemp_interrupts
{
55 irqreturn_t (*isr
)(int irq
, void *data
);
58 struct ab8500_btemp_events
{
68 struct ab8500_btemp_ranges
{
75 * struct ab8500_btemp - ab8500 BTEMP device information
76 * @dev: Pointer to the structure device
77 * @node: List of AB8500 BTEMPs, hence prepared for reentrance
78 * @curr_source: What current source we use, in uA
79 * @bat_temp: Dispatched battery temperature in degree Celsius
80 * @prev_bat_temp Last measured battery temperature in degree Celsius
81 * @parent: Pointer to the struct ab8500
82 * @gpadc: Pointer to the struct gpadc
83 * @fg: Pointer to the struct fg
84 * @bm: Platform specific battery management information
85 * @btemp_psy: Structure for BTEMP specific battery properties
86 * @events: Structure for information about events triggered
87 * @btemp_ranges: Battery temperature range structure
88 * @btemp_wq: Work queue for measuring the temperature periodically
89 * @btemp_periodic_work: Work for measuring the temperature periodically
90 * @initialized: True if battery id read.
94 struct list_head node
;
98 struct ab8500
*parent
;
99 struct ab8500_gpadc
*gpadc
;
100 struct ab8500_fg
*fg
;
101 struct abx500_bm_data
*bm
;
102 struct power_supply
*btemp_psy
;
103 struct ab8500_btemp_events events
;
104 struct ab8500_btemp_ranges btemp_ranges
;
105 struct workqueue_struct
*btemp_wq
;
106 struct delayed_work btemp_periodic_work
;
110 /* BTEMP power supply properties */
111 static enum power_supply_property ab8500_btemp_props
[] = {
112 POWER_SUPPLY_PROP_PRESENT
,
113 POWER_SUPPLY_PROP_ONLINE
,
114 POWER_SUPPLY_PROP_TECHNOLOGY
,
115 POWER_SUPPLY_PROP_TEMP
,
118 static LIST_HEAD(ab8500_btemp_list
);
121 * ab8500_btemp_get() - returns a reference to the primary AB8500 BTEMP
122 * (i.e. the first BTEMP in the instance list)
124 struct ab8500_btemp
*ab8500_btemp_get(void)
126 return list_first_entry(&ab8500_btemp_list
, struct ab8500_btemp
, node
);
128 EXPORT_SYMBOL(ab8500_btemp_get
);
131 * ab8500_btemp_batctrl_volt_to_res() - convert batctrl voltage to resistance
132 * @di: pointer to the ab8500_btemp structure
133 * @v_batctrl: measured batctrl voltage
134 * @inst_curr: measured instant current
136 * This function returns the battery resistance that is
137 * derived from the BATCTRL voltage.
138 * Returns value in Ohms.
140 static int ab8500_btemp_batctrl_volt_to_res(struct ab8500_btemp
*di
,
141 int v_batctrl
, int inst_curr
)
145 if (is_ab8500_1p1_or_earlier(di
->parent
)) {
147 * For ABB cut1.0 and 1.1 BAT_CTRL is internally
148 * connected to 1.8V through a 450k resistor
150 return (450000 * (v_batctrl
)) / (1800 - v_batctrl
);
153 if (di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
) {
155 * If the battery has internal NTC, we use the current
156 * source to calculate the resistance.
158 rbs
= (v_batctrl
* 1000
159 - di
->bm
->gnd_lift_resistance
* inst_curr
)
163 * BAT_CTRL is internally
164 * connected to 1.8V through a 80k resistor
166 rbs
= (80000 * (v_batctrl
)) / (1800 - v_batctrl
);
173 * ab8500_btemp_read_batctrl_voltage() - measure batctrl voltage
174 * @di: pointer to the ab8500_btemp structure
176 * This function returns the voltage on BATCTRL. Returns value in mV.
178 static int ab8500_btemp_read_batctrl_voltage(struct ab8500_btemp
*di
)
183 vbtemp
= ab8500_gpadc_convert(di
->gpadc
, BAT_CTRL
);
186 "%s gpadc conversion failed, using previous value",
195 * ab8500_btemp_curr_source_enable() - enable/disable batctrl current source
196 * @di: pointer to the ab8500_btemp structure
197 * @enable: enable or disable the current source
199 * Enable or disable the current sources for the BatCtrl AD channel
201 static int ab8500_btemp_curr_source_enable(struct ab8500_btemp
*di
,
208 * BATCTRL current sources are included on AB8500 cut2.0
209 * and future versions
211 if (is_ab8500_1p1_or_earlier(di
->parent
))
214 /* Only do this for batteries with internal NTC */
215 if (di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
&& enable
) {
217 if (di
->curr_source
== BTEMP_BATCTRL_CURR_SRC_7UA
)
218 curr
= BAT_CTRL_7U_ENA
;
220 curr
= BAT_CTRL_20U_ENA
;
222 dev_dbg(di
->dev
, "Set BATCTRL %duA\n", di
->curr_source
);
224 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
225 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
226 FORCE_BAT_CTRL_CMP_HIGH
, FORCE_BAT_CTRL_CMP_HIGH
);
228 dev_err(di
->dev
, "%s failed setting cmp_force\n",
234 * We have to wait one 32kHz cycle before enabling
235 * the current source, since ForceBatCtrlCmpHigh needs
236 * to be written in a separate cycle
240 ret
= abx500_set_register_interruptible(di
->dev
,
241 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
242 FORCE_BAT_CTRL_CMP_HIGH
| curr
);
244 dev_err(di
->dev
, "%s failed enabling current source\n",
246 goto disable_curr_source
;
248 } else if (di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
&& !enable
) {
249 dev_dbg(di
->dev
, "Disable BATCTRL curr source\n");
251 /* Write 0 to the curr bits */
252 ret
= abx500_mask_and_set_register_interruptible(
254 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
255 BAT_CTRL_7U_ENA
| BAT_CTRL_20U_ENA
,
256 ~(BAT_CTRL_7U_ENA
| BAT_CTRL_20U_ENA
));
259 dev_err(di
->dev
, "%s failed disabling current source\n",
261 goto disable_curr_source
;
264 /* Enable Pull-Up and comparator */
265 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
266 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
267 BAT_CTRL_PULL_UP_ENA
| BAT_CTRL_CMP_ENA
,
268 BAT_CTRL_PULL_UP_ENA
| BAT_CTRL_CMP_ENA
);
270 dev_err(di
->dev
, "%s failed enabling PU and comp\n",
276 * We have to wait one 32kHz cycle before disabling
277 * ForceBatCtrlCmpHigh since this needs to be written
278 * in a separate cycle
282 /* Disable 'force comparator' */
283 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
284 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
285 FORCE_BAT_CTRL_CMP_HIGH
, ~FORCE_BAT_CTRL_CMP_HIGH
);
287 dev_err(di
->dev
, "%s failed disabling force comp\n",
289 goto disable_force_comp
;
295 * We have to try unsetting FORCE_BAT_CTRL_CMP_HIGH one more time
296 * if we got an error above
299 /* Write 0 to the curr bits */
300 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
301 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
302 BAT_CTRL_7U_ENA
| BAT_CTRL_20U_ENA
,
303 ~(BAT_CTRL_7U_ENA
| BAT_CTRL_20U_ENA
));
306 dev_err(di
->dev
, "%s failed disabling current source\n",
311 /* Enable Pull-Up and comparator */
312 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
313 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
314 BAT_CTRL_PULL_UP_ENA
| BAT_CTRL_CMP_ENA
,
315 BAT_CTRL_PULL_UP_ENA
| BAT_CTRL_CMP_ENA
);
317 dev_err(di
->dev
, "%s failed enabling PU and comp\n",
324 * We have to wait one 32kHz cycle before disabling
325 * ForceBatCtrlCmpHigh since this needs to be written
326 * in a separate cycle
330 /* Disable 'force comparator' */
331 ret
= abx500_mask_and_set_register_interruptible(di
->dev
,
332 AB8500_CHARGER
, AB8500_BAT_CTRL_CURRENT_SOURCE
,
333 FORCE_BAT_CTRL_CMP_HIGH
, ~FORCE_BAT_CTRL_CMP_HIGH
);
335 dev_err(di
->dev
, "%s failed disabling force comp\n",
344 * ab8500_btemp_get_batctrl_res() - get battery resistance
345 * @di: pointer to the ab8500_btemp structure
347 * This function returns the battery pack identification resistance.
348 * Returns value in Ohms.
350 static int ab8500_btemp_get_batctrl_res(struct ab8500_btemp
*di
)
359 * BATCTRL current sources are included on AB8500 cut2.0
360 * and future versions
362 ret
= ab8500_btemp_curr_source_enable(di
, true);
364 dev_err(di
->dev
, "%s curr source enabled failed\n", __func__
);
369 di
->fg
= ab8500_fg_get();
371 dev_err(di
->dev
, "No fg found\n");
375 ret
= ab8500_fg_inst_curr_start(di
->fg
);
378 dev_err(di
->dev
, "Failed to start current measurement\n");
384 } while (!ab8500_fg_inst_curr_started(di
->fg
));
389 batctrl
+= ab8500_btemp_read_batctrl_voltage(di
);
392 } while (!ab8500_fg_inst_curr_done(di
->fg
));
395 ret
= ab8500_fg_inst_curr_finalize(di
->fg
, &inst_curr
);
397 dev_err(di
->dev
, "Failed to finalize current measurement\n");
401 res
= ab8500_btemp_batctrl_volt_to_res(di
, batctrl
, inst_curr
);
403 ret
= ab8500_btemp_curr_source_enable(di
, false);
405 dev_err(di
->dev
, "%s curr source disable failed\n", __func__
);
409 dev_dbg(di
->dev
, "%s batctrl: %d res: %d inst_curr: %d samples: %d\n",
410 __func__
, batctrl
, res
, inst_curr
, i
);
416 * ab8500_btemp_res_to_temp() - resistance to temperature
417 * @di: pointer to the ab8500_btemp structure
418 * @tbl: pointer to the resiatance to temperature table
419 * @tbl_size: size of the resistance to temperature table
420 * @res: resistance to calculate the temperature from
422 * This function returns the battery temperature in degrees Celsius
423 * based on the NTC resistance.
425 static int ab8500_btemp_res_to_temp(struct ab8500_btemp
*di
,
426 const struct abx500_res_to_temp
*tbl
, int tbl_size
, int res
)
430 * Calculate the formula for the straight line
431 * Simple interpolation if we are within
432 * the resistance table limits, extrapolate
433 * if resistance is outside the limits.
435 if (res
> tbl
[0].resist
)
437 else if (res
<= tbl
[tbl_size
- 1].resist
)
441 while (!(res
<= tbl
[i
].resist
&&
442 res
> tbl
[i
+ 1].resist
))
446 return tbl
[i
].temp
+ ((tbl
[i
+ 1].temp
- tbl
[i
].temp
) *
447 (res
- tbl
[i
].resist
)) / (tbl
[i
+ 1].resist
- tbl
[i
].resist
);
451 * ab8500_btemp_measure_temp() - measure battery temperature
452 * @di: pointer to the ab8500_btemp structure
454 * Returns battery temperature (on success) else the previous temperature
456 static int ab8500_btemp_measure_temp(struct ab8500_btemp
*di
)
460 int rbat
, rntc
, vntc
;
463 id
= di
->bm
->batt_id
;
465 if (di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
&&
466 id
!= BATTERY_UNKNOWN
) {
468 rbat
= ab8500_btemp_get_batctrl_res(di
);
470 dev_err(di
->dev
, "%s get batctrl res failed\n",
473 * Return out-of-range temperature so that
474 * charging is stopped
476 return BTEMP_THERMAL_LOW_LIMIT
;
479 temp
= ab8500_btemp_res_to_temp(di
,
480 di
->bm
->bat_type
[id
].r_to_t_tbl
,
481 di
->bm
->bat_type
[id
].n_temp_tbl_elements
, rbat
);
483 vntc
= ab8500_gpadc_convert(di
->gpadc
, BTEMP_BALL
);
486 "%s gpadc conversion failed,"
487 " using previous value\n", __func__
);
491 * The PCB NTC is sourced from VTVOUT via a 230kOhm
494 rntc
= 230000 * vntc
/ (VTVOUT_V
- vntc
);
496 temp
= ab8500_btemp_res_to_temp(di
,
497 di
->bm
->bat_type
[id
].r_to_t_tbl
,
498 di
->bm
->bat_type
[id
].n_temp_tbl_elements
, rntc
);
501 dev_dbg(di
->dev
, "Battery temperature is %d\n", temp
);
506 * ab8500_btemp_id() - Identify the connected battery
507 * @di: pointer to the ab8500_btemp structure
509 * This function will try to identify the battery by reading the ID
510 * resistor. Some brands use a combined ID resistor with a NTC resistor to
511 * both be able to identify and to read the temperature of it.
513 static int ab8500_btemp_id(struct ab8500_btemp
*di
)
518 di
->curr_source
= BTEMP_BATCTRL_CURR_SRC_7UA
;
519 di
->bm
->batt_id
= BATTERY_UNKNOWN
;
521 res
= ab8500_btemp_get_batctrl_res(di
);
523 dev_err(di
->dev
, "%s get batctrl res failed\n", __func__
);
527 /* BATTERY_UNKNOWN is defined on position 0, skip it! */
528 for (i
= BATTERY_UNKNOWN
+ 1; i
< di
->bm
->n_btypes
; i
++) {
529 if ((res
<= di
->bm
->bat_type
[i
].resis_high
) &&
530 (res
>= di
->bm
->bat_type
[i
].resis_low
)) {
531 dev_dbg(di
->dev
, "Battery detected on %s"
532 " low %d < res %d < high: %d"
534 di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
?
535 "BATCTRL" : "BATTEMP",
536 di
->bm
->bat_type
[i
].resis_low
, res
,
537 di
->bm
->bat_type
[i
].resis_high
, i
);
544 if (di
->bm
->batt_id
== BATTERY_UNKNOWN
) {
545 dev_warn(di
->dev
, "Battery identified as unknown"
546 ", resistance %d Ohm\n", res
);
551 * We only have to change current source if the
552 * detected type is Type 1.
554 if (di
->bm
->adc_therm
== ABx500_ADC_THERM_BATCTRL
&&
555 di
->bm
->batt_id
== 1) {
556 dev_dbg(di
->dev
, "Set BATCTRL current source to 20uA\n");
557 di
->curr_source
= BTEMP_BATCTRL_CURR_SRC_20UA
;
560 return di
->bm
->batt_id
;
564 * ab8500_btemp_periodic_work() - Measuring the temperature periodically
565 * @work: pointer to the work_struct structure
567 * Work function for measuring the temperature periodically
569 static void ab8500_btemp_periodic_work(struct work_struct
*work
)
573 struct ab8500_btemp
*di
= container_of(work
,
574 struct ab8500_btemp
, btemp_periodic_work
.work
);
576 if (!di
->initialized
) {
577 /* Identify the battery */
578 if (ab8500_btemp_id(di
) < 0)
579 dev_warn(di
->dev
, "failed to identify the battery\n");
582 bat_temp
= ab8500_btemp_measure_temp(di
);
584 * Filter battery temperature.
585 * Allow direct updates on temperature only if two samples result in
586 * same temperature. Else only allow 1 degree change from previous
587 * reported value in the direction of the new measurement.
589 if ((bat_temp
== di
->prev_bat_temp
) || !di
->initialized
) {
590 if ((di
->bat_temp
!= di
->prev_bat_temp
) || !di
->initialized
) {
591 di
->initialized
= true;
592 di
->bat_temp
= bat_temp
;
593 power_supply_changed(di
->btemp_psy
);
595 } else if (bat_temp
< di
->prev_bat_temp
) {
597 power_supply_changed(di
->btemp_psy
);
598 } else if (bat_temp
> di
->prev_bat_temp
) {
600 power_supply_changed(di
->btemp_psy
);
602 di
->prev_bat_temp
= bat_temp
;
604 if (di
->events
.ac_conn
|| di
->events
.usb_conn
)
605 interval
= di
->bm
->temp_interval_chg
;
607 interval
= di
->bm
->temp_interval_nochg
;
609 /* Schedule a new measurement */
610 queue_delayed_work(di
->btemp_wq
,
611 &di
->btemp_periodic_work
,
612 round_jiffies(interval
* HZ
));
616 * ab8500_btemp_batctrlindb_handler() - battery removal detected
617 * @irq: interrupt number
618 * @_di: void pointer that has to address of ab8500_btemp
620 * Returns IRQ status(IRQ_HANDLED)
622 static irqreturn_t
ab8500_btemp_batctrlindb_handler(int irq
, void *_di
)
624 struct ab8500_btemp
*di
= _di
;
625 dev_err(di
->dev
, "Battery removal detected!\n");
627 di
->events
.batt_rem
= true;
628 power_supply_changed(di
->btemp_psy
);
634 * ab8500_btemp_templow_handler() - battery temp lower than 10 degrees
635 * @irq: interrupt number
636 * @_di: void pointer that has to address of ab8500_btemp
638 * Returns IRQ status(IRQ_HANDLED)
640 static irqreturn_t
ab8500_btemp_templow_handler(int irq
, void *_di
)
642 struct ab8500_btemp
*di
= _di
;
644 if (is_ab8500_3p3_or_earlier(di
->parent
)) {
645 dev_dbg(di
->dev
, "Ignore false btemp low irq"
646 " for ABB cut 1.0, 1.1, 2.0 and 3.3\n");
648 dev_crit(di
->dev
, "Battery temperature lower than -10deg c\n");
650 di
->events
.btemp_low
= true;
651 di
->events
.btemp_high
= false;
652 di
->events
.btemp_medhigh
= false;
653 di
->events
.btemp_lowmed
= false;
654 power_supply_changed(di
->btemp_psy
);
661 * ab8500_btemp_temphigh_handler() - battery temp higher than max temp
662 * @irq: interrupt number
663 * @_di: void pointer that has to address of ab8500_btemp
665 * Returns IRQ status(IRQ_HANDLED)
667 static irqreturn_t
ab8500_btemp_temphigh_handler(int irq
, void *_di
)
669 struct ab8500_btemp
*di
= _di
;
671 dev_crit(di
->dev
, "Battery temperature is higher than MAX temp\n");
673 di
->events
.btemp_high
= true;
674 di
->events
.btemp_medhigh
= false;
675 di
->events
.btemp_lowmed
= false;
676 di
->events
.btemp_low
= false;
677 power_supply_changed(di
->btemp_psy
);
683 * ab8500_btemp_lowmed_handler() - battery temp between low and medium
684 * @irq: interrupt number
685 * @_di: void pointer that has to address of ab8500_btemp
687 * Returns IRQ status(IRQ_HANDLED)
689 static irqreturn_t
ab8500_btemp_lowmed_handler(int irq
, void *_di
)
691 struct ab8500_btemp
*di
= _di
;
693 dev_dbg(di
->dev
, "Battery temperature is between low and medium\n");
695 di
->events
.btemp_lowmed
= true;
696 di
->events
.btemp_medhigh
= false;
697 di
->events
.btemp_high
= false;
698 di
->events
.btemp_low
= false;
699 power_supply_changed(di
->btemp_psy
);
705 * ab8500_btemp_medhigh_handler() - battery temp between medium and high
706 * @irq: interrupt number
707 * @_di: void pointer that has to address of ab8500_btemp
709 * Returns IRQ status(IRQ_HANDLED)
711 static irqreturn_t
ab8500_btemp_medhigh_handler(int irq
, void *_di
)
713 struct ab8500_btemp
*di
= _di
;
715 dev_dbg(di
->dev
, "Battery temperature is between medium and high\n");
717 di
->events
.btemp_medhigh
= true;
718 di
->events
.btemp_lowmed
= false;
719 di
->events
.btemp_high
= false;
720 di
->events
.btemp_low
= false;
721 power_supply_changed(di
->btemp_psy
);
727 * ab8500_btemp_periodic() - Periodic temperature measurements
728 * @di: pointer to the ab8500_btemp structure
729 * @enable: enable or disable periodic temperature measurements
731 * Starts of stops periodic temperature measurements. Periodic measurements
732 * should only be done when a charger is connected.
734 static void ab8500_btemp_periodic(struct ab8500_btemp
*di
,
737 dev_dbg(di
->dev
, "Enable periodic temperature measurements: %d\n",
740 * Make sure a new measurement is done directly by cancelling
743 cancel_delayed_work_sync(&di
->btemp_periodic_work
);
746 queue_delayed_work(di
->btemp_wq
, &di
->btemp_periodic_work
, 0);
750 * ab8500_btemp_get_temp() - get battery temperature
751 * @di: pointer to the ab8500_btemp structure
753 * Returns battery temperature
755 int ab8500_btemp_get_temp(struct ab8500_btemp
*di
)
760 * The BTEMP events are not reliabe on AB8500 cut3.3
763 if (is_ab8500_3p3_or_earlier(di
->parent
)) {
764 temp
= di
->bat_temp
* 10;
766 if (di
->events
.btemp_low
) {
767 if (temp
> di
->btemp_ranges
.btemp_low_limit
)
768 temp
= di
->btemp_ranges
.btemp_low_limit
* 10;
770 temp
= di
->bat_temp
* 10;
771 } else if (di
->events
.btemp_high
) {
772 if (temp
< di
->btemp_ranges
.btemp_high_limit
)
773 temp
= di
->btemp_ranges
.btemp_high_limit
* 10;
775 temp
= di
->bat_temp
* 10;
776 } else if (di
->events
.btemp_lowmed
) {
777 if (temp
> di
->btemp_ranges
.btemp_med_limit
)
778 temp
= di
->btemp_ranges
.btemp_med_limit
* 10;
780 temp
= di
->bat_temp
* 10;
781 } else if (di
->events
.btemp_medhigh
) {
782 if (temp
< di
->btemp_ranges
.btemp_med_limit
)
783 temp
= di
->btemp_ranges
.btemp_med_limit
* 10;
785 temp
= di
->bat_temp
* 10;
787 temp
= di
->bat_temp
* 10;
791 EXPORT_SYMBOL(ab8500_btemp_get_temp
);
794 * ab8500_btemp_get_batctrl_temp() - get the temperature
795 * @btemp: pointer to the btemp structure
797 * Returns the batctrl temperature in millidegrees
799 int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp
*btemp
)
801 return btemp
->bat_temp
* 1000;
803 EXPORT_SYMBOL(ab8500_btemp_get_batctrl_temp
);
806 * ab8500_btemp_get_property() - get the btemp properties
807 * @psy: pointer to the power_supply structure
808 * @psp: pointer to the power_supply_property structure
809 * @val: pointer to the power_supply_propval union
811 * This function gets called when an application tries to get the btemp
812 * properties by reading the sysfs files.
813 * online: presence of the battery
814 * present: presence of the battery
815 * technology: battery technology
816 * temp: battery temperature
817 * Returns error code in case of failure else 0(on success)
819 static int ab8500_btemp_get_property(struct power_supply
*psy
,
820 enum power_supply_property psp
,
821 union power_supply_propval
*val
)
823 struct ab8500_btemp
*di
= power_supply_get_drvdata(psy
);
826 case POWER_SUPPLY_PROP_PRESENT
:
827 case POWER_SUPPLY_PROP_ONLINE
:
828 if (di
->events
.batt_rem
)
833 case POWER_SUPPLY_PROP_TECHNOLOGY
:
834 val
->intval
= di
->bm
->bat_type
[di
->bm
->batt_id
].name
;
836 case POWER_SUPPLY_PROP_TEMP
:
837 val
->intval
= ab8500_btemp_get_temp(di
);
845 static int ab8500_btemp_get_ext_psy_data(struct device
*dev
, void *data
)
847 struct power_supply
*psy
;
848 struct power_supply
*ext
= dev_get_drvdata(dev
);
849 const char **supplicants
= (const char **)ext
->supplied_to
;
850 struct ab8500_btemp
*di
;
851 union power_supply_propval ret
;
854 psy
= (struct power_supply
*)data
;
855 di
= power_supply_get_drvdata(psy
);
858 * For all psy where the name of your driver
859 * appears in any supplied_to
861 j
= match_string(supplicants
, ext
->num_supplicants
, psy
->desc
->name
);
865 /* Go through all properties for the psy */
866 for (j
= 0; j
< ext
->desc
->num_properties
; j
++) {
867 enum power_supply_property prop
;
868 prop
= ext
->desc
->properties
[j
];
870 if (power_supply_get_property(ext
, prop
, &ret
))
874 case POWER_SUPPLY_PROP_PRESENT
:
875 switch (ext
->desc
->type
) {
876 case POWER_SUPPLY_TYPE_MAINS
:
877 /* AC disconnected */
878 if (!ret
.intval
&& di
->events
.ac_conn
) {
879 di
->events
.ac_conn
= false;
882 else if (ret
.intval
&& !di
->events
.ac_conn
) {
883 di
->events
.ac_conn
= true;
884 if (!di
->events
.usb_conn
)
885 ab8500_btemp_periodic(di
, true);
888 case POWER_SUPPLY_TYPE_USB
:
889 /* USB disconnected */
890 if (!ret
.intval
&& di
->events
.usb_conn
) {
891 di
->events
.usb_conn
= false;
894 else if (ret
.intval
&& !di
->events
.usb_conn
) {
895 di
->events
.usb_conn
= true;
896 if (!di
->events
.ac_conn
)
897 ab8500_btemp_periodic(di
, true);
912 * ab8500_btemp_external_power_changed() - callback for power supply changes
913 * @psy: pointer to the structure power_supply
915 * This function is pointing to the function pointer external_power_changed
916 * of the structure power_supply.
917 * This function gets executed when there is a change in the external power
918 * supply to the btemp.
920 static void ab8500_btemp_external_power_changed(struct power_supply
*psy
)
922 struct ab8500_btemp
*di
= power_supply_get_drvdata(psy
);
924 class_for_each_device(power_supply_class
, NULL
,
925 di
->btemp_psy
, ab8500_btemp_get_ext_psy_data
);
928 /* ab8500 btemp driver interrupts and their respective isr */
929 static struct ab8500_btemp_interrupts ab8500_btemp_irq
[] = {
930 {"BAT_CTRL_INDB", ab8500_btemp_batctrlindb_handler
},
931 {"BTEMP_LOW", ab8500_btemp_templow_handler
},
932 {"BTEMP_HIGH", ab8500_btemp_temphigh_handler
},
933 {"BTEMP_LOW_MEDIUM", ab8500_btemp_lowmed_handler
},
934 {"BTEMP_MEDIUM_HIGH", ab8500_btemp_medhigh_handler
},
937 #if defined(CONFIG_PM)
938 static int ab8500_btemp_resume(struct platform_device
*pdev
)
940 struct ab8500_btemp
*di
= platform_get_drvdata(pdev
);
942 ab8500_btemp_periodic(di
, true);
947 static int ab8500_btemp_suspend(struct platform_device
*pdev
,
950 struct ab8500_btemp
*di
= platform_get_drvdata(pdev
);
952 ab8500_btemp_periodic(di
, false);
957 #define ab8500_btemp_suspend NULL
958 #define ab8500_btemp_resume NULL
961 static int ab8500_btemp_remove(struct platform_device
*pdev
)
963 struct ab8500_btemp
*di
= platform_get_drvdata(pdev
);
966 /* Disable interrupts */
967 for (i
= 0; i
< ARRAY_SIZE(ab8500_btemp_irq
); i
++) {
968 irq
= platform_get_irq_byname(pdev
, ab8500_btemp_irq
[i
].name
);
972 /* Delete the work queue */
973 destroy_workqueue(di
->btemp_wq
);
975 flush_scheduled_work();
976 power_supply_unregister(di
->btemp_psy
);
981 static char *supply_interface
[] = {
986 static const struct power_supply_desc ab8500_btemp_desc
= {
987 .name
= "ab8500_btemp",
988 .type
= POWER_SUPPLY_TYPE_BATTERY
,
989 .properties
= ab8500_btemp_props
,
990 .num_properties
= ARRAY_SIZE(ab8500_btemp_props
),
991 .get_property
= ab8500_btemp_get_property
,
992 .external_power_changed
= ab8500_btemp_external_power_changed
,
995 static int ab8500_btemp_probe(struct platform_device
*pdev
)
997 struct device_node
*np
= pdev
->dev
.of_node
;
998 struct abx500_bm_data
*plat
= pdev
->dev
.platform_data
;
999 struct power_supply_config psy_cfg
= {};
1000 struct ab8500_btemp
*di
;
1001 int irq
, i
, ret
= 0;
1004 di
= devm_kzalloc(&pdev
->dev
, sizeof(*di
), GFP_KERNEL
);
1006 dev_err(&pdev
->dev
, "%s no mem for ab8500_btemp\n", __func__
);
1011 dev_err(&pdev
->dev
, "no battery management data supplied\n");
1017 ret
= ab8500_bm_of_probe(&pdev
->dev
, np
, di
->bm
);
1019 dev_err(&pdev
->dev
, "failed to get battery information\n");
1024 /* get parent data */
1025 di
->dev
= &pdev
->dev
;
1026 di
->parent
= dev_get_drvdata(pdev
->dev
.parent
);
1027 di
->gpadc
= ab8500_gpadc_get("ab8500-gpadc.0");
1029 di
->initialized
= false;
1031 psy_cfg
.supplied_to
= supply_interface
;
1032 psy_cfg
.num_supplicants
= ARRAY_SIZE(supply_interface
);
1033 psy_cfg
.drv_data
= di
;
1035 /* Create a work queue for the btemp */
1037 alloc_workqueue("ab8500_btemp_wq", WQ_MEM_RECLAIM
, 0);
1038 if (di
->btemp_wq
== NULL
) {
1039 dev_err(di
->dev
, "failed to create work queue\n");
1043 /* Init work for measuring temperature periodically */
1044 INIT_DEFERRABLE_WORK(&di
->btemp_periodic_work
,
1045 ab8500_btemp_periodic_work
);
1047 /* Set BTEMP thermal limits. Low and Med are fixed */
1048 di
->btemp_ranges
.btemp_low_limit
= BTEMP_THERMAL_LOW_LIMIT
;
1049 di
->btemp_ranges
.btemp_med_limit
= BTEMP_THERMAL_MED_LIMIT
;
1051 ret
= abx500_get_register_interruptible(di
->dev
, AB8500_CHARGER
,
1052 AB8500_BTEMP_HIGH_TH
, &val
);
1054 dev_err(di
->dev
, "%s ab8500 read failed\n", __func__
);
1058 case BTEMP_HIGH_TH_57_0
:
1059 case BTEMP_HIGH_TH_57_1
:
1060 di
->btemp_ranges
.btemp_high_limit
=
1061 BTEMP_THERMAL_HIGH_LIMIT_57
;
1063 case BTEMP_HIGH_TH_52
:
1064 di
->btemp_ranges
.btemp_high_limit
=
1065 BTEMP_THERMAL_HIGH_LIMIT_52
;
1067 case BTEMP_HIGH_TH_62
:
1068 di
->btemp_ranges
.btemp_high_limit
=
1069 BTEMP_THERMAL_HIGH_LIMIT_62
;
1073 /* Register BTEMP power supply class */
1074 di
->btemp_psy
= power_supply_register(di
->dev
, &ab8500_btemp_desc
,
1076 if (IS_ERR(di
->btemp_psy
)) {
1077 dev_err(di
->dev
, "failed to register BTEMP psy\n");
1078 ret
= PTR_ERR(di
->btemp_psy
);
1082 /* Register interrupts */
1083 for (i
= 0; i
< ARRAY_SIZE(ab8500_btemp_irq
); i
++) {
1084 irq
= platform_get_irq_byname(pdev
, ab8500_btemp_irq
[i
].name
);
1085 ret
= request_threaded_irq(irq
, NULL
, ab8500_btemp_irq
[i
].isr
,
1086 IRQF_SHARED
| IRQF_NO_SUSPEND
,
1087 ab8500_btemp_irq
[i
].name
, di
);
1090 dev_err(di
->dev
, "failed to request %s IRQ %d: %d\n"
1091 , ab8500_btemp_irq
[i
].name
, irq
, ret
);
1094 dev_dbg(di
->dev
, "Requested %s IRQ %d: %d\n",
1095 ab8500_btemp_irq
[i
].name
, irq
, ret
);
1098 platform_set_drvdata(pdev
, di
);
1100 /* Kick off periodic temperature measurements */
1101 ab8500_btemp_periodic(di
, true);
1102 list_add_tail(&di
->node
, &ab8500_btemp_list
);
1107 power_supply_unregister(di
->btemp_psy
);
1109 /* We also have to free all successfully registered irqs */
1110 for (i
= i
- 1; i
>= 0; i
--) {
1111 irq
= platform_get_irq_byname(pdev
, ab8500_btemp_irq
[i
].name
);
1115 destroy_workqueue(di
->btemp_wq
);
1119 static const struct of_device_id ab8500_btemp_match
[] = {
1120 { .compatible
= "stericsson,ab8500-btemp", },
1124 static struct platform_driver ab8500_btemp_driver
= {
1125 .probe
= ab8500_btemp_probe
,
1126 .remove
= ab8500_btemp_remove
,
1127 .suspend
= ab8500_btemp_suspend
,
1128 .resume
= ab8500_btemp_resume
,
1130 .name
= "ab8500-btemp",
1131 .of_match_table
= ab8500_btemp_match
,
1135 static int __init
ab8500_btemp_init(void)
1137 return platform_driver_register(&ab8500_btemp_driver
);
1140 static void __exit
ab8500_btemp_exit(void)
1142 platform_driver_unregister(&ab8500_btemp_driver
);
1145 device_initcall(ab8500_btemp_init
);
1146 module_exit(ab8500_btemp_exit
);
1148 MODULE_LICENSE("GPL v2");
1149 MODULE_AUTHOR("Johan Palsson, Karl Komierowski, Arun R Murthy");
1150 MODULE_ALIAS("platform:ab8500-btemp");
1151 MODULE_DESCRIPTION("AB8500 battery temperature driver");