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_serlcd: serlcd@0 {
28				compatible = "sparkfun,serlcd";
29				reg = <0x0>;
30				status = "okay";
31				columns = <16>;
32				rows = <2>;
33				command-delay-ms = <10>;
34				special-command-delay-ms = <50>;
35			};
36
37			test_jhd1313: jhd1313@0 {
38				compatible = "jhd,jhd1313";
39				reg = <0x1>;
40				status = "okay";
41				columns = <16>;
42				rows = <2>;
43			};
44		};
45	};
46};
47