Skip to content

Commit

Permalink
drm/radeon: add some MST registers
Browse files Browse the repository at this point in the history
These registers will be used later to setup

Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Dave Airlie authored and Alex Deucher committed Mar 19, 2015
1 parent bb26270 commit 00a014e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions drivers/gpu/drm/radeon/ni_reg.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,41 @@
# define NI_REGAMMA_PROG_B 4
# define NI_OVL_REGAMMA_MODE(x) (((x) & 0x7) << 4)

#define NI_DP_MSE_LINK_TIMING 0x73a0
# define NI_DP_MSE_LINK_FRAME (((x) & 0x3ff) << 0)
# define NI_DP_MSE_LINK_LINE (((x) & 0x3) << 16)

#define NI_DP_MSE_MISC_CNTL 0x736c
# define NI_DP_MSE_BLANK_CODE (((x) & 0x1) << 0)
# define NI_DP_MSE_TIMESTAMP_MODE (((x) & 0x1) << 4)
# define NI_DP_MSE_ZERO_ENCODER (((x) & 0x1) << 8)

#define NI_DP_MSE_RATE_CNTL 0x7384

#define NI_DP_MSE_RATE_UPDATE 0x738c

#define NI_DP_MSE_SAT0 0x7390
# define NI_DP_MSE_SAT_SRC0(x) (((x) & 0x7) << 0)
# define NI_DP_MSE_SAT_SLOT_COUNT0(x) (((x) & 0x3f) << 8)
# define NI_DP_MSE_SAT_SRC1(x) (((x) & 0x7) << 16)
# define NI_DP_MSE_SAT_SLOT_COUNT1(x) (((x) & 0x3f) << 24)

#define NI_DP_MSE_SAT1 0x7394

#define NI_DP_MSE_SAT2 0x7398

#define NI_DP_MSE_SAT_UPDATE 0x739c

#define NI_DIG_BE_CNTL 0x7140
# define NI_DIG_FE_SOURCE_SELECT(x) (((x) & 0x7f) << 8)
# define NI_DIG_FE_DIG_MODE(x) (((x) & 0x7) << 16)
# define NI_DIG_HPD_SELECT(x) (((x) & 0x7) << 28)

#define NI_DIG_FE_CNTL 0x7000
# define NI_DIG_SOURCE_SELECT(x) (((x) & 0x3) << 0)
# define NI_DIG_STEREOSYNC_SELECT(x) (((x) & 0x3) << 4)
# define NI_DIG_STEREOSYNC_GATE_EN(x) (((x) & 0x1) << 8)
# define NI_DIG_DUAL_LINK_ENABLE(x) (((x) & 0x1) << 16)
# define NI_DIG_SWAP(x) (((x) & 0x1) << 18)
# define NI_DIG_SYMCLK_FE_ON (0x1 << 24)
#endif

0 comments on commit 00a014e

Please sign in to comment.