[PATCH 3/3] ARM:dts: sama5d2: Add pwm definition

2021-09-20 Thread Dan Sneddon
Add the PWM on the SAMA5D2. Signed-off-by: Dan Sneddon --- arch/arm/dts/sama5d2.dtsi | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/sama5d2.dtsi b/arch/arm/dts/sama5d2.dtsi index 6fb2cb25f9..ba1b69e629 100644 --- a/arch/arm/dts/sama5d2.dtsi +++ b/arch/arm/dts/sama5d2

[PATCH 0/3] Add SAMA5D2 PWM Support

2021-09-20 Thread Dan Sneddon
Add support for the PWM found on SAMA5D2 SoCs. Dan Sneddon (3): pwm: Add PWM driver for SAMA5D2 dt-bindings: pwm: pwm-at91: Add PWM bindings for A5D2 ARM:dts: sama5d2: Add pwm definition arch/arm/dts/sama5d2.dtsi | 8 + doc/device-tree-bindings/pwm/pwm-at91.txt | 16

[PATCH 1/3] pwm: Add PWM driver for SAMA5D2

2021-09-20 Thread Dan Sneddon
Add support for the PWM found on the SAMA5D2 family of devices. Signed-off-by: Dan Sneddon --- drivers/pwm/Kconfig| 6 ++ drivers/pwm/Makefile | 1 + drivers/pwm/pwm-at91.c | 207 + 3 files changed, 214 insertions(+) create mode 100644 drivers

[PATCH 2/3] dt-bindings: pwm: pwm-at91: Add PWM bindings for A5D2

2021-09-20 Thread Dan Sneddon
Document the bindings needed for the PWM device on the SAMA5D2. Signed-off-by: Dan Sneddon --- doc/device-tree-bindings/pwm/pwm-at91.txt | 16 1 file changed, 16 insertions(+) create mode 100644 doc/device-tree-bindings/pwm/pwm-at91.txt diff --git a/doc/device-tree-bindings