]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: ov08x40: Move fwnode_graph_get_next_endpoint() call up
authorHans de Goede <hdegoede@redhat.com>
Fri, 20 Dec 2024 14:41:22 +0000 (15:41 +0100)
committerHans Verkuil <hverkuil@xs4all.nl>
Sat, 15 Feb 2025 14:22:38 +0000 (15:22 +0100)
If the bridge has not yet setup the fwnode-graph then
the fwnode_property_read_u32("clock-frequency") call will fail.

Make the fwnode_graph_get_next_endpoint() call the first call in
ov08x40_check_hwcfg() and return -EPROBE_DEFER if it fails.

Tested-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/i2c/ov08x40.c

index 83b49cf114acc7123aafa04cce6accc71c9406e2..908a4752117be6a63ddeb6090305c6325187fb94 100644 (file)
@@ -2151,23 +2151,37 @@ static int ov08x40_check_hwcfg(struct ov08x40 *ov08x, struct device *dev)
        int ret;
        u32 xvclk_rate;
 
-       if (!fwnode)
-               return -ENXIO;
+       /*
+        * Sometimes the fwnode graph is initialized by the bridge driver.
+        * Bridge drivers doing this also add sensor properties, wait for this.
+        */
+       ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
+       if (!ep)
+               return dev_err_probe(dev, -EPROBE_DEFER,
+                                    "waiting for fwnode graph endpoint\n");
+
+       ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
+       fwnode_handle_put(ep);
+       if (ret)
+               return ret;
 
        if (!is_acpi_node(fwnode)) {
                ov08x->xvclk = devm_clk_get(dev, NULL);
                if (IS_ERR(ov08x->xvclk)) {
                        dev_err(dev, "could not get xvclk clock (%pe)\n",
                                ov08x->xvclk);
-                       return PTR_ERR(ov08x->xvclk);
+                       ret = PTR_ERR(ov08x->xvclk);
+                       goto out_err;
                }
 
                xvclk_rate = clk_get_rate(ov08x->xvclk);
 
                ov08x->reset_gpio = devm_gpiod_get_optional(dev, "reset",
                                                            GPIOD_OUT_LOW);
-               if (IS_ERR(ov08x->reset_gpio))
-                       return PTR_ERR(ov08x->reset_gpio);
+               if (IS_ERR(ov08x->reset_gpio)) {
+                       ret = PTR_ERR(ov08x->reset_gpio);
+                       goto out_err;
+               }
 
                for (i = 0; i < ARRAY_SIZE(ov08x40_supply_names); i++)
                        ov08x->supplies[i].supply = ov08x40_supply_names[i];
@@ -2176,31 +2190,23 @@ static int ov08x40_check_hwcfg(struct ov08x40 *ov08x, struct device *dev)
                                              ARRAY_SIZE(ov08x40_supply_names),
                                              ov08x->supplies);
                if (ret)
-                       return ret;
+                       goto out_err;
        } else {
                ret = fwnode_property_read_u32(dev_fwnode(dev), "clock-frequency",
                                               &xvclk_rate);
                if (ret) {
                        dev_err(dev, "can't get clock frequency");
-                       return ret;
+                       goto out_err;
                }
        }
 
        if (xvclk_rate != OV08X40_XVCLK) {
                dev_err(dev, "external clock %d is not supported",
                        xvclk_rate);
-               return -EINVAL;
+               ret = -EINVAL;
+               goto out_err;
        }
 
-       ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
-       if (!ep)
-               return -ENXIO;
-
-       ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg);
-       fwnode_handle_put(ep);
-       if (ret)
-               return ret;
-
        if (bus_cfg.bus.mipi_csi2.num_data_lanes != OV08X40_DATA_LANES) {
                dev_err(dev, "number of CSI2 data lanes %d is not supported",
                        bus_cfg.bus.mipi_csi2.num_data_lanes);