Skip to content

Commit

Permalink
Tools: Topology2: Swap gain and eqiir in DMIC capture
Browse files Browse the repository at this point in the history
This patch swaps the order of IIR and gain components in capture
pipeline. In IPC4 systems the gain component can only attenuate the
signal, largest gain is 0 dB (pass-through). The IIR component can be
set up to amplify the signal by e.g. +20 dB that is currently default
in many topologies. The gain can possibly distort the signal in loud
environment.

With current "dai-copier -> eqiir -> gain -> module-copier" topology
the user configurable gain (ALSA mixer control) can't prevent clipping
of audio signal in IIR. While with swapped order "dai-copier -> gain
-> eqiir -> module-copier" using attenuation in gain component can be
used to prevent audio signal clipping in IIR. It would be useful in
capturing audio in a very loud environment.

Since the pipeline is 32-bits there is no practical loss of audio
quality even if there would be first attenuation and then gain. Plus
normally the gain control for Dmic0 is set to maximum.

Signed-off-by: Seppo Ingalsuo <[email protected]>
  • Loading branch information
singalsu authored and lgirdwood committed Dec 4, 2024
1 parent d9bef48 commit 26782ab
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion tools/topology/topology2/cavs-nocodec.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<mixout-gain-dai-copier-playback.conf>
<mixout-gain-smart-amp-dai-copier-playback.conf>
<dai-copier-gain-module-copier-capture.conf>
<dai-copier-eqiir-gain-module-copier-capture.conf>
<dai-copier-gain-eqiir-module-copier-capture.conf>
<gain-module-copier.conf>
<gain-capture.conf>
<gain-copier-capture.conf>
Expand Down
2 changes: 1 addition & 1 deletion tools/topology/topology2/cavs-rt5682.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<mixout-gain-ctc-dai-copier-playback.conf>
<deepbuffer-playback.conf>
<dai-copier-be.conf>
<dai-copier-eqiir-gain-module-copier-capture.conf>
<dai-copier-gain-eqiir-module-copier-capture.conf>
<gain-capture.conf>
<gain-module-copier.conf>
<google-rtc-aec-capture.conf>
Expand Down
2 changes: 1 addition & 1 deletion tools/topology/topology2/cavs-sdw.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<host-copier-gain-mixin-playback.conf>
<mixout-gain-alh-dai-copier-playback.conf>
<mixout-gain-eqiir-eqfir-drc-alh-dai-copier-playback.conf>
<dai-copier-eqiir-gain-module-copier-capture.conf>
<dai-copier-gain-eqiir-module-copier-capture.conf>
<gain-capture.conf>
<gain-copier-capture.conf>
<deepbuffer-playback.conf>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#
# BE capture pipeline: dai-copier-eqiir-gain-module-copier-capture
# BE capture pipeline: dai-copier-gain-eqiir-module-copier-capture
#
# All attributes defined herein are namespaced
# by alsatplg to "Object.Pipeline.dai-copier-eqiir-gain-module-copier-capture.N.attribute_name"
# by alsatplg to "Object.Pipeline.dai-copier-gain-eqiir-module-copier-capture.N.attribute_name"
#
# Usage: dai-copier-eqiir-gain-module-copier-capture pipeline object can be instantiated as:
# Usage: dai-copier-gain-eqiir-module-copier-capture pipeline object can be instantiated as:
#
# Object.Pipeline.dai-copier-eqiir-gain-module-copier-capture."N" {
# Object.Pipeline.dai-copier-gain-eqiir-module-copier-capture."N" {
# period 1000
# time_domain "timer"
# }
Expand All @@ -21,7 +21,7 @@
<include/components/eqiir.conf>
<include/components/pipeline.conf>

Class.Pipeline."dai-copier-eqiir-gain-module-copier-capture" {
Class.Pipeline."dai-copier-gain-eqiir-module-copier-capture" {

<include/pipelines/pipeline-common.conf>

Expand All @@ -35,7 +35,7 @@ Class.Pipeline."dai-copier-eqiir-gain-module-copier-capture" {
]

#
# dai-copier-eqiir-gain-module-copier-capture objects instantiated
# dai-copier-gain-eqiir-module-copier-capture objects instantiated
# within the same alsaconf node must have unique pipeline_id
# attribute
#
Expand Down Expand Up @@ -185,12 +185,12 @@ Class.Pipeline."dai-copier-eqiir-gain-module-copier-capture" {

Object.Base {
route.1 {
source gain.$index.1
source eqiir.$index.1
sink module-copier.$index.2
}
route.2 {
source eqiir.$index.1
sink gain.$index.1
source gain.$index.1
sink eqiir.$index.1
}
}

Expand Down
7 changes: 3 additions & 4 deletions tools/topology/topology2/platform/intel/dmic-generic.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ Define {
DMIC0_PCM_NAME "DMIC Raw"
}


# If DMIC0_PCM_CHANNELS is zero, copy it from NUM_DMICS. This
# allows by setting both NUM_DMICS and DMIC0_PCM_CHANNELS to
# have a different channels count in DAI and host.
Expand Down Expand Up @@ -152,7 +151,7 @@ IncludeByKey.PASSTHROUGH {
}
]

Object.Pipeline.dai-copier-eqiir-gain-module-copier-capture [
Object.Pipeline.dai-copier-gain-eqiir-module-copier-capture [
{
index $DMIC0_DAI_PIPELINE_ID
core_id $DMIC_CORE_ID
Expand Down Expand Up @@ -552,7 +551,7 @@ IncludeByKey.PASSTHROUGH {
Object.Base.route [
{
source $DMIC0_DAI_COPIER
sink eqiir.$DMIC0_DAI_PIPELINE_ID.1
sink gain.$DMIC0_DAI_PIPELINE_ID.1
}
{
source $DMIC0_DAI_PIPELINE_SRC
Expand All @@ -572,7 +571,7 @@ IncludeByKey.PASSTHROUGH {
Object.Base.route [
{
source $DMIC0_DAI_COPIER
sink eqiir.$DMIC0_DAI_PIPELINE_ID.1
sink gain.$DMIC0_DAI_PIPELINE_ID.1
}
{
source $DMIC0_DAI_PIPELINE_SRC
Expand Down
4 changes: 2 additions & 2 deletions tools/topology/topology2/platform/intel/dmic1-mfcc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Object.Pipeline.host-gateway-capture [
}
]

Object.Pipeline.dai-copier-eqiir-gain-module-copier-capture [
Object.Pipeline.dai-copier-gain-eqiir-module-copier-capture [
{
index $DMIC1_DAI_PIPELINE_ID
core_id $DMIC_CORE_ID
Expand Down Expand Up @@ -382,7 +382,7 @@ Object.Widget.mfcc.1 {
Object.Base.route [
{
source "dai-copier.DMIC.$DMIC1_NAME.capture"
sink "eqiir.$DMIC1_DAI_PIPELINE_ID.1"
sink "gain.$DMIC1_DAI_PIPELINE_ID.1"
}
{
source module-copier.$DMIC1_DAI_PIPELINE_ID.2
Expand Down
2 changes: 1 addition & 1 deletion tools/topology/topology2/sof-hda-generic.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<mixout-gain-efx-mbdrc-dai-copier-playback.conf>
<mixout-gain-host-copier-capture.conf>
<dai-copier-eqiir-module-copier-capture.conf>
<dai-copier-eqiir-gain-module-copier-capture.conf>
<dai-copier-gain-eqiir-module-copier-capture.conf>
<gain-capture.conf>
<deepbuffer-playback.conf>
<io-gateway.conf>
Expand Down

0 comments on commit 26782ab

Please sign in to comment.