From: Takashi Iwai <tiwai@suse.de>
To: Yanteng Si <siyanteng@loongson.cn>
Cc: tiwai@suse.com, perex@perex.cz, chenhuacai@loongson.cn,
alsa-devel@alsa-project.org, loongarch@lists.linux.dev,
loongson-kernel@lists.loongnix.cn,
Yingkun Meng <mengyingkun@loongson.cn>
Subject: Re: [PATCH 2/4] ALSA: hda: Using polling mode for loongson controller by default
Date: Mon, 05 Jun 2023 09:35:49 +0200 [thread overview]
Message-ID: <87sfb6icoa.wl-tiwai@suse.de> (raw)
In-Reply-To: <ad85194e2da2118ff49f127ffd74727e298a3ea5.1685501806.git.siyanteng@loongson.cn>
On Wed, 31 May 2023 05:21:32 +0200,
Yanteng Si wrote:
>
> On loongson controller, RIRBSTS.RINTFL cannot be cleared,
> azx_interrupt() is called all the time. We disable RIRB
> interrupt, and use polling mode by default.
>
> Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
> Signed-off-by: Yingkun Meng <mengyingkun@loongson.cn>
> ---
> sound/hda/hdac_controller.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/sound/hda/hdac_controller.c b/sound/hda/hdac_controller.c
> index 3c7af6558249..dbaa19cb8162 100644
> --- a/sound/hda/hdac_controller.c
> +++ b/sound/hda/hdac_controller.c
> @@ -10,6 +10,7 @@
> #include <sound/hdaudio.h>
> #include <sound/hda_register.h>
> #include "local.h"
> +#include "../pci/hda/hda_controller.h"
>
> /* clear CORB read pointer properly */
> static void azx_clear_corbrp(struct hdac_bus *bus)
> @@ -42,6 +43,8 @@ static void azx_clear_corbrp(struct hdac_bus *bus)
> */
> void snd_hdac_bus_init_cmd_io(struct hdac_bus *bus)
> {
> + struct azx *chip = bus_to_azx(bus);
You can't convert in this way in the generic HD-audio bus code in
sound/hda/*. The struct azx is specific to sound/pci/hda/*.
> WARN_ON_ONCE(!bus->rb.area);
>
> spin_lock_irq(&bus->reg_lock);
> @@ -79,7 +82,10 @@ void snd_hdac_bus_init_cmd_io(struct hdac_bus *bus)
> /* set N=1, get RIRB response interrupt for new entry */
> snd_hdac_chip_writew(bus, RINTCNT, 1);
> /* enable rirb dma and response irq */
> - snd_hdac_chip_writeb(bus, RIRBCTL, AZX_RBCTL_DMA_EN | AZX_RBCTL_IRQ_EN);
> + if (chip->driver_caps & AZX_DCAPS_LOONGSON_WORKAROUND)
> + snd_hdac_chip_writeb(bus, RIRBCTL, AZX_RBCTL_DMA_EN);
> + else
> + snd_hdac_chip_writeb(bus, RIRBCTL, AZX_RBCTL_DMA_EN | AZX_RBCTL_IRQ_EN);
That is, for some device-specific workaround like this, you'd need to
introduce a new flag in struct hdac_bus, set up in the
sound/pci/hda/hda_intel.c instead.
thanks,
Takashi
next prev parent reply other threads:[~2023-06-05 7:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-31 3:21 [PATCH 0/4] Add Loongson HD Audio support Yanteng Si
2023-05-31 3:21 ` [PATCH 1/4] ALSA: hda: Add Loongson LS7A HD-Audio support Yanteng Si
2023-05-31 3:21 ` [PATCH 2/4] ALSA: hda: Using polling mode for loongson controller by default Yanteng Si
2023-06-05 7:35 ` Takashi Iwai [this message]
2023-06-06 12:10 ` Yanteng Si
2023-05-31 3:21 ` [PATCH 3/4] ALSA: hda: Workaround for SDnCTL register on loongson controller Yanteng Si
2023-06-05 7:36 ` Takashi Iwai
2023-06-06 12:14 ` Yanteng Si
2023-05-31 3:21 ` [PATCH 4/4] ALSA: hda/intel: Workaround for WALLCLK register for " Yanteng Si
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=87sfb6icoa.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=chenhuacai@loongson.cn \
--cc=loongarch@lists.linux.dev \
--cc=loongson-kernel@lists.loongnix.cn \
--cc=mengyingkun@loongson.cn \
--cc=perex@perex.cz \
--cc=siyanteng@loongson.cn \
--cc=tiwai@suse.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.