qfprom.txt 703 B

1234567891011121314151617181920212223242526272829303132333435
  1. = Qualcomm QFPROM device tree bindings =
  2. This binding is intended to represent QFPROM which is found in most QCOM SOCs.
  3. Required properties:
  4. - compatible: should be "qcom,qfprom"
  5. - reg: Should contain registers location and length
  6. = Data cells =
  7. Are child nodes of qfprom, bindings of which as described in
  8. bindings/nvmem/nvmem.txt
  9. Example:
  10. qfprom: qfprom@00700000 {
  11. compatible = "qcom,qfprom";
  12. reg = <0x00700000 0x8000>;
  13. ...
  14. /* Data cells */
  15. tsens_calibration: calib@404 {
  16. reg = <0x4404 0x10>;
  17. };
  18. };
  19. = Data consumers =
  20. Are device nodes which consume nvmem data cells.
  21. For example:
  22. tsens {
  23. ...
  24. nvmem-cells = <&tsens_calibration>;
  25. nvmem-cell-names = "calibration";
  26. };