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 3. Number of cells being used to specify PWM property.
  First cell specifies the per-chip index of the PWM to use, the second
  cell is the period in nanoseconds and bit 0 in the third cell is used to
  encode the polarity of PWM output. Set bit 0 of the third in PWM specifier
  to 1 for inverse polarity & set to 0 for normal polarity.
- interrupts: The interrupt for the pwm controller

Example:

pwm1: pwm@53fb4000 {
	#pwm-cells = <3>;
	compatible = "fsl,imx53-pwm", "fsl,imx27-pwm", "fsl,imx6q-pwm";
	reg = <0x53fb4000 0x4000>;
	interrupts = <61>;
};
