]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
staging: media: tegra-video: csi: move avdd-dsi-csi-supply from VI to CSI
authorSvyatoslav Ryhel <clamor95@gmail.com>
Tue, 3 Mar 2026 08:42:30 +0000 (10:42 +0200)
committerHans Verkuil <hverkuil+cisco@kernel.org>
Thu, 19 Mar 2026 07:18:36 +0000 (08:18 +0100)
The avdd-dsi-csi-supply is CSI power supply not VI, hence move it to
proper place.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> # Tegra20 VIP
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Reviewed-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
drivers/staging/media/tegra-video/csi.c
drivers/staging/media/tegra-video/csi.h
drivers/staging/media/tegra-video/vi.c
drivers/staging/media/tegra-video/vi.h

index 92078a1f9a4e2b24fcd56f8766f517472c55d242..c4d3514f19b36902fb3fbcdd63b37c6c11252dfc 100644 (file)
@@ -710,6 +710,8 @@ static int __maybe_unused csi_runtime_suspend(struct device *dev)
 
        clk_bulk_disable_unprepare(csi->soc->num_clks, csi->clks);
 
+       regulator_disable(csi->vdd);
+
        return 0;
 }
 
@@ -718,13 +720,23 @@ static int __maybe_unused csi_runtime_resume(struct device *dev)
        struct tegra_csi *csi = dev_get_drvdata(dev);
        int ret;
 
+       ret = regulator_enable(csi->vdd);
+       if (ret) {
+               dev_err(dev, "failed to enable VDD supply: %d\n", ret);
+               return ret;
+       }
+
        ret = clk_bulk_prepare_enable(csi->soc->num_clks, csi->clks);
        if (ret < 0) {
                dev_err(csi->dev, "failed to enable clocks: %d\n", ret);
-               return ret;
+               goto disable_vdd;
        }
 
        return 0;
+
+disable_vdd:
+       regulator_disable(csi->vdd);
+       return ret;
 }
 
 static int tegra_csi_init(struct host1x_client *client)
@@ -802,6 +814,11 @@ static int tegra_csi_probe(struct platform_device *pdev)
                return ret;
        }
 
+       csi->vdd = devm_regulator_get(&pdev->dev, "avdd-dsi-csi");
+       if (IS_ERR(csi->vdd))
+               return dev_err_probe(&pdev->dev, PTR_ERR(csi->vdd),
+                                    "failed to get VDD supply");
+
        if (!pdev->dev.pm_domain) {
                ret = -ENOENT;
                dev_warn(&pdev->dev, "PM domain is not attached: %d\n", ret);
index 2b4d586d3845ea13b78091d98c85d89af4ddeb30..5344088aa022039c0a16b69409e20ff9ccf3b093 100644 (file)
@@ -141,6 +141,7 @@ extern const struct tegra_csi_soc tegra210_csi_soc;
  * @client: host1x_client struct
  * @iomem: register base
  * @clks: clock for CSI and CIL
+ * @vdd: vdd regulator for CSI hardware, usually avdd_dsi_csi
  * @soc: pointer to SoC data structure
  * @ops: csi operations
  * @csi_chans: list head for CSI channels
@@ -150,6 +151,7 @@ struct tegra_csi {
        struct host1x_client client;
        void __iomem *iomem;
        struct clk_bulk_data *clks;
+       struct regulator *vdd;
        const struct tegra_csi_soc *soc;
        const struct tegra_csi_ops *ops;
        struct list_head csi_chans;
index 7032c733577dfaa1e7d4eea40a186787695eb274..f14cdc7b521138b6505904ee86cb8cf64222a970 100644 (file)
@@ -1418,29 +1418,19 @@ static int __maybe_unused vi_runtime_resume(struct device *dev)
        struct tegra_vi *vi = dev_get_drvdata(dev);
        int ret;
 
-       ret = regulator_enable(vi->vdd);
-       if (ret) {
-               dev_err(dev, "failed to enable VDD supply: %d\n", ret);
-               return ret;
-       }
-
        ret = clk_set_rate(vi->clk, vi->soc->vi_max_clk_hz);
        if (ret) {
                dev_err(dev, "failed to set vi clock rate: %d\n", ret);
-               goto disable_vdd;
+               return ret;
        }
 
        ret = clk_prepare_enable(vi->clk);
        if (ret) {
                dev_err(dev, "failed to enable vi clock: %d\n", ret);
-               goto disable_vdd;
+               return ret;
        }
 
        return 0;
-
-disable_vdd:
-       regulator_disable(vi->vdd);
-       return ret;
 }
 
 static int __maybe_unused vi_runtime_suspend(struct device *dev)
@@ -1449,8 +1439,6 @@ static int __maybe_unused vi_runtime_suspend(struct device *dev)
 
        clk_disable_unprepare(vi->clk);
 
-       regulator_disable(vi->vdd);
-
        return 0;
 }
 
@@ -1895,13 +1883,6 @@ static int tegra_vi_probe(struct platform_device *pdev)
                return ret;
        }
 
-       vi->vdd = devm_regulator_get(&pdev->dev, "avdd-dsi-csi");
-       if (IS_ERR(vi->vdd)) {
-               ret = PTR_ERR(vi->vdd);
-               dev_err(&pdev->dev, "failed to get VDD supply: %d\n", ret);
-               return ret;
-       }
-
        if (!pdev->dev.pm_domain) {
                ret = -ENOENT;
                dev_warn(&pdev->dev, "PM domain is not attached: %d\n", ret);
index cac0c0d0e2257a0b3d3e305761567f72d9bc2b9a..bfadde8858d4fc169c932aa5e5b5da680b48a9dc 100644 (file)
@@ -94,7 +94,6 @@ struct tegra_vi_soc {
  * @client: host1x_client struct
  * @iomem: register base
  * @clk: main clock for VI block
- * @vdd: vdd regulator for VI hardware, normally it is avdd_dsi_csi
  * @soc: pointer to SoC data structure
  * @ops: vi operations
  * @vi_chans: list head for VI channels
@@ -104,7 +103,6 @@ struct tegra_vi {
        struct host1x_client client;
        void __iomem *iomem;
        struct clk *clk;
-       struct regulator *vdd;
        const struct tegra_vi_soc *soc;
        const struct tegra_vi_ops *ops;
        struct list_head vi_chans;