drm: panel: simple-panel: add support for bus_format retrieval
Provide a way to specify panel requirement in terms of supported media bus format (particularly useful for panels connected to an RGB or LVDS bus). Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Acked-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
b5571e9df6
commit
795f7ab3a4
|
@ -61,6 +61,8 @@ struct panel_desc {
|
||||||
unsigned int disable;
|
unsigned int disable;
|
||||||
unsigned int unprepare;
|
unsigned int unprepare;
|
||||||
} delay;
|
} delay;
|
||||||
|
|
||||||
|
u32 bus_format;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct panel_simple {
|
struct panel_simple {
|
||||||
|
@ -111,6 +113,9 @@ static int panel_simple_get_fixed_modes(struct panel_simple *panel)
|
||||||
connector->display_info.bpc = panel->desc->bpc;
|
connector->display_info.bpc = panel->desc->bpc;
|
||||||
connector->display_info.width_mm = panel->desc->size.width;
|
connector->display_info.width_mm = panel->desc->size.width;
|
||||||
connector->display_info.height_mm = panel->desc->size.height;
|
connector->display_info.height_mm = panel->desc->size.height;
|
||||||
|
if (panel->desc->bus_format)
|
||||||
|
drm_display_info_set_bus_formats(&connector->display_info,
|
||||||
|
&panel->desc->bus_format, 1);
|
||||||
|
|
||||||
return num;
|
return num;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue