]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/msm/dpu: Move dpu_hw_{tear_check, pp_vsync_info} to dpu_hw_mdss.h
authorKonrad Dybcio <konrad.dybcio@somainline.org>
Wed, 26 Apr 2023 22:37:30 +0000 (00:37 +0200)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 22 May 2023 07:14:18 +0000 (10:14 +0300)
Now that newer SoCs since DPU 5.0.0 manage tearcheck in the INTF instead
of PINGPONG block, move the struct definition to a common file. Also,
bring in documentation from msm-4.19 techpack while at it.

Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
[Marijn: Also move dpu_hw_pp_vsync_info]
Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/534232/
Link: https://lore.kernel.org/r/20230411-dpu-intf-te-v4-16-27ce1a5ab5c6@somainline.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_pingpong.h

index 2d9192a6ce006a1a9e37095aa593ae6053cf35b5..6ed12fd0505b3b92fb878047370e1400d2de58de 100644 (file)
@@ -463,4 +463,50 @@ struct dpu_mdss_color {
 #define DPU_DBG_MASK_DSPP     (1 << 10)
 #define DPU_DBG_MASK_DSC      (1 << 11)
 
+/**
+ * struct dpu_hw_tear_check - Struct contains parameters to configure
+ * tear-effect module. This structure is used to configure tear-check
+ * logic present either in ping-pong or in interface module.
+ * @vsync_count:        Ratio of MDP VSYNC clk freq(Hz) to refresh rate divided
+ *                      by no of lines
+ * @sync_cfg_height:    Total vertical lines (display height - 1)
+ * @vsync_init_val:     Init value to which the read pointer gets loaded at
+ *                      vsync edge
+ * @sync_threshold_start:    Read pointer threshold start ROI for write operation
+ * @sync_threshold_continue: The minimum number of lines the write pointer
+ *                           needs to be above the read pointer
+ * @start_pos:          The position from which the start_threshold value is added
+ * @rd_ptr_irq:         The read pointer line at which interrupt has to be generated
+ * @hw_vsync_mode:      Sync with external frame sync input
+ */
+struct dpu_hw_tear_check {
+       /*
+        * This is ratio of MDP VSYNC clk freq(Hz) to
+        * refresh rate divided by no of lines
+        */
+       u32 vsync_count;
+       u32 sync_cfg_height;
+       u32 vsync_init_val;
+       u32 sync_threshold_start;
+       u32 sync_threshold_continue;
+       u32 start_pos;
+       u32 rd_ptr_irq;
+       u8 hw_vsync_mode;
+};
+
+/**
+ * struct dpu_hw_pp_vsync_info - Struct contains parameters to configure
+ * read and write pointers for command mode panels
+ * @rd_ptr_init_val:    Value of rd pointer at vsync edge
+ * @rd_ptr_frame_count: Num frames sent since enabling interface
+ * @rd_ptr_line_count:  Current line on panel (rd ptr)
+ * @wr_ptr_line_count:  Current line within pp fifo (wr ptr)
+ */
+struct dpu_hw_pp_vsync_info {
+       u32 rd_ptr_init_val;
+       u32 rd_ptr_frame_count;
+       u32 rd_ptr_line_count;
+       u32 wr_ptr_line_count;
+};
+
 #endif  /* _DPU_HW_MDSS_H */
index 336d383f8b6477594b41296b45b2a24a1c382ae8..08ba9d76f061eb8c4cd2d6880a822ae1a5ccd28b 100644 (file)
 
 struct dpu_hw_pingpong;
 
-struct dpu_hw_tear_check {
-       /*
-        * This is ratio of MDP VSYNC clk freq(Hz) to
-        * refresh rate divided by no of lines
-        */
-       u32 vsync_count;
-       u32 sync_cfg_height;
-       u32 vsync_init_val;
-       u32 sync_threshold_start;
-       u32 sync_threshold_continue;
-       u32 start_pos;
-       u32 rd_ptr_irq;
-       u8 hw_vsync_mode;
-};
-
-struct dpu_hw_pp_vsync_info {
-       u32 rd_ptr_init_val;    /* value of rd pointer at vsync edge */
-       u32 rd_ptr_frame_count; /* num frames sent since enabling interface */
-       u32 rd_ptr_line_count;  /* current line on panel (rd ptr) */
-       u32 wr_ptr_line_count;  /* current line within pp fifo (wr ptr) */
-};
-
 /**
  * struct dpu_hw_dither_cfg - dither feature structure
  * @flags: for customizing operations