]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
ASoC: cs35l56: Limit Speaker Volume to +12dB maximum
authorRichard Fitzgerald <rf@opensource.cirrus.com>
Wed, 3 Jul 2024 09:55:17 +0000 (10:55 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 3 Jul 2024 12:05:43 +0000 (13:05 +0100)
Change CS35L56_MAIN_RENDER_USER_VOLUME_MAX to 48, to limit the maximum
value of the Speaker Volume control to +12dB. The minimum value is
unchanged so that the default 0dB has the same integer control value.

The original maximum of 400 (+100dB) was the largest value that can be
mathematically handled by the DSP. The actual maximum amplification is
+12dB.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://patch.msgid.link/20240703095517.208077-3-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/cs35l56.h

index 642ef690ebc25fc38e4e57e91b176910eaa57cf0..a6aa112e57416ce04b4e9ada51b39b52a2e8de68 100644 (file)
 
 /* CS35L56_MAIN_RENDER_USER_VOLUME */
 #define CS35L56_MAIN_RENDER_USER_VOLUME_MIN            -400
-#define CS35L56_MAIN_RENDER_USER_VOLUME_MAX            400
+#define CS35L56_MAIN_RENDER_USER_VOLUME_MAX            48
 #define CS35L56_MAIN_RENDER_USER_VOLUME_MASK           0x0000FFC0
 #define CS35L56_MAIN_RENDER_USER_VOLUME_SHIFT          6
 #define CS35L56_MAIN_RENDER_USER_VOLUME_SIGNBIT                9