1 // SPDX-License-Identifier: GPL-2.0 2 #include <linux/bug.h> 3 #include <linux/kernel.h> 4 #include <linux/bitops.h> 5 #include <linux/fixp-arith.h> 6 #include <linux/iio/adc/qcom-vadc-common.h> 7 #include <linux/math64.h> 8 #include <linux/log2.h> 9 #include <linux/err.h> 10 #include <linux/module.h> 11 #include <linux/units.h> 12 13 /** 14 * struct vadc_map_pt - Map the graph representation for ADC channel 15 * @x: Represent the ADC digitized code. 16 * @y: Represent the physical data which can be temperature, voltage, 17 * resistance. 18 */ 19 struct vadc_map_pt { 20 s32 x; 21 s32 y; 22 }; 23 24 /* Voltage to temperature */ 25 static const struct vadc_map_pt adcmap_100k_104ef_104fb[] = { 26 {1758, -40000 }, 27 {1742, -35000 }, 28 {1719, -30000 }, 29 {1691, -25000 }, 30 {1654, -20000 }, 31 {1608, -15000 }, 32 {1551, -10000 }, 33 {1483, -5000 }, 34 {1404, 0 }, 35 {1315, 5000 }, 36 {1218, 10000 }, 37 {1114, 15000 }, 38 {1007, 20000 }, 39 {900, 25000 }, 40 {795, 30000 }, 41 {696, 35000 }, 42 {605, 40000 }, 43 {522, 45000 }, 44 {448, 50000 }, 45 {383, 55000 }, 46 {327, 60000 }, 47 {278, 65000 }, 48 {237, 70000 }, 49 {202, 75000 }, 50 {172, 80000 }, 51 {146, 85000 }, 52 {125, 90000 }, 53 {107, 95000 }, 54 {92, 100000 }, 55 {79, 105000 }, 56 {68, 110000 }, 57 {59, 115000 }, 58 {51, 120000 }, 59 {44, 125000 } 60 }; 61 62 /* 63 * Voltage to temperature table for 100k pull up for NTCG104EF104 with 64 * 1.875V reference. 65 */ 66 static const struct vadc_map_pt adcmap_100k_104ef_104fb_1875_vref[] = { 67 { 1831, -40000 }, 68 { 1814, -35000 }, 69 { 1791, -30000 }, 70 { 1761, -25000 }, 71 { 1723, -20000 }, 72 { 1675, -15000 }, 73 { 1616, -10000 }, 74 { 1545, -5000 }, 75 { 1463, 0 }, 76 { 1370, 5000 }, 77 { 1268, 10000 }, 78 { 1160, 15000 }, 79 { 1049, 20000 }, 80 { 937, 25000 }, 81 { 828, 30000 }, 82 { 726, 35000 }, 83 { 630, 40000 }, 84 { 544, 45000 }, 85 { 467, 50000 }, 86 { 399, 55000 }, 87 { 340, 60000 }, 88 { 290, 65000 }, 89 { 247, 70000 }, 90 { 209, 75000 }, 91 { 179, 80000 }, 92 { 153, 85000 }, 93 { 130, 90000 }, 94 { 112, 95000 }, 95 { 96, 100000 }, 96 { 82, 105000 }, 97 { 71, 110000 }, 98 { 62, 115000 }, 99 { 53, 120000 }, 100 { 46, 125000 }, 101 }; 102 103 static const struct vadc_map_pt adcmap7_die_temp[] = { 104 { 857300, 160000 }, 105 { 820100, 140000 }, 106 { 782500, 120000 }, 107 { 744600, 100000 }, 108 { 706400, 80000 }, 109 { 667900, 60000 }, 110 { 629300, 40000 }, 111 { 590500, 20000 }, 112 { 551500, 0 }, 113 { 512400, -20000 }, 114 { 473100, -40000 }, 115 { 433700, -60000 }, 116 }; 117 118 /* 119 * Resistance to temperature table for 100k pull up for NTCG104EF104. 120 */ 121 static const struct vadc_map_pt adcmap7_100k[] = { 122 { 4250657, -40960 }, 123 { 3962085, -39936 }, 124 { 3694875, -38912 }, 125 { 3447322, -37888 }, 126 { 3217867, -36864 }, 127 { 3005082, -35840 }, 128 { 2807660, -34816 }, 129 { 2624405, -33792 }, 130 { 2454218, -32768 }, 131 { 2296094, -31744 }, 132 { 2149108, -30720 }, 133 { 2012414, -29696 }, 134 { 1885232, -28672 }, 135 { 1766846, -27648 }, 136 { 1656598, -26624 }, 137 { 1553884, -25600 }, 138 { 1458147, -24576 }, 139 { 1368873, -23552 }, 140 { 1285590, -22528 }, 141 { 1207863, -21504 }, 142 { 1135290, -20480 }, 143 { 1067501, -19456 }, 144 { 1004155, -18432 }, 145 { 944935, -17408 }, 146 { 889550, -16384 }, 147 { 837731, -15360 }, 148 { 789229, -14336 }, 149 { 743813, -13312 }, 150 { 701271, -12288 }, 151 { 661405, -11264 }, 152 { 624032, -10240 }, 153 { 588982, -9216 }, 154 { 556100, -8192 }, 155 { 525239, -7168 }, 156 { 496264, -6144 }, 157 { 469050, -5120 }, 158 { 443480, -4096 }, 159 { 419448, -3072 }, 160 { 396851, -2048 }, 161 { 375597, -1024 }, 162 { 355598, 0 }, 163 { 336775, 1024 }, 164 { 319052, 2048 }, 165 { 302359, 3072 }, 166 { 286630, 4096 }, 167 { 271806, 5120 }, 168 { 257829, 6144 }, 169 { 244646, 7168 }, 170 { 232209, 8192 }, 171 { 220471, 9216 }, 172 { 209390, 10240 }, 173 { 198926, 11264 }, 174 { 189040, 12288 }, 175 { 179698, 13312 }, 176 { 170868, 14336 }, 177 { 162519, 15360 }, 178 { 154622, 16384 }, 179 { 147150, 17408 }, 180 { 140079, 18432 }, 181 { 133385, 19456 }, 182 { 127046, 20480 }, 183 { 121042, 21504 }, 184 { 115352, 22528 }, 185 { 109960, 23552 }, 186 { 104848, 24576 }, 187 { 100000, 25600 }, 188 { 95402, 26624 }, 189 { 91038, 27648 }, 190 { 86897, 28672 }, 191 { 82965, 29696 }, 192 { 79232, 30720 }, 193 { 75686, 31744 }, 194 { 72316, 32768 }, 195 { 69114, 33792 }, 196 { 66070, 34816 }, 197 { 63176, 35840 }, 198 { 60423, 36864 }, 199 { 57804, 37888 }, 200 { 55312, 38912 }, 201 { 52940, 39936 }, 202 { 50681, 40960 }, 203 { 48531, 41984 }, 204 { 46482, 43008 }, 205 { 44530, 44032 }, 206 { 42670, 45056 }, 207 { 40897, 46080 }, 208 { 39207, 47104 }, 209 { 37595, 48128 }, 210 { 36057, 49152 }, 211 { 34590, 50176 }, 212 { 33190, 51200 }, 213 { 31853, 52224 }, 214 { 30577, 53248 }, 215 { 29358, 54272 }, 216 { 28194, 55296 }, 217 { 27082, 56320 }, 218 { 26020, 57344 }, 219 { 25004, 58368 }, 220 { 24033, 59392 }, 221 { 23104, 60416 }, 222 { 22216, 61440 }, 223 { 21367, 62464 }, 224 { 20554, 63488 }, 225 { 19776, 64512 }, 226 { 19031, 65536 }, 227 { 18318, 66560 }, 228 { 17636, 67584 }, 229 { 16982, 68608 }, 230 { 16355, 69632 }, 231 { 15755, 70656 }, 232 { 15180, 71680 }, 233 { 14628, 72704 }, 234 { 14099, 73728 }, 235 { 13592, 74752 }, 236 { 13106, 75776 }, 237 { 12640, 76800 }, 238 { 12192, 77824 }, 239 { 11762, 78848 }, 240 { 11350, 79872 }, 241 { 10954, 80896 }, 242 { 10574, 81920 }, 243 { 10209, 82944 }, 244 { 9858, 83968 }, 245 { 9521, 84992 }, 246 { 9197, 86016 }, 247 { 8886, 87040 }, 248 { 8587, 88064 }, 249 { 8299, 89088 }, 250 { 8023, 90112 }, 251 { 7757, 91136 }, 252 { 7501, 92160 }, 253 { 7254, 93184 }, 254 { 7017, 94208 }, 255 { 6789, 95232 }, 256 { 6570, 96256 }, 257 { 6358, 97280 }, 258 { 6155, 98304 }, 259 { 5959, 99328 }, 260 { 5770, 100352 }, 261 { 5588, 101376 }, 262 { 5412, 102400 }, 263 { 5243, 103424 }, 264 { 5080, 104448 }, 265 { 4923, 105472 }, 266 { 4771, 106496 }, 267 { 4625, 107520 }, 268 { 4484, 108544 }, 269 { 4348, 109568 }, 270 { 4217, 110592 }, 271 { 4090, 111616 }, 272 { 3968, 112640 }, 273 { 3850, 113664 }, 274 { 3736, 114688 }, 275 { 3626, 115712 }, 276 { 3519, 116736 }, 277 { 3417, 117760 }, 278 { 3317, 118784 }, 279 { 3221, 119808 }, 280 { 3129, 120832 }, 281 { 3039, 121856 }, 282 { 2952, 122880 }, 283 { 2868, 123904 }, 284 { 2787, 124928 }, 285 { 2709, 125952 }, 286 { 2633, 126976 }, 287 { 2560, 128000 }, 288 { 2489, 129024 }, 289 { 2420, 130048 } 290 }; 291 292 static const struct vadc_prescale_ratio adc5_prescale_ratios[] = { 293 {.num = 1, .den = 1}, 294 {.num = 1, .den = 3}, 295 {.num = 1, .den = 4}, 296 {.num = 1, .den = 6}, 297 {.num = 1, .den = 20}, 298 {.num = 1, .den = 8}, 299 {.num = 10, .den = 81}, 300 {.num = 1, .den = 10}, 301 {.num = 1, .den = 16} 302 }; 303 304 static int qcom_vadc_scale_hw_calib_volt( 305 const struct vadc_prescale_ratio *prescale, 306 const struct adc5_data *data, 307 u16 adc_code, int *result_uv); 308 static int qcom_vadc_scale_hw_calib_therm( 309 const struct vadc_prescale_ratio *prescale, 310 const struct adc5_data *data, 311 u16 adc_code, int *result_mdec); 312 static int qcom_vadc7_scale_hw_calib_therm( 313 const struct vadc_prescale_ratio *prescale, 314 const struct adc5_data *data, 315 u16 adc_code, int *result_mdec); 316 static int qcom_vadc_scale_hw_smb_temp( 317 const struct vadc_prescale_ratio *prescale, 318 const struct adc5_data *data, 319 u16 adc_code, int *result_mdec); 320 static int qcom_vadc_scale_hw_chg5_temp( 321 const struct vadc_prescale_ratio *prescale, 322 const struct adc5_data *data, 323 u16 adc_code, int *result_mdec); 324 static int qcom_vadc_scale_hw_calib_die_temp( 325 const struct vadc_prescale_ratio *prescale, 326 const struct adc5_data *data, 327 u16 adc_code, int *result_mdec); 328 static int qcom_vadc7_scale_hw_calib_die_temp( 329 const struct vadc_prescale_ratio *prescale, 330 const struct adc5_data *data, 331 u16 adc_code, int *result_mdec); 332 333 static struct qcom_adc5_scale_type scale_adc5_fn[] = { 334 [SCALE_HW_CALIB_DEFAULT] = {qcom_vadc_scale_hw_calib_volt}, 335 [SCALE_HW_CALIB_THERM_100K_PULLUP] = {qcom_vadc_scale_hw_calib_therm}, 336 [SCALE_HW_CALIB_XOTHERM] = {qcom_vadc_scale_hw_calib_therm}, 337 [SCALE_HW_CALIB_THERM_100K_PU_PM7] = { 338 qcom_vadc7_scale_hw_calib_therm}, 339 [SCALE_HW_CALIB_PMIC_THERM] = {qcom_vadc_scale_hw_calib_die_temp}, 340 [SCALE_HW_CALIB_PMIC_THERM_PM7] = { 341 qcom_vadc7_scale_hw_calib_die_temp}, 342 [SCALE_HW_CALIB_PM5_CHG_TEMP] = {qcom_vadc_scale_hw_chg5_temp}, 343 [SCALE_HW_CALIB_PM5_SMB_TEMP] = {qcom_vadc_scale_hw_smb_temp}, 344 }; 345 346 static int qcom_vadc_map_voltage_temp(const struct vadc_map_pt *pts, 347 u32 tablesize, s32 input, int *output) 348 { 349 u32 i = 0; 350 351 if (!pts) 352 return -EINVAL; 353 354 while (i < tablesize && pts[i].x > input) 355 i++; 356 357 if (i == 0) { 358 *output = pts[0].y; 359 } else if (i == tablesize) { 360 *output = pts[tablesize - 1].y; 361 } else { 362 /* interpolate linearly */ 363 *output = fixp_linear_interpolate(pts[i - 1].x, pts[i - 1].y, 364 pts[i].x, pts[i].y, 365 input); 366 } 367 368 return 0; 369 } 370 371 static void qcom_vadc_scale_calib(const struct vadc_linear_graph *calib_graph, 372 u16 adc_code, 373 bool absolute, 374 s64 *scale_voltage) 375 { 376 *scale_voltage = (adc_code - calib_graph->gnd); 377 *scale_voltage *= calib_graph->dx; 378 *scale_voltage = div64_s64(*scale_voltage, calib_graph->dy); 379 if (absolute) 380 *scale_voltage += calib_graph->dx; 381 382 if (*scale_voltage < 0) 383 *scale_voltage = 0; 384 } 385 386 static int qcom_vadc_scale_volt(const struct vadc_linear_graph *calib_graph, 387 const struct vadc_prescale_ratio *prescale, 388 bool absolute, u16 adc_code, 389 int *result_uv) 390 { 391 s64 voltage = 0, result = 0; 392 393 qcom_vadc_scale_calib(calib_graph, adc_code, absolute, &voltage); 394 395 voltage = voltage * prescale->den; 396 result = div64_s64(voltage, prescale->num); 397 *result_uv = result; 398 399 return 0; 400 } 401 402 static int qcom_vadc_scale_therm(const struct vadc_linear_graph *calib_graph, 403 const struct vadc_prescale_ratio *prescale, 404 bool absolute, u16 adc_code, 405 int *result_mdec) 406 { 407 s64 voltage = 0; 408 int ret; 409 410 qcom_vadc_scale_calib(calib_graph, adc_code, absolute, &voltage); 411 412 if (absolute) 413 voltage = div64_s64(voltage, 1000); 414 415 ret = qcom_vadc_map_voltage_temp(adcmap_100k_104ef_104fb, 416 ARRAY_SIZE(adcmap_100k_104ef_104fb), 417 voltage, result_mdec); 418 if (ret) 419 return ret; 420 421 return 0; 422 } 423 424 static int qcom_vadc_scale_die_temp(const struct vadc_linear_graph *calib_graph, 425 const struct vadc_prescale_ratio *prescale, 426 bool absolute, 427 u16 adc_code, int *result_mdec) 428 { 429 s64 voltage = 0; 430 u64 temp; /* Temporary variable for do_div */ 431 432 qcom_vadc_scale_calib(calib_graph, adc_code, absolute, &voltage); 433 434 if (voltage > 0) { 435 temp = voltage * prescale->den; 436 do_div(temp, prescale->num * 2); 437 voltage = temp; 438 } else { 439 voltage = 0; 440 } 441 442 *result_mdec = milli_kelvin_to_millicelsius(voltage); 443 444 return 0; 445 } 446 447 static int qcom_vadc_scale_chg_temp(const struct vadc_linear_graph *calib_graph, 448 const struct vadc_prescale_ratio *prescale, 449 bool absolute, 450 u16 adc_code, int *result_mdec) 451 { 452 s64 voltage = 0, result = 0; 453 454 qcom_vadc_scale_calib(calib_graph, adc_code, absolute, &voltage); 455 456 voltage = voltage * prescale->den; 457 voltage = div64_s64(voltage, prescale->num); 458 voltage = ((PMI_CHG_SCALE_1) * (voltage * 2)); 459 voltage = (voltage + PMI_CHG_SCALE_2); 460 result = div64_s64(voltage, 1000000); 461 *result_mdec = result; 462 463 return 0; 464 } 465 466 static int qcom_vadc_scale_code_voltage_factor(u16 adc_code, 467 const struct vadc_prescale_ratio *prescale, 468 const struct adc5_data *data, 469 unsigned int factor) 470 { 471 s64 voltage, temp, adc_vdd_ref_mv = 1875; 472 473 /* 474 * The normal data range is between 0V to 1.875V. On cases where 475 * we read low voltage values, the ADC code can go beyond the 476 * range and the scale result is incorrect so we clamp the values 477 * for the cases where the code represents a value below 0V 478 */ 479 if (adc_code > VADC5_MAX_CODE) 480 adc_code = 0; 481 482 /* (ADC code * vref_vadc (1.875V)) / full_scale_code */ 483 voltage = (s64) adc_code * adc_vdd_ref_mv * 1000; 484 voltage = div64_s64(voltage, data->full_scale_code_volt); 485 if (voltage > 0) { 486 voltage *= prescale->den; 487 temp = prescale->num * factor; 488 voltage = div64_s64(voltage, temp); 489 } else { 490 voltage = 0; 491 } 492 493 return (int) voltage; 494 } 495 496 static int qcom_vadc7_scale_hw_calib_therm( 497 const struct vadc_prescale_ratio *prescale, 498 const struct adc5_data *data, 499 u16 adc_code, int *result_mdec) 500 { 501 s64 resistance = adc_code; 502 int ret, result; 503 504 if (adc_code >= RATIO_MAX_ADC7) 505 return -EINVAL; 506 507 /* (ADC code * R_PULLUP (100Kohm)) / (full_scale_code - ADC code)*/ 508 resistance *= R_PU_100K; 509 resistance = div64_s64(resistance, RATIO_MAX_ADC7 - adc_code); 510 511 ret = qcom_vadc_map_voltage_temp(adcmap7_100k, 512 ARRAY_SIZE(adcmap7_100k), 513 resistance, &result); 514 if (ret) 515 return ret; 516 517 *result_mdec = result; 518 519 return 0; 520 } 521 522 static int qcom_vadc_scale_hw_calib_volt( 523 const struct vadc_prescale_ratio *prescale, 524 const struct adc5_data *data, 525 u16 adc_code, int *result_uv) 526 { 527 *result_uv = qcom_vadc_scale_code_voltage_factor(adc_code, 528 prescale, data, 1); 529 530 return 0; 531 } 532 533 static int qcom_vadc_scale_hw_calib_therm( 534 const struct vadc_prescale_ratio *prescale, 535 const struct adc5_data *data, 536 u16 adc_code, int *result_mdec) 537 { 538 int voltage; 539 540 voltage = qcom_vadc_scale_code_voltage_factor(adc_code, 541 prescale, data, 1000); 542 543 /* Map voltage to temperature from look-up table */ 544 return qcom_vadc_map_voltage_temp(adcmap_100k_104ef_104fb_1875_vref, 545 ARRAY_SIZE(adcmap_100k_104ef_104fb_1875_vref), 546 voltage, result_mdec); 547 } 548 549 static int qcom_vadc_scale_hw_calib_die_temp( 550 const struct vadc_prescale_ratio *prescale, 551 const struct adc5_data *data, 552 u16 adc_code, int *result_mdec) 553 { 554 *result_mdec = qcom_vadc_scale_code_voltage_factor(adc_code, 555 prescale, data, 2); 556 *result_mdec = milli_kelvin_to_millicelsius(*result_mdec); 557 558 return 0; 559 } 560 561 static int qcom_vadc7_scale_hw_calib_die_temp( 562 const struct vadc_prescale_ratio *prescale, 563 const struct adc5_data *data, 564 u16 adc_code, int *result_mdec) 565 { 566 567 int voltage; 568 569 voltage = qcom_vadc_scale_code_voltage_factor(adc_code, 570 prescale, data, 1); 571 572 return qcom_vadc_map_voltage_temp(adcmap7_die_temp, ARRAY_SIZE(adcmap7_die_temp), 573 voltage, result_mdec); 574 } 575 576 static int qcom_vadc_scale_hw_smb_temp( 577 const struct vadc_prescale_ratio *prescale, 578 const struct adc5_data *data, 579 u16 adc_code, int *result_mdec) 580 { 581 *result_mdec = qcom_vadc_scale_code_voltage_factor(adc_code * 100, 582 prescale, data, PMIC5_SMB_TEMP_SCALE_FACTOR); 583 *result_mdec = PMIC5_SMB_TEMP_CONSTANT - *result_mdec; 584 585 return 0; 586 } 587 588 static int qcom_vadc_scale_hw_chg5_temp( 589 const struct vadc_prescale_ratio *prescale, 590 const struct adc5_data *data, 591 u16 adc_code, int *result_mdec) 592 { 593 *result_mdec = qcom_vadc_scale_code_voltage_factor(adc_code, 594 prescale, data, 4); 595 *result_mdec = PMIC5_CHG_TEMP_SCALE_FACTOR - *result_mdec; 596 597 return 0; 598 } 599 600 int qcom_vadc_scale(enum vadc_scale_fn_type scaletype, 601 const struct vadc_linear_graph *calib_graph, 602 const struct vadc_prescale_ratio *prescale, 603 bool absolute, 604 u16 adc_code, int *result) 605 { 606 switch (scaletype) { 607 case SCALE_DEFAULT: 608 return qcom_vadc_scale_volt(calib_graph, prescale, 609 absolute, adc_code, 610 result); 611 case SCALE_THERM_100K_PULLUP: 612 case SCALE_XOTHERM: 613 return qcom_vadc_scale_therm(calib_graph, prescale, 614 absolute, adc_code, 615 result); 616 case SCALE_PMIC_THERM: 617 return qcom_vadc_scale_die_temp(calib_graph, prescale, 618 absolute, adc_code, 619 result); 620 case SCALE_PMI_CHG_TEMP: 621 return qcom_vadc_scale_chg_temp(calib_graph, prescale, 622 absolute, adc_code, 623 result); 624 default: 625 return -EINVAL; 626 } 627 } 628 EXPORT_SYMBOL(qcom_vadc_scale); 629 630 int qcom_adc5_hw_scale(enum vadc_scale_fn_type scaletype, 631 unsigned int prescale_ratio, 632 const struct adc5_data *data, 633 u16 adc_code, int *result) 634 { 635 const struct vadc_prescale_ratio *prescale = &adc5_prescale_ratios[prescale_ratio]; 636 637 if (!(scaletype >= SCALE_HW_CALIB_DEFAULT && 638 scaletype < SCALE_HW_CALIB_INVALID)) { 639 pr_err("Invalid scale type %d\n", scaletype); 640 return -EINVAL; 641 } 642 643 return scale_adc5_fn[scaletype].scale_fn(prescale, data, 644 adc_code, result); 645 } 646 EXPORT_SYMBOL(qcom_adc5_hw_scale); 647 648 int qcom_adc5_prescaling_from_dt(u32 num, u32 den) 649 { 650 unsigned int pre; 651 652 for (pre = 0; pre < ARRAY_SIZE(adc5_prescale_ratios); pre++) 653 if (adc5_prescale_ratios[pre].num == num && 654 adc5_prescale_ratios[pre].den == den) 655 break; 656 657 if (pre == ARRAY_SIZE(adc5_prescale_ratios)) 658 return -EINVAL; 659 660 return pre; 661 } 662 EXPORT_SYMBOL(qcom_adc5_prescaling_from_dt); 663 664 int qcom_adc5_hw_settle_time_from_dt(u32 value, 665 const unsigned int *hw_settle) 666 { 667 unsigned int i; 668 669 for (i = 0; i < VADC_HW_SETTLE_SAMPLES_MAX; i++) { 670 if (value == hw_settle[i]) 671 return i; 672 } 673 674 return -EINVAL; 675 } 676 EXPORT_SYMBOL(qcom_adc5_hw_settle_time_from_dt); 677 678 int qcom_adc5_avg_samples_from_dt(u32 value) 679 { 680 if (!is_power_of_2(value) || value > ADC5_AVG_SAMPLES_MAX) 681 return -EINVAL; 682 683 return __ffs(value); 684 } 685 EXPORT_SYMBOL(qcom_adc5_avg_samples_from_dt); 686 687 int qcom_adc5_decimation_from_dt(u32 value, const unsigned int *decimation) 688 { 689 unsigned int i; 690 691 for (i = 0; i < ADC5_DECIMATION_SAMPLES_MAX; i++) { 692 if (value == decimation[i]) 693 return i; 694 } 695 696 return -EINVAL; 697 } 698 EXPORT_SYMBOL(qcom_adc5_decimation_from_dt); 699 700 int qcom_vadc_decimation_from_dt(u32 value) 701 { 702 if (!is_power_of_2(value) || value < VADC_DECIMATION_MIN || 703 value > VADC_DECIMATION_MAX) 704 return -EINVAL; 705 706 return __ffs64(value / VADC_DECIMATION_MIN); 707 } 708 EXPORT_SYMBOL(qcom_vadc_decimation_from_dt); 709 710 MODULE_LICENSE("GPL v2"); 711 MODULE_DESCRIPTION("Qualcomm ADC common functionality"); 712