Re: [PATCH 3/5] drm/bridge: dw-hdmi: Add support for dynamic output format setup

2019-05-27 Thread Jernej Škrabec
Hi!

Dne ponedeljek, 20. maj 2019 ob 15:37:51 CEST je Neil Armstrong napisal(a):
> In order to support the HDMI2.0 YUV420, YUV422 and the 10bit, 12bit and
> 16bits outpu use cases, add support for the recently introduced bridge
> callback format_set().
> 
> This callback will setup the new input format and encoding from encoder,
> then these information will be used instead of the default ones
> in the dw_hdmi_setup() function.
> 
> To determine the output bus format, has been added :
> - support for the connector display_info bus_formats, where a fixed
>   output bus format can be enforced by the encoder
> - support for synami output bus format depending on the input format,
>   especially the YUV420 input bus format, enforcing YUV420 as output
>   with the correct bit depth
> 
> Signed-off-by: Neil Armstrong 
> ---
>  drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 121 --
>  1 file changed, 112 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index
> b50c49caf7ae..284ce59be8f8 100644
> --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> @@ -103,6 +103,8 @@ struct hdmi_vmode {
>  };
> 
>  struct hdmi_data_info {
> + unsigned int bridge_in_bus_format;
> + unsigned int bridge_in_encoding;
>   unsigned int enc_in_bus_format;
>   unsigned int enc_out_bus_format;
>   unsigned int enc_in_encoding;
> @@ -1838,8 +1840,51 @@ static void hdmi_disable_overflow_interrupts(struct
> dw_hdmi *hdmi) HDMI_IH_MUTE_FC_STAT2);
>  }
> 
> +/*
> + * The DW-HDMI CSC can only interpolate and decimate from 4:2:2 to
> 4:4:4/RGB + * and from 4:4:4/RGB to 4:2:2.
> + * Default to RGB output except if 4:2:0 as input, which CSC cannot
> convert. + */
> +static unsigned long dw_hdmi_determine_output_bus_format(struct dw_hdmi
> *hdmi) +{
> + unsigned int depth = hdmi_bus_fmt_color_depth(
> + hdmi-
>hdmi_data.enc_in_bus_format);
> + bool is_420 = hdmi_bus_fmt_is_yuv420(hdmi-
>hdmi_data.enc_in_bus_format);
> + unsigned long fmt = MEDIA_BUS_FMT_RGB888_1X24;
> +
> + switch (depth) {
> + case 8:
> + if (is_420)
> + fmt = MEDIA_BUS_FMT_UYYVYY8_0_5X24;
> + else
> + fmt = MEDIA_BUS_FMT_RGB888_1X24;
> + break;
> + case 10:
> + if (is_420)
> + fmt = MEDIA_BUS_FMT_UYYVYY10_0_5X30;
> + else
> + fmt = MEDIA_BUS_FMT_RGB101010_1X30;
> + break;
> + case 12:
> + if (is_420)
> + fmt = MEDIA_BUS_FMT_UYYVYY12_0_5X36;
> + else
> + fmt = MEDIA_BUS_FMT_RGB121212_1X36;
> + break;
> + case 16:
> + if (is_420)
> + fmt = MEDIA_BUS_FMT_UYYVYY16_0_5X48;
> + else
> + fmt = MEDIA_BUS_FMT_RGB161616_1X48;
> + break;
> + }
> +
> + return fmt;
> +}
> +
>  static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct drm_display_mode
> *mode) {
> + struct drm_display_info *display = >connector.display_info;
>   int ret;
> 
>   hdmi_disable_overflow_interrupts(hdmi);
> @@ -1853,9 +1898,9 @@ static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct
> drm_display_mode *mode) }
> 
>   if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
> - (hdmi->vic == 21) || (hdmi->vic == 22) ||
> - (hdmi->vic == 2) || (hdmi->vic == 3) ||
> - (hdmi->vic == 17) || (hdmi->vic == 18))
> +  (hdmi->vic == 21) || (hdmi->vic == 22) ||
> +  (hdmi->vic == 2) || (hdmi->vic == 3) ||
> +  (hdmi->vic == 17) || (hdmi->vic == 18))
>   hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
>   else
>   hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
> @@ -1863,22 +1908,29 @@ static int dw_hdmi_setup(struct dw_hdmi *hdmi,
> struct drm_display_mode *mode)
> hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
>   hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
> 
> - /* TOFIX: Get input format from plat data or fallback to RGB888 */
> - if (hdmi->plat_data->input_bus_format)
> + if (hdmi->hdmi_data.bridge_in_bus_format)
> + hdmi->hdmi_data.enc_in_bus_format =
> + hdmi->hdmi_data.bridge_in_bus_format;
> + else if (hdmi->plat_data->input_bus_format)
>   hdmi->hdmi_data.enc_in_bus_format =
>   hdmi->plat_data->input_bus_format;
>   else
>   hdmi->hdmi_data.enc_in_bus_format = 
MEDIA_BUS_FMT_RGB888_1X24;
> 
> - /* TOFIX: Get input encoding from plat data or fallback to none */
> - if (hdmi->plat_data->input_bus_encoding)
> + if (hdmi->hdmi_data.bridge_in_encoding)
> + hdmi->hdmi_data.enc_in_encoding =
> + 

[PATCH 3/5] drm/bridge: dw-hdmi: Add support for dynamic output format setup

2019-05-20 Thread Neil Armstrong
In order to support the HDMI2.0 YUV420, YUV422 and the 10bit, 12bit and
16bits outpu use cases, add support for the recently introduced bridge
callback format_set().

This callback will setup the new input format and encoding from encoder,
then these information will be used instead of the default ones
in the dw_hdmi_setup() function.

To determine the output bus format, has been added :
- support for the connector display_info bus_formats, where a fixed
  output bus format can be enforced by the encoder
- support for synami output bus format depending on the input format,
  especially the YUV420 input bus format, enforcing YUV420 as output
  with the correct bit depth

Signed-off-by: Neil Armstrong 
---
 drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 121 --
 1 file changed, 112 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c 
b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
index b50c49caf7ae..284ce59be8f8 100644
--- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
@@ -103,6 +103,8 @@ struct hdmi_vmode {
 };
 
 struct hdmi_data_info {
+   unsigned int bridge_in_bus_format;
+   unsigned int bridge_in_encoding;
unsigned int enc_in_bus_format;
unsigned int enc_out_bus_format;
unsigned int enc_in_encoding;
@@ -1838,8 +1840,51 @@ static void hdmi_disable_overflow_interrupts(struct 
dw_hdmi *hdmi)
HDMI_IH_MUTE_FC_STAT2);
 }
 
+/*
+ * The DW-HDMI CSC can only interpolate and decimate from 4:2:2 to 4:4:4/RGB
+ * and from 4:4:4/RGB to 4:2:2.
+ * Default to RGB output except if 4:2:0 as input, which CSC cannot convert.
+ */
+static unsigned long dw_hdmi_determine_output_bus_format(struct dw_hdmi *hdmi)
+{
+   unsigned int depth = hdmi_bus_fmt_color_depth(
+   hdmi->hdmi_data.enc_in_bus_format);
+   bool is_420 = hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_in_bus_format);
+   unsigned long fmt = MEDIA_BUS_FMT_RGB888_1X24;
+
+   switch (depth) {
+   case 8:
+   if (is_420)
+   fmt = MEDIA_BUS_FMT_UYYVYY8_0_5X24;
+   else
+   fmt = MEDIA_BUS_FMT_RGB888_1X24;
+   break;
+   case 10:
+   if (is_420)
+   fmt = MEDIA_BUS_FMT_UYYVYY10_0_5X30;
+   else
+   fmt = MEDIA_BUS_FMT_RGB101010_1X30;
+   break;
+   case 12:
+   if (is_420)
+   fmt = MEDIA_BUS_FMT_UYYVYY12_0_5X36;
+   else
+   fmt = MEDIA_BUS_FMT_RGB121212_1X36;
+   break;
+   case 16:
+   if (is_420)
+   fmt = MEDIA_BUS_FMT_UYYVYY16_0_5X48;
+   else
+   fmt = MEDIA_BUS_FMT_RGB161616_1X48;
+   break;
+   }
+
+   return fmt;
+}
+
 static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
 {
+   struct drm_display_info *display = >connector.display_info;
int ret;
 
hdmi_disable_overflow_interrupts(hdmi);
@@ -1853,9 +1898,9 @@ static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct 
drm_display_mode *mode)
}
 
if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
-   (hdmi->vic == 21) || (hdmi->vic == 22) ||
-   (hdmi->vic == 2) || (hdmi->vic == 3) ||
-   (hdmi->vic == 17) || (hdmi->vic == 18))
+(hdmi->vic == 21) || (hdmi->vic == 22) ||
+(hdmi->vic == 2) || (hdmi->vic == 3) ||
+(hdmi->vic == 17) || (hdmi->vic == 18))
hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
else
hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
@@ -1863,22 +1908,29 @@ static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct 
drm_display_mode *mode)
hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
 
-   /* TOFIX: Get input format from plat data or fallback to RGB888 */
-   if (hdmi->plat_data->input_bus_format)
+   if (hdmi->hdmi_data.bridge_in_bus_format)
+   hdmi->hdmi_data.enc_in_bus_format =
+   hdmi->hdmi_data.bridge_in_bus_format;
+   else if (hdmi->plat_data->input_bus_format)
hdmi->hdmi_data.enc_in_bus_format =
hdmi->plat_data->input_bus_format;
else
hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
 
-   /* TOFIX: Get input encoding from plat data or fallback to none */
-   if (hdmi->plat_data->input_bus_encoding)
+   if (hdmi->hdmi_data.bridge_in_encoding)
+   hdmi->hdmi_data.enc_in_encoding =
+   hdmi->hdmi_data.bridge_in_encoding;
+   else if (hdmi->plat_data->input_bus_encoding)
hdmi->hdmi_data.enc_in_encoding =