samsung-s5k5baf.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Samsung S5K5BAF UXGA 1/5" 2M CMOS Image Sensor with embedded SoC ISP
  2. --------------------------------------------------------------------
  3. Required properties:
  4. - compatible : "samsung,s5k5baf";
  5. - reg : I2C slave address of the sensor;
  6. - vdda-supply : analog power supply 2.8V (2.6V to 3.0V);
  7. - vddreg-supply : regulator input power supply 1.8V (1.7V to 1.9V)
  8. or 2.8V (2.6V to 3.0);
  9. - vddio-supply : I/O power supply 1.8V (1.65V to 1.95V)
  10. or 2.8V (2.5V to 3.1V);
  11. - stbyn-gpios : GPIO connected to STDBYN pin;
  12. - rstn-gpios : GPIO connected to RSTN pin;
  13. - clocks : list of phandle and clock specifier pairs
  14. according to common clock bindings for the
  15. clocks described in clock-names;
  16. - clock-names : should include "mclk" for the sensor's master clock;
  17. Optional properties:
  18. - clock-frequency : the frequency at which the "mclk" clock should be
  19. configured to operate, in Hz; if this property is not
  20. specified default 24 MHz value will be used.
  21. The device node should contain one 'port' child node with one child 'endpoint'
  22. node, according to the bindings defined in Documentation/devicetree/bindings/
  23. media/video-interfaces.txt. The following are properties specific to those
  24. nodes.
  25. endpoint node
  26. -------------
  27. - data-lanes : (optional) specifies MIPI CSI-2 data lanes as covered in
  28. video-interfaces.txt. If present it should be <1> - the device
  29. supports only one data lane without re-mapping.
  30. Example:
  31. s5k5bafx@2d {
  32. compatible = "samsung,s5k5baf";
  33. reg = <0x2d>;
  34. vdda-supply = <&cam_io_en_reg>;
  35. vddreg-supply = <&vt_core_15v_reg>;
  36. vddio-supply = <&vtcam_reg>;
  37. stbyn-gpios = <&gpl2 0 1>;
  38. rstn-gpios = <&gpl2 1 1>;
  39. clock-names = "mclk";
  40. clocks = <&clock_cam 0>;
  41. clock-frequency = <24000000>;
  42. port {
  43. s5k5bafx_ep: endpoint {
  44. remote-endpoint = <&csis1_ep>;
  45. data-lanes = <1>;
  46. };
  47. };
  48. };