Skip to content

Commit 2afc6ec

Browse files
Sivaprakash Murugesanbebarino
authored andcommitted
dt-bindings: clock: add ipq6018 a53 pll compatible
cpus on ipq6018 are clocked by a53 pll, add device compatible for a53 pll found on ipq6018 devices. Reviewed-by: Rob Herring <[email protected]> Signed-off-by: Sivaprakash Murugesan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent b3a9e3b commit 2afc6ec

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

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

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,24 @@ description:
1515

1616
properties:
1717
compatible:
18-
const: qcom,msm8916-a53pll
18+
enum:
19+
- qcom,ipq6018-a53pll
20+
- qcom,msm8916-a53pll
1921

2022
reg:
2123
maxItems: 1
2224

2325
'#clock-cells':
2426
const: 0
2527

28+
clocks:
29+
items:
30+
- description: board XO clock
31+
32+
clock-names:
33+
items:
34+
- const: xo
35+
2636
required:
2737
- compatible
2838
- reg
@@ -38,3 +48,12 @@ examples:
3848
reg = <0xb016000 0x40>;
3949
#clock-cells = <0>;
4050
};
51+
#Example 2 - A53 PLL found on IPQ6018 devices
52+
- |
53+
a53pll_ipq: clock-controller@b116000 {
54+
compatible = "qcom,ipq6018-a53pll";
55+
reg = <0x0b116000 0x40>;
56+
#clock-cells = <0>;
57+
clocks = <&xo>;
58+
clock-names = "xo";
59+
};

0 commit comments

Comments
 (0)