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 2DB641487E9; Tue, 25 Jun 2024 09:50:24 +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=1719309025; cv=none; b=nrccXbYjOobcN6U5jadnDRz9ESoN1HhEvMb4P2T7nq2/9AVjJVnKHA5El+yzqTEfiLMRo5N8LZRB/I8g59IklwP7tS9kxvcU6xfxsmQmMbuJ6vJ88aSI3beRNJVT7RWXFrsN1iqqRnbzW15xnszjzVu2MAu5NY8DGhnybtEZSLM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719309025; c=relaxed/simple; bh=3jK/OBsuezkbvHRPHU92nWt34geKak8z5luceWrLMZc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CYj/mxBpOaD9BtSOXii+SyZogoEnxstmkyN7gfmM3uHR7xif7wUrXgd84Ev4B+GayoGNfGSdSQ0gLrxad0RuR7RTCDNhg6SsdiSDNL9AYDuG/jMLtUgWT/l6h482+oINT2EN0AZcjZ8s7nnta+etQgaTXDUC1UJXhqj7ijBaFzI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=l/yCI2gL; 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="l/yCI2gL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5CC1EC32781; Tue, 25 Jun 2024 09:50:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1719309024; bh=3jK/OBsuezkbvHRPHU92nWt34geKak8z5luceWrLMZc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=l/yCI2gLU8zoOdQ/X0WuaJ/9FY6sXgfv6ZToDyy2jVWEWrAbPbLCgaqtiESUVHRSk 7JYMCd4Tt2NeZQD+/77f0FE41o13udsAu9SdEqY0DOGFpkj1U+Jr+CrJ2CVX4JLCSq RMU7tXVyZuKrevwBIbXa3fNiMKaq5CgNhLMSJU/U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Ujfalusi , Cezary Rojewski , Takashi Iwai , Sasha Levin Subject: [PATCH 6.6 069/192] ALSA/hda: intel-dsp-config: Document AVS as dsp_driver option Date: Tue, 25 Jun 2024 11:32:21 +0200 Message-ID: <20240625085539.822560429@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240625085537.150087723@linuxfoundation.org> References: <20240625085537.150087723@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Ujfalusi [ Upstream commit 2646b43910c0e6d7f4ad535919b44b88f98c688d ] dsp_driver=4 will force the AVS driver stack to be used, it is better to docuement this. Fixes: 1affc44ea5dd ("ASoC: Intel: avs: PCI driver implementation") Signed-off-by: Peter Ujfalusi Reviewed-by: Cezary Rojewski Link: https://lore.kernel.org/r/20240607060021.11503-1-peter.ujfalusi@linux.intel.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/hda/intel-dsp-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c index d1f6cdcf1866e..e7c2ef6c6b4cb 100644 --- a/sound/hda/intel-dsp-config.c +++ b/sound/hda/intel-dsp-config.c @@ -16,7 +16,7 @@ static int dsp_driver; module_param(dsp_driver, int, 0444); -MODULE_PARM_DESC(dsp_driver, "Force the DSP driver for Intel DSP (0=auto, 1=legacy, 2=SST, 3=SOF)"); +MODULE_PARM_DESC(dsp_driver, "Force the DSP driver for Intel DSP (0=auto, 1=legacy, 2=SST, 3=SOF, 4=AVS)"); #define FLAG_SST BIT(0) #define FLAG_SOF BIT(1) -- 2.43.0