Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: dt-bindings: wlf,wm8782: Add wlf,fsampen property

The WM8782 can safely support rates higher than 48kHz by changing the
value of the FSAMPEN pin.

Allow specifying the FSAMPEN pin value in the device tree.

Signed-off-by: John Watts <contact@jookia.org>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20230918131532.2257615-4-contact@jookia.org
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

John Watts and committed by
Mark Brown
5d5529b0 5d34887e

+7
+7
Documentation/devicetree/bindings/sound/wm8782.txt
··· 8 8 - Vdda-supply : phandle to a regulator for the analog power supply (2.7V - 5.5V) 9 9 - Vdd-supply : phandle to a regulator for the digital power supply (2.7V - 3.6V) 10 10 11 + Optional properties: 12 + 13 + - wlf,fsampen: 14 + FSAMPEN pin value, 0 for low, 1 for high, 2 for disconnected. 15 + Defaults to 0 if left unspecified. 16 + 11 17 Example: 12 18 13 19 wm8782: stereo-adc { 14 20 compatible = "wlf,wm8782"; 15 21 Vdda-supply = <&vdda_supply>; 16 22 Vdd-supply = <&vdd_supply>; 23 + wlf,fsampen = <2>; /* 192KHz */ 17 24 };