]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
media: i2c: ov08x40: Use V4L2 sensor clock helper
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Tue, 12 Aug 2025 21:45:37 +0000 (00:45 +0300)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 9 Sep 2025 13:59:18 +0000 (15:59 +0200)
Several camera sensor drivers access the "clock-frequency" property
directly to retrieve the external clock rate, or modify the clock rate
of the external clock programmatically. Both behaviours are valid on
a subset of ACPI platforms, but are considered deprecated on OF
platforms, and do not support ACPI platforms that implement MIPI DisCo
for Imaging. Implementing them manually in drivers is deprecated, as
that can encourage cargo-cult and lead to differences in behaviour
between drivers. Instead, drivers should use the
devm_v4l2_sensor_clk_get() helper.

This driver supports ACPI and OF platforms. The "clocks" property is
specified as mandatory in the DT bindings and the "clock-frequency"
property is not allowed. The driver retrieves the clock and its rate if
present, and falls back to retrieving the rate from the
"clock-frequency" property otherwise. If the rate does not match the
expected rate, the driver fails probing. This is correct behaviour for
ACPI, and for OF platforms that comply with the documented DT bindings.

Switch to using the devm_v4l2_sensor_clk_get() helper. This does not
change the behaviour on ACPI platforms that specify a clock-frequency
property and don't provide a clock. On ACPI platforms that provide a
clock, the clock rate will be set to the value of the clock-frequency
property. This should not change the behaviour either as this driver
expects the clock to be set to that rate, and wouldn't operate correctly
otherwise.

The behaviour is also unchanged on OF platforms that comply with the DT
bindings. Non-compliant platforms are not expected, but any regression
could easily be handled by switching to the
devm_v4l2_sensor_clk_get_legacy() helper designed to preserve
non-compliant behaviour.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Mehdi Djait <mehdi.djait@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
drivers/media/i2c/ov08x40.c

index 9bf78ed3cce25bfb363a24a1d92b9988a489a13f..5eaf454f4763b6daa052edbbf884f678291348e0 100644 (file)
@@ -2230,23 +2230,14 @@ static int ov08x40_check_hwcfg(struct ov08x40 *ov08x)
        if (ret)
                goto out_err;
 
-       ov08x->xvclk = devm_clk_get_optional(dev, NULL);
+       ov08x->xvclk = devm_v4l2_sensor_clk_get(dev, NULL);
        if (IS_ERR(ov08x->xvclk)) {
                ret = dev_err_probe(dev, PTR_ERR(ov08x->xvclk),
                                    "getting xvclk\n");
                goto out_err;
        }
-       if (ov08x->xvclk) {
-               xvclk_rate = clk_get_rate(ov08x->xvclk);
-       } else {
-               ret = fwnode_property_read_u32(dev_fwnode(dev), "clock-frequency",
-                                              &xvclk_rate);
-               if (ret) {
-                       dev_err(dev, "can't get clock frequency\n");
-                       goto out_err;
-               }
-       }
 
+       xvclk_rate = clk_get_rate(ov08x->xvclk);
        if (xvclk_rate != OV08X40_XVCLK) {
                dev_err(dev, "external clock %d is not supported\n",
                        xvclk_rate);