summaryrefslogtreecommitdiff
path: root/bindings/cpuss_dump
diff options
context:
space:
mode:
authorVenkata Narendra Kumar Gutta <vgutta@quicinc.com>2019-04-24 12:36:05 -0700
committerVenkata Narendra Kumar Gutta <vgutta@quicinc.com>2019-05-02 16:41:24 -0700
commited241f132720397b8abac31ca170a274ea6e54e5 (patch)
tree892aeadc1cc2fc0a47d982a533f8112d96866d37 /bindings/cpuss_dump
parent1f62b25b429becfcc7d8608f389705b3e6ef0e20 (diff)
downloaddevicetree-ed241f132720397b8abac31ca170a274ea6e54e5.tar.gz
dt-bindings: Add devicetree bindings to devicetree project
Add devicetree bindings snapshot to the devicetree project. This snapshot is taken as of 'commit f3dd4aaeb34438c877ccd42f5a48ccd554dd765a (Merge "platform: qpnp-revid: Add REVID support for PM7250B")' of the kernel project. Change-Id: I5e0ec0eae63ff9c071b2924bd84c5b20d3f6554d
Diffstat (limited to 'bindings/cpuss_dump')
-rw-r--r--bindings/cpuss_dump/cpuss_dump.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/bindings/cpuss_dump/cpuss_dump.txt b/bindings/cpuss_dump/cpuss_dump.txt
new file mode 100644
index 00000000..e19632a0
--- /dev/null
+++ b/bindings/cpuss_dump/cpuss_dump.txt
@@ -0,0 +1,27 @@
+CPU Subsystem Dump Driver
+
+The CPU Subsystem dump driver is used to dump various hardware entities
+like the instruction and data tlbs or the unified tlbs etc. to an
+allocated buffer. This allows the data to be analysed in case of corruption.
+
+Required Properties for the cpuss_dump node:
+-compatible = "qcom,cpuss-dump";
+
+All child nodes of cpuss_dump node are interpreted as the various hardware
+entities which need to be dumped.
+
+Required properties of the dump nodes
+
+- qcom,dump-node: phandle to the acutal cpuss hardware entity present
+ in the cpu map
+- qcom,dump-id: The ID within the data dump table where this entry needs to
+ be added.
+
+Example:
+ msm_cpuss_dump {
+ compatible = "qcom,cpuss-dump";
+ qcom,itlb_dump100 {
+ qcom,dump-node = <&L1_itlb_100>;
+ qcom,dump-id = <34>;
+ };
+ };