msm-vfe.txt 935 B

12345678910111213141516171819202122232425262728293031
  1. * Qualcomm MSM VFE
  2. Required properties:
  3. - cell-index: vfe hardware core index
  4. - compatible :
  5. - "qcom,vfe"
  6. - "qcom,vfe40"
  7. - reg : offset and length of the register set for the device
  8. for the vfe operating in compatible mode.
  9. - reg-names : should specify relevant names to each reg property defined.
  10. - "vfe" - Required.
  11. - "vfe_vbif" - Optional for "vfe32". Required for "vfe40".
  12. - "tcsr" - Optional for "vfe32". Required for "vfe40".
  13. - interrupts : should contain the vfe interrupt.
  14. - interrupt-names : should specify relevant names to each interrupts
  15. property defined.
  16. - "vfe" - Required.
  17. - vdd-supply: phandle to GDSC regulator controlling VFE core.
  18. Example:
  19. qcom,vfe@0xfda10000 {
  20. cell-index = <0>;
  21. compatible = "qcom,vfe";
  22. reg = <0xfda10000 0x1000>;
  23. reg-names = "vfe";
  24. interrupts = <0 58 0>;
  25. interrupt-names = "vfe";
  26. vdd-supply = <&gdsc_vfe>;
  27. };