d22118f005
The servers for the @codeaurora domain are long retired and any messages addressed there will bounce. Govind Singh has left the company which appears to leave the Q6SSTOP clock controller binding unmaintained. Move maintenance of the binding to the Qualcomm Clock Drivers maintainer as suggested by Bjorn Andersson. Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> Link: https://lore.kernel.org/r/20240202171915.4101842-1-quic_jhugo@quicinc.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
44 lines
875 B
YAML
44 lines
875 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/qcom,q6sstopcc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Q6SSTOP clock Controller
|
|
|
|
maintainers:
|
|
- Bjorn Andersson <andersson@kernel.org>
|
|
|
|
properties:
|
|
compatible:
|
|
const: qcom,qcs404-q6sstopcc
|
|
|
|
reg:
|
|
items:
|
|
- description: Q6SSTOP clocks register region
|
|
- description: Q6SSTOP_TCSR register region
|
|
|
|
clocks:
|
|
items:
|
|
- description: ahb clock for the q6sstopCC
|
|
|
|
'#clock-cells':
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- '#clock-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
q6sstopcc: clock-controller@7500000 {
|
|
compatible = "qcom,qcs404-q6sstopcc";
|
|
reg = <0x07500000 0x4e000>, <0x07550000 0x10000>;
|
|
clocks = <&gcc 141>;
|
|
#clock-cells = <1>;
|
|
};
|