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_i2c: i2c@11112222 { 12 #address-cells = <1>; 13 #size-cells = <0>; 14 compatible = "vnd,i2c"; 15 reg = <0x11112222 0x1000>; 16 status = "okay"; 17 clock-frequency = <100000>; 18 19 test_i2c_max31790: max31790@0 { 20 compatible = "maxim,max31790"; 21 status = "okay"; 22 reg = <0x0>; 23 24 max31790_max31790_pwm: max31790_max31790_pwm { 25 compatible = "maxim,max31790-pwm"; 26 status = "okay"; 27 pwm-controller; 28 #pwm-cells = <2>; 29 }; 30 }; 31 32 test_i2c_pca9685: pca9685@1 { 33 status = "okay"; 34 compatible = "nxp,pca9685-pwm"; 35 reg = <0x1>; 36 #pwm-cells = <2>; 37 }; 38 }; 39 }; 40}; 41