Skip to content

Commit 3d83017

Browse files
author
Hardevsinh-Palaniya
committed
drivers: video: Add ov5642 camera driver
Add driver to support ov5642 camera sensor Co-developed-by: Rutvij Trivedi <[email protected]> Signed-off-by: Rutvij Trivedi <[email protected]> Signed-off-by: Hardevsinh-Palaniya <[email protected]>
1 parent d1493b6 commit 3d83017

File tree

6 files changed

+951
-0
lines changed

6 files changed

+951
-0
lines changed

drivers/video/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)
2626
zephyr_library_sources_ifdef(CONFIG_VIDEO_ST_MIPID02 video_st_mipid02.c)
2727
zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_DCMIPP video_stm32_dcmipp.c)
2828
zephyr_library_sources_ifdef(CONFIG_VIDEO_RENESAS_RA_CEU video_renesas_ra_ceu.c)
29+
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5642 ov5642.c)
2930

3031
zephyr_linker_sources(DATA_SECTIONS video.ld)

drivers/video/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,6 @@ source "drivers/video/Kconfig.stm32_dcmipp"
9898

9999
source "drivers/video/Kconfig.renesas_ra_ceu"
100100

101+
source "drivers/video/Kconfig.ov5642"
102+
101103
endif # VIDEO

drivers/video/Kconfig.ov5642

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright (c) 2025 Silicon Signals Pvt. Ltd.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config VIDEO_OV5642
5+
bool "OV5642 CMOS digital image sensor"
6+
select I2C
7+
depends on DT_HAS_OVTI_OV5642_ENABLED
8+
default y
9+
help
10+
Enable driver for OV5642 CMOS digital image sensor device

0 commit comments

Comments
 (0)