hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// SPDX-License-Identifier: GPL-2.0
/*
 * Device Tree Source for the AISTARVISION MIPI Adapter V2.1
 *
 * Copyright (C) 2020 Renesas Electronics Corp.
 */
 
/ {
   ov5645_vdddo_1v8: 1p8v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vdddo";
       regulator-min-microvolt = <1800000>;
       regulator-max-microvolt = <1800000>;
       regulator-always-on;
   };
 
   ov5645_vdda_2v8: 2p8v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vdda";
       regulator-min-microvolt = <2800000>;
       regulator-max-microvolt = <2800000>;
       regulator-always-on;
   };
 
   ov5645_vddd_1v5: 1p5v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vddd";
       regulator-min-microvolt = <1500000>;
       regulator-max-microvolt = <1500000>;
       regulator-always-on;
   };
 
   imx219_vana_2v8: 2p8v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vana";
       regulator-min-microvolt = <2800000>;
       regulator-max-microvolt = <2800000>;
       regulator-always-on;
   };
 
   imx219_vdig_1v8: 1p8v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vdig";
       regulator-min-microvolt = <1500000>;
       regulator-max-microvolt = <1500000>;
       regulator-always-on;
   };
 
   imx219_vddl_1v2: 1p2v {
       compatible = "regulator-fixed";
       regulator-name = "camera_vddl";
       regulator-min-microvolt = <1200000>;
       regulator-max-microvolt = <1200000>;
       regulator-always-on;
   };
 
   osc25250_clk: osc25250_clk {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <24000000>;
   };
};
 
&MIPI_PARENT_I2C {
   ov5645: ov5645@3c {
       compatible = "ovti,ov5645";
       reg = <0x3c>;
       clock-names = "xclk";
       clocks = <&osc25250_clk>;
       clock-frequency = <24000000>;
       vdddo-supply = <&ov5645_vdddo_1v8>;
       vdda-supply = <&ov5645_vdda_2v8>;
       vddd-supply = <&ov5645_vddd_1v5>;
 
       port {
           ov5645_ep: endpoint {
           };
       };
   };
 
   imx219: imx219@10 {
       compatible = "sony,imx219";
       reg = <0x10>;
       clocks = <&osc25250_clk>;
       VANA-supply = <&imx219_vana_2v8>;
       VDIG-supply = <&imx219_vdig_1v8>;
       VDDL-supply = <&imx219_vddl_1v2>;
 
       port {
           imx219_ep: endpoint {
           };
       };
   };
};