mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 05:05:29 +07:00
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
36 lines
701 B
Plaintext
36 lines
701 B
Plaintext
= Qualcomm QFPROM device tree bindings =
|
|
|
|
This binding is intended to represent QFPROM which is found in most QCOM SOCs.
|
|
|
|
Required properties:
|
|
- compatible: should be "qcom,qfprom"
|
|
- reg: Should contain registers location and length
|
|
|
|
= Data cells =
|
|
Are child nodes of qfprom, bindings of which as described in
|
|
bindings/nvmem/nvmem.txt
|
|
|
|
Example:
|
|
|
|
qfprom: qfprom@700000 {
|
|
compatible = "qcom,qfprom";
|
|
reg = <0x00700000 0x8000>;
|
|
...
|
|
/* Data cells */
|
|
tsens_calibration: calib@404 {
|
|
reg = <0x4404 0x10>;
|
|
};
|
|
};
|
|
|
|
|
|
= Data consumers =
|
|
Are device nodes which consume nvmem data cells.
|
|
|
|
For example:
|
|
|
|
tsens {
|
|
...
|
|
nvmem-cells = <&tsens_calibration>;
|
|
nvmem-cell-names = "calibration";
|
|
};
|