pxa-camera.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. status = "okay";
  22. port {
  23. #address-cells = <1>;
  24. #size-cells = <0>;
  25. /* Parallel bus endpoint */
  26. qci: endpoint@0 {
  27. reg = <0>; /* Local endpoint # */
  28. remote-endpoint = <&mt9m111_1>;
  29. bus-width = <8>; /* Used data lines */
  30. hsync-active = <0>; /* Active low */
  31. vsync-active = <0>; /* Active low */
  32. pclk-sample = <1>; /* Rising */
  33. };
  34. };
  35. };