/linux-6.12.1/drivers/firmware/arm_scmi/transports/ |
D | Kconfig | 2 menu "SCMI Transport Drivers" 7 This declares whether at least one SCMI transport has been configured. 8 Used to trigger a build bug when trying to build SCMI without any 14 This declares whether a shared memory based transport for SCMI is 20 This declares whether a message passing based transport for SCMI is 24 tristate "SCMI transport based on Mailbox" 30 Enable mailbox based transport for SCMI. 32 If you want the ARM SCMI PROTOCOL stack to include support for a 38 tristate "SCMI transport based on SMC" 44 Enable SMC based transport for SCMI. [all …]
|
D | optee.c | 32 * PTA_SCMI_CMD_PROCESS_SMT_CHANNEL - Process SCMI message in SMT buffer 36 * Shared memory used for SCMI message/response exhange is expected 37 * already identified and bound to channel handle in both SCMI agent 38 * and SCMI server (OP-TEE) parts. 39 * The memory uses SMT header to carry SCMI meta-data (protocol ID and 45 * PTA_SCMI_CMD_PROCESS_SMT_CHANNEL_MESSAGE - Process SMT/SCMI message 48 * [in/out] memref[1]: Message/response buffer (SMT and SCMI payload) 50 * Shared memory used for SCMI message/response is a SMT buffer 53 * The memory uses SMT header to carry SCMI meta-data (protocol ID and 61 * SCMI shm information are 0 if agent expects to use OP-TEE regular SHM [all …]
|
D | smc.c | 3 * System Control and Management Interface (SCMI) Message SMC/HVC 32 * scmi instances that are using the same smc-id. 43 * struct scmi_smc - Structure representing a SCMI smc transport 46 * @cinfo: SCMI channel info 155 if (of_device_is_compatible(dev->of_node, "qcom,scmi-smc")) { in smc_chan_setup() 168 if (of_device_is_compatible(dev->of_node, "arm,scmi-smc-param")) { in smc_chan_setup() 182 dev_err(dev, "failed to setup SCMI smc irq\n"); in smc_chan_setup() 284 * SCMI command would have been already fully processed by the SCMI 294 { .compatible = "arm,scmi-smc" }, 295 { .compatible = "arm,scmi-smc-param" }, [all …]
|
/linux-6.12.1/drivers/firmware/arm_scmi/ |
D | Kconfig | 5 tristate "ARM System Control and Management Interface (SCMI) Message Protocol" 8 ARM System Control and Management Interface (SCMI) protocol is a 10 used in system management. SCMI is extensible and currently provides 22 making use of the features offered by the SCMI. 29 This declares whether at least one SCMI facility is configured 31 of a common SCMI debugfs root directory. 34 bool "Enable support for SCMI Raw transmission mode" 38 Enable support for SCMI Raw transmission mode. 40 If enabled allows the direct injection and snooping of SCMI bare 42 It is meant to be used by SCMI compliance/testing suites. [all …]
|
D | Makefile | 2 scmi-bus-y = bus.o 3 scmi-core-objs := $(scmi-bus-y) 5 scmi-driver-y = driver.o notify.o 6 scmi-driver-$(CONFIG_ARM_SCMI_RAW_MODE_SUPPORT) += raw_mode.o 7 scmi-transport-$(CONFIG_ARM_SCMI_HAVE_SHMEM) = shmem.o 8 scmi-transport-$(CONFIG_ARM_SCMI_HAVE_MSG) += msg.o 9 scmi-protocols-y := base.o clock.o perf.o power.o reset.o sensors.o system.o voltage.o powercap.o 10 scmi-protocols-y += pinctrl.o 11 scmi-module-objs := $(scmi-driver-y) $(scmi-protocols-y) $(scmi-transport-y) 16 obj-$(CONFIG_ARM_SCMI_PROTOCOL) += scmi-core.o [all …]
|
D | bus.c | 3 * System Control and Management Interface (SCMI) Message Protocol bus layer 34 /* Track globally the creation of SCMI SystemPower related devices */ 42 * This helper let an SCMI driver request specific devices identified by the 43 * @id_table to be created for each active SCMI instance. 59 pr_debug("Requesting SCMI device (%s) for protocol %x\n", in scmi_protocol_device_request() 64 pr_warn("SCMI Raw mode active. Rejecting '%s'/0x%02X\n", in scmi_protocol_device_request() 123 pr_err("Failed to save SCMI device - ret:%d\n", ret); in scmi_protocol_device_request() 169 pr_debug("Unrequesting SCMI device (%s) for protocol %x\n", in scmi_protocol_device_unrequest() 313 pr_debug("Registered new scmi driver %s\n", driver->name); in scmi_driver_register() 336 pr_debug("(%s) Destroying SCMI device '%s' for protocol 0x%x (%s)\n", in __scmi_device_destroy() [all …]
|
D | scmi_power_control.c | 3 * SCMI Generic SystemPower Control driver. 8 * In order to handle platform originated SCMI SystemPower requests (like 9 * shutdowns or cold/warm resets) we register an SCMI Notification notifier 10 * block to react when such SCMI SystemPower events are emitted by platform. 20 * by the SCMI platform to an OSPM like Linux. 32 * Given the peculiar nature of SCMI SystemPower protocol, that is being in 34 * only one SCMI platform actively emitting SystemPower events. 35 * For this reason the SCMI core takes care to enforce the creation of one 36 * single unique device associated to the SCMI System Power protocol; no matter 37 * how many SCMI platforms are defined on the system, only one can be designated [all …]
|
D | raw_mode.c | 3 * System Control and Management Interface (SCMI) Raw mode support 10 * When enabled the SCMI Raw mode support exposes a userspace API which allows 11 * to send and receive SCMI commands, replies and notifications from a user 12 * application through injection and snooping of bare SCMI messages in binary 15 * Such injected SCMI transactions will then be routed through the SCMI core 16 * stack towards the SCMI backend server using whatever SCMI transport is 19 * It is meant to help in running any sort of SCMI backend server testing, no 26 * In order to avoid possible interferences between the SCMI Raw transactions 27 * originated from a test-suite and the normal operations of the SCMI drivers, 28 * when Raw mode is enabled, by default, all the regular SCMI drivers are [all …]
|
D | driver.c | 3 * System Control and Management Interface (SCMI) Message Protocol driver 5 * SCMI Message Protocol is used between the System Control Processor(SCP) 44 #include <trace/events/scmi.h> 50 /* List of all SCMI devices active in system */ 83 * @handle: Reference to the SCMI handle associated to this protocol instance. 98 * Each protocol is initialized independently once for each SCMI platform in 99 * which is defined by DT and implemented by the SCMI server fw. 117 * @name: Name of this SCMI instance 118 * @type: Type of this SCMI instance 131 * struct scmi_info - Structure representing a SCMI instance [all …]
|
D | base.c | 3 * System Control and Management Interface (SCMI) Base Protocol 8 #define pr_fmt(fmt) "SCMI Notifications BASE - " fmt 62 * @ph: SCMI protocol handle 64 * Return: 0 on success, else appropriate SCMI error. 93 * @ph: SCMI protocol handle 96 * Return: 0 on success, else appropriate SCMI error. 135 * @ph: SCMI protocol handle 137 * Return: 0 on success, else appropriate SCMI error. 167 * @ph: SCMI protocol handle 170 * Return: 0 on success, else appropriate SCMI error. [all …]
|
D | protocols.h | 3 * System Control and Management Interface (SCMI) Message Protocol 5 * and function prototypes used in all the different SCMI protocols. 74 * @type: The SCMI type for this message 159 * @dev: A reference to the associated SCMI instance device (handle->dev). 161 * can be used by the protocol implementation to generate SCMI messages. 165 * This structure represents a protocol initialized against specific SCMI 168 * that it can access the core xfer operations to build and generate SCMI 170 * - as an opaque handle fed by an SCMI driver user when it tries to access 173 * with the related protocol operations when the SCMI driver tries to access 211 * SCMI command request pointed by @message. @desc_index is [all …]
|
D | msg.c | 18 * The SCMI specification requires all parameters, message headers, return 64 * msg_read_header() - Read SCMI header from transport SDU. 68 * Return: SCMI header 76 * msg_fetch_response() - Fetch response SCMI payload from transport SDU. 100 * @max_len: maximum SCMI payload size to fetch
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | debugfs-scmi | 1 What: /sys/kernel/debug/scmi/<n>/instance_name 5 Description: The name of the underlying SCMI instance <n> described by 6 all the debugfs accessors rooted at /sys/kernel/debug/scmi/<n>, 7 expressed as the full name of the top DT SCMI node under which 8 this SCMI instance is rooted. 11 What: /sys/kernel/debug/scmi/<n>/atomic_threshold_us 16 on this SCMI instance <n>, the threshold above which any SCMI 22 What: /sys/kernel/debug/scmi/<n>/transport/type 27 SCMI instance <n>. 30 What: /sys/kernel/debug/scmi/<n>/transport/is_atomic [all …]
|
D | debugfs-scmi-raw | 1 What: /sys/kernel/debug/scmi/<n>/raw/message 5 Description: SCMI Raw synchronous message injection/snooping facility; write 6 a complete SCMI synchronous command message (header included) 8 backend SCMI server for instance <n>. 16 What: /sys/kernel/debug/scmi/<n>/raw/message_async 20 Description: SCMI Raw asynchronous message injection/snooping facility; write 21 a complete SCMI asynchronous command message (header included) 23 backend SCMI server for instance <n>. 34 What: /sys/kernel/debug/scmi/<n>/raw/errors 38 Description: SCMI Raw message errors facility; any kind of timed-out or [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/firmware/ |
D | arm,scmi.yaml | 5 $id: http://devicetree.org/schemas/firmware/arm,scmi.yaml# 8 title: System Control and Management Interface (SCMI) Message Protocol 14 The SCMI is intended to allow agents such as OSPM to manage various functions 19 the SCMI as described in ARM document number ARM DEN 0056 ("ARM System Control 26 - $ref: /schemas/firmware/nxp,imx95-scmi.yaml 30 const: scmi 34 - description: SCMI compliant firmware with mailbox transport 36 - const: arm,scmi 37 - description: SCMI compliant firmware with ARM SMC/HVC transport 39 - const: arm,scmi-smc [all …]
|
D | nxp,imx95-scmi.yaml | 5 $id: http://devicetree.org/schemas/firmware/nxp,imx95-scmi.yaml# 8 title: i.MX95 System Control and Management Interface(SCMI) Vendor Protocols Extension 15 $ref: '/schemas/firmware/arm,scmi.yaml#/$defs/protocol-node' 23 $ref: '/schemas/firmware/arm,scmi.yaml#/$defs/protocol-node'
|
/linux-6.12.1/drivers/iio/common/scmi_sensors/ |
D | Kconfig | 2 # IIO over SCMI 6 menu "IIO SCMI Sensors" 9 tristate "IIO SCMI" 14 Say yes here to build support for IIO SCMI Driver. 15 This provides ARM SCMI Protocol based IIO device. 17 sensors available on SCMI based platforms.
|
/linux-6.12.1/drivers/regulator/ |
D | scmi-regulator.c | 3 // System Control and Management Interface (SCMI) based regulator driver 7 // Implements a regulator driver on top of the SCMI Voltage Protocol. 9 // The ARM SCMI Protocol aims in general to hide as much as possible all the 15 // The supported SCMI regulator ops are restricted to the bare minimum: 21 // Each SCMI regulator instance is associated, through the means of a proper DT 22 // entry description, to a specific SCMI Voltage Domain. 145 * Note that SCMI voltage domains describable by linear ranges in scmi_config_linear_regulator_mappings() 147 * triplet by the SCMI Voltage Domain protocol support itself. in scmi_config_linear_regulator_mappings() 164 /* Just one fixed voltage exposed by SCMI */ in scmi_config_linear_regulator_mappings() 244 * Using the scmi device here to have DT searched from Voltage in scmi_regulator_common_init() [all …]
|
/linux-6.12.1/drivers/powercap/ |
D | arm_scmi_powercap.c | 3 * SCMI Powercap support. 247 return "SCMI power-cap"; in scmi_powercap_get_name() 332 * scmi_zones_register- Register SCMI powercap zones starting from parent zones 334 * @dev: A reference to the SCMI device 337 * When registering SCMI powercap zones with the powercap framework we should 341 * Unfortunately we cannot assume that the array of available SCMI powercap 342 * zones provided by the SCMI platform firmware is built to comply with such 345 * This function, given the set of SCMI powercap zones to register, takes care 346 * to walk the SCMI powercap zones trees up to the root registering any 355 * sporting an SCMI abstract power scale) as long as they are positioned as [all …]
|
D | Kconfig | 64 tristate "ARM SCMI Powercap driver" 67 This enables support for the ARM Powercap based on ARM SCMI 70 ARM SCMI Powercap protocol allows power limits to be enforced 71 and monitored against the SCMI Powercap domains advertised as 72 available by the SCMI platform firmware.
|
/linux-6.12.1/include/linux/ |
D | scmi_protocol.h | 3 * SCMI Message Protocol driver header 88 * by SCMI Clock Protocol 90 * @count_get: get the count of clocks provided by SCMI 134 * by SCMI Performance Protocol 192 * by SCMI Power Protocol 194 * @num_domains_get: get the count of power domains provided by SCMI 223 * SCMI platform. Set to zero when not available. 246 * SCMI platform. 277 * the SCMI specification: it can be accessed using the accompanying 319 * detailed in the SCMI specification: it can accessed and [all …]
|
/linux-6.12.1/drivers/reset/ |
D | reset-scmi.c | 3 * ARM System Control and Management Interface (ARM SCMI) reset driver 19 * @ph: ARM SCMI protocol handle used for communication with system controller 35 * using the ARM SCMI protocol. 53 * using the ARM SCMI protocol. 71 * reset signal using the ARM SCMI protocol. 121 MODULE_DEVICE_TABLE(scmi, scmi_id_table); 124 .name = "scmi-reset", 131 MODULE_DESCRIPTION("ARM SCMI reset controller driver");
|
/linux-6.12.1/drivers/clk/ |
D | clk-scmi.c | 3 * System Control and Power Interface (SCMI) Protocol based clock driver 209 /* SCMI OEM Duty Cycle is expressed as a percentage */ in scmi_clk_set_duty_cycle() 264 * specifically required SCMI clock features. 279 * underlying SCMI transport for an SCMI instance is configured to in scmi_clk_ops_alloc() 280 * handle SCMI commands in an atomic manner. in scmi_clk_ops_alloc() 282 * When no SCMI atomic transport support is available we instead provide in scmi_clk_ops_alloc() 324 * @sclk: A reference to an SCMI clock descriptor 335 * needed by this SCMI clock, at first use it to lookup into the set of 357 * Note that when transport is atomic but SCMI protocol did not in scmi_clk_ops_select() 456 * SCMI clk driver instances. in scmi_clocks_probe() [all …]
|
/linux-6.12.1/drivers/pmdomain/arm/ |
D | Kconfig | 3 tristate "SCMI performance domain driver" 8 This enables support for the SCMI performance domains which can be 15 tristate "SCMI power domain driver" 20 This enables support for the SCMI power domains which can be
|
/linux-6.12.1/arch/arm64/boot/dts/arm/ |
D | juno-scmi.dtsi | 45 scmi { 46 compatible = "arm,scmi"; 205 compatible = "arm,scmi-shmem"; 210 compatible = "arm,scmi-shmem"; 215 compatible = "arm,scmi-shmem"; 220 compatible = "arm,scmi-shmem";
|