From nobody Sat Jun 27 23:11:30 2026 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 4CE02C433EF for ; Fri, 18 Feb 2022 08:30:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232573AbiBRIbC (ORCPT ); Fri, 18 Feb 2022 03:31:02 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:58408 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232542AbiBRIbA (ORCPT ); Fri, 18 Feb 2022 03:31:00 -0500 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D06C71FA41 for ; Fri, 18 Feb 2022 00:30:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645173044; x=1676709044; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=X4dKIlW+L1OU06c5P3qQy/8tIznfj0CKwjIgQAnzeTI=; b=Z+6IjH61vXt93+DUxxbZ0JHD5eFomXnyLpYKvaBBDuncXYfsb+r0FCMt 7nSOyikp47Aqgcp+wNNnzRiNN0cvbQoGDTy4EClQjsu1DwJvUj9oIcSWR dmKNTD9BE2clzxbGWnbDYtOKOQJwl2pdlPs+SVnsKdGMb9KUxNY13yl6L YCt8r+coUxsn2Qz4i6Jxf9Wx4jjlUn6NYj9u9WP151oWJPEpyhYZDGQcM qxc6zhbTAAzyH3gyUxFDWrYEKJzcfPe1XNvvFGOTSCtpYdNJn8KZ1Y+TY zSsUIfuuE6CJ81/BpE6uEC9rl9ft1ohxp6eNCgr0zoBTwZ2tX54znyZBX g==; X-IronPort-AV: E=McAfee;i="6200,9189,10261"; a="231718455" X-IronPort-AV: E=Sophos;i="5.88,378,1635231600"; d="scan'208";a="231718455" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Feb 2022 00:30:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,378,1635231600"; d="scan'208";a="503921065" Received: from brentlu-brix.itwn.intel.com ([10.5.253.25]) by orsmga002.jf.intel.com with ESMTP; 18 Feb 2022 00:30:42 -0800 From: Brent Lu To: alsa-devel@alsa-project.org Cc: Pierre-Louis Bossart , Liam Girdwood , Ranjani Sridharan , Kai Vehmanen , Daniel Baluta , Mark Brown , Jaroslav Kysela , Takashi Iwai , sound-open-firmware@alsa-project.org, linux-kernel@vger.kernel.org, Ajye Huang , Brent Lu Subject: [PATCH] ASoC: SOF: Intel: Add topology overwrite for Felwinter Date: Fri, 18 Feb 2022 16:27:41 +0800 Message-Id: <20220218082741.1707209-1-brent.lu@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Ajye Huang The Felwinter uses four max98360a amplifiers on corresponding CH0~CH3. There are four amps on the board connecting to headphone to SSP0 port, amp to SSP1,and the DAI format would be DSP_A,8-slots, 32 bit slot-width. CH0: L(Woofer), CH1:R(Woofer), CH2:L(Tweeter), CH3:R(Tweeter) Signed-off-by: Ajye Huang Signed-off-by: Brent Lu Reviewed-by: Bard Liao Reviewed-by: Curtis Malainey Reviewed-by: Pierre-Louis Bossart --- sound/soc/sof/sof-pci-dev.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sound/soc/sof/sof-pci-dev.c b/sound/soc/sof/sof-pci-dev.c index 20c6ca37dbc4..61f2afd54c3e 100644 --- a/sound/soc/sof/sof-pci-dev.c +++ b/sound/soc/sof/sof-pci-dev.c @@ -67,6 +67,14 @@ static const struct dmi_system_id sof_tplg_table[] =3D { }, .driver_data =3D "sof-adl-max98390-ssp2-rt5682-ssp0.tplg", }, + { + .callback =3D sof_tplg_cb, + .matches =3D { + DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Brya"), + DMI_MATCH(DMI_OEM_STRING, "AUDIO_AMP-MAX98360_ALC5682VS_I2S_2WAY"), + }, + .driver_data =3D "sof-adl-max98360a-rt5682-2way.tplg", + }, =20 {} }; --=20 2.25.1