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>
43 lines
750 B
Plaintext
43 lines
750 B
Plaintext
SPEAr cpufreq driver
|
|
-------------------
|
|
|
|
SPEAr SoC cpufreq driver for CPU frequency scaling.
|
|
It supports both uniprocessor (UP) and symmetric multiprocessor (SMP) systems
|
|
which share clock across all CPUs.
|
|
|
|
Required properties:
|
|
- cpufreq_tbl: Table of frequencies CPU could be transitioned into, in the
|
|
increasing order.
|
|
|
|
Optional properties:
|
|
- clock-latency: Specify the possible maximum transition latency for clock, in
|
|
unit of nanoseconds.
|
|
|
|
Both required and optional properties listed above must be defined under node
|
|
/cpus/cpu@0.
|
|
|
|
Examples:
|
|
--------
|
|
cpus {
|
|
|
|
<...>
|
|
|
|
cpu@0 {
|
|
compatible = "arm,cortex-a9";
|
|
reg = <0>;
|
|
|
|
<...>
|
|
|
|
cpufreq_tbl = < 166000
|
|
200000
|
|
250000
|
|
300000
|
|
400000
|
|
500000
|
|
600000 >;
|
|
};
|
|
|
|
<...>
|
|
|
|
};
|