/* * Copyright (c) 2024 TOKITA Hiroshi * SPDX-License-Identifier: Apache-2.0 */ / { test { #address-cells = <1>; #size-cells = <1>; test_gpio: gpio@deadbeef { compatible = "vnd,gpio"; gpio-controller; reg = <0xdeadbeef 0x1000>; #gpio-cells = <0x2>; status = "okay"; }; test_i2c: i2c@11112222 { #address-cells = <1>; #size-cells = <0>; compatible = "vnd,i2c"; reg = <0x11112222 0x1000>; status = "okay"; clock-frequency = <100000>; test_i2c_tas6422dac: tas6422dac@0 { compatible = "ti,tas6422dac"; status = "okay"; reg = <0x0>; }; test_i2c_tlv320dac: tlv320dac@1 { compatible = "ti,tlv320dac"; status = "okay"; reg = <0x1>; reset-gpios = <&test_gpio 0 0>; }; }; }; };