diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/drivers/firmware/Kconfig | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/drivers/firmware/Kconfig')
-rw-r--r-- | roms/u-boot/drivers/firmware/Kconfig | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/firmware/Kconfig b/roms/u-boot/drivers/firmware/Kconfig new file mode 100644 index 000000000..ef958b3a7 --- /dev/null +++ b/roms/u-boot/drivers/firmware/Kconfig @@ -0,0 +1,40 @@ +config FIRMWARE + bool "Enable Firmware driver support" + +config SPL_FIRMWARE + bool "Enable Firmware driver support in SPL" + depends on FIRMWARE + +config SPL_ARM_PSCI_FW + bool + select SPL_FIRMWARE + +config ARM_PSCI_FW + bool + select FIRMWARE + +config TI_SCI_PROTOCOL + tristate "TI System Control Interface (TISCI) Message Protocol" + depends on K3_SEC_PROXY + select FIRMWARE + select SPL_FIRMWARE if SPL + help + TI System Control Interface (TISCI) Message Protocol is used to manage + compute systems such as ARM, DSP etc with the system controller in + complex System on Chip (SoC) such as those found on certain K3 + generation SoC from TI. + + This protocol library is used by client drivers to use the features + provided by the system controller. + +config ZYNQMP_FIRMWARE + bool "ZynqMP Firmware interface" + select FIRMWARE + help + Firmware interface driver is used by different + drivers to communicate with the firmware for + various platform management services. + Say yes to enable ZynqMP firmware interface driver. + If in doubt, say N. + +source "drivers/firmware/scmi/Kconfig" |