gpio-zevio.txt 492 B

12345678910111213141516
  1. Zevio GPIO controller
  2. Required properties:
  3. - compatible: Should be "lsi,zevio-gpio"
  4. - reg: Address and length of the register set for the device
  5. - #gpio-cells: Should be two. The first cell is the pin number and the
  6. second cell is used to specify optional parameters (currently unused).
  7. - gpio-controller: Marks the device node as a GPIO controller.
  8. Example:
  9. gpio: gpio@90000000 {
  10. compatible = "lsi,zevio-gpio";
  11. reg = <0x90000000 0x1000>;
  12. gpio-controller;
  13. #gpio-cells = <2>;
  14. };