On Wed, 8 Jul 2015 09:06:04 +0530 Vinod Koul vinod.koul@intel.com wrote:
On Tue, Jul 07, 2015 at 05:06:18PM -0400, Tyler Yeomans wrote:
[...]
Additionally, the interrupts report as follows... none: $ cat /proc/interrupts | grep sst 7: 0 0 0 0 IO-APIC 28-fasteoi intel_sst_driver
So this makes me suspect interrupts, we should have seen something here
Tyler, maybe it's trivial but I will spell it out anyway: before any interrupt gets fired, something needs to be played (e.g. speaker-test).
Liam, do you know how whats different in BYT devices from interrupts. I recall Jarkko saying some issues with the way interrupts are exposed..?
The details are here: https://bugzilla.kernel.org/show_bug.cgi?id=86581
A summary is below:
Some devices declare interrupts in their DSDT in an order different from what the mainline linux driver expects, in particular the DSP-host interrupt is sometimes declared first while the driver expects it at index 5.
To check that, dump the DSDT table (look up the details), and look for "Device (LPEA)", then check the order of the "Interrupt" definitions.
Some devices define 0x0000001D as the first one, and this does not work with the the mainline driver which expects the interrupts sorted numerically (i.e. 0x0000001D is the sixth one starting from 0x00000018 and after 0x0000001C).
The problem can be fixed in two ways: - Override your DSDT with one which reorders the interrupts (that's what I did). - Apply https://bugzilla.kernel.org/attachment.cgi?id=155341 to the driver to use the "right" index as per the original device DSDT. NOTE: the file paths changed in recent kernels so you may need to apply the change manually.
A final note, you also need to set the right codec controls to get audio; setting the FE-BE path is necessary to make playback "work" but it may not be enough to actually get sound, so make sure you run the full script Vinod provided in http://mailman.alsa-project.org/pipermail/alsa-devel/2015-June/094080.html
Ciao, Antonio