disp: msm: add physical address info when dumping display registers

In dumping display registers, physical address will be appended after
each block name. This is to support register compare between kernel
and UEFI.

Change-Id: Ic20d3e2bd4c95aa7c71c4b646a149f7e83ad731a
Signed-off-by: Yu Wu <zwy@codeaurora.org>
此提交包含在:
Yu Wu
2021-04-15 14:20:28 +08:00
提交者 Gerrit - the friendly Code Review server
父節點 7773b23c21
當前提交 55340a43c3
共有 9 個檔案被更改,包括 79 行新增19 行删除

查看文件

@@ -689,7 +689,9 @@ int dsi_phy_drv_init(struct msm_dsi_phy *dsi_phy)
snprintf(dbg_name, DSI_DEBUG_NAME_LEN, "dsi%d_phy", dsi_phy->index);
sde_dbg_reg_register_base(dbg_name, dsi_phy->hw.base,
msm_iomap_size(dsi_phy->pdev, "dsi_phy"), SDE_DBG_DSI);
msm_iomap_size(dsi_phy->pdev, "dsi_phy"),
msm_get_phys_addr(dsi_phy->pdev, "dsi_phy"), SDE_DBG_DSI);
return 0;
}