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			npm6001_ek_pmic: pmic@0 {
28				compatible = "nordic,npm6001";
29				reg = <0x0>;
30
31				npm6001_ek_wdt: watchdog {
32					compatible = "nordic,npm6001-wdt";
33				};
34			};
35
36			npm2100_pmic: pmic@1 {
37				compatible = "nordic,npm2100";
38				reg = <0x1>;
39
40				npm2100_wdt: watchdog {
41					compatible = "nordic,npm2100-wdt";
42				};
43			};
44		};
45	};
46};
47