-
Notifications
You must be signed in to change notification settings - Fork 7.2k
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
Add STM32MP13 support #87687
Add STM32MP13 support #87687
Conversation
Hello @juickar, and thank you very much for your first pull request to the Zephyr project! |
The following west manifest projects have changed revision in this Pull Request:
✅ All manifest checks OK Note: This message is automatically posted and updated by the Manifest GitHub Action. |
The STM32MP135F_DK Discovery board leverages the capacities of the STM32MP135 | ||
multi-core processor,composed of a dual Cortex®-A7 and a single Cortex®-M4 core. | ||
Zephyr OS is ported to run on the Cortex®-M4 core. |
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.
the stm32mp135 has a Arm Cortex‑A7 and no Cortex-M4
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.
Done
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.
a few comments left, looking good otherwise, 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.
Few nitpicking comments.
Otherwise looks all good to me.
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.
+1 for docs
Add STM32MP13 clock driver. Supported clocks are HSE, HSI, PLL1 and peripheral clock. Signed-off-by: Julien Racki <julien.racki@st.com> Co-authored-by: Arif Balik <arifbalik@outlook.com>
Put the flash in DDR 0xC0000000 Put the SRAM in DDR 0xD0000000 Signed-off-by: Julien Racki <julien.racki@st.com>
Add support for STM32MP135F DK board. Signed-off-by: Julien Racki <julien.racki@st.com>
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.
LGTM AFAICT
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.
LGTM with just a tiny cosmetic detail at arch level (i.e., don't bother making the change, can be fixed later):
case FSR_FS_TLB_CONFLICT_FAULT: | ||
reason = K_ERR_ARM_TLB_CONFLICT_FAULT; | ||
LOG_ERR("Table Conflict Fault @ 0x%08x", addr); | ||
break; |
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.
Nits:
- ARMv7-A/R Arch RefMan (DDI0406C) calls this a TLB conflict abort
- TLB =
Translation Lookaside Buffer
rather than TBL =Table
🙂
case FSR_FS_TLB_CONFLICT_FAULT: | |
reason = K_ERR_ARM_TLB_CONFLICT_FAULT; | |
LOG_ERR("Table Conflict Fault @ 0x%08x", addr); | |
break; | |
case FSR_FS_TLB_CONFLICT_ABORT: | |
reason = K_ERR_ARM_TLB_CONFLICT_ABORT; | |
LOG_ERR("TLB Conflict Abort @ 0x%08x", addr); | |
break; |
@nordicjm PTAL |
Hi @juickar! To celebrate this milestone and showcase your contribution, we'd love to award you the Zephyr Technical Contributor badge. If you're interested, please claim your badge by filling out this form: Claim Your Zephyr Badge. Thank you for your valuable input, and we look forward to seeing more of your contributions in the future! 🪁 |
This PR adds the support for the STM32MP13 series.
It adds support of the STM32MP135F DK board
This PR includes the support of :