-
Notifications
You must be signed in to change notification settings - Fork 7.6k
video: introduction of STM32 DCMIPP driver #89407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
kartben
merged 8 commits into
zephyrproject-rtos:main
from
avolmat-st:video_dcmipp_driver
Jun 6, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ba0b193
dts-bindings: video: addition of stm32 dcmipp description
3ed8c23
drivers: video: introduction of the stm32 DCMIPP driver
7f2803b
drivers: video: dcmipp: add functions for external ISP functions usage
94cfcbf
dts: arm: st: n6: add dcmipp node
437d853
boards: st: stm32n6570_dk: Add IC17/IC18 settings for DCMIPP/CSI
b7c02d4
boards: st: stm32n6570_dk: csi_22pins connector related labels
9b4e507
dts: arm: st: mp13: add dcmipp node in stm32mp135.dtsi
1b54d25
shields: st_b_cams_imx_mb1854: add stm32n6 specifc confs
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
boards/shields/st_b_cams_imx_mb1854/boards/stm32n6570_dk.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_PIXEL_FORMAT="pRAA" | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_WIDTH=2592 | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_HEIGHT=1944 |
3 changes: 3 additions & 0 deletions
3
boards/shields/st_b_cams_imx_mb1854/boards/stm32n6570_dk_stm32n657xx_sb.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_PIXEL_FORMAT="pRAA" | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_WIDTH=2592 | ||
CONFIG_VIDEO_STM32_DCMIPP_SENSOR_HEIGHT=1944 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# STM32 DCMIPP driver configuration options | ||
|
||
# Copyright (c) 2025 STMicroelectronics. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config VIDEO_STM32_DCMIPP | ||
bool "STM32 Digital Camera Memory Interface Pixel Processor (DCMIPP) driver" | ||
default y | ||
depends on DT_HAS_ST_STM32_DCMIPP_ENABLED | ||
select USE_STM32_HAL_DCMIPP | ||
select USE_STM32_HAL_RIF if SOC_SERIES_STM32N6X | ||
help | ||
Enable driver for STM32 Digital Camera Memory Interface Pixel Processor | ||
(DCMIPP) peripheral | ||
|
||
if VIDEO_STM32_DCMIPP | ||
|
||
config VIDEO_STM32_DCMIPP_SENSOR_WIDTH | ||
int "Width of the sensor frame" | ||
default 2592 | ||
help | ||
Width of the sensor video frame. | ||
|
||
config VIDEO_STM32_DCMIPP_SENSOR_HEIGHT | ||
int "Height of the sensor frame" | ||
default 1944 | ||
help | ||
Height of the sensor video frame. | ||
josuah marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
config VIDEO_STM32_DCMIPP_SENSOR_PIXEL_FORMAT | ||
string "Pixel format of the sensor frame" | ||
default "RG12" | ||
help | ||
Pixel format of the sensor video frame. | ||
|
||
endif |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.