]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/msm: move msm_display_topology to the DPU driver
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Thu, 31 Oct 2024 21:44:06 +0000 (23:44 +0200)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Thu, 31 Oct 2024 22:58:08 +0000 (00:58 +0200)
The struct msm_display_topology is only used by the DPU driver. Remove
it from the global header and move it to DPU-specific header.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/622534/
Link: https://lore.kernel.org/r/20241031-dpu-move-topology-v1-1-8ffa8122d3b6@linaro.org
drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h
drivers/gpu/drm/msm/msm_drv.h

index e63db8ace6b940c48e081c9e11926788f6e333a3..14220ba04a7864494b2bc358264f1ab06789d868 100644 (file)
@@ -37,6 +37,22 @@ struct dpu_rm {
        struct dpu_hw_blk *cdm_blk;
 };
 
+/**
+ * struct msm_display_topology - defines a display topology pipeline
+ * @num_lm:       number of layer mixers used
+ * @num_intf:     number of interfaces the panel is mounted on
+ * @num_dspp:     number of dspp blocks used
+ * @num_dsc:      number of Display Stream Compression (DSC) blocks used
+ * @needs_cdm:    indicates whether cdm block is needed for this display topology
+ */
+struct msm_display_topology {
+       u32 num_lm;
+       u32 num_intf;
+       u32 num_dspp;
+       u32 num_dsc;
+       bool needs_cdm;
+};
+
 /**
  * dpu_rm_init - Read hardware catalog and create reservation tracking objects
  *     for all HW blocks.
index 133e47bea7d51509016754a2de366f221d51080d..ae3adb0f68a84f84149b0073eed9245620a86a4d 100644 (file)
@@ -73,22 +73,6 @@ enum msm_dsi_controller {
 #define MSM_GPU_MAX_RINGS 4
 #define MAX_H_TILES_PER_DISPLAY 2
 
-/**
- * struct msm_display_topology - defines a display topology pipeline
- * @num_lm:       number of layer mixers used
- * @num_intf:     number of interfaces the panel is mounted on
- * @num_dspp:     number of dspp blocks used
- * @num_dsc:      number of Display Stream Compression (DSC) blocks used
- * @needs_cdm:    indicates whether cdm block is needed for this display topology
- */
-struct msm_display_topology {
-       u32 num_lm;
-       u32 num_intf;
-       u32 num_dspp;
-       u32 num_dsc;
-       bool needs_cdm;
-};
-
 /* Commit/Event thread specific structure */
 struct msm_drm_thread {
        struct drm_device *dev;