-
Notifications
You must be signed in to change notification settings - Fork 318
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
[DNM] Switch to native Zephyr support for imx8MP #9608
base: main
Are you sure you want to change the base?
Conversation
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.
I guess you should now be able to followup and start removing old code ?
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.
Very cool, only minor comments. I guess we need to delay approval until Zephyr side PR is merged.
zephyr/Kconfig
Outdated
@@ -30,7 +30,7 @@ config SOF_ZEPHYR_STRICT_HEADERS | |||
|
|||
config DMA_DOMAIN | |||
bool "Enable the usage of DMA domain." | |||
default y if IMX8M | |||
default n |
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.
Default can be omitted: https://docs.zephyrproject.org/latest/build/kconfig/tips.html#redundant-defaults
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.
Fixed.
4a47d32
to
6fd41c7
Compare
Changes since v1:
|
6fd41c7
to
e042553
Compare
This includes: - switching all topologies from DMA domain to timer domain. - interrupt related fixes done via CONFIG_IMX8M. - remove SOF standalone drivers from compilation Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
This enables the host dma and sdma3 for i.MX8MP. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
This enables sai3 and sdma3 nodes and also adds host dma node used by SOF. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
With this series all NXP i.MX8 support is using Zephyr native drivers.
This depends on - zephyrproject-rtos/zephyr#80330