Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1Qualcomm MSM8916 A53 PLL Binding
2--------------------------------
3The A53 PLL on MSM8916 platforms is the main CPU PLL used used for frequencies
4above 1GHz.
5
6Required properties :
7- compatible : Shall contain only one of the following:
8
9 "qcom,msm8916-a53pll"
10
11- reg : shall contain base register location and length
12
13- #clock-cells : must be set to <0>
14
15Example:
16
17 a53pll: clock@b016000 {
18 compatible = "qcom,msm8916-a53pll";
19 reg = <0xb016000 0x40>;
20 #clock-cells = <0>;
21 };
22