Message ID | 20201012205218.3010868-2-fparent@baylibre.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/2] dt-bindings: iio: adc: auxadc: add doc for MT8516 SoC | expand |
On 12/10/2020 22:52, Fabien Parent wrote: > Add node for the auxadc IP. The IP is compatible with the one found > in MT8173 SoC. > > Signed-off-by: Fabien Parent <fparent@baylibre.com> > --- > arch/arm64/boot/dts/mediatek/mt8516.dtsi | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/arch/arm64/boot/dts/mediatek/mt8516.dtsi b/arch/arm64/boot/dts/mediatek/mt8516.dtsi > index 89af661e7f63..943c426e9aaf 100644 > --- a/arch/arm64/boot/dts/mediatek/mt8516.dtsi > +++ b/arch/arm64/boot/dts/mediatek/mt8516.dtsi > @@ -470,5 +470,15 @@ usb0_port: usb-phy@11110800 { > #phy-cells = <1>; > }; > }; > + > + auxadc: adc@11003000 { > + compatible = "mediatek,mt8516-auxadc", > + "mediatek,mt8173-auxadc"; > + reg = <0 0x11003000 0 0x1000>; > + clocks = <&topckgen CLK_TOP_AUX_ADC>; > + clock-names = "main"; > + #io-channel-cells = <1>; > + status = "disabled"; > + }; > }; > }; > Any reason you don't enable the status in the pumpkin dts? Regards, Matthias
Hi Matthias,
> Any reason you don't enable the status in the pumpkin dts?
No particular reasons. I looked at what other MTK SoC did for this IP,
and half went with the status to be disabled and the other half went
with an enabled status. So I went the mt8183 way since it is the last
MTK SoC to have been merged and disabled by default. If you think it
is better to be enabled by default, I can change it, I don't have any
strong opinion about this.
On 13/10/2020 11:06, Fabien Parent wrote: > Hi Matthias, > >> Any reason you don't enable the status in the pumpkin dts? > > No particular reasons. I looked at what other MTK SoC did for this IP, > and half went with the status to be disabled and the other half went > with an enabled status. So I went the mt8183 way since it is the last > MTK SoC to have been merged and disabled by default. If you think it > is better to be enabled by default, I can change it, I don't have any > strong opinion about this. > Well on mt8183 it is missing the thermal driver although as you can read the values via sysfs I'd say to enable it. No need to resend just because of that. I'll take the patch as-is as soon as Jonathan takes 1/2. Regards, Matthias
On 12/10/2020 22:52, Fabien Parent wrote: > Add node for the auxadc IP. The IP is compatible with the one found > in MT8173 SoC. > > Signed-off-by: Fabien Parent <fparent@baylibre.com> Applied to v5.10-tmp/dts64 Thanks! > --- > arch/arm64/boot/dts/mediatek/mt8516.dtsi | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/arch/arm64/boot/dts/mediatek/mt8516.dtsi b/arch/arm64/boot/dts/mediatek/mt8516.dtsi > index 89af661e7f63..943c426e9aaf 100644 > --- a/arch/arm64/boot/dts/mediatek/mt8516.dtsi > +++ b/arch/arm64/boot/dts/mediatek/mt8516.dtsi > @@ -470,5 +470,15 @@ usb0_port: usb-phy@11110800 { > #phy-cells = <1>; > }; > }; > + > + auxadc: adc@11003000 { > + compatible = "mediatek,mt8516-auxadc", > + "mediatek,mt8173-auxadc"; > + reg = <0 0x11003000 0 0x1000>; > + clocks = <&topckgen CLK_TOP_AUX_ADC>; > + clock-names = "main"; > + #io-channel-cells = <1>; > + status = "disabled"; > + }; > }; > }; >
diff --git a/arch/arm64/boot/dts/mediatek/mt8516.dtsi b/arch/arm64/boot/dts/mediatek/mt8516.dtsi index 89af661e7f63..943c426e9aaf 100644 --- a/arch/arm64/boot/dts/mediatek/mt8516.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8516.dtsi @@ -470,5 +470,15 @@ usb0_port: usb-phy@11110800 { #phy-cells = <1>; }; }; + + auxadc: adc@11003000 { + compatible = "mediatek,mt8516-auxadc", + "mediatek,mt8173-auxadc"; + reg = <0 0x11003000 0 0x1000>; + clocks = <&topckgen CLK_TOP_AUX_ADC>; + clock-names = "main"; + #io-channel-cells = <1>; + status = "disabled"; + }; }; };
Add node for the auxadc IP. The IP is compatible with the one found in MT8173 SoC. Signed-off-by: Fabien Parent <fparent@baylibre.com> --- arch/arm64/boot/dts/mediatek/mt8516.dtsi | 10 ++++++++++ 1 file changed, 10 insertions(+)