aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/overlays/merus-amp-overlay.dts
blob: 4501fbdc253da8cb45f3bfc764c0ce9f20b9f7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// SPDX-License-Identifier: GPL-2.0-only
// Definitions for Infineon Merus-Amp
/dts-v1/;
/plugin/;
#include <dt-bindings/pinctrl/bcm2835.h>
#include <dt-bindings/gpio/gpio.h>


/ {
	compatible = "brcm,bcm2835";

	fragment@0 {
		target = <&i2s>;
		__overlay__ {
			status = "okay";
		};
	};

	fragment@1 {
		target = <&gpio>;
		__overlay__ {
			merus_amp_pins: merus_amp_pins {
				brcm,pins = <23>;
				brcm,function = <0>; /* in */
				brcm,pull = <2>; /* up */
			};
		};
	};

	fragment@2 {
		target = <&i2c1>;
		__overlay__ {
			#address-cells = <1>;
			#size-cells = <0>;
			status = "okay";

			merus_amp: ma120x0p@20 {
				#sound-dai-cells = <0>;
				compatible = "ma,ma120x0p";
				reg = <0x20>;
				status = "okay";
				pinctrl-names = "default";
				pinctrl-0 = <&merus_amp_pins>;
				enable_gp-gpios = <&gpio 14 GPIO_ACTIVE_HIGH>;
				mute_gp-gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
				booster_gp-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>;
				error_gp-gpios = <&gpio 23 GPIO_ACTIVE_HIGH>;
			};
		};
	};

	fragment@3 {
		target = <&sound>;
		__overlay__ {
			compatible = "merus,merus-amp";
			i2s-controller = <&i2s>;
			status = "okay";
		};
	};
};