-
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.
At the same time remove platform based support. No user for this driver has made it into mainline so far, so all we break is out of tree stuff. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Reviewed-by: Shawn Guo <shawn.guo@linaro.org> Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
- Loading branch information
Philipp Zabel
authored and
Thierry Reding
committed
Sep 12, 2012
1 parent
208d038
commit 479e2e3
Showing
2 changed files
with
52 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Freescale i.MX PWM controller | ||
|
||
Required properties: | ||
- compatible: should be "fsl,<soc>-pwm" | ||
- reg: physical base address and length of the controller's registers | ||
- #pwm-cells: should be 2. The first cell specifies the per-chip index | ||
of the PWM to use and the second cell is the duty cycle in nanoseconds. | ||
- interrupts: The interrupt for the pwm controller | ||
|
||
Example: | ||
|
||
pwm1: pwm@53fb4000 { | ||
#pwm-cells = <2>; | ||
compatible = "fsl,imx53-pwm", "fsl,imx27-pwm"; | ||
reg = <0x53fb4000 0x4000>; | ||
interrupts = <61>; | ||
}; |
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