pxa-camera.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Marvell PXA camera host interface
  2. Required properties:
  3. - compatible: Should be "marvell,pxa270-qci"
  4. - reg: register base and size
  5. - interrupts: the interrupt number
  6. - any required generic properties defined in video-interfaces.txt
  7. Optional properties:
  8. - clocks: input clock (see clock-bindings.txt)
  9. - clock-output-names: should contain the name of the clock driving the
  10. sensor master clock MCLK
  11. - clock-frequency: host interface is driving MCLK, and MCLK rate is this rate
  12. Example:
  13. pxa_camera: pxa_camera@50000000 {
  14. compatible = "marvell,pxa270-qci";
  15. reg = <0x50000000 0x1000>;
  16. interrupts = <33>;
  17. clocks = <&pxa2xx_clks 24>;
  18. clock-names = "ciclk";
  19. clock-frequency = <50000000>;
  20. clock-output-names = "qci_mclk";
  21. port {
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. /* Parallel bus endpoint */
  25. qci: endpoint@0 {
  26. reg = <0>; /* Local endpoint # */
  27. remote-endpoint = <&mt9m111_1>;
  28. bus-width = <8>; /* Used data lines */
  29. hsync-active = <0>; /* Active low */
  30. vsync-active = <0>; /* Active low */
  31. pclk-sample = <1>; /* Rising */
  32. };
  33. };
  34. };