mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
SCMI base protocol is mandatory according to the SCMI specification. With this patch, SCMI base protocol can be accessed via SCMI transport layers. All the commands, except SCMI_BASE_NOTIFY_ERRORS, are supported. This is because U-Boot doesn't support interrupts and the current transport layers are not able to handle asynchronous messages properly. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Etienne Carriere <etienne.carriere@foss.st.com>
8 lines
279 B
Makefile
8 lines
279 B
Makefile
obj-y += scmi_agent-uclass.o
|
|
obj-y += base.o
|
|
obj-y += smt.o
|
|
obj-$(CONFIG_SCMI_AGENT_SMCCC) += smccc_agent.o
|
|
obj-$(CONFIG_SCMI_AGENT_MAILBOX) += mailbox_agent.o
|
|
obj-$(CONFIG_SCMI_AGENT_OPTEE) += optee_agent.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox-scmi_agent.o sandbox-scmi_devices.o
|