Skip to content
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

Merged
merged 11 commits into from
Apr 4, 2025
Merged

Add STM32MP13 support #87687

merged 11 commits into from
Apr 4, 2025

Conversation

juickar
Copy link
Contributor

@juickar juickar commented Mar 26, 2025

This PR adds the support for the STM32MP13 series.
It adds support of the STM32MP135F DK board

This PR includes the support of :

  • Cortex-A7
  • GPIO, UART, GIC and EXTI for the STM32MP135F DK board.

Copy link

Hello @juickar, and thank you very much for your first pull request to the Zephyr project!
Our Continuous Integration pipeline will execute a series of checks on your Pull Request commit messages and code, and you are expected to address any failures by updating the PR. Please take a look at our commit message guidelines to find out how to format your commit messages, and at our contribution workflow to understand how to update your Pull Request. If you haven't already, please make sure to review the project's Contributor Expectations and update (by amending and force-pushing the commits) your pull request if necessary.
If you are stuck or need help please join us on Discord and ask your question there. Additionally, you can escalate the review when applicable. 😊

Copy link

github-actions bot commented Mar 26, 2025

The following west manifest projects have changed revision in this Pull Request:

Name Old Revision New Revision Diff
hal_stm32 zephyrproject-rtos/hal_stm32@4ec1fd2 zephyrproject-rtos/hal_stm32@def7e1a (main) zephyrproject-rtos/hal_stm32@4ec1fd2e..def7e1a0

All manifest checks OK

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@github-actions github-actions bot added manifest manifest-hal_stm32 DNM (manifest) This PR should not be merged (controlled by action-manifest) labels Mar 26, 2025
@arnopo arnopo linked an issue Mar 26, 2025 that may be closed by this pull request
Comment on lines 21 to 23
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.
Copy link
Collaborator

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

arnopo
arnopo previously approved these changes Apr 3, 2025
Copy link
Collaborator

@kartben kartben left a 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!

Copy link
Collaborator

@etienne-lms etienne-lms left a 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.

kartben
kartben previously approved these changes Apr 3, 2025
Copy link
Collaborator

@kartben kartben left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 for docs

juickar and others added 3 commits April 3, 2025 11:43
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>
Copy link
Collaborator

@etienne-lms etienne-lms left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM AFAICT

Copy link
Collaborator

@mathieuchopstm mathieuchopstm left a 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):

Comment on lines +144 to +147
case FSR_FS_TLB_CONFLICT_FAULT:
reason = K_ERR_ARM_TLB_CONFLICT_FAULT;
LOG_ERR("Table Conflict Fault @ 0x%08x", addr);
break;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nits:

  1. ARMv7-A/R Arch RefMan (DDI0406C) calls this a TLB conflict abort
  2. TLB = Translation Lookaside Buffer rather than TBL = Table 🙂
Suggested change
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;

@erwango
Copy link
Member

erwango commented Apr 3, 2025

@nordicjm PTAL

@kartben kartben merged commit ee6bb6e into zephyrproject-rtos:main Apr 4, 2025
30 checks passed
Copy link

github-actions bot commented Apr 4, 2025

Hi @juickar!
Congratulations on getting your very first Zephyr pull request merged 🎉🥳. This is a fantastic achievement, and we're thrilled to have you as part of our community!

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! 🪁

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

soc: st: stm32mp13xx series support
10 participants