Skip to content

Commit 95979fe

Browse files
author
Alain Volmat
committed
drivers: video: introduction of imx335 sensor driver
Add support for the Sony IMX335 CSI sensor. This sensor supports resolution of 2592x1944 in RGGB bayer format either 10 or 12 bits and using 2 or 4 CSI lanes. For the time being only 10 bits on 2 CSI lanes is supported via this commit. Signed-off-by: Alain Volmat <[email protected]>
1 parent 112fb12 commit 95979fe

File tree

4 files changed

+527
-0
lines changed

4 files changed

+527
-0
lines changed

drivers/video/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_ESP32 video_esp32_dvp.c)
1818
zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_SDMA video_mcux_smartdma.c)
1919
zephyr_library_sources_ifdef(CONFIG_VIDEO_EMUL_IMAGER video_emul_imager.c)
2020
zephyr_library_sources_ifdef(CONFIG_VIDEO_EMUL_RX video_emul_rx.c)
21+
zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)

drivers/video/Kconfig

+2
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,6 @@ source "drivers/video/Kconfig.emul_imager"
7878

7979
source "drivers/video/Kconfig.emul_rx"
8080

81+
source "drivers/video/Kconfig.imx335"
82+
8183
endif # VIDEO

drivers/video/Kconfig.imx335

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# IMX335
2+
3+
# Copyright (c) 2025 STMicroelectronics.
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
config VIDEO_IMX335
7+
bool "IMX335 CMOS digital image sensor"
8+
select I2C
9+
depends on DT_HAS_SONY_IMX335_ENABLED
10+
default y
11+
help
12+
Enable driver for IMX335 CMOS digital image sensor device

0 commit comments

Comments
 (0)