0001 Zevio GPIO controller
0002
0003 Required properties:
0004 - compatible: Should be "lsi,zevio-gpio"
0005 - reg: Address and length of the register set for the device
0006 - #gpio-cells: Should be two. The first cell is the pin number and the
0007 second cell is used to specify optional parameters (currently unused).
0008 - gpio-controller: Marks the device node as a GPIO controller.
0009
0010 Example:
0011 gpio: gpio@90000000 {
0012 compatible = "lsi,zevio-gpio";
0013 reg = <0x90000000 0x1000>;
0014 gpio-controller;
0015 #gpio-cells = <2>;
0016 };