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 E4D27C04A6A for ; Mon, 24 Jul 2023 01:28:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231520AbjGXB2f (ORCPT ); Sun, 23 Jul 2023 21:28:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59158 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231631AbjGXB17 (ORCPT ); Sun, 23 Jul 2023 21:27:59 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5092410EB; Sun, 23 Jul 2023 18:25:13 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 6CEBD60F19; Mon, 24 Jul 2023 01:24:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E4C31C433C8; Mon, 24 Jul 2023 01:24:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690161864; bh=xD6kS3i3cakEYlp+H0DnsPIgxxpklw9jnkMzhsFp3I0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=P+Y7+lNiK4myv8S0MTiblNoUnt9wUAE8q1tVIw0qutRJH9QGbu7KPD72I1UlWgPPY WUNH1S7lmbqonUY/AfQyG2FcxT0OT6hytfutnBXw5yhDzXHiFHDtDfZdSyqOAU7znG LA9XERNtW3YjzASitP/I/c+veGTwgM0JaC9SeH272MuUH2GJsxQHED4zXZhxW7t2ik 1Z2lkbBQ6SnHbPHkiJTZDUu4g4MHLQuUtnqvUawk4gNvai2Iatup5jUAdwDFj3QxPY algkved+rDrJpAnYvW7+dJ3E2Jhuc7JJLLOOSl8r/MxxPxAT71EKqDgNg7FLHULu1K KZ3kE3cdNwAuw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Bard Liao , Sasha Levin , lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 5.10 03/22] ASoC: Intel: sof_sdw: add quirk for MTL RVP Date: Sun, 23 Jul 2023 21:24:00 -0400 Message-Id: <20230724012419.2317649-3-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230724012419.2317649-1-sashal@kernel.org> References: <20230724012419.2317649-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 5.10.186 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Bard Liao [ Upstream commit 289e1df00e49a229a1c924c059242e759a552f01 ] We should use RT711_JD2_100K for on board rt711. Signed-off-by: Bard Liao --- sound/soc/intel/boards/sof_sdw.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index f5d8f7951cfc3..91a7cb33042d8 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -199,6 +199,14 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { SOF_RT715_DAI_ID_FIX | SOF_SDW_PCH_DMIC), }, + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "Meteor Lake Client Platform"), + }, + .driver_data = (void *)(RT711_JD2_100K), + }, {} }; -- 2.39.2