dt-bindings: soc_sleep_stats: Add new compatible to get AOSD sleep stats

This change adds new compatible property to support to get
AOSD sleep stats.

Change-Id: I3a808c08c935916ba426c94ab898eda2387bd23b
This commit is contained in:
Minghao Zhang
2022-02-24 14:47:14 +08:00
parent 61e8a099c8
commit bf6b9acd36

View File

@@ -20,10 +20,11 @@ properties:
compatible:
enum:
- qcom,rpmh-sleep-stats
- qcom,rpmh-sleep-stats-v2
- qcom,rpm-sleep-stats
reg:
maxItems: 1
maxItems: 2
ss-name:
$ref: /schemas/types.yaml#/definitions/string
@@ -74,4 +75,14 @@ examples:
mboxes = <&qmp_aop 0>;
ddr-freq-update;
};
# Example of rpmh sleep stats that supports to get AOSS sleep stats
- |
rpmh-sleep-stats@c3f0000 {
compatible = "qcom,rpmh-sleep-stats-v2";
reg = <0 0xc3f0000 0 0x400>, <0 0xb261400 0 0x100>;
ss-name = "modem", "adsp", "adsp_island",
"cdsp", "slpi", "slpi_island",
"apss";
mboxes = <&qmp_aop 0>;
};
...