-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
applications: sdp: no copy IPC #20116
base: main
Are you sure you want to change the base?
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 5d6c142489e8671a0bb1fbf52a56f040d44da7c3 more detailssdk-nrf:
Github labels
List of changed files detected by CI (6)
Outputs:ToolchainVersion: 342151af73 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
You can find the documentation preview for this PR at this link. Note: This comment is automatically posted by the Documentation Publish GitHub Action. |
65d0007
to
bdeae8e
Compare
Implemented smaller structures and reduced ammount of opcodes in IPC Signed-off-by: Michal Frankiewicz <[email protected]>
Implemented smaller structures and reduced ammount of opcodes in IPC Signed-off-by: Michal Frankiewicz <[email protected]>
Fixed dummy cycles implementation. Changed dummy cycles limit from 32 to UINT32_MAX. Signed-off-by: Michal Frankiewicz <[email protected]>
Fixed bug where after increasing bus width using buffered registers, in first clock cycle the mask for previous bus width was still present. Signed-off-by: Michal Frankiewicz <[email protected]>
Added workarounds to hardware issue causing, additional clock edge in spi modes 1-3. Signed-off-by: Michal Frankiewicz <[email protected]>
Implemented option to pass data between cores through IPC by reference. Signed-off-by: Michal Frankiewicz <[email protected]>
Implemented option to pass data between cores through IPC by reference. Signed-off-by: Michal Frankiewicz <[email protected]>
bdeae8e
to
5d6c142
Compare
@@ -16,6 +16,8 @@ extern "C" { | |||
|
|||
#ifdef CONFIG_SOC_NRF54L15 | |||
|
|||
#define NRFE_MSPI_NO_COPY_IPC |
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.
This should be an option in Kconfig, set to default value depending on the platform.
Depends on #20017