Skip to content

Commit 472df18

Browse files
Kaustabh Chakrabortydaeinki
authored andcommitted
drm/exynos: dsi: add support for exynos7870
Add glue layer support for Exynos7870's DSIM IP bridge driver. Signed-off-by: Kaustabh Chakraborty <[email protected]> Signed-off-by: Inki Dae <[email protected]>
1 parent e1361a4 commit 472df18

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/gpu/drm/exynos/exynos_drm_dsi.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@ static const struct samsung_dsim_plat_data exynos5433_dsi_pdata = {
154154
.host_ops = &exynos_dsi_exynos_host_ops,
155155
};
156156

157+
static const struct samsung_dsim_plat_data exynos7870_dsi_pdata = {
158+
.hw_type = DSIM_TYPE_EXYNOS7870,
159+
.host_ops = &exynos_dsi_exynos_host_ops,
160+
};
161+
157162
static const struct of_device_id exynos_dsi_of_match[] = {
158163
{
159164
.compatible = "samsung,exynos3250-mipi-dsi",
@@ -175,6 +180,10 @@ static const struct of_device_id exynos_dsi_of_match[] = {
175180
.compatible = "samsung,exynos5433-mipi-dsi",
176181
.data = &exynos5433_dsi_pdata,
177182
},
183+
{
184+
.compatible = "samsung,exynos7870-mipi-dsi",
185+
.data = &exynos7870_dsi_pdata,
186+
},
178187
{ /* sentinel. */ }
179188
};
180189
MODULE_DEVICE_TABLE(of, exynos_dsi_of_match);

0 commit comments

Comments
 (0)