pps-gpio.txt 499 B

123456789101112131415161718192021
  1. Device-Tree Bindings for a PPS Signal on GPIO
  2. These properties describe a PPS (pulse-per-second) signal connected to
  3. a GPIO pin.
  4. Required properties:
  5. - compatible: should be "pps-gpio"
  6. - gpios: one PPS GPIO in the format described by ../gpio/gpio.txt
  7. Optional properties:
  8. - assert-falling-edge: when present, assert is indicated by a falling edge
  9. (instead of by a rising edge)
  10. Example:
  11. pps {
  12. compatible = "pps-gpio";
  13. gpios = <&gpio2 6 0>;
  14. assert-falling-edge;
  15. };