Merge "dt-bindings: Update dt-binding for cpu mpam and platform mpam"

This commit is contained in:
QCTECMDR Service
2024-07-14 10:43:21 -07:00
committed by Gerrit - the friendly Code Review server

View File

@@ -18,7 +18,10 @@ description: |
properties: properties:
compatible: compatible:
const: qcom,mpam enum:
- qcom,cpu-mpam
- qcom,platform-mpam
- qcom,mpam
reg: reg:
items: items:
@@ -39,6 +42,19 @@ examples:
- | - |
qcom_mpam: qcom,mpam { qcom_mpam: qcom,mpam {
compatible = "qcom,mpam"; compatible = "qcom,mpam";
reg = <0x17b6f000 0x1000>; reg = <0x17b6f000 0x400>;
reg-names = "mon-base"; reg-names = "mon-base";
}; };
cpu_mpam: qcom,cpu_mpam {
compatible = "qcom,cpu-mpam";
reg = <0x17b6f400 0x400>;
reg-names = "mon-base";
};
noc_bw_mpam: qcom,noc_bw_mpam {
compatible = "qcom,platform-mpam";
reg = <0x17b6f800 0x400>;
reg-names = "mon-base";
};
...