-
Notifications
You must be signed in to change notification settings - Fork 8.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
add GPIO support on i.MX 943 A-Core #89878
Conversation
|
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. |
Added all GPIO device nodes in i.MX 943 Cortex-A Core SoC dts. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
e93f1aa to
552b9d4
Compare
552b9d4 to
881ce19
Compare
|
May I know the reason to use default pad config value? Better to add in commit message. drivers: gpio: rgpio: use default pad config value for SCMI platform Thanks. |
881ce19 to
3d3d42c
Compare
If the platform uses SCMI pinctrl driver, pinctrl regitster can't accessed by Updated commit message. |
3d3d42c to
3e4f7f3
Compare
If the platform uses SCMI pinctrl driver, pinctrl regitster can't accessed by CPU Core directly, and currently SCMI pinctrl driver has no API to read back the register value, so use default pad config value for GPIO pad configuration, and in theory we could use a fixed pad config value in this driver as each new GPIO configuration has no relation with previous configuration. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
The hardware don't support GPIO_DISCONNECTED. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
…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 <Jiafei.Pan@nxp.com>
Add board overlay for i.MX943 EVK Cortex-A Core. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Fixed the document format issue. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Add GPIO in board yaml's supported list Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
If gpio-reserved-ranges to reserve some pins which used by other CPU Core's OS, we could only handle usable pins owned by current CPU Core in interrupt handler. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
|



This PR is to add GPIO support for i.MX 943 EVK A-Core and with some minimal board document fix.