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 83D1BEEB569 for ; Fri, 8 Sep 2023 19:33:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245219AbjIHTdy (ORCPT ); Fri, 8 Sep 2023 15:33:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236800AbjIHTdf (ORCPT ); Fri, 8 Sep 2023 15:33:35 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3F2401997; Fri, 8 Sep 2023 12:33:10 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F9BDC433C8; Fri, 8 Sep 2023 19:33:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694201590; bh=XIL/PjmmGSq1aPs5EM39cocbSJ+EaotijhxQRCOL5J4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LG0R9Zr3byEqE0nSz2LASdbQxtGa193l0jOZdDdjXReK00Yw9MbYmbL8Mw4qWhtsy Nvy8cX8pe8Yu2O0Fpnbgtn2Ic9c+aZMhn9PgI4UFZax3iR0cjUyb1Ekax5XoNV2dnS sXfZyH7TtupaApye7TL6B5gtJt/oZvK1NhRNUaFmuALLXIWcFjr2epyNCkechc4M3k DsOPXZQMdLus5tyfIUtdq5JBZncimi8bLc8ETe+fJHz0bJcJoUfQM5nQNP945rtDQH 2qHDNtI4Zp59zBavqMeWsIl3hnAl+Usr349mSYCkJJtVGG4/n3997gh4dX43nugyaW 09UeOFrEz1m2A== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Uday M Bhat , Kai Vehmanen , Ranjani Sridharan , Bard Liao , Jairaj Arava , Pierre-Louis Bossart , Mark Brown , Sasha Levin , cezary.rojewski@intel.com, liam.r.girdwood@linux.intel.com, peter.ujfalusi@linux.intel.com, perex@perex.cz, tiwai@suse.com, ckeepax@opensource.cirrus.com, gongjun.song@intel.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 6.4 16/31] ASoC: Intel: sof_sdw: Update BT offload config for soundwire config Date: Fri, 8 Sep 2023 15:31:45 -0400 Message-Id: <20230908193201.3462957-16-sashal@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230908193201.3462957-1-sashal@kernel.org> References: <20230908193201.3462957-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.4.15 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Uday M Bhat [ Upstream commit a14aded9299187bb17ef90700eb2cf1120ef5885 ] For soundwire config, SSP1 is used for BT offload. This is enabled in sof_sdw_quirk_table Reviewed-by: Kai Vehmanen Reviewed-by: Ranjani Sridharan Reviewed-by: Bard Liao Signed-off-by: Uday M Bhat Signed-off-by: Jairaj Arava Signed-off-by: Pierre-Louis Bossart Link: https://lore.kernel.org/r/20230731214257.444605-5-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/intel/boards/sof_sdw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index a6d13aae8f720..cc82cbcc1611a 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -439,7 +439,9 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { DMI_MATCH(DMI_SYS_VENDOR, "Google"), DMI_MATCH(DMI_PRODUCT_NAME, "Rex"), }, - .driver_data = (void *)(SOF_SDW_PCH_DMIC), + .driver_data = (void *)(SOF_SDW_PCH_DMIC | + SOF_BT_OFFLOAD_SSP(1) | + SOF_SSP_BT_OFFLOAD_PRESENT), }, /* LunarLake devices */ { -- 2.40.1