atmel-hlcdc-pwm.txt 908 B

123456789101112131415161718192021222324252627282930
  1. Device-Tree bindings for Atmel's HLCDC (High-end LCD Controller) PWM driver
  2. The Atmel HLCDC PWM is subdevice of the HLCDC MFD device.
  3. See ../mfd/atmel-hlcdc.txt for more details.
  4. Required properties:
  5. - compatible: value should be one of the following:
  6. "atmel,hlcdc-pwm"
  7. - pinctr-names: the pin control state names. Should contain "default".
  8. - pinctrl-0: should contain the pinctrl states described by pinctrl
  9. default.
  10. - #pwm-cells: should be set to 3. This PWM chip use the default 3 cells
  11. bindings defined in pwm.txt in this directory.
  12. Example:
  13. hlcdc: hlcdc@f0030000 {
  14. compatible = "atmel,sama5d3-hlcdc";
  15. reg = <0xf0030000 0x2000>;
  16. clocks = <&lcdc_clk>, <&lcdck>, <&clk32k>;
  17. clock-names = "periph_clk","sys_clk", "slow_clk";
  18. hlcdc_pwm: hlcdc-pwm {
  19. compatible = "atmel,hlcdc-pwm";
  20. pinctrl-names = "default";
  21. pinctrl-0 = <&pinctrl_lcd_pwm>;
  22. #pwm-cells = <3>;
  23. };
  24. };