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 24EB7EEB56B for ; Fri, 8 Sep 2023 19:35:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237398AbjIHTfg (ORCPT ); Fri, 8 Sep 2023 15:35:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44286 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243915AbjIHTfU (ORCPT ); Fri, 8 Sep 2023 15:35:20 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6E8571705; Fri, 8 Sep 2023 12:35:00 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F952C116A4; Fri, 8 Sep 2023 19:34:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694201693; bh=S/+e8vSnvjEreRsIYzcU3feEfLazb7Crtt7AWvhNrJo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GZjDgIthh91xD0zX1Qj46OATBnKH/7zQOqfJ+dxPuRrKC0swa6VS/sTrQxffLqwv4 lwC03gI+tAq5hmUZowNoUeNEHFDDSRbkcPPbHuBWTz3iQtbfE9Xmvfka6ozfnr4n+G 3/7j/pUhaEwX9H0VHXrdSiZUFwNbzeuRiqeYx1rB2TErmNyVoo42MTk8nF3A9qK7PN VvajsYiHgNBVnpSeg5ofYw/N2rjqee9zKcgd2FhSkxKypLh3QzKz0RKqbERcFHd6no Z2PhiO6q67P6Dk/Hh9n4nT3zcFR28j2KiQXvdpx+gvw1xbTqAqiUm9qQxbqhyMWlYg GQBmM3jwNdCZA== 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.1 12/22] ASoC: Intel: sof_sdw: Update BT offload config for soundwire config Date: Fri, 8 Sep 2023 15:33:56 -0400 Message-Id: <20230908193407.3463368-12-sashal@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230908193407.3463368-1-sashal@kernel.org> References: <20230908193407.3463368-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.1.52 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 064b6feb76167..414ac90273810 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -388,7 +388,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