netxbig-gpio-ext.txt 751 B

12345678910111213141516171819202122
  1. Binding for the GPIO extension bus found on some LaCie/Seagate boards
  2. (Example: 2Big/5Big Network v2, 2Big NAS).
  3. Required properties:
  4. - compatible: "lacie,netxbig-gpio-ext".
  5. - addr-gpios: GPIOs representing the address register (LSB -> MSB).
  6. - data-gpios: GPIOs representing the data register (LSB -> MSB).
  7. - enable-gpio: latches the new configuration (address, data) on raising edge.
  8. Example:
  9. netxbig_gpio_ext: netxbig-gpio-ext {
  10. compatible = "lacie,netxbig-gpio-ext";
  11. addr-gpios = <&gpio1 15 GPIO_ACTIVE_HIGH
  12. &gpio1 16 GPIO_ACTIVE_HIGH
  13. &gpio1 17 GPIO_ACTIVE_HIGH>;
  14. data-gpios = <&gpio1 12 GPIO_ACTIVE_HIGH
  15. &gpio1 13 GPIO_ACTIVE_HIGH
  16. &gpio1 14 GPIO_ACTIVE_HIGH>;
  17. enable-gpio = <&gpio0 29 GPIO_ACTIVE_HIGH>;
  18. };