M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions
@@ -0,0 +1,22 @@
* Qualcomm Application CPU clock driver
acpuclock-9625 is the application cpu clock driver for MDM9625. It is used for
cpu frequency scaling, voltage scaling and bus bandwidth scaling.
Required properties:
- compatible: "qcom,acpuclk-9625"
- reg: offset and length of the register sets for the acpuclock controller
- reg-names: name of the bases for the above registers. "rcg_base", "pwr_base"
are expected.
- a5_cpu-supply: regulator to supply a5 cpu
- a5_mem-supply: regulator to supply a5 l2 cache
Example:
qcom,acpuclk@f9010000 {
compatible = "qcom,acpuclk-9625";
reg = <0xf9010008 0x10>,
<0xf9008004 0x4>;
reg-names = "rcg_base", "pwr_base";
a5_cpu-supply = <&pm8019_l10_corner_ao>;
a5_mem-supply = <&pm8019_l12_ao>;
};
@@ -0,0 +1,20 @@
* Qualcomm Application CPU clock device
acpuclock-a7 selects the clock source used by the cpus and l2 cache. It
can be configured to divide the clock source by any value in [1, 16] in
half-integer increments.
Required properties:
- compatible: "qcom,acpuclk-a7"
- reg: offset and length of the register sets for the acpuclock controller
- reg-names: name of the bases for the above registers. "rcg_base"
is expected.
- a7_cpu-supply: regulator to supply a7 cpu
Example:
qcom,acpuclk@f9011050 {
compatible = "qcom,acpuclk-a7";
reg = <0xf9011050 0x8>;
reg-names = "rcg_base";
a7_cpu-supply = <&pm8026_s2>;
};