Lines Matching refs:vrefint
107 { "vrefint", STM32_ADC_INT_CH_VREFINT },
145 * @vrefint_cal: vrefint calibration value from nvmem
146 * @vrefint_data: vrefint actual value
171 * @ccr_vref: common register & vrefint bitfield
253 * @vrefint: internal reference voltage data
280 struct stm32_adc_vrefint vrefint;
1483 *val = STM32_ADC_VREFINT_VOLTAGE * adc->vrefint.vrefint_cal / *val;
2125 u16 vrefint;
2164 /* Get calibration data for vrefint channel */
2165 ret = nvmem_cell_read_u16(&indio_dev->dev, "vrefint", &vrefint);
2171 dev_dbg(&indio_dev->dev, "vrefint calibration not found. Skip vrefint channel\n");
2173 } else if (!vrefint) {
2174 dev_dbg(&indio_dev->dev, "Null vrefint calibration value. Skip vrefint channel\n");
2178 adc->vrefint.vrefint_cal = vrefint;