media: i2c: ds90ub960: Configure CSI-2 continuous clock
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Mon, 31 Jul 2023 13:24:36 +0000 (16:24 +0300)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Thu, 10 Aug 2023 05:58:37 +0000 (07:58 +0200)
Use 'clock-noncontinuous' from DT to configure the
continuous/non-continuous clock setting for the TX ports.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/i2c/ds90ub960.c

index 4833b39..b840c91 100644 (file)
 
 #define UB960_TR_CSI_CTL                       0x33
 #define UB960_TR_CSI_CTL_CSI_CAL_EN            BIT(6)
+#define UB960_TR_CSI_CTL_CSI_CONTS_CLOCK       BIT(1)
 #define UB960_TR_CSI_CTL_CSI_ENABLE            BIT(0)
 
 #define UB960_TR_CSI_CTL2                      0x34
@@ -485,6 +486,7 @@ struct ub960_txport {
        u8                      nport;  /* TX port number, and index in priv->txport[] */
 
        u32 num_data_lanes;
+       bool non_continous_clk;
 };
 
 struct ub960_data {
@@ -1133,6 +1135,9 @@ static int ub960_parse_dt_txport(struct ub960_data *priv,
                goto err_free_txport;
        }
 
+       txport->non_continous_clk = vep.bus.mipi_csi2.flags &
+                                   V4L2_MBUS_CSI2_NONCONTINUOUS_CLOCK;
+
        txport->num_data_lanes = vep.bus.mipi_csi2.num_data_lanes;
 
        if (vep.nr_of_link_frequencies != 1) {
@@ -1744,6 +1749,9 @@ static void ub960_init_tx_port(struct ub960_data *priv,
 
        csi_ctl |= (4 - txport->num_data_lanes) << 4;
 
+       if (!txport->non_continous_clk)
+               csi_ctl |= UB960_TR_CSI_CTL_CSI_CONTS_CLOCK;
+
        ub960_txport_write(priv, nport, UB960_TR_CSI_CTL, csi_ctl);
 }