-
Notifications
You must be signed in to change notification settings - Fork 8k
stm32h747 camera support + stm32h7s related DT fixes #96178
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 11 commits into
zephyrproject-rtos:main
from
avolmat-st:pr-stm32h747-camera-support
Oct 2, 2025
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
01270ac
dts: st: l4: fix dcmi dma stream id
bdaedf5
dma: stm32: dma_stm32_slot_to_channel is only applicable on STM32Fx
7a1c77c
dma: stm32: removal of unused stm32_dma_config_channel_function
a9b620c
include: zephyr: dt-bindings: clock: l4: add MCO SEL/PRE macros
3af5b99
include: zephyr: dt-bindings: clock: h7: add MCO SEL/PRE macros
16a7108
boards: st: stm32h747i_disco: add camera support
84d3c6b
boards: st: stm32h7b3i_dk: add dcmi pinctrl and remove duplicated i2c4
43db680
shields: st_b_cams_omv_mb1683: remove i2c/dcmi/dmamux nodes from overlay
8e24403
shields: st_stm32f4dis_cam: add stm32l4r9i_disco specific overlay
e5d2b69
shields: weact_ov2640_cam_module: use MCO macro from stm32 bindings
4b28ba8
shields: st_stm32f4dis_cam: add a stm32h747i_disco//m7 overlay
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non blocking: Then, what about applying the same to
dma_stm32_slot_to_channel()
declaration in header:zephyr/drivers/dma/dma_stm32.h
Lines 53 to 55 in 5fd0412
[Out of scope of this PR]
This also raises the question on another user of this function:
stm32_dma_config_channel_function
, also defined under#if !defined(CONFIG_DMAMUX_STM32)
, but this one is never called, so maybe it could be purely removed ?@FRASTM can you have a look ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in next commit! Thanks :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah I split the fix commit and the removal of dead code commit.