Message ID | 1583319973-20694-3-git-send-email-sam.shih@mediatek.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add mt7629 pwm support | expand |
On 04/03/2020 12:06, Sam Shih wrote: > This adds pwm support for MT7629. > > Signed-off-by: Sam Shih <sam.shih@mediatek.com> I wrote "arm" in capital letters in the subject and pushed it to v5.6-next/dts32 Thanks! Matthias > --- > Used: > https://patchwork.kernel.org/patch/11160851/ > > Change since v2: > Updated bindings for MT7629 pwm controller. > > --- > arch/arm/boot/dts/mt7629.dtsi | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/arch/arm/boot/dts/mt7629.dtsi b/arch/arm/boot/dts/mt7629.dtsi > index 867b88103b9d..a2658fbadeca 100644 > --- a/arch/arm/boot/dts/mt7629.dtsi > +++ b/arch/arm/boot/dts/mt7629.dtsi > @@ -241,6 +241,20 @@ > status = "disabled"; > }; > > + pwm: pwm@11006000 { > + compatible = "mediatek,mt7629-pwm"; > + reg = <0x11006000 0x1000>; > + #pwm-cells = <2>; > + clocks = <&topckgen CLK_TOP_PWM_SEL>, > + <&pericfg CLK_PERI_PWM_PD>, > + <&pericfg CLK_PERI_PWM1_PD>; > + clock-names = "top", "main", "pwm1"; > + assigned-clocks = <&topckgen CLK_TOP_PWM_SEL>; > + assigned-clock-parents = > + <&topckgen CLK_TOP_UNIVPLL2_D4>; > + status = "disabled"; > + }; > + > i2c: i2c@11007000 { > compatible = "mediatek,mt7629-i2c", > "mediatek,mt2712-i2c"; >
diff --git a/arch/arm/boot/dts/mt7629.dtsi b/arch/arm/boot/dts/mt7629.dtsi index 867b88103b9d..a2658fbadeca 100644 --- a/arch/arm/boot/dts/mt7629.dtsi +++ b/arch/arm/boot/dts/mt7629.dtsi @@ -241,6 +241,20 @@ status = "disabled"; }; + pwm: pwm@11006000 { + compatible = "mediatek,mt7629-pwm"; + reg = <0x11006000 0x1000>; + #pwm-cells = <2>; + clocks = <&topckgen CLK_TOP_PWM_SEL>, + <&pericfg CLK_PERI_PWM_PD>, + <&pericfg CLK_PERI_PWM1_PD>; + clock-names = "top", "main", "pwm1"; + assigned-clocks = <&topckgen CLK_TOP_PWM_SEL>; + assigned-clock-parents = + <&topckgen CLK_TOP_UNIVPLL2_D4>; + status = "disabled"; + }; + i2c: i2c@11007000 { compatible = "mediatek,mt7629-i2c", "mediatek,mt2712-i2c";
This adds pwm support for MT7629. Signed-off-by: Sam Shih <sam.shih@mediatek.com> --- Used: https://patchwork.kernel.org/patch/11160851/ Change since v2: Updated bindings for MT7629 pwm controller. --- arch/arm/boot/dts/mt7629.dtsi | 14 ++++++++++++++ 1 file changed, 14 insertions(+)