[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230720-fpdlink-additions-v2-8-b91b1eca2ad3@ideasonboard.com>
Date: Thu, 20 Jul 2023 13:30:39 +0300
From: Tomi Valkeinen <tomi.valkeinen@...asonboard.com>
To: Mauro Carvalho Chehab <mchehab@...nel.org>,
Luca Ceresoli <luca.ceresoli@...tlin.com>,
Andy Shevchenko <andriy.shevchenko@...el.com>,
Laurent Pinchart <laurent.pinchart@...asonboard.com>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Hans Verkuil <hverkuil@...all.nl>,
Satish Nagireddy <satish.nagireddy@...cruise.com>,
Matti Vaittinen <mazziesaccount@...il.com>
Cc: linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
Tomi Valkeinen <tomi.valkeinen@...asonboard.com>
Subject: [PATCH v2 8/8] media: i2c: ds90ub960: Rename
RXPORT_MODE_CSI2_ASYNC to RXPORT_MODE_CSI2_NONSYNC
FPD-Link has an operating mode that used to be called "asynchronous" in
the hardware documentation, but that has been changed to non-synchronous
already quite a while back. The ub960 driver still had one instance of
the old naming, so let's rename it.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@...asonboard.com>
---
drivers/media/i2c/ds90ub960.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/media/i2c/ds90ub960.c b/drivers/media/i2c/ds90ub960.c
index ea819fb6e99b..2ed4d4763a02 100644
--- a/drivers/media/i2c/ds90ub960.c
+++ b/drivers/media/i2c/ds90ub960.c
@@ -415,8 +415,8 @@ enum ub960_rxport_mode {
RXPORT_MODE_RAW12_HF = 1,
RXPORT_MODE_RAW12_LF = 2,
RXPORT_MODE_CSI2_SYNC = 3,
- RXPORT_MODE_CSI2_ASYNC = 4,
- RXPORT_MODE_LAST = RXPORT_MODE_CSI2_ASYNC,
+ RXPORT_MODE_CSI2_NONSYNC = 4,
+ RXPORT_MODE_LAST = RXPORT_MODE_CSI2_NONSYNC,
};
enum ub960_rxport_cdr {
@@ -1609,7 +1609,7 @@ static unsigned long ub960_calc_bc_clk_rate_ub960(struct ub960_data *priv,
div = 1;
break;
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
mult = 2;
div = 5;
break;
@@ -1633,7 +1633,7 @@ static unsigned long ub960_calc_bc_clk_rate_ub9702(struct ub960_data *priv,
case RXPORT_MODE_CSI2_SYNC:
return 47187500;
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
return 9437500;
default:
@@ -1840,7 +1840,7 @@ static void ub960_init_rx_port_ub960(struct ub960_data *priv,
bc_freq_val = 0;
break;
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
bc_freq_val = 2;
break;
@@ -1878,7 +1878,7 @@ static void ub960_init_rx_port_ub960(struct ub960_data *priv,
return;
case RXPORT_MODE_CSI2_SYNC:
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
/* CSI-2 Mode (DS90UB953-Q1 compatible) */
ub960_rxport_update_bits(priv, nport, UB960_RR_PORT_CONFIG, 0x3,
0x0);
@@ -1938,7 +1938,7 @@ static void ub960_init_rx_port_ub9702_fpd3(struct ub960_data *priv,
fpd_func_mode = 2;
break;
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
bc_freq_val = 2;
fpd_func_mode = 2;
break;
@@ -2032,7 +2032,7 @@ static void ub960_init_rx_port_ub9702_fpd4(struct ub960_data *priv,
bc_freq_val = 6;
break;
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
bc_freq_val = 2;
break;
@@ -2098,7 +2098,7 @@ static void ub960_init_rx_port_ub9702(struct ub960_data *priv,
return;
case RXPORT_MODE_CSI2_SYNC:
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
break;
}
@@ -2444,7 +2444,7 @@ static int ub960_configure_ports_for_streaming(struct ub960_data *priv,
/* For the rest, we are only interested in parallel busses */
if (rxport->rx_mode == RXPORT_MODE_CSI2_SYNC ||
- rxport->rx_mode == RXPORT_MODE_CSI2_ASYNC)
+ rxport->rx_mode == RXPORT_MODE_CSI2_NONSYNC)
continue;
if (rx_data[nport].num_streams > 2)
@@ -2508,7 +2508,7 @@ static int ub960_configure_ports_for_streaming(struct ub960_data *priv,
break;
case RXPORT_MODE_CSI2_SYNC:
- case RXPORT_MODE_CSI2_ASYNC:
+ case RXPORT_MODE_CSI2_NONSYNC:
if (!priv->hw_data->is_ub9702) {
/* Map all VCs from this port to the same VC */
ub960_rxport_write(priv, nport, UB960_RR_CSI_VC_MAP,
--
2.34.1
Powered by blists - more mailing lists