-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
stm32f412 and stm32f413 have a 48MHz clock for SDMMC or USB #82259
Draft
FRASTM
wants to merge
5
commits into
zephyrproject-rtos:main
Choose a base branch
from
FRASTM:stm32f412_48MHZ
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
eb58631
drivers: clock control: stm32F412 has PLL48MHz
FRASTM 3449a60
dts: bindings: pll i2s for the stm32f412 has a Q divider
FRASTM 99b1991
dts: arm: stm32f412 device has a clock 48MHz multiplexer
FRASTM 6cf669c
drivers: clock control: stm32 function to get 48MHz freq
FRASTM 9c145f9
tests: drivers: clock: stm32 common device for sdmmc
FRASTM 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 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 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 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 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 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 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 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
34 changes: 34 additions & 0 deletions
34
...lock_control/stm32_clock_configuration/stm32_common_devices/boards/f4_sdmmc48_pll.overlay
This file contains 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,34 @@ | ||
/* | ||
* Copyright (c) 2024 STMicroelectronics | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/* Node is disabled by default unless the PLL_I2S is enabled */ | ||
&clk48 { | ||
/* select one source for the clk48MHz domain clock */ | ||
/* clocks = <&rcc STM32_SRC_PLL_Q CK48M_SEL(0)>;*/ | ||
clocks = <&rcc STM32_SRC_PLLI2S_Q CK48M_SEL(1)>; | ||
status = "okay"; | ||
}; | ||
|
||
&plli2s { | ||
div-m = <4>; | ||
mul-n = <96>; | ||
div-q = <4>; | ||
div-r = <2>; | ||
clocks = <&clk_hse>; | ||
status = "okay"; | ||
}; | ||
|
||
&sdmmc1 { | ||
clocks = <&rcc STM32_CLOCK(APB2, 11U)>, | ||
/* select one source for the sdmmc domain clock */ | ||
/* <&rcc STM32_SRC_SYSCLK SDIO_SEL(1)>; */ | ||
<&rcc STM32_SRC_CK48 SDIO_SEL(0)>; | ||
pinctrl-0 = <&sdio_cmd_pa6 &sdio_ck_pc12 | ||
&sdio_d0_pc8 &sdio_d1_pc9 | ||
&sdio_d2_pc10 &sdio_d3_pc11>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
}; |
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.
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.
There is currently no configuration of main PLL Q channel. You should also add the LL_RCC_PLL_ConfigDomain_48M function in the config_pll_sysclock function.