ARM: dts: msm: Add ADC nodes for pmfalcon
Clients of VADC_HC and BTM include reading voltage phone power, system thermistors for thermal mitigation such as msm_therm, case_therm, XO therm. Round robin ADC (RRADC) provides clients ability to read supported channels from PMfalcon RRADC such as battery ID, battery thermistors, DCIN and USBIN voltage and current. Add the supported VADC, BTM and RR ADC channels for the msmfalcon platforms. Change-Id: I1b8bf9762642e0af73d7ac7fa51c974b93fd4b31 Signed-off-by: Sriharsha Allenki <sallenki@codeaurora.org>
This commit is contained in:
parent
7317a659eb
commit
5875dc5e26
1 changed files with 179 additions and 0 deletions
|
@ -158,6 +158,185 @@
|
|||
interrupts = <0x0 0x61 0x1 IRQ_TYPE_NONE>;
|
||||
};
|
||||
};
|
||||
|
||||
pmfalcon_vadc: vadc@3100 {
|
||||
compatible = "qcom,qpnp-vadc-hc";
|
||||
reg = <0x3100 0x100>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
interrupts = <0x0 0x31 0x0 IRQ_TYPE_EDGE_RISING>;
|
||||
interrupt-names = "eoc-int-en-set";
|
||||
qcom,adc-bit-resolution = <15>;
|
||||
qcom,adc-vdd-reference = <1875>;
|
||||
|
||||
chan@6 {
|
||||
label = "die_temp";
|
||||
reg = <6>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <3>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
qcom,cal-val = <0>;
|
||||
};
|
||||
|
||||
chan@0 {
|
||||
label = "ref_gnd";
|
||||
reg = <0>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <0>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
qcom,cal-val = <0>;
|
||||
};
|
||||
|
||||
chan@1 {
|
||||
label = "ref_1250v";
|
||||
reg = <1>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <0>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
qcom,cal-val = <0>;
|
||||
};
|
||||
|
||||
chan@83 {
|
||||
label = "vph_pwr";
|
||||
reg = <0x83>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <1>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <0>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
};
|
||||
|
||||
chan@85 {
|
||||
label = "vcoin";
|
||||
reg = <0x85>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <1>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <0>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
};
|
||||
|
||||
chan@4c {
|
||||
label = "xo_therm";
|
||||
reg = <0x4c>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <4>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
};
|
||||
|
||||
chan@4d {
|
||||
label = "msm_therm";
|
||||
reg = <0x4d>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <2>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
};
|
||||
|
||||
chan@51 {
|
||||
label = "quiet_therm";
|
||||
reg = <0x51>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <2>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
};
|
||||
|
||||
chan@1d {
|
||||
label = "drax_temp";
|
||||
reg = <0x1d>;
|
||||
qcom,decimation = <2>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <3>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
qcom,cal-val = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
pmfalcon_adc_tm: vadc@3400 {
|
||||
compatible = "qcom,qpnp-adc-tm-hc";
|
||||
reg = <0x3400 0x100>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
interrupts = <0x0 0x34 0x0 IRQ_TYPE_EDGE_RISING>;
|
||||
interrupt-names = "eoc-int-en-set";
|
||||
qcom,adc-bit-resolution = <15>;
|
||||
qcom,adc-vdd-reference = <1875>;
|
||||
qcom,adc_tm-vadc = <&pmfalcon_vadc>;
|
||||
qcom,decimation = <0>;
|
||||
qcom,fast-avg-setup = <0>;
|
||||
|
||||
chan@83 {
|
||||
label = "vph_pwr";
|
||||
reg = <0x83>;
|
||||
qcom,pre-div-channel-scaling = <1>;
|
||||
qcom,calibration-type = "absolute";
|
||||
qcom,scale-function = <0>;
|
||||
qcom,hw-settle-time = <0>;
|
||||
qcom,btm-channel-number = <0x60>;
|
||||
};
|
||||
|
||||
chan@4d {
|
||||
label = "msm_therm";
|
||||
reg = <0x4d>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <2>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,btm-channel-number = <0x68>;
|
||||
qcom,thermal-node;
|
||||
};
|
||||
|
||||
chan@51 {
|
||||
label = "quiet_therm";
|
||||
reg = <0x51>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <2>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,btm-channel-number = <0x70>;
|
||||
qcom,thermal-node;
|
||||
};
|
||||
|
||||
chan@4c {
|
||||
label = "xo_therm";
|
||||
reg = <0x4c>;
|
||||
qcom,pre-div-channel-scaling = <0>;
|
||||
qcom,calibration-type = "ratiometric";
|
||||
qcom,scale-function = <4>;
|
||||
qcom,hw-settle-time = <2>;
|
||||
qcom,btm-channel-number = <0x78>;
|
||||
qcom,thermal-node;
|
||||
};
|
||||
};
|
||||
|
||||
pmfalcon_rradc: rradc@4500 {
|
||||
compatible = "qcom,rradc";
|
||||
reg = <0x4500 0x100>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
#io-channel-cells = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
qcom,pmfalcon@1 {
|
||||
|
|
Loading…
Add table
Reference in a new issue