Skip to content

Commit

Permalink
drm/msm/mdp5: Remove CTL flush dummy bits
Browse files Browse the repository at this point in the history
This TODO can now be removed and replaced by the previous patch
"drm/msm/mdp5: Update headers (add CTL flush bits)"

Signed-off-by: Stephane Viau <sviau@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
  • Loading branch information
Stephane Viau authored and Rob Clark committed Apr 1, 2015
1 parent 87ed66c commit 531db9f
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,13 +316,6 @@ int mdp5_ctl_blend(struct mdp5_ctl *ctl, u32 lm, u32 blend_cfg)

u32 mdp_ctl_flush_mask_encoder(struct mdp5_interface *intf)
{
/* these are dummy bits for now, but will appear in next chipsets: */
#define MDP5_CTL_FLUSH_TIMING_0 0x80000000
#define MDP5_CTL_FLUSH_TIMING_1 0x40000000
#define MDP5_CTL_FLUSH_TIMING_2 0x20000000
#define MDP5_CTL_FLUSH_TIMING_3 0x10000000
#define MDP5_CTL_FLUSH_WB 0x00010000

if (intf->type == INTF_WB)
return MDP5_CTL_FLUSH_WB;

Expand All @@ -337,10 +330,6 @@ u32 mdp_ctl_flush_mask_encoder(struct mdp5_interface *intf)

u32 mdp_ctl_flush_mask_cursor(int cursor_id)
{
/* these are dummy bits for now, but will appear in next chipsets: */
#define MDP5_CTL_FLUSH_CURSOR_0 0x00400000
#define MDP5_CTL_FLUSH_CURSOR_1 0x00800000

switch (cursor_id) {
case 0: return MDP5_CTL_FLUSH_CURSOR_0;
case 1: return MDP5_CTL_FLUSH_CURSOR_1;
Expand Down

0 comments on commit 531db9f

Please sign in to comment.