Merge "dt-bindings: soc_sleep_stats: Add a property to get ddr freq distribution"

This commit is contained in:
qctecmdr
2022-01-06 02:41:35 -08:00
committed by Gerrit - the friendly Code Review server

View File

@@ -37,6 +37,11 @@ properties:
Value type: Value type: <prop-encoded-array>
Definition: List of QMP mailbox phandle and channel identifier tuples.
ddr-freq-update:
Usage: optional
Value type: <boolean>
Definition: Boolean property to support to get ddr freq distribution.
required:
- compatible
- reg
@@ -58,4 +63,15 @@ examples:
compatible = "qcom,rpm-sleep-stats";
reg = <0 0x04690000 0 0x400>;
};
# Example of rpmh sleep stats that supports to get ddr freq distribution
- |
rpmh-sleep-stats@c3f0000 {
compatible = "qcom,rpmh-sleep-stats";
reg = <0 0xc3f0000 0 0x400>;
ss-name = "modem", "adsp", "adsp_island",
"cdsp", "slpi", "slpi_island",
"apss";
mboxes = <&qmp_aop 0>;
ddr-freq-update;
};
...