Add snapshot of device tree bindings from keystone common kernel, branch "android-mainline-keystone-qcom-release" at c4c12103f9c0 ("Snap for 9228065 from e32903b9a63bb558df8b803b076619c53c16baad to android-mainline-keystone-qcom-release"). Change-Id: I7682079615cbd9f29340a5c1f2a1d84ec441a1f1 Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
Tegra124 CPU frequency scaling driver bindings
|
|
----------------------------------------------
|
|
|
|
Both required and optional properties listed below must be defined
|
|
under node /cpus/cpu@0.
|
|
|
|
Required properties:
|
|
- clocks: Must contain an entry for each entry in clock-names.
|
|
See ../clocks/clock-bindings.txt for details.
|
|
- clock-names: Must include the following entries:
|
|
- cpu_g: Clock mux for the fast CPU cluster.
|
|
- pll_x: Fast PLL clocksource.
|
|
- pll_p: Auxiliary PLL used during fast PLL rate changes.
|
|
- dfll: Fast DFLL clocksource that also automatically scales CPU voltage.
|
|
|
|
Optional properties:
|
|
- clock-latency: Specify the possible maximum transition latency for clock,
|
|
in unit of nanoseconds.
|
|
|
|
Example:
|
|
--------
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "arm,cortex-a15";
|
|
reg = <0>;
|
|
|
|
clocks = <&tegra_car TEGRA124_CLK_CCLK_G>,
|
|
<&tegra_car TEGRA124_CLK_PLL_X>,
|
|
<&tegra_car TEGRA124_CLK_PLL_P>,
|
|
<&dfll>;
|
|
clock-names = "cpu_g", "pll_x", "pll_p", "dfll";
|
|
clock-latency = <300000>;
|
|
};
|
|
|
|
<...>
|
|
};
|