From patchwork Sun Nov 9 08:32:06 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Beniamino Galvani X-Patchwork-Id: 408529 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 25C791400AB for ; Sun, 9 Nov 2014 19:35:56 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751521AbaKIIeo (ORCPT ); Sun, 9 Nov 2014 03:34:44 -0500 Received: from mail-wg0-f52.google.com ([74.125.82.52]:45133 "EHLO mail-wg0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751513AbaKIIen (ORCPT ); Sun, 9 Nov 2014 03:34:43 -0500 Received: by mail-wg0-f52.google.com with SMTP id b13so6553682wgh.25 for ; Sun, 09 Nov 2014 00:34:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=KjVTAEVEaeUVPH0b6Pbj9Gna00VpXtP9cr8UpEmKWXo=; b=eAJJb9FJ6wfYEaoqgyObLJ3T8Oj9jwHoYfX7LS1f3AOavhVdfJ6ptk1V7W6RdTxMI5 THEGhZXAi/rKxQj4LkGNyZmEog20I5gZ9QqVcqzq6spcjwDs8pGRm6fbwB3YiaZ36o5J ufDu6RSWS2/0Wkt6JxJXsHWJFbVqdVpdpMjpIuihcHNkfmylJntW/ShiL+RPinaGJdV0 jrDH0VkUaZ/uT3gjjGqXJpgSEKb9ITa/kEswEzk6WxzD8HQGWBO235X6edn7JGcGJHV4 7opeoak6scdXq61g1rCH99GXzy29C73/S+/haBfozmzMwXfnWn0hdgn+B1PxKRmCrkX0 7tqQ== X-Received: by 10.180.90.197 with SMTP id by5mr20683326wib.50.1415522081520; Sun, 09 Nov 2014 00:34:41 -0800 (PST) Received: from sark.local (host115-93-dynamic.40-79-r.retail.telecomitalia.it. [79.40.93.115]) by mx.google.com with ESMTPSA id bl9sm8507938wib.24.2014.11.09.00.34.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 09 Nov 2014 00:34:40 -0800 (PST) From: Beniamino Galvani To: Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org, Carlo Caione , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Jerry Cao , Victor Wan , Beniamino Galvani Subject: [PATCH v2 1/3] media: rc: meson: document device tree bindings Date: Sun, 9 Nov 2014 09:32:06 +0100 Message-Id: <1415521928-25251-2-git-send-email-b.galvani@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1415521928-25251-1-git-send-email-b.galvani@gmail.com> References: <1415521928-25251-1-git-send-email-b.galvani@gmail.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This adds binding documentation for the infrared remote control receiver available in Amlogic Meson SoCs. Signed-off-by: Beniamino Galvani --- Documentation/devicetree/bindings/media/meson-ir.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/meson-ir.txt diff --git a/Documentation/devicetree/bindings/media/meson-ir.txt b/Documentation/devicetree/bindings/media/meson-ir.txt new file mode 100644 index 0000000..407848e --- /dev/null +++ b/Documentation/devicetree/bindings/media/meson-ir.txt @@ -0,0 +1,14 @@ +* Amlogic Meson IR remote control receiver + +Required properties: + - compatible : should be "amlogic,meson6-ir" + - reg : physical base address and length of the device registers + - interrupts : a single specifier for the interrupt from the device + +Example: + + ir-receiver@c8100480 { + compatible= "amlogic,meson6-ir"; + reg = <0xc8100480 0x20>; + interrupts = <0 15 1>; + };