1/*
2 * Copyright (c) 2024 TOKITA Hiroshi
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	test {
8		#address-cells = <1>;
9		#size-cells = <1>;
10
11		test_gpio: gpio@deadbeef {
12			compatible = "vnd,gpio";
13			gpio-controller;
14			reg = <0xdeadbeef 0x1000>;
15			#gpio-cells = <0x2>;
16			status = "okay";
17		};
18
19		test_i2c: i2c@11112222 {
20			#address-cells = <1>;
21			#size-cells = <0>;
22			compatible = "vnd,i2c";
23			reg = <0x11112222 0x1000>;
24			status = "okay";
25			clock-frequency = <100000>;
26
27			test_i2c_tas6422dac: tas6422dac@0 {
28				compatible = "ti,tas6422dac";
29				status = "okay";
30				reg = <0x0>;
31			};
32
33			test_i2c_tlv320dac: tlv320dac@1 {
34				compatible = "ti,tlv320dac";
35				status = "okay";
36				reg = <0x1>;
37				reset-gpios = <&test_gpio 0 0>;
38			};
39		};
40	};
41};
42