-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Correct typo in STM32N6 XSPI2 clock selection #93026
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
Correct typo in STM32N6 XSPI2 clock selection #93026
Conversation
The xspi2 clock source is wrong due to typo doing XSPI1_SEL instead of XSPI2_SEL. Signed-off-by: Mickael Guene <[email protected]> Signed-off-by: Alain Volmat <[email protected]>
The xspi2 clock source is wrong due to typo doing XSPI1_SEL instead of XSPI2_SEL. Signed-off-by: Mickael Guene <[email protected]> Signed-off-by: Alain Volmat <[email protected]>
|
|
Have you been able to test this using mcuboot + application using xspi2 (such as display) ? |
erwango
left a comment
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.
This would require to also change the following in impacted nodes
- ospi-max-frequency = <DT_FREQ_M(200)>;
+ ospi-max-frequency = <DT_FREQ_M(100)>;as for now we have a bug to support 200MHz
|
Superseded by #95153 |



Correct a typo leading to not not configuring correctly the STM32N6 xspi2 input clock.