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

dt-bindings: sound: Add bindings for UDA1334 codec

The UDA1334 is an NXP audio codec, supports the I2S-bus data format
and has basic features such as de-emphasis (at 44.1 kHz sampling
rate) and mute. Product information can be found at:
https://www.nxp.com/pages/low-power-audio-dac-with-pll:UDA1334

Cc: Daniel Baluta <daniel.baluta@nxp.com>
Signed-off-by: Andra Danciu <andradanciu1997@gmail.com>
Link: https://lore.kernel.org/r/20190731111930.20230-2-andradanciu1997@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Andra Danciu and committed by
Mark Brown
d6de65fd 10392fca

+17
+17
Documentation/devicetree/bindings/sound/uda1334.txt
··· 1 + UDA1334 audio CODEC 2 + 3 + This device uses simple GPIO pins for controlling codec settings. 4 + 5 + Required properties: 6 + 7 + - compatible : "nxp,uda1334" 8 + - nxp,mute-gpios: a GPIO spec for the MUTE pin. 9 + - nxp,deemph-gpios: a GPIO spec for the De-emphasis pin 10 + 11 + Example: 12 + 13 + uda1334: audio-codec { 14 + compatible = "nxp,uda1334"; 15 + nxp,mute-gpios = <&gpio1 8 GPIO_ACTIVE_LOW>; 16 + nxp,deemph-gpios = <&gpio3 3 GPIO_ACTIVE_LOW>; 17 + };