mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 20:28:59 +00:00
ec8727b7e1
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>
7 lines
279 B
Makefile
7 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
|