-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'pwm/for-4.12-rc1' of git://git.kernel.org/pub/scm/linux/ke…
…rnel/git/thierry.reding/linux-pwm Pull pwm updates from Thierry Reding: "Adds a new driver for the PWM controller found on MediaTek SoCs and extends support for the Atmel PWM controller to include the SAMA5D2. Some existing drivers have been migrated to the atomic API and a few others see miscellaneous improvements" * tag 'pwm/for-4.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm: pwm: tegra: Read PWM clock source rate in driver init pwm: pca9685: Fix GPIO-only operation pwm: mediatek: Don't explicitly set .owner pwm: tegra: Avoid potential overflow for short periods pwm: tegra: Add support to configure pin state in suspends/resume pwm: tegra: Add DT binding details to configure pin in suspends/resume pwm: tegra: Increase precision in PWM rate calculation pwm: tegra: Use DIV_ROUND_CLOSEST_ULL() instead of local implementation pwm: Add MediaTek PWM support dt-bindings: pwm: Add MediaTek PWM bindings pwm: atmel: Enable PWM on sama5d2 pwm: atmel: Switch to atomic PWM pwm: atmel-hlcdc: Implement the suspend/resume hooks pwm: atmel-hlcdc: Convert to the atomic PWM API
- Loading branch information
Showing
10 changed files
with
685 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
MediaTek PWM controller | ||
|
||
Required properties: | ||
- compatible: should be "mediatek,<name>-pwm": | ||
- "mediatek,mt7623-pwm": found on mt7623 SoC. | ||
- reg: physical base address and length of the controller's registers. | ||
- #pwm-cells: must be 2. See pwm.txt in this directory for a description of | ||
the cell format. | ||
- clocks: phandle and clock specifier of the PWM reference clock. | ||
- clock-names: must contain the following: | ||
- "top": the top clock generator | ||
- "main": clock used by the PWM core | ||
- "pwm1-5": the five per PWM clocks | ||
- pinctrl-names: Must contain a "default" entry. | ||
- pinctrl-0: One property must exist for each entry in pinctrl-names. | ||
See pinctrl/pinctrl-bindings.txt for details of the property values. | ||
|
||
Example: | ||
pwm0: pwm@11006000 { | ||
compatible = "mediatek,mt7623-pwm"; | ||
reg = <0 0x11006000 0 0x1000>; | ||
#pwm-cells = <2>; | ||
clocks = <&topckgen CLK_TOP_PWM_SEL>, | ||
<&pericfg CLK_PERI_PWM>, | ||
<&pericfg CLK_PERI_PWM1>, | ||
<&pericfg CLK_PERI_PWM2>, | ||
<&pericfg CLK_PERI_PWM3>, | ||
<&pericfg CLK_PERI_PWM4>, | ||
<&pericfg CLK_PERI_PWM5>; | ||
clock-names = "top", "main", "pwm1", "pwm2", | ||
"pwm3", "pwm4", "pwm5"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pwm0_pins>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.