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

ASoC: Add DT bindings documentation for max9759 amplifier

This patch adds DT bindings documentation for Maxim MAX9759
speaker amplifier.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Neil Armstrong and committed by
Mark Brown
01182d65 7928b2cb

+18
+18
Documentation/devicetree/bindings/sound/maxim,max9759.txt
··· 1 + Maxim MAX9759 Speaker Amplifier 2 + =============================== 3 + 4 + Required properties: 5 + - compatible : "maxim,max9759" 6 + - shutdown-gpios : the gpio connected to the shutdown pin 7 + - mute-gpios : the gpio connected to the mute pin 8 + - gain-gpios : the 2 gpios connected to the g1 and g2 pins 9 + 10 + Example: 11 + 12 + max9759: analog-amplifier { 13 + compatible = "maxim,max9759"; 14 + shutdown-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>; 15 + mute-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>; 16 + gain-gpios = <&gpio3 23 GPIO_ACTIVE_LOW>, 17 + <&gpio3 25 GPIO_ACTIVE_LOW>; 18 + };