1/*
2 * Copyright (c) 2023 Efinix Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	test {
9		#address-cells = <1>;
10		#size-cells = <1>;
11
12		test_gpio: gpio@deadbeef {
13			compatible = "efinix,sapphire-gpio";
14			gpio-controller;
15			reg = <0xdeadbeef 0x1000>;
16			#gpio-cells = <0x2>;
17			ngpios = <4>;
18			status = "okay";
19		};
20	};
21};
22