mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
drm/mediatek: replace writeb() with mtk_dsi_mask()
The writeb() is unavailable in mt8173. Because the mt8173 dsi module doesn't support 8bit mode access. Signed-off-by: Jitao Shi <jitao.shi@mediatek.com> Signed-off-by: CK Hu <ck.hu@mediatek.com>
This commit is contained in:
parent
bb6bc2982a
commit
89d0e3f882
|
|
@ -962,7 +962,9 @@ static void mtk_dsi_cmdq(struct mtk_dsi *dsi, const struct mipi_dsi_msg *msg)
|
|||
}
|
||||
|
||||
for (i = 0; i < msg->tx_len; i++)
|
||||
writeb(tx_buf[i], dsi->regs + reg_cmdq_off + cmdq_off + i);
|
||||
mtk_dsi_mask(dsi, (reg_cmdq_off + cmdq_off + i) & (~0x3U),
|
||||
(0xffUL << (((i + cmdq_off) & 3U) * 8U)),
|
||||
tx_buf[i] << (((i + cmdq_off) & 3U) * 8U));
|
||||
|
||||
mtk_dsi_mask(dsi, reg_cmdq_off, cmdq_mask, reg_val);
|
||||
mtk_dsi_mask(dsi, DSI_CMDQ_SIZE, CMDQ_SIZE, cmdq_size);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user