ti,omap3isp.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. OMAP 3 ISP Device Tree bindings
  2. ===============================
  3. The DT definitions can be found in include/dt-bindings/media/omap3-isp.h.
  4. Required properties
  5. ===================
  6. compatible : must contain "ti,omap3-isp"
  7. reg : the two registers sets (physical address and length) for the
  8. ISP. The first set contains the core ISP registers up to
  9. the end of the SBL block. The second set contains the
  10. CSI PHYs and receivers registers.
  11. interrupts : the ISP interrupt specifier
  12. iommus : phandle and IOMMU specifier for the IOMMU that serves the ISP
  13. syscon : the phandle and register offset to the Complex I/O or CSI-PHY
  14. register
  15. ti,phy-type : 0 -- OMAP3ISP_PHY_TYPE_COMPLEX_IO (e.g. 3430)
  16. 1 -- OMAP3ISP_PHY_TYPE_CSIPHY (e.g. 3630)
  17. #clock-cells : Must be 1 --- the ISP provides two external clocks,
  18. cam_xclka and cam_xclkb, at indices 0 and 1,
  19. respectively. Please find more information on common
  20. clock bindings in ../clock/clock-bindings.txt.
  21. Port nodes (optional)
  22. ---------------------
  23. More documentation on these bindings is available in
  24. video-interfaces.txt in the same directory.
  25. reg : The interface:
  26. 0 - parallel (CCDC)
  27. 1 - CSIPHY1 -- CSI2C / CCP2B on 3630;
  28. CSI1 -- CSIb on 3430
  29. 2 - CSIPHY2 -- CSI2A / CCP2B on 3630;
  30. CSI2 -- CSIa on 3430
  31. Optional properties
  32. ===================
  33. vdd-csiphy1-supply : voltage supply of the CSI-2 PHY 1
  34. vdd-csiphy2-supply : voltage supply of the CSI-2 PHY 2
  35. Endpoint nodes
  36. --------------
  37. lane-polarities : lane polarity (required on CSI-2)
  38. 0 -- not inverted; 1 -- inverted
  39. data-lanes : an array of data lanes from 1 to 3. The length can
  40. be either 1 or 2. (required on CSI-2)
  41. clock-lanes : the clock lane (from 1 to 3). (required on CSI-2)
  42. Example
  43. =======
  44. isp@480bc000 {
  45. compatible = "ti,omap3-isp";
  46. reg = <0x480bc000 0x12fc
  47. 0x480bd800 0x0600>;
  48. interrupts = <24>;
  49. iommus = <&mmu_isp>;
  50. syscon = <&scm_conf 0x2f0>;
  51. ti,phy-type = <OMAP3ISP_PHY_TYPE_CSIPHY>;
  52. #clock-cells = <1>;
  53. ports {
  54. #address-cells = <1>;
  55. #size-cells = <0>;
  56. };
  57. };