From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2DC0C43462 for ; Fri, 23 Apr 2021 06:10:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AFFE7613FA for ; Fri, 23 Apr 2021 06:10:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240614AbhDWGLW (ORCPT ); Fri, 23 Apr 2021 02:11:22 -0400 Received: from inva021.nxp.com ([92.121.34.21]:45688 "EHLO inva021.nxp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230504AbhDWGLU (ORCPT ); Fri, 23 Apr 2021 02:11:20 -0400 Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 2431420415A; Fri, 23 Apr 2021 08:10:44 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 52EB120416D; Fri, 23 Apr 2021 08:10:37 +0200 (CEST) Received: from localhost.localdomain (shlinux2.ap.freescale.net [10.192.224.44]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id CF91340339; Fri, 23 Apr 2021 08:10:28 +0200 (CEST) From: Shengjiu Wang To: lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, timur@kernel.org, nicoleotsuka@gmail.com, Xiubo.Lee@gmail.com, festevam@gmail.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, linux-imx@nxp.com, linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, robh+dt@kernel.org, devicetree@vger.kernel.org Subject: [PATCH 2/2] ASoC: dt-bindings: imx-akcodec: Add binding doc for akcodec machine driver Date: Fri, 23 Apr 2021 13:51:47 +0800 Message-Id: <1619157107-3734-2-git-send-email-shengjiu.wang@nxp.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1619157107-3734-1-git-send-email-shengjiu.wang@nxp.com> References: <1619157107-3734-1-git-send-email-shengjiu.wang@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Imx-akcodec is a new added machine driver for supporting ak4458/ak5558/ak5552/ak4497 codec on i.MX platforms. Signed-off-by: Shengjiu Wang --- .../bindings/sound/imx-audio-akcodec.yaml | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml diff --git a/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml b/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml new file mode 100644 index 000000000000..7419bf7224e9 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml @@ -0,0 +1,60 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/sound/imx-audio-akcodec.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: NXP i.MX audio complex with AK4458/AK5558/AK5552/AK4497 codec + +maintainers: + - Shengjiu Wang + +properties: + compatible: + enum: + - fsl,imx8mq-audio-ak4458 + - fsl,imx8mq-audio-ak4497 + - fsl,imx8mq-audio-ak5558 + - fsl,imx-audio-ak4497 + - fsl,imx-audio-ak4458 + - fsl,imx-audio-ak5558 + - fsl,imx-audio-ak5552 + + model: + $ref: /schemas/types.yaml#/definitions/string + description: User specified audio sound card name + + audio-cpu: + $ref: /schemas/types.yaml#/definitions/phandle + description: The phandle of a CPU DAI controller + + audio-codec: + description: The phandle of Codec DAI controllers, there are two + controllers maximum. + + audio-asrc: + $ref: /schemas/types.yaml#/definitions/phandle + description: The phandle of ASRC. It can be absent if there's no + need to add ASRC support via DPCM. + + fsl,tdm: + $ref: /schemas/types.yaml#/definitions/flag + description: | + This is a boolean property. If present, the TDM mode is enabled. + +required: + - compatible + - model + - audio-cpu + - audio-codec + +additionalProperties: false + +examples: + - | + sound-ak4458 { + compatible = "fsl,imx-audio-ak4458"; + model = "ak4458-audio"; + audio-cpu = <&sai1>; + audio-codec = <&ak4458_1>, <&ak4458_2>; + }; -- 2.17.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 91983C433ED for ; Fri, 23 Apr 2021 06:12:52 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 04AC6613CC for ; Fri, 23 Apr 2021 06:12:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 04AC6613CC Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nxp.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Transfer-Encoding :Content-Type:MIME-Version:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:References:In-Reply-To:Message-Id:Date:Subject:To: From:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=fD5/ykjuR2JZ7elxtqemtaNFbop96hAkTMDs/IQFjT4=; b=nHo5QpAAIaHAm7uUL9x194BKAY 4+zzj/q/U2uKu73DEKjYZ2fGNJrns6XFIXhBFALbsooByHDpqOkWVet7CSS2gY7NFmqyD0KH7FUXD csn76hbz6VN4EteWdH1EZ1hp3/je4NXQiD5bATRL6fIVRH2tSW5itPrFWzgyLPZX5zPdKXYzfp9yk VUFJyJ/Z8gXqniEfOfqLG2/EURVg9pjDEiEHTBZELNrIrb+9eh4WLMHIWX6KpW1WzLWJkOa12lDCy ed/oWahfWxe3QTEYmqPh91o/uvVuqzUjeX2GQyMsUpM4ZayBJxxxPOW+N54GenqFHxcXNwuNewsRC sUm9kOWw==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lZp1m-000osL-RR; Fri, 23 Apr 2021 06:10:59 +0000 Received: from bombadil.infradead.org ([2607:7c80:54:e::133]) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lZp1f-000or0-72 for linux-arm-kernel@desiato.infradead.org; Fri, 23 Apr 2021 06:10:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=References:In-Reply-To:Message-Id: Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description; bh=yWXyqyNt+8bkMu1Zo8FV/fcTyYRbVuKigl6tsleRRzw=; b=BorkWeNCkt+mMlFQo2aiTNUK8n ISIJnchjueDyIkLuNl/WI+UvW63+fS2pH17xsAMe0tYcq/X4GTNgfgnnJal7nliotZpYH71fmiiLC 32l3mKRuM9uoIugMEQitfNEBi17RXc4+xcMqXNuoFbCGR/jeI4vTvSB/heopN/yLAapwjYBxkYcXB QKB1y6AiXCzpQSy7KVWyHpjzNhxh3yetWpae5rESnyDbqiXFArbfhm+c9HRTnqznnM/Z6QiPqqLEk jgGmcXlRynhiLYNdhQSs9I8O2TfACyTsZ6eyGzCu7you1zS23AjZkgDVSAsrLWkrnfHFZ2Xoh2Tlw adWOwA0w==; Received: from inva021.nxp.com ([92.121.34.21]) by bombadil.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lZp1b-00EB08-PX for linux-arm-kernel@lists.infradead.org; Fri, 23 Apr 2021 06:10:49 +0000 Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 2431420415A; Fri, 23 Apr 2021 08:10:44 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 52EB120416D; Fri, 23 Apr 2021 08:10:37 +0200 (CEST) Received: from localhost.localdomain (shlinux2.ap.freescale.net [10.192.224.44]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id CF91340339; Fri, 23 Apr 2021 08:10:28 +0200 (CEST) From: Shengjiu Wang To: lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, timur@kernel.org, nicoleotsuka@gmail.com, Xiubo.Lee@gmail.com, festevam@gmail.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, linux-imx@nxp.com, linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, robh+dt@kernel.org, devicetree@vger.kernel.org Subject: [PATCH 2/2] ASoC: dt-bindings: imx-akcodec: Add binding doc for akcodec machine driver Date: Fri, 23 Apr 2021 13:51:47 +0800 Message-Id: <1619157107-3734-2-git-send-email-shengjiu.wang@nxp.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1619157107-3734-1-git-send-email-shengjiu.wang@nxp.com> References: <1619157107-3734-1-git-send-email-shengjiu.wang@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210422_231047_984207_075DB9B4 X-CRM114-Status: GOOD ( 12.75 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Imx-akcodec is a new added machine driver for supporting ak4458/ak5558/ak5552/ak4497 codec on i.MX platforms. Signed-off-by: Shengjiu Wang --- .../bindings/sound/imx-audio-akcodec.yaml | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml diff --git a/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml b/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml new file mode 100644 index 000000000000..7419bf7224e9 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/imx-audio-akcodec.yaml @@ -0,0 +1,60 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/sound/imx-audio-akcodec.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: NXP i.MX audio complex with AK4458/AK5558/AK5552/AK4497 codec + +maintainers: + - Shengjiu Wang + +properties: + compatible: + enum: + - fsl,imx8mq-audio-ak4458 + - fsl,imx8mq-audio-ak4497 + - fsl,imx8mq-audio-ak5558 + - fsl,imx-audio-ak4497 + - fsl,imx-audio-ak4458 + - fsl,imx-audio-ak5558 + - fsl,imx-audio-ak5552 + + model: + $ref: /schemas/types.yaml#/definitions/string + description: User specified audio sound card name + + audio-cpu: + $ref: /schemas/types.yaml#/definitions/phandle + description: The phandle of a CPU DAI controller + + audio-codec: + description: The phandle of Codec DAI controllers, there are two + controllers maximum. + + audio-asrc: + $ref: /schemas/types.yaml#/definitions/phandle + description: The phandle of ASRC. It can be absent if there's no + need to add ASRC support via DPCM. + + fsl,tdm: + $ref: /schemas/types.yaml#/definitions/flag + description: | + This is a boolean property. If present, the TDM mode is enabled. + +required: + - compatible + - model + - audio-cpu + - audio-codec + +additionalProperties: false + +examples: + - | + sound-ak4458 { + compatible = "fsl,imx-audio-ak4458"; + model = "ak4458-audio"; + audio-cpu = <&sai1>; + audio-codec = <&ak4458_1>, <&ak4458_2>; + }; -- 2.17.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel