summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorYannick Fertre <yannick.fertre@foss.st.com>2021-03-04 13:14:36 +0100
committerPatrice Chotard <patrice.chotard@foss.st.com>2021-03-11 17:55:44 +0100
commitc45f82bb2ee9c923a84b13f3eff8e151fbafa66b (patch)
tree65ac9c4cd70432077a4c44b7ba99a97ab8ab1151 /drivers
parent612f76922756c6fab6992c637b4a5dec2a64beb0 (diff)
downloadu-boot-c45f82bb2ee9c923a84b13f3eff8e151fbafa66b.tar.gz
u-boot-c45f82bb2ee9c923a84b13f3eff8e151fbafa66b.tar.xz
u-boot-c45f82bb2ee9c923a84b13f3eff8e151fbafa66b.zip
video: dw_mipi_dsi: update log of dphy_enable
The DSI phy can be turned on from the DSI digital interface in the dphy_enable() function or from a dedicated DSI phy "wrapper" in phy_ops->init() function. If the STM32MP1 case, the wrapper is used then the dphy_enable() "warning" traces are not relevant. This patch moves these "warning" traces to "debug" traces so they are still available for DSI phy based on the digital interface in debug logging mode, but not there in normal mode for both cases. Note: The related Linux kernel driver uses a "debug" message too. Signed-off-by: Yannick Fertre <yannick.fertre@foss.st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Acked-by: Yannick Fertre <yannick.fertre@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/dw_mipi_dsi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/dw_mipi_dsi.c b/drivers/video/dw_mipi_dsi.c
index a5beed3514..9ae09eec12 100644
--- a/drivers/video/dw_mipi_dsi.c
+++ b/drivers/video/dw_mipi_dsi.c
@@ -721,15 +721,15 @@ static void dw_mipi_dsi_dphy_enable(struct dw_mipi_dsi *dsi)
ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS, val,
val & PHY_LOCK, PHY_STATUS_TIMEOUT_US);
if (ret)
- dev_warn(dsi->dsi_host.dev,
- "failed to wait phy lock state\n");
+ dev_dbg(dsi->dsi_host.dev,
+ "failed to wait phy lock state\n");
ret = readl_poll_timeout(dsi->base + DSI_PHY_STATUS,
val, val & PHY_STOP_STATE_CLK_LANE,
PHY_STATUS_TIMEOUT_US);
if (ret)
- dev_warn(dsi->dsi_host.dev,
- "failed to wait phy clk lane stop state\n");
+ dev_dbg(dsi->dsi_host.dev,
+ "failed to wait phy clk lane stop state\n");
}
static void dw_mipi_dsi_clear_err(struct dw_mipi_dsi *dsi)