drivers/soc/fsl/qe/qmc.c | 44 +++++++++--- sound/soc/fsl/fsl_qmc_audio.c | 125 +++++++++++++++------------------- 2 files changed, 87 insertions(+), 82 deletions(-)
This series reduces significantly the amount of interrupts on fsl_qmc_audio device. Patches 1 and 2 are preparatory patches. Patch 3 is the main change Patch 4 is a cleanup which is enabled by previous patch Changes in v3: - Properly check the buffer descriptor is unused (Patch 1, comment from Herve Codina) - Fixed copy/paste error (patch 2, comment from Herve Codina) - Fixed build failure (patch 2, comment from Herve Codina and Test robot) Changes in v2: - Don't remove UB bit (Patch 1, comment from Herve Codina) - Make sure audio channels are ordered on TDM bus (Patch 2, new patch, comment from Herve Codina) - Drop struct qmc_dai_chan (patch 4, new patch) Backgroup (copied from patch 3): In non-interleaved mode, several QMC channels are used in sync. More details can be found in commit 188d9cae5438 ("ASoC: fsl: fsl_qmc_audio: Add support for non-interleaved mode.") At the time being, an interrupt is requested on each channel to perform capture/playback completion, allthough the completion is really performed only once all channels have completed their work. This leads to a lot more interrupts than really needed. Looking at /proc/interrupts shows ~3800 interrupts per second when using 4 capture and 4 playback devices with 5ms periods while only 1600 (200 x 4 + 200 x 4) periods are processed during one second. The QMC channels work in sync, the one started first is the one finishing first and the one started last is the one finishing last, so when the last one finishes it is guaranteed that the other ones are finished as well. Therefore only request completion processing on the last QMC channel. On my board with the above exemple, on a kernel started with 'threadirqs' option, the QMC irq thread uses 16% CPU time with this patch while it uses 26% CPU time without this patch. Christophe Leroy (4): soc: fsl: qmc: Only set completion interrupt when needed ASoc: fsl: fsl_qmc_audio: Ensure audio channels are ordered in TDM bus ASoC: fsl: fsl_qmc_audio: Only request completion on last channel ASoc: fsl: fsl_qmc_audio: Drop struct qmc_dai_chan drivers/soc/fsl/qe/qmc.c | 44 +++++++++--- sound/soc/fsl/fsl_qmc_audio.c | 125 +++++++++++++++------------------- 2 files changed, 87 insertions(+), 82 deletions(-) -- 2.49.0
Hi Mark, Liam, Le 18/08/2025 à 10:19, Christophe Leroy a écrit : > This series reduces significantly the amount of interrupts on > fsl_qmc_audio device. I can't see this series in linux-next. I see in patchwork [1] that this series still has status 'NEW' but also state 'archived'. What is the way forward to get it applied for v6.18 ? Thanks Christophe [1] https://patchwork.kernel.org/project/alsa-devel/patch/f0c5260651822e8003daf11c7a76921796517152.1755504428.git.christophe.leroy@csgroup.eu/ > > Patches 1 and 2 are preparatory patches. > Patch 3 is the main change > Patch 4 is a cleanup which is enabled by previous patch > > Changes in v3: > - Properly check the buffer descriptor is unused (Patch 1, comment from Herve Codina) > - Fixed copy/paste error (patch 2, comment from Herve Codina) > - Fixed build failure (patch 2, comment from Herve Codina and Test robot) > > Changes in v2: > - Don't remove UB bit (Patch 1, comment from Herve Codina) > - Make sure audio channels are ordered on TDM bus (Patch 2, new patch, comment from Herve Codina) > - Drop struct qmc_dai_chan (patch 4, new patch) > > Backgroup (copied from patch 3): > > In non-interleaved mode, several QMC channels are used in sync. > More details can be found in commit 188d9cae5438 ("ASoC: fsl: > fsl_qmc_audio: Add support for non-interleaved mode.") > At the time being, an interrupt is requested on each channel to > perform capture/playback completion, allthough the completion is > really performed only once all channels have completed their work. > > This leads to a lot more interrupts than really needed. Looking at > /proc/interrupts shows ~3800 interrupts per second when using > 4 capture and 4 playback devices with 5ms periods while > only 1600 (200 x 4 + 200 x 4) periods are processed during one second. > > The QMC channels work in sync, the one started first is the one > finishing first and the one started last is the one finishing last, > so when the last one finishes it is guaranteed that the other ones are > finished as well. Therefore only request completion processing on the > last QMC channel. > > On my board with the above exemple, on a kernel started with > 'threadirqs' option, the QMC irq thread uses 16% CPU time with this > patch while it uses 26% CPU time without this patch. > > Christophe Leroy (4): > soc: fsl: qmc: Only set completion interrupt when needed > ASoc: fsl: fsl_qmc_audio: Ensure audio channels are ordered in TDM bus > ASoC: fsl: fsl_qmc_audio: Only request completion on last channel > ASoc: fsl: fsl_qmc_audio: Drop struct qmc_dai_chan > > drivers/soc/fsl/qe/qmc.c | 44 +++++++++--- > sound/soc/fsl/fsl_qmc_audio.c | 125 +++++++++++++++------------------- > 2 files changed, 87 insertions(+), 82 deletions(-) >
On Thu, Sep 18, 2025 at 08:12:21AM +0200, Christophe Leroy wrote: > Hi Mark, Liam, > > Le 18/08/2025 à 10:19, Christophe Leroy a écrit : > > This series reduces significantly the amount of interrupts on > > fsl_qmc_audio device. > > I can't see this series in linux-next. > > I see in patchwork [1] that this series still has status 'NEW' but also > state 'archived'. > > What is the way forward to get it applied for v6.18 ? Please don't send content free pings and please allow a reasonable time for review. People get busy, go on holiday, attend conferences and so on so unless there is some reason for urgency (like critical bug fixes) please allow at least a couple of weeks for review. If there have been review comments then people may be waiting for those to be addressed. Sending content free pings adds to the mail volume (if they are seen at all) which is often the problem and since they can't be reviewed directly if something has gone wrong you'll have to resend the patches anyway, so sending again is generally a better approach though there are some other maintainers who like them - if in doubt look at how patches for the subsystem are normally handled.
© 2016 - 2025 Red Hat, Inc.