1ec82edb2SDmitry Baryshkov /* SPDX-License-Identifier: GPL-2.0 */ 2ec82edb2SDmitry Baryshkov /* 3ec82edb2SDmitry Baryshkov * Code shared between the different Qualcomm PMIC voltage ADCs 4ec82edb2SDmitry Baryshkov */ 5ec82edb2SDmitry Baryshkov 6ec82edb2SDmitry Baryshkov #ifndef QCOM_VADC_COMMON_H 7ec82edb2SDmitry Baryshkov #define QCOM_VADC_COMMON_H 8ec82edb2SDmitry Baryshkov 9a5e9b2ddSAndy Shevchenko #include <linux/math.h> 10ec82edb2SDmitry Baryshkov #include <linux/types.h> 11ec82edb2SDmitry Baryshkov 12ec82edb2SDmitry Baryshkov #define VADC_CONV_TIME_MIN_US 2000 13ec82edb2SDmitry Baryshkov #define VADC_CONV_TIME_MAX_US 2100 14ec82edb2SDmitry Baryshkov 15ec82edb2SDmitry Baryshkov /* Min ADC code represents 0V */ 16ec82edb2SDmitry Baryshkov #define VADC_MIN_ADC_CODE 0x6000 17ec82edb2SDmitry Baryshkov /* Max ADC code represents full-scale range of 1.8V */ 18ec82edb2SDmitry Baryshkov #define VADC_MAX_ADC_CODE 0xa800 19ec82edb2SDmitry Baryshkov 20ec82edb2SDmitry Baryshkov #define VADC_ABSOLUTE_RANGE_UV 625000 21ec82edb2SDmitry Baryshkov #define VADC_RATIOMETRIC_RANGE 1800 22ec82edb2SDmitry Baryshkov 23ec82edb2SDmitry Baryshkov #define VADC_DEF_PRESCALING 0 /* 1:1 */ 24ec82edb2SDmitry Baryshkov #define VADC_DEF_DECIMATION 0 /* 512 */ 25ec82edb2SDmitry Baryshkov #define VADC_DEF_HW_SETTLE_TIME 0 /* 0 us */ 26ec82edb2SDmitry Baryshkov #define VADC_DEF_AVG_SAMPLES 0 /* 1 sample */ 27ec82edb2SDmitry Baryshkov #define VADC_DEF_CALIB_TYPE VADC_CALIB_ABSOLUTE 28ec82edb2SDmitry Baryshkov 29ec82edb2SDmitry Baryshkov #define VADC_DECIMATION_MIN 512 30ec82edb2SDmitry Baryshkov #define VADC_DECIMATION_MAX 4096 31ec82edb2SDmitry Baryshkov #define ADC5_DEF_VBAT_PRESCALING 1 /* 1:3 */ 32ec82edb2SDmitry Baryshkov #define ADC5_DECIMATION_SHORT 250 33ec82edb2SDmitry Baryshkov #define ADC5_DECIMATION_MEDIUM 420 34ec82edb2SDmitry Baryshkov #define ADC5_DECIMATION_LONG 840 35ec82edb2SDmitry Baryshkov /* Default decimation - 1024 for rev2, 840 for pmic5 */ 36ec82edb2SDmitry Baryshkov #define ADC5_DECIMATION_DEFAULT 2 37ec82edb2SDmitry Baryshkov #define ADC5_DECIMATION_SAMPLES_MAX 3 38ec82edb2SDmitry Baryshkov 39ec82edb2SDmitry Baryshkov #define VADC_HW_SETTLE_DELAY_MAX 10000 40ec82edb2SDmitry Baryshkov #define VADC_HW_SETTLE_SAMPLES_MAX 16 41ec82edb2SDmitry Baryshkov #define VADC_AVG_SAMPLES_MAX 512 42ec82edb2SDmitry Baryshkov #define ADC5_AVG_SAMPLES_MAX 16 43ec82edb2SDmitry Baryshkov 44ec82edb2SDmitry Baryshkov #define PMIC5_CHG_TEMP_SCALE_FACTOR 377500 45ec82edb2SDmitry Baryshkov #define PMIC5_SMB_TEMP_CONSTANT 419400 46ec82edb2SDmitry Baryshkov #define PMIC5_SMB_TEMP_SCALE_FACTOR 356 47ec82edb2SDmitry Baryshkov 48ec82edb2SDmitry Baryshkov #define PMI_CHG_SCALE_1 -138890 49ec82edb2SDmitry Baryshkov #define PMI_CHG_SCALE_2 391750000000LL 50ec82edb2SDmitry Baryshkov 51ec82edb2SDmitry Baryshkov #define VADC5_MAX_CODE 0x7fff 52ec82edb2SDmitry Baryshkov #define ADC5_FULL_SCALE_CODE 0x70e4 53ec82edb2SDmitry Baryshkov #define ADC5_USR_DATA_CHECK 0x8000 54ec82edb2SDmitry Baryshkov 55ec82edb2SDmitry Baryshkov #define R_PU_100K 100000 56ec82edb2SDmitry Baryshkov #define RATIO_MAX_ADC7 BIT(14) 57ec82edb2SDmitry Baryshkov 58ec82edb2SDmitry Baryshkov /* 59ec82edb2SDmitry Baryshkov * VADC_CALIB_ABSOLUTE: uses the 625mV and 1.25V as reference channels. 60ec82edb2SDmitry Baryshkov * VADC_CALIB_RATIOMETRIC: uses the reference voltage (1.8V) and GND for 61ec82edb2SDmitry Baryshkov * calibration. 62ec82edb2SDmitry Baryshkov */ 63ec82edb2SDmitry Baryshkov enum vadc_calibration { 64ec82edb2SDmitry Baryshkov VADC_CALIB_ABSOLUTE = 0, 65ec82edb2SDmitry Baryshkov VADC_CALIB_RATIOMETRIC 66ec82edb2SDmitry Baryshkov }; 67ec82edb2SDmitry Baryshkov 68ec82edb2SDmitry Baryshkov /** 69ec82edb2SDmitry Baryshkov * struct vadc_linear_graph - Represent ADC characteristics. 70ec82edb2SDmitry Baryshkov * @dy: numerator slope to calculate the gain. 71ec82edb2SDmitry Baryshkov * @dx: denominator slope to calculate the gain. 72ec82edb2SDmitry Baryshkov * @gnd: A/D word of the ground reference used for the channel. 73ec82edb2SDmitry Baryshkov * 74ec82edb2SDmitry Baryshkov * Each ADC device has different offset and gain parameters which are 75ec82edb2SDmitry Baryshkov * computed to calibrate the device. 76ec82edb2SDmitry Baryshkov */ 77ec82edb2SDmitry Baryshkov struct vadc_linear_graph { 78ec82edb2SDmitry Baryshkov s32 dy; 79ec82edb2SDmitry Baryshkov s32 dx; 80ec82edb2SDmitry Baryshkov s32 gnd; 81ec82edb2SDmitry Baryshkov }; 82ec82edb2SDmitry Baryshkov 83ec82edb2SDmitry Baryshkov /** 84ec82edb2SDmitry Baryshkov * enum vadc_scale_fn_type - Scaling function to convert ADC code to 85ec82edb2SDmitry Baryshkov * physical scaled units for the channel. 86ec82edb2SDmitry Baryshkov * SCALE_DEFAULT: Default scaling to convert raw adc code to voltage (uV). 87ec82edb2SDmitry Baryshkov * SCALE_THERM_100K_PULLUP: Returns temperature in millidegC. 88ec82edb2SDmitry Baryshkov * Uses a mapping table with 100K pullup. 89ec82edb2SDmitry Baryshkov * SCALE_PMIC_THERM: Returns result in milli degree's Centigrade. 90ec82edb2SDmitry Baryshkov * SCALE_XOTHERM: Returns XO thermistor voltage in millidegC. 91ec82edb2SDmitry Baryshkov * SCALE_PMI_CHG_TEMP: Conversion for PMI CHG temp 92ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_DEFAULT: Default scaling to convert raw adc code to 93ec82edb2SDmitry Baryshkov * voltage (uV) with hardware applied offset/slope values to adc code. 94ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_THERM_100K_PULLUP: Returns temperature in millidegC using 95ec82edb2SDmitry Baryshkov * lookup table. The hardware applies offset/slope to adc code. 96ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_XOTHERM: Returns XO thermistor voltage in millidegC using 97ec82edb2SDmitry Baryshkov * 100k pullup. The hardware applies offset/slope to adc code. 98ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_THERM_100K_PU_PM7: Returns temperature in millidegC using 99ec82edb2SDmitry Baryshkov * lookup table for PMIC7. The hardware applies offset/slope to adc code. 100ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_PMIC_THERM: Returns result in milli degree's Centigrade. 101ec82edb2SDmitry Baryshkov * The hardware applies offset/slope to adc code. 102ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_PMIC_THERM: Returns result in milli degree's Centigrade. 103ec82edb2SDmitry Baryshkov * The hardware applies offset/slope to adc code. This is for PMIC7. 104ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_PM5_CHG_TEMP: Returns result in millidegrees for PMIC5 105ec82edb2SDmitry Baryshkov * charger temperature. 106ec82edb2SDmitry Baryshkov * SCALE_HW_CALIB_PM5_SMB_TEMP: Returns result in millidegrees for PMIC5 107ec82edb2SDmitry Baryshkov * SMB1390 temperature. 108ec82edb2SDmitry Baryshkov */ 109ec82edb2SDmitry Baryshkov enum vadc_scale_fn_type { 110ec82edb2SDmitry Baryshkov SCALE_DEFAULT = 0, 111ec82edb2SDmitry Baryshkov SCALE_THERM_100K_PULLUP, 112ec82edb2SDmitry Baryshkov SCALE_PMIC_THERM, 113ec82edb2SDmitry Baryshkov SCALE_XOTHERM, 114ec82edb2SDmitry Baryshkov SCALE_PMI_CHG_TEMP, 115ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_DEFAULT, 116ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_THERM_100K_PULLUP, 117ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_XOTHERM, 118ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_THERM_100K_PU_PM7, 119ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_PMIC_THERM, 120ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_PMIC_THERM_PM7, 121ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_PM5_CHG_TEMP, 122ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_PM5_SMB_TEMP, 123ec82edb2SDmitry Baryshkov SCALE_HW_CALIB_INVALID, 124ec82edb2SDmitry Baryshkov }; 125ec82edb2SDmitry Baryshkov 126ec82edb2SDmitry Baryshkov struct adc5_data { 127ec82edb2SDmitry Baryshkov const u32 full_scale_code_volt; 128ec82edb2SDmitry Baryshkov const u32 full_scale_code_cur; 129ec82edb2SDmitry Baryshkov const struct adc5_channels *adc_chans; 130ec82edb2SDmitry Baryshkov const struct iio_info *info; 131ec82edb2SDmitry Baryshkov unsigned int *decimation; 132ec82edb2SDmitry Baryshkov unsigned int *hw_settle_1; 133ec82edb2SDmitry Baryshkov unsigned int *hw_settle_2; 134ec82edb2SDmitry Baryshkov }; 135ec82edb2SDmitry Baryshkov 136ec82edb2SDmitry Baryshkov int qcom_vadc_scale(enum vadc_scale_fn_type scaletype, 137ec82edb2SDmitry Baryshkov const struct vadc_linear_graph *calib_graph, 138a5e9b2ddSAndy Shevchenko const struct u32_fract *prescale, 139ec82edb2SDmitry Baryshkov bool absolute, 140ec82edb2SDmitry Baryshkov u16 adc_code, int *result_mdec); 141ec82edb2SDmitry Baryshkov 142ec82edb2SDmitry Baryshkov struct qcom_adc5_scale_type { 143a5e9b2ddSAndy Shevchenko int (*scale_fn)(const struct u32_fract *prescale, 144ec82edb2SDmitry Baryshkov const struct adc5_data *data, u16 adc_code, int *result); 145ec82edb2SDmitry Baryshkov }; 146ec82edb2SDmitry Baryshkov 147ec82edb2SDmitry Baryshkov int qcom_adc5_hw_scale(enum vadc_scale_fn_type scaletype, 148ec82edb2SDmitry Baryshkov unsigned int prescale_ratio, 149ec82edb2SDmitry Baryshkov const struct adc5_data *data, 150ec82edb2SDmitry Baryshkov u16 adc_code, int *result_mdec); 151ec82edb2SDmitry Baryshkov 152ca66dca5SDmitry Baryshkov u16 qcom_adc_tm5_temp_volt_scale(unsigned int prescale_ratio, 153ca66dca5SDmitry Baryshkov u32 full_scale_code_volt, int temp); 154ca66dca5SDmitry Baryshkov 155*238e34adSJishnu Prakash u16 qcom_adc_tm5_gen2_temp_res_scale(int temp); 156*238e34adSJishnu Prakash 157ec82edb2SDmitry Baryshkov int qcom_adc5_prescaling_from_dt(u32 num, u32 den); 158ec82edb2SDmitry Baryshkov 159ec82edb2SDmitry Baryshkov int qcom_adc5_hw_settle_time_from_dt(u32 value, const unsigned int *hw_settle); 160ec82edb2SDmitry Baryshkov 161ec82edb2SDmitry Baryshkov int qcom_adc5_avg_samples_from_dt(u32 value); 162ec82edb2SDmitry Baryshkov 163ec82edb2SDmitry Baryshkov int qcom_adc5_decimation_from_dt(u32 value, const unsigned int *decimation); 164ec82edb2SDmitry Baryshkov 165ec82edb2SDmitry Baryshkov int qcom_vadc_decimation_from_dt(u32 value); 166ec82edb2SDmitry Baryshkov 167ec82edb2SDmitry Baryshkov #endif /* QCOM_VADC_COMMON_H */ 168