From patchwork Fri Aug 18 13:08:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aleksandar Markovic X-Patchwork-Id: 803229 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@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=devicetree-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xYk712zbGz9t30 for ; Fri, 18 Aug 2017 23:13:49 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750953AbdHRNM0 (ORCPT ); Fri, 18 Aug 2017 09:12:26 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:59638 "EHLO mail.rt-rk.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751742AbdHRNMJ (ORCPT ); Fri, 18 Aug 2017 09:12:09 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id A9B051A23C8; Fri, 18 Aug 2017 15:12:07 +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 88A6D1A22C9; Fri, 18 Aug 2017 15:12:07 +0200 (CEST) From: Aleksandar Markovic To: linux-mips@linux-mips.org Cc: Aleksandar Markovic , Miodrag Dinic , Goran Ferenc , Bo Hu , "David S. Miller" , devicetree@vger.kernel.org, Douglas Leung , Greg Kroah-Hartman , James Hogan , Jason Cooper , Jin Qian , linux-kernel@vger.kernel.org, Marc Zyngier , Mark Rutland , Mauro Carvalho Chehab , Paul Burton , Petar Jovanovic , Raghu Gandham , Randy Dunlap , Rob Herring , Thomas Gleixner Subject: [PATCH v4 3/8] Documentation: Add device tree binding for Goldfish PIC driver Date: Fri, 18 Aug 2017 15:08:55 +0200 Message-Id: <1503061833-26563-4-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1503061833-26563-1-git-send-email-aleksandar.markovic@rt-rk.com> References: <1503061833-26563-1-git-send-email-aleksandar.markovic@rt-rk.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: Aleksandar Markovic Add documentation for DT binding of Goldfish PIC driver. The compatible string used by OS for binding the driver is "google,goldfish-pic". Signed-off-by: Miodrag Dinic Signed-off-by: Goran Ferenc Signed-off-by: Aleksandar Markovic --- .../interrupt-controller/google,goldfish-pic.txt | 18 ++++++++++++++++++ MAINTAINERS | 5 +++++ 2 files changed, 23 insertions(+) create mode 100644 Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt diff --git a/Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt b/Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt new file mode 100644 index 0000000..f198762 --- /dev/null +++ b/Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt @@ -0,0 +1,18 @@ +Android Goldfish PIC + +Android Goldfish programmable interrupt device used by Android +emulator. + +Required properties: + +- compatible : should contain "google,goldfish-pic" +- reg : +- interrupts : + +Example: + + goldfish_pic@9020000 { + compatible = "google,goldfish-pic"; + reg = <0x9020000 0x1000>; + interrupts = <0x3>; + }; diff --git a/MAINTAINERS b/MAINTAINERS index 3d105be..013da1d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -840,6 +840,11 @@ S: Supported F: drivers/android/ F: drivers/staging/android/ +ANDROID GOLDFISH PIC DRIVER +M: Miodrag Dinic +S: Supported +F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt + ANDROID GOLDFISH RTC DRIVER M: Miodrag Dinic S: Supported