Home | History | Annotate | Line # | Download | only in radeon
      1 /*	$NetBSD: ni_reg.h,v 1.3 2021/12/18 23:45:42 riastradh Exp $	*/
      2 
      3 /*
      4  * Copyright 2010 Advanced Micro Devices, Inc.
      5  *
      6  * Permission is hereby granted, free of charge, to any person obtaining a
      7  * copy of this software and associated documentation files (the "Software"),
      8  * to deal in the Software without restriction, including without limitation
      9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     10  * and/or sell copies of the Software, and to permit persons to whom the
     11  * Software is furnished to do so, subject to the following conditions:
     12  *
     13  * The above copyright notice and this permission notice shall be included in
     14  * all copies or substantial portions of the Software.
     15  *
     16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
     20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
     22  * OTHER DEALINGS IN THE SOFTWARE.
     23  *
     24  * Authors: Alex Deucher
     25  */
     26 #ifndef __NI_REG_H__
     27 #define __NI_REG_H__
     28 
     29 /* northern islands - DCE5 */
     30 
     31 #define NI_INPUT_GAMMA_CONTROL                         0x6840
     32 #       define NI_GRPH_INPUT_GAMMA_MODE(x)             (((x) & 0x3) << 0)
     33 #       define NI_INPUT_GAMMA_USE_LUT                  0
     34 #       define NI_INPUT_GAMMA_BYPASS                   1
     35 #       define NI_INPUT_GAMMA_SRGB_24                  2
     36 #       define NI_INPUT_GAMMA_XVYCC_222                3
     37 #       define NI_OVL_INPUT_GAMMA_MODE(x)              (((x) & 0x3) << 4)
     38 
     39 #define NI_PRESCALE_GRPH_CONTROL                       0x68b4
     40 #       define NI_GRPH_PRESCALE_BYPASS                 (1 << 4)
     41 
     42 #define NI_PRESCALE_OVL_CONTROL                        0x68c4
     43 #       define NI_OVL_PRESCALE_BYPASS                  (1 << 4)
     44 
     45 #define NI_INPUT_CSC_CONTROL                           0x68d4
     46 #       define NI_INPUT_CSC_GRPH_MODE(x)               (((x) & 0x3) << 0)
     47 #       define NI_INPUT_CSC_BYPASS                     0
     48 #       define NI_INPUT_CSC_PROG_COEFF                 1
     49 #       define NI_INPUT_CSC_PROG_SHARED_MATRIXA        2
     50 #       define NI_INPUT_CSC_OVL_MODE(x)                (((x) & 0x3) << 4)
     51 
     52 #define NI_OUTPUT_CSC_CONTROL                          0x68f0
     53 #       define NI_OUTPUT_CSC_GRPH_MODE(x)              (((x) & 0x7) << 0)
     54 #       define NI_OUTPUT_CSC_BYPASS                    0
     55 #       define NI_OUTPUT_CSC_TV_RGB                    1
     56 #       define NI_OUTPUT_CSC_YCBCR_601                 2
     57 #       define NI_OUTPUT_CSC_YCBCR_709                 3
     58 #       define NI_OUTPUT_CSC_PROG_COEFF                4
     59 #       define NI_OUTPUT_CSC_PROG_SHARED_MATRIXB       5
     60 #       define NI_OUTPUT_CSC_OVL_MODE(x)               (((x) & 0x7) << 4)
     61 
     62 #define NI_DEGAMMA_CONTROL                             0x6960
     63 #       define NI_GRPH_DEGAMMA_MODE(x)                 (((x) & 0x3) << 0)
     64 #       define NI_DEGAMMA_BYPASS                       0
     65 #       define NI_DEGAMMA_SRGB_24                      1
     66 #       define NI_DEGAMMA_XVYCC_222                    2
     67 #       define NI_OVL_DEGAMMA_MODE(x)                  (((x) & 0x3) << 4)
     68 #       define NI_ICON_DEGAMMA_MODE(x)                 (((x) & 0x3) << 8)
     69 #       define NI_CURSOR_DEGAMMA_MODE(x)               (((x) & 0x3) << 12)
     70 
     71 #define NI_GAMUT_REMAP_CONTROL                         0x6964
     72 #       define NI_GRPH_GAMUT_REMAP_MODE(x)             (((x) & 0x3) << 0)
     73 #       define NI_GAMUT_REMAP_BYPASS                   0
     74 #       define NI_GAMUT_REMAP_PROG_COEFF               1
     75 #       define NI_GAMUT_REMAP_PROG_SHARED_MATRIXA      2
     76 #       define NI_GAMUT_REMAP_PROG_SHARED_MATRIXB      3
     77 #       define NI_OVL_GAMUT_REMAP_MODE(x)              (((x) & 0x3) << 4)
     78 
     79 #define NI_REGAMMA_CONTROL                             0x6a80
     80 #       define NI_GRPH_REGAMMA_MODE(x)                 (((x) & 0x7) << 0)
     81 #       define NI_REGAMMA_BYPASS                       0
     82 #       define NI_REGAMMA_SRGB_24                      1
     83 #       define NI_REGAMMA_XVYCC_222                    2
     84 #       define NI_REGAMMA_PROG_A                       3
     85 #       define NI_REGAMMA_PROG_B                       4
     86 #       define NI_OVL_REGAMMA_MODE(x)                  (((x) & 0x7) << 4)
     87 
     88 #define NI_DP_MSE_LINK_TIMING                          0x73a0
     89 #	define NI_DP_MSE_LINK_FRAME			(((x) & 0x3ff) << 0)
     90 #	define NI_DP_MSE_LINK_LINE                      (((x) & 0x3) << 16)
     91 
     92 #define NI_DP_MSE_MISC_CNTL                            0x736c
     93 #       define NI_DP_MSE_BLANK_CODE                    (((x) & 0x1) << 0)
     94 #       define NI_DP_MSE_TIMESTAMP_MODE                (((x) & 0x1) << 4)
     95 #       define NI_DP_MSE_ZERO_ENCODER                  (((x) & 0x1) << 8)
     96 
     97 #define NI_DP_MSE_RATE_CNTL                            0x7384
     98 #       define NI_DP_MSE_RATE_Y(x)                   (((x) & 0x3ffffff) << 0)
     99 #       define NI_DP_MSE_RATE_X(x)                   (((x) & 0x3f) << 26)
    100 
    101 #define NI_DP_MSE_RATE_UPDATE                          0x738c
    102 
    103 #define NI_DP_MSE_SAT0                                 0x7390
    104 #       define NI_DP_MSE_SAT_SRC0(x)                   (((x) & 0x7) << 0)
    105 #       define NI_DP_MSE_SAT_SLOT_COUNT0(x)            (((x) & 0x3f) << 8)
    106 #       define NI_DP_MSE_SAT_SRC1(x)                   (((x) & 0x7) << 16)
    107 #       define NI_DP_MSE_SAT_SLOT_COUNT1(x)            (((x) & 0x3f) << 24)
    108 
    109 #define NI_DP_MSE_SAT1                                 0x7394
    110 
    111 #define NI_DP_MSE_SAT2                                 0x7398
    112 
    113 #define NI_DP_MSE_SAT_UPDATE                           0x739c
    114 #       define NI_DP_MSE_SAT_UPDATE_MASK               0x3
    115 #       define NI_DP_MSE_16_MTP_KEEPOUT                0x100
    116 
    117 #define NI_DIG_BE_CNTL                                 0x7140
    118 #       define NI_DIG_FE_SOURCE_SELECT(x)              (((x) & 0x7f) << 8)
    119 #       define NI_DIG_FE_DIG_MODE(x)                   (((x) & 0x7) << 16)
    120 #       define NI_DIG_MODE_DP_SST                      0
    121 #       define NI_DIG_MODE_LVDS                        1
    122 #       define NI_DIG_MODE_TMDS_DVI                    2
    123 #       define NI_DIG_MODE_TMDS_HDMI                   3
    124 #       define NI_DIG_MODE_DP_MST                      5
    125 #       define NI_DIG_HPD_SELECT(x)                    (((x) & 0x7) << 28)
    126 
    127 #define NI_DIG_FE_CNTL                                 0x7000
    128 #       define NI_DIG_SOURCE_SELECT(x)                 (((x) & 0x3) << 0)
    129 #       define NI_DIG_STEREOSYNC_SELECT(x)             (((x) & 0x3) << 4)
    130 #       define NI_DIG_STEREOSYNC_GATE_EN(x)            (((x) & 0x1) << 8)
    131 #       define NI_DIG_DUAL_LINK_ENABLE(x)              (((x) & 0x1) << 16)
    132 #       define NI_DIG_SWAP(x)                          (((x) & 0x1) << 18)
    133 #       define NI_DIG_SYMCLK_FE_ON                     (0x1 << 24)
    134 #endif
    135