From: Han Gao <gaohan@iscas.ac.cn>
To: Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Kai Vehmanen <kai.vehmanen@linux.intel.com>,
Peter Ujfalusi <peter.ujfalusi@linux.intel.com>,
Ranjani Sridharan <ranjani.sridharan@linux.intel.com>,
Bard Liao <yung-chuan.liao@linux.intel.com>,
Maxim Mikityanskiy <maxtram95@gmail.com>,
Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>,
Stuart Hayhurst <stuart.a.hayhurst@gmail.com>,
linux-sound@vger.kernel.org
Cc: Han Gao <rabenda.cn@gmail.com>,
linux-riscv@lists.infradead.org, sophgo@lists.linux.dev,
linux-kernel@vger.kernel.org, Han Gao <gaohan@iscas.ac.cn>
Subject: [PATCH] ALSA: hda: intel: Introduce msi64 parameter to override 64-bit MSI restriction
Date: Sun, 21 Dec 2025 01:05:01 +0800 [thread overview]
Message-ID: <20251220170501.3972438-1-gaohan@iscas.ac.cn> (raw)
Sophgo SG2042 MSI driver does not support 32-bit MSI.
Introduce an 'msi64' kernel parameter to bypass NO_MSI64 for ATI/HDMI.
Signed-off-by: Han Gao <gaohan@iscas.ac.cn>
---
sound/hda/controllers/intel.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sound/hda/controllers/intel.c b/sound/hda/controllers/intel.c
index 1e8e3d61291a..b4bad9e65235 100644
--- a/sound/hda/controllers/intel.c
+++ b/sound/hda/controllers/intel.c
@@ -121,6 +121,7 @@ static bool beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] =
#endif
static bool dmic_detect = 1;
static bool ctl_dev_id = IS_ENABLED(CONFIG_SND_HDA_CTL_DEV_ID) ? 1 : 0;
+static bool msi64;
module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
@@ -161,6 +162,8 @@ MODULE_PARM_DESC(dmic_detect, "Allow DSP driver selection (bypass this driver) "
"deprecated, use snd-intel-dspcfg.dsp_driver option instead");
module_param(ctl_dev_id, bool, 0444);
MODULE_PARM_DESC(ctl_dev_id, "Use control device identifier (based on codec address).");
+module_param(msi64, bool, 0444);
+MODULE_PARM_DESC(msi64, "Force use msi 64bit.");
#ifdef CONFIG_PM
static int param_set_xint(const char *val, const struct kernel_param *kp);
@@ -1903,7 +1906,7 @@ static int azx_first_init(struct azx *chip)
chip->gts_present = true;
#endif
- if (chip->msi && chip->driver_caps & AZX_DCAPS_NO_MSI64) {
+ if (chip->msi && chip->driver_caps & AZX_DCAPS_NO_MSI64 && !msi64) {
dev_dbg(card->dev, "Disabling 64bit MSI\n");
pci->no_64bit_msi = true;
}
--
2.47.3
next reply other threads:[~2025-12-20 17:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-20 17:05 Han Gao [this message]
2025-12-22 16:18 ` [PATCH] ALSA: hda: intel: Introduce msi64 parameter to override 64-bit MSI restriction Arnd Bergmann
2025-12-23 9:40 ` Han Gao
2025-12-23 10:44 ` Arnd Bergmann
2025-12-23 9:40 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251220170501.3972438-1-gaohan@iscas.ac.cn \
--to=gaohan@iscas.ac.cn \
--cc=kai.vehmanen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-sound@vger.kernel.org \
--cc=maxtram95@gmail.com \
--cc=perex@perex.cz \
--cc=peter.ujfalusi@linux.intel.com \
--cc=pierre-louis.bossart@linux.dev \
--cc=rabenda.cn@gmail.com \
--cc=ranjani.sridharan@linux.intel.com \
--cc=sophgo@lists.linux.dev \
--cc=stuart.a.hayhurst@gmail.com \
--cc=tiwai@suse.com \
--cc=yung-chuan.liao@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox