Introduce am_hal_mspi_cq_scatter_xfer MSPI API#37
Open
swift-tk wants to merge 1 commit into
Open
Conversation
RichardSWheatley
approved these changes
Nov 25, 2024
AlessandroLuo
approved these changes
Nov 25, 2024
Contributor
Author
|
Hold, something is wrong. |
1f30324 to
77249ca
Compare
Contributor
Author
|
In NORMAL or STREAM mode, MSPI now allows queuing up transfers from different async mspi_transceive calls. |
The new API am_hal_mspi_cq_scatter_xfer is introduced to fit zephyr MSPI API better and fixes some bugs. 1. Transfer settings being ignored by DMA: now add the settings to cmdq if they are different from mspi_device_cfg. 2. The async transfers are now able to be queued from different mspi_transceive calls. 2. Separate scrambling from am_hal_mspi_device_configure to allow more dynamic control without affecting the CQ. 3. Cq reset without cq disable would sliently fail. Signed-off-by: Swift Tian <swift.tian@ambiq.com>
77249ca to
1f1c8f7
Compare
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.
The new API am_hal_mspi_cq_scatter_xfer is introduced to fit zephyr MSPI API better and fixes some bugs.