hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
config SCMI_FIRMWARE
   bool "Enable SCMI support"
   select FIRMWARE
   select OF_TRANSLATE
   depends on SANDBOX || DM_MAILBOX || ARM_SMCCC
   help
     System Control and Management Interface (SCMI) is a communication
     protocol that defines standard interfaces for power, performance
     and system management. The SCMI specification is available at
     https://developer.arm.com/architectures/system-architectures/software-standards/scmi
 
     An SCMI agent communicates with a related SCMI server firmware
     located in another sub-system, as a companion micro controller
     or a companion host in the CPU system.
 
     Communications between agent (client) and the SCMI server are
     based on message exchange. Messages can be exchange over tranport
     channels as a mailbox device or an Arm SMCCC service with some
     piece of identified shared memory.
 
config SPL_SCMI_FIRMWARE
   bool "Enable SPL SCMI support"
   select FIRMWARE
   select OF_TRANSLATE
   depends on SANDBOX || DM_MAILBOX || ARM_SMCCC
   help
     Ditto as SCMI_FIRMWARE.