struct drm_connector_state *new_conn_state =
                drm_atomic_get_new_connector_state(state, connector);
 
-       if (old_conn_state->hdmi.output_bpc != new_conn_state->hdmi.output_bpc) {
+       if (old_conn_state->hdmi.output_bpc != new_conn_state->hdmi.output_bpc ||
+           old_conn_state->hdmi.output_format != new_conn_state->hdmi.output_format) {
                struct drm_crtc *crtc = new_conn_state->crtc;
                struct drm_crtc_state *crtc_state;
 
 
        if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
            connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) {
                drm_printf(p, "\toutput_bpc=%u\n", state->hdmi.output_bpc);
+               drm_printf(p, "\toutput_format=%s\n",
+                          drm_hdmi_connector_get_output_format_name(state->hdmi.output_format));
        }
 
        if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK)
 
  * @funcs: callbacks for this connector
  * @connector_type: user visible type of the connector
  * @ddc: optional pointer to the associated ddc adapter
+ * @supported_formats: Bitmask of @hdmi_colorspace listing supported output formats
  * @max_bpc: Maximum bits per char the HDMI connector supports
  *
  * Initialises a preallocated HDMI connector. Connectors can be
                             const struct drm_connector_funcs *funcs,
                             int connector_type,
                             struct i2c_adapter *ddc,
+                            unsigned long supported_formats,
                             unsigned int max_bpc)
 {
        int ret;
              connector_type == DRM_MODE_CONNECTOR_HDMIB))
                return -EINVAL;
 
+       if (!supported_formats || !(supported_formats & BIT(HDMI_COLORSPACE_RGB)))
+               return -EINVAL;
+
        if (!(max_bpc == 8 || max_bpc == 10 || max_bpc == 12))
                return -EINVAL;
 
        if (ret)
                return ret;
 
+       connector->hdmi.supported_formats = supported_formats;
+
        /*
         * drm_connector_attach_max_bpc_property() requires the
         * connector to have a state.
        BIT(DRM_MODE_COLORIMETRY_BT2020_CYCC) |
        BIT(DRM_MODE_COLORIMETRY_BT2020_YCC);
 
+static const char * const output_format_str[] = {
+       [HDMI_COLORSPACE_RGB]           = "RGB",
+       [HDMI_COLORSPACE_YUV420]        = "YUV 4:2:0",
+       [HDMI_COLORSPACE_YUV422]        = "YUV 4:2:2",
+       [HDMI_COLORSPACE_YUV444]        = "YUV 4:4:4",
+};
+
+/*
+ * drm_hdmi_connector_get_output_format_name() - Return a string for HDMI connector output format
+ * @fmt: Output format to compute name of
+ *
+ * Returns: the name of the output format, or NULL if the type is not
+ * valid.
+ */
+const char *
+drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt)
+{
+       if (fmt >= ARRAY_SIZE(output_format_str))
+               return NULL;
+
+       return output_format_str[fmt];
+}
+EXPORT_SYMBOL(drm_hdmi_connector_get_output_format_name);
+
 /**
  * DOC: standard connector properties
  *
 
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       8);
        KUNIT_EXPECT_EQ(test, ret, 0);
 }
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       NULL,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       8);
        KUNIT_EXPECT_EQ(test, ret, 0);
 }
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       9);
        KUNIT_EXPECT_LT(test, ret, 0);
 }
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       0);
        KUNIT_EXPECT_LT(test, ret, 0);
 }
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       8);
        KUNIT_EXPECT_EQ(test, ret, 0);
 
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       10);
        KUNIT_EXPECT_EQ(test, ret, 0);
 
                                       &dummy_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       12);
        KUNIT_EXPECT_EQ(test, ret, 0);
 
                                       &dummy_funcs,
                                       connector_type,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       8);
        KUNIT_EXPECT_EQ(test, ret, 0);
 }
                                       &dummy_funcs,
                                       connector_type,
                                       &priv->ddc,
+                                      BIT(HDMI_COLORSPACE_RGB),
                                       8);
        KUNIT_EXPECT_LT(test, ret, 0);
 }
 
 static
 struct drm_atomic_helper_connector_hdmi_priv *
 drm_atomic_helper_connector_hdmi_init(struct kunit *test,
+                                     unsigned int formats,
                                      unsigned int max_bpc)
 {
        struct drm_atomic_helper_connector_hdmi_priv *priv;
                                       &dummy_connector_funcs,
                                       DRM_MODE_CONNECTOR_HDMIA,
                                       NULL,
+                                      formats,
                                       max_bpc);
        KUNIT_ASSERT_EQ(test, ret, 0);
 
        struct drm_crtc *crtc;
        int ret;
 
-       priv = drm_atomic_helper_connector_hdmi_init(test, 10);
+       priv = drm_atomic_helper_connector_hdmi_init(test,
+                                                    BIT(HDMI_COLORSPACE_RGB),
+                                                    10);
        KUNIT_ASSERT_NOT_NULL(test, priv);
 
        ctx = drm_kunit_helper_acquire_ctx_alloc(test);
        struct drm_crtc *crtc;
        int ret;
 
-       priv = drm_atomic_helper_connector_hdmi_init(test, 10);
+       priv = drm_atomic_helper_connector_hdmi_init(test,
+                                                    BIT(HDMI_COLORSPACE_RGB),
+                                                    10);
        KUNIT_ASSERT_NOT_NULL(test, priv);
 
        ctx = drm_kunit_helper_acquire_ctx_alloc(test);
        struct drm_connector_state *conn_state;
        struct drm_connector *conn;
 
-       priv = drm_atomic_helper_connector_hdmi_init(test, 8);
+       priv = drm_atomic_helper_connector_hdmi_init(test,
+                                                    BIT(HDMI_COLORSPACE_RGB),
+                                                    8);
        KUNIT_ASSERT_NOT_NULL(test, priv);
 
        conn = &priv->connector;
        struct drm_connector_state *conn_state;
        struct drm_connector *conn;
 
-       priv = drm_atomic_helper_connector_hdmi_init(test, 10);
+       priv = drm_atomic_helper_connector_hdmi_init(test,
+                                                    BIT(HDMI_COLORSPACE_RGB),
+                                                    10);
        KUNIT_ASSERT_NOT_NULL(test, priv);
 
        conn = &priv->connector;
        struct drm_connector_state *conn_state;
        struct drm_connector *conn;
 
-       priv = drm_atomic_helper_connector_hdmi_init(test, 12);
+       priv = drm_atomic_helper_connector_hdmi_init(test,
+                                                    BIT(HDMI_COLORSPACE_RGB),
+                                                    12);
        KUNIT_ASSERT_NOT_NULL(test, priv);
 
        conn = &priv->connector;
 
        DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
 };
 
+const char *
+drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt);
+
 /**
  * struct drm_monitor_range_info - Panel's Monitor range in EDID for
  * &drm_display_info
                 * @output_bpc: Bits per color channel to output.
                 */
                unsigned int output_bpc;
+
+               /**
+                * @output_format: Pixel format to output in.
+                */
+               enum hdmi_colorspace output_format;
        } hdmi;
 };
 
 
        /** @hdr_sink_metadata: HDR Metadata Information read from sink */
        struct hdr_sink_metadata hdr_sink_metadata;
+
+       /**
+        * @hdmi: HDMI-related variable and properties.
+        */
+       struct {
+               /**
+                * @supported_formats: Bitmask of @hdmi_colorspace
+                * supported by the controller.
+                */
+               unsigned long supported_formats;
+       } hdmi;
 };
 
 #define obj_to_connector(x) container_of(x, struct drm_connector, base)
                             const struct drm_connector_funcs *funcs,
                             int connector_type,
                             struct i2c_adapter *ddc,
+                            unsigned long supported_formats,
                             unsigned int max_bpc);
 void drm_connector_attach_edid_property(struct drm_connector *connector);
 int drm_connector_register(struct drm_connector *connector);