Add a shield for DVP FPC 24-pins mt9m114 camera modules. These camera modules are supported on i.MX RT10xx series, for example. Signed-off-by: Phi Bang Nguyen <phibang.nguyen@nxp.com>
34 lines
443 B
Text
34 lines
443 B
Text
/*
|
|
* Copyright 2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/{
|
|
chosen {
|
|
zephyr,camera = &dvp_fpc24_interface;
|
|
};
|
|
};
|
|
|
|
&dvp_fpc24_i2c {
|
|
mt9m114: mt9m114@48 {
|
|
compatible = "aptina,mt9m114";
|
|
reg = <0x48>;
|
|
|
|
port {
|
|
mt9m114_ep_out: endpoint {
|
|
remote-endpoint = <&dfi_ep_in>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&dvp_fpc24_interface {
|
|
status = "okay";
|
|
|
|
port {
|
|
dfi_ep_in: endpoint {
|
|
remote-endpoint = <&mt9m114_ep_out>;
|
|
};
|
|
};
|
|
};
|