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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 EF08BC433EF for ; Thu, 7 Apr 2022 14:28:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Gu8xMqw8MOSsfyc9THr1+FZpnxc3lIdmEAI8jYwExZ0=; b=Il9+wvB7hfHFg5 xAq1RTs6YAKErg0HRfsm9soOdkCFiAXWZyWhzwWUmnDtixY88YOBKxjy2rwZUTGFSKMRjuIwbgnhs rjH2t3FFtQdbtuzDpSXrESc7CWVvZh1Yf/ANqATcGgNRdx4W3mtPiXdeS7FHrMNwzS/o2/Oj0TefF FSQufhvW59/xobzIbl3XQmxSIZe5bvLKAakGaMmVElrCzFfyEHDOJQd0r7V2hTD/Hzf0APg5dvZY2 wodkqgxEncnZX+zEtq8Bs4hcYj3NbxH2EeiiMjJfPPoiIXAxZA+32ZtVsBukI/TEAan6Xn0TUbEEd Jco5/Xhww67FzQQYXWAA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ncT7G-00CMcO-Q5; Thu, 07 Apr 2022 14:28:06 +0000 Received: from fudo.makrotopia.org ([2a07:2ec0:3002::71]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ncT73-00CMWW-Dj; Thu, 07 Apr 2022 14:27:54 +0000 Received: from local by fudo.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.94.2) (envelope-from ) id 1ncT6r-0000NC-PG; Thu, 07 Apr 2022 16:27:41 +0200 Date: Thu, 7 Apr 2022 15:27:35 +0100 From: Daniel Golle To: Allen-KH Cheng Cc: Matthias Brugger , Mark Brown , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Linux-ALSA , Kai Vehmanen , cujomalainey@google.com, Kevin Hilman , Takashi Iwai , Pierre-Louis Bossart , Liam Girdwood , Project_Global_Chrome_Upstream_Group@mediatek.com, tzungbi@google.com, linux-mediatek@lists.infradead.org, Ranjani Sridharan , Chen-Yu Tsai , Daniel Baluta , linux-kernel@vger.kernel.org, sound-open-firmware@alsa-project.org Subject: Re: [PATCH v7 0/1] firmware: mtk: add adsp ipc protocol for SOF Message-ID: References: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220407_072753_513839_4C5A3B6C X-CRM114-Status: GOOD ( 16.36 ) X-BeenThere: linux-mediatek@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "Linux-mediatek" Errors-To: linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org On Thu, Apr 07, 2022 at 09:03:37PM +0800, Allen-KH Cheng wrote: > This patch provides mediatek adsp ipc support for SOF. > ADSP IPC protocol offers (send/recv) interfaces using > mediatek-mailbox APIs. > > This patch was tested and confirmed to with SOF fw on MT8195 > cherry board. ... confirmed to **work** with ... is probably what you meant to write here. > > Based on matthias.bgg/linux.git, v5.18-next/soc > changes since v6: > - rebase to matthias.bgg/linux.git, v5.18-next/soc > - Prefer "GPL" over "GPL v2" for MODULE_LICENSE > > changes since v5: > - fix WARNING: modpost: missing MODULE_LICENSE() in drivers/mailbox > /mtk-adsp-mailbox.o. Add MODULE_LICENSE in the last line. > - Due to WARNING: Missing or malformed SPDX-License-Identifier tag > in line 1 in checkpatch, we don't remove SPDX-License in line 1. > > changes since v4: > - add error message for wrong mbox chan > > changes since v3: > - rebase on v5.16-rc8 > - update reviewers > > changes since v2: > - add out tag for two memory free phases > > changes since v1: > - add comments for mtk_adsp_ipc_send and mtk_adsp_ipc_recv > - remove useless MODULE_LICENSE > - change label name to out_free > > > Allen-KH Cheng (1): > firmware: mediatek: add adsp ipc protocol interface > > drivers/firmware/Kconfig | 1 + > drivers/firmware/Makefile | 1 + > drivers/firmware/mediatek/Kconfig | 9 + > drivers/firmware/mediatek/Makefile | 2 + > drivers/firmware/mediatek/mtk-adsp-ipc.c | 161 ++++++++++++++++++ > .../linux/firmware/mediatek/mtk-adsp-ipc.h | 65 +++++++ > 6 files changed, 239 insertions(+) > create mode 100644 drivers/firmware/mediatek/Kconfig > create mode 100644 drivers/firmware/mediatek/Makefile > create mode 100644 drivers/firmware/mediatek/mtk-adsp-ipc.c > create mode 100644 include/linux/firmware/mediatek/mtk-adsp-ipc.h > > -- > 2.18.0 > _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek 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 42E69C433F5 for ; Thu, 7 Apr 2022 14:29:04 +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 942CB17D5; Thu, 7 Apr 2022 16:28:12 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 942CB17D5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1649341742; bh=rvgOuVepiat93jjbiIHz1uDoVSPTzuq6D+lseJsHMlc=; h=Date:From:To:Subject:References:In-Reply-To:Cc:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=ZRF8t66+7rizX4kHzElZ9fqabhFVCokyD6ynKQ1ZRL9fHF+UjRlubygWiG/B4NZk1 PpgTCsMVCk03jEaXMmZEr2mozkizpksyF1oC3K6DQsJW1PAlbcl2hGAXdtOBft7kvz qz1tW2KfGTLJxZhwAxSms/+35lBtxE67FqKt4wds= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 258A3F80085; Thu, 7 Apr 2022 16:28:12 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 56CA2F8024C; Thu, 7 Apr 2022 16:28:07 +0200 (CEST) Received: from fudo.makrotopia.org (fudo.makrotopia.org [IPv6:2a07:2ec0:3002::71]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 4440FF8012A; Thu, 7 Apr 2022 16:27:59 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 4440FF8012A Received: from local by fudo.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.94.2) (envelope-from ) id 1ncT6r-0000NC-PG; Thu, 07 Apr 2022 16:27:41 +0200 Date: Thu, 7 Apr 2022 15:27:35 +0100 From: Daniel Golle To: Allen-KH Cheng Subject: Re: [PATCH v7 0/1] firmware: mtk: add adsp ipc protocol for SOF Message-ID: References: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> Cc: devicetree@vger.kernel.org, Linux-ALSA , linux-kernel@vger.kernel.org, Kai Vehmanen , Liam Girdwood , cujomalainey@google.com, Kevin Hilman , Takashi Iwai , Pierre-Louis Bossart , Project_Global_Chrome_Upstream_Group@mediatek.com, tzungbi@google.com, Mark Brown , linux-mediatek@lists.infradead.org, Ranjani Sridharan , Chen-Yu Tsai , Matthias Brugger , Daniel Baluta , linux-arm-kernel@lists.infradead.org, sound-open-firmware@alsa-project.org 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" On Thu, Apr 07, 2022 at 09:03:37PM +0800, Allen-KH Cheng wrote: > This patch provides mediatek adsp ipc support for SOF. > ADSP IPC protocol offers (send/recv) interfaces using > mediatek-mailbox APIs. > > This patch was tested and confirmed to with SOF fw on MT8195 > cherry board. ... confirmed to **work** with ... is probably what you meant to write here. > > Based on matthias.bgg/linux.git, v5.18-next/soc > changes since v6: > - rebase to matthias.bgg/linux.git, v5.18-next/soc > - Prefer "GPL" over "GPL v2" for MODULE_LICENSE > > changes since v5: > - fix WARNING: modpost: missing MODULE_LICENSE() in drivers/mailbox > /mtk-adsp-mailbox.o. Add MODULE_LICENSE in the last line. > - Due to WARNING: Missing or malformed SPDX-License-Identifier tag > in line 1 in checkpatch, we don't remove SPDX-License in line 1. > > changes since v4: > - add error message for wrong mbox chan > > changes since v3: > - rebase on v5.16-rc8 > - update reviewers > > changes since v2: > - add out tag for two memory free phases > > changes since v1: > - add comments for mtk_adsp_ipc_send and mtk_adsp_ipc_recv > - remove useless MODULE_LICENSE > - change label name to out_free > > > Allen-KH Cheng (1): > firmware: mediatek: add adsp ipc protocol interface > > drivers/firmware/Kconfig | 1 + > drivers/firmware/Makefile | 1 + > drivers/firmware/mediatek/Kconfig | 9 + > drivers/firmware/mediatek/Makefile | 2 + > drivers/firmware/mediatek/mtk-adsp-ipc.c | 161 ++++++++++++++++++ > .../linux/firmware/mediatek/mtk-adsp-ipc.h | 65 +++++++ > 6 files changed, 239 insertions(+) > create mode 100644 drivers/firmware/mediatek/Kconfig > create mode 100644 drivers/firmware/mediatek/Makefile > create mode 100644 drivers/firmware/mediatek/mtk-adsp-ipc.c > create mode 100644 include/linux/firmware/mediatek/mtk-adsp-ipc.h > > -- > 2.18.0 > 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 18332C433F5 for ; Thu, 7 Apr 2022 14:29:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=0vAtNTnB4g/6nHJBCnLHbwtt00//YYs620AkSn/0Wi0=; b=K5z1YQHr8DmRpz /oFblcJChC7u0HfXN9hWT1VV89ZPq9dCMOeBC2bx/qIVZ1Sn5MkMkmLTg4Kk3MjMxHwuf2d/WR5qc lB3r55SkEB6bKRXY4uf6DxFYxCX8U5c5a2NW++UEYBruFbRHZdG1TmZ3Mej9I/jCO1cqwGyC8/NyJ QtgQrPJ3YLwyz2jCCa4Vtj03kOgesFt3rczjzT0loDMEprVsOe3JreJFvC94MepImTJ3hSY1CEjqC C0mQZK8QjjPub2k5notzMUXkw6/1sZVFW3s5+MzB8ricYVAVvbceGmOAqh+4p5Qz/w4PZu7tdaYeX h1owcOEn5Gdrf7uVnR0A==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ncT76-00CMYr-EM; Thu, 07 Apr 2022 14:27:56 +0000 Received: from fudo.makrotopia.org ([2a07:2ec0:3002::71]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ncT73-00CMWW-Dj; Thu, 07 Apr 2022 14:27:54 +0000 Received: from local by fudo.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.94.2) (envelope-from ) id 1ncT6r-0000NC-PG; Thu, 07 Apr 2022 16:27:41 +0200 Date: Thu, 7 Apr 2022 15:27:35 +0100 From: Daniel Golle To: Allen-KH Cheng Cc: Matthias Brugger , Mark Brown , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Linux-ALSA , Kai Vehmanen , cujomalainey@google.com, Kevin Hilman , Takashi Iwai , Pierre-Louis Bossart , Liam Girdwood , Project_Global_Chrome_Upstream_Group@mediatek.com, tzungbi@google.com, linux-mediatek@lists.infradead.org, Ranjani Sridharan , Chen-Yu Tsai , Daniel Baluta , linux-kernel@vger.kernel.org, sound-open-firmware@alsa-project.org Subject: Re: [PATCH v7 0/1] firmware: mtk: add adsp ipc protocol for SOF Message-ID: References: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220407_072753_513839_4C5A3B6C X-CRM114-Status: GOOD ( 16.36 ) 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: , 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 On Thu, Apr 07, 2022 at 09:03:37PM +0800, Allen-KH Cheng wrote: > This patch provides mediatek adsp ipc support for SOF. > ADSP IPC protocol offers (send/recv) interfaces using > mediatek-mailbox APIs. > > This patch was tested and confirmed to with SOF fw on MT8195 > cherry board. ... confirmed to **work** with ... is probably what you meant to write here. > > Based on matthias.bgg/linux.git, v5.18-next/soc > changes since v6: > - rebase to matthias.bgg/linux.git, v5.18-next/soc > - Prefer "GPL" over "GPL v2" for MODULE_LICENSE > > changes since v5: > - fix WARNING: modpost: missing MODULE_LICENSE() in drivers/mailbox > /mtk-adsp-mailbox.o. Add MODULE_LICENSE in the last line. > - Due to WARNING: Missing or malformed SPDX-License-Identifier tag > in line 1 in checkpatch, we don't remove SPDX-License in line 1. > > changes since v4: > - add error message for wrong mbox chan > > changes since v3: > - rebase on v5.16-rc8 > - update reviewers > > changes since v2: > - add out tag for two memory free phases > > changes since v1: > - add comments for mtk_adsp_ipc_send and mtk_adsp_ipc_recv > - remove useless MODULE_LICENSE > - change label name to out_free > > > Allen-KH Cheng (1): > firmware: mediatek: add adsp ipc protocol interface > > drivers/firmware/Kconfig | 1 + > drivers/firmware/Makefile | 1 + > drivers/firmware/mediatek/Kconfig | 9 + > drivers/firmware/mediatek/Makefile | 2 + > drivers/firmware/mediatek/mtk-adsp-ipc.c | 161 ++++++++++++++++++ > .../linux/firmware/mediatek/mtk-adsp-ipc.h | 65 +++++++ > 6 files changed, 239 insertions(+) > create mode 100644 drivers/firmware/mediatek/Kconfig > create mode 100644 drivers/firmware/mediatek/Makefile > create mode 100644 drivers/firmware/mediatek/mtk-adsp-ipc.c > create mode 100644 include/linux/firmware/mediatek/mtk-adsp-ipc.h > > -- > 2.18.0 > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 59B07C433F5 for ; Thu, 7 Apr 2022 14:49:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344269AbiDGOvk (ORCPT ); Thu, 7 Apr 2022 10:51:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46256 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241089AbiDGOvj (ORCPT ); Thu, 7 Apr 2022 10:51:39 -0400 X-Greylist: delayed 1295 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Thu, 07 Apr 2022 07:49:39 PDT Received: from fudo.makrotopia.org (fudo.makrotopia.org [IPv6:2a07:2ec0:3002::71]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 079C51BFDE2; Thu, 7 Apr 2022 07:49:38 -0700 (PDT) Received: from local by fudo.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.94.2) (envelope-from ) id 1ncT6r-0000NC-PG; Thu, 07 Apr 2022 16:27:41 +0200 Date: Thu, 7 Apr 2022 15:27:35 +0100 From: Daniel Golle To: Allen-KH Cheng Cc: Matthias Brugger , Mark Brown , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Linux-ALSA , Kai Vehmanen , cujomalainey@google.com, Kevin Hilman , Takashi Iwai , Pierre-Louis Bossart , Liam Girdwood , Project_Global_Chrome_Upstream_Group@mediatek.com, tzungbi@google.com, linux-mediatek@lists.infradead.org, Ranjani Sridharan , Chen-Yu Tsai , Daniel Baluta , linux-kernel@vger.kernel.org, sound-open-firmware@alsa-project.org Subject: Re: [PATCH v7 0/1] firmware: mtk: add adsp ipc protocol for SOF Message-ID: References: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220407130338.28939-1-allen-kh.cheng@mediatek.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Apr 07, 2022 at 09:03:37PM +0800, Allen-KH Cheng wrote: > This patch provides mediatek adsp ipc support for SOF. > ADSP IPC protocol offers (send/recv) interfaces using > mediatek-mailbox APIs. > > This patch was tested and confirmed to with SOF fw on MT8195 > cherry board. ... confirmed to **work** with ... is probably what you meant to write here. > > Based on matthias.bgg/linux.git, v5.18-next/soc > changes since v6: > - rebase to matthias.bgg/linux.git, v5.18-next/soc > - Prefer "GPL" over "GPL v2" for MODULE_LICENSE > > changes since v5: > - fix WARNING: modpost: missing MODULE_LICENSE() in drivers/mailbox > /mtk-adsp-mailbox.o. Add MODULE_LICENSE in the last line. > - Due to WARNING: Missing or malformed SPDX-License-Identifier tag > in line 1 in checkpatch, we don't remove SPDX-License in line 1. > > changes since v4: > - add error message for wrong mbox chan > > changes since v3: > - rebase on v5.16-rc8 > - update reviewers > > changes since v2: > - add out tag for two memory free phases > > changes since v1: > - add comments for mtk_adsp_ipc_send and mtk_adsp_ipc_recv > - remove useless MODULE_LICENSE > - change label name to out_free > > > Allen-KH Cheng (1): > firmware: mediatek: add adsp ipc protocol interface > > drivers/firmware/Kconfig | 1 + > drivers/firmware/Makefile | 1 + > drivers/firmware/mediatek/Kconfig | 9 + > drivers/firmware/mediatek/Makefile | 2 + > drivers/firmware/mediatek/mtk-adsp-ipc.c | 161 ++++++++++++++++++ > .../linux/firmware/mediatek/mtk-adsp-ipc.h | 65 +++++++ > 6 files changed, 239 insertions(+) > create mode 100644 drivers/firmware/mediatek/Kconfig > create mode 100644 drivers/firmware/mediatek/Makefile > create mode 100644 drivers/firmware/mediatek/mtk-adsp-ipc.c > create mode 100644 include/linux/firmware/mediatek/mtk-adsp-ipc.h > > -- > 2.18.0 >