Skip to content

Commit c784481

Browse files
Hardevsinh-Palaniyanashif
authored andcommitted
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 1cacdf8 commit c784481

File tree

6 files changed

+1002
-0
lines changed

6 files changed

+1002
-0
lines changed

drivers/video/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_SDMA video_mcux_smartdma.c)
2020
zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c)
2121
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c)
2222
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c)
23+
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5642 ov5642.c)
2324
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7670 ov7670.c)
2425
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c)
2526
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV9655 ov9655.c)

drivers/video/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,6 @@ source "drivers/video/Kconfig.stm32_venc"
9191
source "drivers/video/Kconfig.sw_generator"
9292
# zephyr-keep-sorted-stop
9393

94+
source "drivers/video/Kconfig.ov5642"
95+
9496
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)