]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
ASoC: soc-utils: allow sample rate up to 768kHz for the dummy dai
authorJerome Brunet <jbrunet@baylibre.com>
Fri, 28 Jun 2024 12:01:29 +0000 (14:01 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 28 Jun 2024 12:39:29 +0000 (13:39 +0100)
The dummy DAI should allow any (reasonable) rates possible.
Make the rate continuous for dummy and set range from 5512Hz to 768kHz

The change is mostly cosmetic as dummy is skipped when setting
the hwparams.

Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Link: https://patch.msgid.link/20240628120130.2015665-1-jbrunet@baylibre.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-utils.c

index 11ba89c6b83c7dd1dff89539b5cc8814d9fe0f21..303823dc45d7ace3434064619055367445ef1064 100644 (file)
@@ -144,7 +144,6 @@ static const struct snd_soc_component_driver dummy_codec = {
        .endianness             = 1,
 };
 
-#define STUB_RATES     SNDRV_PCM_RATE_8000_384000
 #define STUB_FORMATS   (SNDRV_PCM_FMTBIT_S8 | \
                        SNDRV_PCM_FMTBIT_U8 | \
                        SNDRV_PCM_FMTBIT_S16_LE | \
@@ -198,14 +197,18 @@ static struct snd_soc_dai_driver dummy_dai = {
                .stream_name    = "Playback",
                .channels_min   = 1,
                .channels_max   = 384,
-               .rates          = STUB_RATES,
+               .rates          = SNDRV_PCM_RATE_CONTINUOUS,
+               .rate_min       = 5512,
+               .rate_max       = 768000,
                .formats        = STUB_FORMATS,
        },
        .capture = {
                .stream_name    = "Capture",
                .channels_min   = 1,
                .channels_max   = 384,
-               .rates = STUB_RATES,
+               .rates = SNDRV_PCM_RATE_CONTINUOUS,
+               .rate_min       = 5512,
+               .rate_max       = 768000,
                .formats = STUB_FORMATS,
         },
        .ops = &dummy_dai_ops,