1
2
3
4
5
6 #ifndef QCOM_VADC_COMMON_H
7 #define QCOM_VADC_COMMON_H
8
9 #define VADC_CONV_TIME_MIN_US 2000
10 #define VADC_CONV_TIME_MAX_US 2100
11
12
13 #define VADC_MIN_ADC_CODE 0x6000
14
15 #define VADC_MAX_ADC_CODE 0xa800
16
17 #define VADC_ABSOLUTE_RANGE_UV 625000
18 #define VADC_RATIOMETRIC_RANGE 1800
19
20 #define VADC_DEF_PRESCALING 0
21 #define VADC_DEF_DECIMATION 0
22 #define VADC_DEF_HW_SETTLE_TIME 0
23 #define VADC_DEF_AVG_SAMPLES 0
24 #define VADC_DEF_CALIB_TYPE VADC_CALIB_ABSOLUTE
25
26 #define VADC_DECIMATION_MIN 512
27 #define VADC_DECIMATION_MAX 4096
28 #define ADC5_DEF_VBAT_PRESCALING 1
29 #define ADC5_DECIMATION_SHORT 250
30 #define ADC5_DECIMATION_MEDIUM 420
31 #define ADC5_DECIMATION_LONG 840
32
33 #define ADC5_DECIMATION_DEFAULT 2
34 #define ADC5_DECIMATION_SAMPLES_MAX 3
35
36 #define VADC_HW_SETTLE_DELAY_MAX 10000
37 #define VADC_HW_SETTLE_SAMPLES_MAX 16
38 #define VADC_AVG_SAMPLES_MAX 512
39 #define ADC5_AVG_SAMPLES_MAX 16
40
41 #define KELVINMIL_CELSIUSMIL 273150
42 #define PMIC5_CHG_TEMP_SCALE_FACTOR 377500
43 #define PMIC5_SMB_TEMP_CONSTANT 419400
44 #define PMIC5_SMB_TEMP_SCALE_FACTOR 356
45
46 #define PMI_CHG_SCALE_1 -138890
47 #define PMI_CHG_SCALE_2 391750000000LL
48
49 #define VADC5_MAX_CODE 0x7fff
50 #define ADC5_FULL_SCALE_CODE 0x70e4
51 #define ADC5_USR_DATA_CHECK 0x8000
52
53
54
55
56
57
58
59 struct vadc_map_pt {
60 s32 x;
61 s32 y;
62 };
63
64
65
66
67
68
69 enum vadc_calibration {
70 VADC_CALIB_ABSOLUTE = 0,
71 VADC_CALIB_RATIOMETRIC
72 };
73
74
75
76
77
78
79
80
81
82
83 struct vadc_linear_graph {
84 s32 dy;
85 s32 dx;
86 s32 gnd;
87 };
88
89
90
91
92
93
94 struct vadc_prescale_ratio {
95 u32 num;
96 u32 den;
97 };
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121 enum vadc_scale_fn_type {
122 SCALE_DEFAULT = 0,
123 SCALE_THERM_100K_PULLUP,
124 SCALE_PMIC_THERM,
125 SCALE_XOTHERM,
126 SCALE_PMI_CHG_TEMP,
127 SCALE_HW_CALIB_DEFAULT,
128 SCALE_HW_CALIB_THERM_100K_PULLUP,
129 SCALE_HW_CALIB_XOTHERM,
130 SCALE_HW_CALIB_PMIC_THERM,
131 SCALE_HW_CALIB_PM5_CHG_TEMP,
132 SCALE_HW_CALIB_PM5_SMB_TEMP,
133 SCALE_HW_CALIB_INVALID,
134 };
135
136 struct adc5_data {
137 const u32 full_scale_code_volt;
138 const u32 full_scale_code_cur;
139 const struct adc5_channels *adc_chans;
140 unsigned int *decimation;
141 unsigned int *hw_settle_1;
142 unsigned int *hw_settle_2;
143 };
144
145 int qcom_vadc_scale(enum vadc_scale_fn_type scaletype,
146 const struct vadc_linear_graph *calib_graph,
147 const struct vadc_prescale_ratio *prescale,
148 bool absolute,
149 u16 adc_code, int *result_mdec);
150
151 struct qcom_adc5_scale_type {
152 int (*scale_fn)(const struct vadc_prescale_ratio *prescale,
153 const struct adc5_data *data, u16 adc_code, int *result);
154 };
155
156 int qcom_adc5_hw_scale(enum vadc_scale_fn_type scaletype,
157 const struct vadc_prescale_ratio *prescale,
158 const struct adc5_data *data,
159 u16 adc_code, int *result_mdec);
160
161 int qcom_vadc_decimation_from_dt(u32 value);
162
163 #endif