mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
479e2e301c
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>
18 lines
509 B
Plaintext
18 lines
509 B
Plaintext
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>;
|
|
};
|