From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Reichel Subject: [PATCH 5/5] Documentation: dt: Document ACX565AKM DT binding Date: Sat, 23 Nov 2013 21:57:24 +0100 Message-ID: <1385240244-28629-6-git-send-email-sre@debian.org> References: <1385240244-28629-1-git-send-email-sre@debian.org> Return-path: In-Reply-To: <1385240244-28629-1-git-send-email-sre@debian.org> Sender: linux-omap-owner@vger.kernel.org To: Sebastian Reichel , Tomi Valkeinen , =?UTF-8?q?Beno=C3=AEt=20Cousson?= , Tony Lindgren Cc: Rob Herring , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , Rob Landley , linux-omap@vger.kernel.org, devicetree@vger.kernel.org, Sebastian Reichel List-Id: devicetree@vger.kernel.org Add devicetree binding documentation for ACX565AKM panel. Signed-off-by: Sebastian Reichel --- .../devicetree/bindings/video/sony,acx565akm.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/sony,acx565akm.txt diff --git a/Documentation/devicetree/bindings/video/sony,acx565akm.txt b/Documentation/devicetree/bindings/video/sony,acx565akm.txt new file mode 100644 index 0000000..41f2284 --- /dev/null +++ b/Documentation/devicetree/bindings/video/sony,acx565akm.txt @@ -0,0 +1,22 @@ +Device-Tree bindings for Sony ACX565AKM panel driver + +Required properties: +- compatible: value should be one among the following: + * "sony,acx565akm" +- reg: integer, chip select id of the panel +- spi-max-frequency: integer, maximal frequency of spi connection +- label: string, label for the panel (e.g. "lcd") +- reset-gpio: phandle + gpio specifier for the reset gpio + +Example: + +&mcspi1 { + mipid@2 { + compatible = "sony,acx565akm"; + spi-max-frequency = <6000000>; + reg = <2>; + + label = "lcd"; + reset-gpio = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* gpio 90 */ + }; +}; -- 1.8.4.3