2 * Copyright 2014 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
24 #include <drm/drm_edid.h>
25 #include <drm/drm_fourcc.h>
26 #include <drm/drm_modeset_helper.h>
27 #include <drm/drm_modeset_helper_vtables.h>
28 #include <drm/drm_vblank.h>
31 #include "amdgpu_pm.h"
32 #include "amdgpu_i2c.h"
35 #include "amdgpu_atombios.h"
36 #include "atombios_crtc.h"
37 #include "atombios_encoders.h"
38 #include "amdgpu_pll.h"
39 #include "amdgpu_connectors.h"
40 #include "amdgpu_display.h"
43 #include "dce/dce_8_0_d.h"
44 #include "dce/dce_8_0_sh_mask.h"
46 #include "gca/gfx_7_2_enum.h"
48 #include "gmc/gmc_7_1_d.h"
49 #include "gmc/gmc_7_1_sh_mask.h"
51 #include "oss/oss_2_0_d.h"
52 #include "oss/oss_2_0_sh_mask.h"
54 static void dce_v8_0_set_display_funcs(struct amdgpu_device *adev);
55 static void dce_v8_0_set_irq_funcs(struct amdgpu_device *adev);
57 static const u32 crtc_offsets[6] = {
58 CRTC0_REGISTER_OFFSET,
59 CRTC1_REGISTER_OFFSET,
60 CRTC2_REGISTER_OFFSET,
61 CRTC3_REGISTER_OFFSET,
62 CRTC4_REGISTER_OFFSET,
66 static const u32 hpd_offsets[] = {
75 static const uint32_t dig_offsets[] = {
76 CRTC0_REGISTER_OFFSET,
77 CRTC1_REGISTER_OFFSET,
78 CRTC2_REGISTER_OFFSET,
79 CRTC3_REGISTER_OFFSET,
80 CRTC4_REGISTER_OFFSET,
81 CRTC5_REGISTER_OFFSET,
82 (0x13830 - 0x7030) >> 2,
91 } interrupt_status_offsets[6] = { {
92 .reg = mmDISP_INTERRUPT_STATUS,
93 .vblank = DISP_INTERRUPT_STATUS__LB_D1_VBLANK_INTERRUPT_MASK,
94 .vline = DISP_INTERRUPT_STATUS__LB_D1_VLINE_INTERRUPT_MASK,
95 .hpd = DISP_INTERRUPT_STATUS__DC_HPD1_INTERRUPT_MASK
97 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE,
98 .vblank = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VBLANK_INTERRUPT_MASK,
99 .vline = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VLINE_INTERRUPT_MASK,
100 .hpd = DISP_INTERRUPT_STATUS_CONTINUE__DC_HPD2_INTERRUPT_MASK
102 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE2,
103 .vblank = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VBLANK_INTERRUPT_MASK,
104 .vline = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VLINE_INTERRUPT_MASK,
105 .hpd = DISP_INTERRUPT_STATUS_CONTINUE2__DC_HPD3_INTERRUPT_MASK
107 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE3,
108 .vblank = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VBLANK_INTERRUPT_MASK,
109 .vline = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VLINE_INTERRUPT_MASK,
110 .hpd = DISP_INTERRUPT_STATUS_CONTINUE3__DC_HPD4_INTERRUPT_MASK
112 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE4,
113 .vblank = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VBLANK_INTERRUPT_MASK,
114 .vline = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VLINE_INTERRUPT_MASK,
115 .hpd = DISP_INTERRUPT_STATUS_CONTINUE4__DC_HPD5_INTERRUPT_MASK
117 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE5,
118 .vblank = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VBLANK_INTERRUPT_MASK,
119 .vline = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VLINE_INTERRUPT_MASK,
120 .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
123 static u32 dce_v8_0_audio_endpt_rreg(struct amdgpu_device *adev,
124 u32 block_offset, u32 reg)
129 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
130 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
131 r = RREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset);
132 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
137 static void dce_v8_0_audio_endpt_wreg(struct amdgpu_device *adev,
138 u32 block_offset, u32 reg, u32 v)
142 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
143 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
144 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset, v);
145 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
148 static u32 dce_v8_0_vblank_get_counter(struct amdgpu_device *adev, int crtc)
150 if (crtc >= adev->mode_info.num_crtc)
153 return RREG32(mmCRTC_STATUS_FRAME_COUNT + crtc_offsets[crtc]);
156 static void dce_v8_0_pageflip_interrupt_init(struct amdgpu_device *adev)
160 /* Enable pflip interrupts */
161 for (i = 0; i < adev->mode_info.num_crtc; i++)
162 amdgpu_irq_get(adev, &adev->pageflip_irq, i);
165 static void dce_v8_0_pageflip_interrupt_fini(struct amdgpu_device *adev)
169 /* Disable pflip interrupts */
170 for (i = 0; i < adev->mode_info.num_crtc; i++)
171 amdgpu_irq_put(adev, &adev->pageflip_irq, i);
175 * dce_v8_0_page_flip - pageflip callback.
177 * @adev: amdgpu_device pointer
178 * @crtc_id: crtc to cleanup pageflip on
179 * @crtc_base: new address of the crtc (GPU MC address)
180 * @async: asynchronous flip
182 * Triggers the actual pageflip by updating the primary
183 * surface base address.
185 static void dce_v8_0_page_flip(struct amdgpu_device *adev,
186 int crtc_id, u64 crtc_base, bool async)
188 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
189 struct drm_framebuffer *fb = amdgpu_crtc->base.primary->fb;
191 /* flip at hsync for async, default is vsync */
192 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, async ?
193 GRPH_FLIP_CONTROL__GRPH_SURFACE_UPDATE_H_RETRACE_EN_MASK : 0);
195 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset,
196 fb->pitches[0] / fb->format->cpp[0]);
197 /* update the primary scanout addresses */
198 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
199 upper_32_bits(crtc_base));
200 /* writing to the low address triggers the update */
201 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
202 lower_32_bits(crtc_base));
204 RREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset);
207 static int dce_v8_0_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
208 u32 *vbl, u32 *position)
210 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
213 *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]);
214 *position = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
220 * dce_v8_0_hpd_sense - hpd sense callback.
222 * @adev: amdgpu_device pointer
223 * @hpd: hpd (hotplug detect) pin
225 * Checks if a digital monitor is connected (evergreen+).
226 * Returns true if connected, false if not connected.
228 static bool dce_v8_0_hpd_sense(struct amdgpu_device *adev,
229 enum amdgpu_hpd_id hpd)
231 bool connected = false;
233 if (hpd >= adev->mode_info.num_hpd)
236 if (RREG32(mmDC_HPD1_INT_STATUS + hpd_offsets[hpd]) &
237 DC_HPD1_INT_STATUS__DC_HPD1_SENSE_MASK)
244 * dce_v8_0_hpd_set_polarity - hpd set polarity callback.
246 * @adev: amdgpu_device pointer
247 * @hpd: hpd (hotplug detect) pin
249 * Set the polarity of the hpd pin (evergreen+).
251 static void dce_v8_0_hpd_set_polarity(struct amdgpu_device *adev,
252 enum amdgpu_hpd_id hpd)
255 bool connected = dce_v8_0_hpd_sense(adev, hpd);
257 if (hpd >= adev->mode_info.num_hpd)
260 tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd]);
262 tmp &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_POLARITY_MASK;
264 tmp |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_POLARITY_MASK;
265 WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd], tmp);
268 static void dce_v8_0_hpd_int_ack(struct amdgpu_device *adev,
273 if (hpd >= adev->mode_info.num_hpd) {
274 DRM_DEBUG("invalid hdp %d\n", hpd);
278 tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd]);
279 tmp |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_ACK_MASK;
280 WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[hpd], tmp);
284 * dce_v8_0_hpd_init - hpd setup callback.
286 * @adev: amdgpu_device pointer
288 * Setup the hpd pins used by the card (evergreen+).
289 * Enable the pin, set the polarity, and enable the hpd interrupts.
291 static void dce_v8_0_hpd_init(struct amdgpu_device *adev)
293 struct drm_device *dev = adev_to_drm(adev);
294 struct drm_connector *connector;
295 struct drm_connector_list_iter iter;
298 drm_connector_list_iter_begin(dev, &iter);
299 drm_for_each_connector_iter(connector, &iter) {
300 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
302 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
305 tmp = RREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
306 tmp |= DC_HPD1_CONTROL__DC_HPD1_EN_MASK;
307 WREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
309 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP ||
310 connector->connector_type == DRM_MODE_CONNECTOR_LVDS) {
311 /* don't try to enable hpd on eDP or LVDS avoid breaking the
312 * aux dp channel on imac and help (but not completely fix)
313 * https://bugzilla.redhat.com/show_bug.cgi?id=726143
314 * also avoid interrupt storms during dpms.
316 tmp = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
317 tmp &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
318 WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
322 dce_v8_0_hpd_int_ack(adev, amdgpu_connector->hpd.hpd);
323 dce_v8_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd);
324 amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
326 drm_connector_list_iter_end(&iter);
330 * dce_v8_0_hpd_fini - hpd tear down callback.
332 * @adev: amdgpu_device pointer
334 * Tear down the hpd pins used by the card (evergreen+).
335 * Disable the hpd interrupts.
337 static void dce_v8_0_hpd_fini(struct amdgpu_device *adev)
339 struct drm_device *dev = adev_to_drm(adev);
340 struct drm_connector *connector;
341 struct drm_connector_list_iter iter;
344 drm_connector_list_iter_begin(dev, &iter);
345 drm_for_each_connector_iter(connector, &iter) {
346 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
348 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
351 tmp = RREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
352 tmp &= ~DC_HPD1_CONTROL__DC_HPD1_EN_MASK;
353 WREG32(mmDC_HPD1_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
355 amdgpu_irq_put(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
357 drm_connector_list_iter_end(&iter);
360 static u32 dce_v8_0_hpd_get_gpio_reg(struct amdgpu_device *adev)
362 return mmDC_GPIO_HPD_A;
365 static bool dce_v8_0_is_display_hung(struct amdgpu_device *adev)
371 for (i = 0; i < adev->mode_info.num_crtc; i++) {
372 if (RREG32(mmCRTC_CONTROL + crtc_offsets[i]) & CRTC_CONTROL__CRTC_MASTER_EN_MASK) {
373 crtc_status[i] = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
374 crtc_hung |= (1 << i);
378 for (j = 0; j < 10; j++) {
379 for (i = 0; i < adev->mode_info.num_crtc; i++) {
380 if (crtc_hung & (1 << i)) {
381 tmp = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
382 if (tmp != crtc_status[i])
383 crtc_hung &= ~(1 << i);
394 static void dce_v8_0_set_vga_render_state(struct amdgpu_device *adev,
399 /* Lockout access through VGA aperture*/
400 tmp = RREG32(mmVGA_HDP_CONTROL);
402 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 0);
404 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
405 WREG32(mmVGA_HDP_CONTROL, tmp);
407 /* disable VGA render */
408 tmp = RREG32(mmVGA_RENDER_CONTROL);
410 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 1);
412 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
413 WREG32(mmVGA_RENDER_CONTROL, tmp);
416 static int dce_v8_0_get_num_crtc(struct amdgpu_device *adev)
420 switch (adev->asic_type) {
438 void dce_v8_0_disable_dce(struct amdgpu_device *adev)
440 /*Disable VGA render and enabled crtc, if has DCE engine*/
441 if (amdgpu_atombios_has_dce_engine_info(adev)) {
445 dce_v8_0_set_vga_render_state(adev, false);
448 for (i = 0; i < dce_v8_0_get_num_crtc(adev); i++) {
449 crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
450 CRTC_CONTROL, CRTC_MASTER_EN);
452 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
453 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
454 tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
455 WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
456 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
462 static void dce_v8_0_program_fmt(struct drm_encoder *encoder)
464 struct drm_device *dev = encoder->dev;
465 struct amdgpu_device *adev = drm_to_adev(dev);
466 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
467 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
468 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
471 enum amdgpu_connector_dither dither = AMDGPU_FMT_DITHER_DISABLE;
474 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
475 bpc = amdgpu_connector_get_monitor_bpc(connector);
476 dither = amdgpu_connector->dither;
479 /* LVDS/eDP FMT is set up by atom */
480 if (amdgpu_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
483 /* not needed for analog */
484 if ((amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1) ||
485 (amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2))
493 if (dither == AMDGPU_FMT_DITHER_ENABLE)
494 /* XXX sort out optimal dither settings */
495 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
496 FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
497 FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
498 (0 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
500 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
501 (0 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
504 if (dither == AMDGPU_FMT_DITHER_ENABLE)
505 /* XXX sort out optimal dither settings */
506 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
507 FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
508 FMT_BIT_DEPTH_CONTROL__FMT_RGB_RANDOM_ENABLE_MASK |
509 FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
510 (1 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
512 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
513 (1 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
516 if (dither == AMDGPU_FMT_DITHER_ENABLE)
517 /* XXX sort out optimal dither settings */
518 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_FRAME_RANDOM_ENABLE_MASK |
519 FMT_BIT_DEPTH_CONTROL__FMT_HIGHPASS_RANDOM_ENABLE_MASK |
520 FMT_BIT_DEPTH_CONTROL__FMT_RGB_RANDOM_ENABLE_MASK |
521 FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_EN_MASK |
522 (2 << FMT_BIT_DEPTH_CONTROL__FMT_SPATIAL_DITHER_DEPTH__SHIFT));
524 tmp |= (FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_EN_MASK |
525 (2 << FMT_BIT_DEPTH_CONTROL__FMT_TRUNCATE_DEPTH__SHIFT));
532 WREG32(mmFMT_BIT_DEPTH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
536 /* display watermark setup */
538 * dce_v8_0_line_buffer_adjust - Set up the line buffer
540 * @adev: amdgpu_device pointer
541 * @amdgpu_crtc: the selected display controller
542 * @mode: the current display mode on the selected display
545 * Setup up the line buffer allocation for
546 * the selected display controller (CIK).
547 * Returns the line buffer size in pixels.
549 static u32 dce_v8_0_line_buffer_adjust(struct amdgpu_device *adev,
550 struct amdgpu_crtc *amdgpu_crtc,
551 struct drm_display_mode *mode)
553 u32 tmp, buffer_alloc, i;
554 u32 pipe_offset = amdgpu_crtc->crtc_id * 0x8;
557 * There are 6 line buffers, one for each display controllers.
558 * There are 3 partitions per LB. Select the number of partitions
559 * to enable based on the display width. For display widths larger
560 * than 4096, you need use to use 2 display controllers and combine
561 * them using the stereo blender.
563 if (amdgpu_crtc->base.enabled && mode) {
564 if (mode->crtc_hdisplay < 1920) {
567 } else if (mode->crtc_hdisplay < 2560) {
570 } else if (mode->crtc_hdisplay < 4096) {
572 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
574 DRM_DEBUG_KMS("Mode too big for LB!\n");
576 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
583 WREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset,
584 (tmp << LB_MEMORY_CTRL__LB_MEMORY_CONFIG__SHIFT) |
585 (0x6B0 << LB_MEMORY_CTRL__LB_MEMORY_SIZE__SHIFT));
587 WREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset,
588 (buffer_alloc << PIPE0_DMIF_BUFFER_CONTROL__DMIF_BUFFERS_ALLOCATED__SHIFT));
589 for (i = 0; i < adev->usec_timeout; i++) {
590 if (RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset) &
591 PIPE0_DMIF_BUFFER_CONTROL__DMIF_BUFFERS_ALLOCATION_COMPLETED_MASK)
596 if (amdgpu_crtc->base.enabled && mode) {
608 /* controller not enabled, so no lb used */
613 * cik_get_number_of_dram_channels - get the number of dram channels
615 * @adev: amdgpu_device pointer
617 * Look up the number of video ram channels (CIK).
618 * Used for display watermark bandwidth calculations
619 * Returns the number of dram channels
621 static u32 cik_get_number_of_dram_channels(struct amdgpu_device *adev)
623 u32 tmp = RREG32(mmMC_SHARED_CHMAP);
625 switch ((tmp & MC_SHARED_CHMAP__NOOFCHAN_MASK) >> MC_SHARED_CHMAP__NOOFCHAN__SHIFT) {
648 struct dce8_wm_params {
649 u32 dram_channels; /* number of dram channels */
650 u32 yclk; /* bandwidth per dram data pin in kHz */
651 u32 sclk; /* engine clock in kHz */
652 u32 disp_clk; /* display clock in kHz */
653 u32 src_width; /* viewport width */
654 u32 active_time; /* active display time in ns */
655 u32 blank_time; /* blank time in ns */
656 bool interlaced; /* mode is interlaced */
657 fixed20_12 vsc; /* vertical scale ratio */
658 u32 num_heads; /* number of active crtcs */
659 u32 bytes_per_pixel; /* bytes per pixel display + overlay */
660 u32 lb_size; /* line buffer allocated to pipe */
661 u32 vtaps; /* vertical scaler taps */
665 * dce_v8_0_dram_bandwidth - get the dram bandwidth
667 * @wm: watermark calculation data
669 * Calculate the raw dram bandwidth (CIK).
670 * Used for display watermark bandwidth calculations
671 * Returns the dram bandwidth in MBytes/s
673 static u32 dce_v8_0_dram_bandwidth(struct dce8_wm_params *wm)
675 /* Calculate raw DRAM Bandwidth */
676 fixed20_12 dram_efficiency; /* 0.7 */
677 fixed20_12 yclk, dram_channels, bandwidth;
680 a.full = dfixed_const(1000);
681 yclk.full = dfixed_const(wm->yclk);
682 yclk.full = dfixed_div(yclk, a);
683 dram_channels.full = dfixed_const(wm->dram_channels * 4);
684 a.full = dfixed_const(10);
685 dram_efficiency.full = dfixed_const(7);
686 dram_efficiency.full = dfixed_div(dram_efficiency, a);
687 bandwidth.full = dfixed_mul(dram_channels, yclk);
688 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
690 return dfixed_trunc(bandwidth);
694 * dce_v8_0_dram_bandwidth_for_display - get the dram bandwidth for display
696 * @wm: watermark calculation data
698 * Calculate the dram bandwidth used for display (CIK).
699 * Used for display watermark bandwidth calculations
700 * Returns the dram bandwidth for display in MBytes/s
702 static u32 dce_v8_0_dram_bandwidth_for_display(struct dce8_wm_params *wm)
704 /* Calculate DRAM Bandwidth and the part allocated to display. */
705 fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */
706 fixed20_12 yclk, dram_channels, bandwidth;
709 a.full = dfixed_const(1000);
710 yclk.full = dfixed_const(wm->yclk);
711 yclk.full = dfixed_div(yclk, a);
712 dram_channels.full = dfixed_const(wm->dram_channels * 4);
713 a.full = dfixed_const(10);
714 disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */
715 disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a);
716 bandwidth.full = dfixed_mul(dram_channels, yclk);
717 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation);
719 return dfixed_trunc(bandwidth);
723 * dce_v8_0_data_return_bandwidth - get the data return bandwidth
725 * @wm: watermark calculation data
727 * Calculate the data return bandwidth used for display (CIK).
728 * Used for display watermark bandwidth calculations
729 * Returns the data return bandwidth in MBytes/s
731 static u32 dce_v8_0_data_return_bandwidth(struct dce8_wm_params *wm)
733 /* Calculate the display Data return Bandwidth */
734 fixed20_12 return_efficiency; /* 0.8 */
735 fixed20_12 sclk, bandwidth;
738 a.full = dfixed_const(1000);
739 sclk.full = dfixed_const(wm->sclk);
740 sclk.full = dfixed_div(sclk, a);
741 a.full = dfixed_const(10);
742 return_efficiency.full = dfixed_const(8);
743 return_efficiency.full = dfixed_div(return_efficiency, a);
744 a.full = dfixed_const(32);
745 bandwidth.full = dfixed_mul(a, sclk);
746 bandwidth.full = dfixed_mul(bandwidth, return_efficiency);
748 return dfixed_trunc(bandwidth);
752 * dce_v8_0_dmif_request_bandwidth - get the dmif bandwidth
754 * @wm: watermark calculation data
756 * Calculate the dmif bandwidth used for display (CIK).
757 * Used for display watermark bandwidth calculations
758 * Returns the dmif bandwidth in MBytes/s
760 static u32 dce_v8_0_dmif_request_bandwidth(struct dce8_wm_params *wm)
762 /* Calculate the DMIF Request Bandwidth */
763 fixed20_12 disp_clk_request_efficiency; /* 0.8 */
764 fixed20_12 disp_clk, bandwidth;
767 a.full = dfixed_const(1000);
768 disp_clk.full = dfixed_const(wm->disp_clk);
769 disp_clk.full = dfixed_div(disp_clk, a);
770 a.full = dfixed_const(32);
771 b.full = dfixed_mul(a, disp_clk);
773 a.full = dfixed_const(10);
774 disp_clk_request_efficiency.full = dfixed_const(8);
775 disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a);
777 bandwidth.full = dfixed_mul(b, disp_clk_request_efficiency);
779 return dfixed_trunc(bandwidth);
783 * dce_v8_0_available_bandwidth - get the min available bandwidth
785 * @wm: watermark calculation data
787 * Calculate the min available bandwidth used for display (CIK).
788 * Used for display watermark bandwidth calculations
789 * Returns the min available bandwidth in MBytes/s
791 static u32 dce_v8_0_available_bandwidth(struct dce8_wm_params *wm)
793 /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */
794 u32 dram_bandwidth = dce_v8_0_dram_bandwidth(wm);
795 u32 data_return_bandwidth = dce_v8_0_data_return_bandwidth(wm);
796 u32 dmif_req_bandwidth = dce_v8_0_dmif_request_bandwidth(wm);
798 return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth));
802 * dce_v8_0_average_bandwidth - get the average available bandwidth
804 * @wm: watermark calculation data
806 * Calculate the average available bandwidth used for display (CIK).
807 * Used for display watermark bandwidth calculations
808 * Returns the average available bandwidth in MBytes/s
810 static u32 dce_v8_0_average_bandwidth(struct dce8_wm_params *wm)
812 /* Calculate the display mode Average Bandwidth
813 * DisplayMode should contain the source and destination dimensions,
817 fixed20_12 line_time;
818 fixed20_12 src_width;
819 fixed20_12 bandwidth;
822 a.full = dfixed_const(1000);
823 line_time.full = dfixed_const(wm->active_time + wm->blank_time);
824 line_time.full = dfixed_div(line_time, a);
825 bpp.full = dfixed_const(wm->bytes_per_pixel);
826 src_width.full = dfixed_const(wm->src_width);
827 bandwidth.full = dfixed_mul(src_width, bpp);
828 bandwidth.full = dfixed_mul(bandwidth, wm->vsc);
829 bandwidth.full = dfixed_div(bandwidth, line_time);
831 return dfixed_trunc(bandwidth);
835 * dce_v8_0_latency_watermark - get the latency watermark
837 * @wm: watermark calculation data
839 * Calculate the latency watermark (CIK).
840 * Used for display watermark bandwidth calculations
841 * Returns the latency watermark in ns
843 static u32 dce_v8_0_latency_watermark(struct dce8_wm_params *wm)
845 /* First calculate the latency in ns */
846 u32 mc_latency = 2000; /* 2000 ns. */
847 u32 available_bandwidth = dce_v8_0_available_bandwidth(wm);
848 u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth;
849 u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth;
850 u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */
851 u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) +
852 (wm->num_heads * cursor_line_pair_return_time);
853 u32 latency = mc_latency + other_heads_data_return_time + dc_latency;
854 u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time;
855 u32 tmp, dmif_size = 12288;
858 if (wm->num_heads == 0)
861 a.full = dfixed_const(2);
862 b.full = dfixed_const(1);
863 if ((wm->vsc.full > a.full) ||
864 ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) ||
866 ((wm->vsc.full >= a.full) && wm->interlaced))
867 max_src_lines_per_dst_line = 4;
869 max_src_lines_per_dst_line = 2;
871 a.full = dfixed_const(available_bandwidth);
872 b.full = dfixed_const(wm->num_heads);
873 a.full = dfixed_div(a, b);
874 tmp = div_u64((u64) dmif_size * (u64) wm->disp_clk, mc_latency + 512);
875 tmp = min(dfixed_trunc(a), tmp);
877 lb_fill_bw = min(tmp, wm->disp_clk * wm->bytes_per_pixel / 1000);
879 a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel);
880 b.full = dfixed_const(1000);
881 c.full = dfixed_const(lb_fill_bw);
882 b.full = dfixed_div(c, b);
883 a.full = dfixed_div(a, b);
884 line_fill_time = dfixed_trunc(a);
886 if (line_fill_time < wm->active_time)
889 return latency + (line_fill_time - wm->active_time);
894 * dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display - check
895 * average and available dram bandwidth
897 * @wm: watermark calculation data
899 * Check if the display average bandwidth fits in the display
900 * dram bandwidth (CIK).
901 * Used for display watermark bandwidth calculations
902 * Returns true if the display fits, false if not.
904 static bool dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(struct dce8_wm_params *wm)
906 if (dce_v8_0_average_bandwidth(wm) <=
907 (dce_v8_0_dram_bandwidth_for_display(wm) / wm->num_heads))
914 * dce_v8_0_average_bandwidth_vs_available_bandwidth - check
915 * average and available bandwidth
917 * @wm: watermark calculation data
919 * Check if the display average bandwidth fits in the display
920 * available bandwidth (CIK).
921 * Used for display watermark bandwidth calculations
922 * Returns true if the display fits, false if not.
924 static bool dce_v8_0_average_bandwidth_vs_available_bandwidth(struct dce8_wm_params *wm)
926 if (dce_v8_0_average_bandwidth(wm) <=
927 (dce_v8_0_available_bandwidth(wm) / wm->num_heads))
934 * dce_v8_0_check_latency_hiding - check latency hiding
936 * @wm: watermark calculation data
938 * Check latency hiding (CIK).
939 * Used for display watermark bandwidth calculations
940 * Returns true if the display fits, false if not.
942 static bool dce_v8_0_check_latency_hiding(struct dce8_wm_params *wm)
944 u32 lb_partitions = wm->lb_size / wm->src_width;
945 u32 line_time = wm->active_time + wm->blank_time;
946 u32 latency_tolerant_lines;
950 a.full = dfixed_const(1);
951 if (wm->vsc.full > a.full)
952 latency_tolerant_lines = 1;
954 if (lb_partitions <= (wm->vtaps + 1))
955 latency_tolerant_lines = 1;
957 latency_tolerant_lines = 2;
960 latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time);
962 if (dce_v8_0_latency_watermark(wm) <= latency_hiding)
969 * dce_v8_0_program_watermarks - program display watermarks
971 * @adev: amdgpu_device pointer
972 * @amdgpu_crtc: the selected display controller
973 * @lb_size: line buffer size
974 * @num_heads: number of display controllers in use
976 * Calculate and program the display watermarks for the
977 * selected display controller (CIK).
979 static void dce_v8_0_program_watermarks(struct amdgpu_device *adev,
980 struct amdgpu_crtc *amdgpu_crtc,
981 u32 lb_size, u32 num_heads)
983 struct drm_display_mode *mode = &amdgpu_crtc->base.mode;
984 struct dce8_wm_params wm_low, wm_high;
987 u32 latency_watermark_a = 0, latency_watermark_b = 0;
988 u32 tmp, wm_mask, lb_vblank_lead_lines = 0;
990 if (amdgpu_crtc->base.enabled && num_heads && mode) {
991 active_time = (u32) div_u64((u64)mode->crtc_hdisplay * 1000000,
993 line_time = (u32) div_u64((u64)mode->crtc_htotal * 1000000,
995 line_time = min_t(u32, line_time, 65535);
997 /* watermark for high clocks */
998 if (adev->pm.dpm_enabled) {
1000 amdgpu_dpm_get_mclk(adev, false) * 10;
1002 amdgpu_dpm_get_sclk(adev, false) * 10;
1004 wm_high.yclk = adev->pm.current_mclk * 10;
1005 wm_high.sclk = adev->pm.current_sclk * 10;
1008 wm_high.disp_clk = mode->clock;
1009 wm_high.src_width = mode->crtc_hdisplay;
1010 wm_high.active_time = active_time;
1011 wm_high.blank_time = line_time - wm_high.active_time;
1012 wm_high.interlaced = false;
1013 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1014 wm_high.interlaced = true;
1015 wm_high.vsc = amdgpu_crtc->vsc;
1017 if (amdgpu_crtc->rmx_type != RMX_OFF)
1019 wm_high.bytes_per_pixel = 4; /* XXX: get this from fb config */
1020 wm_high.lb_size = lb_size;
1021 wm_high.dram_channels = cik_get_number_of_dram_channels(adev);
1022 wm_high.num_heads = num_heads;
1024 /* set for high clocks */
1025 latency_watermark_a = min_t(u32, dce_v8_0_latency_watermark(&wm_high), 65535);
1027 /* possibly force display priority to high */
1028 /* should really do this at mode validation time... */
1029 if (!dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_high) ||
1030 !dce_v8_0_average_bandwidth_vs_available_bandwidth(&wm_high) ||
1031 !dce_v8_0_check_latency_hiding(&wm_high) ||
1032 (adev->mode_info.disp_priority == 2)) {
1033 DRM_DEBUG_KMS("force priority to high\n");
1036 /* watermark for low clocks */
1037 if (adev->pm.dpm_enabled) {
1039 amdgpu_dpm_get_mclk(adev, true) * 10;
1041 amdgpu_dpm_get_sclk(adev, true) * 10;
1043 wm_low.yclk = adev->pm.current_mclk * 10;
1044 wm_low.sclk = adev->pm.current_sclk * 10;
1047 wm_low.disp_clk = mode->clock;
1048 wm_low.src_width = mode->crtc_hdisplay;
1049 wm_low.active_time = active_time;
1050 wm_low.blank_time = line_time - wm_low.active_time;
1051 wm_low.interlaced = false;
1052 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1053 wm_low.interlaced = true;
1054 wm_low.vsc = amdgpu_crtc->vsc;
1056 if (amdgpu_crtc->rmx_type != RMX_OFF)
1058 wm_low.bytes_per_pixel = 4; /* XXX: get this from fb config */
1059 wm_low.lb_size = lb_size;
1060 wm_low.dram_channels = cik_get_number_of_dram_channels(adev);
1061 wm_low.num_heads = num_heads;
1063 /* set for low clocks */
1064 latency_watermark_b = min_t(u32, dce_v8_0_latency_watermark(&wm_low), 65535);
1066 /* possibly force display priority to high */
1067 /* should really do this at mode validation time... */
1068 if (!dce_v8_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_low) ||
1069 !dce_v8_0_average_bandwidth_vs_available_bandwidth(&wm_low) ||
1070 !dce_v8_0_check_latency_hiding(&wm_low) ||
1071 (adev->mode_info.disp_priority == 2)) {
1072 DRM_DEBUG_KMS("force priority to high\n");
1074 lb_vblank_lead_lines = DIV_ROUND_UP(lb_size, mode->crtc_hdisplay);
1078 wm_mask = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
1080 tmp &= ~(3 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
1081 tmp |= (1 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
1082 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1083 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset,
1084 ((latency_watermark_a << DPG_PIPE_URGENCY_CONTROL__URGENCY_LOW_WATERMARK__SHIFT) |
1085 (line_time << DPG_PIPE_URGENCY_CONTROL__URGENCY_HIGH_WATERMARK__SHIFT)));
1087 tmp = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
1088 tmp &= ~(3 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
1089 tmp |= (2 << DPG_WATERMARK_MASK_CONTROL__URGENCY_WATERMARK_MASK__SHIFT);
1090 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1091 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset,
1092 ((latency_watermark_b << DPG_PIPE_URGENCY_CONTROL__URGENCY_LOW_WATERMARK__SHIFT) |
1093 (line_time << DPG_PIPE_URGENCY_CONTROL__URGENCY_HIGH_WATERMARK__SHIFT)));
1094 /* restore original selection */
1095 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, wm_mask);
1097 /* save values for DPM */
1098 amdgpu_crtc->line_time = line_time;
1099 amdgpu_crtc->wm_high = latency_watermark_a;
1100 amdgpu_crtc->wm_low = latency_watermark_b;
1101 /* Save number of lines the linebuffer leads before the scanout */
1102 amdgpu_crtc->lb_vblank_lead_lines = lb_vblank_lead_lines;
1106 * dce_v8_0_bandwidth_update - program display watermarks
1108 * @adev: amdgpu_device pointer
1110 * Calculate and program the display watermarks and line
1111 * buffer allocation (CIK).
1113 static void dce_v8_0_bandwidth_update(struct amdgpu_device *adev)
1115 struct drm_display_mode *mode = NULL;
1116 u32 num_heads = 0, lb_size;
1119 amdgpu_display_update_priority(adev);
1121 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1122 if (adev->mode_info.crtcs[i]->base.enabled)
1125 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1126 mode = &adev->mode_info.crtcs[i]->base.mode;
1127 lb_size = dce_v8_0_line_buffer_adjust(adev, adev->mode_info.crtcs[i], mode);
1128 dce_v8_0_program_watermarks(adev, adev->mode_info.crtcs[i],
1129 lb_size, num_heads);
1133 static void dce_v8_0_audio_get_connected_pins(struct amdgpu_device *adev)
1138 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1139 offset = adev->mode_info.audio.pin[i].offset;
1140 tmp = RREG32_AUDIO_ENDPT(offset,
1141 ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT);
1143 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY_MASK) >>
1144 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY__SHIFT) == 1)
1145 adev->mode_info.audio.pin[i].connected = false;
1147 adev->mode_info.audio.pin[i].connected = true;
1151 static struct amdgpu_audio_pin *dce_v8_0_audio_get_pin(struct amdgpu_device *adev)
1155 dce_v8_0_audio_get_connected_pins(adev);
1157 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1158 if (adev->mode_info.audio.pin[i].connected)
1159 return &adev->mode_info.audio.pin[i];
1161 DRM_ERROR("No connected audio pins found!\n");
1165 static void dce_v8_0_afmt_audio_select_pin(struct drm_encoder *encoder)
1167 struct amdgpu_device *adev = drm_to_adev(encoder->dev);
1168 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1169 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1172 if (!dig || !dig->afmt || !dig->afmt->pin)
1175 offset = dig->afmt->offset;
1177 WREG32(mmAFMT_AUDIO_SRC_CONTROL + offset,
1178 (dig->afmt->pin->id << AFMT_AUDIO_SRC_CONTROL__AFMT_AUDIO_SRC_SELECT__SHIFT));
1181 static void dce_v8_0_audio_write_latency_fields(struct drm_encoder *encoder,
1182 struct drm_display_mode *mode)
1184 struct drm_device *dev = encoder->dev;
1185 struct amdgpu_device *adev = drm_to_adev(dev);
1186 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1187 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1188 struct drm_connector *connector;
1189 struct drm_connector_list_iter iter;
1190 struct amdgpu_connector *amdgpu_connector = NULL;
1191 u32 tmp = 0, offset;
1193 if (!dig || !dig->afmt || !dig->afmt->pin)
1196 offset = dig->afmt->pin->offset;
1198 drm_connector_list_iter_begin(dev, &iter);
1199 drm_for_each_connector_iter(connector, &iter) {
1200 if (connector->encoder == encoder) {
1201 amdgpu_connector = to_amdgpu_connector(connector);
1205 drm_connector_list_iter_end(&iter);
1207 if (!amdgpu_connector) {
1208 DRM_ERROR("Couldn't find encoder's connector\n");
1212 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1213 if (connector->latency_present[1])
1215 (connector->video_latency[1] <<
1216 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
1217 (connector->audio_latency[1] <<
1218 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
1222 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
1224 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
1226 if (connector->latency_present[0])
1228 (connector->video_latency[0] <<
1229 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
1230 (connector->audio_latency[0] <<
1231 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
1235 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__VIDEO_LIPSYNC__SHIFT) |
1237 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC__AUDIO_LIPSYNC__SHIFT);
1240 WREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC, tmp);
1243 static void dce_v8_0_audio_write_speaker_allocation(struct drm_encoder *encoder)
1245 struct drm_device *dev = encoder->dev;
1246 struct amdgpu_device *adev = drm_to_adev(dev);
1247 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1248 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1249 struct drm_connector *connector;
1250 struct drm_connector_list_iter iter;
1251 struct amdgpu_connector *amdgpu_connector = NULL;
1256 if (!dig || !dig->afmt || !dig->afmt->pin)
1259 offset = dig->afmt->pin->offset;
1261 drm_connector_list_iter_begin(dev, &iter);
1262 drm_for_each_connector_iter(connector, &iter) {
1263 if (connector->encoder == encoder) {
1264 amdgpu_connector = to_amdgpu_connector(connector);
1268 drm_connector_list_iter_end(&iter);
1270 if (!amdgpu_connector) {
1271 DRM_ERROR("Couldn't find encoder's connector\n");
1275 sad_count = drm_edid_to_speaker_allocation(amdgpu_connector->edid, &sadb);
1276 if (sad_count < 0) {
1277 DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
1281 /* program the speaker allocation */
1282 tmp = RREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER);
1283 tmp &= ~(AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__DP_CONNECTION_MASK |
1284 AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION_MASK);
1286 tmp |= AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__HDMI_CONNECTION_MASK;
1288 tmp |= (sadb[0] << AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION__SHIFT);
1290 tmp |= (5 << AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER__SPEAKER_ALLOCATION__SHIFT); /* stereo */
1291 WREG32_AUDIO_ENDPT(offset, ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER, tmp);
1296 static void dce_v8_0_audio_write_sad_regs(struct drm_encoder *encoder)
1298 struct drm_device *dev = encoder->dev;
1299 struct amdgpu_device *adev = drm_to_adev(dev);
1300 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1301 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1303 struct drm_connector *connector;
1304 struct drm_connector_list_iter iter;
1305 struct amdgpu_connector *amdgpu_connector = NULL;
1306 struct cea_sad *sads;
1309 static const u16 eld_reg_to_type[][2] = {
1310 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
1311 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
1312 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
1313 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
1314 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
1315 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
1316 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
1317 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
1318 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
1319 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
1320 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
1321 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
1324 if (!dig || !dig->afmt || !dig->afmt->pin)
1327 offset = dig->afmt->pin->offset;
1329 drm_connector_list_iter_begin(dev, &iter);
1330 drm_for_each_connector_iter(connector, &iter) {
1331 if (connector->encoder == encoder) {
1332 amdgpu_connector = to_amdgpu_connector(connector);
1336 drm_connector_list_iter_end(&iter);
1338 if (!amdgpu_connector) {
1339 DRM_ERROR("Couldn't find encoder's connector\n");
1343 sad_count = drm_edid_to_sad(amdgpu_connector->edid, &sads);
1345 DRM_ERROR("Couldn't read SADs: %d\n", sad_count);
1350 for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
1352 u8 stereo_freqs = 0;
1353 int max_channels = -1;
1356 for (j = 0; j < sad_count; j++) {
1357 struct cea_sad *sad = &sads[j];
1359 if (sad->format == eld_reg_to_type[i][1]) {
1360 if (sad->channels > max_channels) {
1361 value = (sad->channels <<
1362 AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__MAX_CHANNELS__SHIFT) |
1364 AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__DESCRIPTOR_BYTE_2__SHIFT) |
1366 AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__SUPPORTED_FREQUENCIES__SHIFT);
1367 max_channels = sad->channels;
1370 if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
1371 stereo_freqs |= sad->freq;
1377 value |= (stereo_freqs <<
1378 AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0__SUPPORTED_FREQUENCIES_STEREO__SHIFT);
1380 WREG32_AUDIO_ENDPT(offset, eld_reg_to_type[i][0], value);
1386 static void dce_v8_0_audio_enable(struct amdgpu_device *adev,
1387 struct amdgpu_audio_pin *pin,
1393 WREG32_AUDIO_ENDPT(pin->offset, ixAZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL,
1394 enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
1397 static const u32 pin_offsets[7] = {
1407 static int dce_v8_0_audio_init(struct amdgpu_device *adev)
1414 adev->mode_info.audio.enabled = true;
1416 if (adev->asic_type == CHIP_KAVERI) /* KV: 4 streams, 7 endpoints */
1417 adev->mode_info.audio.num_pins = 7;
1418 else if ((adev->asic_type == CHIP_KABINI) ||
1419 (adev->asic_type == CHIP_MULLINS)) /* KB/ML: 2 streams, 3 endpoints */
1420 adev->mode_info.audio.num_pins = 3;
1421 else if ((adev->asic_type == CHIP_BONAIRE) ||
1422 (adev->asic_type == CHIP_HAWAII))/* BN/HW: 6 streams, 7 endpoints */
1423 adev->mode_info.audio.num_pins = 7;
1425 adev->mode_info.audio.num_pins = 3;
1427 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1428 adev->mode_info.audio.pin[i].channels = -1;
1429 adev->mode_info.audio.pin[i].rate = -1;
1430 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1431 adev->mode_info.audio.pin[i].status_bits = 0;
1432 adev->mode_info.audio.pin[i].category_code = 0;
1433 adev->mode_info.audio.pin[i].connected = false;
1434 adev->mode_info.audio.pin[i].offset = pin_offsets[i];
1435 adev->mode_info.audio.pin[i].id = i;
1436 /* disable audio. it will be set up later */
1437 /* XXX remove once we switch to ip funcs */
1438 dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1444 static void dce_v8_0_audio_fini(struct amdgpu_device *adev)
1451 if (!adev->mode_info.audio.enabled)
1454 for (i = 0; i < adev->mode_info.audio.num_pins; i++)
1455 dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1457 adev->mode_info.audio.enabled = false;
1461 * update the N and CTS parameters for a given pixel clock rate
1463 static void dce_v8_0_afmt_update_ACR(struct drm_encoder *encoder, uint32_t clock)
1465 struct drm_device *dev = encoder->dev;
1466 struct amdgpu_device *adev = drm_to_adev(dev);
1467 struct amdgpu_afmt_acr acr = amdgpu_afmt_acr(clock);
1468 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1469 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1470 uint32_t offset = dig->afmt->offset;
1472 WREG32(mmHDMI_ACR_32_0 + offset, (acr.cts_32khz << HDMI_ACR_32_0__HDMI_ACR_CTS_32__SHIFT));
1473 WREG32(mmHDMI_ACR_32_1 + offset, acr.n_32khz);
1475 WREG32(mmHDMI_ACR_44_0 + offset, (acr.cts_44_1khz << HDMI_ACR_44_0__HDMI_ACR_CTS_44__SHIFT));
1476 WREG32(mmHDMI_ACR_44_1 + offset, acr.n_44_1khz);
1478 WREG32(mmHDMI_ACR_48_0 + offset, (acr.cts_48khz << HDMI_ACR_48_0__HDMI_ACR_CTS_48__SHIFT));
1479 WREG32(mmHDMI_ACR_48_1 + offset, acr.n_48khz);
1483 * build a HDMI Video Info Frame
1485 static void dce_v8_0_afmt_update_avi_infoframe(struct drm_encoder *encoder,
1486 void *buffer, size_t size)
1488 struct drm_device *dev = encoder->dev;
1489 struct amdgpu_device *adev = drm_to_adev(dev);
1490 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1491 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1492 uint32_t offset = dig->afmt->offset;
1493 uint8_t *frame = buffer + 3;
1494 uint8_t *header = buffer;
1496 WREG32(mmAFMT_AVI_INFO0 + offset,
1497 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
1498 WREG32(mmAFMT_AVI_INFO1 + offset,
1499 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
1500 WREG32(mmAFMT_AVI_INFO2 + offset,
1501 frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
1502 WREG32(mmAFMT_AVI_INFO3 + offset,
1503 frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
1506 static void dce_v8_0_audio_set_dto(struct drm_encoder *encoder, u32 clock)
1508 struct drm_device *dev = encoder->dev;
1509 struct amdgpu_device *adev = drm_to_adev(dev);
1510 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1511 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1512 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1513 u32 dto_phase = 24 * 1000;
1514 u32 dto_modulo = clock;
1516 if (!dig || !dig->afmt)
1519 /* XXX two dtos; generally use dto0 for hdmi */
1520 /* Express [24MHz / target pixel clock] as an exact rational
1521 * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE
1522 * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
1524 WREG32(mmDCCG_AUDIO_DTO_SOURCE, (amdgpu_crtc->crtc_id << DCCG_AUDIO_DTO_SOURCE__DCCG_AUDIO_DTO0_SOURCE_SEL__SHIFT));
1525 WREG32(mmDCCG_AUDIO_DTO0_PHASE, dto_phase);
1526 WREG32(mmDCCG_AUDIO_DTO0_MODULE, dto_modulo);
1530 * update the info frames with the data from the current display mode
1532 static void dce_v8_0_afmt_setmode(struct drm_encoder *encoder,
1533 struct drm_display_mode *mode)
1535 struct drm_device *dev = encoder->dev;
1536 struct amdgpu_device *adev = drm_to_adev(dev);
1537 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1538 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1539 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
1540 u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
1541 struct hdmi_avi_infoframe frame;
1542 uint32_t offset, val;
1546 if (!dig || !dig->afmt)
1549 /* Silent, r600_hdmi_enable will raise WARN for us */
1550 if (!dig->afmt->enabled)
1553 offset = dig->afmt->offset;
1555 /* hdmi deep color mode general control packets setup, if bpc > 8 */
1556 if (encoder->crtc) {
1557 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1558 bpc = amdgpu_crtc->bpc;
1561 /* disable audio prior to setting up hw */
1562 dig->afmt->pin = dce_v8_0_audio_get_pin(adev);
1563 dce_v8_0_audio_enable(adev, dig->afmt->pin, false);
1565 dce_v8_0_audio_set_dto(encoder, mode->clock);
1567 WREG32(mmHDMI_VBI_PACKET_CONTROL + offset,
1568 HDMI_VBI_PACKET_CONTROL__HDMI_NULL_SEND_MASK); /* send null packets when required */
1570 WREG32(mmAFMT_AUDIO_CRC_CONTROL + offset, 0x1000);
1572 val = RREG32(mmHDMI_CONTROL + offset);
1573 val &= ~HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
1574 val &= ~HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH_MASK;
1582 DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
1583 connector->name, bpc);
1586 val |= HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
1587 val |= 1 << HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH__SHIFT;
1588 DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
1592 val |= HDMI_CONTROL__HDMI_DEEP_COLOR_ENABLE_MASK;
1593 val |= 2 << HDMI_CONTROL__HDMI_DEEP_COLOR_DEPTH__SHIFT;
1594 DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
1599 WREG32(mmHDMI_CONTROL + offset, val);
1601 WREG32(mmHDMI_VBI_PACKET_CONTROL + offset,
1602 HDMI_VBI_PACKET_CONTROL__HDMI_NULL_SEND_MASK | /* send null packets when required */
1603 HDMI_VBI_PACKET_CONTROL__HDMI_GC_SEND_MASK | /* send general control packets */
1604 HDMI_VBI_PACKET_CONTROL__HDMI_GC_CONT_MASK); /* send general control packets every frame */
1606 WREG32(mmHDMI_INFOFRAME_CONTROL0 + offset,
1607 HDMI_INFOFRAME_CONTROL0__HDMI_AUDIO_INFO_SEND_MASK | /* enable audio info frames (frames won't be set until audio is enabled) */
1608 HDMI_INFOFRAME_CONTROL0__HDMI_AUDIO_INFO_CONT_MASK); /* required for audio info values to be updated */
1610 WREG32(mmAFMT_INFOFRAME_CONTROL0 + offset,
1611 AFMT_INFOFRAME_CONTROL0__AFMT_AUDIO_INFO_UPDATE_MASK); /* required for audio info values to be updated */
1613 WREG32(mmHDMI_INFOFRAME_CONTROL1 + offset,
1614 (2 << HDMI_INFOFRAME_CONTROL1__HDMI_AUDIO_INFO_LINE__SHIFT)); /* anything other than 0 */
1616 WREG32(mmHDMI_GC + offset, 0); /* unset HDMI_GC_AVMUTE */
1618 WREG32(mmHDMI_AUDIO_PACKET_CONTROL + offset,
1619 (1 << HDMI_AUDIO_PACKET_CONTROL__HDMI_AUDIO_DELAY_EN__SHIFT) | /* set the default audio delay */
1620 (3 << HDMI_AUDIO_PACKET_CONTROL__HDMI_AUDIO_PACKETS_PER_LINE__SHIFT)); /* should be suffient for all audio modes and small enough for all hblanks */
1622 WREG32(mmAFMT_AUDIO_PACKET_CONTROL + offset,
1623 AFMT_AUDIO_PACKET_CONTROL__AFMT_60958_CS_UPDATE_MASK); /* allow 60958 channel status fields to be updated */
1625 /* fglrx clears sth in AFMT_AUDIO_PACKET_CONTROL2 here */
1628 WREG32(mmHDMI_ACR_PACKET_CONTROL + offset,
1629 HDMI_ACR_PACKET_CONTROL__HDMI_ACR_AUTO_SEND_MASK); /* allow hw to sent ACR packets when required */
1631 WREG32(mmHDMI_ACR_PACKET_CONTROL + offset,
1632 HDMI_ACR_PACKET_CONTROL__HDMI_ACR_SOURCE_MASK | /* select SW CTS value */
1633 HDMI_ACR_PACKET_CONTROL__HDMI_ACR_AUTO_SEND_MASK); /* allow hw to sent ACR packets when required */
1635 dce_v8_0_afmt_update_ACR(encoder, mode->clock);
1637 WREG32(mmAFMT_60958_0 + offset,
1638 (1 << AFMT_60958_0__AFMT_60958_CS_CHANNEL_NUMBER_L__SHIFT));
1640 WREG32(mmAFMT_60958_1 + offset,
1641 (2 << AFMT_60958_1__AFMT_60958_CS_CHANNEL_NUMBER_R__SHIFT));
1643 WREG32(mmAFMT_60958_2 + offset,
1644 (3 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_2__SHIFT) |
1645 (4 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_3__SHIFT) |
1646 (5 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_4__SHIFT) |
1647 (6 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_5__SHIFT) |
1648 (7 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_6__SHIFT) |
1649 (8 << AFMT_60958_2__AFMT_60958_CS_CHANNEL_NUMBER_7__SHIFT));
1651 dce_v8_0_audio_write_speaker_allocation(encoder);
1654 WREG32(mmAFMT_AUDIO_PACKET_CONTROL2 + offset,
1655 (0xff << AFMT_AUDIO_PACKET_CONTROL2__AFMT_AUDIO_CHANNEL_ENABLE__SHIFT));
1657 dce_v8_0_afmt_audio_select_pin(encoder);
1658 dce_v8_0_audio_write_sad_regs(encoder);
1659 dce_v8_0_audio_write_latency_fields(encoder, mode);
1661 err = drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
1663 DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
1667 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1669 DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
1673 dce_v8_0_afmt_update_avi_infoframe(encoder, buffer, sizeof(buffer));
1675 WREG32_OR(mmHDMI_INFOFRAME_CONTROL0 + offset,
1676 HDMI_INFOFRAME_CONTROL0__HDMI_AVI_INFO_SEND_MASK | /* enable AVI info frames */
1677 HDMI_INFOFRAME_CONTROL0__HDMI_AVI_INFO_CONT_MASK); /* required for audio info values to be updated */
1679 WREG32_P(mmHDMI_INFOFRAME_CONTROL1 + offset,
1680 (2 << HDMI_INFOFRAME_CONTROL1__HDMI_AVI_INFO_LINE__SHIFT), /* anything other than 0 */
1681 ~HDMI_INFOFRAME_CONTROL1__HDMI_AVI_INFO_LINE_MASK);
1683 WREG32_OR(mmAFMT_AUDIO_PACKET_CONTROL + offset,
1684 AFMT_AUDIO_PACKET_CONTROL__AFMT_AUDIO_SAMPLE_SEND_MASK); /* send audio packets */
1686 WREG32(mmAFMT_RAMP_CONTROL0 + offset, 0x00FFFFFF);
1687 WREG32(mmAFMT_RAMP_CONTROL1 + offset, 0x007FFFFF);
1688 WREG32(mmAFMT_RAMP_CONTROL2 + offset, 0x00000001);
1689 WREG32(mmAFMT_RAMP_CONTROL3 + offset, 0x00000001);
1691 /* enable audio after setting up hw */
1692 dce_v8_0_audio_enable(adev, dig->afmt->pin, true);
1695 static void dce_v8_0_afmt_enable(struct drm_encoder *encoder, bool enable)
1697 struct drm_device *dev = encoder->dev;
1698 struct amdgpu_device *adev = drm_to_adev(dev);
1699 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1700 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1702 if (!dig || !dig->afmt)
1705 /* Silent, r600_hdmi_enable will raise WARN for us */
1706 if (enable && dig->afmt->enabled)
1708 if (!enable && !dig->afmt->enabled)
1711 if (!enable && dig->afmt->pin) {
1712 dce_v8_0_audio_enable(adev, dig->afmt->pin, false);
1713 dig->afmt->pin = NULL;
1716 dig->afmt->enabled = enable;
1718 DRM_DEBUG("%sabling AFMT interface @ 0x%04X for encoder 0x%x\n",
1719 enable ? "En" : "Dis", dig->afmt->offset, amdgpu_encoder->encoder_id);
1722 static int dce_v8_0_afmt_init(struct amdgpu_device *adev)
1726 for (i = 0; i < adev->mode_info.num_dig; i++)
1727 adev->mode_info.afmt[i] = NULL;
1729 /* DCE8 has audio blocks tied to DIG encoders */
1730 for (i = 0; i < adev->mode_info.num_dig; i++) {
1731 adev->mode_info.afmt[i] = kzalloc(sizeof(struct amdgpu_afmt), GFP_KERNEL);
1732 if (adev->mode_info.afmt[i]) {
1733 adev->mode_info.afmt[i]->offset = dig_offsets[i];
1734 adev->mode_info.afmt[i]->id = i;
1737 for (j = 0; j < i; j++) {
1738 kfree(adev->mode_info.afmt[j]);
1739 adev->mode_info.afmt[j] = NULL;
1747 static void dce_v8_0_afmt_fini(struct amdgpu_device *adev)
1751 for (i = 0; i < adev->mode_info.num_dig; i++) {
1752 kfree(adev->mode_info.afmt[i]);
1753 adev->mode_info.afmt[i] = NULL;
1757 static const u32 vga_control_regs[6] = {
1766 static void dce_v8_0_vga_enable(struct drm_crtc *crtc, bool enable)
1768 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1769 struct drm_device *dev = crtc->dev;
1770 struct amdgpu_device *adev = drm_to_adev(dev);
1773 vga_control = RREG32(vga_control_regs[amdgpu_crtc->crtc_id]) & ~1;
1775 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control | 1);
1777 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control);
1780 static void dce_v8_0_grph_enable(struct drm_crtc *crtc, bool enable)
1782 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1783 struct drm_device *dev = crtc->dev;
1784 struct amdgpu_device *adev = drm_to_adev(dev);
1787 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 1);
1789 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 0);
1792 static int dce_v8_0_crtc_do_set_base(struct drm_crtc *crtc,
1793 struct drm_framebuffer *fb,
1794 int x, int y, int atomic)
1796 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1797 struct drm_device *dev = crtc->dev;
1798 struct amdgpu_device *adev = drm_to_adev(dev);
1799 struct drm_framebuffer *target_fb;
1800 struct drm_gem_object *obj;
1801 struct amdgpu_bo *abo;
1802 uint64_t fb_location, tiling_flags;
1803 uint32_t fb_format, fb_pitch_pixels;
1804 u32 fb_swap = (GRPH_ENDIAN_NONE << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1806 u32 viewport_w, viewport_h;
1808 bool bypass_lut = false;
1811 if (!atomic && !crtc->primary->fb) {
1812 DRM_DEBUG_KMS("No FB bound\n");
1819 target_fb = crtc->primary->fb;
1821 /* If atomic, assume fb object is pinned & idle & fenced and
1822 * just update base pointers
1824 obj = target_fb->obj[0];
1825 abo = gem_to_amdgpu_bo(obj);
1826 r = amdgpu_bo_reserve(abo, false);
1827 if (unlikely(r != 0))
1831 r = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM);
1832 if (unlikely(r != 0)) {
1833 amdgpu_bo_unreserve(abo);
1837 fb_location = amdgpu_bo_gpu_offset(abo);
1839 amdgpu_bo_get_tiling_flags(abo, &tiling_flags);
1840 amdgpu_bo_unreserve(abo);
1842 pipe_config = AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
1844 switch (target_fb->format->format) {
1846 fb_format = ((GRPH_DEPTH_8BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1847 (GRPH_FORMAT_INDEXED << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1849 case DRM_FORMAT_XRGB4444:
1850 case DRM_FORMAT_ARGB4444:
1851 fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1852 (GRPH_FORMAT_ARGB4444 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1854 fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1857 case DRM_FORMAT_XRGB1555:
1858 case DRM_FORMAT_ARGB1555:
1859 fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1860 (GRPH_FORMAT_ARGB1555 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1862 fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1865 case DRM_FORMAT_BGRX5551:
1866 case DRM_FORMAT_BGRA5551:
1867 fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1868 (GRPH_FORMAT_BGRA5551 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1870 fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1873 case DRM_FORMAT_RGB565:
1874 fb_format = ((GRPH_DEPTH_16BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1875 (GRPH_FORMAT_ARGB565 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1877 fb_swap = (GRPH_ENDIAN_8IN16 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1880 case DRM_FORMAT_XRGB8888:
1881 case DRM_FORMAT_ARGB8888:
1882 fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1883 (GRPH_FORMAT_ARGB8888 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1885 fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1888 case DRM_FORMAT_XRGB2101010:
1889 case DRM_FORMAT_ARGB2101010:
1890 fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1891 (GRPH_FORMAT_ARGB2101010 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1893 fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1895 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
1898 case DRM_FORMAT_BGRX1010102:
1899 case DRM_FORMAT_BGRA1010102:
1900 fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1901 (GRPH_FORMAT_BGRA1010102 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1903 fb_swap = (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1905 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
1908 case DRM_FORMAT_XBGR8888:
1909 case DRM_FORMAT_ABGR8888:
1910 fb_format = ((GRPH_DEPTH_32BPP << GRPH_CONTROL__GRPH_DEPTH__SHIFT) |
1911 (GRPH_FORMAT_ARGB8888 << GRPH_CONTROL__GRPH_FORMAT__SHIFT));
1912 fb_swap = ((GRPH_RED_SEL_B << GRPH_SWAP_CNTL__GRPH_RED_CROSSBAR__SHIFT) |
1913 (GRPH_BLUE_SEL_R << GRPH_SWAP_CNTL__GRPH_BLUE_CROSSBAR__SHIFT));
1915 fb_swap |= (GRPH_ENDIAN_8IN32 << GRPH_SWAP_CNTL__GRPH_ENDIAN_SWAP__SHIFT);
1919 DRM_ERROR("Unsupported screen format %p4cc\n",
1920 &target_fb->format->format);
1924 if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_2D_TILED_THIN1) {
1925 unsigned bankw, bankh, mtaspect, tile_split, num_banks;
1927 bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
1928 bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
1929 mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
1930 tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
1931 num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
1933 fb_format |= (num_banks << GRPH_CONTROL__GRPH_NUM_BANKS__SHIFT);
1934 fb_format |= (GRPH_ARRAY_2D_TILED_THIN1 << GRPH_CONTROL__GRPH_ARRAY_MODE__SHIFT);
1935 fb_format |= (tile_split << GRPH_CONTROL__GRPH_TILE_SPLIT__SHIFT);
1936 fb_format |= (bankw << GRPH_CONTROL__GRPH_BANK_WIDTH__SHIFT);
1937 fb_format |= (bankh << GRPH_CONTROL__GRPH_BANK_HEIGHT__SHIFT);
1938 fb_format |= (mtaspect << GRPH_CONTROL__GRPH_MACRO_TILE_ASPECT__SHIFT);
1939 fb_format |= (DISPLAY_MICRO_TILING << GRPH_CONTROL__GRPH_MICRO_TILE_MODE__SHIFT);
1940 } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_1D_TILED_THIN1) {
1941 fb_format |= (GRPH_ARRAY_1D_TILED_THIN1 << GRPH_CONTROL__GRPH_ARRAY_MODE__SHIFT);
1944 fb_format |= (pipe_config << GRPH_CONTROL__GRPH_PIPE_CONFIG__SHIFT);
1946 dce_v8_0_vga_enable(crtc, false);
1948 /* Make sure surface address is updated at vertical blank rather than
1951 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, 0);
1953 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
1954 upper_32_bits(fb_location));
1955 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
1956 upper_32_bits(fb_location));
1957 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
1958 (u32)fb_location & GRPH_PRIMARY_SURFACE_ADDRESS__GRPH_PRIMARY_SURFACE_ADDRESS_MASK);
1959 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
1960 (u32) fb_location & GRPH_SECONDARY_SURFACE_ADDRESS__GRPH_SECONDARY_SURFACE_ADDRESS_MASK);
1961 WREG32(mmGRPH_CONTROL + amdgpu_crtc->crtc_offset, fb_format);
1962 WREG32(mmGRPH_SWAP_CNTL + amdgpu_crtc->crtc_offset, fb_swap);
1965 * The LUT only has 256 slots for indexing by a 8 bpc fb. Bypass the LUT
1966 * for > 8 bpc scanout to avoid truncation of fb indices to 8 msb's, to
1967 * retain the full precision throughout the pipeline.
1969 WREG32_P(mmGRPH_LUT_10BIT_BYPASS_CONTROL + amdgpu_crtc->crtc_offset,
1970 (bypass_lut ? LUT_10BIT_BYPASS_EN : 0),
1971 ~LUT_10BIT_BYPASS_EN);
1974 DRM_DEBUG_KMS("Bypassing hardware LUT due to 10 bit fb scanout.\n");
1976 WREG32(mmGRPH_SURFACE_OFFSET_X + amdgpu_crtc->crtc_offset, 0);
1977 WREG32(mmGRPH_SURFACE_OFFSET_Y + amdgpu_crtc->crtc_offset, 0);
1978 WREG32(mmGRPH_X_START + amdgpu_crtc->crtc_offset, 0);
1979 WREG32(mmGRPH_Y_START + amdgpu_crtc->crtc_offset, 0);
1980 WREG32(mmGRPH_X_END + amdgpu_crtc->crtc_offset, target_fb->width);
1981 WREG32(mmGRPH_Y_END + amdgpu_crtc->crtc_offset, target_fb->height);
1983 fb_pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
1984 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset, fb_pitch_pixels);
1986 dce_v8_0_grph_enable(crtc, true);
1988 WREG32(mmLB_DESKTOP_HEIGHT + amdgpu_crtc->crtc_offset,
1993 WREG32(mmVIEWPORT_START + amdgpu_crtc->crtc_offset,
1995 viewport_w = crtc->mode.hdisplay;
1996 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
1997 WREG32(mmVIEWPORT_SIZE + amdgpu_crtc->crtc_offset,
1998 (viewport_w << 16) | viewport_h);
2000 /* set pageflip to happen anywhere in vblank interval */
2001 WREG32(mmMASTER_UPDATE_MODE + amdgpu_crtc->crtc_offset, 0);
2003 if (!atomic && fb && fb != crtc->primary->fb) {
2004 abo = gem_to_amdgpu_bo(fb->obj[0]);
2005 r = amdgpu_bo_reserve(abo, true);
2006 if (unlikely(r != 0))
2008 amdgpu_bo_unpin(abo);
2009 amdgpu_bo_unreserve(abo);
2012 /* Bytes per pixel may have changed */
2013 dce_v8_0_bandwidth_update(adev);
2018 static void dce_v8_0_set_interleave(struct drm_crtc *crtc,
2019 struct drm_display_mode *mode)
2021 struct drm_device *dev = crtc->dev;
2022 struct amdgpu_device *adev = drm_to_adev(dev);
2023 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2025 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2026 WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset,
2027 LB_DATA_FORMAT__INTERLEAVE_EN__SHIFT);
2029 WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset, 0);
2032 static void dce_v8_0_crtc_load_lut(struct drm_crtc *crtc)
2034 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2035 struct drm_device *dev = crtc->dev;
2036 struct amdgpu_device *adev = drm_to_adev(dev);
2040 DRM_DEBUG_KMS("%d\n", amdgpu_crtc->crtc_id);
2042 WREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset,
2043 ((INPUT_CSC_BYPASS << INPUT_CSC_CONTROL__INPUT_CSC_GRPH_MODE__SHIFT) |
2044 (INPUT_CSC_BYPASS << INPUT_CSC_CONTROL__INPUT_CSC_OVL_MODE__SHIFT)));
2045 WREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset,
2046 PRESCALE_GRPH_CONTROL__GRPH_PRESCALE_BYPASS_MASK);
2047 WREG32(mmPRESCALE_OVL_CONTROL + amdgpu_crtc->crtc_offset,
2048 PRESCALE_OVL_CONTROL__OVL_PRESCALE_BYPASS_MASK);
2049 WREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset,
2050 ((INPUT_GAMMA_USE_LUT << INPUT_GAMMA_CONTROL__GRPH_INPUT_GAMMA_MODE__SHIFT) |
2051 (INPUT_GAMMA_USE_LUT << INPUT_GAMMA_CONTROL__OVL_INPUT_GAMMA_MODE__SHIFT)));
2053 WREG32(mmDC_LUT_CONTROL + amdgpu_crtc->crtc_offset, 0);
2055 WREG32(mmDC_LUT_BLACK_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0);
2056 WREG32(mmDC_LUT_BLACK_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0);
2057 WREG32(mmDC_LUT_BLACK_OFFSET_RED + amdgpu_crtc->crtc_offset, 0);
2059 WREG32(mmDC_LUT_WHITE_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0xffff);
2060 WREG32(mmDC_LUT_WHITE_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0xffff);
2061 WREG32(mmDC_LUT_WHITE_OFFSET_RED + amdgpu_crtc->crtc_offset, 0xffff);
2063 WREG32(mmDC_LUT_RW_MODE + amdgpu_crtc->crtc_offset, 0);
2064 WREG32(mmDC_LUT_WRITE_EN_MASK + amdgpu_crtc->crtc_offset, 0x00000007);
2066 WREG32(mmDC_LUT_RW_INDEX + amdgpu_crtc->crtc_offset, 0);
2067 r = crtc->gamma_store;
2068 g = r + crtc->gamma_size;
2069 b = g + crtc->gamma_size;
2070 for (i = 0; i < 256; i++) {
2071 WREG32(mmDC_LUT_30_COLOR + amdgpu_crtc->crtc_offset,
2072 ((*r++ & 0xffc0) << 14) |
2073 ((*g++ & 0xffc0) << 4) |
2077 WREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset,
2078 ((DEGAMMA_BYPASS << DEGAMMA_CONTROL__GRPH_DEGAMMA_MODE__SHIFT) |
2079 (DEGAMMA_BYPASS << DEGAMMA_CONTROL__OVL_DEGAMMA_MODE__SHIFT) |
2080 (DEGAMMA_BYPASS << DEGAMMA_CONTROL__CURSOR_DEGAMMA_MODE__SHIFT)));
2081 WREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset,
2082 ((GAMUT_REMAP_BYPASS << GAMUT_REMAP_CONTROL__GRPH_GAMUT_REMAP_MODE__SHIFT) |
2083 (GAMUT_REMAP_BYPASS << GAMUT_REMAP_CONTROL__OVL_GAMUT_REMAP_MODE__SHIFT)));
2084 WREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset,
2085 ((REGAMMA_BYPASS << REGAMMA_CONTROL__GRPH_REGAMMA_MODE__SHIFT) |
2086 (REGAMMA_BYPASS << REGAMMA_CONTROL__OVL_REGAMMA_MODE__SHIFT)));
2087 WREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset,
2088 ((OUTPUT_CSC_BYPASS << OUTPUT_CSC_CONTROL__OUTPUT_CSC_GRPH_MODE__SHIFT) |
2089 (OUTPUT_CSC_BYPASS << OUTPUT_CSC_CONTROL__OUTPUT_CSC_OVL_MODE__SHIFT)));
2090 /* XXX match this to the depth of the crtc fmt block, move to modeset? */
2091 WREG32(0x1a50 + amdgpu_crtc->crtc_offset, 0);
2092 /* XXX this only needs to be programmed once per crtc at startup,
2093 * not sure where the best place for it is
2095 WREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset,
2096 ALPHA_CONTROL__CURSOR_ALPHA_BLND_ENA_MASK);
2099 static int dce_v8_0_pick_dig_encoder(struct drm_encoder *encoder)
2101 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
2102 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2104 switch (amdgpu_encoder->encoder_id) {
2105 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2110 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2115 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2120 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
2123 DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2129 * dce_v8_0_pick_pll - Allocate a PPLL for use by the crtc.
2133 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
2134 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
2135 * monitors a dedicated PPLL must be used. If a particular board has
2136 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
2137 * as there is no need to program the PLL itself. If we are not able to
2138 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
2139 * avoid messing up an existing monitor.
2141 * Asic specific PLL information
2145 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
2147 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
2150 static u32 dce_v8_0_pick_pll(struct drm_crtc *crtc)
2152 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2153 struct drm_device *dev = crtc->dev;
2154 struct amdgpu_device *adev = drm_to_adev(dev);
2158 if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder))) {
2159 if (adev->clock.dp_extclk)
2160 /* skip PPLL programming if using ext clock */
2161 return ATOM_PPLL_INVALID;
2163 /* use the same PPLL for all DP monitors */
2164 pll = amdgpu_pll_get_shared_dp_ppll(crtc);
2165 if (pll != ATOM_PPLL_INVALID)
2169 /* use the same PPLL for all monitors with the same clock */
2170 pll = amdgpu_pll_get_shared_nondp_ppll(crtc);
2171 if (pll != ATOM_PPLL_INVALID)
2174 /* otherwise, pick one of the plls */
2175 if ((adev->asic_type == CHIP_KABINI) ||
2176 (adev->asic_type == CHIP_MULLINS)) {
2177 /* KB/ML has PPLL1 and PPLL2 */
2178 pll_in_use = amdgpu_pll_get_use_mask(crtc);
2179 if (!(pll_in_use & (1 << ATOM_PPLL2)))
2181 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2183 DRM_ERROR("unable to allocate a PPLL\n");
2184 return ATOM_PPLL_INVALID;
2186 /* CI/KV has PPLL0, PPLL1, and PPLL2 */
2187 pll_in_use = amdgpu_pll_get_use_mask(crtc);
2188 if (!(pll_in_use & (1 << ATOM_PPLL2)))
2190 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2192 if (!(pll_in_use & (1 << ATOM_PPLL0)))
2194 DRM_ERROR("unable to allocate a PPLL\n");
2195 return ATOM_PPLL_INVALID;
2197 return ATOM_PPLL_INVALID;
2200 static void dce_v8_0_lock_cursor(struct drm_crtc *crtc, bool lock)
2202 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2203 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2206 cur_lock = RREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset);
2208 cur_lock |= CUR_UPDATE__CURSOR_UPDATE_LOCK_MASK;
2210 cur_lock &= ~CUR_UPDATE__CURSOR_UPDATE_LOCK_MASK;
2211 WREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset, cur_lock);
2214 static void dce_v8_0_hide_cursor(struct drm_crtc *crtc)
2216 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2217 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2219 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset,
2220 (CURSOR_24_8_PRE_MULT << CUR_CONTROL__CURSOR_MODE__SHIFT) |
2221 (CURSOR_URGENT_1_2 << CUR_CONTROL__CURSOR_URGENT_CONTROL__SHIFT));
2224 static void dce_v8_0_show_cursor(struct drm_crtc *crtc)
2226 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2227 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2229 WREG32(mmCUR_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2230 upper_32_bits(amdgpu_crtc->cursor_addr));
2231 WREG32(mmCUR_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2232 lower_32_bits(amdgpu_crtc->cursor_addr));
2234 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset,
2235 CUR_CONTROL__CURSOR_EN_MASK |
2236 (CURSOR_24_8_PRE_MULT << CUR_CONTROL__CURSOR_MODE__SHIFT) |
2237 (CURSOR_URGENT_1_2 << CUR_CONTROL__CURSOR_URGENT_CONTROL__SHIFT));
2240 static int dce_v8_0_cursor_move_locked(struct drm_crtc *crtc,
2243 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2244 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2245 int xorigin = 0, yorigin = 0;
2247 amdgpu_crtc->cursor_x = x;
2248 amdgpu_crtc->cursor_y = y;
2250 /* avivo cursor are offset into the total surface */
2253 DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y);
2256 xorigin = min(-x, amdgpu_crtc->max_cursor_width - 1);
2260 yorigin = min(-y, amdgpu_crtc->max_cursor_height - 1);
2264 WREG32(mmCUR_POSITION + amdgpu_crtc->crtc_offset, (x << 16) | y);
2265 WREG32(mmCUR_HOT_SPOT + amdgpu_crtc->crtc_offset, (xorigin << 16) | yorigin);
2266 WREG32(mmCUR_SIZE + amdgpu_crtc->crtc_offset,
2267 ((amdgpu_crtc->cursor_width - 1) << 16) | (amdgpu_crtc->cursor_height - 1));
2272 static int dce_v8_0_crtc_cursor_move(struct drm_crtc *crtc,
2277 dce_v8_0_lock_cursor(crtc, true);
2278 ret = dce_v8_0_cursor_move_locked(crtc, x, y);
2279 dce_v8_0_lock_cursor(crtc, false);
2284 static int dce_v8_0_crtc_cursor_set2(struct drm_crtc *crtc,
2285 struct drm_file *file_priv,
2292 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2293 struct drm_gem_object *obj;
2294 struct amdgpu_bo *aobj;
2298 /* turn off cursor */
2299 dce_v8_0_hide_cursor(crtc);
2304 if ((width > amdgpu_crtc->max_cursor_width) ||
2305 (height > amdgpu_crtc->max_cursor_height)) {
2306 DRM_ERROR("bad cursor width or height %d x %d\n", width, height);
2310 obj = drm_gem_object_lookup(file_priv, handle);
2312 DRM_ERROR("Cannot find cursor object %x for crtc %d\n", handle, amdgpu_crtc->crtc_id);
2316 aobj = gem_to_amdgpu_bo(obj);
2317 ret = amdgpu_bo_reserve(aobj, false);
2319 drm_gem_object_put(obj);
2323 ret = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
2324 amdgpu_bo_unreserve(aobj);
2326 DRM_ERROR("Failed to pin new cursor BO (%d)\n", ret);
2327 drm_gem_object_put(obj);
2330 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
2332 dce_v8_0_lock_cursor(crtc, true);
2334 if (width != amdgpu_crtc->cursor_width ||
2335 height != amdgpu_crtc->cursor_height ||
2336 hot_x != amdgpu_crtc->cursor_hot_x ||
2337 hot_y != amdgpu_crtc->cursor_hot_y) {
2340 x = amdgpu_crtc->cursor_x + amdgpu_crtc->cursor_hot_x - hot_x;
2341 y = amdgpu_crtc->cursor_y + amdgpu_crtc->cursor_hot_y - hot_y;
2343 dce_v8_0_cursor_move_locked(crtc, x, y);
2345 amdgpu_crtc->cursor_width = width;
2346 amdgpu_crtc->cursor_height = height;
2347 amdgpu_crtc->cursor_hot_x = hot_x;
2348 amdgpu_crtc->cursor_hot_y = hot_y;
2351 dce_v8_0_show_cursor(crtc);
2352 dce_v8_0_lock_cursor(crtc, false);
2355 if (amdgpu_crtc->cursor_bo) {
2356 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2357 ret = amdgpu_bo_reserve(aobj, true);
2358 if (likely(ret == 0)) {
2359 amdgpu_bo_unpin(aobj);
2360 amdgpu_bo_unreserve(aobj);
2362 drm_gem_object_put(amdgpu_crtc->cursor_bo);
2365 amdgpu_crtc->cursor_bo = obj;
2369 static void dce_v8_0_cursor_reset(struct drm_crtc *crtc)
2371 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2373 if (amdgpu_crtc->cursor_bo) {
2374 dce_v8_0_lock_cursor(crtc, true);
2376 dce_v8_0_cursor_move_locked(crtc, amdgpu_crtc->cursor_x,
2377 amdgpu_crtc->cursor_y);
2379 dce_v8_0_show_cursor(crtc);
2381 dce_v8_0_lock_cursor(crtc, false);
2385 static int dce_v8_0_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
2386 u16 *blue, uint32_t size,
2387 struct drm_modeset_acquire_ctx *ctx)
2389 dce_v8_0_crtc_load_lut(crtc);
2394 static void dce_v8_0_crtc_destroy(struct drm_crtc *crtc)
2396 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2398 drm_crtc_cleanup(crtc);
2402 static const struct drm_crtc_funcs dce_v8_0_crtc_funcs = {
2403 .cursor_set2 = dce_v8_0_crtc_cursor_set2,
2404 .cursor_move = dce_v8_0_crtc_cursor_move,
2405 .gamma_set = dce_v8_0_crtc_gamma_set,
2406 .set_config = amdgpu_display_crtc_set_config,
2407 .destroy = dce_v8_0_crtc_destroy,
2408 .page_flip_target = amdgpu_display_crtc_page_flip_target,
2409 .get_vblank_counter = amdgpu_get_vblank_counter_kms,
2410 .enable_vblank = amdgpu_enable_vblank_kms,
2411 .disable_vblank = amdgpu_disable_vblank_kms,
2412 .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
2415 static void dce_v8_0_crtc_dpms(struct drm_crtc *crtc, int mode)
2417 struct drm_device *dev = crtc->dev;
2418 struct amdgpu_device *adev = drm_to_adev(dev);
2419 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2423 case DRM_MODE_DPMS_ON:
2424 amdgpu_crtc->enabled = true;
2425 amdgpu_atombios_crtc_enable(crtc, ATOM_ENABLE);
2426 dce_v8_0_vga_enable(crtc, true);
2427 amdgpu_atombios_crtc_blank(crtc, ATOM_DISABLE);
2428 dce_v8_0_vga_enable(crtc, false);
2429 /* Make sure VBLANK and PFLIP interrupts are still enabled */
2430 type = amdgpu_display_crtc_idx_to_irq_type(adev,
2431 amdgpu_crtc->crtc_id);
2432 amdgpu_irq_update(adev, &adev->crtc_irq, type);
2433 amdgpu_irq_update(adev, &adev->pageflip_irq, type);
2434 drm_crtc_vblank_on(crtc);
2435 dce_v8_0_crtc_load_lut(crtc);
2437 case DRM_MODE_DPMS_STANDBY:
2438 case DRM_MODE_DPMS_SUSPEND:
2439 case DRM_MODE_DPMS_OFF:
2440 drm_crtc_vblank_off(crtc);
2441 if (amdgpu_crtc->enabled) {
2442 dce_v8_0_vga_enable(crtc, true);
2443 amdgpu_atombios_crtc_blank(crtc, ATOM_ENABLE);
2444 dce_v8_0_vga_enable(crtc, false);
2446 amdgpu_atombios_crtc_enable(crtc, ATOM_DISABLE);
2447 amdgpu_crtc->enabled = false;
2450 /* adjust pm to dpms */
2451 amdgpu_dpm_compute_clocks(adev);
2454 static void dce_v8_0_crtc_prepare(struct drm_crtc *crtc)
2456 /* disable crtc pair power gating before programming */
2457 amdgpu_atombios_crtc_powergate(crtc, ATOM_DISABLE);
2458 amdgpu_atombios_crtc_lock(crtc, ATOM_ENABLE);
2459 dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2462 static void dce_v8_0_crtc_commit(struct drm_crtc *crtc)
2464 dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
2465 amdgpu_atombios_crtc_lock(crtc, ATOM_DISABLE);
2468 static void dce_v8_0_crtc_disable(struct drm_crtc *crtc)
2470 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2471 struct drm_device *dev = crtc->dev;
2472 struct amdgpu_device *adev = drm_to_adev(dev);
2473 struct amdgpu_atom_ss ss;
2476 dce_v8_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2477 if (crtc->primary->fb) {
2479 struct amdgpu_bo *abo;
2481 abo = gem_to_amdgpu_bo(crtc->primary->fb->obj[0]);
2482 r = amdgpu_bo_reserve(abo, true);
2484 DRM_ERROR("failed to reserve abo before unpin\n");
2486 amdgpu_bo_unpin(abo);
2487 amdgpu_bo_unreserve(abo);
2490 /* disable the GRPH */
2491 dce_v8_0_grph_enable(crtc, false);
2493 amdgpu_atombios_crtc_powergate(crtc, ATOM_ENABLE);
2495 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2496 if (adev->mode_info.crtcs[i] &&
2497 adev->mode_info.crtcs[i]->enabled &&
2498 i != amdgpu_crtc->crtc_id &&
2499 amdgpu_crtc->pll_id == adev->mode_info.crtcs[i]->pll_id) {
2500 /* one other crtc is using this pll don't turn
2507 switch (amdgpu_crtc->pll_id) {
2510 /* disable the ppll */
2511 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
2512 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2515 /* disable the ppll */
2516 if ((adev->asic_type == CHIP_KAVERI) ||
2517 (adev->asic_type == CHIP_BONAIRE) ||
2518 (adev->asic_type == CHIP_HAWAII))
2519 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
2520 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2526 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2527 amdgpu_crtc->adjusted_clock = 0;
2528 amdgpu_crtc->encoder = NULL;
2529 amdgpu_crtc->connector = NULL;
2532 static int dce_v8_0_crtc_mode_set(struct drm_crtc *crtc,
2533 struct drm_display_mode *mode,
2534 struct drm_display_mode *adjusted_mode,
2535 int x, int y, struct drm_framebuffer *old_fb)
2537 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2539 if (!amdgpu_crtc->adjusted_clock)
2542 amdgpu_atombios_crtc_set_pll(crtc, adjusted_mode);
2543 amdgpu_atombios_crtc_set_dtd_timing(crtc, adjusted_mode);
2544 dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2545 amdgpu_atombios_crtc_overscan_setup(crtc, mode, adjusted_mode);
2546 amdgpu_atombios_crtc_scaler_setup(crtc);
2547 dce_v8_0_cursor_reset(crtc);
2548 /* update the hw version fpr dpm */
2549 amdgpu_crtc->hw_mode = *adjusted_mode;
2554 static bool dce_v8_0_crtc_mode_fixup(struct drm_crtc *crtc,
2555 const struct drm_display_mode *mode,
2556 struct drm_display_mode *adjusted_mode)
2558 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2559 struct drm_device *dev = crtc->dev;
2560 struct drm_encoder *encoder;
2562 /* assign the encoder to the amdgpu crtc to avoid repeated lookups later */
2563 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2564 if (encoder->crtc == crtc) {
2565 amdgpu_crtc->encoder = encoder;
2566 amdgpu_crtc->connector = amdgpu_get_connector_for_encoder(encoder);
2570 if ((amdgpu_crtc->encoder == NULL) || (amdgpu_crtc->connector == NULL)) {
2571 amdgpu_crtc->encoder = NULL;
2572 amdgpu_crtc->connector = NULL;
2575 if (!amdgpu_display_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
2577 if (amdgpu_atombios_crtc_prepare_pll(crtc, adjusted_mode))
2580 amdgpu_crtc->pll_id = dce_v8_0_pick_pll(crtc);
2581 /* if we can't get a PPLL for a non-DP encoder, fail */
2582 if ((amdgpu_crtc->pll_id == ATOM_PPLL_INVALID) &&
2583 !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2589 static int dce_v8_0_crtc_set_base(struct drm_crtc *crtc, int x, int y,
2590 struct drm_framebuffer *old_fb)
2592 return dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2595 static int dce_v8_0_crtc_set_base_atomic(struct drm_crtc *crtc,
2596 struct drm_framebuffer *fb,
2597 int x, int y, enum mode_set_atomic state)
2599 return dce_v8_0_crtc_do_set_base(crtc, fb, x, y, 1);
2602 static const struct drm_crtc_helper_funcs dce_v8_0_crtc_helper_funcs = {
2603 .dpms = dce_v8_0_crtc_dpms,
2604 .mode_fixup = dce_v8_0_crtc_mode_fixup,
2605 .mode_set = dce_v8_0_crtc_mode_set,
2606 .mode_set_base = dce_v8_0_crtc_set_base,
2607 .mode_set_base_atomic = dce_v8_0_crtc_set_base_atomic,
2608 .prepare = dce_v8_0_crtc_prepare,
2609 .commit = dce_v8_0_crtc_commit,
2610 .disable = dce_v8_0_crtc_disable,
2611 .get_scanout_position = amdgpu_crtc_get_scanout_position,
2614 static int dce_v8_0_crtc_init(struct amdgpu_device *adev, int index)
2616 struct amdgpu_crtc *amdgpu_crtc;
2618 amdgpu_crtc = kzalloc(sizeof(struct amdgpu_crtc) +
2619 (AMDGPUFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
2620 if (amdgpu_crtc == NULL)
2623 drm_crtc_init(adev_to_drm(adev), &amdgpu_crtc->base, &dce_v8_0_crtc_funcs);
2625 drm_mode_crtc_set_gamma_size(&amdgpu_crtc->base, 256);
2626 amdgpu_crtc->crtc_id = index;
2627 adev->mode_info.crtcs[index] = amdgpu_crtc;
2629 amdgpu_crtc->max_cursor_width = CIK_CURSOR_WIDTH;
2630 amdgpu_crtc->max_cursor_height = CIK_CURSOR_HEIGHT;
2631 adev_to_drm(adev)->mode_config.cursor_width = amdgpu_crtc->max_cursor_width;
2632 adev_to_drm(adev)->mode_config.cursor_height = amdgpu_crtc->max_cursor_height;
2634 amdgpu_crtc->crtc_offset = crtc_offsets[amdgpu_crtc->crtc_id];
2636 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2637 amdgpu_crtc->adjusted_clock = 0;
2638 amdgpu_crtc->encoder = NULL;
2639 amdgpu_crtc->connector = NULL;
2640 drm_crtc_helper_add(&amdgpu_crtc->base, &dce_v8_0_crtc_helper_funcs);
2645 static int dce_v8_0_early_init(void *handle)
2647 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2649 adev->audio_endpt_rreg = &dce_v8_0_audio_endpt_rreg;
2650 adev->audio_endpt_wreg = &dce_v8_0_audio_endpt_wreg;
2652 dce_v8_0_set_display_funcs(adev);
2654 adev->mode_info.num_crtc = dce_v8_0_get_num_crtc(adev);
2656 switch (adev->asic_type) {
2659 adev->mode_info.num_hpd = 6;
2660 adev->mode_info.num_dig = 6;
2663 adev->mode_info.num_hpd = 6;
2664 adev->mode_info.num_dig = 7;
2668 adev->mode_info.num_hpd = 6;
2669 adev->mode_info.num_dig = 6; /* ? */
2672 /* FIXME: not supported yet */
2676 dce_v8_0_set_irq_funcs(adev);
2681 static int dce_v8_0_sw_init(void *handle)
2684 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2686 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2687 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + 1, &adev->crtc_irq);
2692 for (i = 8; i < 20; i += 2) {
2693 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i, &adev->pageflip_irq);
2699 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, 42, &adev->hpd_irq);
2703 adev_to_drm(adev)->mode_config.funcs = &amdgpu_mode_funcs;
2705 adev_to_drm(adev)->mode_config.async_page_flip = true;
2707 adev_to_drm(adev)->mode_config.max_width = 16384;
2708 adev_to_drm(adev)->mode_config.max_height = 16384;
2710 adev_to_drm(adev)->mode_config.preferred_depth = 24;
2711 if (adev->asic_type == CHIP_HAWAII)
2712 /* disable prefer shadow for now due to hibernation issues */
2713 adev_to_drm(adev)->mode_config.prefer_shadow = 0;
2715 adev_to_drm(adev)->mode_config.prefer_shadow = 1;
2717 adev_to_drm(adev)->mode_config.fb_modifiers_not_supported = true;
2719 r = amdgpu_display_modeset_create_props(adev);
2723 adev_to_drm(adev)->mode_config.max_width = 16384;
2724 adev_to_drm(adev)->mode_config.max_height = 16384;
2726 /* allocate crtcs */
2727 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2728 r = dce_v8_0_crtc_init(adev, i);
2733 if (amdgpu_atombios_get_connector_info_from_object_table(adev))
2734 amdgpu_display_print_display_setup(adev_to_drm(adev));
2739 r = dce_v8_0_afmt_init(adev);
2743 r = dce_v8_0_audio_init(adev);
2747 /* Disable vblank IRQs aggressively for power-saving */
2748 /* XXX: can this be enabled for DC? */
2749 adev_to_drm(adev)->vblank_disable_immediate = true;
2751 r = drm_vblank_init(adev_to_drm(adev), adev->mode_info.num_crtc);
2756 INIT_DELAYED_WORK(&adev->hotplug_work,
2757 amdgpu_display_hotplug_work_func);
2759 drm_kms_helper_poll_init(adev_to_drm(adev));
2761 adev->mode_info.mode_config_initialized = true;
2765 static int dce_v8_0_sw_fini(void *handle)
2767 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2769 kfree(adev->mode_info.bios_hardcoded_edid);
2771 drm_kms_helper_poll_fini(adev_to_drm(adev));
2773 dce_v8_0_audio_fini(adev);
2775 dce_v8_0_afmt_fini(adev);
2777 drm_mode_config_cleanup(adev_to_drm(adev));
2778 adev->mode_info.mode_config_initialized = false;
2783 static int dce_v8_0_hw_init(void *handle)
2786 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2788 /* disable vga render */
2789 dce_v8_0_set_vga_render_state(adev, false);
2790 /* init dig PHYs, disp eng pll */
2791 amdgpu_atombios_encoder_init_dig(adev);
2792 amdgpu_atombios_crtc_set_disp_eng_pll(adev, adev->clock.default_dispclk);
2794 /* initialize hpd */
2795 dce_v8_0_hpd_init(adev);
2797 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
2798 dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
2801 dce_v8_0_pageflip_interrupt_init(adev);
2806 static int dce_v8_0_hw_fini(void *handle)
2809 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2811 dce_v8_0_hpd_fini(adev);
2813 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
2814 dce_v8_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
2817 dce_v8_0_pageflip_interrupt_fini(adev);
2819 flush_delayed_work(&adev->hotplug_work);
2824 static int dce_v8_0_suspend(void *handle)
2826 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2829 r = amdgpu_display_suspend_helper(adev);
2833 adev->mode_info.bl_level =
2834 amdgpu_atombios_encoder_get_backlight_level_from_reg(adev);
2836 return dce_v8_0_hw_fini(handle);
2839 static int dce_v8_0_resume(void *handle)
2841 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2844 amdgpu_atombios_encoder_set_backlight_level_to_reg(adev,
2845 adev->mode_info.bl_level);
2847 ret = dce_v8_0_hw_init(handle);
2849 /* turn on the BL */
2850 if (adev->mode_info.bl_encoder) {
2851 u8 bl_level = amdgpu_display_backlight_get_level(adev,
2852 adev->mode_info.bl_encoder);
2853 amdgpu_display_backlight_set_level(adev, adev->mode_info.bl_encoder,
2859 return amdgpu_display_resume_helper(adev);
2862 static bool dce_v8_0_is_idle(void *handle)
2867 static int dce_v8_0_wait_for_idle(void *handle)
2872 static int dce_v8_0_soft_reset(void *handle)
2874 u32 srbm_soft_reset = 0, tmp;
2875 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2877 if (dce_v8_0_is_display_hung(adev))
2878 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_DC_MASK;
2880 if (srbm_soft_reset) {
2881 tmp = RREG32(mmSRBM_SOFT_RESET);
2882 tmp |= srbm_soft_reset;
2883 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
2884 WREG32(mmSRBM_SOFT_RESET, tmp);
2885 tmp = RREG32(mmSRBM_SOFT_RESET);
2889 tmp &= ~srbm_soft_reset;
2890 WREG32(mmSRBM_SOFT_RESET, tmp);
2891 tmp = RREG32(mmSRBM_SOFT_RESET);
2893 /* Wait a little for things to settle down */
2899 static void dce_v8_0_set_crtc_vblank_interrupt_state(struct amdgpu_device *adev,
2901 enum amdgpu_interrupt_state state)
2903 u32 reg_block, lb_interrupt_mask;
2905 if (crtc >= adev->mode_info.num_crtc) {
2906 DRM_DEBUG("invalid crtc %d\n", crtc);
2912 reg_block = CRTC0_REGISTER_OFFSET;
2915 reg_block = CRTC1_REGISTER_OFFSET;
2918 reg_block = CRTC2_REGISTER_OFFSET;
2921 reg_block = CRTC3_REGISTER_OFFSET;
2924 reg_block = CRTC4_REGISTER_OFFSET;
2927 reg_block = CRTC5_REGISTER_OFFSET;
2930 DRM_DEBUG("invalid crtc %d\n", crtc);
2935 case AMDGPU_IRQ_STATE_DISABLE:
2936 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
2937 lb_interrupt_mask &= ~LB_INTERRUPT_MASK__VBLANK_INTERRUPT_MASK_MASK;
2938 WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
2940 case AMDGPU_IRQ_STATE_ENABLE:
2941 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
2942 lb_interrupt_mask |= LB_INTERRUPT_MASK__VBLANK_INTERRUPT_MASK_MASK;
2943 WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
2950 static void dce_v8_0_set_crtc_vline_interrupt_state(struct amdgpu_device *adev,
2952 enum amdgpu_interrupt_state state)
2954 u32 reg_block, lb_interrupt_mask;
2956 if (crtc >= adev->mode_info.num_crtc) {
2957 DRM_DEBUG("invalid crtc %d\n", crtc);
2963 reg_block = CRTC0_REGISTER_OFFSET;
2966 reg_block = CRTC1_REGISTER_OFFSET;
2969 reg_block = CRTC2_REGISTER_OFFSET;
2972 reg_block = CRTC3_REGISTER_OFFSET;
2975 reg_block = CRTC4_REGISTER_OFFSET;
2978 reg_block = CRTC5_REGISTER_OFFSET;
2981 DRM_DEBUG("invalid crtc %d\n", crtc);
2986 case AMDGPU_IRQ_STATE_DISABLE:
2987 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
2988 lb_interrupt_mask &= ~LB_INTERRUPT_MASK__VLINE_INTERRUPT_MASK_MASK;
2989 WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
2991 case AMDGPU_IRQ_STATE_ENABLE:
2992 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + reg_block);
2993 lb_interrupt_mask |= LB_INTERRUPT_MASK__VLINE_INTERRUPT_MASK_MASK;
2994 WREG32(mmLB_INTERRUPT_MASK + reg_block, lb_interrupt_mask);
3001 static int dce_v8_0_set_hpd_interrupt_state(struct amdgpu_device *adev,
3002 struct amdgpu_irq_src *src,
3004 enum amdgpu_interrupt_state state)
3006 u32 dc_hpd_int_cntl;
3008 if (type >= adev->mode_info.num_hpd) {
3009 DRM_DEBUG("invalid hdp %d\n", type);
3014 case AMDGPU_IRQ_STATE_DISABLE:
3015 dc_hpd_int_cntl = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type]);
3016 dc_hpd_int_cntl &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
3017 WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type], dc_hpd_int_cntl);
3019 case AMDGPU_IRQ_STATE_ENABLE:
3020 dc_hpd_int_cntl = RREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type]);
3021 dc_hpd_int_cntl |= DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK;
3022 WREG32(mmDC_HPD1_INT_CONTROL + hpd_offsets[type], dc_hpd_int_cntl);
3031 static int dce_v8_0_set_crtc_interrupt_state(struct amdgpu_device *adev,
3032 struct amdgpu_irq_src *src,
3034 enum amdgpu_interrupt_state state)
3037 case AMDGPU_CRTC_IRQ_VBLANK1:
3038 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 0, state);
3040 case AMDGPU_CRTC_IRQ_VBLANK2:
3041 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 1, state);
3043 case AMDGPU_CRTC_IRQ_VBLANK3:
3044 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 2, state);
3046 case AMDGPU_CRTC_IRQ_VBLANK4:
3047 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 3, state);
3049 case AMDGPU_CRTC_IRQ_VBLANK5:
3050 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 4, state);
3052 case AMDGPU_CRTC_IRQ_VBLANK6:
3053 dce_v8_0_set_crtc_vblank_interrupt_state(adev, 5, state);
3055 case AMDGPU_CRTC_IRQ_VLINE1:
3056 dce_v8_0_set_crtc_vline_interrupt_state(adev, 0, state);
3058 case AMDGPU_CRTC_IRQ_VLINE2:
3059 dce_v8_0_set_crtc_vline_interrupt_state(adev, 1, state);
3061 case AMDGPU_CRTC_IRQ_VLINE3:
3062 dce_v8_0_set_crtc_vline_interrupt_state(adev, 2, state);
3064 case AMDGPU_CRTC_IRQ_VLINE4:
3065 dce_v8_0_set_crtc_vline_interrupt_state(adev, 3, state);
3067 case AMDGPU_CRTC_IRQ_VLINE5:
3068 dce_v8_0_set_crtc_vline_interrupt_state(adev, 4, state);
3070 case AMDGPU_CRTC_IRQ_VLINE6:
3071 dce_v8_0_set_crtc_vline_interrupt_state(adev, 5, state);
3079 static int dce_v8_0_crtc_irq(struct amdgpu_device *adev,
3080 struct amdgpu_irq_src *source,
3081 struct amdgpu_iv_entry *entry)
3083 unsigned crtc = entry->src_id - 1;
3084 uint32_t disp_int = RREG32(interrupt_status_offsets[crtc].reg);
3085 unsigned int irq_type = amdgpu_display_crtc_idx_to_irq_type(adev,
3088 switch (entry->src_data[0]) {
3089 case 0: /* vblank */
3090 if (disp_int & interrupt_status_offsets[crtc].vblank)
3091 WREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc], LB_VBLANK_STATUS__VBLANK_ACK_MASK);
3093 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3095 if (amdgpu_irq_enabled(adev, source, irq_type)) {
3096 drm_handle_vblank(adev_to_drm(adev), crtc);
3098 DRM_DEBUG("IH: D%d vblank\n", crtc + 1);
3101 if (disp_int & interrupt_status_offsets[crtc].vline)
3102 WREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc], LB_VLINE_STATUS__VLINE_ACK_MASK);
3104 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3106 DRM_DEBUG("IH: D%d vline\n", crtc + 1);
3109 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3116 static int dce_v8_0_set_pageflip_interrupt_state(struct amdgpu_device *adev,
3117 struct amdgpu_irq_src *src,
3119 enum amdgpu_interrupt_state state)
3123 if (type >= adev->mode_info.num_crtc) {
3124 DRM_ERROR("invalid pageflip crtc %d\n", type);
3128 reg = RREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type]);
3129 if (state == AMDGPU_IRQ_STATE_DISABLE)
3130 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3131 reg & ~GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3133 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3134 reg | GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3139 static int dce_v8_0_pageflip_irq(struct amdgpu_device *adev,
3140 struct amdgpu_irq_src *source,
3141 struct amdgpu_iv_entry *entry)
3143 unsigned long flags;
3145 struct amdgpu_crtc *amdgpu_crtc;
3146 struct amdgpu_flip_work *works;
3148 crtc_id = (entry->src_id - 8) >> 1;
3149 amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
3151 if (crtc_id >= adev->mode_info.num_crtc) {
3152 DRM_ERROR("invalid pageflip crtc %d\n", crtc_id);
3156 if (RREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id]) &
3157 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_OCCURRED_MASK)
3158 WREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id],
3159 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_CLEAR_MASK);
3161 /* IRQ could occur when in initial stage */
3162 if (amdgpu_crtc == NULL)
3165 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
3166 works = amdgpu_crtc->pflip_works;
3167 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED) {
3168 DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d != "
3169 "AMDGPU_FLIP_SUBMITTED(%d)\n",
3170 amdgpu_crtc->pflip_status,
3171 AMDGPU_FLIP_SUBMITTED);
3172 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3176 /* page flip completed. clean up */
3177 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
3178 amdgpu_crtc->pflip_works = NULL;
3180 /* wakeup usersapce */
3182 drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
3184 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3186 drm_crtc_vblank_put(&amdgpu_crtc->base);
3187 schedule_work(&works->unpin_work);
3192 static int dce_v8_0_hpd_irq(struct amdgpu_device *adev,
3193 struct amdgpu_irq_src *source,
3194 struct amdgpu_iv_entry *entry)
3196 uint32_t disp_int, mask;
3199 if (entry->src_data[0] >= adev->mode_info.num_hpd) {
3200 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3204 hpd = entry->src_data[0];
3205 disp_int = RREG32(interrupt_status_offsets[hpd].reg);
3206 mask = interrupt_status_offsets[hpd].hpd;
3208 if (disp_int & mask) {
3209 dce_v8_0_hpd_int_ack(adev, hpd);
3210 schedule_delayed_work(&adev->hotplug_work, 0);
3211 DRM_DEBUG("IH: HPD%d\n", hpd + 1);
3218 static int dce_v8_0_set_clockgating_state(void *handle,
3219 enum amd_clockgating_state state)
3224 static int dce_v8_0_set_powergating_state(void *handle,
3225 enum amd_powergating_state state)
3230 static const struct amd_ip_funcs dce_v8_0_ip_funcs = {
3232 .early_init = dce_v8_0_early_init,
3234 .sw_init = dce_v8_0_sw_init,
3235 .sw_fini = dce_v8_0_sw_fini,
3236 .hw_init = dce_v8_0_hw_init,
3237 .hw_fini = dce_v8_0_hw_fini,
3238 .suspend = dce_v8_0_suspend,
3239 .resume = dce_v8_0_resume,
3240 .is_idle = dce_v8_0_is_idle,
3241 .wait_for_idle = dce_v8_0_wait_for_idle,
3242 .soft_reset = dce_v8_0_soft_reset,
3243 .set_clockgating_state = dce_v8_0_set_clockgating_state,
3244 .set_powergating_state = dce_v8_0_set_powergating_state,
3245 .dump_ip_state = NULL,
3246 .print_ip_state = NULL,
3250 dce_v8_0_encoder_mode_set(struct drm_encoder *encoder,
3251 struct drm_display_mode *mode,
3252 struct drm_display_mode *adjusted_mode)
3254 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3256 amdgpu_encoder->pixel_clock = adjusted_mode->clock;
3258 /* need to call this here rather than in prepare() since we need some crtc info */
3259 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3261 /* set scaler clears this on some chips */
3262 dce_v8_0_set_interleave(encoder->crtc, mode);
3264 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI) {
3265 dce_v8_0_afmt_enable(encoder, true);
3266 dce_v8_0_afmt_setmode(encoder, adjusted_mode);
3270 static void dce_v8_0_encoder_prepare(struct drm_encoder *encoder)
3272 struct amdgpu_device *adev = drm_to_adev(encoder->dev);
3273 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3274 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
3276 if ((amdgpu_encoder->active_device &
3277 (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) ||
3278 (amdgpu_encoder_get_dp_bridge_encoder_id(encoder) !=
3279 ENCODER_OBJECT_ID_NONE)) {
3280 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
3282 dig->dig_encoder = dce_v8_0_pick_dig_encoder(encoder);
3283 if (amdgpu_encoder->active_device & ATOM_DEVICE_DFP_SUPPORT)
3284 dig->afmt = adev->mode_info.afmt[dig->dig_encoder];
3288 amdgpu_atombios_scratch_regs_lock(adev, true);
3291 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
3293 /* select the clock/data port if it uses a router */
3294 if (amdgpu_connector->router.cd_valid)
3295 amdgpu_i2c_router_select_cd_port(amdgpu_connector);
3297 /* turn eDP panel on for mode set */
3298 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
3299 amdgpu_atombios_encoder_set_edp_panel_power(connector,
3300 ATOM_TRANSMITTER_ACTION_POWER_ON);
3303 /* this is needed for the pll/ss setup to work correctly in some cases */
3304 amdgpu_atombios_encoder_set_crtc_source(encoder);
3305 /* set up the FMT blocks */
3306 dce_v8_0_program_fmt(encoder);
3309 static void dce_v8_0_encoder_commit(struct drm_encoder *encoder)
3311 struct drm_device *dev = encoder->dev;
3312 struct amdgpu_device *adev = drm_to_adev(dev);
3314 /* need to call this here as we need the crtc set up */
3315 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
3316 amdgpu_atombios_scratch_regs_lock(adev, false);
3319 static void dce_v8_0_encoder_disable(struct drm_encoder *encoder)
3321 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3322 struct amdgpu_encoder_atom_dig *dig;
3324 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3326 if (amdgpu_atombios_encoder_is_digital(encoder)) {
3327 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI)
3328 dce_v8_0_afmt_enable(encoder, false);
3329 dig = amdgpu_encoder->enc_priv;
3330 dig->dig_encoder = -1;
3332 amdgpu_encoder->active_device = 0;
3335 /* these are handled by the primary encoders */
3336 static void dce_v8_0_ext_prepare(struct drm_encoder *encoder)
3341 static void dce_v8_0_ext_commit(struct drm_encoder *encoder)
3347 dce_v8_0_ext_mode_set(struct drm_encoder *encoder,
3348 struct drm_display_mode *mode,
3349 struct drm_display_mode *adjusted_mode)
3354 static void dce_v8_0_ext_disable(struct drm_encoder *encoder)
3360 dce_v8_0_ext_dpms(struct drm_encoder *encoder, int mode)
3365 static const struct drm_encoder_helper_funcs dce_v8_0_ext_helper_funcs = {
3366 .dpms = dce_v8_0_ext_dpms,
3367 .prepare = dce_v8_0_ext_prepare,
3368 .mode_set = dce_v8_0_ext_mode_set,
3369 .commit = dce_v8_0_ext_commit,
3370 .disable = dce_v8_0_ext_disable,
3371 /* no detect for TMDS/LVDS yet */
3374 static const struct drm_encoder_helper_funcs dce_v8_0_dig_helper_funcs = {
3375 .dpms = amdgpu_atombios_encoder_dpms,
3376 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3377 .prepare = dce_v8_0_encoder_prepare,
3378 .mode_set = dce_v8_0_encoder_mode_set,
3379 .commit = dce_v8_0_encoder_commit,
3380 .disable = dce_v8_0_encoder_disable,
3381 .detect = amdgpu_atombios_encoder_dig_detect,
3384 static const struct drm_encoder_helper_funcs dce_v8_0_dac_helper_funcs = {
3385 .dpms = amdgpu_atombios_encoder_dpms,
3386 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3387 .prepare = dce_v8_0_encoder_prepare,
3388 .mode_set = dce_v8_0_encoder_mode_set,
3389 .commit = dce_v8_0_encoder_commit,
3390 .detect = amdgpu_atombios_encoder_dac_detect,
3393 static void dce_v8_0_encoder_destroy(struct drm_encoder *encoder)
3395 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3396 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3397 amdgpu_atombios_encoder_fini_backlight(amdgpu_encoder);
3398 kfree(amdgpu_encoder->enc_priv);
3399 drm_encoder_cleanup(encoder);
3400 kfree(amdgpu_encoder);
3403 static const struct drm_encoder_funcs dce_v8_0_encoder_funcs = {
3404 .destroy = dce_v8_0_encoder_destroy,
3407 static void dce_v8_0_encoder_add(struct amdgpu_device *adev,
3408 uint32_t encoder_enum,
3409 uint32_t supported_device,
3412 struct drm_device *dev = adev_to_drm(adev);
3413 struct drm_encoder *encoder;
3414 struct amdgpu_encoder *amdgpu_encoder;
3416 /* see if we already added it */
3417 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3418 amdgpu_encoder = to_amdgpu_encoder(encoder);
3419 if (amdgpu_encoder->encoder_enum == encoder_enum) {
3420 amdgpu_encoder->devices |= supported_device;
3427 amdgpu_encoder = kzalloc(sizeof(struct amdgpu_encoder), GFP_KERNEL);
3428 if (!amdgpu_encoder)
3431 encoder = &amdgpu_encoder->base;
3432 switch (adev->mode_info.num_crtc) {
3434 encoder->possible_crtcs = 0x1;
3438 encoder->possible_crtcs = 0x3;
3441 encoder->possible_crtcs = 0xf;
3444 encoder->possible_crtcs = 0x3f;
3448 amdgpu_encoder->enc_priv = NULL;
3450 amdgpu_encoder->encoder_enum = encoder_enum;
3451 amdgpu_encoder->encoder_id = (encoder_enum & OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
3452 amdgpu_encoder->devices = supported_device;
3453 amdgpu_encoder->rmx_type = RMX_OFF;
3454 amdgpu_encoder->underscan_type = UNDERSCAN_OFF;
3455 amdgpu_encoder->is_ext_encoder = false;
3456 amdgpu_encoder->caps = caps;
3458 switch (amdgpu_encoder->encoder_id) {
3459 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1:
3460 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2:
3461 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3462 DRM_MODE_ENCODER_DAC, NULL);
3463 drm_encoder_helper_add(encoder, &dce_v8_0_dac_helper_funcs);
3465 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
3466 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
3467 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
3468 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
3469 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
3470 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
3471 amdgpu_encoder->rmx_type = RMX_FULL;
3472 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3473 DRM_MODE_ENCODER_LVDS, NULL);
3474 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_lcd_info(amdgpu_encoder);
3475 } else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
3476 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3477 DRM_MODE_ENCODER_DAC, NULL);
3478 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3480 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3481 DRM_MODE_ENCODER_TMDS, NULL);
3482 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3484 drm_encoder_helper_add(encoder, &dce_v8_0_dig_helper_funcs);
3486 case ENCODER_OBJECT_ID_SI170B:
3487 case ENCODER_OBJECT_ID_CH7303:
3488 case ENCODER_OBJECT_ID_EXTERNAL_SDVOA:
3489 case ENCODER_OBJECT_ID_EXTERNAL_SDVOB:
3490 case ENCODER_OBJECT_ID_TITFP513:
3491 case ENCODER_OBJECT_ID_VT1623:
3492 case ENCODER_OBJECT_ID_HDMI_SI1930:
3493 case ENCODER_OBJECT_ID_TRAVIS:
3494 case ENCODER_OBJECT_ID_NUTMEG:
3495 /* these are handled by the primary encoders */
3496 amdgpu_encoder->is_ext_encoder = true;
3497 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3498 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3499 DRM_MODE_ENCODER_LVDS, NULL);
3500 else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT))
3501 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3502 DRM_MODE_ENCODER_DAC, NULL);
3504 drm_encoder_init(dev, encoder, &dce_v8_0_encoder_funcs,
3505 DRM_MODE_ENCODER_TMDS, NULL);
3506 drm_encoder_helper_add(encoder, &dce_v8_0_ext_helper_funcs);
3511 static const struct amdgpu_display_funcs dce_v8_0_display_funcs = {
3512 .bandwidth_update = &dce_v8_0_bandwidth_update,
3513 .vblank_get_counter = &dce_v8_0_vblank_get_counter,
3514 .backlight_set_level = &amdgpu_atombios_encoder_set_backlight_level,
3515 .backlight_get_level = &amdgpu_atombios_encoder_get_backlight_level,
3516 .hpd_sense = &dce_v8_0_hpd_sense,
3517 .hpd_set_polarity = &dce_v8_0_hpd_set_polarity,
3518 .hpd_get_gpio_reg = &dce_v8_0_hpd_get_gpio_reg,
3519 .page_flip = &dce_v8_0_page_flip,
3520 .page_flip_get_scanoutpos = &dce_v8_0_crtc_get_scanoutpos,
3521 .add_encoder = &dce_v8_0_encoder_add,
3522 .add_connector = &amdgpu_connector_add,
3525 static void dce_v8_0_set_display_funcs(struct amdgpu_device *adev)
3527 adev->mode_info.funcs = &dce_v8_0_display_funcs;
3530 static const struct amdgpu_irq_src_funcs dce_v8_0_crtc_irq_funcs = {
3531 .set = dce_v8_0_set_crtc_interrupt_state,
3532 .process = dce_v8_0_crtc_irq,
3535 static const struct amdgpu_irq_src_funcs dce_v8_0_pageflip_irq_funcs = {
3536 .set = dce_v8_0_set_pageflip_interrupt_state,
3537 .process = dce_v8_0_pageflip_irq,
3540 static const struct amdgpu_irq_src_funcs dce_v8_0_hpd_irq_funcs = {
3541 .set = dce_v8_0_set_hpd_interrupt_state,
3542 .process = dce_v8_0_hpd_irq,
3545 static void dce_v8_0_set_irq_funcs(struct amdgpu_device *adev)
3547 if (adev->mode_info.num_crtc > 0)
3548 adev->crtc_irq.num_types = AMDGPU_CRTC_IRQ_VLINE1 + adev->mode_info.num_crtc;
3550 adev->crtc_irq.num_types = 0;
3551 adev->crtc_irq.funcs = &dce_v8_0_crtc_irq_funcs;
3553 adev->pageflip_irq.num_types = adev->mode_info.num_crtc;
3554 adev->pageflip_irq.funcs = &dce_v8_0_pageflip_irq_funcs;
3556 adev->hpd_irq.num_types = adev->mode_info.num_hpd;
3557 adev->hpd_irq.funcs = &dce_v8_0_hpd_irq_funcs;
3560 const struct amdgpu_ip_block_version dce_v8_0_ip_block = {
3561 .type = AMD_IP_BLOCK_TYPE_DCE,
3565 .funcs = &dce_v8_0_ip_funcs,
3568 const struct amdgpu_ip_block_version dce_v8_1_ip_block = {
3569 .type = AMD_IP_BLOCK_TYPE_DCE,
3573 .funcs = &dce_v8_0_ip_funcs,
3576 const struct amdgpu_ip_block_version dce_v8_2_ip_block = {
3577 .type = AMD_IP_BLOCK_TYPE_DCE,
3581 .funcs = &dce_v8_0_ip_funcs,
3584 const struct amdgpu_ip_block_version dce_v8_3_ip_block = {
3585 .type = AMD_IP_BLOCK_TYPE_DCE,
3589 .funcs = &dce_v8_0_ip_funcs,
3592 const struct amdgpu_ip_block_version dce_v8_5_ip_block = {
3593 .type = AMD_IP_BLOCK_TYPE_DCE,
3597 .funcs = &dce_v8_0_ip_funcs,