mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-15 22:31:47 -04:00
drm/msm/dpu: get rid of DPU_MDP_PERIPH_0_REMOVED
Continue migration to the MDSS-revision based checks and replace DPU_MDP_PERIPH_0_REMOVED feature bit with the core_major_ver >= 8 check. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Patchwork: https://patchwork.freedesktop.org/patch/655400/ Link: https://lore.kernel.org/r/20250522-dpu-drop-features-v5-19-3b2085a07884@oss.qualcomm.com
This commit is contained in:
committed by
Dmitry Baryshkov
parent
a48871823a
commit
bd88789bbd
@@ -21,7 +21,6 @@ static const struct dpu_caps sm8650_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sm8650_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
||||
},
|
||||
|
||||
@@ -21,7 +21,6 @@ static const struct dpu_caps sc8280xp_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sc8280xp_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0x0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 },
|
||||
[DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 },
|
||||
|
||||
@@ -21,7 +21,6 @@ static const struct dpu_caps sm8450_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sm8450_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0x0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 },
|
||||
[DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 },
|
||||
|
||||
@@ -20,7 +20,6 @@ static const struct dpu_caps sa8775p_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sa8775p_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0x0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 },
|
||||
[DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 },
|
||||
|
||||
@@ -21,7 +21,6 @@ static const struct dpu_caps sm8550_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sm8550_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
||||
},
|
||||
|
||||
@@ -21,7 +21,6 @@ static const struct dpu_caps sar2130p_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg sar2130p_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
||||
},
|
||||
|
||||
@@ -20,7 +20,6 @@ static const struct dpu_caps x1e80100_dpu_caps = {
|
||||
static const struct dpu_mdp_cfg x1e80100_mdp = {
|
||||
.name = "top_0",
|
||||
.base = 0, .len = 0x494,
|
||||
.features = BIT(DPU_MDP_PERIPH_0_REMOVED),
|
||||
.clk_ctrls = {
|
||||
[DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
||||
},
|
||||
|
||||
@@ -32,8 +32,6 @@
|
||||
* MDP TOP BLOCK features
|
||||
* @DPU_MDP_PANIC_PER_PIPE Panic configuration needs to be done per pipe
|
||||
* @DPU_MDP_10BIT_SUPPORT, Chipset supports 10 bit pixel formats
|
||||
* @DPU_MDP_PERIPH_0_REMOVED Indicates that access to periph top0 block results
|
||||
* in a failure
|
||||
* @DPU_MDP_MAX Maximum value
|
||||
|
||||
*/
|
||||
@@ -41,7 +39,6 @@ enum {
|
||||
DPU_MDP_PANIC_PER_PIPE = 0x1,
|
||||
DPU_MDP_10BIT_SUPPORT,
|
||||
DPU_MDP_AUDIO_SELECT,
|
||||
DPU_MDP_PERIPH_0_REMOVED,
|
||||
DPU_MDP_MAX
|
||||
};
|
||||
|
||||
|
||||
@@ -272,7 +272,7 @@ static void _setup_mdp_ops(struct dpu_hw_mdp_ops *ops,
|
||||
|
||||
if (mdss_rev->core_major_ver < 5)
|
||||
ops->setup_vsync_source = dpu_hw_setup_vsync_sel;
|
||||
else if (!(cap & BIT(DPU_MDP_PERIPH_0_REMOVED)))
|
||||
else if (mdss_rev->core_major_ver < 8)
|
||||
ops->setup_vsync_source = dpu_hw_setup_wd_timer;
|
||||
|
||||
ops->get_safe_status = dpu_hw_get_safe_status;
|
||||
|
||||
@@ -1022,7 +1022,7 @@ static void dpu_kms_mdp_snapshot(struct msm_disp_state *disp_state, struct msm_k
|
||||
dpu_kms->mmio + cat->wb[i].base, "%s",
|
||||
cat->wb[i].name);
|
||||
|
||||
if (cat->mdp[0].features & BIT(DPU_MDP_PERIPH_0_REMOVED)) {
|
||||
if (dpu_kms->catalog->mdss_ver->core_major_ver >= 8) {
|
||||
msm_disp_snapshot_add_block(disp_state, MDP_PERIPH_TOP0,
|
||||
dpu_kms->mmio + cat->mdp[0].base, "top");
|
||||
msm_disp_snapshot_add_block(disp_state, cat->mdp[0].len - MDP_PERIPH_TOP0_END,
|
||||
|
||||
Reference in New Issue
Block a user