Skip to content

Commit d33b7eb

Browse files
Sivaprakash Murugesanbebarino
authored andcommitted
dt-bindings: clock: Add YAML schemas for QCOM A53 PLL
This patch adds schema for primary CPU PLL found on few Qualcomm platforms. Signed-off-by: Sivaprakash Murugesan <[email protected]> Link: https://lkml.kernel.org/r/[email protected] Reviewed-by: Rob Herring <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent 1664014 commit d33b7eb

File tree

2 files changed

+40
-22
lines changed

2 files changed

+40
-22
lines changed

Documentation/devicetree/bindings/clock/qcom,a53pll.txt

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/clock/qcom,a53pll.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Qualcomm A53 PLL Binding
8+
9+
maintainers:
10+
- Sivaprakash Murugesan <[email protected]>
11+
12+
description:
13+
The A53 PLL on few Qualcomm platforms is the main CPU PLL used used for
14+
frequencies above 1GHz.
15+
16+
properties:
17+
compatible:
18+
const: qcom,msm8916-a53pll
19+
20+
reg:
21+
maxItems: 1
22+
23+
'#clock-cells':
24+
const: 0
25+
26+
required:
27+
- compatible
28+
- reg
29+
- '#clock-cells'
30+
31+
additionalProperties: false
32+
33+
examples:
34+
#Example 1 - A53 PLL found on MSM8916 devices
35+
- |
36+
a53pll: clock@b016000 {
37+
compatible = "qcom,msm8916-a53pll";
38+
reg = <0xb016000 0x40>;
39+
#clock-cells = <0>;
40+
};

0 commit comments

Comments
 (0)