-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
sdp: add Kconfigs for no-copy #20276
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: a0cd43d75a1d152fb626eb1ef454ca8514b30ebf more detailssdk-nrf:
Github labels
List of changed files detected by CI (2)
Outputs:ToolchainVersion: 342151af73 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
cb432bf
to
a59af7a
Compare
You can find the documentation preview for this PR at this link. Note: This comment is automatically posted by the Documentation Publish GitHub Action. |
a59af7a
to
14f6dfb
Compare
14f6dfb
to
e9e46f0
Compare
e9e46f0
to
61fdb40
Compare
Added: MSPI_NRFE_IPC_NO_COPY, MSPI_NRFE_IPC_COPY Kconfigs. Signed-off-by: Michal Frankiewicz <[email protected]>
Added: SDP_MSPI_IPC_NO_COPY, SDP_MSPI_IPC_COPY Kconfigs. Signed-off-by: Michal Frankiewicz <[email protected]>
61fdb40
to
a0cd43d
Compare
If y Data is passed through IPC by reference, | ||
this requires both cores to be able to access each others memory spaces. | ||
If n Data is passed through IPC by copy. |
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.
Nit:
If y Data is passed through IPC by reference, | |
this requires both cores to be able to access each others memory spaces. | |
If n Data is passed through IPC by copy. | |
If enabled data is passed through IPC by reference, | |
this requires both cores to be able to access each others memory spaces. | |
If disabled data is passed through IPC by copy. |
Same goes for FLPR side.
Requires #20017