xref: /freebsd/sys/contrib/device-tree/Bindings/sound/maxim,max9759.yaml (revision fac71e4e09885bb2afa3d984a0c239a52e1a7418)
1*fac71e4eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*fac71e4eSEmmanuel Vadot%YAML 1.2
3*fac71e4eSEmmanuel Vadot---
4*fac71e4eSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/maxim,max9759.yaml#
5*fac71e4eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*fac71e4eSEmmanuel Vadot
7*fac71e4eSEmmanuel Vadottitle: Maxim MAX9759 Speaker Amplifier
8*fac71e4eSEmmanuel Vadot
9*fac71e4eSEmmanuel Vadotmaintainers:
10*fac71e4eSEmmanuel Vadot  - Otabek Nazrullaev <otabeknazrullaev1998@gmail.com>
11*fac71e4eSEmmanuel Vadot
12*fac71e4eSEmmanuel Vadotproperties:
13*fac71e4eSEmmanuel Vadot  compatible:
14*fac71e4eSEmmanuel Vadot    const: maxim,max9759
15*fac71e4eSEmmanuel Vadot
16*fac71e4eSEmmanuel Vadot  shutdown-gpios:
17*fac71e4eSEmmanuel Vadot    maxItems: 1
18*fac71e4eSEmmanuel Vadot    description: the gpio connected to the shutdown pin
19*fac71e4eSEmmanuel Vadot
20*fac71e4eSEmmanuel Vadot  mute-gpios:
21*fac71e4eSEmmanuel Vadot    maxItems: 1
22*fac71e4eSEmmanuel Vadot    description: the gpio connected to the mute pin
23*fac71e4eSEmmanuel Vadot
24*fac71e4eSEmmanuel Vadot  gain-gpios:
25*fac71e4eSEmmanuel Vadot    maxItems: 2
26*fac71e4eSEmmanuel Vadot    description: the 2 gpios connected to the g1 and g2 pins
27*fac71e4eSEmmanuel Vadot
28*fac71e4eSEmmanuel Vadotrequired:
29*fac71e4eSEmmanuel Vadot  - compatible
30*fac71e4eSEmmanuel Vadot  - shutdown-gpios
31*fac71e4eSEmmanuel Vadot  - mute-gpios
32*fac71e4eSEmmanuel Vadot  - gain-gpios
33*fac71e4eSEmmanuel Vadot
34*fac71e4eSEmmanuel VadotadditionalProperties: false
35*fac71e4eSEmmanuel Vadot
36*fac71e4eSEmmanuel Vadotexamples:
37*fac71e4eSEmmanuel Vadot  - |
38*fac71e4eSEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
39*fac71e4eSEmmanuel Vadot    amplifier {
40*fac71e4eSEmmanuel Vadot      compatible = "maxim,max9759";
41*fac71e4eSEmmanuel Vadot      shutdown-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>;
42*fac71e4eSEmmanuel Vadot      mute-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>;
43*fac71e4eSEmmanuel Vadot      gain-gpios = <&gpio3 23 GPIO_ACTIVE_LOW>,
44*fac71e4eSEmmanuel Vadot             <&gpio3 25 GPIO_ACTIVE_LOW>;
45*fac71e4eSEmmanuel Vadot    };
46