Commit cdd7486616d03e1642ba1dacea6f05c10fc97863

Authored by Peng Fan
Committed by Tom Rini
1 parent 3cc137616d

firmware: psci: introduce SPL_ARM_PSCI_FW

Introduce a new macro SPL_ARM_PSCI_FW

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Stefano Babic <sbabic@denx.de>

Showing 2 changed files with 5 additions and 1 deletions Side-by-side Diff

drivers/firmware/Kconfig
1 1 config FIRMWARE
2 2 bool "Enable Firmware driver support"
3 3  
  4 +config SPL_ARM_PSCI_FW
  5 + bool
  6 + select FIRMWARE
  7 +
4 8 config ARM_PSCI_FW
5 9 bool
6 10 select FIRMWARE
drivers/firmware/Makefile
1 1 obj-$(CONFIG_FIRMWARE) += firmware-uclass.o
2   -obj-$(CONFIG_ARM_PSCI_FW) += psci.o
  2 +obj-$(CONFIG_$(SPL_)ARM_PSCI_FW) += psci.o
3 3 obj-$(CONFIG_TI_SCI_PROTOCOL) += ti_sci.o
4 4 obj-$(CONFIG_SANDBOX) += firmware-sandbox.o