r8a7742-iwg21d-q7-dbcm-ov5640-single.dtsi 710 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * This include file ties a VIN interface with a single ov5640 sensor on
  4. * the iWave-RZ/G1H Qseven board development platform connected with the
  5. * camera daughter board.
  6. *
  7. * Copyright (C) 2020 Renesas Electronics Corp.
  8. */
  9. #define CAM_ENABLED 1
  10. &CAM_PARENT_I2C {
  11. status = "okay";
  12. ov5640@3c {
  13. compatible = "ovti,ov5640";
  14. reg = <0x3c>;
  15. clocks = <&MCLK_CAM>;
  16. clock-names = "xclk";
  17. AVDD-supply = <&reg_2p8v>;
  18. DOVDD-supply = <&reg_2p8v>;
  19. DVDD-supply = <&reg_1p8v>;
  20. status = "okay";
  21. port {
  22. CAM_EP: endpoint {
  23. bus-width = <8>;
  24. data-shift = <2>;
  25. bus-type = <6>;
  26. pclk-sample = <1>;
  27. remote-endpoint = <&VIN_EP>;
  28. };
  29. };
  30. };
  31. };