msm-ispif.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. * Qualcomm MSM ISPIF
  2. Required properties:
  3. - cell-index: ispif hardware core index
  4. - compatible :
  5. - "qcom,ispif"
  6. - "qcom,ispif-v3.0"
  7. - reg : offset and length of the register set for the device
  8. for the ispif operating in compatible mode.
  9. - reg-names : should specify relevant names to each reg property defined.
  10. - interrupts : should contain the ispif interrupt.
  11. - interrupt-names : should specify relevant names to each interrupts
  12. property defined.
  13. Optional properties:
  14. - qcom,num-isps: The number of ISPs the ISPIF module is connected to. If not set
  15. the default value used is 1
  16. Example:
  17. qcom,ispif@fda0a000 {
  18. cell-index = <0>;
  19. compatible = "qcom,ispif";
  20. reg = <0xfda0a000 0x300>;
  21. reg-names = "ispif";
  22. interrupts = <0 55 0>;
  23. interrupt-names = "ispif";
  24. };
  25. or
  26. qcom,ispif@fda0a000 {
  27. cell-index = <0>;
  28. compatible = "qcom,ispif-v3.0", "qcom,ispif";
  29. reg = <0xfda0a000 0x300>;
  30. reg-names = "ispif";
  31. interrupts = <0 55 0>;
  32. interrupt-names = "ispif";
  33. qcom,num-isps = <2>
  34. };