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 DE19C1171A for ; Mon, 21 Aug 2023 20:00:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5D6C1C433C9; Mon, 21 Aug 2023 20:00:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1692648012; bh=Dad4+LIG26cKX77cfRPUoZaDm0bb8EChKH0bfRdNDUg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=0KhuePFI9Zba9ycGKLo5TIFOihKA7eOMKIf5l+EJuS8CCewq3E8h31EJOfzHi/6Dp cJtfr+ztirTjDScShtk6S7jERHpeogV0Z62rulnSj+j4Ra7hrcmX4t4HDsSL+B15p3 NFS3xi+qe9sNMxWjz/+W/LuIua7Y24pUJofJ7o2g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ranjani Sridharan , Bard Liao , Yong Zhi , Uday M Bhat , Pierre-Louis Bossart , Mark Brown , Sasha Levin Subject: [PATCH 6.4 023/234] ASoC: Intel: sof_sdw: Add support for Rex soundwire Date: Mon, 21 Aug 2023 21:39:46 +0200 Message-ID: <20230821194129.790543503@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230821194128.754601642@linuxfoundation.org> References: <20230821194128.754601642@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Uday M Bhat [ Upstream commit 164e5dc17525181c05563f0a06796f1a363801d5 ] Add rex entry in the soundwire quirk table Reviewed-by: Ranjani Sridharan Signed-off-by: Bard Liao Signed-off-by: Yong Zhi Signed-off-by: Uday M Bhat Signed-off-by: Pierre-Louis Bossart Link: https://lore.kernel.org/r/20230602202225.249209-28-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- 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 b0b6a084837a7..a6d13aae8f720 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -433,6 +433,14 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { }, .driver_data = (void *)(RT711_JD2_100K), }, + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Google"), + DMI_MATCH(DMI_PRODUCT_NAME, "Rex"), + }, + .driver_data = (void *)(SOF_SDW_PCH_DMIC), + }, /* LunarLake devices */ { .callback = sof_sdw_quirk_cb, -- 2.40.1