1/*
2 * Copyright 2024 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/{
8	chosen {
9		zephyr,camera = &dvp_fpc24_interface;
10	};
11};
12
13&dvp_fpc24_i2c {
14	mt9m114: mt9m114@48 {
15		compatible = "aptina,mt9m114";
16		reg = <0x48>;
17
18		port {
19			mt9m114_ep_out: endpoint {
20				remote-endpoint-label = "dfi_ep_in";
21			};
22		};
23	};
24};
25
26&dvp_fpc24_interface {
27	status = "okay";
28
29	port {
30		dfi_ep_in: endpoint {
31			remote-endpoint-label = "mt9m114_ep_out";
32		};
33	};
34};
35