From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 28FFD1AF0C7; Mon, 23 Dec 2024 16:11:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734970272; cv=none; b=B5WnDV7aNGrXvrtITAIeZcxeYiEKhw38RIlEReF9DXifbErp62BvlnrUSjM/rvh2tomzvvvcVaBgW/8p5ZyBW5XTJazRNpp15b43J0FTVDjufwrjYDuFLJJzUHBqHeJ8X5sRk7+MR0W2RT70yzbarH7Vt01gDdGSsW/+3tCA80M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734970272; c=relaxed/simple; bh=IwPzo1NGWnsmQ085ksgoBLa4rBUfQxytZgfm/Eeksd8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Y4F+Qbgzd9dGzfzzFiYKg3IZ5FOQYUwxbyAnzwBSYmix8e4TYi2LfMuNEwDX6URhIcfCyyP2yN+xw5+7CBGbnvCtqVIYZe4KE0SpNCnjUbNKBGTQQ5h6kaesKX0M+lkgOTSdu6Z8qbANRGQEt47HuLMjyj+4ktpKJGwYG/QDKac= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Yz4vERqu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Yz4vERqu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 979E8C4CED3; Mon, 23 Dec 2024 16:11:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734970272; bh=IwPzo1NGWnsmQ085ksgoBLa4rBUfQxytZgfm/Eeksd8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Yz4vERquGQ8ruL69hm6GBMWR+boueAjGpiSql/vnyk+z1HG2ha6FnPSXEe7sNqNi9 SDIfJdXhTOjGk6uit9Gx7C3Dut8FPtuNt8DXAmDXtrkdpNDTKpQWIGnv4HloFs+ViV ehAH1iv/lOOHERYdtw/9CGx9i6itrCGijO4n+9JI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pierre-Louis Bossart , =?UTF-8?q?P=C3=A9ter=20Ujfalusi?= , Bard Liao , Mark Brown , Sasha Levin Subject: [PATCH 6.6 008/116] ASoC: Intel: sof_sdw: add quirk for Dell SKU 0B8C Date: Mon, 23 Dec 2024 16:57:58 +0100 Message-ID: <20241223155359.864768678@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241223155359.534468176@linuxfoundation.org> References: <20241223155359.534468176@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pierre-Louis Bossart [ Upstream commit 92d5b5930e7d55ca07b483490d6298eee828bbe4 ] Jack detection needs to rely on JD2, as most other Dell AlderLake-based devices. Closes: https://github.com/thesofproject/linux/issues/5021 Signed-off-by: Pierre-Louis Bossart Reviewed-by: Péter Ujfalusi Reviewed-by: Bard Liao Link: https://patch.msgid.link/20240624121119.91552-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- 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 dc144cd7e0e3..db1dcb9d7046 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -425,6 +425,15 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { /* No Jack */ .driver_data = (void *)SOF_SDW_TGL_HDMI, }, + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), + DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B8C"), + }, + .driver_data = (void *)(SOF_SDW_TGL_HDMI | + RT711_JD2), + }, { .callback = sof_sdw_quirk_cb, .matches = { -- 2.39.5