mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

Now that the driver has been updated to drop fetching the clk reference by name we no longer need the clock-names property in the ov5645 sensor node. This is in preparation for removal for clock-names property from the DT binding. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
96 lines
2.0 KiB
Plaintext
96 lines
2.0 KiB
Plaintext
// 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_OV5645_PARENT_I2C {
|
|
ov5645: ov5645@3c {
|
|
compatible = "ovti,ov5645";
|
|
reg = <0x3c>;
|
|
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 {
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&MIPI_IMX219_PARENT_I2C {
|
|
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 {
|
|
};
|
|
};
|
|
};
|
|
};
|