1/* 2 * Copyright (c) 2024 tinyVision.ai Inc. 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@10002000 { 12 #address-cells = <1>; 13 #size-cells = <0>; 14 compatible = "vnd,i2c"; 15 reg = <0x10002000 0x1000>; 16 clock-frequency = <100000>; 17 status = "okay"; 18 19 test_video_emul_imager: video_emul_imager@6 { 20 compatible = "zephyr,video-emul-imager"; 21 status = "okay"; 22 reg = <0x6>; 23 24 port { 25 test_video_emul_imager_ep_out: endpoint { 26 remote-endpoint-label = "test_video_emul_rx_ep_in"; 27 }; 28 }; 29 }; 30 }; 31 32 test_video_emul_rx: video_emul_rx@10003000 { 33 compatible = "zephyr,video-emul-rx"; 34 reg = <0x10003000 0x1000>; 35 status = "okay"; 36 37 port { 38 #address-cells = <1>; 39 #size-cells = <0>; 40 41 test_video_emul_rx_ep_in: endpoint@0 { 42 reg = <0x0>; 43 remote-endpoint-label = "test_video_emul_imager_ep_out"; 44 }; 45 46 test_video_emul_rx_ep_out: endpoint@1 { 47 reg = <0x1>; 48 remote-endpoint-label = "application"; 49 }; 50 }; 51 }; 52 }; 53}; 54