* [PATCH 0/3] drm/msm/dpu: drop _sspp_subblk_offset()
@ 2023-04-22 0:08 Dmitry Baryshkov
2023-04-22 0:08 ` [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock Dmitry Baryshkov
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2023-04-22 0:08 UTC (permalink / raw)
To: Rob Clark, Sean Paul, Abhinav Kumar
Cc: Stephen Boyd, David Airlie, Daniel Vetter, Bjorn Andersson,
linux-arm-msm, dri-devel, freedreno
Rework dpu_hw_sspp.c to access sblk base address directly rather than
getting the sblk address through indirect function call.
Dmitry Baryshkov (3):
drm/msm/dpu: drop SSPP's SRC subblock
drm/msm/dpu: access QSEED registers directly
drm/msm/dpu: access CSC/CSC10 registers directly
.../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 8 -
.../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h | 10 -
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 184 +++++++-----------
3 files changed, 66 insertions(+), 136 deletions(-)
--
2.30.2
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock 2023-04-22 0:08 [PATCH 0/3] drm/msm/dpu: drop _sspp_subblk_offset() Dmitry Baryshkov @ 2023-04-22 0:08 ` Dmitry Baryshkov 2023-04-26 16:53 ` [Freedreno] " Jeykumar Sankaran 2023-04-22 0:08 ` [PATCH 2/3] drm/msm/dpu: access QSEED registers directly Dmitry Baryshkov 2023-04-22 0:08 ` [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 " Dmitry Baryshkov 2 siblings, 1 reply; 7+ messages in thread From: Dmitry Baryshkov @ 2023-04-22 0:08 UTC (permalink / raw) To: Rob Clark, Sean Paul, Abhinav Kumar Cc: Stephen Boyd, David Airlie, Daniel Vetter, Bjorn Andersson, linux-arm-msm, dri-devel, freedreno The src_blk declares a lame copy of main SSPP register space. It's offset is always 0. It's length has been fixed to 0x150, while SSPP's length is now correct. Drop the src_blk and access SSPP registers without additional subblock lookup. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 8 -- .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h | 10 -- drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 114 ++++++++---------- 3 files changed, 48 insertions(+), 84 deletions(-) diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c index 03f162af1a50..24bf1ae75dbf 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c @@ -252,8 +252,6 @@ static const uint32_t wb2_formats[] = { .maxdwnscale = MAX_DOWNSCALE_RATIO, \ .maxupscale = MAX_UPSCALE_RATIO, \ .smart_dma_priority = sdma_pri, \ - .src_blk = {.name = STRCAT("sspp_src_", num), \ - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ .scaler_blk = {.name = STRCAT("sspp_scaler", num), \ .id = qseed_ver, \ .base = 0xa00, .len = 0xa0,}, \ @@ -272,8 +270,6 @@ static const uint32_t wb2_formats[] = { .maxdwnscale = MAX_DOWNSCALE_RATIO, \ .maxupscale = MAX_UPSCALE_RATIO, \ .smart_dma_priority = sdma_pri, \ - .src_blk = {.name = STRCAT("sspp_src_", num), \ - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ .scaler_blk = {.name = STRCAT("sspp_scaler", num), \ .id = qseed_ver, \ .base = 0xa00, .len = 0xa0,}, \ @@ -292,8 +288,6 @@ static const uint32_t wb2_formats[] = { .maxdwnscale = SSPP_UNITY_SCALE, \ .maxupscale = SSPP_UNITY_SCALE, \ .smart_dma_priority = sdma_pri, \ - .src_blk = {.name = STRCAT("sspp_src_", num), \ - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ .format_list = plane_formats, \ .num_formats = ARRAY_SIZE(plane_formats), \ .virt_format_list = plane_formats, \ @@ -375,8 +369,6 @@ static const struct dpu_sspp_sub_blks sm8550_dma_sblk_5 = _DMA_SBLK("13", 6); .maxdwnscale = SSPP_UNITY_SCALE, \ .maxupscale = SSPP_UNITY_SCALE, \ .smart_dma_priority = sdma_pri, \ - .src_blk = {.name = STRCAT("sspp_src_", num), \ - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ .format_list = plane_formats_yuv, \ .num_formats = ARRAY_SIZE(plane_formats_yuv), \ .virt_format_list = plane_formats, \ diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h index 71584cd56fd7..3c7585c91bc0 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h @@ -278,14 +278,6 @@ enum { u32 base; \ u32 len -/** - * struct dpu_src_blk: SSPP part of the source pipes - * @info: HW register and features supported by this sub-blk - */ -struct dpu_src_blk { - DPU_HW_SUBBLK_INFO; -}; - /** * struct dpu_scaler_blk: Scaler information * @info: HW register and features supported by this sub-blk @@ -392,7 +384,6 @@ struct dpu_caps { * @smart_dma_priority: hw priority of rect1 of multirect pipe * @max_per_pipe_bw: maximum allowable bandwidth of this pipe in kBps * @qseed_ver: qseed version - * @src_blk: * @scaler_blk: * @csc_blk: * @hsic: @@ -413,7 +404,6 @@ struct dpu_sspp_sub_blks { u32 smart_dma_priority; u32 max_per_pipe_bw; u32 qseed_ver; - struct dpu_src_blk src_blk; struct dpu_scaler_blk scaler_blk; struct dpu_pp_blk csc_blk; struct dpu_pp_blk hsic_blk; diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c index cf70a9bd1034..fce135f010d4 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c @@ -149,9 +149,6 @@ static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, sblk = ctx->cap->sblk; switch (s_id) { - case DPU_SSPP_SRC: - *idx = sblk->src_blk.base; - break; case DPU_SSPP_SCALER_QSEED2: case DPU_SSPP_SCALER_QSEED3: case DPU_SSPP_SCALER_RGB: @@ -172,9 +169,8 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) { struct dpu_hw_sspp *ctx = pipe->sspp; u32 mode_mask; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; if (pipe->multirect_index == DPU_SSPP_RECT_SOLO) { @@ -185,7 +181,7 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) */ mode_mask = 0; } else { - mode_mask = DPU_REG_READ(&ctx->hw, SSPP_MULTIRECT_OPMODE + idx); + mode_mask = DPU_REG_READ(&ctx->hw, SSPP_MULTIRECT_OPMODE); mode_mask |= pipe->multirect_index; if (pipe->multirect_mode == DPU_SSPP_MULTIRECT_TIME_MX) mode_mask |= BIT(2); @@ -193,7 +189,7 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) mode_mask &= ~BIT(2); } - DPU_REG_WRITE(&ctx->hw, SSPP_MULTIRECT_OPMODE + idx, mode_mask); + DPU_REG_WRITE(&ctx->hw, SSPP_MULTIRECT_OPMODE, mode_mask); } static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, @@ -247,9 +243,8 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, u32 opmode = 0; u32 fast_clear = 0; u32 op_mode_off, unpack_pat_off, format_off; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !fmt) + if (!ctx || !fmt) return; if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || @@ -264,7 +259,7 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, } c = &ctx->hw; - opmode = DPU_REG_READ(c, op_mode_off + idx); + opmode = DPU_REG_READ(c, op_mode_off); opmode &= ~(MDSS_MDP_OP_FLIP_LR | MDSS_MDP_OP_FLIP_UD | MDSS_MDP_OP_BWC_EN | MDSS_MDP_OP_PE_OVERRIDE); @@ -352,12 +347,12 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, VIG_CSC_10_EN | VIG_CSC_10_SRC_DATAFMT, DPU_FORMAT_IS_YUV(fmt)); - DPU_REG_WRITE(c, format_off + idx, src_format); - DPU_REG_WRITE(c, unpack_pat_off + idx, unpack); - DPU_REG_WRITE(c, op_mode_off + idx, opmode); + DPU_REG_WRITE(c, format_off, src_format); + DPU_REG_WRITE(c, unpack_pat_off, unpack); + DPU_REG_WRITE(c, op_mode_off, opmode); /* clear previous UBWC error */ - DPU_REG_WRITE(c, SSPP_UBWC_ERROR_STATUS + idx, BIT(31)); + DPU_REG_WRITE(c, SSPP_UBWC_ERROR_STATUS, BIT(31)); } static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, @@ -368,9 +363,8 @@ static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, u32 lr_pe[4], tb_pe[4], tot_req_pixels[4]; const u32 bytemask = 0xff; const u32 shortmask = 0xffff; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !pe_ext) + if (!ctx || !pe_ext) return; c = &ctx->hw; @@ -400,21 +394,21 @@ static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, } /* color 0 */ - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_LR + idx, lr_pe[0]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_TB + idx, tb_pe[0]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_REQ_PIXELS + idx, + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_LR, lr_pe[0]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_TB, tb_pe[0]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_REQ_PIXELS, tot_req_pixels[0]); /* color 1 and color 2 */ - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_LR + idx, lr_pe[1]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_TB + idx, tb_pe[1]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_REQ_PIXELS + idx, + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_LR, lr_pe[1]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_TB, tb_pe[1]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_REQ_PIXELS, tot_req_pixels[1]); /* color 3 */ - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_LR + idx, lr_pe[3]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB + idx, lr_pe[3]); - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_REQ_PIXELS + idx, + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_LR, lr_pe[3]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB, lr_pe[3]); + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_REQ_PIXELS, tot_req_pixels[3]); } @@ -453,9 +447,8 @@ static void dpu_hw_sspp_setup_rects(struct dpu_sw_pipe *pipe, struct dpu_hw_blk_reg_map *c; u32 src_size, src_xy, dst_size, dst_xy; u32 src_size_off, src_xy_off, out_size_off, out_xy_off; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !cfg) + if (!ctx || !cfg) return; c = &ctx->hw; @@ -483,10 +476,10 @@ static void dpu_hw_sspp_setup_rects(struct dpu_sw_pipe *pipe, drm_rect_width(&cfg->dst_rect); /* rectangle register programming */ - DPU_REG_WRITE(c, src_size_off + idx, src_size); - DPU_REG_WRITE(c, src_xy_off + idx, src_xy); - DPU_REG_WRITE(c, out_size_off + idx, dst_size); - DPU_REG_WRITE(c, out_xy_off + idx, dst_xy); + DPU_REG_WRITE(c, src_size_off, src_size); + DPU_REG_WRITE(c, src_xy_off, src_xy); + DPU_REG_WRITE(c, out_size_off, dst_size); + DPU_REG_WRITE(c, out_xy_off, dst_xy); } static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, @@ -495,24 +488,23 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, struct dpu_hw_sspp *ctx = pipe->sspp; u32 ystride0, ystride1; int i; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; if (pipe->multirect_index == DPU_SSPP_RECT_SOLO) { for (i = 0; i < ARRAY_SIZE(layout->plane_addr); i++) - DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + idx + i * 0x4, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + i * 0x4, layout->plane_addr[i]); } else if (pipe->multirect_index == DPU_SSPP_RECT_0) { - DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR, layout->plane_addr[0]); - DPU_REG_WRITE(&ctx->hw, SSPP_SRC2_ADDR + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC2_ADDR, layout->plane_addr[2]); } else { - DPU_REG_WRITE(&ctx->hw, SSPP_SRC1_ADDR + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC1_ADDR, layout->plane_addr[0]); - DPU_REG_WRITE(&ctx->hw, SSPP_SRC3_ADDR + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC3_ADDR, layout->plane_addr[2]); } @@ -522,8 +514,8 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, ystride1 = (layout->plane_pitch[2]) | (layout->plane_pitch[3] << 16); } else { - ystride0 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE0 + idx); - ystride1 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE1 + idx); + ystride0 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE0); + ystride1 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE1); if (pipe->multirect_index == DPU_SSPP_RECT_0) { ystride0 = (ystride0 & 0xFFFF0000) | @@ -540,8 +532,8 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, } } - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE0 + idx, ystride0); - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE1 + idx, ystride1); + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE0, ystride0); + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE1, ystride1); } static void dpu_hw_sspp_setup_csc(struct dpu_hw_sspp *ctx, @@ -565,9 +557,8 @@ static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) { struct dpu_hw_sspp *ctx = pipe->sspp; struct dpu_hw_fmt_layout cfg; - u32 idx; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; /* cleanup source addresses */ @@ -576,9 +567,9 @@ static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || pipe->multirect_index == DPU_SSPP_RECT_0) - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR + idx, color); + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR, color); else - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR_REC1 + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR_REC1, color); } @@ -586,39 +577,34 @@ static void dpu_hw_sspp_setup_danger_safe_lut(struct dpu_hw_sspp *ctx, u32 danger_lut, u32 safe_lut) { - u32 idx; - - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; - DPU_REG_WRITE(&ctx->hw, SSPP_DANGER_LUT + idx, danger_lut); - DPU_REG_WRITE(&ctx->hw, SSPP_SAFE_LUT + idx, safe_lut); + DPU_REG_WRITE(&ctx->hw, SSPP_DANGER_LUT, danger_lut); + DPU_REG_WRITE(&ctx->hw, SSPP_SAFE_LUT, safe_lut); } static void dpu_hw_sspp_setup_creq_lut(struct dpu_hw_sspp *ctx, u64 creq_lut) { - u32 idx; - - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; if (ctx->cap && test_bit(DPU_SSPP_QOS_8LVL, &ctx->cap->features)) { - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_0 + idx, creq_lut); - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_1 + idx, + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_0, creq_lut); + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_1, creq_lut >> 32); } else { - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT + idx, creq_lut); + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT, creq_lut); } } static void dpu_hw_sspp_setup_qos_ctrl(struct dpu_hw_sspp *ctx, struct dpu_hw_pipe_qos_cfg *cfg) { - u32 idx; u32 qos_ctrl = 0; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) + if (!ctx) return; if (cfg->vblank_en) { @@ -634,23 +620,19 @@ static void dpu_hw_sspp_setup_qos_ctrl(struct dpu_hw_sspp *ctx, if (cfg->danger_safe_en) qos_ctrl |= SSPP_QOS_CTRL_DANGER_SAFE_EN; - DPU_REG_WRITE(&ctx->hw, SSPP_QOS_CTRL + idx, qos_ctrl); + DPU_REG_WRITE(&ctx->hw, SSPP_QOS_CTRL, qos_ctrl); } static void dpu_hw_sspp_setup_cdp(struct dpu_sw_pipe *pipe, struct dpu_hw_cdp_cfg *cfg) { struct dpu_hw_sspp *ctx = pipe->sspp; - u32 idx; u32 cdp_cntl = 0; u32 cdp_cntl_offset = 0; if (!ctx || !cfg) return; - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) - return; - if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || pipe->multirect_index == DPU_SSPP_RECT_0) cdp_cntl_offset = SSPP_CDP_CNTL; @@ -728,8 +710,8 @@ int _dpu_hw_sspp_init_debugfs(struct dpu_hw_sspp *hw_pipe, struct dpu_kms *kms, /* add register dump support */ dpu_debugfs_create_regset32("src_blk", 0400, debugfs_root, - sblk->src_blk.base + cfg->base, - sblk->src_blk.len, + cfg->base, + cfg->len, kms); if (cfg->features & BIT(DPU_SSPP_SCALER_QSEED3) || -- 2.30.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Freedreno] [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock 2023-04-22 0:08 ` [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock Dmitry Baryshkov @ 2023-04-26 16:53 ` Jeykumar Sankaran 0 siblings, 0 replies; 7+ messages in thread From: Jeykumar Sankaran @ 2023-04-26 16:53 UTC (permalink / raw) To: Dmitry Baryshkov, Rob Clark, Sean Paul, Abhinav Kumar Cc: freedreno, linux-arm-msm, Bjorn Andersson, dri-devel, Stephen Boyd, Daniel Vetter, David Airlie On 4/21/2023 5:08 PM, Dmitry Baryshkov wrote: > The src_blk declares a lame copy of main SSPP register space. It's > offset is always 0. It's length has been fixed to 0x150, while SSPP's > length is now correct. Drop the src_blk and access SSPP registers > without additional subblock lookup. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 8 -- > .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h | 10 -- > drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 114 ++++++++---------- > 3 files changed, 48 insertions(+), 84 deletions(-) > > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c > index 03f162af1a50..24bf1ae75dbf 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c > @@ -252,8 +252,6 @@ static const uint32_t wb2_formats[] = { > .maxdwnscale = MAX_DOWNSCALE_RATIO, \ > .maxupscale = MAX_UPSCALE_RATIO, \ > .smart_dma_priority = sdma_pri, \ > - .src_blk = {.name = STRCAT("sspp_src_", num), \ > - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ If you are removing the sub block for the source registers and planning to use the SSPP's base address, you might as well remove the macro DPU_SSPP_SRC and its usage in setup_layer_ops etc. It doesnt make sense to check explicity. Jeykumar S. > .scaler_blk = {.name = STRCAT("sspp_scaler", num), \ > .id = qseed_ver, \ > .base = 0xa00, .len = 0xa0,}, \ > @@ -272,8 +270,6 @@ static const uint32_t wb2_formats[] = { > .maxdwnscale = MAX_DOWNSCALE_RATIO, \ > .maxupscale = MAX_UPSCALE_RATIO, \ > .smart_dma_priority = sdma_pri, \ > - .src_blk = {.name = STRCAT("sspp_src_", num), \ > - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ > .scaler_blk = {.name = STRCAT("sspp_scaler", num), \ > .id = qseed_ver, \ > .base = 0xa00, .len = 0xa0,}, \ > @@ -292,8 +288,6 @@ static const uint32_t wb2_formats[] = { > .maxdwnscale = SSPP_UNITY_SCALE, \ > .maxupscale = SSPP_UNITY_SCALE, \ > .smart_dma_priority = sdma_pri, \ > - .src_blk = {.name = STRCAT("sspp_src_", num), \ > - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ > .format_list = plane_formats, \ > .num_formats = ARRAY_SIZE(plane_formats), \ > .virt_format_list = plane_formats, \ > @@ -375,8 +369,6 @@ static const struct dpu_sspp_sub_blks sm8550_dma_sblk_5 = _DMA_SBLK("13", 6); > .maxdwnscale = SSPP_UNITY_SCALE, \ > .maxupscale = SSPP_UNITY_SCALE, \ > .smart_dma_priority = sdma_pri, \ > - .src_blk = {.name = STRCAT("sspp_src_", num), \ > - .id = DPU_SSPP_SRC, .base = 0x00, .len = 0x150,}, \ > .format_list = plane_formats_yuv, \ > .num_formats = ARRAY_SIZE(plane_formats_yuv), \ > .virt_format_list = plane_formats, \ > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h > index 71584cd56fd7..3c7585c91bc0 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h > @@ -278,14 +278,6 @@ enum { > u32 base; \ > u32 len > > -/** > - * struct dpu_src_blk: SSPP part of the source pipes > - * @info: HW register and features supported by this sub-blk > - */ > -struct dpu_src_blk { > - DPU_HW_SUBBLK_INFO; > -}; > - > /** > * struct dpu_scaler_blk: Scaler information > * @info: HW register and features supported by this sub-blk > @@ -392,7 +384,6 @@ struct dpu_caps { > * @smart_dma_priority: hw priority of rect1 of multirect pipe > * @max_per_pipe_bw: maximum allowable bandwidth of this pipe in kBps > * @qseed_ver: qseed version > - * @src_blk: > * @scaler_blk: > * @csc_blk: > * @hsic: > @@ -413,7 +404,6 @@ struct dpu_sspp_sub_blks { > u32 smart_dma_priority; > u32 max_per_pipe_bw; > u32 qseed_ver; > - struct dpu_src_blk src_blk; > struct dpu_scaler_blk scaler_blk; > struct dpu_pp_blk csc_blk; > struct dpu_pp_blk hsic_blk; > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > index cf70a9bd1034..fce135f010d4 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > @@ -149,9 +149,6 @@ static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, > sblk = ctx->cap->sblk; > > switch (s_id) { > - case DPU_SSPP_SRC: > - *idx = sblk->src_blk.base; > - break; > case DPU_SSPP_SCALER_QSEED2: > case DPU_SSPP_SCALER_QSEED3: > case DPU_SSPP_SCALER_RGB: > @@ -172,9 +169,8 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) > { > struct dpu_hw_sspp *ctx = pipe->sspp; > u32 mode_mask; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > if (pipe->multirect_index == DPU_SSPP_RECT_SOLO) { > @@ -185,7 +181,7 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) > */ > mode_mask = 0; > } else { > - mode_mask = DPU_REG_READ(&ctx->hw, SSPP_MULTIRECT_OPMODE + idx); > + mode_mask = DPU_REG_READ(&ctx->hw, SSPP_MULTIRECT_OPMODE); > mode_mask |= pipe->multirect_index; > if (pipe->multirect_mode == DPU_SSPP_MULTIRECT_TIME_MX) > mode_mask |= BIT(2); > @@ -193,7 +189,7 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) > mode_mask &= ~BIT(2); > } > > - DPU_REG_WRITE(&ctx->hw, SSPP_MULTIRECT_OPMODE + idx, mode_mask); > + DPU_REG_WRITE(&ctx->hw, SSPP_MULTIRECT_OPMODE, mode_mask); > } > > static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, > @@ -247,9 +243,8 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, > u32 opmode = 0; > u32 fast_clear = 0; > u32 op_mode_off, unpack_pat_off, format_off; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !fmt) > + if (!ctx || !fmt) > return; > > if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || > @@ -264,7 +259,7 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, > } > > c = &ctx->hw; > - opmode = DPU_REG_READ(c, op_mode_off + idx); > + opmode = DPU_REG_READ(c, op_mode_off); > opmode &= ~(MDSS_MDP_OP_FLIP_LR | MDSS_MDP_OP_FLIP_UD | > MDSS_MDP_OP_BWC_EN | MDSS_MDP_OP_PE_OVERRIDE); > > @@ -352,12 +347,12 @@ static void dpu_hw_sspp_setup_format(struct dpu_sw_pipe *pipe, > VIG_CSC_10_EN | VIG_CSC_10_SRC_DATAFMT, > DPU_FORMAT_IS_YUV(fmt)); > > - DPU_REG_WRITE(c, format_off + idx, src_format); > - DPU_REG_WRITE(c, unpack_pat_off + idx, unpack); > - DPU_REG_WRITE(c, op_mode_off + idx, opmode); > + DPU_REG_WRITE(c, format_off, src_format); > + DPU_REG_WRITE(c, unpack_pat_off, unpack); > + DPU_REG_WRITE(c, op_mode_off, opmode); > > /* clear previous UBWC error */ > - DPU_REG_WRITE(c, SSPP_UBWC_ERROR_STATUS + idx, BIT(31)); > + DPU_REG_WRITE(c, SSPP_UBWC_ERROR_STATUS, BIT(31)); > } > > static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, > @@ -368,9 +363,8 @@ static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, > u32 lr_pe[4], tb_pe[4], tot_req_pixels[4]; > const u32 bytemask = 0xff; > const u32 shortmask = 0xffff; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !pe_ext) > + if (!ctx || !pe_ext) > return; > > c = &ctx->hw; > @@ -400,21 +394,21 @@ static void dpu_hw_sspp_setup_pe_config(struct dpu_hw_sspp *ctx, > } > > /* color 0 */ > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_LR + idx, lr_pe[0]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_TB + idx, tb_pe[0]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_REQ_PIXELS + idx, > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_LR, lr_pe[0]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_TB, tb_pe[0]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C0_REQ_PIXELS, > tot_req_pixels[0]); > > /* color 1 and color 2 */ > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_LR + idx, lr_pe[1]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_TB + idx, tb_pe[1]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_REQ_PIXELS + idx, > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_LR, lr_pe[1]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_TB, tb_pe[1]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C1C2_REQ_PIXELS, > tot_req_pixels[1]); > > /* color 3 */ > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_LR + idx, lr_pe[3]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB + idx, lr_pe[3]); > - DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_REQ_PIXELS + idx, > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_LR, lr_pe[3]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB, lr_pe[3]); > + DPU_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_REQ_PIXELS, > tot_req_pixels[3]); > } > > @@ -453,9 +447,8 @@ static void dpu_hw_sspp_setup_rects(struct dpu_sw_pipe *pipe, > struct dpu_hw_blk_reg_map *c; > u32 src_size, src_xy, dst_size, dst_xy; > u32 src_size_off, src_xy_off, out_size_off, out_xy_off; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx) || !cfg) > + if (!ctx || !cfg) > return; > > c = &ctx->hw; > @@ -483,10 +476,10 @@ static void dpu_hw_sspp_setup_rects(struct dpu_sw_pipe *pipe, > drm_rect_width(&cfg->dst_rect); > > /* rectangle register programming */ > - DPU_REG_WRITE(c, src_size_off + idx, src_size); > - DPU_REG_WRITE(c, src_xy_off + idx, src_xy); > - DPU_REG_WRITE(c, out_size_off + idx, dst_size); > - DPU_REG_WRITE(c, out_xy_off + idx, dst_xy); > + DPU_REG_WRITE(c, src_size_off, src_size); > + DPU_REG_WRITE(c, src_xy_off, src_xy); > + DPU_REG_WRITE(c, out_size_off, dst_size); > + DPU_REG_WRITE(c, out_xy_off, dst_xy); > } > > static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, > @@ -495,24 +488,23 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, > struct dpu_hw_sspp *ctx = pipe->sspp; > u32 ystride0, ystride1; > int i; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > if (pipe->multirect_index == DPU_SSPP_RECT_SOLO) { > for (i = 0; i < ARRAY_SIZE(layout->plane_addr); i++) > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + idx + i * 0x4, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + i * 0x4, > layout->plane_addr[i]); > } else if (pipe->multirect_index == DPU_SSPP_RECT_0) { > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC0_ADDR, > layout->plane_addr[0]); > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC2_ADDR + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC2_ADDR, > layout->plane_addr[2]); > } else { > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC1_ADDR + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC1_ADDR, > layout->plane_addr[0]); > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC3_ADDR + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC3_ADDR, > layout->plane_addr[2]); > } > > @@ -522,8 +514,8 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, > ystride1 = (layout->plane_pitch[2]) | > (layout->plane_pitch[3] << 16); > } else { > - ystride0 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE0 + idx); > - ystride1 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE1 + idx); > + ystride0 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE0); > + ystride1 = DPU_REG_READ(&ctx->hw, SSPP_SRC_YSTRIDE1); > > if (pipe->multirect_index == DPU_SSPP_RECT_0) { > ystride0 = (ystride0 & 0xFFFF0000) | > @@ -540,8 +532,8 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, > } > } > > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE0 + idx, ystride0); > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE1 + idx, ystride1); > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE0, ystride0); > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_YSTRIDE1, ystride1); > } > > static void dpu_hw_sspp_setup_csc(struct dpu_hw_sspp *ctx, > @@ -565,9 +557,8 @@ static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) > { > struct dpu_hw_sspp *ctx = pipe->sspp; > struct dpu_hw_fmt_layout cfg; > - u32 idx; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > /* cleanup source addresses */ > @@ -576,9 +567,9 @@ static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) > > if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || > pipe->multirect_index == DPU_SSPP_RECT_0) > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR + idx, color); > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR, color); > else > - DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR_REC1 + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_SRC_CONSTANT_COLOR_REC1, > color); > } > > @@ -586,39 +577,34 @@ static void dpu_hw_sspp_setup_danger_safe_lut(struct dpu_hw_sspp *ctx, > u32 danger_lut, > u32 safe_lut) > { > - u32 idx; > - > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > - DPU_REG_WRITE(&ctx->hw, SSPP_DANGER_LUT + idx, danger_lut); > - DPU_REG_WRITE(&ctx->hw, SSPP_SAFE_LUT + idx, safe_lut); > + DPU_REG_WRITE(&ctx->hw, SSPP_DANGER_LUT, danger_lut); > + DPU_REG_WRITE(&ctx->hw, SSPP_SAFE_LUT, safe_lut); > } > > static void dpu_hw_sspp_setup_creq_lut(struct dpu_hw_sspp *ctx, > u64 creq_lut) > { > - u32 idx; > - > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > if (ctx->cap && test_bit(DPU_SSPP_QOS_8LVL, &ctx->cap->features)) { > - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_0 + idx, creq_lut); > - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_1 + idx, > + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_0, creq_lut); > + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT_1, > creq_lut >> 32); > } else { > - DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT + idx, creq_lut); > + DPU_REG_WRITE(&ctx->hw, SSPP_CREQ_LUT, creq_lut); > } > } > > static void dpu_hw_sspp_setup_qos_ctrl(struct dpu_hw_sspp *ctx, > struct dpu_hw_pipe_qos_cfg *cfg) > { > - u32 idx; > u32 qos_ctrl = 0; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > + if (!ctx) > return; > > if (cfg->vblank_en) { > @@ -634,23 +620,19 @@ static void dpu_hw_sspp_setup_qos_ctrl(struct dpu_hw_sspp *ctx, > if (cfg->danger_safe_en) > qos_ctrl |= SSPP_QOS_CTRL_DANGER_SAFE_EN; > > - DPU_REG_WRITE(&ctx->hw, SSPP_QOS_CTRL + idx, qos_ctrl); > + DPU_REG_WRITE(&ctx->hw, SSPP_QOS_CTRL, qos_ctrl); > } > > static void dpu_hw_sspp_setup_cdp(struct dpu_sw_pipe *pipe, > struct dpu_hw_cdp_cfg *cfg) > { > struct dpu_hw_sspp *ctx = pipe->sspp; > - u32 idx; > u32 cdp_cntl = 0; > u32 cdp_cntl_offset = 0; > > if (!ctx || !cfg) > return; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SRC, &idx)) > - return; > - > if (pipe->multirect_index == DPU_SSPP_RECT_SOLO || > pipe->multirect_index == DPU_SSPP_RECT_0) > cdp_cntl_offset = SSPP_CDP_CNTL; > @@ -728,8 +710,8 @@ int _dpu_hw_sspp_init_debugfs(struct dpu_hw_sspp *hw_pipe, struct dpu_kms *kms, > /* add register dump support */ > dpu_debugfs_create_regset32("src_blk", 0400, > debugfs_root, > - sblk->src_blk.base + cfg->base, > - sblk->src_blk.len, > + cfg->base, > + cfg->len, > kms); > > if (cfg->features & BIT(DPU_SSPP_SCALER_QSEED3) || ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 2/3] drm/msm/dpu: access QSEED registers directly 2023-04-22 0:08 [PATCH 0/3] drm/msm/dpu: drop _sspp_subblk_offset() Dmitry Baryshkov 2023-04-22 0:08 ` [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock Dmitry Baryshkov @ 2023-04-22 0:08 ` Dmitry Baryshkov 2023-04-26 16:57 ` [Freedreno] " Jeykumar Sankaran 2023-04-22 0:08 ` [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 " Dmitry Baryshkov 2 siblings, 1 reply; 7+ messages in thread From: Dmitry Baryshkov @ 2023-04-22 0:08 UTC (permalink / raw) To: Rob Clark, Sean Paul, Abhinav Kumar Cc: Stephen Boyd, David Airlie, Daniel Vetter, Bjorn Andersson, linux-arm-msm, dri-devel, freedreno Stop using _sspp_subblk_offset() to get offset of the scaler_blk. Inline this function and use ctx->cap->sblk->scaler_blk.base directly. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 27 +++++++-------------- 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c index fce135f010d4..22c59f2250be 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c @@ -149,11 +149,6 @@ static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, sblk = ctx->cap->sblk; switch (s_id) { - case DPU_SSPP_SCALER_QSEED2: - case DPU_SSPP_SCALER_QSEED3: - case DPU_SSPP_SCALER_RGB: - *idx = sblk->scaler_blk.base; - break; case DPU_SSPP_CSC: case DPU_SSPP_CSC_10BIT: *idx = sblk->csc_blk.base; @@ -195,22 +190,21 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, u32 mask, u8 en) { - u32 idx; + const struct dpu_sspp_sub_blks *sblk = ctx->cap->sblk; u32 opmode; if (!test_bit(DPU_SSPP_SCALER_QSEED2, &ctx->cap->features) || - _sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED2, &idx) || !test_bit(DPU_SSPP_CSC, &ctx->cap->features)) return; - opmode = DPU_REG_READ(&ctx->hw, SSPP_VIG_OP_MODE + idx); + opmode = DPU_REG_READ(&ctx->hw, sblk->scaler_blk.base + SSPP_VIG_OP_MODE); if (en) opmode |= mask; else opmode &= ~mask; - DPU_REG_WRITE(&ctx->hw, SSPP_VIG_OP_MODE + idx, opmode); + DPU_REG_WRITE(&ctx->hw, sblk->scaler_blk.base + SSPP_VIG_OP_MODE, opmode); } static void _sspp_setup_csc10_opmode(struct dpu_hw_sspp *ctx, @@ -416,25 +410,22 @@ static void _dpu_hw_sspp_setup_scaler3(struct dpu_hw_sspp *ctx, struct dpu_hw_scaler3_cfg *scaler3_cfg, const struct dpu_format *format) { - u32 idx; - - if (_sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED3, &idx) - || !scaler3_cfg) + if (!ctx || !scaler3_cfg) return; - dpu_hw_setup_scaler3(&ctx->hw, scaler3_cfg, idx, + dpu_hw_setup_scaler3(&ctx->hw, scaler3_cfg, + ctx->cap->sblk->scaler_blk.base, ctx->cap->sblk->scaler_blk.version, format); } static u32 _dpu_hw_sspp_get_scaler3_ver(struct dpu_hw_sspp *ctx) { - u32 idx; - - if (!ctx || _sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED3, &idx)) + if (!ctx) return 0; - return dpu_hw_get_scaler3_ver(&ctx->hw, idx); + return dpu_hw_get_scaler3_ver(&ctx->hw, + ctx->cap->sblk->scaler_blk.base); } /* -- 2.30.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Freedreno] [PATCH 2/3] drm/msm/dpu: access QSEED registers directly 2023-04-22 0:08 ` [PATCH 2/3] drm/msm/dpu: access QSEED registers directly Dmitry Baryshkov @ 2023-04-26 16:57 ` Jeykumar Sankaran 0 siblings, 0 replies; 7+ messages in thread From: Jeykumar Sankaran @ 2023-04-26 16:57 UTC (permalink / raw) To: Dmitry Baryshkov, Rob Clark, Sean Paul, Abhinav Kumar Cc: freedreno, linux-arm-msm, Bjorn Andersson, dri-devel, Stephen Boyd, Daniel Vetter, David Airlie On 4/21/2023 5:08 PM, Dmitry Baryshkov wrote: > Stop using _sspp_subblk_offset() to get offset of the scaler_blk. Inline > this function and use ctx->cap->sblk->scaler_blk.base directly. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 27 +++++++-------------- > 1 file changed, 9 insertions(+), 18 deletions(-) > > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > index fce135f010d4..22c59f2250be 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > @@ -149,11 +149,6 @@ static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, > sblk = ctx->cap->sblk; > > switch (s_id) { > - case DPU_SSPP_SCALER_QSEED2: > - case DPU_SSPP_SCALER_QSEED3: > - case DPU_SSPP_SCALER_RGB: > - *idx = sblk->scaler_blk.base; > - break; > case DPU_SSPP_CSC: > case DPU_SSPP_CSC_10BIT: > *idx = sblk->csc_blk.base; > @@ -195,22 +190,21 @@ static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) > static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, > u32 mask, u8 en) > { > - u32 idx; > + const struct dpu_sspp_sub_blks *sblk = ctx->cap->sblk; > u32 opmode; > > if (!test_bit(DPU_SSPP_SCALER_QSEED2, &ctx->cap->features) || > - _sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED2, &idx) || > !test_bit(DPU_SSPP_CSC, &ctx->cap->features)) > return; > > - opmode = DPU_REG_READ(&ctx->hw, SSPP_VIG_OP_MODE + idx); > + opmode = DPU_REG_READ(&ctx->hw, sblk->scaler_blk.base + SSPP_VIG_OP_MODE); > > if (en) > opmode |= mask; > else > opmode &= ~mask; > > - DPU_REG_WRITE(&ctx->hw, SSPP_VIG_OP_MODE + idx, opmode); > + DPU_REG_WRITE(&ctx->hw, sblk->scaler_blk.base + SSPP_VIG_OP_MODE, opmode); > } > > static void _sspp_setup_csc10_opmode(struct dpu_hw_sspp *ctx, > @@ -416,25 +410,22 @@ static void _dpu_hw_sspp_setup_scaler3(struct dpu_hw_sspp *ctx, > struct dpu_hw_scaler3_cfg *scaler3_cfg, > const struct dpu_format *format) > { > - u32 idx; > - > - if (_sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED3, &idx) > - || !scaler3_cfg) > + if (!ctx || !scaler3_cfg) > return; > > - dpu_hw_setup_scaler3(&ctx->hw, scaler3_cfg, idx, > + dpu_hw_setup_scaler3(&ctx->hw, scaler3_cfg, > + ctx->cap->sblk->scaler_blk.base, > ctx->cap->sblk->scaler_blk.version, > format); > } > > static u32 _dpu_hw_sspp_get_scaler3_ver(struct dpu_hw_sspp *ctx) > { > - u32 idx; > - > - if (!ctx || _sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED3, &idx)) > + if (!ctx) > return 0; > > - return dpu_hw_get_scaler3_ver(&ctx->hw, idx); > + return dpu_hw_get_scaler3_ver(&ctx->hw, > + ctx->cap->sblk->scaler_blk.base); > } > > /* Reviewed-by: Jeykumar Sankaran <quic_jeykumar@quicinc.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 registers directly 2023-04-22 0:08 [PATCH 0/3] drm/msm/dpu: drop _sspp_subblk_offset() Dmitry Baryshkov 2023-04-22 0:08 ` [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock Dmitry Baryshkov 2023-04-22 0:08 ` [PATCH 2/3] drm/msm/dpu: access QSEED registers directly Dmitry Baryshkov @ 2023-04-22 0:08 ` Dmitry Baryshkov 2023-04-26 16:58 ` [Freedreno] " Jeykumar Sankaran 2 siblings, 1 reply; 7+ messages in thread From: Dmitry Baryshkov @ 2023-04-22 0:08 UTC (permalink / raw) To: Rob Clark, Sean Paul, Abhinav Kumar Cc: Stephen Boyd, David Airlie, Daniel Vetter, Bjorn Andersson, linux-arm-msm, dri-devel, freedreno Stop using _sspp_subblk_offset() to get offset of the csc_blk. Inline this function and use ctx->cap->sblk->csc_blk.base directly. As this was the last user, drop _sspp_subblk_offset() too. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 43 +++++---------------- 1 file changed, 9 insertions(+), 34 deletions(-) diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c index 22c59f2250be..f4698e28e197 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c @@ -136,30 +136,6 @@ #define TS_CLK 19200000 -static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, - int s_id, - u32 *idx) -{ - int rc = 0; - const struct dpu_sspp_sub_blks *sblk; - - if (!ctx || !ctx->cap || !ctx->cap->sblk) - return -EINVAL; - - sblk = ctx->cap->sblk; - - switch (s_id) { - case DPU_SSPP_CSC: - case DPU_SSPP_CSC_10BIT: - *idx = sblk->csc_blk.base; - break; - default: - rc = -EINVAL; - } - - return rc; -} - static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) { struct dpu_hw_sspp *ctx = pipe->sspp; @@ -210,19 +186,16 @@ static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, static void _sspp_setup_csc10_opmode(struct dpu_hw_sspp *ctx, u32 mask, u8 en) { - u32 idx; + const struct dpu_sspp_sub_blks *sblk = ctx->cap->sblk; u32 opmode; - if (_sspp_subblk_offset(ctx, DPU_SSPP_CSC_10BIT, &idx)) - return; - - opmode = DPU_REG_READ(&ctx->hw, SSPP_VIG_CSC_10_OP_MODE + idx); + opmode = DPU_REG_READ(&ctx->hw, sblk->csc_blk.base + SSPP_VIG_CSC_10_OP_MODE); if (en) opmode |= mask; else opmode &= ~mask; - DPU_REG_WRITE(&ctx->hw, SSPP_VIG_CSC_10_OP_MODE + idx, opmode); + DPU_REG_WRITE(&ctx->hw, sblk->csc_blk.base + SSPP_VIG_CSC_10_OP_MODE, opmode); } /* @@ -530,18 +503,20 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, static void dpu_hw_sspp_setup_csc(struct dpu_hw_sspp *ctx, const struct dpu_csc_cfg *data) { - u32 idx; + u32 offset; bool csc10 = false; - if (_sspp_subblk_offset(ctx, DPU_SSPP_CSC, &idx) || !data) + if (!ctx || !data) return; + offset = ctx->cap->sblk->csc_blk.base; + if (test_bit(DPU_SSPP_CSC_10BIT, &ctx->cap->features)) { - idx += CSC_10BIT_OFFSET; + offset += CSC_10BIT_OFFSET; csc10 = true; } - dpu_hw_csc_setup(&ctx->hw, idx, data, csc10); + dpu_hw_csc_setup(&ctx->hw, offset, data, csc10); } static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) -- 2.30.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Freedreno] [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 registers directly 2023-04-22 0:08 ` [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 " Dmitry Baryshkov @ 2023-04-26 16:58 ` Jeykumar Sankaran 0 siblings, 0 replies; 7+ messages in thread From: Jeykumar Sankaran @ 2023-04-26 16:58 UTC (permalink / raw) To: Dmitry Baryshkov, Rob Clark, Sean Paul, Abhinav Kumar Cc: freedreno, linux-arm-msm, Bjorn Andersson, dri-devel, Stephen Boyd, Daniel Vetter, David Airlie On 4/21/2023 5:08 PM, Dmitry Baryshkov wrote: > Stop using _sspp_subblk_offset() to get offset of the csc_blk. Inline > this function and use ctx->cap->sblk->csc_blk.base directly. > > As this was the last user, drop _sspp_subblk_offset() too. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c | 43 +++++---------------- > 1 file changed, 9 insertions(+), 34 deletions(-) > > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > index 22c59f2250be..f4698e28e197 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c > @@ -136,30 +136,6 @@ > #define TS_CLK 19200000 > > > -static int _sspp_subblk_offset(struct dpu_hw_sspp *ctx, > - int s_id, > - u32 *idx) > -{ > - int rc = 0; > - const struct dpu_sspp_sub_blks *sblk; > - > - if (!ctx || !ctx->cap || !ctx->cap->sblk) > - return -EINVAL; > - > - sblk = ctx->cap->sblk; > - > - switch (s_id) { > - case DPU_SSPP_CSC: > - case DPU_SSPP_CSC_10BIT: > - *idx = sblk->csc_blk.base; > - break; > - default: > - rc = -EINVAL; > - } > - > - return rc; > -} > - > static void dpu_hw_sspp_setup_multirect(struct dpu_sw_pipe *pipe) > { > struct dpu_hw_sspp *ctx = pipe->sspp; > @@ -210,19 +186,16 @@ static void _sspp_setup_opmode(struct dpu_hw_sspp *ctx, > static void _sspp_setup_csc10_opmode(struct dpu_hw_sspp *ctx, > u32 mask, u8 en) > { > - u32 idx; > + const struct dpu_sspp_sub_blks *sblk = ctx->cap->sblk; > u32 opmode; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_CSC_10BIT, &idx)) > - return; > - > - opmode = DPU_REG_READ(&ctx->hw, SSPP_VIG_CSC_10_OP_MODE + idx); > + opmode = DPU_REG_READ(&ctx->hw, sblk->csc_blk.base + SSPP_VIG_CSC_10_OP_MODE); > if (en) > opmode |= mask; > else > opmode &= ~mask; > > - DPU_REG_WRITE(&ctx->hw, SSPP_VIG_CSC_10_OP_MODE + idx, opmode); > + DPU_REG_WRITE(&ctx->hw, sblk->csc_blk.base + SSPP_VIG_CSC_10_OP_MODE, opmode); > } > > /* > @@ -530,18 +503,20 @@ static void dpu_hw_sspp_setup_sourceaddress(struct dpu_sw_pipe *pipe, > static void dpu_hw_sspp_setup_csc(struct dpu_hw_sspp *ctx, > const struct dpu_csc_cfg *data) > { > - u32 idx; > + u32 offset; > bool csc10 = false; > > - if (_sspp_subblk_offset(ctx, DPU_SSPP_CSC, &idx) || !data) > + if (!ctx || !data) > return; > > + offset = ctx->cap->sblk->csc_blk.base; > + > if (test_bit(DPU_SSPP_CSC_10BIT, &ctx->cap->features)) { > - idx += CSC_10BIT_OFFSET; > + offset += CSC_10BIT_OFFSET; > csc10 = true; > } > > - dpu_hw_csc_setup(&ctx->hw, idx, data, csc10); > + dpu_hw_csc_setup(&ctx->hw, offset, data, csc10); > } > > static void dpu_hw_sspp_setup_solidfill(struct dpu_sw_pipe *pipe, u32 color) Reviewed-by: Jeykumar Sankaran <quic_jeykumar@quicinc.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-04-26 16:58 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-22 0:08 [PATCH 0/3] drm/msm/dpu: drop _sspp_subblk_offset() Dmitry Baryshkov 2023-04-22 0:08 ` [PATCH 1/3] drm/msm/dpu: drop SSPP's SRC subblock Dmitry Baryshkov 2023-04-26 16:53 ` [Freedreno] " Jeykumar Sankaran 2023-04-22 0:08 ` [PATCH 2/3] drm/msm/dpu: access QSEED registers directly Dmitry Baryshkov 2023-04-26 16:57 ` [Freedreno] " Jeykumar Sankaran 2023-04-22 0:08 ` [PATCH 3/3] drm/msm/dpu: access CSC/CSC10 " Dmitry Baryshkov 2023-04-26 16:58 ` [Freedreno] " Jeykumar Sankaran
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox