media: ov2680: Add support for more clk setups
authorHans de Goede <hdegoede@redhat.com>
Thu, 3 Aug 2023 09:33:29 +0000 (11:33 +0200)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 14 Aug 2023 18:27:56 +0000 (20:27 +0200)
On ACPI systems the following 2 scenarios are possible:

1. The xvclk is fully controlled by ACPI powermanagement, so there
   is no "xvclk" for the driver to get (since it is abstracted away).
   In this case there will be a "clock-frequency" device property
   to tell the driver the xvclk rate.

2. There is a xvclk modelled in the clk framework for the driver,
   but the clk-generator may not be set to the right frequency
   yet. In this case there will also be a "clock-frequency" device
   property and the driver is expected to set the rate of the xvclk
   through this frequency through the clk framework.

Handle both these scenarios by switching to devm_clk_get_optional()
and checking for a "clock-frequency" device property.

This is modelled after how the same issue was fixed for the ov8865 in
commit 73dcffeb2ff9 ("media: i2c: Support 19.2MHz input clock in ov8865").

Acked-by: Rui Miguel Silva <rmfrfs@gmail.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Reviewed-by: Tommaso Merciai <tomm.merciai@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/i2c/ov2680.c

index cf84701..42be7b0 100644 (file)
@@ -698,6 +698,7 @@ static int ov2680_parse_dt(struct ov2680_dev *sensor)
 {
        struct device *dev = sensor->dev;
        struct gpio_desc *gpio;
+       unsigned int rate = 0;
        int ret;
 
        /*
@@ -718,13 +719,34 @@ static int ov2680_parse_dt(struct ov2680_dev *sensor)
 
        sensor->pwdn_gpio = gpio;
 
-       sensor->xvclk = devm_clk_get(dev, "xvclk");
+       sensor->xvclk = devm_clk_get_optional(dev, "xvclk");
        if (IS_ERR(sensor->xvclk)) {
                dev_err(dev, "xvclk clock missing or invalid\n");
                return PTR_ERR(sensor->xvclk);
        }
 
-       sensor->xvclk_freq = clk_get_rate(sensor->xvclk);
+       /*
+        * We could have either a 24MHz or 19.2MHz clock rate from either DT or
+        * ACPI... but we also need to support the weird IPU3 case which will
+        * have an external clock AND a clock-frequency property. Check for the
+        * clock-frequency property and if found, set that rate if we managed
+        * to acquire a clock. This should cover the ACPI case. If the system
+        * uses devicetree then the configured rate should already be set, so
+        * we can just read it.
+        */
+       ret = fwnode_property_read_u32(dev_fwnode(dev), "clock-frequency",
+                                      &rate);
+       if (ret && !sensor->xvclk)
+               return dev_err_probe(dev, ret, "invalid clock config\n");
+
+       if (!ret && sensor->xvclk) {
+               ret = clk_set_rate(sensor->xvclk, rate);
+               if (ret)
+                       return dev_err_probe(dev, ret,
+                                            "failed to set clock rate\n");
+       }
+
+       sensor->xvclk_freq = rate ?: clk_get_rate(sensor->xvclk);
        if (sensor->xvclk_freq != OV2680_XVCLK_VALUE) {
                dev_err(dev, "wrong xvclk frequency %d HZ, expected: %d Hz\n",
                        sensor->xvclk_freq, OV2680_XVCLK_VALUE);