spear-pwm.txt 561 B

123456789101112131415161718
  1. == ST SPEAr SoC PWM controller ==
  2. Required properties:
  3. - compatible: should be one of:
  4. - "st,spear320-pwm"
  5. - "st,spear1340-pwm"
  6. - reg: physical base address and length of the controller's registers
  7. - #pwm-cells: number of cells used to specify PWM which is fixed to 2 on
  8. SPEAr. The first cell specifies the per-chip index of the PWM to use and
  9. the second cell is the period in nanoseconds.
  10. Example:
  11. pwm: pwm@a8000000 {
  12. compatible ="st,spear320-pwm";
  13. reg = <0xa8000000 0x1000>;
  14. #pwm-cells = <2>;
  15. };