@@ -503,29 +503,6 @@ static const struct panel_desc edt_etm0700g0dh6 = {
},
};
-static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
- .clock = 32260,
- .hdisplay = 800,
- .hsync_start = 800 + 168,
- .hsync_end = 800 + 168 + 64,
- .htotal = 800 + 168 + 64 + 88,
- .vdisplay = 480,
- .vsync_start = 480 + 37,
- .vsync_end = 480 + 37 + 2,
- .vtotal = 480 + 37 + 2 + 8,
- .vrefresh = 60,
-};
-
-static const struct panel_desc foxlink_fl500wvr00_a0t = {
- .modes = &foxlink_fl500wvr00_a0t_mode,
- .num_modes = 1,
- .size = {
- .width = 108,
- .height = 65,
- },
- .bus_format = VIDEO_BUS_FMT_RGB888_1X24,
-};
-
static const struct drm_display_mode innolux_n116bge_mode = {
.clock = 71000,
.hdisplay = 1366,
@@ -645,9 +622,6 @@ static const struct of_device_id platform_of_match[] = {
.compatible = "edt,etm0700g0dh6",
.data = &edt_etm0700g0dh6,
}, {
- .compatible = "foxlink,fl500wvr00-a0t",
- .data = &foxlink_fl500wvr00_a0t,
- }, {
.compatible = "innolux,n116bge",
.data = &innolux_n116bge,
}, {
@@ -867,8 +841,36 @@ struct panel_dpi {
struct mipi_dpi_device *dev;
};
+static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
+ .clock = 32260,
+ .hdisplay = 800,
+ .hsync_start = 800 + 168,
+ .hsync_end = 800 + 168 + 64,
+ .htotal = 800 + 168 + 64 + 88,
+ .vdisplay = 480,
+ .vsync_start = 480 + 37,
+ .vsync_end = 480 + 37 + 2,
+ .vtotal = 480 + 37 + 2 + 8,
+ .vrefresh = 60,
+};
+
+static const struct panel_desc_dpi foxlink_fl500wvr00_a0t = {
+ .desc = {
+ .modes = &foxlink_fl500wvr00_a0t_mode,
+ .num_modes = 1,
+ .size = {
+ .width = 108,
+ .height = 65,
+ },
+ },
+ .format = VIDEO_BUS_FMT_RGB888_1X24,
+};
+
static const struct of_device_id dpi_of_match[] = {
{
+ .compatible = "foxlink,fl500wvr00-a0t",
+ .data = &foxlink_fl500wvr00_a0t,
+ }, {
/* sentinel */
}
};
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> --- drivers/gpu/drm/panel/panel-simple.c | 54 +++++++++++++++++++----------------- 1 file changed, 28 insertions(+), 26 deletions(-)