1 // SPDX-License-Identifier: GPL-2.0-only
3 * axp288_adc.c - X-Powers AXP288 PMIC ADC Driver
5 * Copyright (C) 2014 Intel Corporation
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 #include <linux/dmi.h>
11 #include <linux/module.h>
12 #include <linux/mutex.h>
13 #include <linux/kernel.h>
14 #include <linux/device.h>
15 #include <linux/regmap.h>
16 #include <linux/mfd/axp20x.h>
17 #include <linux/platform_device.h>
19 #include <linux/iio/iio.h>
20 #include <linux/iio/machine.h>
21 #include <linux/iio/driver.h>
24 * This mask enables all ADCs except for the battery temp-sensor (TS), that is
25 * left as-is to avoid breaking charging on devices without a temp-sensor.
27 #define AXP288_ADC_EN_MASK 0xF0
28 #define AXP288_ADC_TS_ENABLE 0x01
30 #define AXP288_ADC_TS_BIAS_MASK GENMASK(5, 4)
31 #define AXP288_ADC_TS_BIAS_20UA (0 << 4)
32 #define AXP288_ADC_TS_BIAS_40UA (1 << 4)
33 #define AXP288_ADC_TS_BIAS_60UA (2 << 4)
34 #define AXP288_ADC_TS_BIAS_80UA (3 << 4)
35 #define AXP288_ADC_TS_CURRENT_ON_OFF_MASK GENMASK(1, 0)
36 #define AXP288_ADC_TS_CURRENT_OFF (0 << 0)
37 #define AXP288_ADC_TS_CURRENT_ON_WHEN_CHARGING (1 << 0)
38 #define AXP288_ADC_TS_CURRENT_ON_ONDEMAND (2 << 0)
39 #define AXP288_ADC_TS_CURRENT_ON (3 << 0)
45 AXP288_ADC_BATT_CHRG_I
,
46 AXP288_ADC_BATT_DISCHRG_I
,
51 struct axp288_adc_info
{
53 struct regmap
*regmap
;
54 /* lock to protect against multiple access to the device */
59 static const struct iio_chan_spec axp288_adc_channels
[] = {
64 .address
= AXP288_TS_ADC_H
,
65 .datasheet_name
= "TS_PIN",
66 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
71 .address
= AXP288_PMIC_ADC_H
,
72 .datasheet_name
= "PMIC_TEMP",
73 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
78 .address
= AXP288_GP_ADC_H
,
79 .datasheet_name
= "GPADC",
80 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
85 .address
= AXP20X_BATT_CHRG_I_H
,
86 .datasheet_name
= "BATT_CHG_I",
87 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
92 .address
= AXP20X_BATT_DISCHRG_I_H
,
93 .datasheet_name
= "BATT_DISCHRG_I",
94 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
99 .address
= AXP20X_BATT_V_H
,
100 .datasheet_name
= "BATT_V",
101 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
105 /* for consumer drivers */
106 static const struct iio_map axp288_adc_default_maps
[] = {
107 IIO_MAP("TS_PIN", "axp288-batt", "axp288-batt-temp"),
108 IIO_MAP("PMIC_TEMP", "axp288-pmic", "axp288-pmic-temp"),
109 IIO_MAP("GPADC", "axp288-gpadc", "axp288-system-temp"),
110 IIO_MAP("BATT_CHG_I", "axp288-chrg", "axp288-chrg-curr"),
111 IIO_MAP("BATT_DISCHRG_I", "axp288-chrg", "axp288-chrg-d-curr"),
112 IIO_MAP("BATT_V", "axp288-batt", "axp288-batt-volt"),
116 static int axp288_adc_read_channel(int *val
, unsigned long address
,
117 struct regmap
*regmap
)
121 if (regmap_bulk_read(regmap
, address
, buf
, 2))
123 *val
= (buf
[0] << 4) + ((buf
[1] >> 4) & 0x0F);
129 * The current-source used for the battery temp-sensor (TS) is shared
130 * with the GPADC. For proper fuel-gauge and charger operation the TS
131 * current-source needs to be permanently on. But to read the GPADC we
132 * need to temporary switch the TS current-source to ondemand, so that
133 * the GPADC can use it, otherwise we will always read an all 0 value.
135 static int axp288_adc_set_ts(struct axp288_adc_info
*info
,
136 unsigned int mode
, unsigned long address
)
140 /* No need to switch the current-source if the TS pin is disabled */
141 if (!info
->ts_enabled
)
144 /* Channels other than GPADC do not need the current source */
145 if (address
!= AXP288_GP_ADC_H
)
148 ret
= regmap_update_bits(info
->regmap
, AXP288_ADC_TS_PIN_CTRL
,
149 AXP288_ADC_TS_CURRENT_ON_OFF_MASK
, mode
);
153 /* When switching to the GPADC pin give things some time to settle */
154 if (mode
== AXP288_ADC_TS_CURRENT_ON_ONDEMAND
)
155 usleep_range(6000, 10000);
160 static int axp288_adc_read_raw(struct iio_dev
*indio_dev
,
161 struct iio_chan_spec
const *chan
,
162 int *val
, int *val2
, long mask
)
165 struct axp288_adc_info
*info
= iio_priv(indio_dev
);
167 mutex_lock(&info
->lock
);
169 case IIO_CHAN_INFO_RAW
:
170 if (axp288_adc_set_ts(info
, AXP288_ADC_TS_CURRENT_ON_ONDEMAND
,
172 dev_err(&indio_dev
->dev
, "GPADC mode\n");
176 ret
= axp288_adc_read_channel(val
, chan
->address
, info
->regmap
);
177 if (axp288_adc_set_ts(info
, AXP288_ADC_TS_CURRENT_ON
,
179 dev_err(&indio_dev
->dev
, "TS pin restore\n");
184 mutex_unlock(&info
->lock
);
190 * We rely on the machine's firmware to correctly setup the TS pin bias current
191 * at boot. This lists systems with broken fw where we need to set it ourselves.
193 static const struct dmi_system_id axp288_adc_ts_bias_override
[] = {
195 /* Lenovo Ideapad 100S (11 inch) */
197 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
198 DMI_MATCH(DMI_PRODUCT_VERSION
, "Lenovo ideapad 100S-11IBY"),
200 .driver_data
= (void *)(uintptr_t)AXP288_ADC_TS_BIAS_80UA
,
203 /* Nuvision Solo 10 Draw */
205 DMI_MATCH(DMI_SYS_VENDOR
, "TMAX"),
206 DMI_MATCH(DMI_PRODUCT_NAME
, "TM101W610L"),
208 .driver_data
= (void *)(uintptr_t)AXP288_ADC_TS_BIAS_80UA
,
213 static int axp288_adc_initialize(struct axp288_adc_info
*info
)
215 const struct dmi_system_id
*bias_override
;
216 int ret
, adc_enable_val
;
218 bias_override
= dmi_first_match(axp288_adc_ts_bias_override
);
220 ret
= regmap_update_bits(info
->regmap
, AXP288_ADC_TS_PIN_CTRL
,
221 AXP288_ADC_TS_BIAS_MASK
,
222 (uintptr_t)bias_override
->driver_data
);
228 * Determine if the TS pin is enabled and set the TS current-source
231 ret
= regmap_read(info
->regmap
, AXP20X_ADC_EN1
, &adc_enable_val
);
235 if (adc_enable_val
& AXP288_ADC_TS_ENABLE
) {
236 info
->ts_enabled
= true;
237 ret
= regmap_update_bits(info
->regmap
, AXP288_ADC_TS_PIN_CTRL
,
238 AXP288_ADC_TS_CURRENT_ON_OFF_MASK
,
239 AXP288_ADC_TS_CURRENT_ON
);
241 info
->ts_enabled
= false;
242 ret
= regmap_update_bits(info
->regmap
, AXP288_ADC_TS_PIN_CTRL
,
243 AXP288_ADC_TS_CURRENT_ON_OFF_MASK
,
244 AXP288_ADC_TS_CURRENT_OFF
);
249 /* Turn on the ADC for all channels except TS, leave TS as is */
250 return regmap_set_bits(info
->regmap
, AXP20X_ADC_EN1
,
254 static const struct iio_info axp288_adc_iio_info
= {
255 .read_raw
= &axp288_adc_read_raw
,
258 static int axp288_adc_probe(struct platform_device
*pdev
)
261 struct axp288_adc_info
*info
;
262 struct iio_dev
*indio_dev
;
263 struct axp20x_dev
*axp20x
= dev_get_drvdata(pdev
->dev
.parent
);
265 indio_dev
= devm_iio_device_alloc(&pdev
->dev
, sizeof(*info
));
269 info
= iio_priv(indio_dev
);
270 info
->irq
= platform_get_irq(pdev
, 0);
274 info
->regmap
= axp20x
->regmap
;
276 * Set ADC to enabled state at all time, including system suspend.
277 * otherwise internal fuel gauge functionality may be affected.
279 ret
= axp288_adc_initialize(info
);
281 dev_err(&pdev
->dev
, "unable to enable ADC device\n");
285 indio_dev
->name
= pdev
->name
;
286 indio_dev
->channels
= axp288_adc_channels
;
287 indio_dev
->num_channels
= ARRAY_SIZE(axp288_adc_channels
);
288 indio_dev
->info
= &axp288_adc_iio_info
;
289 indio_dev
->modes
= INDIO_DIRECT_MODE
;
291 ret
= devm_iio_map_array_register(&pdev
->dev
, indio_dev
, axp288_adc_default_maps
);
295 mutex_init(&info
->lock
);
297 return devm_iio_device_register(&pdev
->dev
, indio_dev
);
300 static const struct platform_device_id axp288_adc_id_table
[] = {
301 { .name
= "axp288_adc" },
305 static struct platform_driver axp288_adc_driver
= {
306 .probe
= axp288_adc_probe
,
307 .id_table
= axp288_adc_id_table
,
309 .name
= "axp288_adc",
313 MODULE_DEVICE_TABLE(platform
, axp288_adc_id_table
);
315 module_platform_driver(axp288_adc_driver
);
317 MODULE_AUTHOR("Jacob Pan <jacob.jun.pan@linux.intel.com>");
318 MODULE_DESCRIPTION("X-Powers AXP288 ADC Driver");
319 MODULE_LICENSE("GPL");