blob: 19c994872f95a9165a44c69a06b182a5729f74d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/mmio.h>
#include <assert.h>
#include <delay.h>
#include <soc/addressmap.h>
#include <soc/auxadc.h>
#include <soc/efuse.h>
#include <soc/infracfg.h>
#include <timer.h>
static struct mtk_auxadc_regs *const mtk_auxadc = (void *)AUXADC_BASE;
#define ADC_GE_A_SHIFT 10
#define ADC_GE_A_MASK (0x3ff << ADC_GE_A_SHIFT)
#define ADC_OE_A_SHIFT 0
#define ADC_OE_A_MASK (0x3ff << ADC_OE_A_SHIFT)
#define ADC_CALI_EN_A_SHIFT 20
#define ADC_CALI_EN_A_MASK (0x1 << ADC_CALI_EN_A_SHIFT)
static int cali_oe;
static int cali_ge;
static int calibrated = 0;
static void mt_auxadc_update_cali(void)
{
uint32_t cali_reg;
int cali_ge_a;
int cali_oe_a;
cali_reg = read32(&mtk_efuse->adc_cali_reg);
if ((cali_reg & ADC_CALI_EN_A_MASK) != 0) {
cali_oe_a = (cali_reg & ADC_OE_A_MASK) >> ADC_OE_A_SHIFT;
cali_ge_a = (cali_reg & ADC_GE_A_MASK) >> ADC_GE_A_SHIFT;
cali_ge = cali_ge_a - 512;
cali_oe = cali_oe_a - 512;
}
}
static uint32_t auxadc_get_rawdata(int channel)
{
setbits32(&mt8183_infracfg->module_sw_cg_1_clr, 1 << 10);
assert(wait_ms(300, !(read32(&mtk_auxadc->con2) & 0x1)));
clrbits32(&mtk_auxadc->con1, 1 << channel);
assert(wait_ms(300, !(read32(&mtk_auxadc->data[channel]) & (1 << 12))));
setbits32(&mtk_auxadc->con1, 1 << channel);
udelay(25);
assert(wait_ms(300, read32(&mtk_auxadc->data[channel]) & (1 << 12)));
uint32_t value = read32(&mtk_auxadc->data[channel]) & 0x0FFF;
setbits32(&mt8183_infracfg->module_sw_cg_1_set, 1 << 10);
return value;
}
int auxadc_get_voltage(unsigned int channel)
{
uint32_t raw_value;
assert(channel < 16);
if (!calibrated) {
mt_auxadc_update_cali();
calibrated = 1;
}
/* 1.5V in 4096 steps */
raw_value = auxadc_get_rawdata(channel);
raw_value = raw_value - cali_oe;
return (int)((int64_t)raw_value * 1500000 / (4096 + cali_ge));
}
|