-
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
add support for running SOF on imx95 #9512
add support for running SOF on imx95 #9512
Conversation
#define CLK_MAX_CPU_HZ 800000000 | ||
#define CPU_DEFAULT_IDX 0 | ||
#define NUM_CPU_FREQ 1 | ||
#define NUM_CLOCKS 1 | ||
|
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.
@LaurentiuM1234 I think @kv2019i got rid of a lot of these last week since they should come from Zephyr - can you check.
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.
hm...double-checked and couldn't find anything else to drop w/o breaking the build... @kv2019i anything obvious that I'm missing?
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.
ok, I'm probably wrong, probably in process of being removed.
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.
Ack @LaurentiuM1234 @lgirdwood platform clk.h is still needed. We have a Zephyr version of clk.h that still depends on it. OTOH, I did a quick look and it seems this could be cleaned up further as well as the usage of clk.h is not much in app code -> #9541
This looks good to me. Lets wait for Zephyr side to be merged and clarify @lgirdwood comment. Then it is good to merge. |
Tagged with [DNM] and removed from draft for initial comments. |
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
#define CLK_MAX_CPU_HZ 800000000 | ||
#define CPU_DEFAULT_IDX 0 | ||
#define NUM_CPU_FREQ 1 | ||
#define NUM_CLOCKS 1 | ||
|
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.
ok, I'm probably wrong, probably in process of being removed.
Add platform files for NXP's imx95. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
Add configuration option for the new imx95 platform. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
The imx95 platform uses MU version 2. As such, select the appropriate version. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
Include required sources for the imx95 platform. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
Add entries for imx95's EDMA2 and HOST_DMA. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
This module is required by the Cortex-M architecture so update west.yml to pull in this module as well. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
Add topology for the imx95 platform. The pipeline is: HOST ----> VOLUME (optional, may be passthrough) ----> DAI Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
Add DTS and configuration overlay for the imx95 platform. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
This means modifying 'xtensa-build-zephyr.py' to allow building the new platform and adding a new toml file for the platform. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
e6a90b0
to
030a8f7
Compare
Rebased and dropped |
Good to go. Checkpatch.pl warnings are non-issues. |
Related issue: #9485.
Currently waiting for Zephyr dependencies to be merged.Waiting on last Zephyr dependency: zephyrproject-rtos/zephyr#79192