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_ds3231: ds3231@0 { 28 compatible = "maxim,ds3231"; 29 status = "okay"; 30 reg = <0x0>; 31 }; 32 33 test_mcp7940n: mcp7940n@1 { 34 compatible = "microchip,mcp7940n"; 35 status = "okay"; 36 reg = <0x1>; 37 }; 38 }; 39 }; 40}; 41