-
Notifications
You must be signed in to change notification settings - Fork 7.4k
add GPIO support on i.MX 943 A-Core #89878
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
Draft
JiafeiPan
wants to merge
13
commits into
zephyrproject-rtos:main
Choose a base branch
from
nxp-upstream:develop/imx943-gpio
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
add GPIO support on i.MX 943 A-Core #89878
JiafeiPan
wants to merge
13
commits into
zephyrproject-rtos:main
from
nxp-upstream:develop/imx943-gpio
+1,469
−7
Conversation
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
Tmp patch to depend on: zephyrproject-rtos/hal_nxp#532 Signed-off-by: Jiafei Pan <[email protected]>
This patch add i.MX 943 soc support. The i.MX 943 applications processors integrate up to four Arm Cortex-A55 cores and supports functional safety with built-in 2x Arm Cortex -M33 and -M7 cores which can be configured as a safety island. Optimizing performance and power efficiency for Industrial, IoT and automotive devices, i.MX 943 processors are built with NXP’s innovative Energy Flex architecture. Signed-off-by: Jiafei Pan <[email protected]>
Added i.MX 943 Cortex-A Core dts file and clock binding header file. Signed-off-by: Jiafei Pan <[email protected]>
The IMX943 EVK board is a design and evaluation platform based on the NXP i.MX 943 processor. Signed-off-by: Jiafei Pan <[email protected]>
Speficy CMSIS patch for Cortex-A Core support in mcux-sdk-ng. Signed-off-by: Jiafei Pan <[email protected]>
i.MX943 uses MU1 hal driver. Signed-off-by: Jiafei Pan <[email protected]>
If SCMI clock is used in Zephyr, it will not use hal clock API, so disalbe hal clock driver and also disable driver clock control in all the other hal drivers. Signed-off-by: Jiafei Pan <[email protected]>
Disable power, memory and reset driver which are not used by i.MX 943 A55. Signed-off-by: Jiafei Pan <[email protected]>
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Added all GPIO device nodes in i.MX 943 Cortex-A Core SoC dts. Signed-off-by: Jiafei Pan <[email protected]>
Add board overlay for i.MX943 EVK Cortex-A Core. Signed-off-by: Jiafei Pan <[email protected]>
If the platform uses SCMI pinctrl driver, use default pad config value for GPIO pad configuration. Signed-off-by: Jiafei Pan <[email protected]>
The hardware don't support GPIO_DISCONNECTED. Signed-off-by: Jiafei Pan <[email protected]>
…orted If GPIO_DISCONNECTED is not supported by GPIO driver, then try to configure the pin to be input, otherwise there will be some unstable signal between two test pins. Signed-off-by: Jiafei Pan <[email protected]>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: ARM64
ARM (64-bit) Architecture
area: Clock Control
area: GPIO
DNM (manifest)
This PR should not be merged (controlled by action-manifest)
manifest
manifest-hal_nxp
platform: NXP Drivers
NXP Semiconductors, drivers
platform: NXP MPU
platform: NXP
NXP
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.
This is a following up PR for #89778, in order to make the review easier, I move GPIO support in this PR, so please only review the last five patches in this PR, the other patches are in #89778.