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 8F6E8EEB575 for ; Fri, 8 Sep 2023 19:38:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345143AbjIHTiV (ORCPT ); Fri, 8 Sep 2023 15:38:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53218 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345283AbjIHThy (ORCPT ); Fri, 8 Sep 2023 15:37:54 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1E37926AC; Fri, 8 Sep 2023 12:37:34 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0253C116AB; Fri, 8 Sep 2023 19:35:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694201755; bh=AZIuI4b9F8aEV2JFH7EffFJ4GrR0yX7gFQ+zem2v2EU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TKx5fY99omKCTg1qu4/IQomo2lENw4k/Hg+//PjWOjjc3s0TUqZrmj0/+DZeEGNtx kzqFRySmmOSZOOpcfwYeJAki2vM1UM+MlPPDaCXYjEBxOO6Qb4oYuYtni9GGtTVM1h 6SxkQ+GEc5FSb4RDMoKJZoXLH9vAZs2Lmy6sbChxJLBhEZrAMuWUvnyM8IIQcnKQ1Z 99/lcIuGrA+05SugkzhBNGq690892oHL9dY0gDs18TzrMZs8fUgWaRdcFaHTzaaJ11 n9IPQ3+bsHHJaKUIOv1qNgBdSnbI1nd8UjCDhKxmNdOdrr6BVgWiynrqy/YS29pMR2 Q1LpPln2lkBzg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Pierre-Louis Bossart , Ranjani Sridharan , Bard Liao , Takashi Iwai , Sasha Levin , perex@perex.cz, tiwai@suse.com, broonie@kernel.org, amadeuszx.slawinski@linux.intel.com, muralidhar.reddy@intel.com, bradynorander@gmail.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 5.15 08/13] ALSA: hda: intel-dsp-cfg: add LunarLake support Date: Fri, 8 Sep 2023 15:35:24 -0400 Message-Id: <20230908193530.3463647-8-sashal@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230908193530.3463647-1-sashal@kernel.org> References: <20230908193530.3463647-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 5.15.131 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Pierre-Louis Bossart [ Upstream commit d2852b8c045ebd31d753b06f2810df5be30ed56a ] One more PCI ID for the road. Signed-off-by: Pierre-Louis Bossart Reviewed-by: Ranjani Sridharan Reviewed-by: Bard Liao Link: https://lore.kernel.org/r/20230802150105.24604-5-pierre-louis.bossart@linux.intel.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/hda/intel-dsp-config.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c index 811d2ebc7d6ec..ebb7c2110fa84 100644 --- a/sound/hda/intel-dsp-config.c +++ b/sound/hda/intel-dsp-config.c @@ -385,6 +385,14 @@ static const struct config_entry config_table[] = { }, #endif +/* Lunar Lake */ +#if IS_ENABLED(CONFIG_SND_SOC_SOF_LUNARLAKE) + /* Lunarlake-P */ + { + .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, + .device = PCI_DEVICE_ID_INTEL_HDA_LNL_P, + }, +#endif }; static const struct config_entry *snd_intel_dsp_find_config -- 2.40.1