drm/panel-simple: Allow the bus format to be read from DT for panel-dpi

The "panel-dpi" compatible string configures panel from device tree,
but it doesn't provide any way of configuring the bus format (colour
representation), nor does it populate it.

Add a DT parameter "bus-format" that allows the MEDIA_BUS_FMT_xxx value
to be specified from device tree.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
This commit is contained in:
Dave Stevenson
2021-12-02 18:16:21 +00:00
committed by Dom Cobley
parent ea10d8bc8a
commit 4f472454c2

View File

@@ -488,6 +488,7 @@ static int panel_dpi_probe(struct device *dev,
of_property_read_u32(np, "width-mm", &desc->size.width); of_property_read_u32(np, "width-mm", &desc->size.width);
of_property_read_u32(np, "height-mm", &desc->size.height); of_property_read_u32(np, "height-mm", &desc->size.height);
of_property_read_u32(np, "bus-format", &desc->bus_format);
/* Extract bus_flags from display_timing */ /* Extract bus_flags from display_timing */
bus_flags = 0; bus_flags = 0;