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_uart: uart@55556666 {
20			compatible = "vnd,serial";
21			reg = <0x55556666 0x1000>;
22			status = "okay";
23
24			test_uart_itron: itron {
25				compatible = "noritake,itron";
26				status = "okay";
27				columns = <20>;
28				rows = <2>;
29			};
30		};
31	};
32};
33