From patchwork Fri Jul 21 16:53:30 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aleksandar Markovic X-Patchwork-Id: 792217 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-rtc-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xDcPs0R7Qz9t0F for ; Sat, 22 Jul 2017 02:57:21 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754593AbdGUQ5L (ORCPT ); Fri, 21 Jul 2017 12:57:11 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:59816 "EHLO mail.rt-rk.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754141AbdGUQz7 (ORCPT ); Fri, 21 Jul 2017 12:55:59 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 10EB01A4953; Fri, 21 Jul 2017 18:55:58 +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 E30CA1A470A; Fri, 21 Jul 2017 18:55:57 +0200 (CEST) From: Aleksandar Markovic To: linux-mips@linux-mips.org Cc: Aleksandar Markovic , Miodrag Dinic , Goran Ferenc , Alessandro Zummo , Alexandre Belloni , Bo Hu , "David S. Miller" , devicetree@vger.kernel.org, Douglas Leung , Greg Kroah-Hartman , James Hogan , Jin Qian , linux-kernel@vger.kernel.org, linux-rtc@vger.kernel.org, Mark Rutland , Mauro Carvalho Chehab , Paul Burton , Petar Jovanovic , Raghu Gandham , Rob Herring Subject: [PATCH v3 1/8] Documentation: Add device tree binding for Goldfish RTC driver Date: Fri, 21 Jul 2017 18:53:30 +0200 Message-Id: <1500656111-9520-2-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1500656111-9520-1-git-send-email-aleksandar.markovic@rt-rk.com> References: <1500656111-9520-1-git-send-email-aleksandar.markovic@rt-rk.com> Sender: linux-rtc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rtc@vger.kernel.org From: Aleksandar Markovic Add documentation for DT binding of Goldfish RTC driver. The compatible string used by OS for binding the driver is "google,goldfish-rtc". Signed-off-by: Miodrag Dinic Signed-off-by: Goran Ferenc Signed-off-by: Aleksandar Markovic --- .../devicetree/bindings/rtc/google,goldfish-rtc.txt | 17 +++++++++++++++++ MAINTAINERS | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt diff --git a/Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt b/Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt new file mode 100644 index 0000000..634312d --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt @@ -0,0 +1,17 @@ +Android Goldfish RTC + +Android Goldfish RTC device used by Android emulator. + +Required properties: + +- compatible : should contain "google,goldfish-rtc" +- reg : +- interrupts : + +Example: + + goldfish_timer@9020000 { + compatible = "google,goldfish-rtc"; + reg = <0x9020000 0x1000>; + interrupts = <0x3>; + }; diff --git a/MAINTAINERS b/MAINTAINERS index 02994f4..847da3f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -841,6 +841,11 @@ S: Supported F: drivers/android/ F: drivers/staging/android/ +ANDROID GOLDFISH RTC DRIVER +M: Miodrag Dinic +S: Supported +F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt + ANDROID ION DRIVER M: Laura Abbott M: Sumit Semwal