replace common qcom sources with samsung ones

This commit is contained in:
SaschaNes
2025-08-12 22:13:00 +02:00
parent ba24dcded9
commit 6f7753de11
5682 changed files with 2450203 additions and 103634 deletions

View File

@@ -0,0 +1,32 @@
* Qualcomm Technologies, Inc. MSM MMRM
[Root level node]
MMRM
=====
Required properties:
- compatible : one of:
- "qcom,msm-mmrm-test"
- "qcom,waipio-mmrm-test" : Invokes driver specific data for Waipio.
- clock-names: an array of clocks that the driver uses for testing.
The clocks names here correspond to the clock names used in
clk_get.
- clocks: Must contain an entry for each clock in clock-names.
Example:
qcom,mmrm-test {
compatible = "qcom,msm-mmrm-test";
clock-names =
"cam_cc_ife_0_clk_src",
"cam_cc_ife_1_clk_src",
"video_cc_mvs1_clk_src",
"disp_cc_mdss_mdp_clk_src",
"video_cc_mvs0_clk_src";
clocks =
<&clock_camcc CAM_CC_IFE_0_CLK_SRC>,
<&clock_camcc CAM_CC_IFE_1_CLK_SRC>,
<&clock_videocc VIDEO_CC_MVS1_CLK_SRC>,
<&clock_dispcc DISP_CC_MDSS_MDP_CLK_SRC>,
<&clock_videocc VIDEO_CC_MVS0_CLK_SRC>;
};

View File

@@ -0,0 +1,35 @@
* Qualcomm Technologies, Inc. MSM MMRM
[Root level node]
MMRM
=====
Required properties:
- compatible : one of:
- "qcom,msm-mmrm"
- "qcom,waipio-mmrm" : Invokes driver specific data for Waipio.
Optional properties:
- mm-rail-corners : an array of voltage corner names supported by driver.
- mm-rail-fact-volt : an array of voltage coner factors corresponding to
voltage corners supported by driver for a chipset.
- scaling-fact-dyn : an array of dynamic scaling factors corresponding to
voltage corners supported by driver for a chipset.
- scaling-fact-leak: an array of leakage scaling factors corresponding to
voltage corners supported by driver for a chipset.
- client-info : an array of information for each clock source. Each entry
includes client domain, clk src id & corresponding power factors.
Example:
qcom,mmrm {
compatible = "qcom,msm-mmrm";
mm-rail-corners = "lowsvs", "svs", "svsl1", "nom", "turbo";
mm-rail-fact-volt = <36439 41157 44827 49152 54526>;
/* Scaling factors */
scaling-fact-dyn = <35390 45876 54395 66192 82576>;
scaling-fact-leak = <451544 548537 633078 746456 920126>;
client-info =
<0x4 VIDEO_CC_MVS0_CLK_SRC 28970189 582288>;
};