diff options
| author | Tom Rini <[email protected]> | 2025-10-09 14:30:02 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-09 14:30:02 -0600 |
| commit | ecdc3872a767fb045be3296d4317ae978a14b022 (patch) | |
| tree | daae7d6bc1c9e3aceab832198bc5b42b66b34594 /include | |
| parent | 8cc77c78b0bc44aab44aa00e9a0ceab14ffe2017 (diff) | |
| parent | 7828597f5430431281071b60289e46afed74ef94 (diff) | |
Merge patch series "firmware: scmi: various update"
Peng Fan (OSS) <[email protected]> says:
Misc update on firmware scmi:
- Typo fix
- Use io helpers
- Use PAGE_SIZE for arm64
- Add IN_USE error code
- Add more error info
- Support scmi max rx timeout in mailbox
- Add myself as scmi maintainer, AKASHI contributed most code, but
seems he is not invovled in the developement anymore, I volunteer to
help here.
Some items on list that I am thinking to add:
- align with linux kernel to use cpu_to_le32 and le32_to_cpu, but have not find
a good way to use the helpers.
- Add SCMI version negotiation as Linux Kernel
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 762a1032c37..95e0c3cce3b 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -40,6 +40,7 @@ enum scmi_status_code { SCMI_GENERIC_ERROR = -8, SCMI_HARDWARE_ERROR = -9, SCMI_PROTOCOL_ERROR = -10, + SCMI_IN_USE = -11, }; /* |
