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 AE9D6C001DF for ; Mon, 24 Jul 2023 01:16:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230076AbjGXBQN (ORCPT ); Sun, 23 Jul 2023 21:16:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45940 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229677AbjGXBP6 (ORCPT ); Sun, 23 Jul 2023 21:15:58 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E1B1E10C6; Sun, 23 Jul 2023 18:15:32 -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 7226660F14; Mon, 24 Jul 2023 01:14:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 412F0C433C7; Mon, 24 Jul 2023 01:14:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690161275; bh=2EVf0SOiecMK0PSwahSy/JegEGVP+OL+dPCdK6gmIr0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pKKV4T3ZsT4g2pzmZPDxTWm2ncdpvyW75PqLCFcWCyZEK2IXFVsHMWq0mNDlwiJ5G oO9sssFegwpVAdhIGsafiWtGDc1pFHK8Q/ABBxwpV7UtmP4d7kWODKxIE4OPDMbYMp KAiob2lTClBDca11VlaV/AxTgQ5VqdmmBSEaBehybU+cHaeUDRHx6S5CVFJ1hNP587 DVjRAs2zmUd3Q28WKrxVOAR0uF2iXUTQWkrMtIeHqh+EDEy9pVL4zT2gp6Z9tL55m2 1kqjRW1XtLz8hQxYd2qcAnlGdKN/SGu5s3iz+tn8GGOO5xmgI7hgBjTa7+TXoYosV7 C8zegk/nUptLQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Peter Ujfalusi , Sasha Levin , cezary.rojewski@intel.com, pierre-louis.bossart@linux.intel.com, liam.r.girdwood@linux.intel.com, yung-chuan.liao@linux.intel.com, ranjani.sridharan@linux.intel.com, kai.vehmanen@linux.intel.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, gongjun.song@intel.com, uday.m.bhat@intel.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 6.4 11/58] ASoC: Intel: sof_sdw: add quirk for LNL RVP Date: Sun, 23 Jul 2023 21:12:39 -0400 Message-Id: <20230724011338.2298062-11-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230724011338.2298062-1-sashal@kernel.org> References: <20230724011338.2298062-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.4.5 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Peter Ujfalusi [ Upstream commit dfe25fea968dc4884e12d471c8263f0f611b380a ] We should use RT711_JD2_100K for on board rt711 Signed-off-by: Peter Ujfalusi --- sound/soc/intel/boards/sof_sdw.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index db99f7fefdfc7..342d4f23a8dc6 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -423,6 +423,15 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { }, .driver_data = (void *)(RT711_JD2_100K), }, + /* LunarLake devices */ + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "Lunar Lake Client Platform"), + }, + .driver_data = (void *)(RT711_JD2_100K), + }, {} }; -- 2.39.2