e3x0-button.txt 819 B

1234567891011121314151617181920212223
  1. National Instruments Ettus Research USRP E3x0 button driver
  2. This module is part of the NI Ettus Research USRP E3x0 SDR.
  3. This module provides a simple power button event via two interrupts.
  4. Required properties:
  5. - compatible: should be one of the following
  6. - "ettus,e3x0-button": For devices such as the NI Ettus Research USRP E3x0
  7. - interrupts: should be one of the following
  8. - <0 30 1>, <0 31 1>: For devices such as the NI Ettus Research USRP E3x0
  9. - interrupt-names: should be one of the following
  10. - "press", "release": For devices such as the NI Ettus Research USRP E3x0
  11. Note: Interrupt numbers might vary depending on the FPGA configuration.
  12. Example:
  13. button {
  14. compatible = "ettus,e3x0-button";
  15. interrupt-parent = <&intc>;
  16. interrupts = <0 30 1>, <0 31 1>;
  17. interrupt-names = "press", "release";
  18. }