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 current-speed = <115200>; 25 test_reyax_rylrxxxx: reyax_rylrxxxx { 26 compatible = "reyax,rylrxxx"; 27 status = "okay"; 28 reset-gpios = <&test_gpio 0 0>; 29 }; 30 }; 31 }; 32}; 33