msm-jpeg.txt 756 B

1234567891011121314151617181920212223242526
  1. * Qualcomm MSM JPEG
  2. Required properties:
  3. - cell-index: jpeg hardware core index
  4. - compatible :
  5. - "qcom,jpeg"
  6. - reg : offset and length of the register set for the device
  7. for the jpeg operating in compatible mode.
  8. - reg-names : should specify relevant names to each reg property defined.
  9. - interrupts : should contain the jpeg interrupt.
  10. - interrupt-names : should specify relevant names to each interrupts
  11. property defined.
  12. - vdd-supply: phandle to GDSC regulator controlling JPEG core.
  13. Example:
  14. qcom,jpeg@0xfda20000 {
  15. cell-index = <0>;
  16. compatible = "qcom,jpeg";
  17. reg = <0xfda20000 0x400>;
  18. reg-names = "jpeg";
  19. interrupts = <0 60 0>;
  20. interrupt-names = "jpeg";
  21. vdd-supply = <&gdsc_jpeg>;
  22. };