Files
android_kernel_samsung_sm87…/bindings/soc/qcom/qcom,cpucp_fast.yaml
Lingutla Chandrasekhar 0289936a74 dt-bindings: soc: add qcom,cpucp_fast documentation
Add documentation for the device qcom,cpucp_fast, which is used
for handling system hints from firmware.

Change-Id: I2336051df317d09d5224244e2d8248242980cc18
Signed-off-by: Lingutla Chandrasekhar <quic_lingutla@quicinc.com>
2024-07-23 23:40:46 -07:00

44 lines
940 B
YAML

# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/soc/qcom/qcom,cpucp_fast.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Qualcomm Technologies, Inc. CPUCP FAST driver
maintainers:
- Chandrasekhar Lingutla <quic_lingutla@quicinc.com>
description: |
This device listens interrupts from CPUCP via mailbox and
sends notification to scheduler.
properties:
compatible:
const: qcom,cpucp_fast
mboxes:
description: Mailboxes used for Interrupt from CPUCP
qcom,policy-cpus:
$ref: /schemas/types.yaml#/definitions/uint32
description: Base CPU index for cpufreq policy
required:
- compatible
- mboxes
- qcom,policy-cpus
additionalProperties: false
examples:
- |
soc {
cpucp_fast: qcom,cpucp_fast {
compatible = "qcom,cpucp_fast";
mboxes = <&cpucp 5>;
qcom,policy-cpus = <6>;
};
};
...