From patchwork Wed Feb 26 16:07:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 3726691 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 21D7D9F2F7 for ; Wed, 26 Feb 2014 17:24:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4AE8A20170 for ; Wed, 26 Feb 2014 17:24:04 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 0D32820166 for ; Wed, 26 Feb 2014 17:24:03 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id E998E265A74; Wed, 26 Feb 2014 18:24:01 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=1.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM, KHOP_BIG_TO_CC, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 3CB6426587C; Wed, 26 Feb 2014 17:44:17 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 5A26426587B; Wed, 26 Feb 2014 17:44:16 +0100 (CET) Received: from smtp35.i.mail.ru (smtp35.i.mail.ru [94.100.177.95]) by alsa0.perex.cz (Postfix) with ESMTP id 3B92B265CE6 for ; Wed, 26 Feb 2014 17:07:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=Message-Id:Date:Subject:Cc:To:From; bh=ack8dN4jkyIb9cMG8Bn/ElRXAHzKLSDMWPphIiPNNxs=; b=aFCqlxhq8dYEg3u8ha0y5DYthS4c1lhvvlDAJQP2faNs3FOx/246zLVxC0+1JuOH3ZjzkBFIdbsclv5Y3StThGJA+ol8U2bpQpYVGEs2uqYd/ddNFsVzREIs2tkTOz54RyX82hAwE+dM6Eld33nUN4EzQxaoMQzLcx9iF8X2vqE=; Received: from [188.134.40.128] (port=58144 helo=shc.zet) by smtp35.i.mail.ru with esmtpa (envelope-from ) id 1WIh1V-00066B-Er; Wed, 26 Feb 2014 20:07:53 +0400 From: Alexander Shiyan To: alsa-devel@alsa-project.org Date: Wed, 26 Feb 2014 20:07:36 +0400 Message-Id: <1393430856-16322-1-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 1.8.3.2 X-Spam: Not detected X-Mras: Ok Cc: Mark Rutland , devicetree@vger.kernel.org, Pawel Moll , Arnd Bergmann , Ian Campbell , Takashi Iwai , Liam Girdwood , Rob Herring , Grant Likely , Mark Brown , Alexander Shiyan , Kumar Gala , Olof Johansson Subject: [alsa-devel] [PATCH 2/2] ASoC: cirrus: clps711x: Add bindings documentation for the CLPS711X DAI X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Spam-Level: * X-Virus-Scanned: ClamAV using ClamSMTP This patch adds the devicetree documentation for the Cirrus Logic CLPS711X Digital Audio Interface (DAI). Signed-off-by: Alexander Shiyan --- .../bindings/sound/cirrus,clps711x-dai.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/cirrus,clps711x-dai.txt diff --git a/Documentation/devicetree/bindings/sound/cirrus,clps711x-dai.txt b/Documentation/devicetree/bindings/sound/cirrus,clps711x-dai.txt new file mode 100644 index 0000000..718599e --- /dev/null +++ b/Documentation/devicetree/bindings/sound/cirrus,clps711x-dai.txt @@ -0,0 +1,20 @@ +* Cirrus Logic CLPS711X Digital Audio Interface (DAI) + +Required properties: +- compatible: Should be "cirrus,clps711x-dai". +- reg: Should contain registers location and length. +- clocks: A clock specifier for the CPU PLL clock. +- clock-names: The CPU PLL clock should be named "pll". +- interrupts: Should contain DAI interrupt number. +- syscon: phandle to syscon device node which control DAI (SYSCON3). + +Example: + dai: dai@80002000 { + #sound-dai-cells = <0>; + compatible = "cirrus,clps711x-dai"; + reg = <0x80002000 0x604>; + clocks = <&clks 3>; + clock-names = "pll"; + interrupts = <32>; + syscon = <&syscon3>; + };