Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright 2014 Advanced Micro Devices, Inc.
0003  *
0004  * Permission is hereby granted, free of charge, to any person obtaining a
0005  * copy of this software and associated documentation files (the "Software"),
0006  * to deal in the Software without restriction, including without limitation
0007  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
0008  * and/or sell copies of the Software, and to permit persons to whom the
0009  * Software is furnished to do so, subject to the following conditions:
0010  *
0011  * The above copyright notice and this permission notice shall be included in
0012  * all copies or substantial portions of the Software.
0013  *
0014  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
0018  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
0019  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
0020  * OTHER DEALINGS IN THE SOFTWARE.
0021  *
0022  */
0023 
0024 #include <drm/drm_fourcc.h>
0025 #include <drm/drm_vblank.h>
0026 
0027 #include "amdgpu.h"
0028 #include "amdgpu_pm.h"
0029 #include "amdgpu_i2c.h"
0030 #include "vid.h"
0031 #include "atom.h"
0032 #include "amdgpu_atombios.h"
0033 #include "atombios_crtc.h"
0034 #include "atombios_encoders.h"
0035 #include "amdgpu_pll.h"
0036 #include "amdgpu_connectors.h"
0037 #include "amdgpu_display.h"
0038 #include "dce_v11_0.h"
0039 
0040 #include "dce/dce_11_0_d.h"
0041 #include "dce/dce_11_0_sh_mask.h"
0042 #include "dce/dce_11_0_enum.h"
0043 #include "oss/oss_3_0_d.h"
0044 #include "oss/oss_3_0_sh_mask.h"
0045 #include "gmc/gmc_8_1_d.h"
0046 #include "gmc/gmc_8_1_sh_mask.h"
0047 
0048 #include "ivsrcid/ivsrcid_vislands30.h"
0049 
0050 static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev);
0051 static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev);
0052 
0053 static const u32 crtc_offsets[] =
0054 {
0055     CRTC0_REGISTER_OFFSET,
0056     CRTC1_REGISTER_OFFSET,
0057     CRTC2_REGISTER_OFFSET,
0058     CRTC3_REGISTER_OFFSET,
0059     CRTC4_REGISTER_OFFSET,
0060     CRTC5_REGISTER_OFFSET,
0061     CRTC6_REGISTER_OFFSET
0062 };
0063 
0064 static const u32 hpd_offsets[] =
0065 {
0066     HPD0_REGISTER_OFFSET,
0067     HPD1_REGISTER_OFFSET,
0068     HPD2_REGISTER_OFFSET,
0069     HPD3_REGISTER_OFFSET,
0070     HPD4_REGISTER_OFFSET,
0071     HPD5_REGISTER_OFFSET
0072 };
0073 
0074 static const uint32_t dig_offsets[] = {
0075     DIG0_REGISTER_OFFSET,
0076     DIG1_REGISTER_OFFSET,
0077     DIG2_REGISTER_OFFSET,
0078     DIG3_REGISTER_OFFSET,
0079     DIG4_REGISTER_OFFSET,
0080     DIG5_REGISTER_OFFSET,
0081     DIG6_REGISTER_OFFSET,
0082     DIG7_REGISTER_OFFSET,
0083     DIG8_REGISTER_OFFSET
0084 };
0085 
0086 static const struct {
0087     uint32_t        reg;
0088     uint32_t        vblank;
0089     uint32_t        vline;
0090     uint32_t        hpd;
0091 
0092 } interrupt_status_offsets[] = { {
0093     .reg = mmDISP_INTERRUPT_STATUS,
0094     .vblank = DISP_INTERRUPT_STATUS__LB_D1_VBLANK_INTERRUPT_MASK,
0095     .vline = DISP_INTERRUPT_STATUS__LB_D1_VLINE_INTERRUPT_MASK,
0096     .hpd = DISP_INTERRUPT_STATUS__DC_HPD1_INTERRUPT_MASK
0097 }, {
0098     .reg = mmDISP_INTERRUPT_STATUS_CONTINUE,
0099     .vblank = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VBLANK_INTERRUPT_MASK,
0100     .vline = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VLINE_INTERRUPT_MASK,
0101     .hpd = DISP_INTERRUPT_STATUS_CONTINUE__DC_HPD2_INTERRUPT_MASK
0102 }, {
0103     .reg = mmDISP_INTERRUPT_STATUS_CONTINUE2,
0104     .vblank = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VBLANK_INTERRUPT_MASK,
0105     .vline = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VLINE_INTERRUPT_MASK,
0106     .hpd = DISP_INTERRUPT_STATUS_CONTINUE2__DC_HPD3_INTERRUPT_MASK
0107 }, {
0108     .reg = mmDISP_INTERRUPT_STATUS_CONTINUE3,
0109     .vblank = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VBLANK_INTERRUPT_MASK,
0110     .vline = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VLINE_INTERRUPT_MASK,
0111     .hpd = DISP_INTERRUPT_STATUS_CONTINUE3__DC_HPD4_INTERRUPT_MASK
0112 }, {
0113     .reg = mmDISP_INTERRUPT_STATUS_CONTINUE4,
0114     .vblank = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VBLANK_INTERRUPT_MASK,
0115     .vline = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VLINE_INTERRUPT_MASK,
0116     .hpd = DISP_INTERRUPT_STATUS_CONTINUE4__DC_HPD5_INTERRUPT_MASK
0117 }, {
0118     .reg = mmDISP_INTERRUPT_STATUS_CONTINUE5,
0119     .vblank = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VBLANK_INTERRUPT_MASK,
0120     .vline = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VLINE_INTERRUPT_MASK,
0121     .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
0122 } };
0123 
0124 static const u32 cz_golden_settings_a11[] =
0125 {
0126     mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
0127     mmFBC_MISC, 0x1f311fff, 0x14300000,
0128 };
0129 
0130 static const u32 cz_mgcg_cgcg_init[] =
0131 {
0132     mmXDMA_CLOCK_GATING_CNTL, 0xffffffff, 0x00000100,
0133     mmXDMA_MEM_POWER_CNTL, 0x00000101, 0x00000000,
0134 };
0135 
0136 static const u32 stoney_golden_settings_a11[] =
0137 {
0138     mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
0139     mmFBC_MISC, 0x1f311fff, 0x14302000,
0140 };
0141 
0142 static const u32 polaris11_golden_settings_a11[] =
0143 {
0144     mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
0145     mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
0146     mmFBC_DEBUG1, 0xffffffff, 0x00000008,
0147     mmFBC_MISC, 0x9f313fff, 0x14302008,
0148     mmHDMI_CONTROL, 0x313f031f, 0x00000011,
0149 };
0150 
0151 static const u32 polaris10_golden_settings_a11[] =
0152 {
0153     mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
0154     mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
0155     mmFBC_MISC, 0x9f313fff, 0x14302008,
0156     mmHDMI_CONTROL, 0x313f031f, 0x00000011,
0157 };
0158 
0159 static void dce_v11_0_init_golden_registers(struct amdgpu_device *adev)
0160 {
0161     switch (adev->asic_type) {
0162     case CHIP_CARRIZO:
0163         amdgpu_device_program_register_sequence(adev,
0164                             cz_mgcg_cgcg_init,
0165                             ARRAY_SIZE(cz_mgcg_cgcg_init));
0166         amdgpu_device_program_register_sequence(adev,
0167                             cz_golden_settings_a11,
0168                             ARRAY_SIZE(cz_golden_settings_a11));
0169         break;
0170     case CHIP_STONEY:
0171         amdgpu_device_program_register_sequence(adev,
0172                             stoney_golden_settings_a11,
0173                             ARRAY_SIZE(stoney_golden_settings_a11));
0174         break;
0175     case CHIP_POLARIS11:
0176     case CHIP_POLARIS12:
0177         amdgpu_device_program_register_sequence(adev,
0178                             polaris11_golden_settings_a11,
0179                             ARRAY_SIZE(polaris11_golden_settings_a11));
0180         break;
0181     case CHIP_POLARIS10:
0182     case CHIP_VEGAM:
0183         amdgpu_device_program_register_sequence(adev,
0184                             polaris10_golden_settings_a11,
0185                             ARRAY_SIZE(polaris10_golden_settings_a11));
0186         break;
0187     default:
0188         break;
0189     }
0190 }
0191 
0192 static u32 dce_v11_0_audio_endpt_rreg(struct amdgpu_device *adev,
0193                      u32 block_offset, u32 reg)
0194 {
0195     unsigned long flags;
0196     u32 r;
0197 
0198     spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
0199     WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
0200     r = RREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset);
0201     spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
0202 
0203     return r;
0204 }
0205 
0206 static void dce_v11_0_audio_endpt_wreg(struct amdgpu_device *adev,
0207                       u32 block_offset, u32 reg, u32 v)
0208 {
0209     unsigned long flags;
0210 
0211     spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
0212     WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
0213     WREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset, v);
0214     spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
0215 }
0216 
0217 static u32 dce_v11_0_vblank_get_counter(struct amdgpu_device *adev, int crtc)
0218 {
0219     if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
0220         return 0;
0221     else
0222         return RREG32(mmCRTC_STATUS_FRAME_COUNT + crtc_offsets[crtc]);
0223 }
0224 
0225 static void dce_v11_0_pageflip_interrupt_init(struct amdgpu_device *adev)
0226 {
0227     unsigned i;
0228 
0229     /* Enable pflip interrupts */
0230     for (i = 0; i < adev->mode_info.num_crtc; i++)
0231         amdgpu_irq_get(adev, &adev->pageflip_irq, i);
0232 }
0233 
0234 static void dce_v11_0_pageflip_interrupt_fini(struct amdgpu_device *adev)
0235 {
0236     unsigned i;
0237 
0238     /* Disable pflip interrupts */
0239     for (i = 0; i < adev->mode_info.num_crtc; i++)
0240         amdgpu_irq_put(adev, &adev->pageflip_irq, i);
0241 }
0242 
0243 /**
0244  * dce_v11_0_page_flip - pageflip callback.
0245  *
0246  * @adev: amdgpu_device pointer
0247  * @crtc_id: crtc to cleanup pageflip on
0248  * @crtc_base: new address of the crtc (GPU MC address)
0249  * @async: asynchronous flip
0250  *
0251  * Triggers the actual pageflip by updating the primary
0252  * surface base address.
0253  */
0254 static void dce_v11_0_page_flip(struct amdgpu_device *adev,
0255                 int crtc_id, u64 crtc_base, bool async)
0256 {
0257     struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
0258     struct drm_framebuffer *fb = amdgpu_crtc->base.primary->fb;
0259     u32 tmp;
0260 
0261     /* flip immediate for async, default is vsync */
0262     tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
0263     tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
0264                 GRPH_SURFACE_UPDATE_IMMEDIATE_EN, async ? 1 : 0);
0265     WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
0266     /* update pitch */
0267     WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset,
0268            fb->pitches[0] / fb->format->cpp[0]);
0269     /* update the scanout addresses */
0270     WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
0271            upper_32_bits(crtc_base));
0272     /* writing to the low address triggers the update */
0273     WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
0274            lower_32_bits(crtc_base));
0275     /* post the write */
0276     RREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset);
0277 }
0278 
0279 static int dce_v11_0_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
0280                     u32 *vbl, u32 *position)
0281 {
0282     if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
0283         return -EINVAL;
0284 
0285     *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]);
0286     *position = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
0287 
0288     return 0;
0289 }
0290 
0291 /**
0292  * dce_v11_0_hpd_sense - hpd sense callback.
0293  *
0294  * @adev: amdgpu_device pointer
0295  * @hpd: hpd (hotplug detect) pin
0296  *
0297  * Checks if a digital monitor is connected (evergreen+).
0298  * Returns true if connected, false if not connected.
0299  */
0300 static bool dce_v11_0_hpd_sense(struct amdgpu_device *adev,
0301                    enum amdgpu_hpd_id hpd)
0302 {
0303     bool connected = false;
0304 
0305     if (hpd >= adev->mode_info.num_hpd)
0306         return connected;
0307 
0308     if (RREG32(mmDC_HPD_INT_STATUS + hpd_offsets[hpd]) &
0309         DC_HPD_INT_STATUS__DC_HPD_SENSE_MASK)
0310         connected = true;
0311 
0312     return connected;
0313 }
0314 
0315 /**
0316  * dce_v11_0_hpd_set_polarity - hpd set polarity callback.
0317  *
0318  * @adev: amdgpu_device pointer
0319  * @hpd: hpd (hotplug detect) pin
0320  *
0321  * Set the polarity of the hpd pin (evergreen+).
0322  */
0323 static void dce_v11_0_hpd_set_polarity(struct amdgpu_device *adev,
0324                       enum amdgpu_hpd_id hpd)
0325 {
0326     u32 tmp;
0327     bool connected = dce_v11_0_hpd_sense(adev, hpd);
0328 
0329     if (hpd >= adev->mode_info.num_hpd)
0330         return;
0331 
0332     tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
0333     if (connected)
0334         tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 0);
0335     else
0336         tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 1);
0337     WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
0338 }
0339 
0340 /**
0341  * dce_v11_0_hpd_init - hpd setup callback.
0342  *
0343  * @adev: amdgpu_device pointer
0344  *
0345  * Setup the hpd pins used by the card (evergreen+).
0346  * Enable the pin, set the polarity, and enable the hpd interrupts.
0347  */
0348 static void dce_v11_0_hpd_init(struct amdgpu_device *adev)
0349 {
0350     struct drm_device *dev = adev_to_drm(adev);
0351     struct drm_connector *connector;
0352     struct drm_connector_list_iter iter;
0353     u32 tmp;
0354 
0355     drm_connector_list_iter_begin(dev, &iter);
0356     drm_for_each_connector_iter(connector, &iter) {
0357         struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
0358 
0359         if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
0360             continue;
0361 
0362         if (connector->connector_type == DRM_MODE_CONNECTOR_eDP ||
0363             connector->connector_type == DRM_MODE_CONNECTOR_LVDS) {
0364             /* don't try to enable hpd on eDP or LVDS avoid breaking the
0365              * aux dp channel on imac and help (but not completely fix)
0366              * https://bugzilla.redhat.com/show_bug.cgi?id=726143
0367              * also avoid interrupt storms during dpms.
0368              */
0369             tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
0370             tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
0371             WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
0372             continue;
0373         }
0374 
0375         tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
0376         tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 1);
0377         WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
0378 
0379         tmp = RREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd]);
0380         tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
0381                     DC_HPD_CONNECT_INT_DELAY,
0382                     AMDGPU_HPD_CONNECT_INT_DELAY_IN_MS);
0383         tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
0384                     DC_HPD_DISCONNECT_INT_DELAY,
0385                     AMDGPU_HPD_DISCONNECT_INT_DELAY_IN_MS);
0386         WREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
0387 
0388         dce_v11_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd);
0389         amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
0390     }
0391     drm_connector_list_iter_end(&iter);
0392 }
0393 
0394 /**
0395  * dce_v11_0_hpd_fini - hpd tear down callback.
0396  *
0397  * @adev: amdgpu_device pointer
0398  *
0399  * Tear down the hpd pins used by the card (evergreen+).
0400  * Disable the hpd interrupts.
0401  */
0402 static void dce_v11_0_hpd_fini(struct amdgpu_device *adev)
0403 {
0404     struct drm_device *dev = adev_to_drm(adev);
0405     struct drm_connector *connector;
0406     struct drm_connector_list_iter iter;
0407     u32 tmp;
0408 
0409     drm_connector_list_iter_begin(dev, &iter);
0410     drm_for_each_connector_iter(connector, &iter) {
0411         struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
0412 
0413         if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
0414             continue;
0415 
0416         tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
0417         tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 0);
0418         WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
0419 
0420         amdgpu_irq_put(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
0421     }
0422     drm_connector_list_iter_end(&iter);
0423 }
0424 
0425 static u32 dce_v11_0_hpd_get_gpio_reg(struct amdgpu_device *adev)
0426 {
0427     return mmDC_GPIO_HPD_A;
0428 }
0429 
0430 static bool dce_v11_0_is_display_hung(struct amdgpu_device *adev)
0431 {
0432     u32 crtc_hung = 0;
0433     u32 crtc_status[6];
0434     u32 i, j, tmp;
0435 
0436     for (i = 0; i < adev->mode_info.num_crtc; i++) {
0437         tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
0438         if (REG_GET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN)) {
0439             crtc_status[i] = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
0440             crtc_hung |= (1 << i);
0441         }
0442     }
0443 
0444     for (j = 0; j < 10; j++) {
0445         for (i = 0; i < adev->mode_info.num_crtc; i++) {
0446             if (crtc_hung & (1 << i)) {
0447                 tmp = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
0448                 if (tmp != crtc_status[i])
0449                     crtc_hung &= ~(1 << i);
0450             }
0451         }
0452         if (crtc_hung == 0)
0453             return false;
0454         udelay(100);
0455     }
0456 
0457     return true;
0458 }
0459 
0460 static void dce_v11_0_set_vga_render_state(struct amdgpu_device *adev,
0461                        bool render)
0462 {
0463     u32 tmp;
0464 
0465     /* Lockout access through VGA aperture*/
0466     tmp = RREG32(mmVGA_HDP_CONTROL);
0467     if (render)
0468         tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 0);
0469     else
0470         tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
0471     WREG32(mmVGA_HDP_CONTROL, tmp);
0472 
0473     /* disable VGA render */
0474     tmp = RREG32(mmVGA_RENDER_CONTROL);
0475     if (render)
0476         tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 1);
0477     else
0478         tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
0479     WREG32(mmVGA_RENDER_CONTROL, tmp);
0480 }
0481 
0482 static int dce_v11_0_get_num_crtc (struct amdgpu_device *adev)
0483 {
0484     int num_crtc = 0;
0485 
0486     switch (adev->asic_type) {
0487     case CHIP_CARRIZO:
0488         num_crtc = 3;
0489         break;
0490     case CHIP_STONEY:
0491         num_crtc = 2;
0492         break;
0493     case CHIP_POLARIS10:
0494     case CHIP_VEGAM:
0495         num_crtc = 6;
0496         break;
0497     case CHIP_POLARIS11:
0498     case CHIP_POLARIS12:
0499         num_crtc = 5;
0500         break;
0501     default:
0502         num_crtc = 0;
0503     }
0504     return num_crtc;
0505 }
0506 
0507 void dce_v11_0_disable_dce(struct amdgpu_device *adev)
0508 {
0509     /*Disable VGA render and enabled crtc, if has DCE engine*/
0510     if (amdgpu_atombios_has_dce_engine_info(adev)) {
0511         u32 tmp;
0512         int crtc_enabled, i;
0513 
0514         dce_v11_0_set_vga_render_state(adev, false);
0515 
0516         /*Disable crtc*/
0517         for (i = 0; i < dce_v11_0_get_num_crtc(adev); i++) {
0518             crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
0519                                      CRTC_CONTROL, CRTC_MASTER_EN);
0520             if (crtc_enabled) {
0521                 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
0522                 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
0523                 tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
0524                 WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
0525                 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
0526             }
0527         }
0528     }
0529 }
0530 
0531 static void dce_v11_0_program_fmt(struct drm_encoder *encoder)
0532 {
0533     struct drm_device *dev = encoder->dev;
0534     struct amdgpu_device *adev = drm_to_adev(dev);
0535     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
0536     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
0537     struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
0538     int bpc = 0;
0539     u32 tmp = 0;
0540     enum amdgpu_connector_dither dither = AMDGPU_FMT_DITHER_DISABLE;
0541 
0542     if (connector) {
0543         struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
0544         bpc = amdgpu_connector_get_monitor_bpc(connector);
0545         dither = amdgpu_connector->dither;
0546     }
0547 
0548     /* LVDS/eDP FMT is set up by atom */
0549     if (amdgpu_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
0550         return;
0551 
0552     /* not needed for analog */
0553     if ((amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1) ||
0554         (amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2))
0555         return;
0556 
0557     if (bpc == 0)
0558         return;
0559 
0560     switch (bpc) {
0561     case 6:
0562         if (dither == AMDGPU_FMT_DITHER_ENABLE) {
0563             /* XXX sort out optimal dither settings */
0564             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
0565             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
0566             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
0567             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 0);
0568         } else {
0569             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
0570             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 0);
0571         }
0572         break;
0573     case 8:
0574         if (dither == AMDGPU_FMT_DITHER_ENABLE) {
0575             /* XXX sort out optimal dither settings */
0576             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
0577             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
0578             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
0579             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
0580             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 1);
0581         } else {
0582             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
0583             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 1);
0584         }
0585         break;
0586     case 10:
0587         if (dither == AMDGPU_FMT_DITHER_ENABLE) {
0588             /* XXX sort out optimal dither settings */
0589             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
0590             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
0591             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
0592             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
0593             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 2);
0594         } else {
0595             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
0596             tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 2);
0597         }
0598         break;
0599     default:
0600         /* not needed */
0601         break;
0602     }
0603 
0604     WREG32(mmFMT_BIT_DEPTH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
0605 }
0606 
0607 
0608 /* display watermark setup */
0609 /**
0610  * dce_v11_0_line_buffer_adjust - Set up the line buffer
0611  *
0612  * @adev: amdgpu_device pointer
0613  * @amdgpu_crtc: the selected display controller
0614  * @mode: the current display mode on the selected display
0615  * controller
0616  *
0617  * Setup up the line buffer allocation for
0618  * the selected display controller (CIK).
0619  * Returns the line buffer size in pixels.
0620  */
0621 static u32 dce_v11_0_line_buffer_adjust(struct amdgpu_device *adev,
0622                        struct amdgpu_crtc *amdgpu_crtc,
0623                        struct drm_display_mode *mode)
0624 {
0625     u32 tmp, buffer_alloc, i, mem_cfg;
0626     u32 pipe_offset = amdgpu_crtc->crtc_id;
0627     /*
0628      * Line Buffer Setup
0629      * There are 6 line buffers, one for each display controllers.
0630      * There are 3 partitions per LB. Select the number of partitions
0631      * to enable based on the display width.  For display widths larger
0632      * than 4096, you need use to use 2 display controllers and combine
0633      * them using the stereo blender.
0634      */
0635     if (amdgpu_crtc->base.enabled && mode) {
0636         if (mode->crtc_hdisplay < 1920) {
0637             mem_cfg = 1;
0638             buffer_alloc = 2;
0639         } else if (mode->crtc_hdisplay < 2560) {
0640             mem_cfg = 2;
0641             buffer_alloc = 2;
0642         } else if (mode->crtc_hdisplay < 4096) {
0643             mem_cfg = 0;
0644             buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
0645         } else {
0646             DRM_DEBUG_KMS("Mode too big for LB!\n");
0647             mem_cfg = 0;
0648             buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
0649         }
0650     } else {
0651         mem_cfg = 1;
0652         buffer_alloc = 0;
0653     }
0654 
0655     tmp = RREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset);
0656     tmp = REG_SET_FIELD(tmp, LB_MEMORY_CTRL, LB_MEMORY_CONFIG, mem_cfg);
0657     WREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset, tmp);
0658 
0659     tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
0660     tmp = REG_SET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATED, buffer_alloc);
0661     WREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset, tmp);
0662 
0663     for (i = 0; i < adev->usec_timeout; i++) {
0664         tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
0665         if (REG_GET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATION_COMPLETED))
0666             break;
0667         udelay(1);
0668     }
0669 
0670     if (amdgpu_crtc->base.enabled && mode) {
0671         switch (mem_cfg) {
0672         case 0:
0673         default:
0674             return 4096 * 2;
0675         case 1:
0676             return 1920 * 2;
0677         case 2:
0678             return 2560 * 2;
0679         }
0680     }
0681 
0682     /* controller not enabled, so no lb used */
0683     return 0;
0684 }
0685 
0686 /**
0687  * cik_get_number_of_dram_channels - get the number of dram channels
0688  *
0689  * @adev: amdgpu_device pointer
0690  *
0691  * Look up the number of video ram channels (CIK).
0692  * Used for display watermark bandwidth calculations
0693  * Returns the number of dram channels
0694  */
0695 static u32 cik_get_number_of_dram_channels(struct amdgpu_device *adev)
0696 {
0697     u32 tmp = RREG32(mmMC_SHARED_CHMAP);
0698 
0699     switch (REG_GET_FIELD(tmp, MC_SHARED_CHMAP, NOOFCHAN)) {
0700     case 0:
0701     default:
0702         return 1;
0703     case 1:
0704         return 2;
0705     case 2:
0706         return 4;
0707     case 3:
0708         return 8;
0709     case 4:
0710         return 3;
0711     case 5:
0712         return 6;
0713     case 6:
0714         return 10;
0715     case 7:
0716         return 12;
0717     case 8:
0718         return 16;
0719     }
0720 }
0721 
0722 struct dce10_wm_params {
0723     u32 dram_channels; /* number of dram channels */
0724     u32 yclk;          /* bandwidth per dram data pin in kHz */
0725     u32 sclk;          /* engine clock in kHz */
0726     u32 disp_clk;      /* display clock in kHz */
0727     u32 src_width;     /* viewport width */
0728     u32 active_time;   /* active display time in ns */
0729     u32 blank_time;    /* blank time in ns */
0730     bool interlaced;    /* mode is interlaced */
0731     fixed20_12 vsc;    /* vertical scale ratio */
0732     u32 num_heads;     /* number of active crtcs */
0733     u32 bytes_per_pixel; /* bytes per pixel display + overlay */
0734     u32 lb_size;       /* line buffer allocated to pipe */
0735     u32 vtaps;         /* vertical scaler taps */
0736 };
0737 
0738 /**
0739  * dce_v11_0_dram_bandwidth - get the dram bandwidth
0740  *
0741  * @wm: watermark calculation data
0742  *
0743  * Calculate the raw dram bandwidth (CIK).
0744  * Used for display watermark bandwidth calculations
0745  * Returns the dram bandwidth in MBytes/s
0746  */
0747 static u32 dce_v11_0_dram_bandwidth(struct dce10_wm_params *wm)
0748 {
0749     /* Calculate raw DRAM Bandwidth */
0750     fixed20_12 dram_efficiency; /* 0.7 */
0751     fixed20_12 yclk, dram_channels, bandwidth;
0752     fixed20_12 a;
0753 
0754     a.full = dfixed_const(1000);
0755     yclk.full = dfixed_const(wm->yclk);
0756     yclk.full = dfixed_div(yclk, a);
0757     dram_channels.full = dfixed_const(wm->dram_channels * 4);
0758     a.full = dfixed_const(10);
0759     dram_efficiency.full = dfixed_const(7);
0760     dram_efficiency.full = dfixed_div(dram_efficiency, a);
0761     bandwidth.full = dfixed_mul(dram_channels, yclk);
0762     bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
0763 
0764     return dfixed_trunc(bandwidth);
0765 }
0766 
0767 /**
0768  * dce_v11_0_dram_bandwidth_for_display - get the dram bandwidth for display
0769  *
0770  * @wm: watermark calculation data
0771  *
0772  * Calculate the dram bandwidth used for display (CIK).
0773  * Used for display watermark bandwidth calculations
0774  * Returns the dram bandwidth for display in MBytes/s
0775  */
0776 static u32 dce_v11_0_dram_bandwidth_for_display(struct dce10_wm_params *wm)
0777 {
0778     /* Calculate DRAM Bandwidth and the part allocated to display. */
0779     fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */
0780     fixed20_12 yclk, dram_channels, bandwidth;
0781     fixed20_12 a;
0782 
0783     a.full = dfixed_const(1000);
0784     yclk.full = dfixed_const(wm->yclk);
0785     yclk.full = dfixed_div(yclk, a);
0786     dram_channels.full = dfixed_const(wm->dram_channels * 4);
0787     a.full = dfixed_const(10);
0788     disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */
0789     disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a);
0790     bandwidth.full = dfixed_mul(dram_channels, yclk);
0791     bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation);
0792 
0793     return dfixed_trunc(bandwidth);
0794 }
0795 
0796 /**
0797  * dce_v11_0_data_return_bandwidth - get the data return bandwidth
0798  *
0799  * @wm: watermark calculation data
0800  *
0801  * Calculate the data return bandwidth used for display (CIK).
0802  * Used for display watermark bandwidth calculations
0803  * Returns the data return bandwidth in MBytes/s
0804  */
0805 static u32 dce_v11_0_data_return_bandwidth(struct dce10_wm_params *wm)
0806 {
0807     /* Calculate the display Data return Bandwidth */
0808     fixed20_12 return_efficiency; /* 0.8 */
0809     fixed20_12 sclk, bandwidth;
0810     fixed20_12 a;
0811 
0812     a.full = dfixed_const(1000);
0813     sclk.full = dfixed_const(wm->sclk);
0814     sclk.full = dfixed_div(sclk, a);
0815     a.full = dfixed_const(10);
0816     return_efficiency.full = dfixed_const(8);
0817     return_efficiency.full = dfixed_div(return_efficiency, a);
0818     a.full = dfixed_const(32);
0819     bandwidth.full = dfixed_mul(a, sclk);
0820     bandwidth.full = dfixed_mul(bandwidth, return_efficiency);
0821 
0822     return dfixed_trunc(bandwidth);
0823 }
0824 
0825 /**
0826  * dce_v11_0_dmif_request_bandwidth - get the dmif bandwidth
0827  *
0828  * @wm: watermark calculation data
0829  *
0830  * Calculate the dmif bandwidth used for display (CIK).
0831  * Used for display watermark bandwidth calculations
0832  * Returns the dmif bandwidth in MBytes/s
0833  */
0834 static u32 dce_v11_0_dmif_request_bandwidth(struct dce10_wm_params *wm)
0835 {
0836     /* Calculate the DMIF Request Bandwidth */
0837     fixed20_12 disp_clk_request_efficiency; /* 0.8 */
0838     fixed20_12 disp_clk, bandwidth;
0839     fixed20_12 a, b;
0840 
0841     a.full = dfixed_const(1000);
0842     disp_clk.full = dfixed_const(wm->disp_clk);
0843     disp_clk.full = dfixed_div(disp_clk, a);
0844     a.full = dfixed_const(32);
0845     b.full = dfixed_mul(a, disp_clk);
0846 
0847     a.full = dfixed_const(10);
0848     disp_clk_request_efficiency.full = dfixed_const(8);
0849     disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a);
0850 
0851     bandwidth.full = dfixed_mul(b, disp_clk_request_efficiency);
0852 
0853     return dfixed_trunc(bandwidth);
0854 }
0855 
0856 /**
0857  * dce_v11_0_available_bandwidth - get the min available bandwidth
0858  *
0859  * @wm: watermark calculation data
0860  *
0861  * Calculate the min available bandwidth used for display (CIK).
0862  * Used for display watermark bandwidth calculations
0863  * Returns the min available bandwidth in MBytes/s
0864  */
0865 static u32 dce_v11_0_available_bandwidth(struct dce10_wm_params *wm)
0866 {
0867     /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */
0868     u32 dram_bandwidth = dce_v11_0_dram_bandwidth(wm);
0869     u32 data_return_bandwidth = dce_v11_0_data_return_bandwidth(wm);
0870     u32 dmif_req_bandwidth = dce_v11_0_dmif_request_bandwidth(wm);
0871 
0872     return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth));
0873 }
0874 
0875 /**
0876  * dce_v11_0_average_bandwidth - get the average available bandwidth
0877  *
0878  * @wm: watermark calculation data
0879  *
0880  * Calculate the average available bandwidth used for display (CIK).
0881  * Used for display watermark bandwidth calculations
0882  * Returns the average available bandwidth in MBytes/s
0883  */
0884 static u32 dce_v11_0_average_bandwidth(struct dce10_wm_params *wm)
0885 {
0886     /* Calculate the display mode Average Bandwidth
0887      * DisplayMode should contain the source and destination dimensions,
0888      * timing, etc.
0889      */
0890     fixed20_12 bpp;
0891     fixed20_12 line_time;
0892     fixed20_12 src_width;
0893     fixed20_12 bandwidth;
0894     fixed20_12 a;
0895 
0896     a.full = dfixed_const(1000);
0897     line_time.full = dfixed_const(wm->active_time + wm->blank_time);
0898     line_time.full = dfixed_div(line_time, a);
0899     bpp.full = dfixed_const(wm->bytes_per_pixel);
0900     src_width.full = dfixed_const(wm->src_width);
0901     bandwidth.full = dfixed_mul(src_width, bpp);
0902     bandwidth.full = dfixed_mul(bandwidth, wm->vsc);
0903     bandwidth.full = dfixed_div(bandwidth, line_time);
0904 
0905     return dfixed_trunc(bandwidth);
0906 }
0907 
0908 /**
0909  * dce_v11_0_latency_watermark - get the latency watermark
0910  *
0911  * @wm: watermark calculation data
0912  *
0913  * Calculate the latency watermark (CIK).
0914  * Used for display watermark bandwidth calculations
0915  * Returns the latency watermark in ns
0916  */
0917 static u32 dce_v11_0_latency_watermark(struct dce10_wm_params *wm)
0918 {
0919     /* First calculate the latency in ns */
0920     u32 mc_latency = 2000; /* 2000 ns. */
0921     u32 available_bandwidth = dce_v11_0_available_bandwidth(wm);
0922     u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth;
0923     u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth;
0924     u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */
0925     u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) +
0926         (wm->num_heads * cursor_line_pair_return_time);
0927     u32 latency = mc_latency + other_heads_data_return_time + dc_latency;
0928     u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time;
0929     u32 tmp, dmif_size = 12288;
0930     fixed20_12 a, b, c;
0931 
0932     if (wm->num_heads == 0)
0933         return 0;
0934 
0935     a.full = dfixed_const(2);
0936     b.full = dfixed_const(1);
0937     if ((wm->vsc.full > a.full) ||
0938         ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) ||
0939         (wm->vtaps >= 5) ||
0940         ((wm->vsc.full >= a.full) && wm->interlaced))
0941         max_src_lines_per_dst_line = 4;
0942     else
0943         max_src_lines_per_dst_line = 2;
0944 
0945     a.full = dfixed_const(available_bandwidth);
0946     b.full = dfixed_const(wm->num_heads);
0947     a.full = dfixed_div(a, b);
0948     tmp = div_u64((u64) dmif_size * (u64) wm->disp_clk, mc_latency + 512);
0949     tmp = min(dfixed_trunc(a), tmp);
0950 
0951     lb_fill_bw = min(tmp, wm->disp_clk * wm->bytes_per_pixel / 1000);
0952 
0953     a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel);
0954     b.full = dfixed_const(1000);
0955     c.full = dfixed_const(lb_fill_bw);
0956     b.full = dfixed_div(c, b);
0957     a.full = dfixed_div(a, b);
0958     line_fill_time = dfixed_trunc(a);
0959 
0960     if (line_fill_time < wm->active_time)
0961         return latency;
0962     else
0963         return latency + (line_fill_time - wm->active_time);
0964 
0965 }
0966 
0967 /**
0968  * dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display - check
0969  * average and available dram bandwidth
0970  *
0971  * @wm: watermark calculation data
0972  *
0973  * Check if the display average bandwidth fits in the display
0974  * dram bandwidth (CIK).
0975  * Used for display watermark bandwidth calculations
0976  * Returns true if the display fits, false if not.
0977  */
0978 static bool dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(struct dce10_wm_params *wm)
0979 {
0980     if (dce_v11_0_average_bandwidth(wm) <=
0981         (dce_v11_0_dram_bandwidth_for_display(wm) / wm->num_heads))
0982         return true;
0983     else
0984         return false;
0985 }
0986 
0987 /**
0988  * dce_v11_0_average_bandwidth_vs_available_bandwidth - check
0989  * average and available bandwidth
0990  *
0991  * @wm: watermark calculation data
0992  *
0993  * Check if the display average bandwidth fits in the display
0994  * available bandwidth (CIK).
0995  * Used for display watermark bandwidth calculations
0996  * Returns true if the display fits, false if not.
0997  */
0998 static bool dce_v11_0_average_bandwidth_vs_available_bandwidth(struct dce10_wm_params *wm)
0999 {
1000     if (dce_v11_0_average_bandwidth(wm) <=
1001         (dce_v11_0_available_bandwidth(wm) / wm->num_heads))
1002         return true;
1003     else
1004         return false;
1005 }
1006 
1007 /**
1008  * dce_v11_0_check_latency_hiding - check latency hiding
1009  *
1010  * @wm: watermark calculation data
1011  *
1012  * Check latency hiding (CIK).
1013  * Used for display watermark bandwidth calculations
1014  * Returns true if the display fits, false if not.
1015  */
1016 static bool dce_v11_0_check_latency_hiding(struct dce10_wm_params *wm)
1017 {
1018     u32 lb_partitions = wm->lb_size / wm->src_width;
1019     u32 line_time = wm->active_time + wm->blank_time;
1020     u32 latency_tolerant_lines;
1021     u32 latency_hiding;
1022     fixed20_12 a;
1023 
1024     a.full = dfixed_const(1);
1025     if (wm->vsc.full > a.full)
1026         latency_tolerant_lines = 1;
1027     else {
1028         if (lb_partitions <= (wm->vtaps + 1))
1029             latency_tolerant_lines = 1;
1030         else
1031             latency_tolerant_lines = 2;
1032     }
1033 
1034     latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time);
1035 
1036     if (dce_v11_0_latency_watermark(wm) <= latency_hiding)
1037         return true;
1038     else
1039         return false;
1040 }
1041 
1042 /**
1043  * dce_v11_0_program_watermarks - program display watermarks
1044  *
1045  * @adev: amdgpu_device pointer
1046  * @amdgpu_crtc: the selected display controller
1047  * @lb_size: line buffer size
1048  * @num_heads: number of display controllers in use
1049  *
1050  * Calculate and program the display watermarks for the
1051  * selected display controller (CIK).
1052  */
1053 static void dce_v11_0_program_watermarks(struct amdgpu_device *adev,
1054                     struct amdgpu_crtc *amdgpu_crtc,
1055                     u32 lb_size, u32 num_heads)
1056 {
1057     struct drm_display_mode *mode = &amdgpu_crtc->base.mode;
1058     struct dce10_wm_params wm_low, wm_high;
1059     u32 active_time;
1060     u32 line_time = 0;
1061     u32 latency_watermark_a = 0, latency_watermark_b = 0;
1062     u32 tmp, wm_mask, lb_vblank_lead_lines = 0;
1063 
1064     if (amdgpu_crtc->base.enabled && num_heads && mode) {
1065         active_time = (u32) div_u64((u64)mode->crtc_hdisplay * 1000000,
1066                         (u32)mode->clock);
1067         line_time = (u32) div_u64((u64)mode->crtc_htotal * 1000000,
1068                       (u32)mode->clock);
1069         line_time = min(line_time, (u32)65535);
1070 
1071         /* watermark for high clocks */
1072         if (adev->pm.dpm_enabled) {
1073             wm_high.yclk =
1074                 amdgpu_dpm_get_mclk(adev, false) * 10;
1075             wm_high.sclk =
1076                 amdgpu_dpm_get_sclk(adev, false) * 10;
1077         } else {
1078             wm_high.yclk = adev->pm.current_mclk * 10;
1079             wm_high.sclk = adev->pm.current_sclk * 10;
1080         }
1081 
1082         wm_high.disp_clk = mode->clock;
1083         wm_high.src_width = mode->crtc_hdisplay;
1084         wm_high.active_time = active_time;
1085         wm_high.blank_time = line_time - wm_high.active_time;
1086         wm_high.interlaced = false;
1087         if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1088             wm_high.interlaced = true;
1089         wm_high.vsc = amdgpu_crtc->vsc;
1090         wm_high.vtaps = 1;
1091         if (amdgpu_crtc->rmx_type != RMX_OFF)
1092             wm_high.vtaps = 2;
1093         wm_high.bytes_per_pixel = 4; /* XXX: get this from fb config */
1094         wm_high.lb_size = lb_size;
1095         wm_high.dram_channels = cik_get_number_of_dram_channels(adev);
1096         wm_high.num_heads = num_heads;
1097 
1098         /* set for high clocks */
1099         latency_watermark_a = min(dce_v11_0_latency_watermark(&wm_high), (u32)65535);
1100 
1101         /* possibly force display priority to high */
1102         /* should really do this at mode validation time... */
1103         if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_high) ||
1104             !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_high) ||
1105             !dce_v11_0_check_latency_hiding(&wm_high) ||
1106             (adev->mode_info.disp_priority == 2)) {
1107             DRM_DEBUG_KMS("force priority to high\n");
1108         }
1109 
1110         /* watermark for low clocks */
1111         if (adev->pm.dpm_enabled) {
1112             wm_low.yclk =
1113                 amdgpu_dpm_get_mclk(adev, true) * 10;
1114             wm_low.sclk =
1115                 amdgpu_dpm_get_sclk(adev, true) * 10;
1116         } else {
1117             wm_low.yclk = adev->pm.current_mclk * 10;
1118             wm_low.sclk = adev->pm.current_sclk * 10;
1119         }
1120 
1121         wm_low.disp_clk = mode->clock;
1122         wm_low.src_width = mode->crtc_hdisplay;
1123         wm_low.active_time = active_time;
1124         wm_low.blank_time = line_time - wm_low.active_time;
1125         wm_low.interlaced = false;
1126         if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1127             wm_low.interlaced = true;
1128         wm_low.vsc = amdgpu_crtc->vsc;
1129         wm_low.vtaps = 1;
1130         if (amdgpu_crtc->rmx_type != RMX_OFF)
1131             wm_low.vtaps = 2;
1132         wm_low.bytes_per_pixel = 4; /* XXX: get this from fb config */
1133         wm_low.lb_size = lb_size;
1134         wm_low.dram_channels = cik_get_number_of_dram_channels(adev);
1135         wm_low.num_heads = num_heads;
1136 
1137         /* set for low clocks */
1138         latency_watermark_b = min(dce_v11_0_latency_watermark(&wm_low), (u32)65535);
1139 
1140         /* possibly force display priority to high */
1141         /* should really do this at mode validation time... */
1142         if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_low) ||
1143             !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_low) ||
1144             !dce_v11_0_check_latency_hiding(&wm_low) ||
1145             (adev->mode_info.disp_priority == 2)) {
1146             DRM_DEBUG_KMS("force priority to high\n");
1147         }
1148         lb_vblank_lead_lines = DIV_ROUND_UP(lb_size, mode->crtc_hdisplay);
1149     }
1150 
1151     /* select wm A */
1152     wm_mask = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
1153     tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 1);
1154     WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1155     tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1156     tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_a);
1157     tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1158     WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1159     /* select wm B */
1160     tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 2);
1161     WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1162     tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1163     tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_b);
1164     tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1165     WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1166     /* restore original selection */
1167     WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, wm_mask);
1168 
1169     /* save values for DPM */
1170     amdgpu_crtc->line_time = line_time;
1171     amdgpu_crtc->wm_high = latency_watermark_a;
1172     amdgpu_crtc->wm_low = latency_watermark_b;
1173     /* Save number of lines the linebuffer leads before the scanout */
1174     amdgpu_crtc->lb_vblank_lead_lines = lb_vblank_lead_lines;
1175 }
1176 
1177 /**
1178  * dce_v11_0_bandwidth_update - program display watermarks
1179  *
1180  * @adev: amdgpu_device pointer
1181  *
1182  * Calculate and program the display watermarks and line
1183  * buffer allocation (CIK).
1184  */
1185 static void dce_v11_0_bandwidth_update(struct amdgpu_device *adev)
1186 {
1187     struct drm_display_mode *mode = NULL;
1188     u32 num_heads = 0, lb_size;
1189     int i;
1190 
1191     amdgpu_display_update_priority(adev);
1192 
1193     for (i = 0; i < adev->mode_info.num_crtc; i++) {
1194         if (adev->mode_info.crtcs[i]->base.enabled)
1195             num_heads++;
1196     }
1197     for (i = 0; i < adev->mode_info.num_crtc; i++) {
1198         mode = &adev->mode_info.crtcs[i]->base.mode;
1199         lb_size = dce_v11_0_line_buffer_adjust(adev, adev->mode_info.crtcs[i], mode);
1200         dce_v11_0_program_watermarks(adev, adev->mode_info.crtcs[i],
1201                         lb_size, num_heads);
1202     }
1203 }
1204 
1205 static void dce_v11_0_audio_get_connected_pins(struct amdgpu_device *adev)
1206 {
1207     int i;
1208     u32 offset, tmp;
1209 
1210     for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1211         offset = adev->mode_info.audio.pin[i].offset;
1212         tmp = RREG32_AUDIO_ENDPT(offset,
1213                      ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT);
1214         if (((tmp &
1215         AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY_MASK) >>
1216         AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY__SHIFT) == 1)
1217             adev->mode_info.audio.pin[i].connected = false;
1218         else
1219             adev->mode_info.audio.pin[i].connected = true;
1220     }
1221 }
1222 
1223 static struct amdgpu_audio_pin *dce_v11_0_audio_get_pin(struct amdgpu_device *adev)
1224 {
1225     int i;
1226 
1227     dce_v11_0_audio_get_connected_pins(adev);
1228 
1229     for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1230         if (adev->mode_info.audio.pin[i].connected)
1231             return &adev->mode_info.audio.pin[i];
1232     }
1233     DRM_ERROR("No connected audio pins found!\n");
1234     return NULL;
1235 }
1236 
1237 static void dce_v11_0_afmt_audio_select_pin(struct drm_encoder *encoder)
1238 {
1239     struct amdgpu_device *adev = drm_to_adev(encoder->dev);
1240     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1241     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1242     u32 tmp;
1243 
1244     if (!dig || !dig->afmt || !dig->afmt->pin)
1245         return;
1246 
1247     tmp = RREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset);
1248     tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_SRC_CONTROL, AFMT_AUDIO_SRC_SELECT, dig->afmt->pin->id);
1249     WREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset, tmp);
1250 }
1251 
1252 static void dce_v11_0_audio_write_latency_fields(struct drm_encoder *encoder,
1253                         struct drm_display_mode *mode)
1254 {
1255     struct drm_device *dev = encoder->dev;
1256     struct amdgpu_device *adev = drm_to_adev(dev);
1257     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1258     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1259     struct drm_connector *connector;
1260     struct drm_connector_list_iter iter;
1261     struct amdgpu_connector *amdgpu_connector = NULL;
1262     u32 tmp;
1263     int interlace = 0;
1264 
1265     if (!dig || !dig->afmt || !dig->afmt->pin)
1266         return;
1267 
1268     drm_connector_list_iter_begin(dev, &iter);
1269     drm_for_each_connector_iter(connector, &iter) {
1270         if (connector->encoder == encoder) {
1271             amdgpu_connector = to_amdgpu_connector(connector);
1272             break;
1273         }
1274     }
1275     drm_connector_list_iter_end(&iter);
1276 
1277     if (!amdgpu_connector) {
1278         DRM_ERROR("Couldn't find encoder's connector\n");
1279         return;
1280     }
1281 
1282     if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1283         interlace = 1;
1284     if (connector->latency_present[interlace]) {
1285         tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1286                     VIDEO_LIPSYNC, connector->video_latency[interlace]);
1287         tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1288                     AUDIO_LIPSYNC, connector->audio_latency[interlace]);
1289     } else {
1290         tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1291                     VIDEO_LIPSYNC, 0);
1292         tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1293                     AUDIO_LIPSYNC, 0);
1294     }
1295     WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1296                ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC, tmp);
1297 }
1298 
1299 static void dce_v11_0_audio_write_speaker_allocation(struct drm_encoder *encoder)
1300 {
1301     struct drm_device *dev = encoder->dev;
1302     struct amdgpu_device *adev = drm_to_adev(dev);
1303     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1304     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1305     struct drm_connector *connector;
1306     struct drm_connector_list_iter iter;
1307     struct amdgpu_connector *amdgpu_connector = NULL;
1308     u32 tmp;
1309     u8 *sadb = NULL;
1310     int sad_count;
1311 
1312     if (!dig || !dig->afmt || !dig->afmt->pin)
1313         return;
1314 
1315     drm_connector_list_iter_begin(dev, &iter);
1316     drm_for_each_connector_iter(connector, &iter) {
1317         if (connector->encoder == encoder) {
1318             amdgpu_connector = to_amdgpu_connector(connector);
1319             break;
1320         }
1321     }
1322     drm_connector_list_iter_end(&iter);
1323 
1324     if (!amdgpu_connector) {
1325         DRM_ERROR("Couldn't find encoder's connector\n");
1326         return;
1327     }
1328 
1329     sad_count = drm_edid_to_speaker_allocation(amdgpu_connector_edid(connector), &sadb);
1330     if (sad_count < 0) {
1331         DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
1332         sad_count = 0;
1333     }
1334 
1335     /* program the speaker allocation */
1336     tmp = RREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1337                  ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER);
1338     tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1339                 DP_CONNECTION, 0);
1340     /* set HDMI mode */
1341     tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1342                 HDMI_CONNECTION, 1);
1343     if (sad_count)
1344         tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1345                     SPEAKER_ALLOCATION, sadb[0]);
1346     else
1347         tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1348                     SPEAKER_ALLOCATION, 5); /* stereo */
1349     WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1350                ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER, tmp);
1351 
1352     kfree(sadb);
1353 }
1354 
1355 static void dce_v11_0_audio_write_sad_regs(struct drm_encoder *encoder)
1356 {
1357     struct drm_device *dev = encoder->dev;
1358     struct amdgpu_device *adev = drm_to_adev(dev);
1359     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1360     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1361     struct drm_connector *connector;
1362     struct drm_connector_list_iter iter;
1363     struct amdgpu_connector *amdgpu_connector = NULL;
1364     struct cea_sad *sads;
1365     int i, sad_count;
1366 
1367     static const u16 eld_reg_to_type[][2] = {
1368         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
1369         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
1370         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
1371         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
1372         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
1373         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
1374         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
1375         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
1376         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
1377         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
1378         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
1379         { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
1380     };
1381 
1382     if (!dig || !dig->afmt || !dig->afmt->pin)
1383         return;
1384 
1385     drm_connector_list_iter_begin(dev, &iter);
1386     drm_for_each_connector_iter(connector, &iter) {
1387         if (connector->encoder == encoder) {
1388             amdgpu_connector = to_amdgpu_connector(connector);
1389             break;
1390         }
1391     }
1392     drm_connector_list_iter_end(&iter);
1393 
1394     if (!amdgpu_connector) {
1395         DRM_ERROR("Couldn't find encoder's connector\n");
1396         return;
1397     }
1398 
1399     sad_count = drm_edid_to_sad(amdgpu_connector_edid(connector), &sads);
1400     if (sad_count < 0)
1401         DRM_ERROR("Couldn't read SADs: %d\n", sad_count);
1402     if (sad_count <= 0)
1403         return;
1404     BUG_ON(!sads);
1405 
1406     for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
1407         u32 tmp = 0;
1408         u8 stereo_freqs = 0;
1409         int max_channels = -1;
1410         int j;
1411 
1412         for (j = 0; j < sad_count; j++) {
1413             struct cea_sad *sad = &sads[j];
1414 
1415             if (sad->format == eld_reg_to_type[i][1]) {
1416                 if (sad->channels > max_channels) {
1417                     tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1418                                 MAX_CHANNELS, sad->channels);
1419                     tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1420                                 DESCRIPTOR_BYTE_2, sad->byte2);
1421                     tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1422                                 SUPPORTED_FREQUENCIES, sad->freq);
1423                     max_channels = sad->channels;
1424                 }
1425 
1426                 if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
1427                     stereo_freqs |= sad->freq;
1428                 else
1429                     break;
1430             }
1431         }
1432 
1433         tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1434                     SUPPORTED_FREQUENCIES_STEREO, stereo_freqs);
1435         WREG32_AUDIO_ENDPT(dig->afmt->pin->offset, eld_reg_to_type[i][0], tmp);
1436     }
1437 
1438     kfree(sads);
1439 }
1440 
1441 static void dce_v11_0_audio_enable(struct amdgpu_device *adev,
1442                   struct amdgpu_audio_pin *pin,
1443                   bool enable)
1444 {
1445     if (!pin)
1446         return;
1447 
1448     WREG32_AUDIO_ENDPT(pin->offset, ixAZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL,
1449                enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
1450 }
1451 
1452 static const u32 pin_offsets[] =
1453 {
1454     AUD0_REGISTER_OFFSET,
1455     AUD1_REGISTER_OFFSET,
1456     AUD2_REGISTER_OFFSET,
1457     AUD3_REGISTER_OFFSET,
1458     AUD4_REGISTER_OFFSET,
1459     AUD5_REGISTER_OFFSET,
1460     AUD6_REGISTER_OFFSET,
1461     AUD7_REGISTER_OFFSET,
1462 };
1463 
1464 static int dce_v11_0_audio_init(struct amdgpu_device *adev)
1465 {
1466     int i;
1467 
1468     if (!amdgpu_audio)
1469         return 0;
1470 
1471     adev->mode_info.audio.enabled = true;
1472 
1473     switch (adev->asic_type) {
1474     case CHIP_CARRIZO:
1475     case CHIP_STONEY:
1476         adev->mode_info.audio.num_pins = 7;
1477         break;
1478     case CHIP_POLARIS10:
1479     case CHIP_VEGAM:
1480         adev->mode_info.audio.num_pins = 8;
1481         break;
1482     case CHIP_POLARIS11:
1483     case CHIP_POLARIS12:
1484         adev->mode_info.audio.num_pins = 6;
1485         break;
1486     default:
1487         return -EINVAL;
1488     }
1489 
1490     for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1491         adev->mode_info.audio.pin[i].channels = -1;
1492         adev->mode_info.audio.pin[i].rate = -1;
1493         adev->mode_info.audio.pin[i].bits_per_sample = -1;
1494         adev->mode_info.audio.pin[i].status_bits = 0;
1495         adev->mode_info.audio.pin[i].category_code = 0;
1496         adev->mode_info.audio.pin[i].connected = false;
1497         adev->mode_info.audio.pin[i].offset = pin_offsets[i];
1498         adev->mode_info.audio.pin[i].id = i;
1499         /* disable audio.  it will be set up later */
1500         /* XXX remove once we switch to ip funcs */
1501         dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1502     }
1503 
1504     return 0;
1505 }
1506 
1507 static void dce_v11_0_audio_fini(struct amdgpu_device *adev)
1508 {
1509     int i;
1510 
1511     if (!amdgpu_audio)
1512         return;
1513 
1514     if (!adev->mode_info.audio.enabled)
1515         return;
1516 
1517     for (i = 0; i < adev->mode_info.audio.num_pins; i++)
1518         dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1519 
1520     adev->mode_info.audio.enabled = false;
1521 }
1522 
1523 /*
1524  * update the N and CTS parameters for a given pixel clock rate
1525  */
1526 static void dce_v11_0_afmt_update_ACR(struct drm_encoder *encoder, uint32_t clock)
1527 {
1528     struct drm_device *dev = encoder->dev;
1529     struct amdgpu_device *adev = drm_to_adev(dev);
1530     struct amdgpu_afmt_acr acr = amdgpu_afmt_acr(clock);
1531     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1532     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1533     u32 tmp;
1534 
1535     tmp = RREG32(mmHDMI_ACR_32_0 + dig->afmt->offset);
1536     tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_0, HDMI_ACR_CTS_32, acr.cts_32khz);
1537     WREG32(mmHDMI_ACR_32_0 + dig->afmt->offset, tmp);
1538     tmp = RREG32(mmHDMI_ACR_32_1 + dig->afmt->offset);
1539     tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_1, HDMI_ACR_N_32, acr.n_32khz);
1540     WREG32(mmHDMI_ACR_32_1 + dig->afmt->offset, tmp);
1541 
1542     tmp = RREG32(mmHDMI_ACR_44_0 + dig->afmt->offset);
1543     tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_0, HDMI_ACR_CTS_44, acr.cts_44_1khz);
1544     WREG32(mmHDMI_ACR_44_0 + dig->afmt->offset, tmp);
1545     tmp = RREG32(mmHDMI_ACR_44_1 + dig->afmt->offset);
1546     tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_1, HDMI_ACR_N_44, acr.n_44_1khz);
1547     WREG32(mmHDMI_ACR_44_1 + dig->afmt->offset, tmp);
1548 
1549     tmp = RREG32(mmHDMI_ACR_48_0 + dig->afmt->offset);
1550     tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_0, HDMI_ACR_CTS_48, acr.cts_48khz);
1551     WREG32(mmHDMI_ACR_48_0 + dig->afmt->offset, tmp);
1552     tmp = RREG32(mmHDMI_ACR_48_1 + dig->afmt->offset);
1553     tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_1, HDMI_ACR_N_48, acr.n_48khz);
1554     WREG32(mmHDMI_ACR_48_1 + dig->afmt->offset, tmp);
1555 
1556 }
1557 
1558 /*
1559  * build a HDMI Video Info Frame
1560  */
1561 static void dce_v11_0_afmt_update_avi_infoframe(struct drm_encoder *encoder,
1562                            void *buffer, size_t size)
1563 {
1564     struct drm_device *dev = encoder->dev;
1565     struct amdgpu_device *adev = drm_to_adev(dev);
1566     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1567     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1568     uint8_t *frame = buffer + 3;
1569     uint8_t *header = buffer;
1570 
1571     WREG32(mmAFMT_AVI_INFO0 + dig->afmt->offset,
1572         frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
1573     WREG32(mmAFMT_AVI_INFO1 + dig->afmt->offset,
1574         frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
1575     WREG32(mmAFMT_AVI_INFO2 + dig->afmt->offset,
1576         frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
1577     WREG32(mmAFMT_AVI_INFO3 + dig->afmt->offset,
1578         frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
1579 }
1580 
1581 static void dce_v11_0_audio_set_dto(struct drm_encoder *encoder, u32 clock)
1582 {
1583     struct drm_device *dev = encoder->dev;
1584     struct amdgpu_device *adev = drm_to_adev(dev);
1585     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1586     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1587     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1588     u32 dto_phase = 24 * 1000;
1589     u32 dto_modulo = clock;
1590     u32 tmp;
1591 
1592     if (!dig || !dig->afmt)
1593         return;
1594 
1595     /* XXX two dtos; generally use dto0 for hdmi */
1596     /* Express [24MHz / target pixel clock] as an exact rational
1597      * number (coefficient of two integer numbers.  DCCG_AUDIO_DTOx_PHASE
1598      * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
1599      */
1600     tmp = RREG32(mmDCCG_AUDIO_DTO_SOURCE);
1601     tmp = REG_SET_FIELD(tmp, DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL,
1602                 amdgpu_crtc->crtc_id);
1603     WREG32(mmDCCG_AUDIO_DTO_SOURCE, tmp);
1604     WREG32(mmDCCG_AUDIO_DTO0_PHASE, dto_phase);
1605     WREG32(mmDCCG_AUDIO_DTO0_MODULE, dto_modulo);
1606 }
1607 
1608 /*
1609  * update the info frames with the data from the current display mode
1610  */
1611 static void dce_v11_0_afmt_setmode(struct drm_encoder *encoder,
1612                   struct drm_display_mode *mode)
1613 {
1614     struct drm_device *dev = encoder->dev;
1615     struct amdgpu_device *adev = drm_to_adev(dev);
1616     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1617     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1618     struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
1619     u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
1620     struct hdmi_avi_infoframe frame;
1621     ssize_t err;
1622     u32 tmp;
1623     int bpc = 8;
1624 
1625     if (!dig || !dig->afmt)
1626         return;
1627 
1628     /* Silent, r600_hdmi_enable will raise WARN for us */
1629     if (!dig->afmt->enabled)
1630         return;
1631 
1632     /* hdmi deep color mode general control packets setup, if bpc > 8 */
1633     if (encoder->crtc) {
1634         struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1635         bpc = amdgpu_crtc->bpc;
1636     }
1637 
1638     /* disable audio prior to setting up hw */
1639     dig->afmt->pin = dce_v11_0_audio_get_pin(adev);
1640     dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1641 
1642     dce_v11_0_audio_set_dto(encoder, mode->clock);
1643 
1644     tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1645     tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1);
1646     WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp); /* send null packets when required */
1647 
1648     WREG32(mmAFMT_AUDIO_CRC_CONTROL + dig->afmt->offset, 0x1000);
1649 
1650     tmp = RREG32(mmHDMI_CONTROL + dig->afmt->offset);
1651     switch (bpc) {
1652     case 0:
1653     case 6:
1654     case 8:
1655     case 16:
1656     default:
1657         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 0);
1658         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 0);
1659         DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
1660               connector->name, bpc);
1661         break;
1662     case 10:
1663         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1664         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 1);
1665         DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
1666               connector->name);
1667         break;
1668     case 12:
1669         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1670         tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 2);
1671         DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
1672               connector->name);
1673         break;
1674     }
1675     WREG32(mmHDMI_CONTROL + dig->afmt->offset, tmp);
1676 
1677     tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1678     tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1); /* send null packets when required */
1679     tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_SEND, 1); /* send general control packets */
1680     tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_CONT, 1); /* send general control packets every frame */
1681     WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp);
1682 
1683     tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1684     /* enable audio info frames (frames won't be set until audio is enabled) */
1685     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_SEND, 1);
1686     /* required for audio info values to be updated */
1687     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_CONT, 1);
1688     WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1689 
1690     tmp = RREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset);
1691     /* required for audio info values to be updated */
1692     tmp = REG_SET_FIELD(tmp, AFMT_INFOFRAME_CONTROL0, AFMT_AUDIO_INFO_UPDATE, 1);
1693     WREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1694 
1695     tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1696     /* anything other than 0 */
1697     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AUDIO_INFO_LINE, 2);
1698     WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1699 
1700     WREG32(mmHDMI_GC + dig->afmt->offset, 0); /* unset HDMI_GC_AVMUTE */
1701 
1702     tmp = RREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1703     /* set the default audio delay */
1704     tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_DELAY_EN, 1);
1705     /* should be suffient for all audio modes and small enough for all hblanks */
1706     tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_PACKETS_PER_LINE, 3);
1707     WREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1708 
1709     tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1710     /* allow 60958 channel status fields to be updated */
1711     tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_60958_CS_UPDATE, 1);
1712     WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1713 
1714     tmp = RREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset);
1715     if (bpc > 8)
1716         /* clear SW CTS value */
1717         tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 0);
1718     else
1719         /* select SW CTS value */
1720         tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 1);
1721     /* allow hw to sent ACR packets when required */
1722     tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_AUTO_SEND, 1);
1723     WREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset, tmp);
1724 
1725     dce_v11_0_afmt_update_ACR(encoder, mode->clock);
1726 
1727     tmp = RREG32(mmAFMT_60958_0 + dig->afmt->offset);
1728     tmp = REG_SET_FIELD(tmp, AFMT_60958_0, AFMT_60958_CS_CHANNEL_NUMBER_L, 1);
1729     WREG32(mmAFMT_60958_0 + dig->afmt->offset, tmp);
1730 
1731     tmp = RREG32(mmAFMT_60958_1 + dig->afmt->offset);
1732     tmp = REG_SET_FIELD(tmp, AFMT_60958_1, AFMT_60958_CS_CHANNEL_NUMBER_R, 2);
1733     WREG32(mmAFMT_60958_1 + dig->afmt->offset, tmp);
1734 
1735     tmp = RREG32(mmAFMT_60958_2 + dig->afmt->offset);
1736     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_2, 3);
1737     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_3, 4);
1738     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_4, 5);
1739     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_5, 6);
1740     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_6, 7);
1741     tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_7, 8);
1742     WREG32(mmAFMT_60958_2 + dig->afmt->offset, tmp);
1743 
1744     dce_v11_0_audio_write_speaker_allocation(encoder);
1745 
1746     WREG32(mmAFMT_AUDIO_PACKET_CONTROL2 + dig->afmt->offset,
1747            (0xff << AFMT_AUDIO_PACKET_CONTROL2__AFMT_AUDIO_CHANNEL_ENABLE__SHIFT));
1748 
1749     dce_v11_0_afmt_audio_select_pin(encoder);
1750     dce_v11_0_audio_write_sad_regs(encoder);
1751     dce_v11_0_audio_write_latency_fields(encoder, mode);
1752 
1753     err = drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
1754     if (err < 0) {
1755         DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
1756         return;
1757     }
1758 
1759     err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1760     if (err < 0) {
1761         DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
1762         return;
1763     }
1764 
1765     dce_v11_0_afmt_update_avi_infoframe(encoder, buffer, sizeof(buffer));
1766 
1767     tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1768     /* enable AVI info frames */
1769     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_SEND, 1);
1770     /* required for audio info values to be updated */
1771     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_CONT, 1);
1772     WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1773 
1774     tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1775     tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AVI_INFO_LINE, 2);
1776     WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1777 
1778     tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1779     /* send audio packets */
1780     tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_AUDIO_SAMPLE_SEND, 1);
1781     WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1782 
1783     WREG32(mmAFMT_RAMP_CONTROL0 + dig->afmt->offset, 0x00FFFFFF);
1784     WREG32(mmAFMT_RAMP_CONTROL1 + dig->afmt->offset, 0x007FFFFF);
1785     WREG32(mmAFMT_RAMP_CONTROL2 + dig->afmt->offset, 0x00000001);
1786     WREG32(mmAFMT_RAMP_CONTROL3 + dig->afmt->offset, 0x00000001);
1787 
1788     /* enable audio after to setting up hw */
1789     dce_v11_0_audio_enable(adev, dig->afmt->pin, true);
1790 }
1791 
1792 static void dce_v11_0_afmt_enable(struct drm_encoder *encoder, bool enable)
1793 {
1794     struct drm_device *dev = encoder->dev;
1795     struct amdgpu_device *adev = drm_to_adev(dev);
1796     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1797     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1798 
1799     if (!dig || !dig->afmt)
1800         return;
1801 
1802     /* Silent, r600_hdmi_enable will raise WARN for us */
1803     if (enable && dig->afmt->enabled)
1804         return;
1805     if (!enable && !dig->afmt->enabled)
1806         return;
1807 
1808     if (!enable && dig->afmt->pin) {
1809         dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1810         dig->afmt->pin = NULL;
1811     }
1812 
1813     dig->afmt->enabled = enable;
1814 
1815     DRM_DEBUG("%sabling AFMT interface @ 0x%04X for encoder 0x%x\n",
1816           enable ? "En" : "Dis", dig->afmt->offset, amdgpu_encoder->encoder_id);
1817 }
1818 
1819 static int dce_v11_0_afmt_init(struct amdgpu_device *adev)
1820 {
1821     int i;
1822 
1823     for (i = 0; i < adev->mode_info.num_dig; i++)
1824         adev->mode_info.afmt[i] = NULL;
1825 
1826     /* DCE11 has audio blocks tied to DIG encoders */
1827     for (i = 0; i < adev->mode_info.num_dig; i++) {
1828         adev->mode_info.afmt[i] = kzalloc(sizeof(struct amdgpu_afmt), GFP_KERNEL);
1829         if (adev->mode_info.afmt[i]) {
1830             adev->mode_info.afmt[i]->offset = dig_offsets[i];
1831             adev->mode_info.afmt[i]->id = i;
1832         } else {
1833             int j;
1834             for (j = 0; j < i; j++) {
1835                 kfree(adev->mode_info.afmt[j]);
1836                 adev->mode_info.afmt[j] = NULL;
1837             }
1838             return -ENOMEM;
1839         }
1840     }
1841     return 0;
1842 }
1843 
1844 static void dce_v11_0_afmt_fini(struct amdgpu_device *adev)
1845 {
1846     int i;
1847 
1848     for (i = 0; i < adev->mode_info.num_dig; i++) {
1849         kfree(adev->mode_info.afmt[i]);
1850         adev->mode_info.afmt[i] = NULL;
1851     }
1852 }
1853 
1854 static const u32 vga_control_regs[6] =
1855 {
1856     mmD1VGA_CONTROL,
1857     mmD2VGA_CONTROL,
1858     mmD3VGA_CONTROL,
1859     mmD4VGA_CONTROL,
1860     mmD5VGA_CONTROL,
1861     mmD6VGA_CONTROL,
1862 };
1863 
1864 static void dce_v11_0_vga_enable(struct drm_crtc *crtc, bool enable)
1865 {
1866     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1867     struct drm_device *dev = crtc->dev;
1868     struct amdgpu_device *adev = drm_to_adev(dev);
1869     u32 vga_control;
1870 
1871     vga_control = RREG32(vga_control_regs[amdgpu_crtc->crtc_id]) & ~1;
1872     if (enable)
1873         WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control | 1);
1874     else
1875         WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control);
1876 }
1877 
1878 static void dce_v11_0_grph_enable(struct drm_crtc *crtc, bool enable)
1879 {
1880     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1881     struct drm_device *dev = crtc->dev;
1882     struct amdgpu_device *adev = drm_to_adev(dev);
1883 
1884     if (enable)
1885         WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 1);
1886     else
1887         WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 0);
1888 }
1889 
1890 static int dce_v11_0_crtc_do_set_base(struct drm_crtc *crtc,
1891                      struct drm_framebuffer *fb,
1892                      int x, int y, int atomic)
1893 {
1894     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1895     struct drm_device *dev = crtc->dev;
1896     struct amdgpu_device *adev = drm_to_adev(dev);
1897     struct drm_framebuffer *target_fb;
1898     struct drm_gem_object *obj;
1899     struct amdgpu_bo *abo;
1900     uint64_t fb_location, tiling_flags;
1901     uint32_t fb_format, fb_pitch_pixels;
1902     u32 fb_swap = REG_SET_FIELD(0, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP, ENDIAN_NONE);
1903     u32 pipe_config;
1904     u32 tmp, viewport_w, viewport_h;
1905     int r;
1906     bool bypass_lut = false;
1907 
1908     /* no fb bound */
1909     if (!atomic && !crtc->primary->fb) {
1910         DRM_DEBUG_KMS("No FB bound\n");
1911         return 0;
1912     }
1913 
1914     if (atomic)
1915         target_fb = fb;
1916     else
1917         target_fb = crtc->primary->fb;
1918 
1919     /* If atomic, assume fb object is pinned & idle & fenced and
1920      * just update base pointers
1921      */
1922     obj = target_fb->obj[0];
1923     abo = gem_to_amdgpu_bo(obj);
1924     r = amdgpu_bo_reserve(abo, false);
1925     if (unlikely(r != 0))
1926         return r;
1927 
1928     if (!atomic) {
1929         r = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM);
1930         if (unlikely(r != 0)) {
1931             amdgpu_bo_unreserve(abo);
1932             return -EINVAL;
1933         }
1934     }
1935     fb_location = amdgpu_bo_gpu_offset(abo);
1936 
1937     amdgpu_bo_get_tiling_flags(abo, &tiling_flags);
1938     amdgpu_bo_unreserve(abo);
1939 
1940     pipe_config = AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
1941 
1942     switch (target_fb->format->format) {
1943     case DRM_FORMAT_C8:
1944         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 0);
1945         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1946         break;
1947     case DRM_FORMAT_XRGB4444:
1948     case DRM_FORMAT_ARGB4444:
1949         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1950         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 2);
1951 #ifdef __BIG_ENDIAN
1952         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1953                     ENDIAN_8IN16);
1954 #endif
1955         break;
1956     case DRM_FORMAT_XRGB1555:
1957     case DRM_FORMAT_ARGB1555:
1958         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1959         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1960 #ifdef __BIG_ENDIAN
1961         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1962                     ENDIAN_8IN16);
1963 #endif
1964         break;
1965     case DRM_FORMAT_BGRX5551:
1966     case DRM_FORMAT_BGRA5551:
1967         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1968         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 5);
1969 #ifdef __BIG_ENDIAN
1970         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1971                     ENDIAN_8IN16);
1972 #endif
1973         break;
1974     case DRM_FORMAT_RGB565:
1975         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1976         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1977 #ifdef __BIG_ENDIAN
1978         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1979                     ENDIAN_8IN16);
1980 #endif
1981         break;
1982     case DRM_FORMAT_XRGB8888:
1983     case DRM_FORMAT_ARGB8888:
1984         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1985         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1986 #ifdef __BIG_ENDIAN
1987         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1988                     ENDIAN_8IN32);
1989 #endif
1990         break;
1991     case DRM_FORMAT_XRGB2101010:
1992     case DRM_FORMAT_ARGB2101010:
1993         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1994         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1995 #ifdef __BIG_ENDIAN
1996         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1997                     ENDIAN_8IN32);
1998 #endif
1999         /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2000         bypass_lut = true;
2001         break;
2002     case DRM_FORMAT_BGRX1010102:
2003     case DRM_FORMAT_BGRA1010102:
2004         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2005         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 4);
2006 #ifdef __BIG_ENDIAN
2007         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2008                     ENDIAN_8IN32);
2009 #endif
2010         /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2011         bypass_lut = true;
2012         break;
2013     case DRM_FORMAT_XBGR8888:
2014     case DRM_FORMAT_ABGR8888:
2015         fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2016         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
2017         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_RED_CROSSBAR, 2);
2018         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_BLUE_CROSSBAR, 2);
2019 #ifdef __BIG_ENDIAN
2020         fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2021                     ENDIAN_8IN32);
2022 #endif
2023         break;
2024     default:
2025         DRM_ERROR("Unsupported screen format %p4cc\n",
2026               &target_fb->format->format);
2027         return -EINVAL;
2028     }
2029 
2030     if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_2D_TILED_THIN1) {
2031         unsigned bankw, bankh, mtaspect, tile_split, num_banks;
2032 
2033         bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
2034         bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
2035         mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
2036         tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
2037         num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
2038 
2039         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_NUM_BANKS, num_banks);
2040         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2041                       ARRAY_2D_TILED_THIN1);
2042         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_TILE_SPLIT,
2043                       tile_split);
2044         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_WIDTH, bankw);
2045         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_HEIGHT, bankh);
2046         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MACRO_TILE_ASPECT,
2047                       mtaspect);
2048         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MICRO_TILE_MODE,
2049                       ADDR_SURF_MICRO_TILING_DISPLAY);
2050     } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_1D_TILED_THIN1) {
2051         fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2052                       ARRAY_1D_TILED_THIN1);
2053     }
2054 
2055     fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_PIPE_CONFIG,
2056                   pipe_config);
2057 
2058     dce_v11_0_vga_enable(crtc, false);
2059 
2060     /* Make sure surface address is updated at vertical blank rather than
2061      * horizontal blank
2062      */
2063     tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
2064     tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
2065                 GRPH_SURFACE_UPDATE_H_RETRACE_EN, 0);
2066     WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2067 
2068     WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2069            upper_32_bits(fb_location));
2070     WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2071            upper_32_bits(fb_location));
2072     WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2073            (u32)fb_location & GRPH_PRIMARY_SURFACE_ADDRESS__GRPH_PRIMARY_SURFACE_ADDRESS_MASK);
2074     WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2075            (u32) fb_location & GRPH_SECONDARY_SURFACE_ADDRESS__GRPH_SECONDARY_SURFACE_ADDRESS_MASK);
2076     WREG32(mmGRPH_CONTROL + amdgpu_crtc->crtc_offset, fb_format);
2077     WREG32(mmGRPH_SWAP_CNTL + amdgpu_crtc->crtc_offset, fb_swap);
2078 
2079     /*
2080      * The LUT only has 256 slots for indexing by a 8 bpc fb. Bypass the LUT
2081      * for > 8 bpc scanout to avoid truncation of fb indices to 8 msb's, to
2082      * retain the full precision throughout the pipeline.
2083      */
2084     tmp = RREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset);
2085     if (bypass_lut)
2086         tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 1);
2087     else
2088         tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 0);
2089     WREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset, tmp);
2090 
2091     if (bypass_lut)
2092         DRM_DEBUG_KMS("Bypassing hardware LUT due to 10 bit fb scanout.\n");
2093 
2094     WREG32(mmGRPH_SURFACE_OFFSET_X + amdgpu_crtc->crtc_offset, 0);
2095     WREG32(mmGRPH_SURFACE_OFFSET_Y + amdgpu_crtc->crtc_offset, 0);
2096     WREG32(mmGRPH_X_START + amdgpu_crtc->crtc_offset, 0);
2097     WREG32(mmGRPH_Y_START + amdgpu_crtc->crtc_offset, 0);
2098     WREG32(mmGRPH_X_END + amdgpu_crtc->crtc_offset, target_fb->width);
2099     WREG32(mmGRPH_Y_END + amdgpu_crtc->crtc_offset, target_fb->height);
2100 
2101     fb_pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
2102     WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset, fb_pitch_pixels);
2103 
2104     dce_v11_0_grph_enable(crtc, true);
2105 
2106     WREG32(mmLB_DESKTOP_HEIGHT + amdgpu_crtc->crtc_offset,
2107            target_fb->height);
2108 
2109     x &= ~3;
2110     y &= ~1;
2111     WREG32(mmVIEWPORT_START + amdgpu_crtc->crtc_offset,
2112            (x << 16) | y);
2113     viewport_w = crtc->mode.hdisplay;
2114     viewport_h = (crtc->mode.vdisplay + 1) & ~1;
2115     WREG32(mmVIEWPORT_SIZE + amdgpu_crtc->crtc_offset,
2116            (viewport_w << 16) | viewport_h);
2117 
2118     /* set pageflip to happen anywhere in vblank interval */
2119     WREG32(mmCRTC_MASTER_UPDATE_MODE + amdgpu_crtc->crtc_offset, 0);
2120 
2121     if (!atomic && fb && fb != crtc->primary->fb) {
2122         abo = gem_to_amdgpu_bo(fb->obj[0]);
2123         r = amdgpu_bo_reserve(abo, true);
2124         if (unlikely(r != 0))
2125             return r;
2126         amdgpu_bo_unpin(abo);
2127         amdgpu_bo_unreserve(abo);
2128     }
2129 
2130     /* Bytes per pixel may have changed */
2131     dce_v11_0_bandwidth_update(adev);
2132 
2133     return 0;
2134 }
2135 
2136 static void dce_v11_0_set_interleave(struct drm_crtc *crtc,
2137                      struct drm_display_mode *mode)
2138 {
2139     struct drm_device *dev = crtc->dev;
2140     struct amdgpu_device *adev = drm_to_adev(dev);
2141     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2142     u32 tmp;
2143 
2144     tmp = RREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset);
2145     if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2146         tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 1);
2147     else
2148         tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 0);
2149     WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset, tmp);
2150 }
2151 
2152 static void dce_v11_0_crtc_load_lut(struct drm_crtc *crtc)
2153 {
2154     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2155     struct drm_device *dev = crtc->dev;
2156     struct amdgpu_device *adev = drm_to_adev(dev);
2157     u16 *r, *g, *b;
2158     int i;
2159     u32 tmp;
2160 
2161     DRM_DEBUG_KMS("%d\n", amdgpu_crtc->crtc_id);
2162 
2163     tmp = RREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2164     tmp = REG_SET_FIELD(tmp, INPUT_CSC_CONTROL, INPUT_CSC_GRPH_MODE, 0);
2165     WREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2166 
2167     tmp = RREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset);
2168     tmp = REG_SET_FIELD(tmp, PRESCALE_GRPH_CONTROL, GRPH_PRESCALE_BYPASS, 1);
2169     WREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2170 
2171     tmp = RREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2172     tmp = REG_SET_FIELD(tmp, INPUT_GAMMA_CONTROL, GRPH_INPUT_GAMMA_MODE, 0);
2173     WREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2174 
2175     WREG32(mmDC_LUT_CONTROL + amdgpu_crtc->crtc_offset, 0);
2176 
2177     WREG32(mmDC_LUT_BLACK_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0);
2178     WREG32(mmDC_LUT_BLACK_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0);
2179     WREG32(mmDC_LUT_BLACK_OFFSET_RED + amdgpu_crtc->crtc_offset, 0);
2180 
2181     WREG32(mmDC_LUT_WHITE_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0xffff);
2182     WREG32(mmDC_LUT_WHITE_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0xffff);
2183     WREG32(mmDC_LUT_WHITE_OFFSET_RED + amdgpu_crtc->crtc_offset, 0xffff);
2184 
2185     WREG32(mmDC_LUT_RW_MODE + amdgpu_crtc->crtc_offset, 0);
2186     WREG32(mmDC_LUT_WRITE_EN_MASK + amdgpu_crtc->crtc_offset, 0x00000007);
2187 
2188     WREG32(mmDC_LUT_RW_INDEX + amdgpu_crtc->crtc_offset, 0);
2189     r = crtc->gamma_store;
2190     g = r + crtc->gamma_size;
2191     b = g + crtc->gamma_size;
2192     for (i = 0; i < 256; i++) {
2193         WREG32(mmDC_LUT_30_COLOR + amdgpu_crtc->crtc_offset,
2194                ((*r++ & 0xffc0) << 14) |
2195                ((*g++ & 0xffc0) << 4) |
2196                (*b++ >> 6));
2197     }
2198 
2199     tmp = RREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2200     tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, GRPH_DEGAMMA_MODE, 0);
2201     tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR_DEGAMMA_MODE, 0);
2202     tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR2_DEGAMMA_MODE, 0);
2203     WREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2204 
2205     tmp = RREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset);
2206     tmp = REG_SET_FIELD(tmp, GAMUT_REMAP_CONTROL, GRPH_GAMUT_REMAP_MODE, 0);
2207     WREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2208 
2209     tmp = RREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2210     tmp = REG_SET_FIELD(tmp, REGAMMA_CONTROL, GRPH_REGAMMA_MODE, 0);
2211     WREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2212 
2213     tmp = RREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2214     tmp = REG_SET_FIELD(tmp, OUTPUT_CSC_CONTROL, OUTPUT_CSC_GRPH_MODE, 0);
2215     WREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2216 
2217     /* XXX match this to the depth of the crtc fmt block, move to modeset? */
2218     WREG32(mmDENORM_CONTROL + amdgpu_crtc->crtc_offset, 0);
2219     /* XXX this only needs to be programmed once per crtc at startup,
2220      * not sure where the best place for it is
2221      */
2222     tmp = RREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset);
2223     tmp = REG_SET_FIELD(tmp, ALPHA_CONTROL, CURSOR_ALPHA_BLND_ENA, 1);
2224     WREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2225 }
2226 
2227 static int dce_v11_0_pick_dig_encoder(struct drm_encoder *encoder)
2228 {
2229     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
2230     struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2231 
2232     switch (amdgpu_encoder->encoder_id) {
2233     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2234         if (dig->linkb)
2235             return 1;
2236         else
2237             return 0;
2238     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2239         if (dig->linkb)
2240             return 3;
2241         else
2242             return 2;
2243     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2244         if (dig->linkb)
2245             return 5;
2246         else
2247             return 4;
2248     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
2249         return 6;
2250     default:
2251         DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2252         return 0;
2253     }
2254 }
2255 
2256 /**
2257  * dce_v11_0_pick_pll - Allocate a PPLL for use by the crtc.
2258  *
2259  * @crtc: drm crtc
2260  *
2261  * Returns the PPLL (Pixel PLL) to be used by the crtc.  For DP monitors
2262  * a single PPLL can be used for all DP crtcs/encoders.  For non-DP
2263  * monitors a dedicated PPLL must be used.  If a particular board has
2264  * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
2265  * as there is no need to program the PLL itself.  If we are not able to
2266  * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
2267  * avoid messing up an existing monitor.
2268  *
2269  * Asic specific PLL information
2270  *
2271  * DCE 10.x
2272  * Tonga
2273  * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
2274  * CI
2275  * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
2276  *
2277  */
2278 static u32 dce_v11_0_pick_pll(struct drm_crtc *crtc)
2279 {
2280     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2281     struct drm_device *dev = crtc->dev;
2282     struct amdgpu_device *adev = drm_to_adev(dev);
2283     u32 pll_in_use;
2284     int pll;
2285 
2286     if ((adev->asic_type == CHIP_POLARIS10) ||
2287         (adev->asic_type == CHIP_POLARIS11) ||
2288         (adev->asic_type == CHIP_POLARIS12) ||
2289         (adev->asic_type == CHIP_VEGAM)) {
2290         struct amdgpu_encoder *amdgpu_encoder =
2291             to_amdgpu_encoder(amdgpu_crtc->encoder);
2292         struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2293 
2294         if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2295             return ATOM_DP_DTO;
2296 
2297         switch (amdgpu_encoder->encoder_id) {
2298         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2299             if (dig->linkb)
2300                 return ATOM_COMBOPHY_PLL1;
2301             else
2302                 return ATOM_COMBOPHY_PLL0;
2303         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2304             if (dig->linkb)
2305                 return ATOM_COMBOPHY_PLL3;
2306             else
2307                 return ATOM_COMBOPHY_PLL2;
2308         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2309             if (dig->linkb)
2310                 return ATOM_COMBOPHY_PLL5;
2311             else
2312                 return ATOM_COMBOPHY_PLL4;
2313         default:
2314             DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2315             return ATOM_PPLL_INVALID;
2316         }
2317     }
2318 
2319     if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder))) {
2320         if (adev->clock.dp_extclk)
2321             /* skip PPLL programming if using ext clock */
2322             return ATOM_PPLL_INVALID;
2323         else {
2324             /* use the same PPLL for all DP monitors */
2325             pll = amdgpu_pll_get_shared_dp_ppll(crtc);
2326             if (pll != ATOM_PPLL_INVALID)
2327                 return pll;
2328         }
2329     } else {
2330         /* use the same PPLL for all monitors with the same clock */
2331         pll = amdgpu_pll_get_shared_nondp_ppll(crtc);
2332         if (pll != ATOM_PPLL_INVALID)
2333             return pll;
2334     }
2335 
2336     /* XXX need to determine what plls are available on each DCE11 part */
2337     pll_in_use = amdgpu_pll_get_use_mask(crtc);
2338     if (adev->flags & AMD_IS_APU) {
2339         if (!(pll_in_use & (1 << ATOM_PPLL1)))
2340             return ATOM_PPLL1;
2341         if (!(pll_in_use & (1 << ATOM_PPLL0)))
2342             return ATOM_PPLL0;
2343         DRM_ERROR("unable to allocate a PPLL\n");
2344         return ATOM_PPLL_INVALID;
2345     } else {
2346         if (!(pll_in_use & (1 << ATOM_PPLL2)))
2347             return ATOM_PPLL2;
2348         if (!(pll_in_use & (1 << ATOM_PPLL1)))
2349             return ATOM_PPLL1;
2350         if (!(pll_in_use & (1 << ATOM_PPLL0)))
2351             return ATOM_PPLL0;
2352         DRM_ERROR("unable to allocate a PPLL\n");
2353         return ATOM_PPLL_INVALID;
2354     }
2355     return ATOM_PPLL_INVALID;
2356 }
2357 
2358 static void dce_v11_0_lock_cursor(struct drm_crtc *crtc, bool lock)
2359 {
2360     struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2361     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2362     uint32_t cur_lock;
2363 
2364     cur_lock = RREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset);
2365     if (lock)
2366         cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 1);
2367     else
2368         cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 0);
2369     WREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset, cur_lock);
2370 }
2371 
2372 static void dce_v11_0_hide_cursor(struct drm_crtc *crtc)
2373 {
2374     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2375     struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2376     u32 tmp;
2377 
2378     tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2379     tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 0);
2380     WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2381 }
2382 
2383 static void dce_v11_0_show_cursor(struct drm_crtc *crtc)
2384 {
2385     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2386     struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2387     u32 tmp;
2388 
2389     WREG32(mmCUR_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2390            upper_32_bits(amdgpu_crtc->cursor_addr));
2391     WREG32(mmCUR_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2392            lower_32_bits(amdgpu_crtc->cursor_addr));
2393 
2394     tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2395     tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 1);
2396     tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_MODE, 2);
2397     WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2398 }
2399 
2400 static int dce_v11_0_cursor_move_locked(struct drm_crtc *crtc,
2401                     int x, int y)
2402 {
2403     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2404     struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2405     int xorigin = 0, yorigin = 0;
2406 
2407     amdgpu_crtc->cursor_x = x;
2408     amdgpu_crtc->cursor_y = y;
2409 
2410     /* avivo cursor are offset into the total surface */
2411     x += crtc->x;
2412     y += crtc->y;
2413     DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y);
2414 
2415     if (x < 0) {
2416         xorigin = min(-x, amdgpu_crtc->max_cursor_width - 1);
2417         x = 0;
2418     }
2419     if (y < 0) {
2420         yorigin = min(-y, amdgpu_crtc->max_cursor_height - 1);
2421         y = 0;
2422     }
2423 
2424     WREG32(mmCUR_POSITION + amdgpu_crtc->crtc_offset, (x << 16) | y);
2425     WREG32(mmCUR_HOT_SPOT + amdgpu_crtc->crtc_offset, (xorigin << 16) | yorigin);
2426     WREG32(mmCUR_SIZE + amdgpu_crtc->crtc_offset,
2427            ((amdgpu_crtc->cursor_width - 1) << 16) | (amdgpu_crtc->cursor_height - 1));
2428 
2429     return 0;
2430 }
2431 
2432 static int dce_v11_0_crtc_cursor_move(struct drm_crtc *crtc,
2433                       int x, int y)
2434 {
2435     int ret;
2436 
2437     dce_v11_0_lock_cursor(crtc, true);
2438     ret = dce_v11_0_cursor_move_locked(crtc, x, y);
2439     dce_v11_0_lock_cursor(crtc, false);
2440 
2441     return ret;
2442 }
2443 
2444 static int dce_v11_0_crtc_cursor_set2(struct drm_crtc *crtc,
2445                       struct drm_file *file_priv,
2446                       uint32_t handle,
2447                       uint32_t width,
2448                       uint32_t height,
2449                       int32_t hot_x,
2450                       int32_t hot_y)
2451 {
2452     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2453     struct drm_gem_object *obj;
2454     struct amdgpu_bo *aobj;
2455     int ret;
2456 
2457     if (!handle) {
2458         /* turn off cursor */
2459         dce_v11_0_hide_cursor(crtc);
2460         obj = NULL;
2461         goto unpin;
2462     }
2463 
2464     if ((width > amdgpu_crtc->max_cursor_width) ||
2465         (height > amdgpu_crtc->max_cursor_height)) {
2466         DRM_ERROR("bad cursor width or height %d x %d\n", width, height);
2467         return -EINVAL;
2468     }
2469 
2470     obj = drm_gem_object_lookup(file_priv, handle);
2471     if (!obj) {
2472         DRM_ERROR("Cannot find cursor object %x for crtc %d\n", handle, amdgpu_crtc->crtc_id);
2473         return -ENOENT;
2474     }
2475 
2476     aobj = gem_to_amdgpu_bo(obj);
2477     ret = amdgpu_bo_reserve(aobj, false);
2478     if (ret != 0) {
2479         drm_gem_object_put(obj);
2480         return ret;
2481     }
2482 
2483     ret = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
2484     amdgpu_bo_unreserve(aobj);
2485     if (ret) {
2486         DRM_ERROR("Failed to pin new cursor BO (%d)\n", ret);
2487         drm_gem_object_put(obj);
2488         return ret;
2489     }
2490     amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
2491 
2492     dce_v11_0_lock_cursor(crtc, true);
2493 
2494     if (width != amdgpu_crtc->cursor_width ||
2495         height != amdgpu_crtc->cursor_height ||
2496         hot_x != amdgpu_crtc->cursor_hot_x ||
2497         hot_y != amdgpu_crtc->cursor_hot_y) {
2498         int x, y;
2499 
2500         x = amdgpu_crtc->cursor_x + amdgpu_crtc->cursor_hot_x - hot_x;
2501         y = amdgpu_crtc->cursor_y + amdgpu_crtc->cursor_hot_y - hot_y;
2502 
2503         dce_v11_0_cursor_move_locked(crtc, x, y);
2504 
2505         amdgpu_crtc->cursor_width = width;
2506         amdgpu_crtc->cursor_height = height;
2507         amdgpu_crtc->cursor_hot_x = hot_x;
2508         amdgpu_crtc->cursor_hot_y = hot_y;
2509     }
2510 
2511     dce_v11_0_show_cursor(crtc);
2512     dce_v11_0_lock_cursor(crtc, false);
2513 
2514 unpin:
2515     if (amdgpu_crtc->cursor_bo) {
2516         struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2517         ret = amdgpu_bo_reserve(aobj, true);
2518         if (likely(ret == 0)) {
2519             amdgpu_bo_unpin(aobj);
2520             amdgpu_bo_unreserve(aobj);
2521         }
2522         drm_gem_object_put(amdgpu_crtc->cursor_bo);
2523     }
2524 
2525     amdgpu_crtc->cursor_bo = obj;
2526     return 0;
2527 }
2528 
2529 static void dce_v11_0_cursor_reset(struct drm_crtc *crtc)
2530 {
2531     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2532 
2533     if (amdgpu_crtc->cursor_bo) {
2534         dce_v11_0_lock_cursor(crtc, true);
2535 
2536         dce_v11_0_cursor_move_locked(crtc, amdgpu_crtc->cursor_x,
2537                          amdgpu_crtc->cursor_y);
2538 
2539         dce_v11_0_show_cursor(crtc);
2540 
2541         dce_v11_0_lock_cursor(crtc, false);
2542     }
2543 }
2544 
2545 static int dce_v11_0_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
2546                     u16 *blue, uint32_t size,
2547                     struct drm_modeset_acquire_ctx *ctx)
2548 {
2549     dce_v11_0_crtc_load_lut(crtc);
2550 
2551     return 0;
2552 }
2553 
2554 static void dce_v11_0_crtc_destroy(struct drm_crtc *crtc)
2555 {
2556     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2557 
2558     drm_crtc_cleanup(crtc);
2559     kfree(amdgpu_crtc);
2560 }
2561 
2562 static const struct drm_crtc_funcs dce_v11_0_crtc_funcs = {
2563     .cursor_set2 = dce_v11_0_crtc_cursor_set2,
2564     .cursor_move = dce_v11_0_crtc_cursor_move,
2565     .gamma_set = dce_v11_0_crtc_gamma_set,
2566     .set_config = amdgpu_display_crtc_set_config,
2567     .destroy = dce_v11_0_crtc_destroy,
2568     .page_flip_target = amdgpu_display_crtc_page_flip_target,
2569     .get_vblank_counter = amdgpu_get_vblank_counter_kms,
2570     .enable_vblank = amdgpu_enable_vblank_kms,
2571     .disable_vblank = amdgpu_disable_vblank_kms,
2572     .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
2573 };
2574 
2575 static void dce_v11_0_crtc_dpms(struct drm_crtc *crtc, int mode)
2576 {
2577     struct drm_device *dev = crtc->dev;
2578     struct amdgpu_device *adev = drm_to_adev(dev);
2579     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2580     unsigned type;
2581 
2582     switch (mode) {
2583     case DRM_MODE_DPMS_ON:
2584         amdgpu_crtc->enabled = true;
2585         amdgpu_atombios_crtc_enable(crtc, ATOM_ENABLE);
2586         dce_v11_0_vga_enable(crtc, true);
2587         amdgpu_atombios_crtc_blank(crtc, ATOM_DISABLE);
2588         dce_v11_0_vga_enable(crtc, false);
2589         /* Make sure VBLANK and PFLIP interrupts are still enabled */
2590         type = amdgpu_display_crtc_idx_to_irq_type(adev,
2591                         amdgpu_crtc->crtc_id);
2592         amdgpu_irq_update(adev, &adev->crtc_irq, type);
2593         amdgpu_irq_update(adev, &adev->pageflip_irq, type);
2594         drm_crtc_vblank_on(crtc);
2595         dce_v11_0_crtc_load_lut(crtc);
2596         break;
2597     case DRM_MODE_DPMS_STANDBY:
2598     case DRM_MODE_DPMS_SUSPEND:
2599     case DRM_MODE_DPMS_OFF:
2600         drm_crtc_vblank_off(crtc);
2601         if (amdgpu_crtc->enabled) {
2602             dce_v11_0_vga_enable(crtc, true);
2603             amdgpu_atombios_crtc_blank(crtc, ATOM_ENABLE);
2604             dce_v11_0_vga_enable(crtc, false);
2605         }
2606         amdgpu_atombios_crtc_enable(crtc, ATOM_DISABLE);
2607         amdgpu_crtc->enabled = false;
2608         break;
2609     }
2610     /* adjust pm to dpms */
2611     amdgpu_dpm_compute_clocks(adev);
2612 }
2613 
2614 static void dce_v11_0_crtc_prepare(struct drm_crtc *crtc)
2615 {
2616     /* disable crtc pair power gating before programming */
2617     amdgpu_atombios_crtc_powergate(crtc, ATOM_DISABLE);
2618     amdgpu_atombios_crtc_lock(crtc, ATOM_ENABLE);
2619     dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2620 }
2621 
2622 static void dce_v11_0_crtc_commit(struct drm_crtc *crtc)
2623 {
2624     dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
2625     amdgpu_atombios_crtc_lock(crtc, ATOM_DISABLE);
2626 }
2627 
2628 static void dce_v11_0_crtc_disable(struct drm_crtc *crtc)
2629 {
2630     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2631     struct drm_device *dev = crtc->dev;
2632     struct amdgpu_device *adev = drm_to_adev(dev);
2633     struct amdgpu_atom_ss ss;
2634     int i;
2635 
2636     dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2637     if (crtc->primary->fb) {
2638         int r;
2639         struct amdgpu_bo *abo;
2640 
2641         abo = gem_to_amdgpu_bo(crtc->primary->fb->obj[0]);
2642         r = amdgpu_bo_reserve(abo, true);
2643         if (unlikely(r))
2644             DRM_ERROR("failed to reserve abo before unpin\n");
2645         else {
2646             amdgpu_bo_unpin(abo);
2647             amdgpu_bo_unreserve(abo);
2648         }
2649     }
2650     /* disable the GRPH */
2651     dce_v11_0_grph_enable(crtc, false);
2652 
2653     amdgpu_atombios_crtc_powergate(crtc, ATOM_ENABLE);
2654 
2655     for (i = 0; i < adev->mode_info.num_crtc; i++) {
2656         if (adev->mode_info.crtcs[i] &&
2657             adev->mode_info.crtcs[i]->enabled &&
2658             i != amdgpu_crtc->crtc_id &&
2659             amdgpu_crtc->pll_id == adev->mode_info.crtcs[i]->pll_id) {
2660             /* one other crtc is using this pll don't turn
2661              * off the pll
2662              */
2663             goto done;
2664         }
2665     }
2666 
2667     switch (amdgpu_crtc->pll_id) {
2668     case ATOM_PPLL0:
2669     case ATOM_PPLL1:
2670     case ATOM_PPLL2:
2671         /* disable the ppll */
2672         amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
2673                          0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2674         break;
2675     case ATOM_COMBOPHY_PLL0:
2676     case ATOM_COMBOPHY_PLL1:
2677     case ATOM_COMBOPHY_PLL2:
2678     case ATOM_COMBOPHY_PLL3:
2679     case ATOM_COMBOPHY_PLL4:
2680     case ATOM_COMBOPHY_PLL5:
2681         /* disable the ppll */
2682         amdgpu_atombios_crtc_program_pll(crtc, ATOM_CRTC_INVALID, amdgpu_crtc->pll_id,
2683                          0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2684         break;
2685     default:
2686         break;
2687     }
2688 done:
2689     amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2690     amdgpu_crtc->adjusted_clock = 0;
2691     amdgpu_crtc->encoder = NULL;
2692     amdgpu_crtc->connector = NULL;
2693 }
2694 
2695 static int dce_v11_0_crtc_mode_set(struct drm_crtc *crtc,
2696                   struct drm_display_mode *mode,
2697                   struct drm_display_mode *adjusted_mode,
2698                   int x, int y, struct drm_framebuffer *old_fb)
2699 {
2700     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2701     struct drm_device *dev = crtc->dev;
2702     struct amdgpu_device *adev = drm_to_adev(dev);
2703 
2704     if (!amdgpu_crtc->adjusted_clock)
2705         return -EINVAL;
2706 
2707     if ((adev->asic_type == CHIP_POLARIS10) ||
2708         (adev->asic_type == CHIP_POLARIS11) ||
2709         (adev->asic_type == CHIP_POLARIS12) ||
2710         (adev->asic_type == CHIP_VEGAM)) {
2711         struct amdgpu_encoder *amdgpu_encoder =
2712             to_amdgpu_encoder(amdgpu_crtc->encoder);
2713         int encoder_mode =
2714             amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder);
2715 
2716         /* SetPixelClock calculates the plls and ss values now */
2717         amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id,
2718                          amdgpu_crtc->pll_id,
2719                          encoder_mode, amdgpu_encoder->encoder_id,
2720                          adjusted_mode->clock, 0, 0, 0, 0,
2721                          amdgpu_crtc->bpc, amdgpu_crtc->ss_enabled, &amdgpu_crtc->ss);
2722     } else {
2723         amdgpu_atombios_crtc_set_pll(crtc, adjusted_mode);
2724     }
2725     amdgpu_atombios_crtc_set_dtd_timing(crtc, adjusted_mode);
2726     dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2727     amdgpu_atombios_crtc_overscan_setup(crtc, mode, adjusted_mode);
2728     amdgpu_atombios_crtc_scaler_setup(crtc);
2729     dce_v11_0_cursor_reset(crtc);
2730     /* update the hw version fpr dpm */
2731     amdgpu_crtc->hw_mode = *adjusted_mode;
2732 
2733     return 0;
2734 }
2735 
2736 static bool dce_v11_0_crtc_mode_fixup(struct drm_crtc *crtc,
2737                      const struct drm_display_mode *mode,
2738                      struct drm_display_mode *adjusted_mode)
2739 {
2740     struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2741     struct drm_device *dev = crtc->dev;
2742     struct drm_encoder *encoder;
2743 
2744     /* assign the encoder to the amdgpu crtc to avoid repeated lookups later */
2745     list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2746         if (encoder->crtc == crtc) {
2747             amdgpu_crtc->encoder = encoder;
2748             amdgpu_crtc->connector = amdgpu_get_connector_for_encoder(encoder);
2749             break;
2750         }
2751     }
2752     if ((amdgpu_crtc->encoder == NULL) || (amdgpu_crtc->connector == NULL)) {
2753         amdgpu_crtc->encoder = NULL;
2754         amdgpu_crtc->connector = NULL;
2755         return false;
2756     }
2757     if (!amdgpu_display_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
2758         return false;
2759     if (amdgpu_atombios_crtc_prepare_pll(crtc, adjusted_mode))
2760         return false;
2761     /* pick pll */
2762     amdgpu_crtc->pll_id = dce_v11_0_pick_pll(crtc);
2763     /* if we can't get a PPLL for a non-DP encoder, fail */
2764     if ((amdgpu_crtc->pll_id == ATOM_PPLL_INVALID) &&
2765         !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2766         return false;
2767 
2768     return true;
2769 }
2770 
2771 static int dce_v11_0_crtc_set_base(struct drm_crtc *crtc, int x, int y,
2772                   struct drm_framebuffer *old_fb)
2773 {
2774     return dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2775 }
2776 
2777 static int dce_v11_0_crtc_set_base_atomic(struct drm_crtc *crtc,
2778                      struct drm_framebuffer *fb,
2779                      int x, int y, enum mode_set_atomic state)
2780 {
2781     return dce_v11_0_crtc_do_set_base(crtc, fb, x, y, 1);
2782 }
2783 
2784 static const struct drm_crtc_helper_funcs dce_v11_0_crtc_helper_funcs = {
2785     .dpms = dce_v11_0_crtc_dpms,
2786     .mode_fixup = dce_v11_0_crtc_mode_fixup,
2787     .mode_set = dce_v11_0_crtc_mode_set,
2788     .mode_set_base = dce_v11_0_crtc_set_base,
2789     .mode_set_base_atomic = dce_v11_0_crtc_set_base_atomic,
2790     .prepare = dce_v11_0_crtc_prepare,
2791     .commit = dce_v11_0_crtc_commit,
2792     .disable = dce_v11_0_crtc_disable,
2793     .get_scanout_position = amdgpu_crtc_get_scanout_position,
2794 };
2795 
2796 static int dce_v11_0_crtc_init(struct amdgpu_device *adev, int index)
2797 {
2798     struct amdgpu_crtc *amdgpu_crtc;
2799 
2800     amdgpu_crtc = kzalloc(sizeof(struct amdgpu_crtc) +
2801                   (AMDGPUFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
2802     if (amdgpu_crtc == NULL)
2803         return -ENOMEM;
2804 
2805     drm_crtc_init(adev_to_drm(adev), &amdgpu_crtc->base, &dce_v11_0_crtc_funcs);
2806 
2807     drm_mode_crtc_set_gamma_size(&amdgpu_crtc->base, 256);
2808     amdgpu_crtc->crtc_id = index;
2809     adev->mode_info.crtcs[index] = amdgpu_crtc;
2810 
2811     amdgpu_crtc->max_cursor_width = 128;
2812     amdgpu_crtc->max_cursor_height = 128;
2813     adev_to_drm(adev)->mode_config.cursor_width = amdgpu_crtc->max_cursor_width;
2814     adev_to_drm(adev)->mode_config.cursor_height = amdgpu_crtc->max_cursor_height;
2815 
2816     switch (amdgpu_crtc->crtc_id) {
2817     case 0:
2818     default:
2819         amdgpu_crtc->crtc_offset = CRTC0_REGISTER_OFFSET;
2820         break;
2821     case 1:
2822         amdgpu_crtc->crtc_offset = CRTC1_REGISTER_OFFSET;
2823         break;
2824     case 2:
2825         amdgpu_crtc->crtc_offset = CRTC2_REGISTER_OFFSET;
2826         break;
2827     case 3:
2828         amdgpu_crtc->crtc_offset = CRTC3_REGISTER_OFFSET;
2829         break;
2830     case 4:
2831         amdgpu_crtc->crtc_offset = CRTC4_REGISTER_OFFSET;
2832         break;
2833     case 5:
2834         amdgpu_crtc->crtc_offset = CRTC5_REGISTER_OFFSET;
2835         break;
2836     }
2837 
2838     amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2839     amdgpu_crtc->adjusted_clock = 0;
2840     amdgpu_crtc->encoder = NULL;
2841     amdgpu_crtc->connector = NULL;
2842     drm_crtc_helper_add(&amdgpu_crtc->base, &dce_v11_0_crtc_helper_funcs);
2843 
2844     return 0;
2845 }
2846 
2847 static int dce_v11_0_early_init(void *handle)
2848 {
2849     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2850 
2851     adev->audio_endpt_rreg = &dce_v11_0_audio_endpt_rreg;
2852     adev->audio_endpt_wreg = &dce_v11_0_audio_endpt_wreg;
2853 
2854     dce_v11_0_set_display_funcs(adev);
2855 
2856     adev->mode_info.num_crtc = dce_v11_0_get_num_crtc(adev);
2857 
2858     switch (adev->asic_type) {
2859     case CHIP_CARRIZO:
2860         adev->mode_info.num_hpd = 6;
2861         adev->mode_info.num_dig = 9;
2862         break;
2863     case CHIP_STONEY:
2864         adev->mode_info.num_hpd = 6;
2865         adev->mode_info.num_dig = 9;
2866         break;
2867     case CHIP_POLARIS10:
2868     case CHIP_VEGAM:
2869         adev->mode_info.num_hpd = 6;
2870         adev->mode_info.num_dig = 6;
2871         break;
2872     case CHIP_POLARIS11:
2873     case CHIP_POLARIS12:
2874         adev->mode_info.num_hpd = 5;
2875         adev->mode_info.num_dig = 5;
2876         break;
2877     default:
2878         /* FIXME: not supported yet */
2879         return -EINVAL;
2880     }
2881 
2882     dce_v11_0_set_irq_funcs(adev);
2883 
2884     return 0;
2885 }
2886 
2887 static int dce_v11_0_sw_init(void *handle)
2888 {
2889     int r, i;
2890     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2891 
2892     for (i = 0; i < adev->mode_info.num_crtc; i++) {
2893         r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + 1, &adev->crtc_irq);
2894         if (r)
2895             return r;
2896     }
2897 
2898     for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; i < 20; i += 2) {
2899         r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i, &adev->pageflip_irq);
2900         if (r)
2901             return r;
2902     }
2903 
2904     /* HPD hotplug */
2905     r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
2906     if (r)
2907         return r;
2908 
2909     adev_to_drm(adev)->mode_config.funcs = &amdgpu_mode_funcs;
2910 
2911     adev_to_drm(adev)->mode_config.async_page_flip = true;
2912 
2913     adev_to_drm(adev)->mode_config.max_width = 16384;
2914     adev_to_drm(adev)->mode_config.max_height = 16384;
2915 
2916     adev_to_drm(adev)->mode_config.preferred_depth = 24;
2917     adev_to_drm(adev)->mode_config.prefer_shadow = 1;
2918 
2919     adev_to_drm(adev)->mode_config.fb_modifiers_not_supported = true;
2920 
2921     adev_to_drm(adev)->mode_config.fb_base = adev->gmc.aper_base;
2922 
2923     r = amdgpu_display_modeset_create_props(adev);
2924     if (r)
2925         return r;
2926 
2927     adev_to_drm(adev)->mode_config.max_width = 16384;
2928     adev_to_drm(adev)->mode_config.max_height = 16384;
2929 
2930 
2931     /* allocate crtcs */
2932     for (i = 0; i < adev->mode_info.num_crtc; i++) {
2933         r = dce_v11_0_crtc_init(adev, i);
2934         if (r)
2935             return r;
2936     }
2937 
2938     if (amdgpu_atombios_get_connector_info_from_object_table(adev))
2939         amdgpu_display_print_display_setup(adev_to_drm(adev));
2940     else
2941         return -EINVAL;
2942 
2943     /* setup afmt */
2944     r = dce_v11_0_afmt_init(adev);
2945     if (r)
2946         return r;
2947 
2948     r = dce_v11_0_audio_init(adev);
2949     if (r)
2950         return r;
2951 
2952     drm_kms_helper_poll_init(adev_to_drm(adev));
2953 
2954     adev->mode_info.mode_config_initialized = true;
2955     return 0;
2956 }
2957 
2958 static int dce_v11_0_sw_fini(void *handle)
2959 {
2960     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2961 
2962     kfree(adev->mode_info.bios_hardcoded_edid);
2963 
2964     drm_kms_helper_poll_fini(adev_to_drm(adev));
2965 
2966     dce_v11_0_audio_fini(adev);
2967 
2968     dce_v11_0_afmt_fini(adev);
2969 
2970     drm_mode_config_cleanup(adev_to_drm(adev));
2971     adev->mode_info.mode_config_initialized = false;
2972 
2973     return 0;
2974 }
2975 
2976 static int dce_v11_0_hw_init(void *handle)
2977 {
2978     int i;
2979     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2980 
2981     dce_v11_0_init_golden_registers(adev);
2982 
2983     /* disable vga render */
2984     dce_v11_0_set_vga_render_state(adev, false);
2985     /* init dig PHYs, disp eng pll */
2986     amdgpu_atombios_crtc_powergate_init(adev);
2987     amdgpu_atombios_encoder_init_dig(adev);
2988     if ((adev->asic_type == CHIP_POLARIS10) ||
2989         (adev->asic_type == CHIP_POLARIS11) ||
2990         (adev->asic_type == CHIP_POLARIS12) ||
2991         (adev->asic_type == CHIP_VEGAM)) {
2992         amdgpu_atombios_crtc_set_dce_clock(adev, adev->clock.default_dispclk,
2993                            DCE_CLOCK_TYPE_DISPCLK, ATOM_GCK_DFS);
2994         amdgpu_atombios_crtc_set_dce_clock(adev, 0,
2995                            DCE_CLOCK_TYPE_DPREFCLK, ATOM_GCK_DFS);
2996     } else {
2997         amdgpu_atombios_crtc_set_disp_eng_pll(adev, adev->clock.default_dispclk);
2998     }
2999 
3000     /* initialize hpd */
3001     dce_v11_0_hpd_init(adev);
3002 
3003     for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3004         dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3005     }
3006 
3007     dce_v11_0_pageflip_interrupt_init(adev);
3008 
3009     return 0;
3010 }
3011 
3012 static int dce_v11_0_hw_fini(void *handle)
3013 {
3014     int i;
3015     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3016 
3017     dce_v11_0_hpd_fini(adev);
3018 
3019     for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3020         dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3021     }
3022 
3023     dce_v11_0_pageflip_interrupt_fini(adev);
3024 
3025     return 0;
3026 }
3027 
3028 static int dce_v11_0_suspend(void *handle)
3029 {
3030     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3031     int r;
3032 
3033     r = amdgpu_display_suspend_helper(adev);
3034     if (r)
3035         return r;
3036 
3037     adev->mode_info.bl_level =
3038         amdgpu_atombios_encoder_get_backlight_level_from_reg(adev);
3039 
3040     return dce_v11_0_hw_fini(handle);
3041 }
3042 
3043 static int dce_v11_0_resume(void *handle)
3044 {
3045     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3046     int ret;
3047 
3048     amdgpu_atombios_encoder_set_backlight_level_to_reg(adev,
3049                                adev->mode_info.bl_level);
3050 
3051     ret = dce_v11_0_hw_init(handle);
3052 
3053     /* turn on the BL */
3054     if (adev->mode_info.bl_encoder) {
3055         u8 bl_level = amdgpu_display_backlight_get_level(adev,
3056                                   adev->mode_info.bl_encoder);
3057         amdgpu_display_backlight_set_level(adev, adev->mode_info.bl_encoder,
3058                             bl_level);
3059     }
3060     if (ret)
3061         return ret;
3062 
3063     return amdgpu_display_resume_helper(adev);
3064 }
3065 
3066 static bool dce_v11_0_is_idle(void *handle)
3067 {
3068     return true;
3069 }
3070 
3071 static int dce_v11_0_wait_for_idle(void *handle)
3072 {
3073     return 0;
3074 }
3075 
3076 static int dce_v11_0_soft_reset(void *handle)
3077 {
3078     u32 srbm_soft_reset = 0, tmp;
3079     struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3080 
3081     if (dce_v11_0_is_display_hung(adev))
3082         srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_DC_MASK;
3083 
3084     if (srbm_soft_reset) {
3085         tmp = RREG32(mmSRBM_SOFT_RESET);
3086         tmp |= srbm_soft_reset;
3087         dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
3088         WREG32(mmSRBM_SOFT_RESET, tmp);
3089         tmp = RREG32(mmSRBM_SOFT_RESET);
3090 
3091         udelay(50);
3092 
3093         tmp &= ~srbm_soft_reset;
3094         WREG32(mmSRBM_SOFT_RESET, tmp);
3095         tmp = RREG32(mmSRBM_SOFT_RESET);
3096 
3097         /* Wait a little for things to settle down */
3098         udelay(50);
3099     }
3100     return 0;
3101 }
3102 
3103 static void dce_v11_0_set_crtc_vblank_interrupt_state(struct amdgpu_device *adev,
3104                              int crtc,
3105                              enum amdgpu_interrupt_state state)
3106 {
3107     u32 lb_interrupt_mask;
3108 
3109     if (crtc >= adev->mode_info.num_crtc) {
3110         DRM_DEBUG("invalid crtc %d\n", crtc);
3111         return;
3112     }
3113 
3114     switch (state) {
3115     case AMDGPU_IRQ_STATE_DISABLE:
3116         lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3117         lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3118                           VBLANK_INTERRUPT_MASK, 0);
3119         WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3120         break;
3121     case AMDGPU_IRQ_STATE_ENABLE:
3122         lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3123         lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3124                           VBLANK_INTERRUPT_MASK, 1);
3125         WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3126         break;
3127     default:
3128         break;
3129     }
3130 }
3131 
3132 static void dce_v11_0_set_crtc_vline_interrupt_state(struct amdgpu_device *adev,
3133                             int crtc,
3134                             enum amdgpu_interrupt_state state)
3135 {
3136     u32 lb_interrupt_mask;
3137 
3138     if (crtc >= adev->mode_info.num_crtc) {
3139         DRM_DEBUG("invalid crtc %d\n", crtc);
3140         return;
3141     }
3142 
3143     switch (state) {
3144     case AMDGPU_IRQ_STATE_DISABLE:
3145         lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3146         lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3147                           VLINE_INTERRUPT_MASK, 0);
3148         WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3149         break;
3150     case AMDGPU_IRQ_STATE_ENABLE:
3151         lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3152         lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3153                           VLINE_INTERRUPT_MASK, 1);
3154         WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3155         break;
3156     default:
3157         break;
3158     }
3159 }
3160 
3161 static int dce_v11_0_set_hpd_irq_state(struct amdgpu_device *adev,
3162                     struct amdgpu_irq_src *source,
3163                     unsigned hpd,
3164                     enum amdgpu_interrupt_state state)
3165 {
3166     u32 tmp;
3167 
3168     if (hpd >= adev->mode_info.num_hpd) {
3169         DRM_DEBUG("invalid hdp %d\n", hpd);
3170         return 0;
3171     }
3172 
3173     switch (state) {
3174     case AMDGPU_IRQ_STATE_DISABLE:
3175         tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3176         tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
3177         WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3178         break;
3179     case AMDGPU_IRQ_STATE_ENABLE:
3180         tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3181         tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 1);
3182         WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3183         break;
3184     default:
3185         break;
3186     }
3187 
3188     return 0;
3189 }
3190 
3191 static int dce_v11_0_set_crtc_irq_state(struct amdgpu_device *adev,
3192                     struct amdgpu_irq_src *source,
3193                     unsigned type,
3194                     enum amdgpu_interrupt_state state)
3195 {
3196     switch (type) {
3197     case AMDGPU_CRTC_IRQ_VBLANK1:
3198         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 0, state);
3199         break;
3200     case AMDGPU_CRTC_IRQ_VBLANK2:
3201         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 1, state);
3202         break;
3203     case AMDGPU_CRTC_IRQ_VBLANK3:
3204         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 2, state);
3205         break;
3206     case AMDGPU_CRTC_IRQ_VBLANK4:
3207         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 3, state);
3208         break;
3209     case AMDGPU_CRTC_IRQ_VBLANK5:
3210         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 4, state);
3211         break;
3212     case AMDGPU_CRTC_IRQ_VBLANK6:
3213         dce_v11_0_set_crtc_vblank_interrupt_state(adev, 5, state);
3214         break;
3215     case AMDGPU_CRTC_IRQ_VLINE1:
3216         dce_v11_0_set_crtc_vline_interrupt_state(adev, 0, state);
3217         break;
3218     case AMDGPU_CRTC_IRQ_VLINE2:
3219         dce_v11_0_set_crtc_vline_interrupt_state(adev, 1, state);
3220         break;
3221     case AMDGPU_CRTC_IRQ_VLINE3:
3222         dce_v11_0_set_crtc_vline_interrupt_state(adev, 2, state);
3223         break;
3224     case AMDGPU_CRTC_IRQ_VLINE4:
3225         dce_v11_0_set_crtc_vline_interrupt_state(adev, 3, state);
3226         break;
3227     case AMDGPU_CRTC_IRQ_VLINE5:
3228         dce_v11_0_set_crtc_vline_interrupt_state(adev, 4, state);
3229         break;
3230      case AMDGPU_CRTC_IRQ_VLINE6:
3231         dce_v11_0_set_crtc_vline_interrupt_state(adev, 5, state);
3232         break;
3233     default:
3234         break;
3235     }
3236     return 0;
3237 }
3238 
3239 static int dce_v11_0_set_pageflip_irq_state(struct amdgpu_device *adev,
3240                         struct amdgpu_irq_src *src,
3241                         unsigned type,
3242                         enum amdgpu_interrupt_state state)
3243 {
3244     u32 reg;
3245 
3246     if (type >= adev->mode_info.num_crtc) {
3247         DRM_ERROR("invalid pageflip crtc %d\n", type);
3248         return -EINVAL;
3249     }
3250 
3251     reg = RREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type]);
3252     if (state == AMDGPU_IRQ_STATE_DISABLE)
3253         WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3254                reg & ~GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3255     else
3256         WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3257                reg | GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3258 
3259     return 0;
3260 }
3261 
3262 static int dce_v11_0_pageflip_irq(struct amdgpu_device *adev,
3263                   struct amdgpu_irq_src *source,
3264                   struct amdgpu_iv_entry *entry)
3265 {
3266     unsigned long flags;
3267     unsigned crtc_id;
3268     struct amdgpu_crtc *amdgpu_crtc;
3269     struct amdgpu_flip_work *works;
3270 
3271     crtc_id = (entry->src_id - 8) >> 1;
3272     amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
3273 
3274     if (crtc_id >= adev->mode_info.num_crtc) {
3275         DRM_ERROR("invalid pageflip crtc %d\n", crtc_id);
3276         return -EINVAL;
3277     }
3278 
3279     if (RREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id]) &
3280         GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_OCCURRED_MASK)
3281         WREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id],
3282                GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_CLEAR_MASK);
3283 
3284     /* IRQ could occur when in initial stage */
3285     if(amdgpu_crtc == NULL)
3286         return 0;
3287 
3288     spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
3289     works = amdgpu_crtc->pflip_works;
3290     if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
3291         DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d != "
3292                          "AMDGPU_FLIP_SUBMITTED(%d)\n",
3293                          amdgpu_crtc->pflip_status,
3294                          AMDGPU_FLIP_SUBMITTED);
3295         spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3296         return 0;
3297     }
3298 
3299     /* page flip completed. clean up */
3300     amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
3301     amdgpu_crtc->pflip_works = NULL;
3302 
3303     /* wakeup usersapce */
3304     if(works->event)
3305         drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
3306 
3307     spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3308 
3309     drm_crtc_vblank_put(&amdgpu_crtc->base);
3310     schedule_work(&works->unpin_work);
3311 
3312     return 0;
3313 }
3314 
3315 static void dce_v11_0_hpd_int_ack(struct amdgpu_device *adev,
3316                   int hpd)
3317 {
3318     u32 tmp;
3319 
3320     if (hpd >= adev->mode_info.num_hpd) {
3321         DRM_DEBUG("invalid hdp %d\n", hpd);
3322         return;
3323     }
3324 
3325     tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3326     tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_ACK, 1);
3327     WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3328 }
3329 
3330 static void dce_v11_0_crtc_vblank_int_ack(struct amdgpu_device *adev,
3331                       int crtc)
3332 {
3333     u32 tmp;
3334 
3335     if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3336         DRM_DEBUG("invalid crtc %d\n", crtc);
3337         return;
3338     }
3339 
3340     tmp = RREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc]);
3341     tmp = REG_SET_FIELD(tmp, LB_VBLANK_STATUS, VBLANK_ACK, 1);
3342     WREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc], tmp);
3343 }
3344 
3345 static void dce_v11_0_crtc_vline_int_ack(struct amdgpu_device *adev,
3346                      int crtc)
3347 {
3348     u32 tmp;
3349 
3350     if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3351         DRM_DEBUG("invalid crtc %d\n", crtc);
3352         return;
3353     }
3354 
3355     tmp = RREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc]);
3356     tmp = REG_SET_FIELD(tmp, LB_VLINE_STATUS, VLINE_ACK, 1);
3357     WREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc], tmp);
3358 }
3359 
3360 static int dce_v11_0_crtc_irq(struct amdgpu_device *adev,
3361                 struct amdgpu_irq_src *source,
3362                 struct amdgpu_iv_entry *entry)
3363 {
3364     unsigned crtc = entry->src_id - 1;
3365     uint32_t disp_int = RREG32(interrupt_status_offsets[crtc].reg);
3366     unsigned int irq_type = amdgpu_display_crtc_idx_to_irq_type(adev,
3367                                     crtc);
3368 
3369     switch (entry->src_data[0]) {
3370     case 0: /* vblank */
3371         if (disp_int & interrupt_status_offsets[crtc].vblank)
3372             dce_v11_0_crtc_vblank_int_ack(adev, crtc);
3373         else
3374             DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3375 
3376         if (amdgpu_irq_enabled(adev, source, irq_type)) {
3377             drm_handle_vblank(adev_to_drm(adev), crtc);
3378         }
3379         DRM_DEBUG("IH: D%d vblank\n", crtc + 1);
3380 
3381         break;
3382     case 1: /* vline */
3383         if (disp_int & interrupt_status_offsets[crtc].vline)
3384             dce_v11_0_crtc_vline_int_ack(adev, crtc);
3385         else
3386             DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3387 
3388         DRM_DEBUG("IH: D%d vline\n", crtc + 1);
3389 
3390         break;
3391     default:
3392         DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3393         break;
3394     }
3395 
3396     return 0;
3397 }
3398 
3399 static int dce_v11_0_hpd_irq(struct amdgpu_device *adev,
3400                  struct amdgpu_irq_src *source,
3401                  struct amdgpu_iv_entry *entry)
3402 {
3403     uint32_t disp_int, mask;
3404     unsigned hpd;
3405 
3406     if (entry->src_data[0] >= adev->mode_info.num_hpd) {
3407         DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3408         return 0;
3409     }
3410 
3411     hpd = entry->src_data[0];
3412     disp_int = RREG32(interrupt_status_offsets[hpd].reg);
3413     mask = interrupt_status_offsets[hpd].hpd;
3414 
3415     if (disp_int & mask) {
3416         dce_v11_0_hpd_int_ack(adev, hpd);
3417         schedule_work(&adev->hotplug_work);
3418         DRM_DEBUG("IH: HPD%d\n", hpd + 1);
3419     }
3420 
3421     return 0;
3422 }
3423 
3424 static int dce_v11_0_set_clockgating_state(void *handle,
3425                       enum amd_clockgating_state state)
3426 {
3427     return 0;
3428 }
3429 
3430 static int dce_v11_0_set_powergating_state(void *handle,
3431                       enum amd_powergating_state state)
3432 {
3433     return 0;
3434 }
3435 
3436 static const struct amd_ip_funcs dce_v11_0_ip_funcs = {
3437     .name = "dce_v11_0",
3438     .early_init = dce_v11_0_early_init,
3439     .late_init = NULL,
3440     .sw_init = dce_v11_0_sw_init,
3441     .sw_fini = dce_v11_0_sw_fini,
3442     .hw_init = dce_v11_0_hw_init,
3443     .hw_fini = dce_v11_0_hw_fini,
3444     .suspend = dce_v11_0_suspend,
3445     .resume = dce_v11_0_resume,
3446     .is_idle = dce_v11_0_is_idle,
3447     .wait_for_idle = dce_v11_0_wait_for_idle,
3448     .soft_reset = dce_v11_0_soft_reset,
3449     .set_clockgating_state = dce_v11_0_set_clockgating_state,
3450     .set_powergating_state = dce_v11_0_set_powergating_state,
3451 };
3452 
3453 static void
3454 dce_v11_0_encoder_mode_set(struct drm_encoder *encoder,
3455               struct drm_display_mode *mode,
3456               struct drm_display_mode *adjusted_mode)
3457 {
3458     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3459 
3460     amdgpu_encoder->pixel_clock = adjusted_mode->clock;
3461 
3462     /* need to call this here rather than in prepare() since we need some crtc info */
3463     amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3464 
3465     /* set scaler clears this on some chips */
3466     dce_v11_0_set_interleave(encoder->crtc, mode);
3467 
3468     if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI) {
3469         dce_v11_0_afmt_enable(encoder, true);
3470         dce_v11_0_afmt_setmode(encoder, adjusted_mode);
3471     }
3472 }
3473 
3474 static void dce_v11_0_encoder_prepare(struct drm_encoder *encoder)
3475 {
3476     struct amdgpu_device *adev = drm_to_adev(encoder->dev);
3477     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3478     struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
3479 
3480     if ((amdgpu_encoder->active_device &
3481          (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) ||
3482         (amdgpu_encoder_get_dp_bridge_encoder_id(encoder) !=
3483          ENCODER_OBJECT_ID_NONE)) {
3484         struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
3485         if (dig) {
3486             dig->dig_encoder = dce_v11_0_pick_dig_encoder(encoder);
3487             if (amdgpu_encoder->active_device & ATOM_DEVICE_DFP_SUPPORT)
3488                 dig->afmt = adev->mode_info.afmt[dig->dig_encoder];
3489         }
3490     }
3491 
3492     amdgpu_atombios_scratch_regs_lock(adev, true);
3493 
3494     if (connector) {
3495         struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
3496 
3497         /* select the clock/data port if it uses a router */
3498         if (amdgpu_connector->router.cd_valid)
3499             amdgpu_i2c_router_select_cd_port(amdgpu_connector);
3500 
3501         /* turn eDP panel on for mode set */
3502         if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
3503             amdgpu_atombios_encoder_set_edp_panel_power(connector,
3504                                  ATOM_TRANSMITTER_ACTION_POWER_ON);
3505     }
3506 
3507     /* this is needed for the pll/ss setup to work correctly in some cases */
3508     amdgpu_atombios_encoder_set_crtc_source(encoder);
3509     /* set up the FMT blocks */
3510     dce_v11_0_program_fmt(encoder);
3511 }
3512 
3513 static void dce_v11_0_encoder_commit(struct drm_encoder *encoder)
3514 {
3515     struct drm_device *dev = encoder->dev;
3516     struct amdgpu_device *adev = drm_to_adev(dev);
3517 
3518     /* need to call this here as we need the crtc set up */
3519     amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
3520     amdgpu_atombios_scratch_regs_lock(adev, false);
3521 }
3522 
3523 static void dce_v11_0_encoder_disable(struct drm_encoder *encoder)
3524 {
3525     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3526     struct amdgpu_encoder_atom_dig *dig;
3527 
3528     amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3529 
3530     if (amdgpu_atombios_encoder_is_digital(encoder)) {
3531         if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI)
3532             dce_v11_0_afmt_enable(encoder, false);
3533         dig = amdgpu_encoder->enc_priv;
3534         dig->dig_encoder = -1;
3535     }
3536     amdgpu_encoder->active_device = 0;
3537 }
3538 
3539 /* these are handled by the primary encoders */
3540 static void dce_v11_0_ext_prepare(struct drm_encoder *encoder)
3541 {
3542 
3543 }
3544 
3545 static void dce_v11_0_ext_commit(struct drm_encoder *encoder)
3546 {
3547 
3548 }
3549 
3550 static void
3551 dce_v11_0_ext_mode_set(struct drm_encoder *encoder,
3552               struct drm_display_mode *mode,
3553               struct drm_display_mode *adjusted_mode)
3554 {
3555 
3556 }
3557 
3558 static void dce_v11_0_ext_disable(struct drm_encoder *encoder)
3559 {
3560 
3561 }
3562 
3563 static void
3564 dce_v11_0_ext_dpms(struct drm_encoder *encoder, int mode)
3565 {
3566 
3567 }
3568 
3569 static const struct drm_encoder_helper_funcs dce_v11_0_ext_helper_funcs = {
3570     .dpms = dce_v11_0_ext_dpms,
3571     .prepare = dce_v11_0_ext_prepare,
3572     .mode_set = dce_v11_0_ext_mode_set,
3573     .commit = dce_v11_0_ext_commit,
3574     .disable = dce_v11_0_ext_disable,
3575     /* no detect for TMDS/LVDS yet */
3576 };
3577 
3578 static const struct drm_encoder_helper_funcs dce_v11_0_dig_helper_funcs = {
3579     .dpms = amdgpu_atombios_encoder_dpms,
3580     .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3581     .prepare = dce_v11_0_encoder_prepare,
3582     .mode_set = dce_v11_0_encoder_mode_set,
3583     .commit = dce_v11_0_encoder_commit,
3584     .disable = dce_v11_0_encoder_disable,
3585     .detect = amdgpu_atombios_encoder_dig_detect,
3586 };
3587 
3588 static const struct drm_encoder_helper_funcs dce_v11_0_dac_helper_funcs = {
3589     .dpms = amdgpu_atombios_encoder_dpms,
3590     .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3591     .prepare = dce_v11_0_encoder_prepare,
3592     .mode_set = dce_v11_0_encoder_mode_set,
3593     .commit = dce_v11_0_encoder_commit,
3594     .detect = amdgpu_atombios_encoder_dac_detect,
3595 };
3596 
3597 static void dce_v11_0_encoder_destroy(struct drm_encoder *encoder)
3598 {
3599     struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3600     if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3601         amdgpu_atombios_encoder_fini_backlight(amdgpu_encoder);
3602     kfree(amdgpu_encoder->enc_priv);
3603     drm_encoder_cleanup(encoder);
3604     kfree(amdgpu_encoder);
3605 }
3606 
3607 static const struct drm_encoder_funcs dce_v11_0_encoder_funcs = {
3608     .destroy = dce_v11_0_encoder_destroy,
3609 };
3610 
3611 static void dce_v11_0_encoder_add(struct amdgpu_device *adev,
3612                  uint32_t encoder_enum,
3613                  uint32_t supported_device,
3614                  u16 caps)
3615 {
3616     struct drm_device *dev = adev_to_drm(adev);
3617     struct drm_encoder *encoder;
3618     struct amdgpu_encoder *amdgpu_encoder;
3619 
3620     /* see if we already added it */
3621     list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3622         amdgpu_encoder = to_amdgpu_encoder(encoder);
3623         if (amdgpu_encoder->encoder_enum == encoder_enum) {
3624             amdgpu_encoder->devices |= supported_device;
3625             return;
3626         }
3627 
3628     }
3629 
3630     /* add a new one */
3631     amdgpu_encoder = kzalloc(sizeof(struct amdgpu_encoder), GFP_KERNEL);
3632     if (!amdgpu_encoder)
3633         return;
3634 
3635     encoder = &amdgpu_encoder->base;
3636     switch (adev->mode_info.num_crtc) {
3637     case 1:
3638         encoder->possible_crtcs = 0x1;
3639         break;
3640     case 2:
3641     default:
3642         encoder->possible_crtcs = 0x3;
3643         break;
3644     case 3:
3645         encoder->possible_crtcs = 0x7;
3646         break;
3647     case 4:
3648         encoder->possible_crtcs = 0xf;
3649         break;
3650     case 5:
3651         encoder->possible_crtcs = 0x1f;
3652         break;
3653     case 6:
3654         encoder->possible_crtcs = 0x3f;
3655         break;
3656     }
3657 
3658     amdgpu_encoder->enc_priv = NULL;
3659 
3660     amdgpu_encoder->encoder_enum = encoder_enum;
3661     amdgpu_encoder->encoder_id = (encoder_enum & OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
3662     amdgpu_encoder->devices = supported_device;
3663     amdgpu_encoder->rmx_type = RMX_OFF;
3664     amdgpu_encoder->underscan_type = UNDERSCAN_OFF;
3665     amdgpu_encoder->is_ext_encoder = false;
3666     amdgpu_encoder->caps = caps;
3667 
3668     switch (amdgpu_encoder->encoder_id) {
3669     case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1:
3670     case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2:
3671         drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3672                  DRM_MODE_ENCODER_DAC, NULL);
3673         drm_encoder_helper_add(encoder, &dce_v11_0_dac_helper_funcs);
3674         break;
3675     case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
3676     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
3677     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
3678     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
3679     case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
3680         if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
3681             amdgpu_encoder->rmx_type = RMX_FULL;
3682             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3683                      DRM_MODE_ENCODER_LVDS, NULL);
3684             amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_lcd_info(amdgpu_encoder);
3685         } else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
3686             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3687                      DRM_MODE_ENCODER_DAC, NULL);
3688             amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3689         } else {
3690             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3691                      DRM_MODE_ENCODER_TMDS, NULL);
3692             amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3693         }
3694         drm_encoder_helper_add(encoder, &dce_v11_0_dig_helper_funcs);
3695         break;
3696     case ENCODER_OBJECT_ID_SI170B:
3697     case ENCODER_OBJECT_ID_CH7303:
3698     case ENCODER_OBJECT_ID_EXTERNAL_SDVOA:
3699     case ENCODER_OBJECT_ID_EXTERNAL_SDVOB:
3700     case ENCODER_OBJECT_ID_TITFP513:
3701     case ENCODER_OBJECT_ID_VT1623:
3702     case ENCODER_OBJECT_ID_HDMI_SI1930:
3703     case ENCODER_OBJECT_ID_TRAVIS:
3704     case ENCODER_OBJECT_ID_NUTMEG:
3705         /* these are handled by the primary encoders */
3706         amdgpu_encoder->is_ext_encoder = true;
3707         if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3708             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3709                      DRM_MODE_ENCODER_LVDS, NULL);
3710         else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT))
3711             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3712                      DRM_MODE_ENCODER_DAC, NULL);
3713         else
3714             drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3715                      DRM_MODE_ENCODER_TMDS, NULL);
3716         drm_encoder_helper_add(encoder, &dce_v11_0_ext_helper_funcs);
3717         break;
3718     }
3719 }
3720 
3721 static const struct amdgpu_display_funcs dce_v11_0_display_funcs = {
3722     .bandwidth_update = &dce_v11_0_bandwidth_update,
3723     .vblank_get_counter = &dce_v11_0_vblank_get_counter,
3724     .backlight_set_level = &amdgpu_atombios_encoder_set_backlight_level,
3725     .backlight_get_level = &amdgpu_atombios_encoder_get_backlight_level,
3726     .hpd_sense = &dce_v11_0_hpd_sense,
3727     .hpd_set_polarity = &dce_v11_0_hpd_set_polarity,
3728     .hpd_get_gpio_reg = &dce_v11_0_hpd_get_gpio_reg,
3729     .page_flip = &dce_v11_0_page_flip,
3730     .page_flip_get_scanoutpos = &dce_v11_0_crtc_get_scanoutpos,
3731     .add_encoder = &dce_v11_0_encoder_add,
3732     .add_connector = &amdgpu_connector_add,
3733 };
3734 
3735 static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev)
3736 {
3737     adev->mode_info.funcs = &dce_v11_0_display_funcs;
3738 }
3739 
3740 static const struct amdgpu_irq_src_funcs dce_v11_0_crtc_irq_funcs = {
3741     .set = dce_v11_0_set_crtc_irq_state,
3742     .process = dce_v11_0_crtc_irq,
3743 };
3744 
3745 static const struct amdgpu_irq_src_funcs dce_v11_0_pageflip_irq_funcs = {
3746     .set = dce_v11_0_set_pageflip_irq_state,
3747     .process = dce_v11_0_pageflip_irq,
3748 };
3749 
3750 static const struct amdgpu_irq_src_funcs dce_v11_0_hpd_irq_funcs = {
3751     .set = dce_v11_0_set_hpd_irq_state,
3752     .process = dce_v11_0_hpd_irq,
3753 };
3754 
3755 static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev)
3756 {
3757     if (adev->mode_info.num_crtc > 0)
3758         adev->crtc_irq.num_types = AMDGPU_CRTC_IRQ_VLINE1 + adev->mode_info.num_crtc;
3759     else
3760         adev->crtc_irq.num_types = 0;
3761     adev->crtc_irq.funcs = &dce_v11_0_crtc_irq_funcs;
3762 
3763     adev->pageflip_irq.num_types = adev->mode_info.num_crtc;
3764     adev->pageflip_irq.funcs = &dce_v11_0_pageflip_irq_funcs;
3765 
3766     adev->hpd_irq.num_types = adev->mode_info.num_hpd;
3767     adev->hpd_irq.funcs = &dce_v11_0_hpd_irq_funcs;
3768 }
3769 
3770 const struct amdgpu_ip_block_version dce_v11_0_ip_block =
3771 {
3772     .type = AMD_IP_BLOCK_TYPE_DCE,
3773     .major = 11,
3774     .minor = 0,
3775     .rev = 0,
3776     .funcs = &dce_v11_0_ip_funcs,
3777 };
3778 
3779 const struct amdgpu_ip_block_version dce_v11_2_ip_block =
3780 {
3781     .type = AMD_IP_BLOCK_TYPE_DCE,
3782     .major = 11,
3783     .minor = 2,
3784     .rev = 0,
3785     .funcs = &dce_v11_0_ip_funcs,
3786 };