From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 28 Jun 2017 17:37:56 +0200 (CEST) Received: from mx2.rt-rk.com ([89.216.37.149]:52109 "EHLO mail.rt-rk.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S23993977AbdF1PgoPv6W8 (ORCPT ); Wed, 28 Jun 2017 17:36:44 +0200 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 6EC161A47F3 for ; Wed, 28 Jun 2017 17:36:38 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from rtrkw197-lin.domain.local (unknown [10.10.13.95]) by mail.rt-rk.com (Postfix) with ESMTPSA id 4F0441A47E4 for ; Wed, 28 Jun 2017 17:36:38 +0200 (CEST) From: Aleksandar Markovic To: linux-mips@linux-mips.org Subject: [PATCH v2 06/10] Documentation: Add device tree binding for Goldfish FB driver Date: Wed, 28 Jun 2017 17:36:23 +0200 Message-Id: <1498664187-27995-7-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1498664187-27995-1-git-send-email-aleksandar.markovic@rt-rk.com> References: <1498664187-27995-1-git-send-email-aleksandar.markovic@rt-rk.com> Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 58852 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: aleksandar.markovic@rt-rk.com Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips From: Aleksandar Markovic Add documentation for DT binding of Goldfish FB driver. The compatible string used by OS for binding the driver is "google,goldfish-fb". Signed-off-by: Miodrag Dinic Signed-off-by: Goran Ferenc Signed-off-by: Aleksandar Markovic --- .../bindings/goldfish/google,goldfish-fb.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/goldfish/google,goldfish-fb.txt diff --git a/Documentation/devicetree/bindings/goldfish/google,goldfish-fb.txt b/Documentation/devicetree/bindings/goldfish/google,goldfish-fb.txt new file mode 100644 index 0000000..9ce0615 --- /dev/null +++ b/Documentation/devicetree/bindings/goldfish/google,goldfish-fb.txt @@ -0,0 +1,18 @@ +Android Goldfish framebuffer + +Android Goldfish framebuffer device used by Android emulator. + +Required properties: + +- compatible : should contain "google,goldfish-fb" +- reg : +- interrupts : + +Example: + + goldfish_fb@1f008000 { + compatible = "google,goldfish-fb"; + interrupts = <0x10>; + reg = <0x1f008000 0x0 0x100>; + compatible = "google,goldfish-fb"; + }; -- 2.7.4