Commit 814d5341 authored by Shuijing Li's avatar Shuijing Li Committed by Chun-Kuang Hu

drm/mediatek: Add mt8188 dsi compatible to mtk_dsi.c

Add the compatible because there are different definitions for cmdq
register bit control in mt8188.
Signed-off-by: default avatarShuijing Li <shuijing.li@mediatek.com>
Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://patchwork.kernel.org/project/dri-devel/patch/20230911120800.17369-4-shuijing.li@mediatek.com/Signed-off-by: default avatarChun-Kuang Hu <chunkuang.hu@kernel.org>
parent 2ccf6e25
...@@ -765,6 +765,8 @@ static const struct of_device_id mtk_ddp_comp_dt_ids[] = { ...@@ -765,6 +765,8 @@ static const struct of_device_id mtk_ddp_comp_dt_ids[] = {
.data = (void *)MTK_DSI }, .data = (void *)MTK_DSI },
{ .compatible = "mediatek,mt8186-dsi", { .compatible = "mediatek,mt8186-dsi",
.data = (void *)MTK_DSI }, .data = (void *)MTK_DSI },
{ .compatible = "mediatek,mt8188-dsi",
.data = (void *)MTK_DSI },
{ } { }
}; };
......
...@@ -1212,6 +1212,13 @@ static const struct mtk_dsi_driver_data mt8186_dsi_driver_data = { ...@@ -1212,6 +1212,13 @@ static const struct mtk_dsi_driver_data mt8186_dsi_driver_data = {
.has_size_ctl = true, .has_size_ctl = true,
}; };
static const struct mtk_dsi_driver_data mt8188_dsi_driver_data = {
.reg_cmdq_off = 0xd00,
.has_shadow_ctl = true,
.has_size_ctl = true,
.cmdq_long_packet_ctl = true,
};
static const struct of_device_id mtk_dsi_of_match[] = { static const struct of_device_id mtk_dsi_of_match[] = {
{ .compatible = "mediatek,mt2701-dsi", { .compatible = "mediatek,mt2701-dsi",
.data = &mt2701_dsi_driver_data }, .data = &mt2701_dsi_driver_data },
...@@ -1221,6 +1228,8 @@ static const struct of_device_id mtk_dsi_of_match[] = { ...@@ -1221,6 +1228,8 @@ static const struct of_device_id mtk_dsi_of_match[] = {
.data = &mt8183_dsi_driver_data }, .data = &mt8183_dsi_driver_data },
{ .compatible = "mediatek,mt8186-dsi", { .compatible = "mediatek,mt8186-dsi",
.data = &mt8186_dsi_driver_data }, .data = &mt8186_dsi_driver_data },
{ .compatible = "mediatek,mt8188-dsi",
.data = &mt8188_dsi_driver_data },
{ }, { },
}; };
MODULE_DEVICE_TABLE(of, mtk_dsi_of_match); MODULE_DEVICE_TABLE(of, mtk_dsi_of_match);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment