aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound/hdaudio.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2016-02-23 09:54:47 -0500
committerTakashi Iwai <tiwai@suse.de>2016-02-26 02:50:31 -0500
commit473f414564528a819f0c2bb6b4bf26366b64c9ab (patch)
treee8ea3e59cf2988fd2b3f95d4a926c1d0bd007de7 /include/sound/hdaudio.h
parentf883982dc1b117f04579f0896821cd9f2e397f94 (diff)
ALSA: hda - Loop interrupt handling until really cleared
Currently the interrupt handler of HD-audio driver assumes that no irq update is needed while processing the irq. But in reality, it has been confirmed that the HW irq is issued even during the irq handling. Since we clear the irq status at the beginning, process the interrupt, then exits from the handler, the lately issued interrupt is left untouched without being properly processed. This patch changes the interrupt handler code to loop over the check-and-process. The handler tries repeatedly as long as the IRQ status are turned on, and either stream or CORB/RIRB is handled. For checking the stream handling, snd_hdac_bus_handle_stream_irq() returns a value indicating the stream indices bits. Other than that, the change is only in the irq handler itself. Reported-by: Libin Yang <libin.yang@linux.intel.com> Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/hdaudio.h')
-rw-r--r--include/sound/hdaudio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h
index e2b712c90d3f..c21c38ce7450 100644
--- a/include/sound/hdaudio.h
+++ b/include/sound/hdaudio.h
@@ -343,7 +343,7 @@ void snd_hdac_bus_enter_link_reset(struct hdac_bus *bus);
343void snd_hdac_bus_exit_link_reset(struct hdac_bus *bus); 343void snd_hdac_bus_exit_link_reset(struct hdac_bus *bus);
344 344
345void snd_hdac_bus_update_rirb(struct hdac_bus *bus); 345void snd_hdac_bus_update_rirb(struct hdac_bus *bus);
346void snd_hdac_bus_handle_stream_irq(struct hdac_bus *bus, unsigned int status, 346int snd_hdac_bus_handle_stream_irq(struct hdac_bus *bus, unsigned int status,
347 void (*ack)(struct hdac_bus *, 347 void (*ack)(struct hdac_bus *,
348 struct hdac_stream *)); 348 struct hdac_stream *));
349 349