Add nocodec pipeline for i.MX8QXP board#1892
Merged
dbaluta merged 6 commits intothesofproject:masterfrom Oct 4, 2019
Merged
Conversation
paulstelian97
approved these changes
Oct 1, 2019
Collaborator
Author
|
Any idea why do I get this checkpatch.pl warnings: WARNING: Please update ABI in accordance with http://semver.org I did change the SOF_ABI_MINOR from src/include/kernel/abi.h though? |
lgirdwood
approved these changes
Oct 1, 2019
Member
|
@dbaluta it's just a nag to make sure ABI increments are not forgotten, although it's not clever enough to know you have updated all the time. Feel free to fix. |
plbossart
reviewed
Oct 1, 2019
112b33a to
0370583
Compare
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Only add ESAI MCLK ID token for now Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
ESAI is one of the DAIs found on i.MX8 platforms. Introduce esai_params used to pass configuration from topology via AP to DSP. Only MCLK and TDM related params for now. Because this is a new struct, increment only ABI MINOR version which makes the SOF FW backward compatible with older kernel versions. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
i.MX8QXP has one ESAI interface. Create a simple topology without a codec for playback of 2 channels, 16bits samples at 48Khz. Host -> Buffer0 -> Volume -> Buffer1 -> ESAI0 This is useful for testing various components like Dummy DMA, EDMA and ESAI drivers. For more information about ESAI you can read i.MX8QXP RM at: https://www.nxp.com/docs/en/reference-manual/IMX8DQXPRM.pdf Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Collaborator
Author
|
@plbossart ready now! Will push both PRs (FW & kernel) after your review. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
i.MX8QXP contains one ESAI0 interface. This patch series adds helper m4 macros for ESAI and creates a simple playback topology with ESAI0 and nocodec.
With this we can test Dummy DMA, EDMA and ESAI drivers.
Corresponding changes for Linux kernel side will be sent right away.