r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi 553 B

1234567891011121314151617181920212223242526272829
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * This include file ties a VIN interface with a single ov7725 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. ov7725@21 {
  13. compatible = "ovti,ov7725";
  14. reg = <0x21>;
  15. clocks = <&MCLK_CAM>;
  16. status = "okay";
  17. port {
  18. CAM_EP: endpoint {
  19. bus-width = <8>;
  20. bus-type = <6>;
  21. remote-endpoint = <&VIN_EP>;
  22. };
  23. };
  24. };
  25. };