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 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0FC0FC433EF for ; Fri, 10 Dec 2021 15:12:23 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 5F72B1F5E; Fri, 10 Dec 2021 16:11:31 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 5F72B1F5E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1639149141; bh=rvNl7qd5p9y3Cnh1ZMlY0hnxgikF+fR+3FMkCjAWZd0=; h=From:To:Subject:Date:Cc:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=l28+pAFzQ6YVeW7MqNLYZUD5H5gTk42Wm4oqpBtzGWtSorXs+fEuqnzhtqP73YfK9 9Xa/AeqRmQaSzapA5qPSeqzhLtiuq5s7geuKF6t9/po2+yH3gxVrOFn/hGI0z627fn MnGspotkWPWJe6xl0pILCKyBJwYFRJAq9KtjmkVs= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id E0D0EF804E6; Fri, 10 Dec 2021 16:11:30 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id E045BF804EC; Fri, 10 Dec 2021 16:11:28 +0100 (CET) Received: from mail3-166.sinamail.sina.com.cn (mail3-166.sinamail.sina.com.cn [202.108.3.166]) by alsa1.perex.cz (Postfix) with SMTP id E00EDF804E5 for ; Fri, 10 Dec 2021 16:11:15 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz E00EDF804E5 Received: from unknown (HELO localhost.localdomain)([36.36.86.102]) by sina.com (172.16.97.23) with ESMTP id 61B36DFD0001D2F3; Fri, 10 Dec 2021 23:11:11 +0800 (CST) X-Sender: chenshumin86@sina.com X-Auth-ID: chenshumin86@sina.com X-SMAIL-MID: 13655154919406 From: Shumin Chen To: perex@perex.cz, tiwai@suse.com, lgirdwood@gmail.com, broonie@kernel.org Subject: [PATCH 0/2] This patches provide ASoc codec support for ES8156 Date: Fri, 10 Dec 2021 23:10:39 +0800 Message-Id: <20211210151041.108751-1-chenshumin86@sina.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, Shumin Chen X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 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: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" Introduce new ASoc codec ES8156 support Shumin Chen (2): ASoC: add ES8156 codec driver ASoC: convert Everest ES8156 binding to yaml .../bindings/sound/everest,es8156.yaml | 49 ++ sound/soc/codecs/Kconfig | 5 + sound/soc/codecs/Makefile | 2 + sound/soc/codecs/es8156.c | 614 ++++++++++++++++++ sound/soc/codecs/es8156.h | 76 +++ 5 files changed, 746 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/everest,es8156.yaml create mode 100644 sound/soc/codecs/es8156.c create mode 100644 sound/soc/codecs/es8156.h -- 2.25.1