With the hardware readout infrastructure now in place in the KMS
framework, we can provide it for the tidss driver.

Signed-off-by: Maxime Ripard <[email protected]>
---
 drivers/gpu/drm/tidss/tidss_crtc.c    |  93 +++++++++++++
 drivers/gpu/drm/tidss/tidss_dispc.c   | 251 +++++++++++++++++++++++++++++++++-
 drivers/gpu/drm/tidss/tidss_dispc.h   |  15 ++
 drivers/gpu/drm/tidss/tidss_encoder.c |  13 ++
 drivers/gpu/drm/tidss/tidss_kms.c     |  14 +-
 drivers/gpu/drm/tidss/tidss_plane.c   | 154 +++++++++++++++++++++
 6 files changed, 534 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/tidss/tidss_crtc.c 
b/drivers/gpu/drm/tidss/tidss_crtc.c
index 400329aa2200..cdd5dd4a95cd 100644
--- a/drivers/gpu/drm/tidss/tidss_crtc.c
+++ b/drivers/gpu/drm/tidss/tidss_crtc.c
@@ -2,12 +2,16 @@
 /*
  * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
  * Author: Tomi Valkeinen <[email protected]>
  */
 
+#include <linux/clk.h>
+
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
+#include <drm/drm_atomic_sro_helper.h>
+#include <drm/drm_atomic_uapi.h>
 #include <drm/drm_crtc.h>
 #include <drm/drm_gem_dma_helper.h>
 #include <drm/drm_print.h>
 #include <drm/drm_vblank.h>
 
@@ -368,10 +372,96 @@ static struct drm_crtc_state 
*tidss_crtc_create_state(struct drm_crtc *crtc)
        __drm_atomic_helper_crtc_state_init(&tstate->base, crtc);
 
        return &tstate->base;
 }
 
+static int tidss_crtc_readout_state(struct drm_crtc *crtc,
+                                   struct drm_atomic_sro_state *state,
+                                   struct drm_crtc_state *crtc_state)
+{
+       struct drm_device *ddev = crtc->dev;
+       struct tidss_device *tidss = to_tidss(ddev);
+       struct dispc_device *dispc = tidss->dispc;
+       struct tidss_crtc_state *tstate = to_tidss_crtc_state(crtc_state);
+       struct tidss_crtc *tcrtc =
+               to_tidss_crtc(crtc);
+       struct drm_display_mode mode;
+       int ret;
+
+       tidss_runtime_get(tidss);
+
+       if (!dispc_vp_is_enabled(dispc, tcrtc->hw_videoport))
+               goto out;
+
+       /*
+        * The display is active, we need to enable our clock to have
+        * proper reference count.
+        */
+       WARN_ON(dispc_vp_enable_clk(tidss->dispc, tcrtc->hw_videoport));
+
+       tstate->base.active = 1;
+       tstate->base.enable = 1;
+
+       ret = dispc_vp_readout_mode(dispc, tcrtc->hw_videoport, &mode);
+       if (ret)
+               goto err_runtime_put;
+
+       ret = drm_atomic_set_mode_for_crtc(&tstate->base, &mode);
+       if (WARN_ON(ret))
+               goto err_runtime_put;
+
+       drm_mode_copy(&tstate->base.adjusted_mode, &mode);
+
+       tstate->bus_flags = dispc_vp_get_bus_flags(dispc, tcrtc->hw_videoport);
+
+       /*
+        * The active connectors and planes will be filled by their
+        * respective readout callbacks.
+        */
+
+out:
+       tidss_runtime_put(tidss);
+       return 0;
+
+err_runtime_put:
+       tidss_runtime_put(tidss);
+       return ret;
+}
+
+static void tidss_crtc_install_state(struct drm_crtc *crtc,
+                                    struct drm_crtc_state *crtc_state)
+{
+       struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
+       struct drm_device *ddev = crtc->dev;
+       struct tidss_device *tidss = to_tidss(ddev);
+       int ret;
+
+       tidss_runtime_get(tidss);
+
+       ret = dispc_vp_enable_clk(tidss->dispc, tcrtc->hw_videoport);
+       if (ret != 0)
+               return;
+
+       /* Turn vertical blanking interrupt reporting on. */
+       drm_crtc_vblank_on(crtc);
+}
+
+static bool tidss_crtc_compare_state(struct drm_crtc *crtc,
+                                    struct drm_printer *p,
+                                    struct drm_crtc_state *expected,
+                                    struct drm_crtc_state *actual)
+{
+       struct tidss_crtc_state *t_expected = to_tidss_crtc_state(expected);
+       struct tidss_crtc_state *t_actual = to_tidss_crtc_state(actual);
+       int ret = drm_atomic_helper_crtc_compare_state(crtc, p, expected, 
actual);
+
+       STATE_CHECK_U32_X(ret, p, crtc->name, t_expected, t_actual, bus_format);
+       STATE_CHECK_U32_X(ret, p, crtc->name, t_expected, t_actual, bus_flags);
+
+       return ret;
+}
+
 static struct drm_crtc_state *tidss_crtc_duplicate_state(struct drm_crtc *crtc)
 {
        struct tidss_crtc_state *state, *current_state;
 
        if (WARN_ON(!crtc->state))
@@ -404,10 +494,13 @@ static void tidss_crtc_destroy(struct drm_crtc *crtc)
 static const struct drm_crtc_funcs tidss_crtc_funcs = {
        .destroy = tidss_crtc_destroy,
        .set_config = drm_atomic_helper_set_config,
        .page_flip = drm_atomic_helper_page_flip,
        .atomic_create_state = tidss_crtc_create_state,
+       .atomic_sro_readout_state = tidss_crtc_readout_state,
+       .atomic_sro_install_state = tidss_crtc_install_state,
+       .atomic_sro_compare_state = tidss_crtc_compare_state,
        .atomic_duplicate_state = tidss_crtc_duplicate_state,
        .atomic_destroy_state = tidss_crtc_destroy_state,
        .enable_vblank = tidss_crtc_enable_vblank,
        .disable_vblank = tidss_crtc_disable_vblank,
 };
diff --git a/drivers/gpu/drm/tidss/tidss_dispc.c 
b/drivers/gpu/drm/tidss/tidss_dispc.c
index 4cda3824864b..85a5a4a7db35 100644
--- a/drivers/gpu/drm/tidss/tidss_dispc.c
+++ b/drivers/gpu/drm/tidss/tidss_dispc.c
@@ -1206,10 +1206,16 @@ void dispc_vp_enable(struct dispc_device *dispc, u32 
hw_videoport)
 {
        VP_REG_FLD_MOD(dispc, hw_videoport, DISPC_VP_CONTROL, 1,
                       DISPC_VP_CONTROL_ENABLE_MASK);
 }
 
+bool dispc_vp_is_enabled(struct dispc_device *dispc, u32 hw_videoport)
+{
+       return FIELD_GET(DISPC_VP_CONTROL_ENABLE_MASK,
+                        dispc_vp_read(dispc, hw_videoport, DISPC_VP_CONTROL));
+}
+
 void dispc_vp_disable(struct dispc_device *dispc, u32 hw_videoport)
 {
        VP_REG_FLD_MOD(dispc, hw_videoport, DISPC_VP_CONTROL, 0,
                       DISPC_VP_CONTROL_ENABLE_MASK);
 }
@@ -1459,10 +1465,167 @@ int dispc_vp_set_clk_rate(struct dispc_device *dispc, 
u32 hw_videoport,
                hw_videoport, clk_get_rate(dispc->vp_clk[hw_videoport]), rate);
 
        return 0;
 }
 
+static unsigned long calc_pixel_clock_hz(unsigned int htotal,
+                                        unsigned int vtotal,
+                                        unsigned int refresh,
+                                        unsigned int freq_div)
+{
+       unsigned long rate = (unsigned long)htotal * vtotal * refresh;
+
+       return (rate * 1000) / freq_div;
+}
+
+static const unsigned int refresh_tries[] = {30, 50, 60};
+static const unsigned int refresh_factors_tries[] = {1000, 1001};
+
+static unsigned int dispc_find_closest_refresh_rate_from_clk(struct drm_device 
*dev,
+                                                            struct clk *clk,
+                                                            unsigned int 
htotal,
+                                                            unsigned int 
vtotal,
+                                                            unsigned long 
*pixel_clock_hz)
+{
+       unsigned long actual_clk_rate = clk_get_rate(clk);
+       unsigned long best_clk_rate = 0;
+       unsigned long best_rate_diff = ULONG_MAX;
+       unsigned int best_refresh = 0;
+       unsigned int i, j;
+
+       drm_dbg(dev, "Actual clock rate is %lu\n", actual_clk_rate);
+
+       for (i = 0; i < ARRAY_SIZE(refresh_tries); i++) {
+               for (j = 0; j < ARRAY_SIZE(refresh_factors_tries); j++) {
+                       unsigned int try_refresh = refresh_tries[i];
+                       unsigned int try_factor = refresh_factors_tries[j];
+                       unsigned long try_clk_rate = calc_pixel_clock_hz(htotal,
+                                                                        vtotal,
+                                                                        
try_refresh,
+                                                                        
try_factor);
+                       unsigned long diff;
+
+                       drm_dbg(dev, "Evaluating refresh %u, factor %u, rate 
%lu\n",
+                               try_refresh, try_factor, try_clk_rate);
+
+                       if (try_clk_rate == actual_clk_rate) {
+                               drm_dbg(dev, "Found exact match. Stopping.\n");
+                               best_refresh = try_refresh;
+                               best_clk_rate = try_clk_rate;
+                               goto out;
+                       }
+
+
+                       diff = abs_diff(actual_clk_rate, try_clk_rate);
+                       if (diff < best_rate_diff) {
+                               drm_dbg(dev, "Found new candidate. Difference 
is %lu\n", diff);
+                               best_refresh = try_refresh;
+                               best_clk_rate = try_clk_rate;
+                               best_rate_diff = diff;
+                       }
+               }
+       }
+
+out:
+       drm_dbg(dev, "Best candidate is %u Hz, pixel clock rate %lu Hz",
+               best_refresh, best_clk_rate);
+
+       if (pixel_clock_hz)
+               *pixel_clock_hz = best_clk_rate;
+
+       return best_refresh;
+}
+
+int dispc_vp_readout_mode(struct dispc_device *dispc,
+                         u32 hw_videoport,
+                         struct drm_display_mode *mode)
+{
+       struct tidss_device *tidss = dispc->tidss;
+       struct drm_device *dev = &tidss->ddev;
+       unsigned long pixel_clock;
+       unsigned int refresh;
+       u16 hdisplay, hfp, hsw, hbp;
+       u16 vdisplay, vfp, vsw, vbp;
+       u32 val;
+
+       val = dispc_vp_read(dispc, hw_videoport, DISPC_VP_SIZE_SCREEN);
+       hdisplay = FIELD_GET(DISPC_VP_SIZE_SCREEN_HDISPLAY_MASK, val) + 1;
+       vdisplay = FIELD_GET(DISPC_VP_SIZE_SCREEN_VDISPLAY_MASK, val) + 1;
+
+       mode->hdisplay = hdisplay;
+       mode->vdisplay = vdisplay;
+
+       val = dispc_vp_read(dispc, hw_videoport, DISPC_VP_TIMING_H);
+       hsw = FIELD_GET(DISPC_VP_TIMING_H_SYNC_PULSE_MASK, val) + 1;
+       hfp = FIELD_GET(DISPC_VP_TIMING_H_FRONT_PORCH_MASK, val) + 1;
+       hbp = FIELD_GET(DISPC_VP_TIMING_H_BACK_PORCH_MASK, val) + 1;
+
+       mode->hsync_start = hdisplay + hfp;
+       mode->hsync_end = hdisplay + hfp + hsw;
+       mode->htotal = hdisplay + hfp + hsw + hbp;
+
+       val = dispc_vp_read(dispc, hw_videoport, DISPC_VP_TIMING_V);
+       vsw = FIELD_GET(DISPC_VP_TIMING_V_SYNC_PULSE_MASK, val) + 1;
+       vfp = FIELD_GET(DISPC_VP_TIMING_V_FRONT_PORCH_MASK, val);
+       vbp = FIELD_GET(DISPC_VP_TIMING_V_BACK_PORCH_MASK, val);
+
+       mode->vsync_start = vdisplay + vfp;
+       mode->vsync_end = vdisplay + vfp + vsw;
+       mode->vtotal = vdisplay + vfp + vsw + vbp;
+
+       refresh = dispc_find_closest_refresh_rate_from_clk(dev,
+                                                          
dispc->vp_clk[hw_videoport],
+                                                          mode->htotal,
+                                                          mode->vtotal,
+                                                          &pixel_clock);
+       if (!refresh)
+               return -EINVAL;
+
+       mode->clock = pixel_clock / 1000;
+
+       val = dispc_vp_read(dispc, hw_videoport, DISPC_VP_POL_FREQ);
+       if (FIELD_GET(DISPC_VP_POL_FREQ_IVS_MASK, val))
+               mode->flags |= DRM_MODE_FLAG_NVSYNC;
+       else
+               mode->flags |= DRM_MODE_FLAG_PVSYNC;
+
+       if (FIELD_GET(DISPC_VP_POL_FREQ_IHS_MASK, val))
+               mode->flags |= DRM_MODE_FLAG_NHSYNC;
+       else
+               mode->flags |= DRM_MODE_FLAG_PHSYNC;
+
+       mode->type |= DRM_MODE_TYPE_DRIVER;
+       drm_mode_set_name(mode);
+       drm_mode_set_crtcinfo(mode, 0);
+
+       return 0;
+}
+
+u32 dispc_vp_get_bus_flags(struct dispc_device *dispc, u32 hw_videoport)
+{
+       u32 flags = 0;
+       u32 val;
+
+       val = dispc_vp_read(dispc, hw_videoport, DISPC_VP_POL_FREQ);
+       if (FIELD_GET(DISPC_VP_POL_FREQ_IPC_MASK, val))
+               flags |= DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE;
+       else
+               flags |= DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE;
+
+       if (FIELD_GET(DISPC_VP_POL_FREQ_IEO_MASK, val))
+               flags |= DRM_BUS_FLAG_DE_LOW;
+       else
+               flags |= DRM_BUS_FLAG_DE_HIGH;
+
+       if (FIELD_GET(DISPC_VP_POL_FREQ_RF_MASK, val))
+               flags |= DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE;
+       else
+               flags |= DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE;
+
+       return flags;
+}
+
 /* OVR */
 static void dispc_k2g_ovr_set_plane(struct dispc_device *dispc,
                                    u32 hw_plane, u32 hw_videoport,
                                    u32 x, u32 y, u32 layer)
 {
@@ -2104,10 +2267,21 @@ static const struct {
        { DRM_FORMAT_UYVY, 0x3f, },
 
        { DRM_FORMAT_NV12, 0x3d, },
 };
 
+static u32 dispc_plane_find_fourcc_by_dss_code(u8 code)
+{
+       unsigned int i;
+
+       for (i = 0; i < ARRAY_SIZE(dispc_color_formats); ++i)
+               if (dispc_color_formats[i].dss_code == code)
+                       return dispc_color_formats[i].fourcc;
+
+       return 0;
+}
+
 static void dispc_plane_set_pixel_format(struct dispc_device *dispc,
                                         u32 hw_plane, u32 fourcc)
 {
        unsigned int i;
 
@@ -2301,16 +2475,87 @@ void dispc_plane_setup(struct dispc_device *dispc, u32 
hw_plane,
        else
                VID_REG_FLD_MOD(dispc, hw_plane, DISPC_VID_ATTRIBUTES, 0,
                                DISPC_VID_ATTRIBUTES_PREMULTIPLYALPHA_MASK);
 }
 
+void dispc_plane_get_picture_size(struct dispc_device *dispc, u32 hw_plane,
+                                 unsigned int *width, unsigned int *height)
+{
+       u32 val;
+       u16 w, h;
+
+       val = dispc_vid_read(dispc, hw_plane, DISPC_VID_PICTURE_SIZE);
+       w = FIELD_GET(DISPC_VID_PICTURE_SIZE_MEMSIZEX_MASK, val);
+       h = FIELD_GET(DISPC_VID_PICTURE_SIZE_MEMSIZEY_MASK, val);
+
+       *width = w + 1;
+       *height = h + 1;
+}
+
+void dispc_plane_get_size(struct dispc_device *dispc, u32 hw_plane,
+                         unsigned int *width, unsigned int *height)
+{
+       bool lite = dispc->feat->vid_info[hw_plane].is_lite;
+
+       if (!lite) {
+               u32 val = dispc_vid_read(dispc, hw_plane, DISPC_VID_SIZE);
+               *width = FIELD_GET(DISPC_VID_SIZE_SIZEX_MASK, val) + 1;
+               *height = FIELD_GET(DISPC_VID_SIZE_SIZEY_MASK, val) + 1;
+       } else {
+               dispc_plane_get_picture_size(dispc, hw_plane, width, height);
+       }
+}
+
+const struct drm_format_info *
+dispc_plane_get_current_format(struct dispc_device *dispc, u32 hw_plane)
+{
+       const struct drm_format_info *info;
+       u32 fourcc;
+       u32 val;
+
+       val = dispc_vid_read(dispc, hw_plane, DISPC_VID_ATTRIBUTES);
+       fourcc = dispc_plane_find_fourcc_by_dss_code(
+               FIELD_GET(DISPC_VID_ATTRIBUTES_FORMAT_MASK, val));
+       if (!fourcc)
+               return ERR_PTR(-EINVAL);
+
+       info = drm_format_info(fourcc);
+       if (!info)
+               return ERR_PTR(-EINVAL);
+
+       return info;
+}
+
+u8 dispc_plane_get_global_alpha(struct dispc_device *dispc, u32 hw_plane)
+{
+       return FIELD_GET(DISPC_VID_GLOBAL_ALPHA_GLOBALALPHA_MASK,
+                        dispc_vid_read(dispc, hw_plane,
+                                       DISPC_VID_GLOBAL_ALPHA));
+}
+
+u16 dispc_plane_get_blend_mode(struct dispc_device *dispc, u32 hw_plane)
+{
+       u32 val = dispc_vid_read(dispc, hw_plane, DISPC_VID_ATTRIBUTES);
+
+       if (FIELD_GET(DISPC_VID_ATTRIBUTES_PREMULTIPLYALPHA_MASK, val))
+               return DRM_MODE_BLEND_PREMULTI;
+       else
+               return DRM_MODE_BLEND_COVERAGE;
+}
+
 void dispc_plane_enable(struct dispc_device *dispc, u32 hw_plane, bool enable)
 {
        VID_REG_FLD_MOD(dispc, hw_plane, DISPC_VID_ATTRIBUTES, !!enable,
                        DISPC_VID_ATTRIBUTES_ENABLE_MASK);
 }
 
+bool dispc_plane_is_enabled(struct dispc_device *dispc, u32 hw_plane)
+{
+       return FIELD_GET(DISPC_VID_ATTRIBUTES_ENABLE_MASK,
+                        dispc_vid_read(dispc, hw_plane, DISPC_VID_ATTRIBUTES));
+}
+
 static u32 dispc_vid_get_fifo_size(struct dispc_device *dispc, u32 hw_plane)
 {
        return VID_REG_GET(dispc, hw_plane, DISPC_VID_BUF_SIZE_STATUS,
                           DISPC_VID_BUF_SIZE_STATUS_BUFSIZE_MASK);
 }
@@ -2939,11 +3184,11 @@ static int dispc_softreset(struct dispc_device *dispc)
        }
 
        return 0;
 }
 
-static int dispc_init_hw(struct dispc_device *dispc)
+int dispc_reset_hw(struct dispc_device *dispc)
 {
        struct device *dev = dispc->dev;
        int ret;
 
        ret = pm_runtime_set_active(dev);
@@ -3089,13 +3334,9 @@ int dispc_init(struct tidss_device *tidss)
        dev_dbg(dev, "DSS fclk %lu Hz\n", clk_get_rate(dispc->fclk));
 
        of_property_read_u32(dispc->dev->of_node, "max-memory-bandwidth",
                             &dispc->memory_bandwidth_limit);
 
-       r = dispc_init_hw(dispc);
-       if (r)
-               return r;
-
        tidss->dispc = dispc;
 
        return 0;
 }
diff --git a/drivers/gpu/drm/tidss/tidss_dispc.h 
b/drivers/gpu/drm/tidss/tidss_dispc.h
index 739d211d0018..d425df7b9c18 100644
--- a/drivers/gpu/drm/tidss/tidss_dispc.h
+++ b/drivers/gpu/drm/tidss/tidss_dispc.h
@@ -115,10 +115,11 @@ void dispc_ovr_enable_layer(struct dispc_device *dispc,
                            u32 hw_videoport, u32 layer, bool enable);
 
 void dispc_vp_prepare(struct dispc_device *dispc, u32 hw_videoport,
                      const struct drm_crtc_state *state);
 void dispc_vp_enable(struct dispc_device *dispc, u32 hw_videoport);
+bool dispc_vp_is_enabled(struct dispc_device *dispc, u32 hw_videoport);
 void dispc_vp_disable(struct dispc_device *dispc, u32 hw_videoport);
 void dispc_vp_unprepare(struct dispc_device *dispc, u32 hw_videoport);
 bool dispc_vp_go_busy(struct dispc_device *dispc, u32 hw_videoport);
 void dispc_vp_go(struct dispc_device *dispc, u32 hw_videoport);
 int dispc_vp_bus_check(struct dispc_device *dispc, u32 hw_videoport,
@@ -130,22 +131,36 @@ int dispc_vp_enable_clk(struct dispc_device *dispc, u32 
hw_videoport);
 void dispc_vp_disable_clk(struct dispc_device *dispc, u32 hw_videoport);
 int dispc_vp_set_clk_rate(struct dispc_device *dispc, u32 hw_videoport,
                          unsigned long rate);
 void dispc_vp_setup(struct dispc_device *dispc, u32 hw_videoport,
                    const struct drm_crtc_state *state, bool newmodeset);
+int dispc_vp_readout_mode(struct dispc_device *dispc,
+                         u32 hw_videoport,
+                         struct drm_display_mode *mode);
+u32 dispc_vp_get_bus_flags(struct dispc_device *dispc, u32 hw_videoport);
 
 int dispc_runtime_suspend(struct dispc_device *dispc);
 int dispc_runtime_resume(struct dispc_device *dispc);
 
 int dispc_plane_check(struct dispc_device *dispc, u32 hw_plane,
                      const struct drm_plane_state *state,
                      u32 hw_videoport);
 void dispc_plane_setup(struct dispc_device *dispc, u32 hw_plane,
                       const struct drm_plane_state *state,
                       u32 hw_videoport);
+void dispc_plane_get_picture_size(struct dispc_device *dispc, u32 hw_plane,
+                                 unsigned int *width, unsigned int *height);
+void dispc_plane_get_size(struct dispc_device *dispc, u32 hw_plane,
+                         unsigned int *width, unsigned int *height);
+const struct drm_format_info *
+dispc_plane_get_current_format(struct dispc_device *dispc, u32 hw_plane);
+u8 dispc_plane_get_global_alpha(struct dispc_device *dispc, u32 hw_plane);
+u16 dispc_plane_get_blend_mode(struct dispc_device *dispc, u32 hw_plane);
 void dispc_plane_enable(struct dispc_device *dispc, u32 hw_plane, bool enable);
+bool dispc_plane_is_enabled(struct dispc_device *dispc, u32 hw_plane);
 const u32 *dispc_plane_formats(struct dispc_device *dispc, unsigned int *len);
 
+int dispc_reset_hw(struct dispc_device *dispc);
 int dispc_init(struct tidss_device *tidss);
 void dispc_remove(struct tidss_device *tidss);
 
 #endif
diff --git a/drivers/gpu/drm/tidss/tidss_encoder.c 
b/drivers/gpu/drm/tidss/tidss_encoder.c
index 34db8d2a3792..d0325b4fed15 100644
--- a/drivers/gpu/drm/tidss/tidss_encoder.c
+++ b/drivers/gpu/drm/tidss/tidss_encoder.c
@@ -5,10 +5,11 @@
  */
 
 #include <linux/export.h>
 
 #include <drm/drm_atomic_helper.h>
+#include <drm/drm_atomic_sro_helper.h>
 #include <drm/drm_bridge.h>
 #include <drm/drm_bridge_connector.h>
 #include <drm/drm_crtc.h>
 #include <drm/drm_modeset_helper_vtables.h>
 #include <drm/drm_panel.h>
@@ -71,16 +72,28 @@ static int tidss_bridge_atomic_check(struct drm_bridge 
*bridge,
        }
 
        return 0;
 }
 
+static int tidss_readout_state(struct drm_bridge *bridge,
+                              struct drm_atomic_sro_state *state,
+                              struct drm_bridge_state *bridge_state,
+                              struct drm_crtc_state *crtc_state,
+                              struct drm_connector_state *conn_state)
+{
+       // TODO: Actually implement it
+       return 0;
+}
+
 static const struct drm_bridge_funcs tidss_bridge_funcs = {
        .attach                         = tidss_bridge_attach,
        .atomic_check                   = tidss_bridge_atomic_check,
        .atomic_reset                   = drm_atomic_helper_bridge_reset,
        .atomic_duplicate_state         = 
drm_atomic_helper_bridge_duplicate_state,
        .atomic_destroy_state           = 
drm_atomic_helper_bridge_destroy_state,
+       .atomic_sro_readout_state       = tidss_readout_state,
+       .atomic_sro_compare_state       = 
drm_atomic_helper_bridge_compare_state,
 };
 
 int tidss_encoder_create(struct tidss_device *tidss,
                         struct drm_bridge *next_bridge,
                         u32 encoder_type, u32 possible_crtcs)
diff --git a/drivers/gpu/drm/tidss/tidss_kms.c 
b/drivers/gpu/drm/tidss/tidss_kms.c
index 1512ee2574b6..78fc712f1cd8 100644
--- a/drivers/gpu/drm/tidss/tidss_kms.c
+++ b/drivers/gpu/drm/tidss/tidss_kms.c
@@ -4,10 +4,12 @@
  * Author: Tomi Valkeinen <[email protected]>
  */
 
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
+#include <drm/drm_atomic_sro.h>
+#include <drm/drm_atomic_sro_helper.h>
 #include <drm/drm_bridge.h>
 #include <drm/drm_gem_framebuffer_helper.h>
 #include <drm/drm_of.h>
 #include <drm/drm_panel.h>
 #include <drm/drm_vblank.h>
@@ -61,11 +63,12 @@ static void tidss_atomic_commit_tail(struct 
drm_atomic_commit *old_state)
 
        tidss_runtime_put(tidss);
 }
 
 static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
-       .atomic_commit_tail = tidss_atomic_commit_tail,
+       .atomic_commit_tail     = tidss_atomic_commit_tail,
+       .atomic_sro_build_state = drm_atomic_helper_sro_build_state,
 };
 
 static int tidss_atomic_check(struct drm_device *ddev,
                              struct drm_atomic_commit *state)
 {
@@ -114,14 +117,23 @@ static int tidss_atomic_check(struct drm_device *ddev,
        }
 
        return 0;
 }
 
+static void tidss_hw_reset(struct drm_device *dev)
+{
+       struct tidss_device *tidss = to_tidss(dev);
+
+       dispc_reset_hw(tidss->dispc);
+}
+
 static const struct drm_mode_config_funcs mode_config_funcs = {
        .fb_create = drm_gem_fb_create,
        .atomic_check = tidss_atomic_check,
        .atomic_commit = drm_atomic_helper_commit,
+       .atomic_sro_readout_state = drm_atomic_helper_sro_readout_state,
+       .hw_reset = tidss_hw_reset,
 };
 
 static int tidss_dispc_modeset_init(struct tidss_device *tidss)
 {
        struct device *dev = tidss->dev;
diff --git a/drivers/gpu/drm/tidss/tidss_plane.c 
b/drivers/gpu/drm/tidss/tidss_plane.c
index 6d82976c2db1..eddbe33bbab7 100644
--- a/drivers/gpu/drm/tidss/tidss_plane.c
+++ b/drivers/gpu/drm/tidss/tidss_plane.c
@@ -4,16 +4,19 @@
  * Author: Tomi Valkeinen <[email protected]>
  */
 
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
+#include <drm/drm_atomic_sro.h>
+#include <drm/drm_atomic_sro_helper.h>
 #include <drm/drm_blend.h>
 #include <drm/drm_crtc.h>
 #include <drm/drm_fb_dma_helper.h>
 #include <drm/drm_fourcc.h>
 #include <drm/drm_framebuffer.h>
 #include <drm/drm_gem_atomic_helper.h>
+#include <drm/drm_gem_framebuffer_helper.h>
 
 #include "tidss_crtc.h"
 #include "tidss_dispc.h"
 #include "tidss_drv.h"
 #include "tidss_plane.h"
@@ -173,17 +176,168 @@ static const struct drm_plane_helper_funcs 
tidss_primary_plane_helper_funcs = {
        .atomic_enable = tidss_plane_atomic_enable,
        .atomic_disable = tidss_plane_atomic_disable,
        .get_scanout_buffer = drm_fb_dma_get_scanout_buffer,
 };
 
+static const struct drm_framebuffer_funcs tidss_plane_readout_fb_funcs = {
+       .destroy        = drm_gem_fb_destroy,
+};
+
+static struct drm_framebuffer *tidss_plane_readout_fb(struct drm_plane *plane)
+{
+       struct drm_device *ddev = plane->dev;
+       struct tidss_device *tidss = to_tidss(ddev);
+       struct dispc_device *dispc = tidss->dispc;
+       struct tidss_plane *tplane = to_tidss_plane(plane);
+       const struct drm_format_info *info;
+       struct drm_framebuffer *fb;
+       int ret;
+
+       fb = kzalloc_obj(*fb);
+       if (!fb)
+               return ERR_PTR(-ENOMEM);
+
+       fb->dev = plane->dev;
+
+       info = dispc_plane_get_current_format(dispc, tplane->hw_plane_id);
+       if (IS_ERR(info)) {
+               ret = PTR_ERR(info);
+               goto err_free_fb;
+       }
+
+       // TODO: Figure out YUV and multiplanar formats
+       if (info->is_yuv) {
+               ret = -EINVAL;
+               goto err_free_fb;
+       }
+
+       fb->format = info;
+
+       dispc_plane_get_picture_size(dispc, tplane->hw_plane_id, &fb->width,
+                                    &fb->height);
+
+       /*
+        * TODO: Figure out what the row increment is about exactly and if we 
should
+        * take it into account?
+        */
+       fb->pitches[0] = fb->width * (drm_format_info_bpp(info, 0) / 8);
+
+       // TODO: Figure out the offsets
+       fb->offsets[0] = 0;
+
+       ret = drm_framebuffer_init(plane->dev, fb, 
&tidss_plane_readout_fb_funcs);
+       if (ret) {
+               kfree(fb);
+               return ERR_PTR(ret);
+       }
+
+       return fb;
+
+err_free_fb:
+       kfree(fb);
+       return ERR_PTR(ret);
+}
+
+static struct drm_crtc *tidss_plane_readout_crtc(struct drm_plane *plane)
+{
+       struct drm_device *dev = plane->dev;
+
+       if (dev->num_crtcs != 1)
+               return ERR_PTR(-EINVAL);
+
+       return list_first_entry(&dev->mode_config.crtc_list, struct drm_crtc, 
head);
+}
+
+static int tidss_plane_atomic_readout_state(struct drm_plane *plane,
+                                           struct drm_atomic_sro_state *state,
+                                           struct drm_plane_state *plane_state)
+{
+       struct drm_device *ddev = plane->dev;
+       struct tidss_device *tidss = to_tidss(ddev);
+       struct dispc_device *dispc = tidss->dispc;
+       struct tidss_plane *tplane = to_tidss_plane(plane);
+       struct drm_crtc_state *crtc_state;
+       struct drm_framebuffer *fb;
+       struct drm_crtc *crtc;
+       unsigned int in_w, in_h;
+       int ret;
+
+       tidss_runtime_get(tidss);
+
+       if (!dispc_plane_is_enabled(dispc, tplane->hw_plane_id))
+               goto out;
+
+       fb = tidss_plane_readout_fb(plane);
+       if (IS_ERR(fb)) {
+               ret = PTR_ERR(fb);
+               goto err_runtime_pm;
+       }
+
+       crtc = tidss_plane_readout_crtc(plane);
+       if (IS_ERR(crtc)) {
+               ret = PTR_ERR(crtc);
+               goto err_runtime_pm;
+       }
+
+       plane_state->fb = fb;
+       plane_state->crtc = crtc;
+       plane_state->visible = true;
+
+       dispc_plane_get_picture_size(dispc, tplane->hw_plane_id, &in_w, &in_h);
+       plane_state->src_w = in_w << 16;
+       plane_state->src_h = in_h << 16;
+
+       dispc_plane_get_size(dispc, tplane->hw_plane_id, &plane_state->crtc_w,
+                            &plane_state->crtc_h);
+
+       // TODO: Handle crtc_x/crtc_x/src_x/src_y
+       // crtc_x/crtc_y are handled by DISPC_OVR_ATTRIBUTES / 
OVR1_DSS_ATTRIBUTES
+
+       // TODO: Handle zpos, see DISPC_OVR_ATTRIBUTES / OVR1_DSS_ATTRIBUTES
+
+       plane_state->src.x1 = 0;
+       plane_state->src.x2 = plane_state->src_w;
+       plane_state->src.y1 = 0;
+       plane_state->src.y2 = plane_state->src_h;
+       plane_state->dst.x1 = 0;
+       plane_state->dst.x2 = plane_state->crtc_w;
+       plane_state->dst.y1 = 0;
+       plane_state->dst.y2 = plane_state->crtc_h;
+
+       plane_state->alpha =
+               dispc_plane_get_global_alpha(dispc, tplane->hw_plane_id) << 8 | 
0xff;
+       plane_state->pixel_blend_mode =
+               dispc_plane_get_blend_mode(dispc, tplane->hw_plane_id);
+
+       // TODO: If YUV, handle color encoding and range
+
+       crtc_state = drm_atomic_sro_get_crtc_state(state, crtc);
+       if (!crtc_state) {
+               ret = -ENODEV;
+               goto err_runtime_pm;
+       }
+
+       crtc_state->plane_mask |= drm_plane_mask(plane);
+
+out:
+       tidss_runtime_put(tidss);
+       return 0;
+
+err_runtime_pm:
+       tidss_runtime_put(tidss);
+       return ret;
+}
+
 static const struct drm_plane_funcs tidss_plane_funcs = {
        .update_plane = drm_atomic_helper_update_plane,
        .disable_plane = drm_atomic_helper_disable_plane,
        .destroy = drm_plane_destroy,
        .atomic_create_state = drm_atomic_helper_plane_create_state,
+       .atomic_sro_compare_state = drm_atomic_helper_plane_compare_state,
        .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
        .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
+       .atomic_sro_readout_state = tidss_plane_atomic_readout_state,
 };
 
 struct tidss_plane *tidss_plane_create(struct tidss_device *tidss,
                                       u32 hw_plane_id, u32 plane_type,
                                       u32 crtc_mask, const u32 *formats,

-- 
2.54.0

Reply via email to