Commit e6640fa6 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge tag 'visconti-arm-dt-for-v5.14' of...

Merge tag 'visconti-arm-dt-for-v5.14' of https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti into arm/dt

Visconti device tree updates for 5.14

- Add DT support for Toshiba Visconti5 PWM driver

* tag 'visconti-arm-dt-for-v5.14' of https://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti:
  arm64: dts: visconti: Add PWM support for TMPV7708 SoC

Link: https://lore.kernel.org/r/20210614234654.2u3xetnn5rwhymwz@toshiba.co.jp


Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents ab9c2a75 172cdcae
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -68,3 +68,11 @@ &wdt {
&gpio {
	status = "okay";
};

&pwm_mux {
	groups = "pwm0_gpio16_grp", "pwm1_gpio17_grp", "pwm2_gpio18_grp", "pwm3_gpio19_grp";
};

&pwm {
	status = "okay";
};
+9 −0
Original line number Diff line number Diff line
@@ -432,6 +432,15 @@ wdt: wdt@28330000 {
			reg = <0 0x28330000 0 0x1000>;
			status = "disabled";
		};

		pwm: pwm@241c0000 {
			compatible = "toshiba,visconti-pwm";
			reg = <0 0x241c0000 0 0x1000>;
			pinctrl-names = "default";
			pinctrl-0 = <&pwm_mux>;
			#pwm-cells = <2>;
			status = "disabled";
		};
	};
};

+5 −0
Original line number Diff line number Diff line
@@ -90,4 +90,9 @@ i2c8_pins: i2c8-pins {
		groups = "i2c8_grp";
		bias-pull-up;
	};

	pwm_mux: pwm_mux {
		function = "pwm";
	};

};