Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 566cf877a1fcb6d6dc0126b076aad062054c2637 authored by Linus Torvalds on 29 January 2017, 22:25:17 UTC
Linux 4.10-rc6
Tip revision: 566cf87
moxa,moxart-gpio.txt
MOXA ART GPIO Controller

Required properties:

- #gpio-cells : Should be 2, The first cell is the pin number,
		the second cell is used to specify polarity:
			0 = active high
			1 = active low
- compatible : Must be "moxa,moxart-gpio"
- reg : Should contain registers location and length

Example:

	gpio: gpio@98700000 {
		gpio-controller;
		#gpio-cells = <2>;
		compatible = "moxa,moxart-gpio";
		reg =	<0x98700000 0xC>;
	};
back to top