Loading...
1/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 */
23
24#include <drm/drm_fourcc.h>
25#include <drm/drm_vblank.h>
26
27#include "amdgpu.h"
28#include "amdgpu_pm.h"
29#include "amdgpu_i2c.h"
30#include "vid.h"
31#include "atom.h"
32#include "amdgpu_atombios.h"
33#include "atombios_crtc.h"
34#include "atombios_encoders.h"
35#include "amdgpu_pll.h"
36#include "amdgpu_connectors.h"
37#include "amdgpu_display.h"
38#include "dce_v11_0.h"
39
40#include "dce/dce_11_0_d.h"
41#include "dce/dce_11_0_sh_mask.h"
42#include "dce/dce_11_0_enum.h"
43#include "oss/oss_3_0_d.h"
44#include "oss/oss_3_0_sh_mask.h"
45#include "gmc/gmc_8_1_d.h"
46#include "gmc/gmc_8_1_sh_mask.h"
47
48#include "ivsrcid/ivsrcid_vislands30.h"
49
50static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev);
51static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev);
52
53static const u32 crtc_offsets[] =
54{
55 CRTC0_REGISTER_OFFSET,
56 CRTC1_REGISTER_OFFSET,
57 CRTC2_REGISTER_OFFSET,
58 CRTC3_REGISTER_OFFSET,
59 CRTC4_REGISTER_OFFSET,
60 CRTC5_REGISTER_OFFSET,
61 CRTC6_REGISTER_OFFSET
62};
63
64static const u32 hpd_offsets[] =
65{
66 HPD0_REGISTER_OFFSET,
67 HPD1_REGISTER_OFFSET,
68 HPD2_REGISTER_OFFSET,
69 HPD3_REGISTER_OFFSET,
70 HPD4_REGISTER_OFFSET,
71 HPD5_REGISTER_OFFSET
72};
73
74static const uint32_t dig_offsets[] = {
75 DIG0_REGISTER_OFFSET,
76 DIG1_REGISTER_OFFSET,
77 DIG2_REGISTER_OFFSET,
78 DIG3_REGISTER_OFFSET,
79 DIG4_REGISTER_OFFSET,
80 DIG5_REGISTER_OFFSET,
81 DIG6_REGISTER_OFFSET,
82 DIG7_REGISTER_OFFSET,
83 DIG8_REGISTER_OFFSET
84};
85
86static const struct {
87 uint32_t reg;
88 uint32_t vblank;
89 uint32_t vline;
90 uint32_t hpd;
91
92} interrupt_status_offsets[] = { {
93 .reg = mmDISP_INTERRUPT_STATUS,
94 .vblank = DISP_INTERRUPT_STATUS__LB_D1_VBLANK_INTERRUPT_MASK,
95 .vline = DISP_INTERRUPT_STATUS__LB_D1_VLINE_INTERRUPT_MASK,
96 .hpd = DISP_INTERRUPT_STATUS__DC_HPD1_INTERRUPT_MASK
97}, {
98 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE,
99 .vblank = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VBLANK_INTERRUPT_MASK,
100 .vline = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VLINE_INTERRUPT_MASK,
101 .hpd = DISP_INTERRUPT_STATUS_CONTINUE__DC_HPD2_INTERRUPT_MASK
102}, {
103 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE2,
104 .vblank = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VBLANK_INTERRUPT_MASK,
105 .vline = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VLINE_INTERRUPT_MASK,
106 .hpd = DISP_INTERRUPT_STATUS_CONTINUE2__DC_HPD3_INTERRUPT_MASK
107}, {
108 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE3,
109 .vblank = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VBLANK_INTERRUPT_MASK,
110 .vline = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VLINE_INTERRUPT_MASK,
111 .hpd = DISP_INTERRUPT_STATUS_CONTINUE3__DC_HPD4_INTERRUPT_MASK
112}, {
113 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE4,
114 .vblank = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VBLANK_INTERRUPT_MASK,
115 .vline = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VLINE_INTERRUPT_MASK,
116 .hpd = DISP_INTERRUPT_STATUS_CONTINUE4__DC_HPD5_INTERRUPT_MASK
117}, {
118 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE5,
119 .vblank = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VBLANK_INTERRUPT_MASK,
120 .vline = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VLINE_INTERRUPT_MASK,
121 .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
122} };
123
124static const u32 cz_golden_settings_a11[] =
125{
126 mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
127 mmFBC_MISC, 0x1f311fff, 0x14300000,
128};
129
130static const u32 cz_mgcg_cgcg_init[] =
131{
132 mmXDMA_CLOCK_GATING_CNTL, 0xffffffff, 0x00000100,
133 mmXDMA_MEM_POWER_CNTL, 0x00000101, 0x00000000,
134};
135
136static const u32 stoney_golden_settings_a11[] =
137{
138 mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
139 mmFBC_MISC, 0x1f311fff, 0x14302000,
140};
141
142static const u32 polaris11_golden_settings_a11[] =
143{
144 mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
145 mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
146 mmFBC_DEBUG1, 0xffffffff, 0x00000008,
147 mmFBC_MISC, 0x9f313fff, 0x14302008,
148 mmHDMI_CONTROL, 0x313f031f, 0x00000011,
149};
150
151static const u32 polaris10_golden_settings_a11[] =
152{
153 mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
154 mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
155 mmFBC_MISC, 0x9f313fff, 0x14302008,
156 mmHDMI_CONTROL, 0x313f031f, 0x00000011,
157};
158
159static void dce_v11_0_init_golden_registers(struct amdgpu_device *adev)
160{
161 switch (adev->asic_type) {
162 case CHIP_CARRIZO:
163 amdgpu_device_program_register_sequence(adev,
164 cz_mgcg_cgcg_init,
165 ARRAY_SIZE(cz_mgcg_cgcg_init));
166 amdgpu_device_program_register_sequence(adev,
167 cz_golden_settings_a11,
168 ARRAY_SIZE(cz_golden_settings_a11));
169 break;
170 case CHIP_STONEY:
171 amdgpu_device_program_register_sequence(adev,
172 stoney_golden_settings_a11,
173 ARRAY_SIZE(stoney_golden_settings_a11));
174 break;
175 case CHIP_POLARIS11:
176 case CHIP_POLARIS12:
177 amdgpu_device_program_register_sequence(adev,
178 polaris11_golden_settings_a11,
179 ARRAY_SIZE(polaris11_golden_settings_a11));
180 break;
181 case CHIP_POLARIS10:
182 case CHIP_VEGAM:
183 amdgpu_device_program_register_sequence(adev,
184 polaris10_golden_settings_a11,
185 ARRAY_SIZE(polaris10_golden_settings_a11));
186 break;
187 default:
188 break;
189 }
190}
191
192static u32 dce_v11_0_audio_endpt_rreg(struct amdgpu_device *adev,
193 u32 block_offset, u32 reg)
194{
195 unsigned long flags;
196 u32 r;
197
198 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
199 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
200 r = RREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset);
201 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
202
203 return r;
204}
205
206static void dce_v11_0_audio_endpt_wreg(struct amdgpu_device *adev,
207 u32 block_offset, u32 reg, u32 v)
208{
209 unsigned long flags;
210
211 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
212 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
213 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset, v);
214 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
215}
216
217static u32 dce_v11_0_vblank_get_counter(struct amdgpu_device *adev, int crtc)
218{
219 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
220 return 0;
221 else
222 return RREG32(mmCRTC_STATUS_FRAME_COUNT + crtc_offsets[crtc]);
223}
224
225static void dce_v11_0_pageflip_interrupt_init(struct amdgpu_device *adev)
226{
227 unsigned i;
228
229 /* Enable pflip interrupts */
230 for (i = 0; i < adev->mode_info.num_crtc; i++)
231 amdgpu_irq_get(adev, &adev->pageflip_irq, i);
232}
233
234static void dce_v11_0_pageflip_interrupt_fini(struct amdgpu_device *adev)
235{
236 unsigned i;
237
238 /* Disable pflip interrupts */
239 for (i = 0; i < adev->mode_info.num_crtc; i++)
240 amdgpu_irq_put(adev, &adev->pageflip_irq, i);
241}
242
243/**
244 * dce_v11_0_page_flip - pageflip callback.
245 *
246 * @adev: amdgpu_device pointer
247 * @crtc_id: crtc to cleanup pageflip on
248 * @crtc_base: new address of the crtc (GPU MC address)
249 *
250 * Triggers the actual pageflip by updating the primary
251 * surface base address.
252 */
253static void dce_v11_0_page_flip(struct amdgpu_device *adev,
254 int crtc_id, u64 crtc_base, bool async)
255{
256 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
257 struct drm_framebuffer *fb = amdgpu_crtc->base.primary->fb;
258 u32 tmp;
259
260 /* flip immediate for async, default is vsync */
261 tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
262 tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
263 GRPH_SURFACE_UPDATE_IMMEDIATE_EN, async ? 1 : 0);
264 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
265 /* update pitch */
266 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset,
267 fb->pitches[0] / fb->format->cpp[0]);
268 /* update the scanout addresses */
269 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
270 upper_32_bits(crtc_base));
271 /* writing to the low address triggers the update */
272 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
273 lower_32_bits(crtc_base));
274 /* post the write */
275 RREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset);
276}
277
278static int dce_v11_0_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
279 u32 *vbl, u32 *position)
280{
281 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
282 return -EINVAL;
283
284 *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]);
285 *position = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
286
287 return 0;
288}
289
290/**
291 * dce_v11_0_hpd_sense - hpd sense callback.
292 *
293 * @adev: amdgpu_device pointer
294 * @hpd: hpd (hotplug detect) pin
295 *
296 * Checks if a digital monitor is connected (evergreen+).
297 * Returns true if connected, false if not connected.
298 */
299static bool dce_v11_0_hpd_sense(struct amdgpu_device *adev,
300 enum amdgpu_hpd_id hpd)
301{
302 bool connected = false;
303
304 if (hpd >= adev->mode_info.num_hpd)
305 return connected;
306
307 if (RREG32(mmDC_HPD_INT_STATUS + hpd_offsets[hpd]) &
308 DC_HPD_INT_STATUS__DC_HPD_SENSE_MASK)
309 connected = true;
310
311 return connected;
312}
313
314/**
315 * dce_v11_0_hpd_set_polarity - hpd set polarity callback.
316 *
317 * @adev: amdgpu_device pointer
318 * @hpd: hpd (hotplug detect) pin
319 *
320 * Set the polarity of the hpd pin (evergreen+).
321 */
322static void dce_v11_0_hpd_set_polarity(struct amdgpu_device *adev,
323 enum amdgpu_hpd_id hpd)
324{
325 u32 tmp;
326 bool connected = dce_v11_0_hpd_sense(adev, hpd);
327
328 if (hpd >= adev->mode_info.num_hpd)
329 return;
330
331 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
332 if (connected)
333 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 0);
334 else
335 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 1);
336 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
337}
338
339/**
340 * dce_v11_0_hpd_init - hpd setup callback.
341 *
342 * @adev: amdgpu_device pointer
343 *
344 * Setup the hpd pins used by the card (evergreen+).
345 * Enable the pin, set the polarity, and enable the hpd interrupts.
346 */
347static void dce_v11_0_hpd_init(struct amdgpu_device *adev)
348{
349 struct drm_device *dev = adev->ddev;
350 struct drm_connector *connector;
351 struct drm_connector_list_iter iter;
352 u32 tmp;
353
354 drm_connector_list_iter_begin(dev, &iter);
355 drm_for_each_connector_iter(connector, &iter) {
356 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
357
358 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
359 continue;
360
361 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP ||
362 connector->connector_type == DRM_MODE_CONNECTOR_LVDS) {
363 /* don't try to enable hpd on eDP or LVDS avoid breaking the
364 * aux dp channel on imac and help (but not completely fix)
365 * https://bugzilla.redhat.com/show_bug.cgi?id=726143
366 * also avoid interrupt storms during dpms.
367 */
368 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
369 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
370 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
371 continue;
372 }
373
374 tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
375 tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 1);
376 WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
377
378 tmp = RREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd]);
379 tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
380 DC_HPD_CONNECT_INT_DELAY,
381 AMDGPU_HPD_CONNECT_INT_DELAY_IN_MS);
382 tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
383 DC_HPD_DISCONNECT_INT_DELAY,
384 AMDGPU_HPD_DISCONNECT_INT_DELAY_IN_MS);
385 WREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
386
387 dce_v11_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd);
388 amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
389 }
390 drm_connector_list_iter_end(&iter);
391}
392
393/**
394 * dce_v11_0_hpd_fini - hpd tear down callback.
395 *
396 * @adev: amdgpu_device pointer
397 *
398 * Tear down the hpd pins used by the card (evergreen+).
399 * Disable the hpd interrupts.
400 */
401static void dce_v11_0_hpd_fini(struct amdgpu_device *adev)
402{
403 struct drm_device *dev = adev->ddev;
404 struct drm_connector *connector;
405 struct drm_connector_list_iter iter;
406 u32 tmp;
407
408 drm_connector_list_iter_begin(dev, &iter);
409 drm_for_each_connector_iter(connector, &iter) {
410 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
411
412 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
413 continue;
414
415 tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
416 tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 0);
417 WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
418
419 amdgpu_irq_put(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
420 }
421 drm_connector_list_iter_end(&iter);
422}
423
424static u32 dce_v11_0_hpd_get_gpio_reg(struct amdgpu_device *adev)
425{
426 return mmDC_GPIO_HPD_A;
427}
428
429static bool dce_v11_0_is_display_hung(struct amdgpu_device *adev)
430{
431 u32 crtc_hung = 0;
432 u32 crtc_status[6];
433 u32 i, j, tmp;
434
435 for (i = 0; i < adev->mode_info.num_crtc; i++) {
436 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
437 if (REG_GET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN)) {
438 crtc_status[i] = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
439 crtc_hung |= (1 << i);
440 }
441 }
442
443 for (j = 0; j < 10; j++) {
444 for (i = 0; i < adev->mode_info.num_crtc; i++) {
445 if (crtc_hung & (1 << i)) {
446 tmp = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
447 if (tmp != crtc_status[i])
448 crtc_hung &= ~(1 << i);
449 }
450 }
451 if (crtc_hung == 0)
452 return false;
453 udelay(100);
454 }
455
456 return true;
457}
458
459static void dce_v11_0_set_vga_render_state(struct amdgpu_device *adev,
460 bool render)
461{
462 u32 tmp;
463
464 /* Lockout access through VGA aperture*/
465 tmp = RREG32(mmVGA_HDP_CONTROL);
466 if (render)
467 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 0);
468 else
469 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
470 WREG32(mmVGA_HDP_CONTROL, tmp);
471
472 /* disable VGA render */
473 tmp = RREG32(mmVGA_RENDER_CONTROL);
474 if (render)
475 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 1);
476 else
477 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
478 WREG32(mmVGA_RENDER_CONTROL, tmp);
479}
480
481static int dce_v11_0_get_num_crtc (struct amdgpu_device *adev)
482{
483 int num_crtc = 0;
484
485 switch (adev->asic_type) {
486 case CHIP_CARRIZO:
487 num_crtc = 3;
488 break;
489 case CHIP_STONEY:
490 num_crtc = 2;
491 break;
492 case CHIP_POLARIS10:
493 case CHIP_VEGAM:
494 num_crtc = 6;
495 break;
496 case CHIP_POLARIS11:
497 case CHIP_POLARIS12:
498 num_crtc = 5;
499 break;
500 default:
501 num_crtc = 0;
502 }
503 return num_crtc;
504}
505
506void dce_v11_0_disable_dce(struct amdgpu_device *adev)
507{
508 /*Disable VGA render and enabled crtc, if has DCE engine*/
509 if (amdgpu_atombios_has_dce_engine_info(adev)) {
510 u32 tmp;
511 int crtc_enabled, i;
512
513 dce_v11_0_set_vga_render_state(adev, false);
514
515 /*Disable crtc*/
516 for (i = 0; i < dce_v11_0_get_num_crtc(adev); i++) {
517 crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
518 CRTC_CONTROL, CRTC_MASTER_EN);
519 if (crtc_enabled) {
520 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
521 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
522 tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
523 WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
524 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
525 }
526 }
527 }
528}
529
530static void dce_v11_0_program_fmt(struct drm_encoder *encoder)
531{
532 struct drm_device *dev = encoder->dev;
533 struct amdgpu_device *adev = dev->dev_private;
534 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
535 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
536 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
537 int bpc = 0;
538 u32 tmp = 0;
539 enum amdgpu_connector_dither dither = AMDGPU_FMT_DITHER_DISABLE;
540
541 if (connector) {
542 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
543 bpc = amdgpu_connector_get_monitor_bpc(connector);
544 dither = amdgpu_connector->dither;
545 }
546
547 /* LVDS/eDP FMT is set up by atom */
548 if (amdgpu_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
549 return;
550
551 /* not needed for analog */
552 if ((amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1) ||
553 (amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2))
554 return;
555
556 if (bpc == 0)
557 return;
558
559 switch (bpc) {
560 case 6:
561 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
562 /* XXX sort out optimal dither settings */
563 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
564 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
565 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
566 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 0);
567 } else {
568 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
569 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 0);
570 }
571 break;
572 case 8:
573 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
574 /* XXX sort out optimal dither settings */
575 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
576 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
577 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
578 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
579 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 1);
580 } else {
581 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
582 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 1);
583 }
584 break;
585 case 10:
586 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
587 /* XXX sort out optimal dither settings */
588 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
589 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
590 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
591 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
592 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 2);
593 } else {
594 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
595 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 2);
596 }
597 break;
598 default:
599 /* not needed */
600 break;
601 }
602
603 WREG32(mmFMT_BIT_DEPTH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
604}
605
606
607/* display watermark setup */
608/**
609 * dce_v11_0_line_buffer_adjust - Set up the line buffer
610 *
611 * @adev: amdgpu_device pointer
612 * @amdgpu_crtc: the selected display controller
613 * @mode: the current display mode on the selected display
614 * controller
615 *
616 * Setup up the line buffer allocation for
617 * the selected display controller (CIK).
618 * Returns the line buffer size in pixels.
619 */
620static u32 dce_v11_0_line_buffer_adjust(struct amdgpu_device *adev,
621 struct amdgpu_crtc *amdgpu_crtc,
622 struct drm_display_mode *mode)
623{
624 u32 tmp, buffer_alloc, i, mem_cfg;
625 u32 pipe_offset = amdgpu_crtc->crtc_id;
626 /*
627 * Line Buffer Setup
628 * There are 6 line buffers, one for each display controllers.
629 * There are 3 partitions per LB. Select the number of partitions
630 * to enable based on the display width. For display widths larger
631 * than 4096, you need use to use 2 display controllers and combine
632 * them using the stereo blender.
633 */
634 if (amdgpu_crtc->base.enabled && mode) {
635 if (mode->crtc_hdisplay < 1920) {
636 mem_cfg = 1;
637 buffer_alloc = 2;
638 } else if (mode->crtc_hdisplay < 2560) {
639 mem_cfg = 2;
640 buffer_alloc = 2;
641 } else if (mode->crtc_hdisplay < 4096) {
642 mem_cfg = 0;
643 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
644 } else {
645 DRM_DEBUG_KMS("Mode too big for LB!\n");
646 mem_cfg = 0;
647 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
648 }
649 } else {
650 mem_cfg = 1;
651 buffer_alloc = 0;
652 }
653
654 tmp = RREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset);
655 tmp = REG_SET_FIELD(tmp, LB_MEMORY_CTRL, LB_MEMORY_CONFIG, mem_cfg);
656 WREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset, tmp);
657
658 tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
659 tmp = REG_SET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATED, buffer_alloc);
660 WREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset, tmp);
661
662 for (i = 0; i < adev->usec_timeout; i++) {
663 tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
664 if (REG_GET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATION_COMPLETED))
665 break;
666 udelay(1);
667 }
668
669 if (amdgpu_crtc->base.enabled && mode) {
670 switch (mem_cfg) {
671 case 0:
672 default:
673 return 4096 * 2;
674 case 1:
675 return 1920 * 2;
676 case 2:
677 return 2560 * 2;
678 }
679 }
680
681 /* controller not enabled, so no lb used */
682 return 0;
683}
684
685/**
686 * cik_get_number_of_dram_channels - get the number of dram channels
687 *
688 * @adev: amdgpu_device pointer
689 *
690 * Look up the number of video ram channels (CIK).
691 * Used for display watermark bandwidth calculations
692 * Returns the number of dram channels
693 */
694static u32 cik_get_number_of_dram_channels(struct amdgpu_device *adev)
695{
696 u32 tmp = RREG32(mmMC_SHARED_CHMAP);
697
698 switch (REG_GET_FIELD(tmp, MC_SHARED_CHMAP, NOOFCHAN)) {
699 case 0:
700 default:
701 return 1;
702 case 1:
703 return 2;
704 case 2:
705 return 4;
706 case 3:
707 return 8;
708 case 4:
709 return 3;
710 case 5:
711 return 6;
712 case 6:
713 return 10;
714 case 7:
715 return 12;
716 case 8:
717 return 16;
718 }
719}
720
721struct dce10_wm_params {
722 u32 dram_channels; /* number of dram channels */
723 u32 yclk; /* bandwidth per dram data pin in kHz */
724 u32 sclk; /* engine clock in kHz */
725 u32 disp_clk; /* display clock in kHz */
726 u32 src_width; /* viewport width */
727 u32 active_time; /* active display time in ns */
728 u32 blank_time; /* blank time in ns */
729 bool interlaced; /* mode is interlaced */
730 fixed20_12 vsc; /* vertical scale ratio */
731 u32 num_heads; /* number of active crtcs */
732 u32 bytes_per_pixel; /* bytes per pixel display + overlay */
733 u32 lb_size; /* line buffer allocated to pipe */
734 u32 vtaps; /* vertical scaler taps */
735};
736
737/**
738 * dce_v11_0_dram_bandwidth - get the dram bandwidth
739 *
740 * @wm: watermark calculation data
741 *
742 * Calculate the raw dram bandwidth (CIK).
743 * Used for display watermark bandwidth calculations
744 * Returns the dram bandwidth in MBytes/s
745 */
746static u32 dce_v11_0_dram_bandwidth(struct dce10_wm_params *wm)
747{
748 /* Calculate raw DRAM Bandwidth */
749 fixed20_12 dram_efficiency; /* 0.7 */
750 fixed20_12 yclk, dram_channels, bandwidth;
751 fixed20_12 a;
752
753 a.full = dfixed_const(1000);
754 yclk.full = dfixed_const(wm->yclk);
755 yclk.full = dfixed_div(yclk, a);
756 dram_channels.full = dfixed_const(wm->dram_channels * 4);
757 a.full = dfixed_const(10);
758 dram_efficiency.full = dfixed_const(7);
759 dram_efficiency.full = dfixed_div(dram_efficiency, a);
760 bandwidth.full = dfixed_mul(dram_channels, yclk);
761 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
762
763 return dfixed_trunc(bandwidth);
764}
765
766/**
767 * dce_v11_0_dram_bandwidth_for_display - get the dram bandwidth for display
768 *
769 * @wm: watermark calculation data
770 *
771 * Calculate the dram bandwidth used for display (CIK).
772 * Used for display watermark bandwidth calculations
773 * Returns the dram bandwidth for display in MBytes/s
774 */
775static u32 dce_v11_0_dram_bandwidth_for_display(struct dce10_wm_params *wm)
776{
777 /* Calculate DRAM Bandwidth and the part allocated to display. */
778 fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */
779 fixed20_12 yclk, dram_channels, bandwidth;
780 fixed20_12 a;
781
782 a.full = dfixed_const(1000);
783 yclk.full = dfixed_const(wm->yclk);
784 yclk.full = dfixed_div(yclk, a);
785 dram_channels.full = dfixed_const(wm->dram_channels * 4);
786 a.full = dfixed_const(10);
787 disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */
788 disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a);
789 bandwidth.full = dfixed_mul(dram_channels, yclk);
790 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation);
791
792 return dfixed_trunc(bandwidth);
793}
794
795/**
796 * dce_v11_0_data_return_bandwidth - get the data return bandwidth
797 *
798 * @wm: watermark calculation data
799 *
800 * Calculate the data return bandwidth used for display (CIK).
801 * Used for display watermark bandwidth calculations
802 * Returns the data return bandwidth in MBytes/s
803 */
804static u32 dce_v11_0_data_return_bandwidth(struct dce10_wm_params *wm)
805{
806 /* Calculate the display Data return Bandwidth */
807 fixed20_12 return_efficiency; /* 0.8 */
808 fixed20_12 sclk, bandwidth;
809 fixed20_12 a;
810
811 a.full = dfixed_const(1000);
812 sclk.full = dfixed_const(wm->sclk);
813 sclk.full = dfixed_div(sclk, a);
814 a.full = dfixed_const(10);
815 return_efficiency.full = dfixed_const(8);
816 return_efficiency.full = dfixed_div(return_efficiency, a);
817 a.full = dfixed_const(32);
818 bandwidth.full = dfixed_mul(a, sclk);
819 bandwidth.full = dfixed_mul(bandwidth, return_efficiency);
820
821 return dfixed_trunc(bandwidth);
822}
823
824/**
825 * dce_v11_0_dmif_request_bandwidth - get the dmif bandwidth
826 *
827 * @wm: watermark calculation data
828 *
829 * Calculate the dmif bandwidth used for display (CIK).
830 * Used for display watermark bandwidth calculations
831 * Returns the dmif bandwidth in MBytes/s
832 */
833static u32 dce_v11_0_dmif_request_bandwidth(struct dce10_wm_params *wm)
834{
835 /* Calculate the DMIF Request Bandwidth */
836 fixed20_12 disp_clk_request_efficiency; /* 0.8 */
837 fixed20_12 disp_clk, bandwidth;
838 fixed20_12 a, b;
839
840 a.full = dfixed_const(1000);
841 disp_clk.full = dfixed_const(wm->disp_clk);
842 disp_clk.full = dfixed_div(disp_clk, a);
843 a.full = dfixed_const(32);
844 b.full = dfixed_mul(a, disp_clk);
845
846 a.full = dfixed_const(10);
847 disp_clk_request_efficiency.full = dfixed_const(8);
848 disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a);
849
850 bandwidth.full = dfixed_mul(b, disp_clk_request_efficiency);
851
852 return dfixed_trunc(bandwidth);
853}
854
855/**
856 * dce_v11_0_available_bandwidth - get the min available bandwidth
857 *
858 * @wm: watermark calculation data
859 *
860 * Calculate the min available bandwidth used for display (CIK).
861 * Used for display watermark bandwidth calculations
862 * Returns the min available bandwidth in MBytes/s
863 */
864static u32 dce_v11_0_available_bandwidth(struct dce10_wm_params *wm)
865{
866 /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */
867 u32 dram_bandwidth = dce_v11_0_dram_bandwidth(wm);
868 u32 data_return_bandwidth = dce_v11_0_data_return_bandwidth(wm);
869 u32 dmif_req_bandwidth = dce_v11_0_dmif_request_bandwidth(wm);
870
871 return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth));
872}
873
874/**
875 * dce_v11_0_average_bandwidth - get the average available bandwidth
876 *
877 * @wm: watermark calculation data
878 *
879 * Calculate the average available bandwidth used for display (CIK).
880 * Used for display watermark bandwidth calculations
881 * Returns the average available bandwidth in MBytes/s
882 */
883static u32 dce_v11_0_average_bandwidth(struct dce10_wm_params *wm)
884{
885 /* Calculate the display mode Average Bandwidth
886 * DisplayMode should contain the source and destination dimensions,
887 * timing, etc.
888 */
889 fixed20_12 bpp;
890 fixed20_12 line_time;
891 fixed20_12 src_width;
892 fixed20_12 bandwidth;
893 fixed20_12 a;
894
895 a.full = dfixed_const(1000);
896 line_time.full = dfixed_const(wm->active_time + wm->blank_time);
897 line_time.full = dfixed_div(line_time, a);
898 bpp.full = dfixed_const(wm->bytes_per_pixel);
899 src_width.full = dfixed_const(wm->src_width);
900 bandwidth.full = dfixed_mul(src_width, bpp);
901 bandwidth.full = dfixed_mul(bandwidth, wm->vsc);
902 bandwidth.full = dfixed_div(bandwidth, line_time);
903
904 return dfixed_trunc(bandwidth);
905}
906
907/**
908 * dce_v11_0_latency_watermark - get the latency watermark
909 *
910 * @wm: watermark calculation data
911 *
912 * Calculate the latency watermark (CIK).
913 * Used for display watermark bandwidth calculations
914 * Returns the latency watermark in ns
915 */
916static u32 dce_v11_0_latency_watermark(struct dce10_wm_params *wm)
917{
918 /* First calculate the latency in ns */
919 u32 mc_latency = 2000; /* 2000 ns. */
920 u32 available_bandwidth = dce_v11_0_available_bandwidth(wm);
921 u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth;
922 u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth;
923 u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */
924 u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) +
925 (wm->num_heads * cursor_line_pair_return_time);
926 u32 latency = mc_latency + other_heads_data_return_time + dc_latency;
927 u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time;
928 u32 tmp, dmif_size = 12288;
929 fixed20_12 a, b, c;
930
931 if (wm->num_heads == 0)
932 return 0;
933
934 a.full = dfixed_const(2);
935 b.full = dfixed_const(1);
936 if ((wm->vsc.full > a.full) ||
937 ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) ||
938 (wm->vtaps >= 5) ||
939 ((wm->vsc.full >= a.full) && wm->interlaced))
940 max_src_lines_per_dst_line = 4;
941 else
942 max_src_lines_per_dst_line = 2;
943
944 a.full = dfixed_const(available_bandwidth);
945 b.full = dfixed_const(wm->num_heads);
946 a.full = dfixed_div(a, b);
947 tmp = div_u64((u64) dmif_size * (u64) wm->disp_clk, mc_latency + 512);
948 tmp = min(dfixed_trunc(a), tmp);
949
950 lb_fill_bw = min(tmp, wm->disp_clk * wm->bytes_per_pixel / 1000);
951
952 a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel);
953 b.full = dfixed_const(1000);
954 c.full = dfixed_const(lb_fill_bw);
955 b.full = dfixed_div(c, b);
956 a.full = dfixed_div(a, b);
957 line_fill_time = dfixed_trunc(a);
958
959 if (line_fill_time < wm->active_time)
960 return latency;
961 else
962 return latency + (line_fill_time - wm->active_time);
963
964}
965
966/**
967 * dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display - check
968 * average and available dram bandwidth
969 *
970 * @wm: watermark calculation data
971 *
972 * Check if the display average bandwidth fits in the display
973 * dram bandwidth (CIK).
974 * Used for display watermark bandwidth calculations
975 * Returns true if the display fits, false if not.
976 */
977static bool dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(struct dce10_wm_params *wm)
978{
979 if (dce_v11_0_average_bandwidth(wm) <=
980 (dce_v11_0_dram_bandwidth_for_display(wm) / wm->num_heads))
981 return true;
982 else
983 return false;
984}
985
986/**
987 * dce_v11_0_average_bandwidth_vs_available_bandwidth - check
988 * average and available bandwidth
989 *
990 * @wm: watermark calculation data
991 *
992 * Check if the display average bandwidth fits in the display
993 * available bandwidth (CIK).
994 * Used for display watermark bandwidth calculations
995 * Returns true if the display fits, false if not.
996 */
997static bool dce_v11_0_average_bandwidth_vs_available_bandwidth(struct dce10_wm_params *wm)
998{
999 if (dce_v11_0_average_bandwidth(wm) <=
1000 (dce_v11_0_available_bandwidth(wm) / wm->num_heads))
1001 return true;
1002 else
1003 return false;
1004}
1005
1006/**
1007 * dce_v11_0_check_latency_hiding - check latency hiding
1008 *
1009 * @wm: watermark calculation data
1010 *
1011 * Check latency hiding (CIK).
1012 * Used for display watermark bandwidth calculations
1013 * Returns true if the display fits, false if not.
1014 */
1015static bool dce_v11_0_check_latency_hiding(struct dce10_wm_params *wm)
1016{
1017 u32 lb_partitions = wm->lb_size / wm->src_width;
1018 u32 line_time = wm->active_time + wm->blank_time;
1019 u32 latency_tolerant_lines;
1020 u32 latency_hiding;
1021 fixed20_12 a;
1022
1023 a.full = dfixed_const(1);
1024 if (wm->vsc.full > a.full)
1025 latency_tolerant_lines = 1;
1026 else {
1027 if (lb_partitions <= (wm->vtaps + 1))
1028 latency_tolerant_lines = 1;
1029 else
1030 latency_tolerant_lines = 2;
1031 }
1032
1033 latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time);
1034
1035 if (dce_v11_0_latency_watermark(wm) <= latency_hiding)
1036 return true;
1037 else
1038 return false;
1039}
1040
1041/**
1042 * dce_v11_0_program_watermarks - program display watermarks
1043 *
1044 * @adev: amdgpu_device pointer
1045 * @amdgpu_crtc: the selected display controller
1046 * @lb_size: line buffer size
1047 * @num_heads: number of display controllers in use
1048 *
1049 * Calculate and program the display watermarks for the
1050 * selected display controller (CIK).
1051 */
1052static void dce_v11_0_program_watermarks(struct amdgpu_device *adev,
1053 struct amdgpu_crtc *amdgpu_crtc,
1054 u32 lb_size, u32 num_heads)
1055{
1056 struct drm_display_mode *mode = &amdgpu_crtc->base.mode;
1057 struct dce10_wm_params wm_low, wm_high;
1058 u32 active_time;
1059 u32 line_time = 0;
1060 u32 latency_watermark_a = 0, latency_watermark_b = 0;
1061 u32 tmp, wm_mask, lb_vblank_lead_lines = 0;
1062
1063 if (amdgpu_crtc->base.enabled && num_heads && mode) {
1064 active_time = (u32) div_u64((u64)mode->crtc_hdisplay * 1000000,
1065 (u32)mode->clock);
1066 line_time = (u32) div_u64((u64)mode->crtc_htotal * 1000000,
1067 (u32)mode->clock);
1068 line_time = min(line_time, (u32)65535);
1069
1070 /* watermark for high clocks */
1071 if (adev->pm.dpm_enabled) {
1072 wm_high.yclk =
1073 amdgpu_dpm_get_mclk(adev, false) * 10;
1074 wm_high.sclk =
1075 amdgpu_dpm_get_sclk(adev, false) * 10;
1076 } else {
1077 wm_high.yclk = adev->pm.current_mclk * 10;
1078 wm_high.sclk = adev->pm.current_sclk * 10;
1079 }
1080
1081 wm_high.disp_clk = mode->clock;
1082 wm_high.src_width = mode->crtc_hdisplay;
1083 wm_high.active_time = active_time;
1084 wm_high.blank_time = line_time - wm_high.active_time;
1085 wm_high.interlaced = false;
1086 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1087 wm_high.interlaced = true;
1088 wm_high.vsc = amdgpu_crtc->vsc;
1089 wm_high.vtaps = 1;
1090 if (amdgpu_crtc->rmx_type != RMX_OFF)
1091 wm_high.vtaps = 2;
1092 wm_high.bytes_per_pixel = 4; /* XXX: get this from fb config */
1093 wm_high.lb_size = lb_size;
1094 wm_high.dram_channels = cik_get_number_of_dram_channels(adev);
1095 wm_high.num_heads = num_heads;
1096
1097 /* set for high clocks */
1098 latency_watermark_a = min(dce_v11_0_latency_watermark(&wm_high), (u32)65535);
1099
1100 /* possibly force display priority to high */
1101 /* should really do this at mode validation time... */
1102 if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_high) ||
1103 !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_high) ||
1104 !dce_v11_0_check_latency_hiding(&wm_high) ||
1105 (adev->mode_info.disp_priority == 2)) {
1106 DRM_DEBUG_KMS("force priority to high\n");
1107 }
1108
1109 /* watermark for low clocks */
1110 if (adev->pm.dpm_enabled) {
1111 wm_low.yclk =
1112 amdgpu_dpm_get_mclk(adev, true) * 10;
1113 wm_low.sclk =
1114 amdgpu_dpm_get_sclk(adev, true) * 10;
1115 } else {
1116 wm_low.yclk = adev->pm.current_mclk * 10;
1117 wm_low.sclk = adev->pm.current_sclk * 10;
1118 }
1119
1120 wm_low.disp_clk = mode->clock;
1121 wm_low.src_width = mode->crtc_hdisplay;
1122 wm_low.active_time = active_time;
1123 wm_low.blank_time = line_time - wm_low.active_time;
1124 wm_low.interlaced = false;
1125 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1126 wm_low.interlaced = true;
1127 wm_low.vsc = amdgpu_crtc->vsc;
1128 wm_low.vtaps = 1;
1129 if (amdgpu_crtc->rmx_type != RMX_OFF)
1130 wm_low.vtaps = 2;
1131 wm_low.bytes_per_pixel = 4; /* XXX: get this from fb config */
1132 wm_low.lb_size = lb_size;
1133 wm_low.dram_channels = cik_get_number_of_dram_channels(adev);
1134 wm_low.num_heads = num_heads;
1135
1136 /* set for low clocks */
1137 latency_watermark_b = min(dce_v11_0_latency_watermark(&wm_low), (u32)65535);
1138
1139 /* possibly force display priority to high */
1140 /* should really do this at mode validation time... */
1141 if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_low) ||
1142 !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_low) ||
1143 !dce_v11_0_check_latency_hiding(&wm_low) ||
1144 (adev->mode_info.disp_priority == 2)) {
1145 DRM_DEBUG_KMS("force priority to high\n");
1146 }
1147 lb_vblank_lead_lines = DIV_ROUND_UP(lb_size, mode->crtc_hdisplay);
1148 }
1149
1150 /* select wm A */
1151 wm_mask = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
1152 tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 1);
1153 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1154 tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1155 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_a);
1156 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1157 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1158 /* select wm B */
1159 tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 2);
1160 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1161 tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1162 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_b);
1163 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1164 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1165 /* restore original selection */
1166 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, wm_mask);
1167
1168 /* save values for DPM */
1169 amdgpu_crtc->line_time = line_time;
1170 amdgpu_crtc->wm_high = latency_watermark_a;
1171 amdgpu_crtc->wm_low = latency_watermark_b;
1172 /* Save number of lines the linebuffer leads before the scanout */
1173 amdgpu_crtc->lb_vblank_lead_lines = lb_vblank_lead_lines;
1174}
1175
1176/**
1177 * dce_v11_0_bandwidth_update - program display watermarks
1178 *
1179 * @adev: amdgpu_device pointer
1180 *
1181 * Calculate and program the display watermarks and line
1182 * buffer allocation (CIK).
1183 */
1184static void dce_v11_0_bandwidth_update(struct amdgpu_device *adev)
1185{
1186 struct drm_display_mode *mode = NULL;
1187 u32 num_heads = 0, lb_size;
1188 int i;
1189
1190 amdgpu_display_update_priority(adev);
1191
1192 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1193 if (adev->mode_info.crtcs[i]->base.enabled)
1194 num_heads++;
1195 }
1196 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1197 mode = &adev->mode_info.crtcs[i]->base.mode;
1198 lb_size = dce_v11_0_line_buffer_adjust(adev, adev->mode_info.crtcs[i], mode);
1199 dce_v11_0_program_watermarks(adev, adev->mode_info.crtcs[i],
1200 lb_size, num_heads);
1201 }
1202}
1203
1204static void dce_v11_0_audio_get_connected_pins(struct amdgpu_device *adev)
1205{
1206 int i;
1207 u32 offset, tmp;
1208
1209 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1210 offset = adev->mode_info.audio.pin[i].offset;
1211 tmp = RREG32_AUDIO_ENDPT(offset,
1212 ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT);
1213 if (((tmp &
1214 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY_MASK) >>
1215 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY__SHIFT) == 1)
1216 adev->mode_info.audio.pin[i].connected = false;
1217 else
1218 adev->mode_info.audio.pin[i].connected = true;
1219 }
1220}
1221
1222static struct amdgpu_audio_pin *dce_v11_0_audio_get_pin(struct amdgpu_device *adev)
1223{
1224 int i;
1225
1226 dce_v11_0_audio_get_connected_pins(adev);
1227
1228 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1229 if (adev->mode_info.audio.pin[i].connected)
1230 return &adev->mode_info.audio.pin[i];
1231 }
1232 DRM_ERROR("No connected audio pins found!\n");
1233 return NULL;
1234}
1235
1236static void dce_v11_0_afmt_audio_select_pin(struct drm_encoder *encoder)
1237{
1238 struct amdgpu_device *adev = encoder->dev->dev_private;
1239 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1240 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1241 u32 tmp;
1242
1243 if (!dig || !dig->afmt || !dig->afmt->pin)
1244 return;
1245
1246 tmp = RREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset);
1247 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_SRC_CONTROL, AFMT_AUDIO_SRC_SELECT, dig->afmt->pin->id);
1248 WREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset, tmp);
1249}
1250
1251static void dce_v11_0_audio_write_latency_fields(struct drm_encoder *encoder,
1252 struct drm_display_mode *mode)
1253{
1254 struct drm_device *dev = encoder->dev;
1255 struct amdgpu_device *adev = dev->dev_private;
1256 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1257 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1258 struct drm_connector *connector;
1259 struct drm_connector_list_iter iter;
1260 struct amdgpu_connector *amdgpu_connector = NULL;
1261 u32 tmp;
1262 int interlace = 0;
1263
1264 if (!dig || !dig->afmt || !dig->afmt->pin)
1265 return;
1266
1267 drm_connector_list_iter_begin(dev, &iter);
1268 drm_for_each_connector_iter(connector, &iter) {
1269 if (connector->encoder == encoder) {
1270 amdgpu_connector = to_amdgpu_connector(connector);
1271 break;
1272 }
1273 }
1274 drm_connector_list_iter_end(&iter);
1275
1276 if (!amdgpu_connector) {
1277 DRM_ERROR("Couldn't find encoder's connector\n");
1278 return;
1279 }
1280
1281 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1282 interlace = 1;
1283 if (connector->latency_present[interlace]) {
1284 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1285 VIDEO_LIPSYNC, connector->video_latency[interlace]);
1286 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1287 AUDIO_LIPSYNC, connector->audio_latency[interlace]);
1288 } else {
1289 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1290 VIDEO_LIPSYNC, 0);
1291 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1292 AUDIO_LIPSYNC, 0);
1293 }
1294 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1295 ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC, tmp);
1296}
1297
1298static void dce_v11_0_audio_write_speaker_allocation(struct drm_encoder *encoder)
1299{
1300 struct drm_device *dev = encoder->dev;
1301 struct amdgpu_device *adev = dev->dev_private;
1302 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1303 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1304 struct drm_connector *connector;
1305 struct drm_connector_list_iter iter;
1306 struct amdgpu_connector *amdgpu_connector = NULL;
1307 u32 tmp;
1308 u8 *sadb = NULL;
1309 int sad_count;
1310
1311 if (!dig || !dig->afmt || !dig->afmt->pin)
1312 return;
1313
1314 drm_connector_list_iter_begin(dev, &iter);
1315 drm_for_each_connector_iter(connector, &iter) {
1316 if (connector->encoder == encoder) {
1317 amdgpu_connector = to_amdgpu_connector(connector);
1318 break;
1319 }
1320 }
1321 drm_connector_list_iter_end(&iter);
1322
1323 if (!amdgpu_connector) {
1324 DRM_ERROR("Couldn't find encoder's connector\n");
1325 return;
1326 }
1327
1328 sad_count = drm_edid_to_speaker_allocation(amdgpu_connector_edid(connector), &sadb);
1329 if (sad_count < 0) {
1330 DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
1331 sad_count = 0;
1332 }
1333
1334 /* program the speaker allocation */
1335 tmp = RREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1336 ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER);
1337 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1338 DP_CONNECTION, 0);
1339 /* set HDMI mode */
1340 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1341 HDMI_CONNECTION, 1);
1342 if (sad_count)
1343 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1344 SPEAKER_ALLOCATION, sadb[0]);
1345 else
1346 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1347 SPEAKER_ALLOCATION, 5); /* stereo */
1348 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1349 ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER, tmp);
1350
1351 kfree(sadb);
1352}
1353
1354static void dce_v11_0_audio_write_sad_regs(struct drm_encoder *encoder)
1355{
1356 struct drm_device *dev = encoder->dev;
1357 struct amdgpu_device *adev = dev->dev_private;
1358 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1359 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1360 struct drm_connector *connector;
1361 struct drm_connector_list_iter iter;
1362 struct amdgpu_connector *amdgpu_connector = NULL;
1363 struct cea_sad *sads;
1364 int i, sad_count;
1365
1366 static const u16 eld_reg_to_type[][2] = {
1367 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
1368 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
1369 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
1370 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
1371 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
1372 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
1373 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
1374 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
1375 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
1376 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
1377 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
1378 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
1379 };
1380
1381 if (!dig || !dig->afmt || !dig->afmt->pin)
1382 return;
1383
1384 drm_connector_list_iter_begin(dev, &iter);
1385 drm_for_each_connector_iter(connector, &iter) {
1386 if (connector->encoder == encoder) {
1387 amdgpu_connector = to_amdgpu_connector(connector);
1388 break;
1389 }
1390 }
1391 drm_connector_list_iter_end(&iter);
1392
1393 if (!amdgpu_connector) {
1394 DRM_ERROR("Couldn't find encoder's connector\n");
1395 return;
1396 }
1397
1398 sad_count = drm_edid_to_sad(amdgpu_connector_edid(connector), &sads);
1399 if (sad_count < 0)
1400 DRM_ERROR("Couldn't read SADs: %d\n", sad_count);
1401 if (sad_count <= 0)
1402 return;
1403 BUG_ON(!sads);
1404
1405 for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
1406 u32 tmp = 0;
1407 u8 stereo_freqs = 0;
1408 int max_channels = -1;
1409 int j;
1410
1411 for (j = 0; j < sad_count; j++) {
1412 struct cea_sad *sad = &sads[j];
1413
1414 if (sad->format == eld_reg_to_type[i][1]) {
1415 if (sad->channels > max_channels) {
1416 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1417 MAX_CHANNELS, sad->channels);
1418 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1419 DESCRIPTOR_BYTE_2, sad->byte2);
1420 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1421 SUPPORTED_FREQUENCIES, sad->freq);
1422 max_channels = sad->channels;
1423 }
1424
1425 if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
1426 stereo_freqs |= sad->freq;
1427 else
1428 break;
1429 }
1430 }
1431
1432 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1433 SUPPORTED_FREQUENCIES_STEREO, stereo_freqs);
1434 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset, eld_reg_to_type[i][0], tmp);
1435 }
1436
1437 kfree(sads);
1438}
1439
1440static void dce_v11_0_audio_enable(struct amdgpu_device *adev,
1441 struct amdgpu_audio_pin *pin,
1442 bool enable)
1443{
1444 if (!pin)
1445 return;
1446
1447 WREG32_AUDIO_ENDPT(pin->offset, ixAZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL,
1448 enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
1449}
1450
1451static const u32 pin_offsets[] =
1452{
1453 AUD0_REGISTER_OFFSET,
1454 AUD1_REGISTER_OFFSET,
1455 AUD2_REGISTER_OFFSET,
1456 AUD3_REGISTER_OFFSET,
1457 AUD4_REGISTER_OFFSET,
1458 AUD5_REGISTER_OFFSET,
1459 AUD6_REGISTER_OFFSET,
1460 AUD7_REGISTER_OFFSET,
1461};
1462
1463static int dce_v11_0_audio_init(struct amdgpu_device *adev)
1464{
1465 int i;
1466
1467 if (!amdgpu_audio)
1468 return 0;
1469
1470 adev->mode_info.audio.enabled = true;
1471
1472 switch (adev->asic_type) {
1473 case CHIP_CARRIZO:
1474 case CHIP_STONEY:
1475 adev->mode_info.audio.num_pins = 7;
1476 break;
1477 case CHIP_POLARIS10:
1478 case CHIP_VEGAM:
1479 adev->mode_info.audio.num_pins = 8;
1480 break;
1481 case CHIP_POLARIS11:
1482 case CHIP_POLARIS12:
1483 adev->mode_info.audio.num_pins = 6;
1484 break;
1485 default:
1486 return -EINVAL;
1487 }
1488
1489 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1490 adev->mode_info.audio.pin[i].channels = -1;
1491 adev->mode_info.audio.pin[i].rate = -1;
1492 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1493 adev->mode_info.audio.pin[i].status_bits = 0;
1494 adev->mode_info.audio.pin[i].category_code = 0;
1495 adev->mode_info.audio.pin[i].connected = false;
1496 adev->mode_info.audio.pin[i].offset = pin_offsets[i];
1497 adev->mode_info.audio.pin[i].id = i;
1498 /* disable audio. it will be set up later */
1499 /* XXX remove once we switch to ip funcs */
1500 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1501 }
1502
1503 return 0;
1504}
1505
1506static void dce_v11_0_audio_fini(struct amdgpu_device *adev)
1507{
1508 int i;
1509
1510 if (!amdgpu_audio)
1511 return;
1512
1513 if (!adev->mode_info.audio.enabled)
1514 return;
1515
1516 for (i = 0; i < adev->mode_info.audio.num_pins; i++)
1517 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1518
1519 adev->mode_info.audio.enabled = false;
1520}
1521
1522/*
1523 * update the N and CTS parameters for a given pixel clock rate
1524 */
1525static void dce_v11_0_afmt_update_ACR(struct drm_encoder *encoder, uint32_t clock)
1526{
1527 struct drm_device *dev = encoder->dev;
1528 struct amdgpu_device *adev = dev->dev_private;
1529 struct amdgpu_afmt_acr acr = amdgpu_afmt_acr(clock);
1530 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1531 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1532 u32 tmp;
1533
1534 tmp = RREG32(mmHDMI_ACR_32_0 + dig->afmt->offset);
1535 tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_0, HDMI_ACR_CTS_32, acr.cts_32khz);
1536 WREG32(mmHDMI_ACR_32_0 + dig->afmt->offset, tmp);
1537 tmp = RREG32(mmHDMI_ACR_32_1 + dig->afmt->offset);
1538 tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_1, HDMI_ACR_N_32, acr.n_32khz);
1539 WREG32(mmHDMI_ACR_32_1 + dig->afmt->offset, tmp);
1540
1541 tmp = RREG32(mmHDMI_ACR_44_0 + dig->afmt->offset);
1542 tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_0, HDMI_ACR_CTS_44, acr.cts_44_1khz);
1543 WREG32(mmHDMI_ACR_44_0 + dig->afmt->offset, tmp);
1544 tmp = RREG32(mmHDMI_ACR_44_1 + dig->afmt->offset);
1545 tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_1, HDMI_ACR_N_44, acr.n_44_1khz);
1546 WREG32(mmHDMI_ACR_44_1 + dig->afmt->offset, tmp);
1547
1548 tmp = RREG32(mmHDMI_ACR_48_0 + dig->afmt->offset);
1549 tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_0, HDMI_ACR_CTS_48, acr.cts_48khz);
1550 WREG32(mmHDMI_ACR_48_0 + dig->afmt->offset, tmp);
1551 tmp = RREG32(mmHDMI_ACR_48_1 + dig->afmt->offset);
1552 tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_1, HDMI_ACR_N_48, acr.n_48khz);
1553 WREG32(mmHDMI_ACR_48_1 + dig->afmt->offset, tmp);
1554
1555}
1556
1557/*
1558 * build a HDMI Video Info Frame
1559 */
1560static void dce_v11_0_afmt_update_avi_infoframe(struct drm_encoder *encoder,
1561 void *buffer, size_t size)
1562{
1563 struct drm_device *dev = encoder->dev;
1564 struct amdgpu_device *adev = dev->dev_private;
1565 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1566 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1567 uint8_t *frame = buffer + 3;
1568 uint8_t *header = buffer;
1569
1570 WREG32(mmAFMT_AVI_INFO0 + dig->afmt->offset,
1571 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
1572 WREG32(mmAFMT_AVI_INFO1 + dig->afmt->offset,
1573 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
1574 WREG32(mmAFMT_AVI_INFO2 + dig->afmt->offset,
1575 frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
1576 WREG32(mmAFMT_AVI_INFO3 + dig->afmt->offset,
1577 frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
1578}
1579
1580static void dce_v11_0_audio_set_dto(struct drm_encoder *encoder, u32 clock)
1581{
1582 struct drm_device *dev = encoder->dev;
1583 struct amdgpu_device *adev = dev->dev_private;
1584 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1585 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1586 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1587 u32 dto_phase = 24 * 1000;
1588 u32 dto_modulo = clock;
1589 u32 tmp;
1590
1591 if (!dig || !dig->afmt)
1592 return;
1593
1594 /* XXX two dtos; generally use dto0 for hdmi */
1595 /* Express [24MHz / target pixel clock] as an exact rational
1596 * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE
1597 * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
1598 */
1599 tmp = RREG32(mmDCCG_AUDIO_DTO_SOURCE);
1600 tmp = REG_SET_FIELD(tmp, DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL,
1601 amdgpu_crtc->crtc_id);
1602 WREG32(mmDCCG_AUDIO_DTO_SOURCE, tmp);
1603 WREG32(mmDCCG_AUDIO_DTO0_PHASE, dto_phase);
1604 WREG32(mmDCCG_AUDIO_DTO0_MODULE, dto_modulo);
1605}
1606
1607/*
1608 * update the info frames with the data from the current display mode
1609 */
1610static void dce_v11_0_afmt_setmode(struct drm_encoder *encoder,
1611 struct drm_display_mode *mode)
1612{
1613 struct drm_device *dev = encoder->dev;
1614 struct amdgpu_device *adev = dev->dev_private;
1615 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1616 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1617 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
1618 u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
1619 struct hdmi_avi_infoframe frame;
1620 ssize_t err;
1621 u32 tmp;
1622 int bpc = 8;
1623
1624 if (!dig || !dig->afmt)
1625 return;
1626
1627 /* Silent, r600_hdmi_enable will raise WARN for us */
1628 if (!dig->afmt->enabled)
1629 return;
1630
1631 /* hdmi deep color mode general control packets setup, if bpc > 8 */
1632 if (encoder->crtc) {
1633 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1634 bpc = amdgpu_crtc->bpc;
1635 }
1636
1637 /* disable audio prior to setting up hw */
1638 dig->afmt->pin = dce_v11_0_audio_get_pin(adev);
1639 dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1640
1641 dce_v11_0_audio_set_dto(encoder, mode->clock);
1642
1643 tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1644 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1);
1645 WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp); /* send null packets when required */
1646
1647 WREG32(mmAFMT_AUDIO_CRC_CONTROL + dig->afmt->offset, 0x1000);
1648
1649 tmp = RREG32(mmHDMI_CONTROL + dig->afmt->offset);
1650 switch (bpc) {
1651 case 0:
1652 case 6:
1653 case 8:
1654 case 16:
1655 default:
1656 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 0);
1657 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 0);
1658 DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
1659 connector->name, bpc);
1660 break;
1661 case 10:
1662 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1663 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 1);
1664 DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
1665 connector->name);
1666 break;
1667 case 12:
1668 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1669 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 2);
1670 DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
1671 connector->name);
1672 break;
1673 }
1674 WREG32(mmHDMI_CONTROL + dig->afmt->offset, tmp);
1675
1676 tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1677 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1); /* send null packets when required */
1678 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_SEND, 1); /* send general control packets */
1679 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_CONT, 1); /* send general control packets every frame */
1680 WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp);
1681
1682 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1683 /* enable audio info frames (frames won't be set until audio is enabled) */
1684 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_SEND, 1);
1685 /* required for audio info values to be updated */
1686 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_CONT, 1);
1687 WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1688
1689 tmp = RREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset);
1690 /* required for audio info values to be updated */
1691 tmp = REG_SET_FIELD(tmp, AFMT_INFOFRAME_CONTROL0, AFMT_AUDIO_INFO_UPDATE, 1);
1692 WREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1693
1694 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1695 /* anything other than 0 */
1696 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AUDIO_INFO_LINE, 2);
1697 WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1698
1699 WREG32(mmHDMI_GC + dig->afmt->offset, 0); /* unset HDMI_GC_AVMUTE */
1700
1701 tmp = RREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1702 /* set the default audio delay */
1703 tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_DELAY_EN, 1);
1704 /* should be suffient for all audio modes and small enough for all hblanks */
1705 tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_PACKETS_PER_LINE, 3);
1706 WREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1707
1708 tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1709 /* allow 60958 channel status fields to be updated */
1710 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_60958_CS_UPDATE, 1);
1711 WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1712
1713 tmp = RREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset);
1714 if (bpc > 8)
1715 /* clear SW CTS value */
1716 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 0);
1717 else
1718 /* select SW CTS value */
1719 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 1);
1720 /* allow hw to sent ACR packets when required */
1721 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_AUTO_SEND, 1);
1722 WREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset, tmp);
1723
1724 dce_v11_0_afmt_update_ACR(encoder, mode->clock);
1725
1726 tmp = RREG32(mmAFMT_60958_0 + dig->afmt->offset);
1727 tmp = REG_SET_FIELD(tmp, AFMT_60958_0, AFMT_60958_CS_CHANNEL_NUMBER_L, 1);
1728 WREG32(mmAFMT_60958_0 + dig->afmt->offset, tmp);
1729
1730 tmp = RREG32(mmAFMT_60958_1 + dig->afmt->offset);
1731 tmp = REG_SET_FIELD(tmp, AFMT_60958_1, AFMT_60958_CS_CHANNEL_NUMBER_R, 2);
1732 WREG32(mmAFMT_60958_1 + dig->afmt->offset, tmp);
1733
1734 tmp = RREG32(mmAFMT_60958_2 + dig->afmt->offset);
1735 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_2, 3);
1736 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_3, 4);
1737 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_4, 5);
1738 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_5, 6);
1739 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_6, 7);
1740 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_7, 8);
1741 WREG32(mmAFMT_60958_2 + dig->afmt->offset, tmp);
1742
1743 dce_v11_0_audio_write_speaker_allocation(encoder);
1744
1745 WREG32(mmAFMT_AUDIO_PACKET_CONTROL2 + dig->afmt->offset,
1746 (0xff << AFMT_AUDIO_PACKET_CONTROL2__AFMT_AUDIO_CHANNEL_ENABLE__SHIFT));
1747
1748 dce_v11_0_afmt_audio_select_pin(encoder);
1749 dce_v11_0_audio_write_sad_regs(encoder);
1750 dce_v11_0_audio_write_latency_fields(encoder, mode);
1751
1752 err = drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
1753 if (err < 0) {
1754 DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
1755 return;
1756 }
1757
1758 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1759 if (err < 0) {
1760 DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
1761 return;
1762 }
1763
1764 dce_v11_0_afmt_update_avi_infoframe(encoder, buffer, sizeof(buffer));
1765
1766 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1767 /* enable AVI info frames */
1768 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_SEND, 1);
1769 /* required for audio info values to be updated */
1770 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_CONT, 1);
1771 WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1772
1773 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1774 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AVI_INFO_LINE, 2);
1775 WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1776
1777 tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1778 /* send audio packets */
1779 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_AUDIO_SAMPLE_SEND, 1);
1780 WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1781
1782 WREG32(mmAFMT_RAMP_CONTROL0 + dig->afmt->offset, 0x00FFFFFF);
1783 WREG32(mmAFMT_RAMP_CONTROL1 + dig->afmt->offset, 0x007FFFFF);
1784 WREG32(mmAFMT_RAMP_CONTROL2 + dig->afmt->offset, 0x00000001);
1785 WREG32(mmAFMT_RAMP_CONTROL3 + dig->afmt->offset, 0x00000001);
1786
1787 /* enable audio after to setting up hw */
1788 dce_v11_0_audio_enable(adev, dig->afmt->pin, true);
1789}
1790
1791static void dce_v11_0_afmt_enable(struct drm_encoder *encoder, bool enable)
1792{
1793 struct drm_device *dev = encoder->dev;
1794 struct amdgpu_device *adev = dev->dev_private;
1795 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1796 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1797
1798 if (!dig || !dig->afmt)
1799 return;
1800
1801 /* Silent, r600_hdmi_enable will raise WARN for us */
1802 if (enable && dig->afmt->enabled)
1803 return;
1804 if (!enable && !dig->afmt->enabled)
1805 return;
1806
1807 if (!enable && dig->afmt->pin) {
1808 dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1809 dig->afmt->pin = NULL;
1810 }
1811
1812 dig->afmt->enabled = enable;
1813
1814 DRM_DEBUG("%sabling AFMT interface @ 0x%04X for encoder 0x%x\n",
1815 enable ? "En" : "Dis", dig->afmt->offset, amdgpu_encoder->encoder_id);
1816}
1817
1818static int dce_v11_0_afmt_init(struct amdgpu_device *adev)
1819{
1820 int i;
1821
1822 for (i = 0; i < adev->mode_info.num_dig; i++)
1823 adev->mode_info.afmt[i] = NULL;
1824
1825 /* DCE11 has audio blocks tied to DIG encoders */
1826 for (i = 0; i < adev->mode_info.num_dig; i++) {
1827 adev->mode_info.afmt[i] = kzalloc(sizeof(struct amdgpu_afmt), GFP_KERNEL);
1828 if (adev->mode_info.afmt[i]) {
1829 adev->mode_info.afmt[i]->offset = dig_offsets[i];
1830 adev->mode_info.afmt[i]->id = i;
1831 } else {
1832 int j;
1833 for (j = 0; j < i; j++) {
1834 kfree(adev->mode_info.afmt[j]);
1835 adev->mode_info.afmt[j] = NULL;
1836 }
1837 return -ENOMEM;
1838 }
1839 }
1840 return 0;
1841}
1842
1843static void dce_v11_0_afmt_fini(struct amdgpu_device *adev)
1844{
1845 int i;
1846
1847 for (i = 0; i < adev->mode_info.num_dig; i++) {
1848 kfree(adev->mode_info.afmt[i]);
1849 adev->mode_info.afmt[i] = NULL;
1850 }
1851}
1852
1853static const u32 vga_control_regs[6] =
1854{
1855 mmD1VGA_CONTROL,
1856 mmD2VGA_CONTROL,
1857 mmD3VGA_CONTROL,
1858 mmD4VGA_CONTROL,
1859 mmD5VGA_CONTROL,
1860 mmD6VGA_CONTROL,
1861};
1862
1863static void dce_v11_0_vga_enable(struct drm_crtc *crtc, bool enable)
1864{
1865 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1866 struct drm_device *dev = crtc->dev;
1867 struct amdgpu_device *adev = dev->dev_private;
1868 u32 vga_control;
1869
1870 vga_control = RREG32(vga_control_regs[amdgpu_crtc->crtc_id]) & ~1;
1871 if (enable)
1872 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control | 1);
1873 else
1874 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control);
1875}
1876
1877static void dce_v11_0_grph_enable(struct drm_crtc *crtc, bool enable)
1878{
1879 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1880 struct drm_device *dev = crtc->dev;
1881 struct amdgpu_device *adev = dev->dev_private;
1882
1883 if (enable)
1884 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 1);
1885 else
1886 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 0);
1887}
1888
1889static int dce_v11_0_crtc_do_set_base(struct drm_crtc *crtc,
1890 struct drm_framebuffer *fb,
1891 int x, int y, int atomic)
1892{
1893 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1894 struct drm_device *dev = crtc->dev;
1895 struct amdgpu_device *adev = dev->dev_private;
1896 struct drm_framebuffer *target_fb;
1897 struct drm_gem_object *obj;
1898 struct amdgpu_bo *abo;
1899 uint64_t fb_location, tiling_flags;
1900 uint32_t fb_format, fb_pitch_pixels;
1901 u32 fb_swap = REG_SET_FIELD(0, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP, ENDIAN_NONE);
1902 u32 pipe_config;
1903 u32 tmp, viewport_w, viewport_h;
1904 int r;
1905 bool bypass_lut = false;
1906 struct drm_format_name_buf format_name;
1907
1908 /* no fb bound */
1909 if (!atomic && !crtc->primary->fb) {
1910 DRM_DEBUG_KMS("No FB bound\n");
1911 return 0;
1912 }
1913
1914 if (atomic)
1915 target_fb = fb;
1916 else
1917 target_fb = crtc->primary->fb;
1918
1919 /* If atomic, assume fb object is pinned & idle & fenced and
1920 * just update base pointers
1921 */
1922 obj = target_fb->obj[0];
1923 abo = gem_to_amdgpu_bo(obj);
1924 r = amdgpu_bo_reserve(abo, false);
1925 if (unlikely(r != 0))
1926 return r;
1927
1928 if (!atomic) {
1929 r = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM);
1930 if (unlikely(r != 0)) {
1931 amdgpu_bo_unreserve(abo);
1932 return -EINVAL;
1933 }
1934 }
1935 fb_location = amdgpu_bo_gpu_offset(abo);
1936
1937 amdgpu_bo_get_tiling_flags(abo, &tiling_flags);
1938 amdgpu_bo_unreserve(abo);
1939
1940 pipe_config = AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
1941
1942 switch (target_fb->format->format) {
1943 case DRM_FORMAT_C8:
1944 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 0);
1945 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1946 break;
1947 case DRM_FORMAT_XRGB4444:
1948 case DRM_FORMAT_ARGB4444:
1949 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1950 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 2);
1951#ifdef __BIG_ENDIAN
1952 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1953 ENDIAN_8IN16);
1954#endif
1955 break;
1956 case DRM_FORMAT_XRGB1555:
1957 case DRM_FORMAT_ARGB1555:
1958 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1959 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1960#ifdef __BIG_ENDIAN
1961 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1962 ENDIAN_8IN16);
1963#endif
1964 break;
1965 case DRM_FORMAT_BGRX5551:
1966 case DRM_FORMAT_BGRA5551:
1967 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1968 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 5);
1969#ifdef __BIG_ENDIAN
1970 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1971 ENDIAN_8IN16);
1972#endif
1973 break;
1974 case DRM_FORMAT_RGB565:
1975 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1976 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1977#ifdef __BIG_ENDIAN
1978 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1979 ENDIAN_8IN16);
1980#endif
1981 break;
1982 case DRM_FORMAT_XRGB8888:
1983 case DRM_FORMAT_ARGB8888:
1984 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1985 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1986#ifdef __BIG_ENDIAN
1987 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1988 ENDIAN_8IN32);
1989#endif
1990 break;
1991 case DRM_FORMAT_XRGB2101010:
1992 case DRM_FORMAT_ARGB2101010:
1993 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1994 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1995#ifdef __BIG_ENDIAN
1996 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1997 ENDIAN_8IN32);
1998#endif
1999 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2000 bypass_lut = true;
2001 break;
2002 case DRM_FORMAT_BGRX1010102:
2003 case DRM_FORMAT_BGRA1010102:
2004 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2005 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 4);
2006#ifdef __BIG_ENDIAN
2007 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2008 ENDIAN_8IN32);
2009#endif
2010 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2011 bypass_lut = true;
2012 break;
2013 case DRM_FORMAT_XBGR8888:
2014 case DRM_FORMAT_ABGR8888:
2015 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2016 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
2017 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_RED_CROSSBAR, 2);
2018 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_BLUE_CROSSBAR, 2);
2019#ifdef __BIG_ENDIAN
2020 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2021 ENDIAN_8IN32);
2022#endif
2023 break;
2024 default:
2025 DRM_ERROR("Unsupported screen format %s\n",
2026 drm_get_format_name(target_fb->format->format, &format_name));
2027 return -EINVAL;
2028 }
2029
2030 if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_2D_TILED_THIN1) {
2031 unsigned bankw, bankh, mtaspect, tile_split, num_banks;
2032
2033 bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
2034 bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
2035 mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
2036 tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
2037 num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
2038
2039 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_NUM_BANKS, num_banks);
2040 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2041 ARRAY_2D_TILED_THIN1);
2042 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_TILE_SPLIT,
2043 tile_split);
2044 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_WIDTH, bankw);
2045 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_HEIGHT, bankh);
2046 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MACRO_TILE_ASPECT,
2047 mtaspect);
2048 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MICRO_TILE_MODE,
2049 ADDR_SURF_MICRO_TILING_DISPLAY);
2050 } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_1D_TILED_THIN1) {
2051 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2052 ARRAY_1D_TILED_THIN1);
2053 }
2054
2055 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_PIPE_CONFIG,
2056 pipe_config);
2057
2058 dce_v11_0_vga_enable(crtc, false);
2059
2060 /* Make sure surface address is updated at vertical blank rather than
2061 * horizontal blank
2062 */
2063 tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
2064 tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
2065 GRPH_SURFACE_UPDATE_H_RETRACE_EN, 0);
2066 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2067
2068 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2069 upper_32_bits(fb_location));
2070 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2071 upper_32_bits(fb_location));
2072 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2073 (u32)fb_location & GRPH_PRIMARY_SURFACE_ADDRESS__GRPH_PRIMARY_SURFACE_ADDRESS_MASK);
2074 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2075 (u32) fb_location & GRPH_SECONDARY_SURFACE_ADDRESS__GRPH_SECONDARY_SURFACE_ADDRESS_MASK);
2076 WREG32(mmGRPH_CONTROL + amdgpu_crtc->crtc_offset, fb_format);
2077 WREG32(mmGRPH_SWAP_CNTL + amdgpu_crtc->crtc_offset, fb_swap);
2078
2079 /*
2080 * The LUT only has 256 slots for indexing by a 8 bpc fb. Bypass the LUT
2081 * for > 8 bpc scanout to avoid truncation of fb indices to 8 msb's, to
2082 * retain the full precision throughout the pipeline.
2083 */
2084 tmp = RREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset);
2085 if (bypass_lut)
2086 tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 1);
2087 else
2088 tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 0);
2089 WREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset, tmp);
2090
2091 if (bypass_lut)
2092 DRM_DEBUG_KMS("Bypassing hardware LUT due to 10 bit fb scanout.\n");
2093
2094 WREG32(mmGRPH_SURFACE_OFFSET_X + amdgpu_crtc->crtc_offset, 0);
2095 WREG32(mmGRPH_SURFACE_OFFSET_Y + amdgpu_crtc->crtc_offset, 0);
2096 WREG32(mmGRPH_X_START + amdgpu_crtc->crtc_offset, 0);
2097 WREG32(mmGRPH_Y_START + amdgpu_crtc->crtc_offset, 0);
2098 WREG32(mmGRPH_X_END + amdgpu_crtc->crtc_offset, target_fb->width);
2099 WREG32(mmGRPH_Y_END + amdgpu_crtc->crtc_offset, target_fb->height);
2100
2101 fb_pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
2102 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset, fb_pitch_pixels);
2103
2104 dce_v11_0_grph_enable(crtc, true);
2105
2106 WREG32(mmLB_DESKTOP_HEIGHT + amdgpu_crtc->crtc_offset,
2107 target_fb->height);
2108
2109 x &= ~3;
2110 y &= ~1;
2111 WREG32(mmVIEWPORT_START + amdgpu_crtc->crtc_offset,
2112 (x << 16) | y);
2113 viewport_w = crtc->mode.hdisplay;
2114 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
2115 WREG32(mmVIEWPORT_SIZE + amdgpu_crtc->crtc_offset,
2116 (viewport_w << 16) | viewport_h);
2117
2118 /* set pageflip to happen anywhere in vblank interval */
2119 WREG32(mmCRTC_MASTER_UPDATE_MODE + amdgpu_crtc->crtc_offset, 0);
2120
2121 if (!atomic && fb && fb != crtc->primary->fb) {
2122 abo = gem_to_amdgpu_bo(fb->obj[0]);
2123 r = amdgpu_bo_reserve(abo, true);
2124 if (unlikely(r != 0))
2125 return r;
2126 amdgpu_bo_unpin(abo);
2127 amdgpu_bo_unreserve(abo);
2128 }
2129
2130 /* Bytes per pixel may have changed */
2131 dce_v11_0_bandwidth_update(adev);
2132
2133 return 0;
2134}
2135
2136static void dce_v11_0_set_interleave(struct drm_crtc *crtc,
2137 struct drm_display_mode *mode)
2138{
2139 struct drm_device *dev = crtc->dev;
2140 struct amdgpu_device *adev = dev->dev_private;
2141 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2142 u32 tmp;
2143
2144 tmp = RREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset);
2145 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2146 tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 1);
2147 else
2148 tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 0);
2149 WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset, tmp);
2150}
2151
2152static void dce_v11_0_crtc_load_lut(struct drm_crtc *crtc)
2153{
2154 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2155 struct drm_device *dev = crtc->dev;
2156 struct amdgpu_device *adev = dev->dev_private;
2157 u16 *r, *g, *b;
2158 int i;
2159 u32 tmp;
2160
2161 DRM_DEBUG_KMS("%d\n", amdgpu_crtc->crtc_id);
2162
2163 tmp = RREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2164 tmp = REG_SET_FIELD(tmp, INPUT_CSC_CONTROL, INPUT_CSC_GRPH_MODE, 0);
2165 WREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2166
2167 tmp = RREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset);
2168 tmp = REG_SET_FIELD(tmp, PRESCALE_GRPH_CONTROL, GRPH_PRESCALE_BYPASS, 1);
2169 WREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2170
2171 tmp = RREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2172 tmp = REG_SET_FIELD(tmp, INPUT_GAMMA_CONTROL, GRPH_INPUT_GAMMA_MODE, 0);
2173 WREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2174
2175 WREG32(mmDC_LUT_CONTROL + amdgpu_crtc->crtc_offset, 0);
2176
2177 WREG32(mmDC_LUT_BLACK_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0);
2178 WREG32(mmDC_LUT_BLACK_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0);
2179 WREG32(mmDC_LUT_BLACK_OFFSET_RED + amdgpu_crtc->crtc_offset, 0);
2180
2181 WREG32(mmDC_LUT_WHITE_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0xffff);
2182 WREG32(mmDC_LUT_WHITE_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0xffff);
2183 WREG32(mmDC_LUT_WHITE_OFFSET_RED + amdgpu_crtc->crtc_offset, 0xffff);
2184
2185 WREG32(mmDC_LUT_RW_MODE + amdgpu_crtc->crtc_offset, 0);
2186 WREG32(mmDC_LUT_WRITE_EN_MASK + amdgpu_crtc->crtc_offset, 0x00000007);
2187
2188 WREG32(mmDC_LUT_RW_INDEX + amdgpu_crtc->crtc_offset, 0);
2189 r = crtc->gamma_store;
2190 g = r + crtc->gamma_size;
2191 b = g + crtc->gamma_size;
2192 for (i = 0; i < 256; i++) {
2193 WREG32(mmDC_LUT_30_COLOR + amdgpu_crtc->crtc_offset,
2194 ((*r++ & 0xffc0) << 14) |
2195 ((*g++ & 0xffc0) << 4) |
2196 (*b++ >> 6));
2197 }
2198
2199 tmp = RREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2200 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, GRPH_DEGAMMA_MODE, 0);
2201 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR_DEGAMMA_MODE, 0);
2202 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR2_DEGAMMA_MODE, 0);
2203 WREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2204
2205 tmp = RREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset);
2206 tmp = REG_SET_FIELD(tmp, GAMUT_REMAP_CONTROL, GRPH_GAMUT_REMAP_MODE, 0);
2207 WREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2208
2209 tmp = RREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2210 tmp = REG_SET_FIELD(tmp, REGAMMA_CONTROL, GRPH_REGAMMA_MODE, 0);
2211 WREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2212
2213 tmp = RREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2214 tmp = REG_SET_FIELD(tmp, OUTPUT_CSC_CONTROL, OUTPUT_CSC_GRPH_MODE, 0);
2215 WREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2216
2217 /* XXX match this to the depth of the crtc fmt block, move to modeset? */
2218 WREG32(mmDENORM_CONTROL + amdgpu_crtc->crtc_offset, 0);
2219 /* XXX this only needs to be programmed once per crtc at startup,
2220 * not sure where the best place for it is
2221 */
2222 tmp = RREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset);
2223 tmp = REG_SET_FIELD(tmp, ALPHA_CONTROL, CURSOR_ALPHA_BLND_ENA, 1);
2224 WREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2225}
2226
2227static int dce_v11_0_pick_dig_encoder(struct drm_encoder *encoder)
2228{
2229 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
2230 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2231
2232 switch (amdgpu_encoder->encoder_id) {
2233 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2234 if (dig->linkb)
2235 return 1;
2236 else
2237 return 0;
2238 break;
2239 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2240 if (dig->linkb)
2241 return 3;
2242 else
2243 return 2;
2244 break;
2245 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2246 if (dig->linkb)
2247 return 5;
2248 else
2249 return 4;
2250 break;
2251 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
2252 return 6;
2253 break;
2254 default:
2255 DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2256 return 0;
2257 }
2258}
2259
2260/**
2261 * dce_v11_0_pick_pll - Allocate a PPLL for use by the crtc.
2262 *
2263 * @crtc: drm crtc
2264 *
2265 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
2266 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
2267 * monitors a dedicated PPLL must be used. If a particular board has
2268 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
2269 * as there is no need to program the PLL itself. If we are not able to
2270 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
2271 * avoid messing up an existing monitor.
2272 *
2273 * Asic specific PLL information
2274 *
2275 * DCE 10.x
2276 * Tonga
2277 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
2278 * CI
2279 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
2280 *
2281 */
2282static u32 dce_v11_0_pick_pll(struct drm_crtc *crtc)
2283{
2284 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2285 struct drm_device *dev = crtc->dev;
2286 struct amdgpu_device *adev = dev->dev_private;
2287 u32 pll_in_use;
2288 int pll;
2289
2290 if ((adev->asic_type == CHIP_POLARIS10) ||
2291 (adev->asic_type == CHIP_POLARIS11) ||
2292 (adev->asic_type == CHIP_POLARIS12) ||
2293 (adev->asic_type == CHIP_VEGAM)) {
2294 struct amdgpu_encoder *amdgpu_encoder =
2295 to_amdgpu_encoder(amdgpu_crtc->encoder);
2296 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2297
2298 if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2299 return ATOM_DP_DTO;
2300
2301 switch (amdgpu_encoder->encoder_id) {
2302 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2303 if (dig->linkb)
2304 return ATOM_COMBOPHY_PLL1;
2305 else
2306 return ATOM_COMBOPHY_PLL0;
2307 break;
2308 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2309 if (dig->linkb)
2310 return ATOM_COMBOPHY_PLL3;
2311 else
2312 return ATOM_COMBOPHY_PLL2;
2313 break;
2314 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2315 if (dig->linkb)
2316 return ATOM_COMBOPHY_PLL5;
2317 else
2318 return ATOM_COMBOPHY_PLL4;
2319 break;
2320 default:
2321 DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2322 return ATOM_PPLL_INVALID;
2323 }
2324 }
2325
2326 if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder))) {
2327 if (adev->clock.dp_extclk)
2328 /* skip PPLL programming if using ext clock */
2329 return ATOM_PPLL_INVALID;
2330 else {
2331 /* use the same PPLL for all DP monitors */
2332 pll = amdgpu_pll_get_shared_dp_ppll(crtc);
2333 if (pll != ATOM_PPLL_INVALID)
2334 return pll;
2335 }
2336 } else {
2337 /* use the same PPLL for all monitors with the same clock */
2338 pll = amdgpu_pll_get_shared_nondp_ppll(crtc);
2339 if (pll != ATOM_PPLL_INVALID)
2340 return pll;
2341 }
2342
2343 /* XXX need to determine what plls are available on each DCE11 part */
2344 pll_in_use = amdgpu_pll_get_use_mask(crtc);
2345 if (adev->flags & AMD_IS_APU) {
2346 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2347 return ATOM_PPLL1;
2348 if (!(pll_in_use & (1 << ATOM_PPLL0)))
2349 return ATOM_PPLL0;
2350 DRM_ERROR("unable to allocate a PPLL\n");
2351 return ATOM_PPLL_INVALID;
2352 } else {
2353 if (!(pll_in_use & (1 << ATOM_PPLL2)))
2354 return ATOM_PPLL2;
2355 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2356 return ATOM_PPLL1;
2357 if (!(pll_in_use & (1 << ATOM_PPLL0)))
2358 return ATOM_PPLL0;
2359 DRM_ERROR("unable to allocate a PPLL\n");
2360 return ATOM_PPLL_INVALID;
2361 }
2362 return ATOM_PPLL_INVALID;
2363}
2364
2365static void dce_v11_0_lock_cursor(struct drm_crtc *crtc, bool lock)
2366{
2367 struct amdgpu_device *adev = crtc->dev->dev_private;
2368 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2369 uint32_t cur_lock;
2370
2371 cur_lock = RREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset);
2372 if (lock)
2373 cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 1);
2374 else
2375 cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 0);
2376 WREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset, cur_lock);
2377}
2378
2379static void dce_v11_0_hide_cursor(struct drm_crtc *crtc)
2380{
2381 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2382 struct amdgpu_device *adev = crtc->dev->dev_private;
2383 u32 tmp;
2384
2385 tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2386 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 0);
2387 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2388}
2389
2390static void dce_v11_0_show_cursor(struct drm_crtc *crtc)
2391{
2392 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2393 struct amdgpu_device *adev = crtc->dev->dev_private;
2394 u32 tmp;
2395
2396 WREG32(mmCUR_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2397 upper_32_bits(amdgpu_crtc->cursor_addr));
2398 WREG32(mmCUR_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2399 lower_32_bits(amdgpu_crtc->cursor_addr));
2400
2401 tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2402 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 1);
2403 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_MODE, 2);
2404 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2405}
2406
2407static int dce_v11_0_cursor_move_locked(struct drm_crtc *crtc,
2408 int x, int y)
2409{
2410 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2411 struct amdgpu_device *adev = crtc->dev->dev_private;
2412 int xorigin = 0, yorigin = 0;
2413
2414 amdgpu_crtc->cursor_x = x;
2415 amdgpu_crtc->cursor_y = y;
2416
2417 /* avivo cursor are offset into the total surface */
2418 x += crtc->x;
2419 y += crtc->y;
2420 DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y);
2421
2422 if (x < 0) {
2423 xorigin = min(-x, amdgpu_crtc->max_cursor_width - 1);
2424 x = 0;
2425 }
2426 if (y < 0) {
2427 yorigin = min(-y, amdgpu_crtc->max_cursor_height - 1);
2428 y = 0;
2429 }
2430
2431 WREG32(mmCUR_POSITION + amdgpu_crtc->crtc_offset, (x << 16) | y);
2432 WREG32(mmCUR_HOT_SPOT + amdgpu_crtc->crtc_offset, (xorigin << 16) | yorigin);
2433 WREG32(mmCUR_SIZE + amdgpu_crtc->crtc_offset,
2434 ((amdgpu_crtc->cursor_width - 1) << 16) | (amdgpu_crtc->cursor_height - 1));
2435
2436 return 0;
2437}
2438
2439static int dce_v11_0_crtc_cursor_move(struct drm_crtc *crtc,
2440 int x, int y)
2441{
2442 int ret;
2443
2444 dce_v11_0_lock_cursor(crtc, true);
2445 ret = dce_v11_0_cursor_move_locked(crtc, x, y);
2446 dce_v11_0_lock_cursor(crtc, false);
2447
2448 return ret;
2449}
2450
2451static int dce_v11_0_crtc_cursor_set2(struct drm_crtc *crtc,
2452 struct drm_file *file_priv,
2453 uint32_t handle,
2454 uint32_t width,
2455 uint32_t height,
2456 int32_t hot_x,
2457 int32_t hot_y)
2458{
2459 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2460 struct drm_gem_object *obj;
2461 struct amdgpu_bo *aobj;
2462 int ret;
2463
2464 if (!handle) {
2465 /* turn off cursor */
2466 dce_v11_0_hide_cursor(crtc);
2467 obj = NULL;
2468 goto unpin;
2469 }
2470
2471 if ((width > amdgpu_crtc->max_cursor_width) ||
2472 (height > amdgpu_crtc->max_cursor_height)) {
2473 DRM_ERROR("bad cursor width or height %d x %d\n", width, height);
2474 return -EINVAL;
2475 }
2476
2477 obj = drm_gem_object_lookup(file_priv, handle);
2478 if (!obj) {
2479 DRM_ERROR("Cannot find cursor object %x for crtc %d\n", handle, amdgpu_crtc->crtc_id);
2480 return -ENOENT;
2481 }
2482
2483 aobj = gem_to_amdgpu_bo(obj);
2484 ret = amdgpu_bo_reserve(aobj, false);
2485 if (ret != 0) {
2486 drm_gem_object_put(obj);
2487 return ret;
2488 }
2489
2490 ret = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
2491 amdgpu_bo_unreserve(aobj);
2492 if (ret) {
2493 DRM_ERROR("Failed to pin new cursor BO (%d)\n", ret);
2494 drm_gem_object_put(obj);
2495 return ret;
2496 }
2497 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
2498
2499 dce_v11_0_lock_cursor(crtc, true);
2500
2501 if (width != amdgpu_crtc->cursor_width ||
2502 height != amdgpu_crtc->cursor_height ||
2503 hot_x != amdgpu_crtc->cursor_hot_x ||
2504 hot_y != amdgpu_crtc->cursor_hot_y) {
2505 int x, y;
2506
2507 x = amdgpu_crtc->cursor_x + amdgpu_crtc->cursor_hot_x - hot_x;
2508 y = amdgpu_crtc->cursor_y + amdgpu_crtc->cursor_hot_y - hot_y;
2509
2510 dce_v11_0_cursor_move_locked(crtc, x, y);
2511
2512 amdgpu_crtc->cursor_width = width;
2513 amdgpu_crtc->cursor_height = height;
2514 amdgpu_crtc->cursor_hot_x = hot_x;
2515 amdgpu_crtc->cursor_hot_y = hot_y;
2516 }
2517
2518 dce_v11_0_show_cursor(crtc);
2519 dce_v11_0_lock_cursor(crtc, false);
2520
2521unpin:
2522 if (amdgpu_crtc->cursor_bo) {
2523 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2524 ret = amdgpu_bo_reserve(aobj, true);
2525 if (likely(ret == 0)) {
2526 amdgpu_bo_unpin(aobj);
2527 amdgpu_bo_unreserve(aobj);
2528 }
2529 drm_gem_object_put(amdgpu_crtc->cursor_bo);
2530 }
2531
2532 amdgpu_crtc->cursor_bo = obj;
2533 return 0;
2534}
2535
2536static void dce_v11_0_cursor_reset(struct drm_crtc *crtc)
2537{
2538 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2539
2540 if (amdgpu_crtc->cursor_bo) {
2541 dce_v11_0_lock_cursor(crtc, true);
2542
2543 dce_v11_0_cursor_move_locked(crtc, amdgpu_crtc->cursor_x,
2544 amdgpu_crtc->cursor_y);
2545
2546 dce_v11_0_show_cursor(crtc);
2547
2548 dce_v11_0_lock_cursor(crtc, false);
2549 }
2550}
2551
2552static int dce_v11_0_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
2553 u16 *blue, uint32_t size,
2554 struct drm_modeset_acquire_ctx *ctx)
2555{
2556 dce_v11_0_crtc_load_lut(crtc);
2557
2558 return 0;
2559}
2560
2561static void dce_v11_0_crtc_destroy(struct drm_crtc *crtc)
2562{
2563 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2564
2565 drm_crtc_cleanup(crtc);
2566 kfree(amdgpu_crtc);
2567}
2568
2569static const struct drm_crtc_funcs dce_v11_0_crtc_funcs = {
2570 .cursor_set2 = dce_v11_0_crtc_cursor_set2,
2571 .cursor_move = dce_v11_0_crtc_cursor_move,
2572 .gamma_set = dce_v11_0_crtc_gamma_set,
2573 .set_config = amdgpu_display_crtc_set_config,
2574 .destroy = dce_v11_0_crtc_destroy,
2575 .page_flip_target = amdgpu_display_crtc_page_flip_target,
2576 .get_vblank_counter = amdgpu_get_vblank_counter_kms,
2577 .enable_vblank = amdgpu_enable_vblank_kms,
2578 .disable_vblank = amdgpu_disable_vblank_kms,
2579 .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
2580};
2581
2582static void dce_v11_0_crtc_dpms(struct drm_crtc *crtc, int mode)
2583{
2584 struct drm_device *dev = crtc->dev;
2585 struct amdgpu_device *adev = dev->dev_private;
2586 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2587 unsigned type;
2588
2589 switch (mode) {
2590 case DRM_MODE_DPMS_ON:
2591 amdgpu_crtc->enabled = true;
2592 amdgpu_atombios_crtc_enable(crtc, ATOM_ENABLE);
2593 dce_v11_0_vga_enable(crtc, true);
2594 amdgpu_atombios_crtc_blank(crtc, ATOM_DISABLE);
2595 dce_v11_0_vga_enable(crtc, false);
2596 /* Make sure VBLANK and PFLIP interrupts are still enabled */
2597 type = amdgpu_display_crtc_idx_to_irq_type(adev,
2598 amdgpu_crtc->crtc_id);
2599 amdgpu_irq_update(adev, &adev->crtc_irq, type);
2600 amdgpu_irq_update(adev, &adev->pageflip_irq, type);
2601 drm_crtc_vblank_on(crtc);
2602 dce_v11_0_crtc_load_lut(crtc);
2603 break;
2604 case DRM_MODE_DPMS_STANDBY:
2605 case DRM_MODE_DPMS_SUSPEND:
2606 case DRM_MODE_DPMS_OFF:
2607 drm_crtc_vblank_off(crtc);
2608 if (amdgpu_crtc->enabled) {
2609 dce_v11_0_vga_enable(crtc, true);
2610 amdgpu_atombios_crtc_blank(crtc, ATOM_ENABLE);
2611 dce_v11_0_vga_enable(crtc, false);
2612 }
2613 amdgpu_atombios_crtc_enable(crtc, ATOM_DISABLE);
2614 amdgpu_crtc->enabled = false;
2615 break;
2616 }
2617 /* adjust pm to dpms */
2618 amdgpu_pm_compute_clocks(adev);
2619}
2620
2621static void dce_v11_0_crtc_prepare(struct drm_crtc *crtc)
2622{
2623 /* disable crtc pair power gating before programming */
2624 amdgpu_atombios_crtc_powergate(crtc, ATOM_DISABLE);
2625 amdgpu_atombios_crtc_lock(crtc, ATOM_ENABLE);
2626 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2627}
2628
2629static void dce_v11_0_crtc_commit(struct drm_crtc *crtc)
2630{
2631 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
2632 amdgpu_atombios_crtc_lock(crtc, ATOM_DISABLE);
2633}
2634
2635static void dce_v11_0_crtc_disable(struct drm_crtc *crtc)
2636{
2637 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2638 struct drm_device *dev = crtc->dev;
2639 struct amdgpu_device *adev = dev->dev_private;
2640 struct amdgpu_atom_ss ss;
2641 int i;
2642
2643 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2644 if (crtc->primary->fb) {
2645 int r;
2646 struct amdgpu_bo *abo;
2647
2648 abo = gem_to_amdgpu_bo(crtc->primary->fb->obj[0]);
2649 r = amdgpu_bo_reserve(abo, true);
2650 if (unlikely(r))
2651 DRM_ERROR("failed to reserve abo before unpin\n");
2652 else {
2653 amdgpu_bo_unpin(abo);
2654 amdgpu_bo_unreserve(abo);
2655 }
2656 }
2657 /* disable the GRPH */
2658 dce_v11_0_grph_enable(crtc, false);
2659
2660 amdgpu_atombios_crtc_powergate(crtc, ATOM_ENABLE);
2661
2662 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2663 if (adev->mode_info.crtcs[i] &&
2664 adev->mode_info.crtcs[i]->enabled &&
2665 i != amdgpu_crtc->crtc_id &&
2666 amdgpu_crtc->pll_id == adev->mode_info.crtcs[i]->pll_id) {
2667 /* one other crtc is using this pll don't turn
2668 * off the pll
2669 */
2670 goto done;
2671 }
2672 }
2673
2674 switch (amdgpu_crtc->pll_id) {
2675 case ATOM_PPLL0:
2676 case ATOM_PPLL1:
2677 case ATOM_PPLL2:
2678 /* disable the ppll */
2679 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
2680 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2681 break;
2682 case ATOM_COMBOPHY_PLL0:
2683 case ATOM_COMBOPHY_PLL1:
2684 case ATOM_COMBOPHY_PLL2:
2685 case ATOM_COMBOPHY_PLL3:
2686 case ATOM_COMBOPHY_PLL4:
2687 case ATOM_COMBOPHY_PLL5:
2688 /* disable the ppll */
2689 amdgpu_atombios_crtc_program_pll(crtc, ATOM_CRTC_INVALID, amdgpu_crtc->pll_id,
2690 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2691 break;
2692 default:
2693 break;
2694 }
2695done:
2696 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2697 amdgpu_crtc->adjusted_clock = 0;
2698 amdgpu_crtc->encoder = NULL;
2699 amdgpu_crtc->connector = NULL;
2700}
2701
2702static int dce_v11_0_crtc_mode_set(struct drm_crtc *crtc,
2703 struct drm_display_mode *mode,
2704 struct drm_display_mode *adjusted_mode,
2705 int x, int y, struct drm_framebuffer *old_fb)
2706{
2707 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2708 struct drm_device *dev = crtc->dev;
2709 struct amdgpu_device *adev = dev->dev_private;
2710
2711 if (!amdgpu_crtc->adjusted_clock)
2712 return -EINVAL;
2713
2714 if ((adev->asic_type == CHIP_POLARIS10) ||
2715 (adev->asic_type == CHIP_POLARIS11) ||
2716 (adev->asic_type == CHIP_POLARIS12) ||
2717 (adev->asic_type == CHIP_VEGAM)) {
2718 struct amdgpu_encoder *amdgpu_encoder =
2719 to_amdgpu_encoder(amdgpu_crtc->encoder);
2720 int encoder_mode =
2721 amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder);
2722
2723 /* SetPixelClock calculates the plls and ss values now */
2724 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id,
2725 amdgpu_crtc->pll_id,
2726 encoder_mode, amdgpu_encoder->encoder_id,
2727 adjusted_mode->clock, 0, 0, 0, 0,
2728 amdgpu_crtc->bpc, amdgpu_crtc->ss_enabled, &amdgpu_crtc->ss);
2729 } else {
2730 amdgpu_atombios_crtc_set_pll(crtc, adjusted_mode);
2731 }
2732 amdgpu_atombios_crtc_set_dtd_timing(crtc, adjusted_mode);
2733 dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2734 amdgpu_atombios_crtc_overscan_setup(crtc, mode, adjusted_mode);
2735 amdgpu_atombios_crtc_scaler_setup(crtc);
2736 dce_v11_0_cursor_reset(crtc);
2737 /* update the hw version fpr dpm */
2738 amdgpu_crtc->hw_mode = *adjusted_mode;
2739
2740 return 0;
2741}
2742
2743static bool dce_v11_0_crtc_mode_fixup(struct drm_crtc *crtc,
2744 const struct drm_display_mode *mode,
2745 struct drm_display_mode *adjusted_mode)
2746{
2747 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2748 struct drm_device *dev = crtc->dev;
2749 struct drm_encoder *encoder;
2750
2751 /* assign the encoder to the amdgpu crtc to avoid repeated lookups later */
2752 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2753 if (encoder->crtc == crtc) {
2754 amdgpu_crtc->encoder = encoder;
2755 amdgpu_crtc->connector = amdgpu_get_connector_for_encoder(encoder);
2756 break;
2757 }
2758 }
2759 if ((amdgpu_crtc->encoder == NULL) || (amdgpu_crtc->connector == NULL)) {
2760 amdgpu_crtc->encoder = NULL;
2761 amdgpu_crtc->connector = NULL;
2762 return false;
2763 }
2764 if (!amdgpu_display_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
2765 return false;
2766 if (amdgpu_atombios_crtc_prepare_pll(crtc, adjusted_mode))
2767 return false;
2768 /* pick pll */
2769 amdgpu_crtc->pll_id = dce_v11_0_pick_pll(crtc);
2770 /* if we can't get a PPLL for a non-DP encoder, fail */
2771 if ((amdgpu_crtc->pll_id == ATOM_PPLL_INVALID) &&
2772 !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2773 return false;
2774
2775 return true;
2776}
2777
2778static int dce_v11_0_crtc_set_base(struct drm_crtc *crtc, int x, int y,
2779 struct drm_framebuffer *old_fb)
2780{
2781 return dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2782}
2783
2784static int dce_v11_0_crtc_set_base_atomic(struct drm_crtc *crtc,
2785 struct drm_framebuffer *fb,
2786 int x, int y, enum mode_set_atomic state)
2787{
2788 return dce_v11_0_crtc_do_set_base(crtc, fb, x, y, 1);
2789}
2790
2791static const struct drm_crtc_helper_funcs dce_v11_0_crtc_helper_funcs = {
2792 .dpms = dce_v11_0_crtc_dpms,
2793 .mode_fixup = dce_v11_0_crtc_mode_fixup,
2794 .mode_set = dce_v11_0_crtc_mode_set,
2795 .mode_set_base = dce_v11_0_crtc_set_base,
2796 .mode_set_base_atomic = dce_v11_0_crtc_set_base_atomic,
2797 .prepare = dce_v11_0_crtc_prepare,
2798 .commit = dce_v11_0_crtc_commit,
2799 .disable = dce_v11_0_crtc_disable,
2800 .get_scanout_position = amdgpu_crtc_get_scanout_position,
2801};
2802
2803static int dce_v11_0_crtc_init(struct amdgpu_device *adev, int index)
2804{
2805 struct amdgpu_crtc *amdgpu_crtc;
2806
2807 amdgpu_crtc = kzalloc(sizeof(struct amdgpu_crtc) +
2808 (AMDGPUFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
2809 if (amdgpu_crtc == NULL)
2810 return -ENOMEM;
2811
2812 drm_crtc_init(adev->ddev, &amdgpu_crtc->base, &dce_v11_0_crtc_funcs);
2813
2814 drm_mode_crtc_set_gamma_size(&amdgpu_crtc->base, 256);
2815 amdgpu_crtc->crtc_id = index;
2816 adev->mode_info.crtcs[index] = amdgpu_crtc;
2817
2818 amdgpu_crtc->max_cursor_width = 128;
2819 amdgpu_crtc->max_cursor_height = 128;
2820 adev->ddev->mode_config.cursor_width = amdgpu_crtc->max_cursor_width;
2821 adev->ddev->mode_config.cursor_height = amdgpu_crtc->max_cursor_height;
2822
2823 switch (amdgpu_crtc->crtc_id) {
2824 case 0:
2825 default:
2826 amdgpu_crtc->crtc_offset = CRTC0_REGISTER_OFFSET;
2827 break;
2828 case 1:
2829 amdgpu_crtc->crtc_offset = CRTC1_REGISTER_OFFSET;
2830 break;
2831 case 2:
2832 amdgpu_crtc->crtc_offset = CRTC2_REGISTER_OFFSET;
2833 break;
2834 case 3:
2835 amdgpu_crtc->crtc_offset = CRTC3_REGISTER_OFFSET;
2836 break;
2837 case 4:
2838 amdgpu_crtc->crtc_offset = CRTC4_REGISTER_OFFSET;
2839 break;
2840 case 5:
2841 amdgpu_crtc->crtc_offset = CRTC5_REGISTER_OFFSET;
2842 break;
2843 }
2844
2845 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2846 amdgpu_crtc->adjusted_clock = 0;
2847 amdgpu_crtc->encoder = NULL;
2848 amdgpu_crtc->connector = NULL;
2849 drm_crtc_helper_add(&amdgpu_crtc->base, &dce_v11_0_crtc_helper_funcs);
2850
2851 return 0;
2852}
2853
2854static int dce_v11_0_early_init(void *handle)
2855{
2856 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2857
2858 adev->audio_endpt_rreg = &dce_v11_0_audio_endpt_rreg;
2859 adev->audio_endpt_wreg = &dce_v11_0_audio_endpt_wreg;
2860
2861 dce_v11_0_set_display_funcs(adev);
2862
2863 adev->mode_info.num_crtc = dce_v11_0_get_num_crtc(adev);
2864
2865 switch (adev->asic_type) {
2866 case CHIP_CARRIZO:
2867 adev->mode_info.num_hpd = 6;
2868 adev->mode_info.num_dig = 9;
2869 break;
2870 case CHIP_STONEY:
2871 adev->mode_info.num_hpd = 6;
2872 adev->mode_info.num_dig = 9;
2873 break;
2874 case CHIP_POLARIS10:
2875 case CHIP_VEGAM:
2876 adev->mode_info.num_hpd = 6;
2877 adev->mode_info.num_dig = 6;
2878 break;
2879 case CHIP_POLARIS11:
2880 case CHIP_POLARIS12:
2881 adev->mode_info.num_hpd = 5;
2882 adev->mode_info.num_dig = 5;
2883 break;
2884 default:
2885 /* FIXME: not supported yet */
2886 return -EINVAL;
2887 }
2888
2889 dce_v11_0_set_irq_funcs(adev);
2890
2891 return 0;
2892}
2893
2894static int dce_v11_0_sw_init(void *handle)
2895{
2896 int r, i;
2897 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2898
2899 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2900 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + 1, &adev->crtc_irq);
2901 if (r)
2902 return r;
2903 }
2904
2905 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; i < 20; i += 2) {
2906 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i, &adev->pageflip_irq);
2907 if (r)
2908 return r;
2909 }
2910
2911 /* HPD hotplug */
2912 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
2913 if (r)
2914 return r;
2915
2916 adev->ddev->mode_config.funcs = &amdgpu_mode_funcs;
2917
2918 adev->ddev->mode_config.async_page_flip = true;
2919
2920 adev->ddev->mode_config.max_width = 16384;
2921 adev->ddev->mode_config.max_height = 16384;
2922
2923 adev->ddev->mode_config.preferred_depth = 24;
2924 adev->ddev->mode_config.prefer_shadow = 1;
2925
2926 adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
2927
2928 r = amdgpu_display_modeset_create_props(adev);
2929 if (r)
2930 return r;
2931
2932 adev->ddev->mode_config.max_width = 16384;
2933 adev->ddev->mode_config.max_height = 16384;
2934
2935
2936 /* allocate crtcs */
2937 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2938 r = dce_v11_0_crtc_init(adev, i);
2939 if (r)
2940 return r;
2941 }
2942
2943 if (amdgpu_atombios_get_connector_info_from_object_table(adev))
2944 amdgpu_display_print_display_setup(adev->ddev);
2945 else
2946 return -EINVAL;
2947
2948 /* setup afmt */
2949 r = dce_v11_0_afmt_init(adev);
2950 if (r)
2951 return r;
2952
2953 r = dce_v11_0_audio_init(adev);
2954 if (r)
2955 return r;
2956
2957 drm_kms_helper_poll_init(adev->ddev);
2958
2959 adev->mode_info.mode_config_initialized = true;
2960 return 0;
2961}
2962
2963static int dce_v11_0_sw_fini(void *handle)
2964{
2965 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2966
2967 kfree(adev->mode_info.bios_hardcoded_edid);
2968
2969 drm_kms_helper_poll_fini(adev->ddev);
2970
2971 dce_v11_0_audio_fini(adev);
2972
2973 dce_v11_0_afmt_fini(adev);
2974
2975 drm_mode_config_cleanup(adev->ddev);
2976 adev->mode_info.mode_config_initialized = false;
2977
2978 return 0;
2979}
2980
2981static int dce_v11_0_hw_init(void *handle)
2982{
2983 int i;
2984 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2985
2986 dce_v11_0_init_golden_registers(adev);
2987
2988 /* disable vga render */
2989 dce_v11_0_set_vga_render_state(adev, false);
2990 /* init dig PHYs, disp eng pll */
2991 amdgpu_atombios_crtc_powergate_init(adev);
2992 amdgpu_atombios_encoder_init_dig(adev);
2993 if ((adev->asic_type == CHIP_POLARIS10) ||
2994 (adev->asic_type == CHIP_POLARIS11) ||
2995 (adev->asic_type == CHIP_POLARIS12) ||
2996 (adev->asic_type == CHIP_VEGAM)) {
2997 amdgpu_atombios_crtc_set_dce_clock(adev, adev->clock.default_dispclk,
2998 DCE_CLOCK_TYPE_DISPCLK, ATOM_GCK_DFS);
2999 amdgpu_atombios_crtc_set_dce_clock(adev, 0,
3000 DCE_CLOCK_TYPE_DPREFCLK, ATOM_GCK_DFS);
3001 } else {
3002 amdgpu_atombios_crtc_set_disp_eng_pll(adev, adev->clock.default_dispclk);
3003 }
3004
3005 /* initialize hpd */
3006 dce_v11_0_hpd_init(adev);
3007
3008 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3009 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3010 }
3011
3012 dce_v11_0_pageflip_interrupt_init(adev);
3013
3014 return 0;
3015}
3016
3017static int dce_v11_0_hw_fini(void *handle)
3018{
3019 int i;
3020 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3021
3022 dce_v11_0_hpd_fini(adev);
3023
3024 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3025 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3026 }
3027
3028 dce_v11_0_pageflip_interrupt_fini(adev);
3029
3030 return 0;
3031}
3032
3033static int dce_v11_0_suspend(void *handle)
3034{
3035 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3036
3037 adev->mode_info.bl_level =
3038 amdgpu_atombios_encoder_get_backlight_level_from_reg(adev);
3039
3040 return dce_v11_0_hw_fini(handle);
3041}
3042
3043static int dce_v11_0_resume(void *handle)
3044{
3045 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3046 int ret;
3047
3048 amdgpu_atombios_encoder_set_backlight_level_to_reg(adev,
3049 adev->mode_info.bl_level);
3050
3051 ret = dce_v11_0_hw_init(handle);
3052
3053 /* turn on the BL */
3054 if (adev->mode_info.bl_encoder) {
3055 u8 bl_level = amdgpu_display_backlight_get_level(adev,
3056 adev->mode_info.bl_encoder);
3057 amdgpu_display_backlight_set_level(adev, adev->mode_info.bl_encoder,
3058 bl_level);
3059 }
3060
3061 return ret;
3062}
3063
3064static bool dce_v11_0_is_idle(void *handle)
3065{
3066 return true;
3067}
3068
3069static int dce_v11_0_wait_for_idle(void *handle)
3070{
3071 return 0;
3072}
3073
3074static int dce_v11_0_soft_reset(void *handle)
3075{
3076 u32 srbm_soft_reset = 0, tmp;
3077 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3078
3079 if (dce_v11_0_is_display_hung(adev))
3080 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_DC_MASK;
3081
3082 if (srbm_soft_reset) {
3083 tmp = RREG32(mmSRBM_SOFT_RESET);
3084 tmp |= srbm_soft_reset;
3085 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
3086 WREG32(mmSRBM_SOFT_RESET, tmp);
3087 tmp = RREG32(mmSRBM_SOFT_RESET);
3088
3089 udelay(50);
3090
3091 tmp &= ~srbm_soft_reset;
3092 WREG32(mmSRBM_SOFT_RESET, tmp);
3093 tmp = RREG32(mmSRBM_SOFT_RESET);
3094
3095 /* Wait a little for things to settle down */
3096 udelay(50);
3097 }
3098 return 0;
3099}
3100
3101static void dce_v11_0_set_crtc_vblank_interrupt_state(struct amdgpu_device *adev,
3102 int crtc,
3103 enum amdgpu_interrupt_state state)
3104{
3105 u32 lb_interrupt_mask;
3106
3107 if (crtc >= adev->mode_info.num_crtc) {
3108 DRM_DEBUG("invalid crtc %d\n", crtc);
3109 return;
3110 }
3111
3112 switch (state) {
3113 case AMDGPU_IRQ_STATE_DISABLE:
3114 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3115 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3116 VBLANK_INTERRUPT_MASK, 0);
3117 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3118 break;
3119 case AMDGPU_IRQ_STATE_ENABLE:
3120 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3121 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3122 VBLANK_INTERRUPT_MASK, 1);
3123 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3124 break;
3125 default:
3126 break;
3127 }
3128}
3129
3130static void dce_v11_0_set_crtc_vline_interrupt_state(struct amdgpu_device *adev,
3131 int crtc,
3132 enum amdgpu_interrupt_state state)
3133{
3134 u32 lb_interrupt_mask;
3135
3136 if (crtc >= adev->mode_info.num_crtc) {
3137 DRM_DEBUG("invalid crtc %d\n", crtc);
3138 return;
3139 }
3140
3141 switch (state) {
3142 case AMDGPU_IRQ_STATE_DISABLE:
3143 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3144 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3145 VLINE_INTERRUPT_MASK, 0);
3146 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3147 break;
3148 case AMDGPU_IRQ_STATE_ENABLE:
3149 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3150 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3151 VLINE_INTERRUPT_MASK, 1);
3152 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3153 break;
3154 default:
3155 break;
3156 }
3157}
3158
3159static int dce_v11_0_set_hpd_irq_state(struct amdgpu_device *adev,
3160 struct amdgpu_irq_src *source,
3161 unsigned hpd,
3162 enum amdgpu_interrupt_state state)
3163{
3164 u32 tmp;
3165
3166 if (hpd >= adev->mode_info.num_hpd) {
3167 DRM_DEBUG("invalid hdp %d\n", hpd);
3168 return 0;
3169 }
3170
3171 switch (state) {
3172 case AMDGPU_IRQ_STATE_DISABLE:
3173 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3174 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
3175 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3176 break;
3177 case AMDGPU_IRQ_STATE_ENABLE:
3178 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3179 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 1);
3180 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3181 break;
3182 default:
3183 break;
3184 }
3185
3186 return 0;
3187}
3188
3189static int dce_v11_0_set_crtc_irq_state(struct amdgpu_device *adev,
3190 struct amdgpu_irq_src *source,
3191 unsigned type,
3192 enum amdgpu_interrupt_state state)
3193{
3194 switch (type) {
3195 case AMDGPU_CRTC_IRQ_VBLANK1:
3196 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 0, state);
3197 break;
3198 case AMDGPU_CRTC_IRQ_VBLANK2:
3199 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 1, state);
3200 break;
3201 case AMDGPU_CRTC_IRQ_VBLANK3:
3202 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 2, state);
3203 break;
3204 case AMDGPU_CRTC_IRQ_VBLANK4:
3205 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 3, state);
3206 break;
3207 case AMDGPU_CRTC_IRQ_VBLANK5:
3208 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 4, state);
3209 break;
3210 case AMDGPU_CRTC_IRQ_VBLANK6:
3211 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 5, state);
3212 break;
3213 case AMDGPU_CRTC_IRQ_VLINE1:
3214 dce_v11_0_set_crtc_vline_interrupt_state(adev, 0, state);
3215 break;
3216 case AMDGPU_CRTC_IRQ_VLINE2:
3217 dce_v11_0_set_crtc_vline_interrupt_state(adev, 1, state);
3218 break;
3219 case AMDGPU_CRTC_IRQ_VLINE3:
3220 dce_v11_0_set_crtc_vline_interrupt_state(adev, 2, state);
3221 break;
3222 case AMDGPU_CRTC_IRQ_VLINE4:
3223 dce_v11_0_set_crtc_vline_interrupt_state(adev, 3, state);
3224 break;
3225 case AMDGPU_CRTC_IRQ_VLINE5:
3226 dce_v11_0_set_crtc_vline_interrupt_state(adev, 4, state);
3227 break;
3228 case AMDGPU_CRTC_IRQ_VLINE6:
3229 dce_v11_0_set_crtc_vline_interrupt_state(adev, 5, state);
3230 break;
3231 default:
3232 break;
3233 }
3234 return 0;
3235}
3236
3237static int dce_v11_0_set_pageflip_irq_state(struct amdgpu_device *adev,
3238 struct amdgpu_irq_src *src,
3239 unsigned type,
3240 enum amdgpu_interrupt_state state)
3241{
3242 u32 reg;
3243
3244 if (type >= adev->mode_info.num_crtc) {
3245 DRM_ERROR("invalid pageflip crtc %d\n", type);
3246 return -EINVAL;
3247 }
3248
3249 reg = RREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type]);
3250 if (state == AMDGPU_IRQ_STATE_DISABLE)
3251 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3252 reg & ~GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3253 else
3254 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3255 reg | GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3256
3257 return 0;
3258}
3259
3260static int dce_v11_0_pageflip_irq(struct amdgpu_device *adev,
3261 struct amdgpu_irq_src *source,
3262 struct amdgpu_iv_entry *entry)
3263{
3264 unsigned long flags;
3265 unsigned crtc_id;
3266 struct amdgpu_crtc *amdgpu_crtc;
3267 struct amdgpu_flip_work *works;
3268
3269 crtc_id = (entry->src_id - 8) >> 1;
3270 amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
3271
3272 if (crtc_id >= adev->mode_info.num_crtc) {
3273 DRM_ERROR("invalid pageflip crtc %d\n", crtc_id);
3274 return -EINVAL;
3275 }
3276
3277 if (RREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id]) &
3278 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_OCCURRED_MASK)
3279 WREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id],
3280 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_CLEAR_MASK);
3281
3282 /* IRQ could occur when in initial stage */
3283 if(amdgpu_crtc == NULL)
3284 return 0;
3285
3286 spin_lock_irqsave(&adev->ddev->event_lock, flags);
3287 works = amdgpu_crtc->pflip_works;
3288 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
3289 DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d != "
3290 "AMDGPU_FLIP_SUBMITTED(%d)\n",
3291 amdgpu_crtc->pflip_status,
3292 AMDGPU_FLIP_SUBMITTED);
3293 spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
3294 return 0;
3295 }
3296
3297 /* page flip completed. clean up */
3298 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
3299 amdgpu_crtc->pflip_works = NULL;
3300
3301 /* wakeup usersapce */
3302 if(works->event)
3303 drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
3304
3305 spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
3306
3307 drm_crtc_vblank_put(&amdgpu_crtc->base);
3308 schedule_work(&works->unpin_work);
3309
3310 return 0;
3311}
3312
3313static void dce_v11_0_hpd_int_ack(struct amdgpu_device *adev,
3314 int hpd)
3315{
3316 u32 tmp;
3317
3318 if (hpd >= adev->mode_info.num_hpd) {
3319 DRM_DEBUG("invalid hdp %d\n", hpd);
3320 return;
3321 }
3322
3323 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3324 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_ACK, 1);
3325 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3326}
3327
3328static void dce_v11_0_crtc_vblank_int_ack(struct amdgpu_device *adev,
3329 int crtc)
3330{
3331 u32 tmp;
3332
3333 if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3334 DRM_DEBUG("invalid crtc %d\n", crtc);
3335 return;
3336 }
3337
3338 tmp = RREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc]);
3339 tmp = REG_SET_FIELD(tmp, LB_VBLANK_STATUS, VBLANK_ACK, 1);
3340 WREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc], tmp);
3341}
3342
3343static void dce_v11_0_crtc_vline_int_ack(struct amdgpu_device *adev,
3344 int crtc)
3345{
3346 u32 tmp;
3347
3348 if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3349 DRM_DEBUG("invalid crtc %d\n", crtc);
3350 return;
3351 }
3352
3353 tmp = RREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc]);
3354 tmp = REG_SET_FIELD(tmp, LB_VLINE_STATUS, VLINE_ACK, 1);
3355 WREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc], tmp);
3356}
3357
3358static int dce_v11_0_crtc_irq(struct amdgpu_device *adev,
3359 struct amdgpu_irq_src *source,
3360 struct amdgpu_iv_entry *entry)
3361{
3362 unsigned crtc = entry->src_id - 1;
3363 uint32_t disp_int = RREG32(interrupt_status_offsets[crtc].reg);
3364 unsigned int irq_type = amdgpu_display_crtc_idx_to_irq_type(adev,
3365 crtc);
3366
3367 switch (entry->src_data[0]) {
3368 case 0: /* vblank */
3369 if (disp_int & interrupt_status_offsets[crtc].vblank)
3370 dce_v11_0_crtc_vblank_int_ack(adev, crtc);
3371 else
3372 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3373
3374 if (amdgpu_irq_enabled(adev, source, irq_type)) {
3375 drm_handle_vblank(adev->ddev, crtc);
3376 }
3377 DRM_DEBUG("IH: D%d vblank\n", crtc + 1);
3378
3379 break;
3380 case 1: /* vline */
3381 if (disp_int & interrupt_status_offsets[crtc].vline)
3382 dce_v11_0_crtc_vline_int_ack(adev, crtc);
3383 else
3384 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3385
3386 DRM_DEBUG("IH: D%d vline\n", crtc + 1);
3387
3388 break;
3389 default:
3390 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3391 break;
3392 }
3393
3394 return 0;
3395}
3396
3397static int dce_v11_0_hpd_irq(struct amdgpu_device *adev,
3398 struct amdgpu_irq_src *source,
3399 struct amdgpu_iv_entry *entry)
3400{
3401 uint32_t disp_int, mask;
3402 unsigned hpd;
3403
3404 if (entry->src_data[0] >= adev->mode_info.num_hpd) {
3405 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3406 return 0;
3407 }
3408
3409 hpd = entry->src_data[0];
3410 disp_int = RREG32(interrupt_status_offsets[hpd].reg);
3411 mask = interrupt_status_offsets[hpd].hpd;
3412
3413 if (disp_int & mask) {
3414 dce_v11_0_hpd_int_ack(adev, hpd);
3415 schedule_work(&adev->hotplug_work);
3416 DRM_DEBUG("IH: HPD%d\n", hpd + 1);
3417 }
3418
3419 return 0;
3420}
3421
3422static int dce_v11_0_set_clockgating_state(void *handle,
3423 enum amd_clockgating_state state)
3424{
3425 return 0;
3426}
3427
3428static int dce_v11_0_set_powergating_state(void *handle,
3429 enum amd_powergating_state state)
3430{
3431 return 0;
3432}
3433
3434static const struct amd_ip_funcs dce_v11_0_ip_funcs = {
3435 .name = "dce_v11_0",
3436 .early_init = dce_v11_0_early_init,
3437 .late_init = NULL,
3438 .sw_init = dce_v11_0_sw_init,
3439 .sw_fini = dce_v11_0_sw_fini,
3440 .hw_init = dce_v11_0_hw_init,
3441 .hw_fini = dce_v11_0_hw_fini,
3442 .suspend = dce_v11_0_suspend,
3443 .resume = dce_v11_0_resume,
3444 .is_idle = dce_v11_0_is_idle,
3445 .wait_for_idle = dce_v11_0_wait_for_idle,
3446 .soft_reset = dce_v11_0_soft_reset,
3447 .set_clockgating_state = dce_v11_0_set_clockgating_state,
3448 .set_powergating_state = dce_v11_0_set_powergating_state,
3449};
3450
3451static void
3452dce_v11_0_encoder_mode_set(struct drm_encoder *encoder,
3453 struct drm_display_mode *mode,
3454 struct drm_display_mode *adjusted_mode)
3455{
3456 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3457
3458 amdgpu_encoder->pixel_clock = adjusted_mode->clock;
3459
3460 /* need to call this here rather than in prepare() since we need some crtc info */
3461 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3462
3463 /* set scaler clears this on some chips */
3464 dce_v11_0_set_interleave(encoder->crtc, mode);
3465
3466 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI) {
3467 dce_v11_0_afmt_enable(encoder, true);
3468 dce_v11_0_afmt_setmode(encoder, adjusted_mode);
3469 }
3470}
3471
3472static void dce_v11_0_encoder_prepare(struct drm_encoder *encoder)
3473{
3474 struct amdgpu_device *adev = encoder->dev->dev_private;
3475 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3476 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
3477
3478 if ((amdgpu_encoder->active_device &
3479 (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) ||
3480 (amdgpu_encoder_get_dp_bridge_encoder_id(encoder) !=
3481 ENCODER_OBJECT_ID_NONE)) {
3482 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
3483 if (dig) {
3484 dig->dig_encoder = dce_v11_0_pick_dig_encoder(encoder);
3485 if (amdgpu_encoder->active_device & ATOM_DEVICE_DFP_SUPPORT)
3486 dig->afmt = adev->mode_info.afmt[dig->dig_encoder];
3487 }
3488 }
3489
3490 amdgpu_atombios_scratch_regs_lock(adev, true);
3491
3492 if (connector) {
3493 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
3494
3495 /* select the clock/data port if it uses a router */
3496 if (amdgpu_connector->router.cd_valid)
3497 amdgpu_i2c_router_select_cd_port(amdgpu_connector);
3498
3499 /* turn eDP panel on for mode set */
3500 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
3501 amdgpu_atombios_encoder_set_edp_panel_power(connector,
3502 ATOM_TRANSMITTER_ACTION_POWER_ON);
3503 }
3504
3505 /* this is needed for the pll/ss setup to work correctly in some cases */
3506 amdgpu_atombios_encoder_set_crtc_source(encoder);
3507 /* set up the FMT blocks */
3508 dce_v11_0_program_fmt(encoder);
3509}
3510
3511static void dce_v11_0_encoder_commit(struct drm_encoder *encoder)
3512{
3513 struct drm_device *dev = encoder->dev;
3514 struct amdgpu_device *adev = dev->dev_private;
3515
3516 /* need to call this here as we need the crtc set up */
3517 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
3518 amdgpu_atombios_scratch_regs_lock(adev, false);
3519}
3520
3521static void dce_v11_0_encoder_disable(struct drm_encoder *encoder)
3522{
3523 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3524 struct amdgpu_encoder_atom_dig *dig;
3525
3526 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3527
3528 if (amdgpu_atombios_encoder_is_digital(encoder)) {
3529 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI)
3530 dce_v11_0_afmt_enable(encoder, false);
3531 dig = amdgpu_encoder->enc_priv;
3532 dig->dig_encoder = -1;
3533 }
3534 amdgpu_encoder->active_device = 0;
3535}
3536
3537/* these are handled by the primary encoders */
3538static void dce_v11_0_ext_prepare(struct drm_encoder *encoder)
3539{
3540
3541}
3542
3543static void dce_v11_0_ext_commit(struct drm_encoder *encoder)
3544{
3545
3546}
3547
3548static void
3549dce_v11_0_ext_mode_set(struct drm_encoder *encoder,
3550 struct drm_display_mode *mode,
3551 struct drm_display_mode *adjusted_mode)
3552{
3553
3554}
3555
3556static void dce_v11_0_ext_disable(struct drm_encoder *encoder)
3557{
3558
3559}
3560
3561static void
3562dce_v11_0_ext_dpms(struct drm_encoder *encoder, int mode)
3563{
3564
3565}
3566
3567static const struct drm_encoder_helper_funcs dce_v11_0_ext_helper_funcs = {
3568 .dpms = dce_v11_0_ext_dpms,
3569 .prepare = dce_v11_0_ext_prepare,
3570 .mode_set = dce_v11_0_ext_mode_set,
3571 .commit = dce_v11_0_ext_commit,
3572 .disable = dce_v11_0_ext_disable,
3573 /* no detect for TMDS/LVDS yet */
3574};
3575
3576static const struct drm_encoder_helper_funcs dce_v11_0_dig_helper_funcs = {
3577 .dpms = amdgpu_atombios_encoder_dpms,
3578 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3579 .prepare = dce_v11_0_encoder_prepare,
3580 .mode_set = dce_v11_0_encoder_mode_set,
3581 .commit = dce_v11_0_encoder_commit,
3582 .disable = dce_v11_0_encoder_disable,
3583 .detect = amdgpu_atombios_encoder_dig_detect,
3584};
3585
3586static const struct drm_encoder_helper_funcs dce_v11_0_dac_helper_funcs = {
3587 .dpms = amdgpu_atombios_encoder_dpms,
3588 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3589 .prepare = dce_v11_0_encoder_prepare,
3590 .mode_set = dce_v11_0_encoder_mode_set,
3591 .commit = dce_v11_0_encoder_commit,
3592 .detect = amdgpu_atombios_encoder_dac_detect,
3593};
3594
3595static void dce_v11_0_encoder_destroy(struct drm_encoder *encoder)
3596{
3597 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3598 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3599 amdgpu_atombios_encoder_fini_backlight(amdgpu_encoder);
3600 kfree(amdgpu_encoder->enc_priv);
3601 drm_encoder_cleanup(encoder);
3602 kfree(amdgpu_encoder);
3603}
3604
3605static const struct drm_encoder_funcs dce_v11_0_encoder_funcs = {
3606 .destroy = dce_v11_0_encoder_destroy,
3607};
3608
3609static void dce_v11_0_encoder_add(struct amdgpu_device *adev,
3610 uint32_t encoder_enum,
3611 uint32_t supported_device,
3612 u16 caps)
3613{
3614 struct drm_device *dev = adev->ddev;
3615 struct drm_encoder *encoder;
3616 struct amdgpu_encoder *amdgpu_encoder;
3617
3618 /* see if we already added it */
3619 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3620 amdgpu_encoder = to_amdgpu_encoder(encoder);
3621 if (amdgpu_encoder->encoder_enum == encoder_enum) {
3622 amdgpu_encoder->devices |= supported_device;
3623 return;
3624 }
3625
3626 }
3627
3628 /* add a new one */
3629 amdgpu_encoder = kzalloc(sizeof(struct amdgpu_encoder), GFP_KERNEL);
3630 if (!amdgpu_encoder)
3631 return;
3632
3633 encoder = &amdgpu_encoder->base;
3634 switch (adev->mode_info.num_crtc) {
3635 case 1:
3636 encoder->possible_crtcs = 0x1;
3637 break;
3638 case 2:
3639 default:
3640 encoder->possible_crtcs = 0x3;
3641 break;
3642 case 3:
3643 encoder->possible_crtcs = 0x7;
3644 break;
3645 case 4:
3646 encoder->possible_crtcs = 0xf;
3647 break;
3648 case 5:
3649 encoder->possible_crtcs = 0x1f;
3650 break;
3651 case 6:
3652 encoder->possible_crtcs = 0x3f;
3653 break;
3654 }
3655
3656 amdgpu_encoder->enc_priv = NULL;
3657
3658 amdgpu_encoder->encoder_enum = encoder_enum;
3659 amdgpu_encoder->encoder_id = (encoder_enum & OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
3660 amdgpu_encoder->devices = supported_device;
3661 amdgpu_encoder->rmx_type = RMX_OFF;
3662 amdgpu_encoder->underscan_type = UNDERSCAN_OFF;
3663 amdgpu_encoder->is_ext_encoder = false;
3664 amdgpu_encoder->caps = caps;
3665
3666 switch (amdgpu_encoder->encoder_id) {
3667 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1:
3668 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2:
3669 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3670 DRM_MODE_ENCODER_DAC, NULL);
3671 drm_encoder_helper_add(encoder, &dce_v11_0_dac_helper_funcs);
3672 break;
3673 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
3674 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
3675 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
3676 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
3677 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
3678 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
3679 amdgpu_encoder->rmx_type = RMX_FULL;
3680 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3681 DRM_MODE_ENCODER_LVDS, NULL);
3682 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_lcd_info(amdgpu_encoder);
3683 } else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
3684 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3685 DRM_MODE_ENCODER_DAC, NULL);
3686 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3687 } else {
3688 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3689 DRM_MODE_ENCODER_TMDS, NULL);
3690 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3691 }
3692 drm_encoder_helper_add(encoder, &dce_v11_0_dig_helper_funcs);
3693 break;
3694 case ENCODER_OBJECT_ID_SI170B:
3695 case ENCODER_OBJECT_ID_CH7303:
3696 case ENCODER_OBJECT_ID_EXTERNAL_SDVOA:
3697 case ENCODER_OBJECT_ID_EXTERNAL_SDVOB:
3698 case ENCODER_OBJECT_ID_TITFP513:
3699 case ENCODER_OBJECT_ID_VT1623:
3700 case ENCODER_OBJECT_ID_HDMI_SI1930:
3701 case ENCODER_OBJECT_ID_TRAVIS:
3702 case ENCODER_OBJECT_ID_NUTMEG:
3703 /* these are handled by the primary encoders */
3704 amdgpu_encoder->is_ext_encoder = true;
3705 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3706 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3707 DRM_MODE_ENCODER_LVDS, NULL);
3708 else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT))
3709 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3710 DRM_MODE_ENCODER_DAC, NULL);
3711 else
3712 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3713 DRM_MODE_ENCODER_TMDS, NULL);
3714 drm_encoder_helper_add(encoder, &dce_v11_0_ext_helper_funcs);
3715 break;
3716 }
3717}
3718
3719static const struct amdgpu_display_funcs dce_v11_0_display_funcs = {
3720 .bandwidth_update = &dce_v11_0_bandwidth_update,
3721 .vblank_get_counter = &dce_v11_0_vblank_get_counter,
3722 .backlight_set_level = &amdgpu_atombios_encoder_set_backlight_level,
3723 .backlight_get_level = &amdgpu_atombios_encoder_get_backlight_level,
3724 .hpd_sense = &dce_v11_0_hpd_sense,
3725 .hpd_set_polarity = &dce_v11_0_hpd_set_polarity,
3726 .hpd_get_gpio_reg = &dce_v11_0_hpd_get_gpio_reg,
3727 .page_flip = &dce_v11_0_page_flip,
3728 .page_flip_get_scanoutpos = &dce_v11_0_crtc_get_scanoutpos,
3729 .add_encoder = &dce_v11_0_encoder_add,
3730 .add_connector = &amdgpu_connector_add,
3731};
3732
3733static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev)
3734{
3735 adev->mode_info.funcs = &dce_v11_0_display_funcs;
3736}
3737
3738static const struct amdgpu_irq_src_funcs dce_v11_0_crtc_irq_funcs = {
3739 .set = dce_v11_0_set_crtc_irq_state,
3740 .process = dce_v11_0_crtc_irq,
3741};
3742
3743static const struct amdgpu_irq_src_funcs dce_v11_0_pageflip_irq_funcs = {
3744 .set = dce_v11_0_set_pageflip_irq_state,
3745 .process = dce_v11_0_pageflip_irq,
3746};
3747
3748static const struct amdgpu_irq_src_funcs dce_v11_0_hpd_irq_funcs = {
3749 .set = dce_v11_0_set_hpd_irq_state,
3750 .process = dce_v11_0_hpd_irq,
3751};
3752
3753static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev)
3754{
3755 if (adev->mode_info.num_crtc > 0)
3756 adev->crtc_irq.num_types = AMDGPU_CRTC_IRQ_VLINE1 + adev->mode_info.num_crtc;
3757 else
3758 adev->crtc_irq.num_types = 0;
3759 adev->crtc_irq.funcs = &dce_v11_0_crtc_irq_funcs;
3760
3761 adev->pageflip_irq.num_types = adev->mode_info.num_crtc;
3762 adev->pageflip_irq.funcs = &dce_v11_0_pageflip_irq_funcs;
3763
3764 adev->hpd_irq.num_types = adev->mode_info.num_hpd;
3765 adev->hpd_irq.funcs = &dce_v11_0_hpd_irq_funcs;
3766}
3767
3768const struct amdgpu_ip_block_version dce_v11_0_ip_block =
3769{
3770 .type = AMD_IP_BLOCK_TYPE_DCE,
3771 .major = 11,
3772 .minor = 0,
3773 .rev = 0,
3774 .funcs = &dce_v11_0_ip_funcs,
3775};
3776
3777const struct amdgpu_ip_block_version dce_v11_2_ip_block =
3778{
3779 .type = AMD_IP_BLOCK_TYPE_DCE,
3780 .major = 11,
3781 .minor = 2,
3782 .rev = 0,
3783 .funcs = &dce_v11_0_ip_funcs,
3784};
1/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 */
23
24#include <drm/drm_fb_helper.h>
25#include <drm/drm_fourcc.h>
26#include <drm/drm_vblank.h>
27
28#include "amdgpu.h"
29#include "amdgpu_pm.h"
30#include "amdgpu_i2c.h"
31#include "vid.h"
32#include "atom.h"
33#include "amdgpu_atombios.h"
34#include "atombios_crtc.h"
35#include "atombios_encoders.h"
36#include "amdgpu_pll.h"
37#include "amdgpu_connectors.h"
38#include "amdgpu_display.h"
39#include "dce_v11_0.h"
40
41#include "dce/dce_11_0_d.h"
42#include "dce/dce_11_0_sh_mask.h"
43#include "dce/dce_11_0_enum.h"
44#include "oss/oss_3_0_d.h"
45#include "oss/oss_3_0_sh_mask.h"
46#include "gmc/gmc_8_1_d.h"
47#include "gmc/gmc_8_1_sh_mask.h"
48
49#include "ivsrcid/ivsrcid_vislands30.h"
50
51static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev);
52static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev);
53
54static const u32 crtc_offsets[] =
55{
56 CRTC0_REGISTER_OFFSET,
57 CRTC1_REGISTER_OFFSET,
58 CRTC2_REGISTER_OFFSET,
59 CRTC3_REGISTER_OFFSET,
60 CRTC4_REGISTER_OFFSET,
61 CRTC5_REGISTER_OFFSET,
62 CRTC6_REGISTER_OFFSET
63};
64
65static const u32 hpd_offsets[] =
66{
67 HPD0_REGISTER_OFFSET,
68 HPD1_REGISTER_OFFSET,
69 HPD2_REGISTER_OFFSET,
70 HPD3_REGISTER_OFFSET,
71 HPD4_REGISTER_OFFSET,
72 HPD5_REGISTER_OFFSET
73};
74
75static const uint32_t dig_offsets[] = {
76 DIG0_REGISTER_OFFSET,
77 DIG1_REGISTER_OFFSET,
78 DIG2_REGISTER_OFFSET,
79 DIG3_REGISTER_OFFSET,
80 DIG4_REGISTER_OFFSET,
81 DIG5_REGISTER_OFFSET,
82 DIG6_REGISTER_OFFSET,
83 DIG7_REGISTER_OFFSET,
84 DIG8_REGISTER_OFFSET
85};
86
87static const struct {
88 uint32_t reg;
89 uint32_t vblank;
90 uint32_t vline;
91 uint32_t hpd;
92
93} interrupt_status_offsets[] = { {
94 .reg = mmDISP_INTERRUPT_STATUS,
95 .vblank = DISP_INTERRUPT_STATUS__LB_D1_VBLANK_INTERRUPT_MASK,
96 .vline = DISP_INTERRUPT_STATUS__LB_D1_VLINE_INTERRUPT_MASK,
97 .hpd = DISP_INTERRUPT_STATUS__DC_HPD1_INTERRUPT_MASK
98}, {
99 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE,
100 .vblank = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VBLANK_INTERRUPT_MASK,
101 .vline = DISP_INTERRUPT_STATUS_CONTINUE__LB_D2_VLINE_INTERRUPT_MASK,
102 .hpd = DISP_INTERRUPT_STATUS_CONTINUE__DC_HPD2_INTERRUPT_MASK
103}, {
104 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE2,
105 .vblank = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VBLANK_INTERRUPT_MASK,
106 .vline = DISP_INTERRUPT_STATUS_CONTINUE2__LB_D3_VLINE_INTERRUPT_MASK,
107 .hpd = DISP_INTERRUPT_STATUS_CONTINUE2__DC_HPD3_INTERRUPT_MASK
108}, {
109 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE3,
110 .vblank = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VBLANK_INTERRUPT_MASK,
111 .vline = DISP_INTERRUPT_STATUS_CONTINUE3__LB_D4_VLINE_INTERRUPT_MASK,
112 .hpd = DISP_INTERRUPT_STATUS_CONTINUE3__DC_HPD4_INTERRUPT_MASK
113}, {
114 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE4,
115 .vblank = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VBLANK_INTERRUPT_MASK,
116 .vline = DISP_INTERRUPT_STATUS_CONTINUE4__LB_D5_VLINE_INTERRUPT_MASK,
117 .hpd = DISP_INTERRUPT_STATUS_CONTINUE4__DC_HPD5_INTERRUPT_MASK
118}, {
119 .reg = mmDISP_INTERRUPT_STATUS_CONTINUE5,
120 .vblank = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VBLANK_INTERRUPT_MASK,
121 .vline = DISP_INTERRUPT_STATUS_CONTINUE5__LB_D6_VLINE_INTERRUPT_MASK,
122 .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
123} };
124
125static const u32 cz_golden_settings_a11[] =
126{
127 mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
128 mmFBC_MISC, 0x1f311fff, 0x14300000,
129};
130
131static const u32 cz_mgcg_cgcg_init[] =
132{
133 mmXDMA_CLOCK_GATING_CNTL, 0xffffffff, 0x00000100,
134 mmXDMA_MEM_POWER_CNTL, 0x00000101, 0x00000000,
135};
136
137static const u32 stoney_golden_settings_a11[] =
138{
139 mmCRTC_DOUBLE_BUFFER_CONTROL, 0x00010101, 0x00010000,
140 mmFBC_MISC, 0x1f311fff, 0x14302000,
141};
142
143static const u32 polaris11_golden_settings_a11[] =
144{
145 mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
146 mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
147 mmFBC_DEBUG1, 0xffffffff, 0x00000008,
148 mmFBC_MISC, 0x9f313fff, 0x14302008,
149 mmHDMI_CONTROL, 0x313f031f, 0x00000011,
150};
151
152static const u32 polaris10_golden_settings_a11[] =
153{
154 mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
155 mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
156 mmFBC_MISC, 0x9f313fff, 0x14302008,
157 mmHDMI_CONTROL, 0x313f031f, 0x00000011,
158};
159
160static void dce_v11_0_init_golden_registers(struct amdgpu_device *adev)
161{
162 switch (adev->asic_type) {
163 case CHIP_CARRIZO:
164 amdgpu_device_program_register_sequence(adev,
165 cz_mgcg_cgcg_init,
166 ARRAY_SIZE(cz_mgcg_cgcg_init));
167 amdgpu_device_program_register_sequence(adev,
168 cz_golden_settings_a11,
169 ARRAY_SIZE(cz_golden_settings_a11));
170 break;
171 case CHIP_STONEY:
172 amdgpu_device_program_register_sequence(adev,
173 stoney_golden_settings_a11,
174 ARRAY_SIZE(stoney_golden_settings_a11));
175 break;
176 case CHIP_POLARIS11:
177 case CHIP_POLARIS12:
178 amdgpu_device_program_register_sequence(adev,
179 polaris11_golden_settings_a11,
180 ARRAY_SIZE(polaris11_golden_settings_a11));
181 break;
182 case CHIP_POLARIS10:
183 case CHIP_VEGAM:
184 amdgpu_device_program_register_sequence(adev,
185 polaris10_golden_settings_a11,
186 ARRAY_SIZE(polaris10_golden_settings_a11));
187 break;
188 default:
189 break;
190 }
191}
192
193static u32 dce_v11_0_audio_endpt_rreg(struct amdgpu_device *adev,
194 u32 block_offset, u32 reg)
195{
196 unsigned long flags;
197 u32 r;
198
199 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
200 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
201 r = RREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset);
202 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
203
204 return r;
205}
206
207static void dce_v11_0_audio_endpt_wreg(struct amdgpu_device *adev,
208 u32 block_offset, u32 reg, u32 v)
209{
210 unsigned long flags;
211
212 spin_lock_irqsave(&adev->audio_endpt_idx_lock, flags);
213 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_INDEX + block_offset, reg);
214 WREG32(mmAZALIA_F0_CODEC_ENDPOINT_DATA + block_offset, v);
215 spin_unlock_irqrestore(&adev->audio_endpt_idx_lock, flags);
216}
217
218static u32 dce_v11_0_vblank_get_counter(struct amdgpu_device *adev, int crtc)
219{
220 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
221 return 0;
222 else
223 return RREG32(mmCRTC_STATUS_FRAME_COUNT + crtc_offsets[crtc]);
224}
225
226static void dce_v11_0_pageflip_interrupt_init(struct amdgpu_device *adev)
227{
228 unsigned i;
229
230 /* Enable pflip interrupts */
231 for (i = 0; i < adev->mode_info.num_crtc; i++)
232 amdgpu_irq_get(adev, &adev->pageflip_irq, i);
233}
234
235static void dce_v11_0_pageflip_interrupt_fini(struct amdgpu_device *adev)
236{
237 unsigned i;
238
239 /* Disable pflip interrupts */
240 for (i = 0; i < adev->mode_info.num_crtc; i++)
241 amdgpu_irq_put(adev, &adev->pageflip_irq, i);
242}
243
244/**
245 * dce_v11_0_page_flip - pageflip callback.
246 *
247 * @adev: amdgpu_device pointer
248 * @crtc_id: crtc to cleanup pageflip on
249 * @crtc_base: new address of the crtc (GPU MC address)
250 * @async: asynchronous flip
251 *
252 * Triggers the actual pageflip by updating the primary
253 * surface base address.
254 */
255static void dce_v11_0_page_flip(struct amdgpu_device *adev,
256 int crtc_id, u64 crtc_base, bool async)
257{
258 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
259 struct drm_framebuffer *fb = amdgpu_crtc->base.primary->fb;
260 u32 tmp;
261
262 /* flip immediate for async, default is vsync */
263 tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
264 tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
265 GRPH_SURFACE_UPDATE_IMMEDIATE_EN, async ? 1 : 0);
266 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
267 /* update pitch */
268 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset,
269 fb->pitches[0] / fb->format->cpp[0]);
270 /* update the scanout addresses */
271 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
272 upper_32_bits(crtc_base));
273 /* writing to the low address triggers the update */
274 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
275 lower_32_bits(crtc_base));
276 /* post the write */
277 RREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset);
278}
279
280static int dce_v11_0_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
281 u32 *vbl, u32 *position)
282{
283 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
284 return -EINVAL;
285
286 *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]);
287 *position = RREG32(mmCRTC_STATUS_POSITION + crtc_offsets[crtc]);
288
289 return 0;
290}
291
292/**
293 * dce_v11_0_hpd_sense - hpd sense callback.
294 *
295 * @adev: amdgpu_device pointer
296 * @hpd: hpd (hotplug detect) pin
297 *
298 * Checks if a digital monitor is connected (evergreen+).
299 * Returns true if connected, false if not connected.
300 */
301static bool dce_v11_0_hpd_sense(struct amdgpu_device *adev,
302 enum amdgpu_hpd_id hpd)
303{
304 bool connected = false;
305
306 if (hpd >= adev->mode_info.num_hpd)
307 return connected;
308
309 if (RREG32(mmDC_HPD_INT_STATUS + hpd_offsets[hpd]) &
310 DC_HPD_INT_STATUS__DC_HPD_SENSE_MASK)
311 connected = true;
312
313 return connected;
314}
315
316/**
317 * dce_v11_0_hpd_set_polarity - hpd set polarity callback.
318 *
319 * @adev: amdgpu_device pointer
320 * @hpd: hpd (hotplug detect) pin
321 *
322 * Set the polarity of the hpd pin (evergreen+).
323 */
324static void dce_v11_0_hpd_set_polarity(struct amdgpu_device *adev,
325 enum amdgpu_hpd_id hpd)
326{
327 u32 tmp;
328 bool connected = dce_v11_0_hpd_sense(adev, hpd);
329
330 if (hpd >= adev->mode_info.num_hpd)
331 return;
332
333 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
334 if (connected)
335 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 0);
336 else
337 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_POLARITY, 1);
338 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
339}
340
341/**
342 * dce_v11_0_hpd_init - hpd setup callback.
343 *
344 * @adev: amdgpu_device pointer
345 *
346 * Setup the hpd pins used by the card (evergreen+).
347 * Enable the pin, set the polarity, and enable the hpd interrupts.
348 */
349static void dce_v11_0_hpd_init(struct amdgpu_device *adev)
350{
351 struct drm_device *dev = adev_to_drm(adev);
352 struct drm_connector *connector;
353 struct drm_connector_list_iter iter;
354 u32 tmp;
355
356 drm_connector_list_iter_begin(dev, &iter);
357 drm_for_each_connector_iter(connector, &iter) {
358 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
359
360 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
361 continue;
362
363 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP ||
364 connector->connector_type == DRM_MODE_CONNECTOR_LVDS) {
365 /* don't try to enable hpd on eDP or LVDS avoid breaking the
366 * aux dp channel on imac and help (but not completely fix)
367 * https://bugzilla.redhat.com/show_bug.cgi?id=726143
368 * also avoid interrupt storms during dpms.
369 */
370 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
371 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
372 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
373 continue;
374 }
375
376 tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
377 tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 1);
378 WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
379
380 tmp = RREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd]);
381 tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
382 DC_HPD_CONNECT_INT_DELAY,
383 AMDGPU_HPD_CONNECT_INT_DELAY_IN_MS);
384 tmp = REG_SET_FIELD(tmp, DC_HPD_TOGGLE_FILT_CNTL,
385 DC_HPD_DISCONNECT_INT_DELAY,
386 AMDGPU_HPD_DISCONNECT_INT_DELAY_IN_MS);
387 WREG32(mmDC_HPD_TOGGLE_FILT_CNTL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
388
389 dce_v11_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd);
390 amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
391 }
392 drm_connector_list_iter_end(&iter);
393}
394
395/**
396 * dce_v11_0_hpd_fini - hpd tear down callback.
397 *
398 * @adev: amdgpu_device pointer
399 *
400 * Tear down the hpd pins used by the card (evergreen+).
401 * Disable the hpd interrupts.
402 */
403static void dce_v11_0_hpd_fini(struct amdgpu_device *adev)
404{
405 struct drm_device *dev = adev_to_drm(adev);
406 struct drm_connector *connector;
407 struct drm_connector_list_iter iter;
408 u32 tmp;
409
410 drm_connector_list_iter_begin(dev, &iter);
411 drm_for_each_connector_iter(connector, &iter) {
412 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
413
414 if (amdgpu_connector->hpd.hpd >= adev->mode_info.num_hpd)
415 continue;
416
417 tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd]);
418 tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 0);
419 WREG32(mmDC_HPD_CONTROL + hpd_offsets[amdgpu_connector->hpd.hpd], tmp);
420
421 amdgpu_irq_put(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd);
422 }
423 drm_connector_list_iter_end(&iter);
424}
425
426static u32 dce_v11_0_hpd_get_gpio_reg(struct amdgpu_device *adev)
427{
428 return mmDC_GPIO_HPD_A;
429}
430
431static bool dce_v11_0_is_display_hung(struct amdgpu_device *adev)
432{
433 u32 crtc_hung = 0;
434 u32 crtc_status[6];
435 u32 i, j, tmp;
436
437 for (i = 0; i < adev->mode_info.num_crtc; i++) {
438 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
439 if (REG_GET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN)) {
440 crtc_status[i] = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
441 crtc_hung |= (1 << i);
442 }
443 }
444
445 for (j = 0; j < 10; j++) {
446 for (i = 0; i < adev->mode_info.num_crtc; i++) {
447 if (crtc_hung & (1 << i)) {
448 tmp = RREG32(mmCRTC_STATUS_HV_COUNT + crtc_offsets[i]);
449 if (tmp != crtc_status[i])
450 crtc_hung &= ~(1 << i);
451 }
452 }
453 if (crtc_hung == 0)
454 return false;
455 udelay(100);
456 }
457
458 return true;
459}
460
461static void dce_v11_0_set_vga_render_state(struct amdgpu_device *adev,
462 bool render)
463{
464 u32 tmp;
465
466 /* Lockout access through VGA aperture*/
467 tmp = RREG32(mmVGA_HDP_CONTROL);
468 if (render)
469 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 0);
470 else
471 tmp = REG_SET_FIELD(tmp, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
472 WREG32(mmVGA_HDP_CONTROL, tmp);
473
474 /* disable VGA render */
475 tmp = RREG32(mmVGA_RENDER_CONTROL);
476 if (render)
477 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 1);
478 else
479 tmp = REG_SET_FIELD(tmp, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
480 WREG32(mmVGA_RENDER_CONTROL, tmp);
481}
482
483static int dce_v11_0_get_num_crtc (struct amdgpu_device *adev)
484{
485 int num_crtc = 0;
486
487 switch (adev->asic_type) {
488 case CHIP_CARRIZO:
489 num_crtc = 3;
490 break;
491 case CHIP_STONEY:
492 num_crtc = 2;
493 break;
494 case CHIP_POLARIS10:
495 case CHIP_VEGAM:
496 num_crtc = 6;
497 break;
498 case CHIP_POLARIS11:
499 case CHIP_POLARIS12:
500 num_crtc = 5;
501 break;
502 default:
503 num_crtc = 0;
504 }
505 return num_crtc;
506}
507
508void dce_v11_0_disable_dce(struct amdgpu_device *adev)
509{
510 /*Disable VGA render and enabled crtc, if has DCE engine*/
511 if (amdgpu_atombios_has_dce_engine_info(adev)) {
512 u32 tmp;
513 int crtc_enabled, i;
514
515 dce_v11_0_set_vga_render_state(adev, false);
516
517 /*Disable crtc*/
518 for (i = 0; i < dce_v11_0_get_num_crtc(adev); i++) {
519 crtc_enabled = REG_GET_FIELD(RREG32(mmCRTC_CONTROL + crtc_offsets[i]),
520 CRTC_CONTROL, CRTC_MASTER_EN);
521 if (crtc_enabled) {
522 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 1);
523 tmp = RREG32(mmCRTC_CONTROL + crtc_offsets[i]);
524 tmp = REG_SET_FIELD(tmp, CRTC_CONTROL, CRTC_MASTER_EN, 0);
525 WREG32(mmCRTC_CONTROL + crtc_offsets[i], tmp);
526 WREG32(mmCRTC_UPDATE_LOCK + crtc_offsets[i], 0);
527 }
528 }
529 }
530}
531
532static void dce_v11_0_program_fmt(struct drm_encoder *encoder)
533{
534 struct drm_device *dev = encoder->dev;
535 struct amdgpu_device *adev = drm_to_adev(dev);
536 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
537 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
538 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
539 int bpc = 0;
540 u32 tmp = 0;
541 enum amdgpu_connector_dither dither = AMDGPU_FMT_DITHER_DISABLE;
542
543 if (connector) {
544 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
545 bpc = amdgpu_connector_get_monitor_bpc(connector);
546 dither = amdgpu_connector->dither;
547 }
548
549 /* LVDS/eDP FMT is set up by atom */
550 if (amdgpu_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
551 return;
552
553 /* not needed for analog */
554 if ((amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1) ||
555 (amdgpu_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2))
556 return;
557
558 if (bpc == 0)
559 return;
560
561 switch (bpc) {
562 case 6:
563 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
564 /* XXX sort out optimal dither settings */
565 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
566 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
567 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
568 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 0);
569 } else {
570 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
571 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 0);
572 }
573 break;
574 case 8:
575 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
576 /* XXX sort out optimal dither settings */
577 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
578 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
579 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
580 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
581 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 1);
582 } else {
583 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
584 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 1);
585 }
586 break;
587 case 10:
588 if (dither == AMDGPU_FMT_DITHER_ENABLE) {
589 /* XXX sort out optimal dither settings */
590 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_FRAME_RANDOM_ENABLE, 1);
591 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_HIGHPASS_RANDOM_ENABLE, 1);
592 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_RGB_RANDOM_ENABLE, 1);
593 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_EN, 1);
594 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_SPATIAL_DITHER_DEPTH, 2);
595 } else {
596 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_EN, 1);
597 tmp = REG_SET_FIELD(tmp, FMT_BIT_DEPTH_CONTROL, FMT_TRUNCATE_DEPTH, 2);
598 }
599 break;
600 default:
601 /* not needed */
602 break;
603 }
604
605 WREG32(mmFMT_BIT_DEPTH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
606}
607
608
609/* display watermark setup */
610/**
611 * dce_v11_0_line_buffer_adjust - Set up the line buffer
612 *
613 * @adev: amdgpu_device pointer
614 * @amdgpu_crtc: the selected display controller
615 * @mode: the current display mode on the selected display
616 * controller
617 *
618 * Setup up the line buffer allocation for
619 * the selected display controller (CIK).
620 * Returns the line buffer size in pixels.
621 */
622static u32 dce_v11_0_line_buffer_adjust(struct amdgpu_device *adev,
623 struct amdgpu_crtc *amdgpu_crtc,
624 struct drm_display_mode *mode)
625{
626 u32 tmp, buffer_alloc, i, mem_cfg;
627 u32 pipe_offset = amdgpu_crtc->crtc_id;
628 /*
629 * Line Buffer Setup
630 * There are 6 line buffers, one for each display controllers.
631 * There are 3 partitions per LB. Select the number of partitions
632 * to enable based on the display width. For display widths larger
633 * than 4096, you need use to use 2 display controllers and combine
634 * them using the stereo blender.
635 */
636 if (amdgpu_crtc->base.enabled && mode) {
637 if (mode->crtc_hdisplay < 1920) {
638 mem_cfg = 1;
639 buffer_alloc = 2;
640 } else if (mode->crtc_hdisplay < 2560) {
641 mem_cfg = 2;
642 buffer_alloc = 2;
643 } else if (mode->crtc_hdisplay < 4096) {
644 mem_cfg = 0;
645 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
646 } else {
647 DRM_DEBUG_KMS("Mode too big for LB!\n");
648 mem_cfg = 0;
649 buffer_alloc = (adev->flags & AMD_IS_APU) ? 2 : 4;
650 }
651 } else {
652 mem_cfg = 1;
653 buffer_alloc = 0;
654 }
655
656 tmp = RREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset);
657 tmp = REG_SET_FIELD(tmp, LB_MEMORY_CTRL, LB_MEMORY_CONFIG, mem_cfg);
658 WREG32(mmLB_MEMORY_CTRL + amdgpu_crtc->crtc_offset, tmp);
659
660 tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
661 tmp = REG_SET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATED, buffer_alloc);
662 WREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset, tmp);
663
664 for (i = 0; i < adev->usec_timeout; i++) {
665 tmp = RREG32(mmPIPE0_DMIF_BUFFER_CONTROL + pipe_offset);
666 if (REG_GET_FIELD(tmp, PIPE0_DMIF_BUFFER_CONTROL, DMIF_BUFFERS_ALLOCATION_COMPLETED))
667 break;
668 udelay(1);
669 }
670
671 if (amdgpu_crtc->base.enabled && mode) {
672 switch (mem_cfg) {
673 case 0:
674 default:
675 return 4096 * 2;
676 case 1:
677 return 1920 * 2;
678 case 2:
679 return 2560 * 2;
680 }
681 }
682
683 /* controller not enabled, so no lb used */
684 return 0;
685}
686
687/**
688 * cik_get_number_of_dram_channels - get the number of dram channels
689 *
690 * @adev: amdgpu_device pointer
691 *
692 * Look up the number of video ram channels (CIK).
693 * Used for display watermark bandwidth calculations
694 * Returns the number of dram channels
695 */
696static u32 cik_get_number_of_dram_channels(struct amdgpu_device *adev)
697{
698 u32 tmp = RREG32(mmMC_SHARED_CHMAP);
699
700 switch (REG_GET_FIELD(tmp, MC_SHARED_CHMAP, NOOFCHAN)) {
701 case 0:
702 default:
703 return 1;
704 case 1:
705 return 2;
706 case 2:
707 return 4;
708 case 3:
709 return 8;
710 case 4:
711 return 3;
712 case 5:
713 return 6;
714 case 6:
715 return 10;
716 case 7:
717 return 12;
718 case 8:
719 return 16;
720 }
721}
722
723struct dce10_wm_params {
724 u32 dram_channels; /* number of dram channels */
725 u32 yclk; /* bandwidth per dram data pin in kHz */
726 u32 sclk; /* engine clock in kHz */
727 u32 disp_clk; /* display clock in kHz */
728 u32 src_width; /* viewport width */
729 u32 active_time; /* active display time in ns */
730 u32 blank_time; /* blank time in ns */
731 bool interlaced; /* mode is interlaced */
732 fixed20_12 vsc; /* vertical scale ratio */
733 u32 num_heads; /* number of active crtcs */
734 u32 bytes_per_pixel; /* bytes per pixel display + overlay */
735 u32 lb_size; /* line buffer allocated to pipe */
736 u32 vtaps; /* vertical scaler taps */
737};
738
739/**
740 * dce_v11_0_dram_bandwidth - get the dram bandwidth
741 *
742 * @wm: watermark calculation data
743 *
744 * Calculate the raw dram bandwidth (CIK).
745 * Used for display watermark bandwidth calculations
746 * Returns the dram bandwidth in MBytes/s
747 */
748static u32 dce_v11_0_dram_bandwidth(struct dce10_wm_params *wm)
749{
750 /* Calculate raw DRAM Bandwidth */
751 fixed20_12 dram_efficiency; /* 0.7 */
752 fixed20_12 yclk, dram_channels, bandwidth;
753 fixed20_12 a;
754
755 a.full = dfixed_const(1000);
756 yclk.full = dfixed_const(wm->yclk);
757 yclk.full = dfixed_div(yclk, a);
758 dram_channels.full = dfixed_const(wm->dram_channels * 4);
759 a.full = dfixed_const(10);
760 dram_efficiency.full = dfixed_const(7);
761 dram_efficiency.full = dfixed_div(dram_efficiency, a);
762 bandwidth.full = dfixed_mul(dram_channels, yclk);
763 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
764
765 return dfixed_trunc(bandwidth);
766}
767
768/**
769 * dce_v11_0_dram_bandwidth_for_display - get the dram bandwidth for display
770 *
771 * @wm: watermark calculation data
772 *
773 * Calculate the dram bandwidth used for display (CIK).
774 * Used for display watermark bandwidth calculations
775 * Returns the dram bandwidth for display in MBytes/s
776 */
777static u32 dce_v11_0_dram_bandwidth_for_display(struct dce10_wm_params *wm)
778{
779 /* Calculate DRAM Bandwidth and the part allocated to display. */
780 fixed20_12 disp_dram_allocation; /* 0.3 to 0.7 */
781 fixed20_12 yclk, dram_channels, bandwidth;
782 fixed20_12 a;
783
784 a.full = dfixed_const(1000);
785 yclk.full = dfixed_const(wm->yclk);
786 yclk.full = dfixed_div(yclk, a);
787 dram_channels.full = dfixed_const(wm->dram_channels * 4);
788 a.full = dfixed_const(10);
789 disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */
790 disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a);
791 bandwidth.full = dfixed_mul(dram_channels, yclk);
792 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation);
793
794 return dfixed_trunc(bandwidth);
795}
796
797/**
798 * dce_v11_0_data_return_bandwidth - get the data return bandwidth
799 *
800 * @wm: watermark calculation data
801 *
802 * Calculate the data return bandwidth used for display (CIK).
803 * Used for display watermark bandwidth calculations
804 * Returns the data return bandwidth in MBytes/s
805 */
806static u32 dce_v11_0_data_return_bandwidth(struct dce10_wm_params *wm)
807{
808 /* Calculate the display Data return Bandwidth */
809 fixed20_12 return_efficiency; /* 0.8 */
810 fixed20_12 sclk, bandwidth;
811 fixed20_12 a;
812
813 a.full = dfixed_const(1000);
814 sclk.full = dfixed_const(wm->sclk);
815 sclk.full = dfixed_div(sclk, a);
816 a.full = dfixed_const(10);
817 return_efficiency.full = dfixed_const(8);
818 return_efficiency.full = dfixed_div(return_efficiency, a);
819 a.full = dfixed_const(32);
820 bandwidth.full = dfixed_mul(a, sclk);
821 bandwidth.full = dfixed_mul(bandwidth, return_efficiency);
822
823 return dfixed_trunc(bandwidth);
824}
825
826/**
827 * dce_v11_0_dmif_request_bandwidth - get the dmif bandwidth
828 *
829 * @wm: watermark calculation data
830 *
831 * Calculate the dmif bandwidth used for display (CIK).
832 * Used for display watermark bandwidth calculations
833 * Returns the dmif bandwidth in MBytes/s
834 */
835static u32 dce_v11_0_dmif_request_bandwidth(struct dce10_wm_params *wm)
836{
837 /* Calculate the DMIF Request Bandwidth */
838 fixed20_12 disp_clk_request_efficiency; /* 0.8 */
839 fixed20_12 disp_clk, bandwidth;
840 fixed20_12 a, b;
841
842 a.full = dfixed_const(1000);
843 disp_clk.full = dfixed_const(wm->disp_clk);
844 disp_clk.full = dfixed_div(disp_clk, a);
845 a.full = dfixed_const(32);
846 b.full = dfixed_mul(a, disp_clk);
847
848 a.full = dfixed_const(10);
849 disp_clk_request_efficiency.full = dfixed_const(8);
850 disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a);
851
852 bandwidth.full = dfixed_mul(b, disp_clk_request_efficiency);
853
854 return dfixed_trunc(bandwidth);
855}
856
857/**
858 * dce_v11_0_available_bandwidth - get the min available bandwidth
859 *
860 * @wm: watermark calculation data
861 *
862 * Calculate the min available bandwidth used for display (CIK).
863 * Used for display watermark bandwidth calculations
864 * Returns the min available bandwidth in MBytes/s
865 */
866static u32 dce_v11_0_available_bandwidth(struct dce10_wm_params *wm)
867{
868 /* Calculate the Available bandwidth. Display can use this temporarily but not in average. */
869 u32 dram_bandwidth = dce_v11_0_dram_bandwidth(wm);
870 u32 data_return_bandwidth = dce_v11_0_data_return_bandwidth(wm);
871 u32 dmif_req_bandwidth = dce_v11_0_dmif_request_bandwidth(wm);
872
873 return min(dram_bandwidth, min(data_return_bandwidth, dmif_req_bandwidth));
874}
875
876/**
877 * dce_v11_0_average_bandwidth - get the average available bandwidth
878 *
879 * @wm: watermark calculation data
880 *
881 * Calculate the average available bandwidth used for display (CIK).
882 * Used for display watermark bandwidth calculations
883 * Returns the average available bandwidth in MBytes/s
884 */
885static u32 dce_v11_0_average_bandwidth(struct dce10_wm_params *wm)
886{
887 /* Calculate the display mode Average Bandwidth
888 * DisplayMode should contain the source and destination dimensions,
889 * timing, etc.
890 */
891 fixed20_12 bpp;
892 fixed20_12 line_time;
893 fixed20_12 src_width;
894 fixed20_12 bandwidth;
895 fixed20_12 a;
896
897 a.full = dfixed_const(1000);
898 line_time.full = dfixed_const(wm->active_time + wm->blank_time);
899 line_time.full = dfixed_div(line_time, a);
900 bpp.full = dfixed_const(wm->bytes_per_pixel);
901 src_width.full = dfixed_const(wm->src_width);
902 bandwidth.full = dfixed_mul(src_width, bpp);
903 bandwidth.full = dfixed_mul(bandwidth, wm->vsc);
904 bandwidth.full = dfixed_div(bandwidth, line_time);
905
906 return dfixed_trunc(bandwidth);
907}
908
909/**
910 * dce_v11_0_latency_watermark - get the latency watermark
911 *
912 * @wm: watermark calculation data
913 *
914 * Calculate the latency watermark (CIK).
915 * Used for display watermark bandwidth calculations
916 * Returns the latency watermark in ns
917 */
918static u32 dce_v11_0_latency_watermark(struct dce10_wm_params *wm)
919{
920 /* First calculate the latency in ns */
921 u32 mc_latency = 2000; /* 2000 ns. */
922 u32 available_bandwidth = dce_v11_0_available_bandwidth(wm);
923 u32 worst_chunk_return_time = (512 * 8 * 1000) / available_bandwidth;
924 u32 cursor_line_pair_return_time = (128 * 4 * 1000) / available_bandwidth;
925 u32 dc_latency = 40000000 / wm->disp_clk; /* dc pipe latency */
926 u32 other_heads_data_return_time = ((wm->num_heads + 1) * worst_chunk_return_time) +
927 (wm->num_heads * cursor_line_pair_return_time);
928 u32 latency = mc_latency + other_heads_data_return_time + dc_latency;
929 u32 max_src_lines_per_dst_line, lb_fill_bw, line_fill_time;
930 u32 tmp, dmif_size = 12288;
931 fixed20_12 a, b, c;
932
933 if (wm->num_heads == 0)
934 return 0;
935
936 a.full = dfixed_const(2);
937 b.full = dfixed_const(1);
938 if ((wm->vsc.full > a.full) ||
939 ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) ||
940 (wm->vtaps >= 5) ||
941 ((wm->vsc.full >= a.full) && wm->interlaced))
942 max_src_lines_per_dst_line = 4;
943 else
944 max_src_lines_per_dst_line = 2;
945
946 a.full = dfixed_const(available_bandwidth);
947 b.full = dfixed_const(wm->num_heads);
948 a.full = dfixed_div(a, b);
949 tmp = div_u64((u64) dmif_size * (u64) wm->disp_clk, mc_latency + 512);
950 tmp = min(dfixed_trunc(a), tmp);
951
952 lb_fill_bw = min(tmp, wm->disp_clk * wm->bytes_per_pixel / 1000);
953
954 a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel);
955 b.full = dfixed_const(1000);
956 c.full = dfixed_const(lb_fill_bw);
957 b.full = dfixed_div(c, b);
958 a.full = dfixed_div(a, b);
959 line_fill_time = dfixed_trunc(a);
960
961 if (line_fill_time < wm->active_time)
962 return latency;
963 else
964 return latency + (line_fill_time - wm->active_time);
965
966}
967
968/**
969 * dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display - check
970 * average and available dram bandwidth
971 *
972 * @wm: watermark calculation data
973 *
974 * Check if the display average bandwidth fits in the display
975 * dram bandwidth (CIK).
976 * Used for display watermark bandwidth calculations
977 * Returns true if the display fits, false if not.
978 */
979static bool dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(struct dce10_wm_params *wm)
980{
981 if (dce_v11_0_average_bandwidth(wm) <=
982 (dce_v11_0_dram_bandwidth_for_display(wm) / wm->num_heads))
983 return true;
984 else
985 return false;
986}
987
988/**
989 * dce_v11_0_average_bandwidth_vs_available_bandwidth - check
990 * average and available bandwidth
991 *
992 * @wm: watermark calculation data
993 *
994 * Check if the display average bandwidth fits in the display
995 * available bandwidth (CIK).
996 * Used for display watermark bandwidth calculations
997 * Returns true if the display fits, false if not.
998 */
999static bool dce_v11_0_average_bandwidth_vs_available_bandwidth(struct dce10_wm_params *wm)
1000{
1001 if (dce_v11_0_average_bandwidth(wm) <=
1002 (dce_v11_0_available_bandwidth(wm) / wm->num_heads))
1003 return true;
1004 else
1005 return false;
1006}
1007
1008/**
1009 * dce_v11_0_check_latency_hiding - check latency hiding
1010 *
1011 * @wm: watermark calculation data
1012 *
1013 * Check latency hiding (CIK).
1014 * Used for display watermark bandwidth calculations
1015 * Returns true if the display fits, false if not.
1016 */
1017static bool dce_v11_0_check_latency_hiding(struct dce10_wm_params *wm)
1018{
1019 u32 lb_partitions = wm->lb_size / wm->src_width;
1020 u32 line_time = wm->active_time + wm->blank_time;
1021 u32 latency_tolerant_lines;
1022 u32 latency_hiding;
1023 fixed20_12 a;
1024
1025 a.full = dfixed_const(1);
1026 if (wm->vsc.full > a.full)
1027 latency_tolerant_lines = 1;
1028 else {
1029 if (lb_partitions <= (wm->vtaps + 1))
1030 latency_tolerant_lines = 1;
1031 else
1032 latency_tolerant_lines = 2;
1033 }
1034
1035 latency_hiding = (latency_tolerant_lines * line_time + wm->blank_time);
1036
1037 if (dce_v11_0_latency_watermark(wm) <= latency_hiding)
1038 return true;
1039 else
1040 return false;
1041}
1042
1043/**
1044 * dce_v11_0_program_watermarks - program display watermarks
1045 *
1046 * @adev: amdgpu_device pointer
1047 * @amdgpu_crtc: the selected display controller
1048 * @lb_size: line buffer size
1049 * @num_heads: number of display controllers in use
1050 *
1051 * Calculate and program the display watermarks for the
1052 * selected display controller (CIK).
1053 */
1054static void dce_v11_0_program_watermarks(struct amdgpu_device *adev,
1055 struct amdgpu_crtc *amdgpu_crtc,
1056 u32 lb_size, u32 num_heads)
1057{
1058 struct drm_display_mode *mode = &amdgpu_crtc->base.mode;
1059 struct dce10_wm_params wm_low, wm_high;
1060 u32 active_time;
1061 u32 line_time = 0;
1062 u32 latency_watermark_a = 0, latency_watermark_b = 0;
1063 u32 tmp, wm_mask, lb_vblank_lead_lines = 0;
1064
1065 if (amdgpu_crtc->base.enabled && num_heads && mode) {
1066 active_time = (u32) div_u64((u64)mode->crtc_hdisplay * 1000000,
1067 (u32)mode->clock);
1068 line_time = (u32) div_u64((u64)mode->crtc_htotal * 1000000,
1069 (u32)mode->clock);
1070 line_time = min(line_time, (u32)65535);
1071
1072 /* watermark for high clocks */
1073 if (adev->pm.dpm_enabled) {
1074 wm_high.yclk =
1075 amdgpu_dpm_get_mclk(adev, false) * 10;
1076 wm_high.sclk =
1077 amdgpu_dpm_get_sclk(adev, false) * 10;
1078 } else {
1079 wm_high.yclk = adev->pm.current_mclk * 10;
1080 wm_high.sclk = adev->pm.current_sclk * 10;
1081 }
1082
1083 wm_high.disp_clk = mode->clock;
1084 wm_high.src_width = mode->crtc_hdisplay;
1085 wm_high.active_time = active_time;
1086 wm_high.blank_time = line_time - wm_high.active_time;
1087 wm_high.interlaced = false;
1088 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1089 wm_high.interlaced = true;
1090 wm_high.vsc = amdgpu_crtc->vsc;
1091 wm_high.vtaps = 1;
1092 if (amdgpu_crtc->rmx_type != RMX_OFF)
1093 wm_high.vtaps = 2;
1094 wm_high.bytes_per_pixel = 4; /* XXX: get this from fb config */
1095 wm_high.lb_size = lb_size;
1096 wm_high.dram_channels = cik_get_number_of_dram_channels(adev);
1097 wm_high.num_heads = num_heads;
1098
1099 /* set for high clocks */
1100 latency_watermark_a = min(dce_v11_0_latency_watermark(&wm_high), (u32)65535);
1101
1102 /* possibly force display priority to high */
1103 /* should really do this at mode validation time... */
1104 if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_high) ||
1105 !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_high) ||
1106 !dce_v11_0_check_latency_hiding(&wm_high) ||
1107 (adev->mode_info.disp_priority == 2)) {
1108 DRM_DEBUG_KMS("force priority to high\n");
1109 }
1110
1111 /* watermark for low clocks */
1112 if (adev->pm.dpm_enabled) {
1113 wm_low.yclk =
1114 amdgpu_dpm_get_mclk(adev, true) * 10;
1115 wm_low.sclk =
1116 amdgpu_dpm_get_sclk(adev, true) * 10;
1117 } else {
1118 wm_low.yclk = adev->pm.current_mclk * 10;
1119 wm_low.sclk = adev->pm.current_sclk * 10;
1120 }
1121
1122 wm_low.disp_clk = mode->clock;
1123 wm_low.src_width = mode->crtc_hdisplay;
1124 wm_low.active_time = active_time;
1125 wm_low.blank_time = line_time - wm_low.active_time;
1126 wm_low.interlaced = false;
1127 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1128 wm_low.interlaced = true;
1129 wm_low.vsc = amdgpu_crtc->vsc;
1130 wm_low.vtaps = 1;
1131 if (amdgpu_crtc->rmx_type != RMX_OFF)
1132 wm_low.vtaps = 2;
1133 wm_low.bytes_per_pixel = 4; /* XXX: get this from fb config */
1134 wm_low.lb_size = lb_size;
1135 wm_low.dram_channels = cik_get_number_of_dram_channels(adev);
1136 wm_low.num_heads = num_heads;
1137
1138 /* set for low clocks */
1139 latency_watermark_b = min(dce_v11_0_latency_watermark(&wm_low), (u32)65535);
1140
1141 /* possibly force display priority to high */
1142 /* should really do this at mode validation time... */
1143 if (!dce_v11_0_average_bandwidth_vs_dram_bandwidth_for_display(&wm_low) ||
1144 !dce_v11_0_average_bandwidth_vs_available_bandwidth(&wm_low) ||
1145 !dce_v11_0_check_latency_hiding(&wm_low) ||
1146 (adev->mode_info.disp_priority == 2)) {
1147 DRM_DEBUG_KMS("force priority to high\n");
1148 }
1149 lb_vblank_lead_lines = DIV_ROUND_UP(lb_size, mode->crtc_hdisplay);
1150 }
1151
1152 /* select wm A */
1153 wm_mask = RREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset);
1154 tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 1);
1155 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1156 tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1157 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_a);
1158 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1159 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1160 /* select wm B */
1161 tmp = REG_SET_FIELD(wm_mask, DPG_WATERMARK_MASK_CONTROL, URGENCY_WATERMARK_MASK, 2);
1162 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1163 tmp = RREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset);
1164 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_LOW_WATERMARK, latency_watermark_b);
1165 tmp = REG_SET_FIELD(tmp, DPG_PIPE_URGENCY_CONTROL, URGENCY_HIGH_WATERMARK, line_time);
1166 WREG32(mmDPG_PIPE_URGENCY_CONTROL + amdgpu_crtc->crtc_offset, tmp);
1167 /* restore original selection */
1168 WREG32(mmDPG_WATERMARK_MASK_CONTROL + amdgpu_crtc->crtc_offset, wm_mask);
1169
1170 /* save values for DPM */
1171 amdgpu_crtc->line_time = line_time;
1172 amdgpu_crtc->wm_high = latency_watermark_a;
1173 amdgpu_crtc->wm_low = latency_watermark_b;
1174 /* Save number of lines the linebuffer leads before the scanout */
1175 amdgpu_crtc->lb_vblank_lead_lines = lb_vblank_lead_lines;
1176}
1177
1178/**
1179 * dce_v11_0_bandwidth_update - program display watermarks
1180 *
1181 * @adev: amdgpu_device pointer
1182 *
1183 * Calculate and program the display watermarks and line
1184 * buffer allocation (CIK).
1185 */
1186static void dce_v11_0_bandwidth_update(struct amdgpu_device *adev)
1187{
1188 struct drm_display_mode *mode = NULL;
1189 u32 num_heads = 0, lb_size;
1190 int i;
1191
1192 amdgpu_display_update_priority(adev);
1193
1194 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1195 if (adev->mode_info.crtcs[i]->base.enabled)
1196 num_heads++;
1197 }
1198 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1199 mode = &adev->mode_info.crtcs[i]->base.mode;
1200 lb_size = dce_v11_0_line_buffer_adjust(adev, adev->mode_info.crtcs[i], mode);
1201 dce_v11_0_program_watermarks(adev, adev->mode_info.crtcs[i],
1202 lb_size, num_heads);
1203 }
1204}
1205
1206static void dce_v11_0_audio_get_connected_pins(struct amdgpu_device *adev)
1207{
1208 int i;
1209 u32 offset, tmp;
1210
1211 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1212 offset = adev->mode_info.audio.pin[i].offset;
1213 tmp = RREG32_AUDIO_ENDPT(offset,
1214 ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT);
1215 if (((tmp &
1216 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY_MASK) >>
1217 AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT__PORT_CONNECTIVITY__SHIFT) == 1)
1218 adev->mode_info.audio.pin[i].connected = false;
1219 else
1220 adev->mode_info.audio.pin[i].connected = true;
1221 }
1222}
1223
1224static struct amdgpu_audio_pin *dce_v11_0_audio_get_pin(struct amdgpu_device *adev)
1225{
1226 int i;
1227
1228 dce_v11_0_audio_get_connected_pins(adev);
1229
1230 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1231 if (adev->mode_info.audio.pin[i].connected)
1232 return &adev->mode_info.audio.pin[i];
1233 }
1234 DRM_ERROR("No connected audio pins found!\n");
1235 return NULL;
1236}
1237
1238static void dce_v11_0_afmt_audio_select_pin(struct drm_encoder *encoder)
1239{
1240 struct amdgpu_device *adev = drm_to_adev(encoder->dev);
1241 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1242 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1243 u32 tmp;
1244
1245 if (!dig || !dig->afmt || !dig->afmt->pin)
1246 return;
1247
1248 tmp = RREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset);
1249 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_SRC_CONTROL, AFMT_AUDIO_SRC_SELECT, dig->afmt->pin->id);
1250 WREG32(mmAFMT_AUDIO_SRC_CONTROL + dig->afmt->offset, tmp);
1251}
1252
1253static void dce_v11_0_audio_write_latency_fields(struct drm_encoder *encoder,
1254 struct drm_display_mode *mode)
1255{
1256 struct drm_device *dev = encoder->dev;
1257 struct amdgpu_device *adev = drm_to_adev(dev);
1258 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1259 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1260 struct drm_connector *connector;
1261 struct drm_connector_list_iter iter;
1262 struct amdgpu_connector *amdgpu_connector = NULL;
1263 u32 tmp;
1264 int interlace = 0;
1265
1266 if (!dig || !dig->afmt || !dig->afmt->pin)
1267 return;
1268
1269 drm_connector_list_iter_begin(dev, &iter);
1270 drm_for_each_connector_iter(connector, &iter) {
1271 if (connector->encoder == encoder) {
1272 amdgpu_connector = to_amdgpu_connector(connector);
1273 break;
1274 }
1275 }
1276 drm_connector_list_iter_end(&iter);
1277
1278 if (!amdgpu_connector) {
1279 DRM_ERROR("Couldn't find encoder's connector\n");
1280 return;
1281 }
1282
1283 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1284 interlace = 1;
1285 if (connector->latency_present[interlace]) {
1286 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1287 VIDEO_LIPSYNC, connector->video_latency[interlace]);
1288 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1289 AUDIO_LIPSYNC, connector->audio_latency[interlace]);
1290 } else {
1291 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1292 VIDEO_LIPSYNC, 0);
1293 tmp = REG_SET_FIELD(0, AZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC,
1294 AUDIO_LIPSYNC, 0);
1295 }
1296 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1297 ixAZALIA_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC, tmp);
1298}
1299
1300static void dce_v11_0_audio_write_speaker_allocation(struct drm_encoder *encoder)
1301{
1302 struct drm_device *dev = encoder->dev;
1303 struct amdgpu_device *adev = drm_to_adev(dev);
1304 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1305 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1306 struct drm_connector *connector;
1307 struct drm_connector_list_iter iter;
1308 struct amdgpu_connector *amdgpu_connector = NULL;
1309 u32 tmp;
1310 u8 *sadb = NULL;
1311 int sad_count;
1312
1313 if (!dig || !dig->afmt || !dig->afmt->pin)
1314 return;
1315
1316 drm_connector_list_iter_begin(dev, &iter);
1317 drm_for_each_connector_iter(connector, &iter) {
1318 if (connector->encoder == encoder) {
1319 amdgpu_connector = to_amdgpu_connector(connector);
1320 break;
1321 }
1322 }
1323 drm_connector_list_iter_end(&iter);
1324
1325 if (!amdgpu_connector) {
1326 DRM_ERROR("Couldn't find encoder's connector\n");
1327 return;
1328 }
1329
1330 sad_count = drm_edid_to_speaker_allocation(amdgpu_connector_edid(connector), &sadb);
1331 if (sad_count < 0) {
1332 DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
1333 sad_count = 0;
1334 }
1335
1336 /* program the speaker allocation */
1337 tmp = RREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1338 ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER);
1339 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1340 DP_CONNECTION, 0);
1341 /* set HDMI mode */
1342 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1343 HDMI_CONNECTION, 1);
1344 if (sad_count)
1345 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1346 SPEAKER_ALLOCATION, sadb[0]);
1347 else
1348 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER,
1349 SPEAKER_ALLOCATION, 5); /* stereo */
1350 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset,
1351 ixAZALIA_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER, tmp);
1352
1353 kfree(sadb);
1354}
1355
1356static void dce_v11_0_audio_write_sad_regs(struct drm_encoder *encoder)
1357{
1358 struct drm_device *dev = encoder->dev;
1359 struct amdgpu_device *adev = drm_to_adev(dev);
1360 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1361 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1362 struct drm_connector *connector;
1363 struct drm_connector_list_iter iter;
1364 struct amdgpu_connector *amdgpu_connector = NULL;
1365 struct cea_sad *sads;
1366 int i, sad_count;
1367
1368 static const u16 eld_reg_to_type[][2] = {
1369 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
1370 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
1371 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
1372 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
1373 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
1374 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
1375 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
1376 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
1377 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
1378 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
1379 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
1380 { ixAZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
1381 };
1382
1383 if (!dig || !dig->afmt || !dig->afmt->pin)
1384 return;
1385
1386 drm_connector_list_iter_begin(dev, &iter);
1387 drm_for_each_connector_iter(connector, &iter) {
1388 if (connector->encoder == encoder) {
1389 amdgpu_connector = to_amdgpu_connector(connector);
1390 break;
1391 }
1392 }
1393 drm_connector_list_iter_end(&iter);
1394
1395 if (!amdgpu_connector) {
1396 DRM_ERROR("Couldn't find encoder's connector\n");
1397 return;
1398 }
1399
1400 sad_count = drm_edid_to_sad(amdgpu_connector_edid(connector), &sads);
1401 if (sad_count < 0)
1402 DRM_ERROR("Couldn't read SADs: %d\n", sad_count);
1403 if (sad_count <= 0)
1404 return;
1405 BUG_ON(!sads);
1406
1407 for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
1408 u32 tmp = 0;
1409 u8 stereo_freqs = 0;
1410 int max_channels = -1;
1411 int j;
1412
1413 for (j = 0; j < sad_count; j++) {
1414 struct cea_sad *sad = &sads[j];
1415
1416 if (sad->format == eld_reg_to_type[i][1]) {
1417 if (sad->channels > max_channels) {
1418 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1419 MAX_CHANNELS, sad->channels);
1420 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1421 DESCRIPTOR_BYTE_2, sad->byte2);
1422 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1423 SUPPORTED_FREQUENCIES, sad->freq);
1424 max_channels = sad->channels;
1425 }
1426
1427 if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
1428 stereo_freqs |= sad->freq;
1429 else
1430 break;
1431 }
1432 }
1433
1434 tmp = REG_SET_FIELD(tmp, AZALIA_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0,
1435 SUPPORTED_FREQUENCIES_STEREO, stereo_freqs);
1436 WREG32_AUDIO_ENDPT(dig->afmt->pin->offset, eld_reg_to_type[i][0], tmp);
1437 }
1438
1439 kfree(sads);
1440}
1441
1442static void dce_v11_0_audio_enable(struct amdgpu_device *adev,
1443 struct amdgpu_audio_pin *pin,
1444 bool enable)
1445{
1446 if (!pin)
1447 return;
1448
1449 WREG32_AUDIO_ENDPT(pin->offset, ixAZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL,
1450 enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
1451}
1452
1453static const u32 pin_offsets[] =
1454{
1455 AUD0_REGISTER_OFFSET,
1456 AUD1_REGISTER_OFFSET,
1457 AUD2_REGISTER_OFFSET,
1458 AUD3_REGISTER_OFFSET,
1459 AUD4_REGISTER_OFFSET,
1460 AUD5_REGISTER_OFFSET,
1461 AUD6_REGISTER_OFFSET,
1462 AUD7_REGISTER_OFFSET,
1463};
1464
1465static int dce_v11_0_audio_init(struct amdgpu_device *adev)
1466{
1467 int i;
1468
1469 if (!amdgpu_audio)
1470 return 0;
1471
1472 adev->mode_info.audio.enabled = true;
1473
1474 switch (adev->asic_type) {
1475 case CHIP_CARRIZO:
1476 case CHIP_STONEY:
1477 adev->mode_info.audio.num_pins = 7;
1478 break;
1479 case CHIP_POLARIS10:
1480 case CHIP_VEGAM:
1481 adev->mode_info.audio.num_pins = 8;
1482 break;
1483 case CHIP_POLARIS11:
1484 case CHIP_POLARIS12:
1485 adev->mode_info.audio.num_pins = 6;
1486 break;
1487 default:
1488 return -EINVAL;
1489 }
1490
1491 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1492 adev->mode_info.audio.pin[i].channels = -1;
1493 adev->mode_info.audio.pin[i].rate = -1;
1494 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1495 adev->mode_info.audio.pin[i].status_bits = 0;
1496 adev->mode_info.audio.pin[i].category_code = 0;
1497 adev->mode_info.audio.pin[i].connected = false;
1498 adev->mode_info.audio.pin[i].offset = pin_offsets[i];
1499 adev->mode_info.audio.pin[i].id = i;
1500 /* disable audio. it will be set up later */
1501 /* XXX remove once we switch to ip funcs */
1502 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1503 }
1504
1505 return 0;
1506}
1507
1508static void dce_v11_0_audio_fini(struct amdgpu_device *adev)
1509{
1510 int i;
1511
1512 if (!amdgpu_audio)
1513 return;
1514
1515 if (!adev->mode_info.audio.enabled)
1516 return;
1517
1518 for (i = 0; i < adev->mode_info.audio.num_pins; i++)
1519 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
1520
1521 adev->mode_info.audio.enabled = false;
1522}
1523
1524/*
1525 * update the N and CTS parameters for a given pixel clock rate
1526 */
1527static void dce_v11_0_afmt_update_ACR(struct drm_encoder *encoder, uint32_t clock)
1528{
1529 struct drm_device *dev = encoder->dev;
1530 struct amdgpu_device *adev = drm_to_adev(dev);
1531 struct amdgpu_afmt_acr acr = amdgpu_afmt_acr(clock);
1532 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1533 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1534 u32 tmp;
1535
1536 tmp = RREG32(mmHDMI_ACR_32_0 + dig->afmt->offset);
1537 tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_0, HDMI_ACR_CTS_32, acr.cts_32khz);
1538 WREG32(mmHDMI_ACR_32_0 + dig->afmt->offset, tmp);
1539 tmp = RREG32(mmHDMI_ACR_32_1 + dig->afmt->offset);
1540 tmp = REG_SET_FIELD(tmp, HDMI_ACR_32_1, HDMI_ACR_N_32, acr.n_32khz);
1541 WREG32(mmHDMI_ACR_32_1 + dig->afmt->offset, tmp);
1542
1543 tmp = RREG32(mmHDMI_ACR_44_0 + dig->afmt->offset);
1544 tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_0, HDMI_ACR_CTS_44, acr.cts_44_1khz);
1545 WREG32(mmHDMI_ACR_44_0 + dig->afmt->offset, tmp);
1546 tmp = RREG32(mmHDMI_ACR_44_1 + dig->afmt->offset);
1547 tmp = REG_SET_FIELD(tmp, HDMI_ACR_44_1, HDMI_ACR_N_44, acr.n_44_1khz);
1548 WREG32(mmHDMI_ACR_44_1 + dig->afmt->offset, tmp);
1549
1550 tmp = RREG32(mmHDMI_ACR_48_0 + dig->afmt->offset);
1551 tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_0, HDMI_ACR_CTS_48, acr.cts_48khz);
1552 WREG32(mmHDMI_ACR_48_0 + dig->afmt->offset, tmp);
1553 tmp = RREG32(mmHDMI_ACR_48_1 + dig->afmt->offset);
1554 tmp = REG_SET_FIELD(tmp, HDMI_ACR_48_1, HDMI_ACR_N_48, acr.n_48khz);
1555 WREG32(mmHDMI_ACR_48_1 + dig->afmt->offset, tmp);
1556
1557}
1558
1559/*
1560 * build a HDMI Video Info Frame
1561 */
1562static void dce_v11_0_afmt_update_avi_infoframe(struct drm_encoder *encoder,
1563 void *buffer, size_t size)
1564{
1565 struct drm_device *dev = encoder->dev;
1566 struct amdgpu_device *adev = drm_to_adev(dev);
1567 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1568 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1569 uint8_t *frame = buffer + 3;
1570 uint8_t *header = buffer;
1571
1572 WREG32(mmAFMT_AVI_INFO0 + dig->afmt->offset,
1573 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
1574 WREG32(mmAFMT_AVI_INFO1 + dig->afmt->offset,
1575 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
1576 WREG32(mmAFMT_AVI_INFO2 + dig->afmt->offset,
1577 frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
1578 WREG32(mmAFMT_AVI_INFO3 + dig->afmt->offset,
1579 frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
1580}
1581
1582static void dce_v11_0_audio_set_dto(struct drm_encoder *encoder, u32 clock)
1583{
1584 struct drm_device *dev = encoder->dev;
1585 struct amdgpu_device *adev = drm_to_adev(dev);
1586 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1587 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1588 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1589 u32 dto_phase = 24 * 1000;
1590 u32 dto_modulo = clock;
1591 u32 tmp;
1592
1593 if (!dig || !dig->afmt)
1594 return;
1595
1596 /* XXX two dtos; generally use dto0 for hdmi */
1597 /* Express [24MHz / target pixel clock] as an exact rational
1598 * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE
1599 * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
1600 */
1601 tmp = RREG32(mmDCCG_AUDIO_DTO_SOURCE);
1602 tmp = REG_SET_FIELD(tmp, DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL,
1603 amdgpu_crtc->crtc_id);
1604 WREG32(mmDCCG_AUDIO_DTO_SOURCE, tmp);
1605 WREG32(mmDCCG_AUDIO_DTO0_PHASE, dto_phase);
1606 WREG32(mmDCCG_AUDIO_DTO0_MODULE, dto_modulo);
1607}
1608
1609/*
1610 * update the info frames with the data from the current display mode
1611 */
1612static void dce_v11_0_afmt_setmode(struct drm_encoder *encoder,
1613 struct drm_display_mode *mode)
1614{
1615 struct drm_device *dev = encoder->dev;
1616 struct amdgpu_device *adev = drm_to_adev(dev);
1617 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1618 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1619 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
1620 u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
1621 struct hdmi_avi_infoframe frame;
1622 ssize_t err;
1623 u32 tmp;
1624 int bpc = 8;
1625
1626 if (!dig || !dig->afmt)
1627 return;
1628
1629 /* Silent, r600_hdmi_enable will raise WARN for us */
1630 if (!dig->afmt->enabled)
1631 return;
1632
1633 /* hdmi deep color mode general control packets setup, if bpc > 8 */
1634 if (encoder->crtc) {
1635 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(encoder->crtc);
1636 bpc = amdgpu_crtc->bpc;
1637 }
1638
1639 /* disable audio prior to setting up hw */
1640 dig->afmt->pin = dce_v11_0_audio_get_pin(adev);
1641 dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1642
1643 dce_v11_0_audio_set_dto(encoder, mode->clock);
1644
1645 tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1646 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1);
1647 WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp); /* send null packets when required */
1648
1649 WREG32(mmAFMT_AUDIO_CRC_CONTROL + dig->afmt->offset, 0x1000);
1650
1651 tmp = RREG32(mmHDMI_CONTROL + dig->afmt->offset);
1652 switch (bpc) {
1653 case 0:
1654 case 6:
1655 case 8:
1656 case 16:
1657 default:
1658 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 0);
1659 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 0);
1660 DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
1661 connector->name, bpc);
1662 break;
1663 case 10:
1664 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1665 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 1);
1666 DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
1667 connector->name);
1668 break;
1669 case 12:
1670 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_ENABLE, 1);
1671 tmp = REG_SET_FIELD(tmp, HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 2);
1672 DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
1673 connector->name);
1674 break;
1675 }
1676 WREG32(mmHDMI_CONTROL + dig->afmt->offset, tmp);
1677
1678 tmp = RREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset);
1679 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_NULL_SEND, 1); /* send null packets when required */
1680 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_SEND, 1); /* send general control packets */
1681 tmp = REG_SET_FIELD(tmp, HDMI_VBI_PACKET_CONTROL, HDMI_GC_CONT, 1); /* send general control packets every frame */
1682 WREG32(mmHDMI_VBI_PACKET_CONTROL + dig->afmt->offset, tmp);
1683
1684 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1685 /* enable audio info frames (frames won't be set until audio is enabled) */
1686 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_SEND, 1);
1687 /* required for audio info values to be updated */
1688 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_CONT, 1);
1689 WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1690
1691 tmp = RREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset);
1692 /* required for audio info values to be updated */
1693 tmp = REG_SET_FIELD(tmp, AFMT_INFOFRAME_CONTROL0, AFMT_AUDIO_INFO_UPDATE, 1);
1694 WREG32(mmAFMT_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1695
1696 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1697 /* anything other than 0 */
1698 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AUDIO_INFO_LINE, 2);
1699 WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1700
1701 WREG32(mmHDMI_GC + dig->afmt->offset, 0); /* unset HDMI_GC_AVMUTE */
1702
1703 tmp = RREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1704 /* set the default audio delay */
1705 tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_DELAY_EN, 1);
1706 /* should be suffient for all audio modes and small enough for all hblanks */
1707 tmp = REG_SET_FIELD(tmp, HDMI_AUDIO_PACKET_CONTROL, HDMI_AUDIO_PACKETS_PER_LINE, 3);
1708 WREG32(mmHDMI_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1709
1710 tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1711 /* allow 60958 channel status fields to be updated */
1712 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_60958_CS_UPDATE, 1);
1713 WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1714
1715 tmp = RREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset);
1716 if (bpc > 8)
1717 /* clear SW CTS value */
1718 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 0);
1719 else
1720 /* select SW CTS value */
1721 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_SOURCE, 1);
1722 /* allow hw to sent ACR packets when required */
1723 tmp = REG_SET_FIELD(tmp, HDMI_ACR_PACKET_CONTROL, HDMI_ACR_AUTO_SEND, 1);
1724 WREG32(mmHDMI_ACR_PACKET_CONTROL + dig->afmt->offset, tmp);
1725
1726 dce_v11_0_afmt_update_ACR(encoder, mode->clock);
1727
1728 tmp = RREG32(mmAFMT_60958_0 + dig->afmt->offset);
1729 tmp = REG_SET_FIELD(tmp, AFMT_60958_0, AFMT_60958_CS_CHANNEL_NUMBER_L, 1);
1730 WREG32(mmAFMT_60958_0 + dig->afmt->offset, tmp);
1731
1732 tmp = RREG32(mmAFMT_60958_1 + dig->afmt->offset);
1733 tmp = REG_SET_FIELD(tmp, AFMT_60958_1, AFMT_60958_CS_CHANNEL_NUMBER_R, 2);
1734 WREG32(mmAFMT_60958_1 + dig->afmt->offset, tmp);
1735
1736 tmp = RREG32(mmAFMT_60958_2 + dig->afmt->offset);
1737 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_2, 3);
1738 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_3, 4);
1739 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_4, 5);
1740 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_5, 6);
1741 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_6, 7);
1742 tmp = REG_SET_FIELD(tmp, AFMT_60958_2, AFMT_60958_CS_CHANNEL_NUMBER_7, 8);
1743 WREG32(mmAFMT_60958_2 + dig->afmt->offset, tmp);
1744
1745 dce_v11_0_audio_write_speaker_allocation(encoder);
1746
1747 WREG32(mmAFMT_AUDIO_PACKET_CONTROL2 + dig->afmt->offset,
1748 (0xff << AFMT_AUDIO_PACKET_CONTROL2__AFMT_AUDIO_CHANNEL_ENABLE__SHIFT));
1749
1750 dce_v11_0_afmt_audio_select_pin(encoder);
1751 dce_v11_0_audio_write_sad_regs(encoder);
1752 dce_v11_0_audio_write_latency_fields(encoder, mode);
1753
1754 err = drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
1755 if (err < 0) {
1756 DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
1757 return;
1758 }
1759
1760 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1761 if (err < 0) {
1762 DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
1763 return;
1764 }
1765
1766 dce_v11_0_afmt_update_avi_infoframe(encoder, buffer, sizeof(buffer));
1767
1768 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset);
1769 /* enable AVI info frames */
1770 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_SEND, 1);
1771 /* required for audio info values to be updated */
1772 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL0, HDMI_AVI_INFO_CONT, 1);
1773 WREG32(mmHDMI_INFOFRAME_CONTROL0 + dig->afmt->offset, tmp);
1774
1775 tmp = RREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset);
1776 tmp = REG_SET_FIELD(tmp, HDMI_INFOFRAME_CONTROL1, HDMI_AVI_INFO_LINE, 2);
1777 WREG32(mmHDMI_INFOFRAME_CONTROL1 + dig->afmt->offset, tmp);
1778
1779 tmp = RREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset);
1780 /* send audio packets */
1781 tmp = REG_SET_FIELD(tmp, AFMT_AUDIO_PACKET_CONTROL, AFMT_AUDIO_SAMPLE_SEND, 1);
1782 WREG32(mmAFMT_AUDIO_PACKET_CONTROL + dig->afmt->offset, tmp);
1783
1784 WREG32(mmAFMT_RAMP_CONTROL0 + dig->afmt->offset, 0x00FFFFFF);
1785 WREG32(mmAFMT_RAMP_CONTROL1 + dig->afmt->offset, 0x007FFFFF);
1786 WREG32(mmAFMT_RAMP_CONTROL2 + dig->afmt->offset, 0x00000001);
1787 WREG32(mmAFMT_RAMP_CONTROL3 + dig->afmt->offset, 0x00000001);
1788
1789 /* enable audio after to setting up hw */
1790 dce_v11_0_audio_enable(adev, dig->afmt->pin, true);
1791}
1792
1793static void dce_v11_0_afmt_enable(struct drm_encoder *encoder, bool enable)
1794{
1795 struct drm_device *dev = encoder->dev;
1796 struct amdgpu_device *adev = drm_to_adev(dev);
1797 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
1798 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
1799
1800 if (!dig || !dig->afmt)
1801 return;
1802
1803 /* Silent, r600_hdmi_enable will raise WARN for us */
1804 if (enable && dig->afmt->enabled)
1805 return;
1806 if (!enable && !dig->afmt->enabled)
1807 return;
1808
1809 if (!enable && dig->afmt->pin) {
1810 dce_v11_0_audio_enable(adev, dig->afmt->pin, false);
1811 dig->afmt->pin = NULL;
1812 }
1813
1814 dig->afmt->enabled = enable;
1815
1816 DRM_DEBUG("%sabling AFMT interface @ 0x%04X for encoder 0x%x\n",
1817 enable ? "En" : "Dis", dig->afmt->offset, amdgpu_encoder->encoder_id);
1818}
1819
1820static int dce_v11_0_afmt_init(struct amdgpu_device *adev)
1821{
1822 int i;
1823
1824 for (i = 0; i < adev->mode_info.num_dig; i++)
1825 adev->mode_info.afmt[i] = NULL;
1826
1827 /* DCE11 has audio blocks tied to DIG encoders */
1828 for (i = 0; i < adev->mode_info.num_dig; i++) {
1829 adev->mode_info.afmt[i] = kzalloc(sizeof(struct amdgpu_afmt), GFP_KERNEL);
1830 if (adev->mode_info.afmt[i]) {
1831 adev->mode_info.afmt[i]->offset = dig_offsets[i];
1832 adev->mode_info.afmt[i]->id = i;
1833 } else {
1834 int j;
1835 for (j = 0; j < i; j++) {
1836 kfree(adev->mode_info.afmt[j]);
1837 adev->mode_info.afmt[j] = NULL;
1838 }
1839 return -ENOMEM;
1840 }
1841 }
1842 return 0;
1843}
1844
1845static void dce_v11_0_afmt_fini(struct amdgpu_device *adev)
1846{
1847 int i;
1848
1849 for (i = 0; i < adev->mode_info.num_dig; i++) {
1850 kfree(adev->mode_info.afmt[i]);
1851 adev->mode_info.afmt[i] = NULL;
1852 }
1853}
1854
1855static const u32 vga_control_regs[6] =
1856{
1857 mmD1VGA_CONTROL,
1858 mmD2VGA_CONTROL,
1859 mmD3VGA_CONTROL,
1860 mmD4VGA_CONTROL,
1861 mmD5VGA_CONTROL,
1862 mmD6VGA_CONTROL,
1863};
1864
1865static void dce_v11_0_vga_enable(struct drm_crtc *crtc, bool enable)
1866{
1867 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1868 struct drm_device *dev = crtc->dev;
1869 struct amdgpu_device *adev = drm_to_adev(dev);
1870 u32 vga_control;
1871
1872 vga_control = RREG32(vga_control_regs[amdgpu_crtc->crtc_id]) & ~1;
1873 if (enable)
1874 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control | 1);
1875 else
1876 WREG32(vga_control_regs[amdgpu_crtc->crtc_id], vga_control);
1877}
1878
1879static void dce_v11_0_grph_enable(struct drm_crtc *crtc, bool enable)
1880{
1881 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1882 struct drm_device *dev = crtc->dev;
1883 struct amdgpu_device *adev = drm_to_adev(dev);
1884
1885 if (enable)
1886 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 1);
1887 else
1888 WREG32(mmGRPH_ENABLE + amdgpu_crtc->crtc_offset, 0);
1889}
1890
1891static int dce_v11_0_crtc_do_set_base(struct drm_crtc *crtc,
1892 struct drm_framebuffer *fb,
1893 int x, int y, int atomic)
1894{
1895 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1896 struct drm_device *dev = crtc->dev;
1897 struct amdgpu_device *adev = drm_to_adev(dev);
1898 struct drm_framebuffer *target_fb;
1899 struct drm_gem_object *obj;
1900 struct amdgpu_bo *abo;
1901 uint64_t fb_location, tiling_flags;
1902 uint32_t fb_format, fb_pitch_pixels;
1903 u32 fb_swap = REG_SET_FIELD(0, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP, ENDIAN_NONE);
1904 u32 pipe_config;
1905 u32 tmp, viewport_w, viewport_h;
1906 int r;
1907 bool bypass_lut = false;
1908
1909 /* no fb bound */
1910 if (!atomic && !crtc->primary->fb) {
1911 DRM_DEBUG_KMS("No FB bound\n");
1912 return 0;
1913 }
1914
1915 if (atomic)
1916 target_fb = fb;
1917 else
1918 target_fb = crtc->primary->fb;
1919
1920 /* If atomic, assume fb object is pinned & idle & fenced and
1921 * just update base pointers
1922 */
1923 obj = target_fb->obj[0];
1924 abo = gem_to_amdgpu_bo(obj);
1925 r = amdgpu_bo_reserve(abo, false);
1926 if (unlikely(r != 0))
1927 return r;
1928
1929 if (!atomic) {
1930 r = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM);
1931 if (unlikely(r != 0)) {
1932 amdgpu_bo_unreserve(abo);
1933 return -EINVAL;
1934 }
1935 }
1936 fb_location = amdgpu_bo_gpu_offset(abo);
1937
1938 amdgpu_bo_get_tiling_flags(abo, &tiling_flags);
1939 amdgpu_bo_unreserve(abo);
1940
1941 pipe_config = AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
1942
1943 switch (target_fb->format->format) {
1944 case DRM_FORMAT_C8:
1945 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 0);
1946 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1947 break;
1948 case DRM_FORMAT_XRGB4444:
1949 case DRM_FORMAT_ARGB4444:
1950 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1951 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 2);
1952#ifdef __BIG_ENDIAN
1953 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1954 ENDIAN_8IN16);
1955#endif
1956 break;
1957 case DRM_FORMAT_XRGB1555:
1958 case DRM_FORMAT_ARGB1555:
1959 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1960 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1961#ifdef __BIG_ENDIAN
1962 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1963 ENDIAN_8IN16);
1964#endif
1965 break;
1966 case DRM_FORMAT_BGRX5551:
1967 case DRM_FORMAT_BGRA5551:
1968 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1969 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 5);
1970#ifdef __BIG_ENDIAN
1971 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1972 ENDIAN_8IN16);
1973#endif
1974 break;
1975 case DRM_FORMAT_RGB565:
1976 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 1);
1977 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1978#ifdef __BIG_ENDIAN
1979 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1980 ENDIAN_8IN16);
1981#endif
1982 break;
1983 case DRM_FORMAT_XRGB8888:
1984 case DRM_FORMAT_ARGB8888:
1985 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1986 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
1987#ifdef __BIG_ENDIAN
1988 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1989 ENDIAN_8IN32);
1990#endif
1991 break;
1992 case DRM_FORMAT_XRGB2101010:
1993 case DRM_FORMAT_ARGB2101010:
1994 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
1995 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 1);
1996#ifdef __BIG_ENDIAN
1997 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
1998 ENDIAN_8IN32);
1999#endif
2000 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2001 bypass_lut = true;
2002 break;
2003 case DRM_FORMAT_BGRX1010102:
2004 case DRM_FORMAT_BGRA1010102:
2005 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2006 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 4);
2007#ifdef __BIG_ENDIAN
2008 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2009 ENDIAN_8IN32);
2010#endif
2011 /* Greater 8 bpc fb needs to bypass hw-lut to retain precision */
2012 bypass_lut = true;
2013 break;
2014 case DRM_FORMAT_XBGR8888:
2015 case DRM_FORMAT_ABGR8888:
2016 fb_format = REG_SET_FIELD(0, GRPH_CONTROL, GRPH_DEPTH, 2);
2017 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_FORMAT, 0);
2018 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_RED_CROSSBAR, 2);
2019 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_BLUE_CROSSBAR, 2);
2020#ifdef __BIG_ENDIAN
2021 fb_swap = REG_SET_FIELD(fb_swap, GRPH_SWAP_CNTL, GRPH_ENDIAN_SWAP,
2022 ENDIAN_8IN32);
2023#endif
2024 break;
2025 default:
2026 DRM_ERROR("Unsupported screen format %p4cc\n",
2027 &target_fb->format->format);
2028 return -EINVAL;
2029 }
2030
2031 if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_2D_TILED_THIN1) {
2032 unsigned bankw, bankh, mtaspect, tile_split, num_banks;
2033
2034 bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
2035 bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
2036 mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
2037 tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
2038 num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
2039
2040 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_NUM_BANKS, num_banks);
2041 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2042 ARRAY_2D_TILED_THIN1);
2043 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_TILE_SPLIT,
2044 tile_split);
2045 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_WIDTH, bankw);
2046 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_BANK_HEIGHT, bankh);
2047 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MACRO_TILE_ASPECT,
2048 mtaspect);
2049 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_MICRO_TILE_MODE,
2050 ADDR_SURF_MICRO_TILING_DISPLAY);
2051 } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == ARRAY_1D_TILED_THIN1) {
2052 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_ARRAY_MODE,
2053 ARRAY_1D_TILED_THIN1);
2054 }
2055
2056 fb_format = REG_SET_FIELD(fb_format, GRPH_CONTROL, GRPH_PIPE_CONFIG,
2057 pipe_config);
2058
2059 dce_v11_0_vga_enable(crtc, false);
2060
2061 /* Make sure surface address is updated at vertical blank rather than
2062 * horizontal blank
2063 */
2064 tmp = RREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset);
2065 tmp = REG_SET_FIELD(tmp, GRPH_FLIP_CONTROL,
2066 GRPH_SURFACE_UPDATE_H_RETRACE_EN, 0);
2067 WREG32(mmGRPH_FLIP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2068
2069 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2070 upper_32_bits(fb_location));
2071 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2072 upper_32_bits(fb_location));
2073 WREG32(mmGRPH_PRIMARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2074 (u32)fb_location & GRPH_PRIMARY_SURFACE_ADDRESS__GRPH_PRIMARY_SURFACE_ADDRESS_MASK);
2075 WREG32(mmGRPH_SECONDARY_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2076 (u32) fb_location & GRPH_SECONDARY_SURFACE_ADDRESS__GRPH_SECONDARY_SURFACE_ADDRESS_MASK);
2077 WREG32(mmGRPH_CONTROL + amdgpu_crtc->crtc_offset, fb_format);
2078 WREG32(mmGRPH_SWAP_CNTL + amdgpu_crtc->crtc_offset, fb_swap);
2079
2080 /*
2081 * The LUT only has 256 slots for indexing by a 8 bpc fb. Bypass the LUT
2082 * for > 8 bpc scanout to avoid truncation of fb indices to 8 msb's, to
2083 * retain the full precision throughout the pipeline.
2084 */
2085 tmp = RREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset);
2086 if (bypass_lut)
2087 tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 1);
2088 else
2089 tmp = REG_SET_FIELD(tmp, GRPH_LUT_10BIT_BYPASS, GRPH_LUT_10BIT_BYPASS_EN, 0);
2090 WREG32(mmGRPH_LUT_10BIT_BYPASS + amdgpu_crtc->crtc_offset, tmp);
2091
2092 if (bypass_lut)
2093 DRM_DEBUG_KMS("Bypassing hardware LUT due to 10 bit fb scanout.\n");
2094
2095 WREG32(mmGRPH_SURFACE_OFFSET_X + amdgpu_crtc->crtc_offset, 0);
2096 WREG32(mmGRPH_SURFACE_OFFSET_Y + amdgpu_crtc->crtc_offset, 0);
2097 WREG32(mmGRPH_X_START + amdgpu_crtc->crtc_offset, 0);
2098 WREG32(mmGRPH_Y_START + amdgpu_crtc->crtc_offset, 0);
2099 WREG32(mmGRPH_X_END + amdgpu_crtc->crtc_offset, target_fb->width);
2100 WREG32(mmGRPH_Y_END + amdgpu_crtc->crtc_offset, target_fb->height);
2101
2102 fb_pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
2103 WREG32(mmGRPH_PITCH + amdgpu_crtc->crtc_offset, fb_pitch_pixels);
2104
2105 dce_v11_0_grph_enable(crtc, true);
2106
2107 WREG32(mmLB_DESKTOP_HEIGHT + amdgpu_crtc->crtc_offset,
2108 target_fb->height);
2109
2110 x &= ~3;
2111 y &= ~1;
2112 WREG32(mmVIEWPORT_START + amdgpu_crtc->crtc_offset,
2113 (x << 16) | y);
2114 viewport_w = crtc->mode.hdisplay;
2115 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
2116 WREG32(mmVIEWPORT_SIZE + amdgpu_crtc->crtc_offset,
2117 (viewport_w << 16) | viewport_h);
2118
2119 /* set pageflip to happen anywhere in vblank interval */
2120 WREG32(mmCRTC_MASTER_UPDATE_MODE + amdgpu_crtc->crtc_offset, 0);
2121
2122 if (!atomic && fb && fb != crtc->primary->fb) {
2123 abo = gem_to_amdgpu_bo(fb->obj[0]);
2124 r = amdgpu_bo_reserve(abo, true);
2125 if (unlikely(r != 0))
2126 return r;
2127 amdgpu_bo_unpin(abo);
2128 amdgpu_bo_unreserve(abo);
2129 }
2130
2131 /* Bytes per pixel may have changed */
2132 dce_v11_0_bandwidth_update(adev);
2133
2134 return 0;
2135}
2136
2137static void dce_v11_0_set_interleave(struct drm_crtc *crtc,
2138 struct drm_display_mode *mode)
2139{
2140 struct drm_device *dev = crtc->dev;
2141 struct amdgpu_device *adev = drm_to_adev(dev);
2142 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2143 u32 tmp;
2144
2145 tmp = RREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset);
2146 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2147 tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 1);
2148 else
2149 tmp = REG_SET_FIELD(tmp, LB_DATA_FORMAT, INTERLEAVE_EN, 0);
2150 WREG32(mmLB_DATA_FORMAT + amdgpu_crtc->crtc_offset, tmp);
2151}
2152
2153static void dce_v11_0_crtc_load_lut(struct drm_crtc *crtc)
2154{
2155 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2156 struct drm_device *dev = crtc->dev;
2157 struct amdgpu_device *adev = drm_to_adev(dev);
2158 u16 *r, *g, *b;
2159 int i;
2160 u32 tmp;
2161
2162 DRM_DEBUG_KMS("%d\n", amdgpu_crtc->crtc_id);
2163
2164 tmp = RREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2165 tmp = REG_SET_FIELD(tmp, INPUT_CSC_CONTROL, INPUT_CSC_GRPH_MODE, 0);
2166 WREG32(mmINPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2167
2168 tmp = RREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset);
2169 tmp = REG_SET_FIELD(tmp, PRESCALE_GRPH_CONTROL, GRPH_PRESCALE_BYPASS, 1);
2170 WREG32(mmPRESCALE_GRPH_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2171
2172 tmp = RREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2173 tmp = REG_SET_FIELD(tmp, INPUT_GAMMA_CONTROL, GRPH_INPUT_GAMMA_MODE, 0);
2174 WREG32(mmINPUT_GAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2175
2176 WREG32(mmDC_LUT_CONTROL + amdgpu_crtc->crtc_offset, 0);
2177
2178 WREG32(mmDC_LUT_BLACK_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0);
2179 WREG32(mmDC_LUT_BLACK_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0);
2180 WREG32(mmDC_LUT_BLACK_OFFSET_RED + amdgpu_crtc->crtc_offset, 0);
2181
2182 WREG32(mmDC_LUT_WHITE_OFFSET_BLUE + amdgpu_crtc->crtc_offset, 0xffff);
2183 WREG32(mmDC_LUT_WHITE_OFFSET_GREEN + amdgpu_crtc->crtc_offset, 0xffff);
2184 WREG32(mmDC_LUT_WHITE_OFFSET_RED + amdgpu_crtc->crtc_offset, 0xffff);
2185
2186 WREG32(mmDC_LUT_RW_MODE + amdgpu_crtc->crtc_offset, 0);
2187 WREG32(mmDC_LUT_WRITE_EN_MASK + amdgpu_crtc->crtc_offset, 0x00000007);
2188
2189 WREG32(mmDC_LUT_RW_INDEX + amdgpu_crtc->crtc_offset, 0);
2190 r = crtc->gamma_store;
2191 g = r + crtc->gamma_size;
2192 b = g + crtc->gamma_size;
2193 for (i = 0; i < 256; i++) {
2194 WREG32(mmDC_LUT_30_COLOR + amdgpu_crtc->crtc_offset,
2195 ((*r++ & 0xffc0) << 14) |
2196 ((*g++ & 0xffc0) << 4) |
2197 (*b++ >> 6));
2198 }
2199
2200 tmp = RREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2201 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, GRPH_DEGAMMA_MODE, 0);
2202 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR_DEGAMMA_MODE, 0);
2203 tmp = REG_SET_FIELD(tmp, DEGAMMA_CONTROL, CURSOR2_DEGAMMA_MODE, 0);
2204 WREG32(mmDEGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2205
2206 tmp = RREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset);
2207 tmp = REG_SET_FIELD(tmp, GAMUT_REMAP_CONTROL, GRPH_GAMUT_REMAP_MODE, 0);
2208 WREG32(mmGAMUT_REMAP_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2209
2210 tmp = RREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset);
2211 tmp = REG_SET_FIELD(tmp, REGAMMA_CONTROL, GRPH_REGAMMA_MODE, 0);
2212 WREG32(mmREGAMMA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2213
2214 tmp = RREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset);
2215 tmp = REG_SET_FIELD(tmp, OUTPUT_CSC_CONTROL, OUTPUT_CSC_GRPH_MODE, 0);
2216 WREG32(mmOUTPUT_CSC_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2217
2218 /* XXX match this to the depth of the crtc fmt block, move to modeset? */
2219 WREG32(mmDENORM_CONTROL + amdgpu_crtc->crtc_offset, 0);
2220 /* XXX this only needs to be programmed once per crtc at startup,
2221 * not sure where the best place for it is
2222 */
2223 tmp = RREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset);
2224 tmp = REG_SET_FIELD(tmp, ALPHA_CONTROL, CURSOR_ALPHA_BLND_ENA, 1);
2225 WREG32(mmALPHA_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2226}
2227
2228static int dce_v11_0_pick_dig_encoder(struct drm_encoder *encoder)
2229{
2230 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
2231 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2232
2233 switch (amdgpu_encoder->encoder_id) {
2234 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2235 if (dig->linkb)
2236 return 1;
2237 else
2238 return 0;
2239 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2240 if (dig->linkb)
2241 return 3;
2242 else
2243 return 2;
2244 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2245 if (dig->linkb)
2246 return 5;
2247 else
2248 return 4;
2249 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
2250 return 6;
2251 default:
2252 DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2253 return 0;
2254 }
2255}
2256
2257/**
2258 * dce_v11_0_pick_pll - Allocate a PPLL for use by the crtc.
2259 *
2260 * @crtc: drm crtc
2261 *
2262 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
2263 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
2264 * monitors a dedicated PPLL must be used. If a particular board has
2265 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
2266 * as there is no need to program the PLL itself. If we are not able to
2267 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
2268 * avoid messing up an existing monitor.
2269 *
2270 * Asic specific PLL information
2271 *
2272 * DCE 10.x
2273 * Tonga
2274 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
2275 * CI
2276 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
2277 *
2278 */
2279static u32 dce_v11_0_pick_pll(struct drm_crtc *crtc)
2280{
2281 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2282 struct drm_device *dev = crtc->dev;
2283 struct amdgpu_device *adev = drm_to_adev(dev);
2284 u32 pll_in_use;
2285 int pll;
2286
2287 if ((adev->asic_type == CHIP_POLARIS10) ||
2288 (adev->asic_type == CHIP_POLARIS11) ||
2289 (adev->asic_type == CHIP_POLARIS12) ||
2290 (adev->asic_type == CHIP_VEGAM)) {
2291 struct amdgpu_encoder *amdgpu_encoder =
2292 to_amdgpu_encoder(amdgpu_crtc->encoder);
2293 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
2294
2295 if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2296 return ATOM_DP_DTO;
2297
2298 switch (amdgpu_encoder->encoder_id) {
2299 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
2300 if (dig->linkb)
2301 return ATOM_COMBOPHY_PLL1;
2302 else
2303 return ATOM_COMBOPHY_PLL0;
2304 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
2305 if (dig->linkb)
2306 return ATOM_COMBOPHY_PLL3;
2307 else
2308 return ATOM_COMBOPHY_PLL2;
2309 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
2310 if (dig->linkb)
2311 return ATOM_COMBOPHY_PLL5;
2312 else
2313 return ATOM_COMBOPHY_PLL4;
2314 default:
2315 DRM_ERROR("invalid encoder_id: 0x%x\n", amdgpu_encoder->encoder_id);
2316 return ATOM_PPLL_INVALID;
2317 }
2318 }
2319
2320 if (ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder))) {
2321 if (adev->clock.dp_extclk)
2322 /* skip PPLL programming if using ext clock */
2323 return ATOM_PPLL_INVALID;
2324 else {
2325 /* use the same PPLL for all DP monitors */
2326 pll = amdgpu_pll_get_shared_dp_ppll(crtc);
2327 if (pll != ATOM_PPLL_INVALID)
2328 return pll;
2329 }
2330 } else {
2331 /* use the same PPLL for all monitors with the same clock */
2332 pll = amdgpu_pll_get_shared_nondp_ppll(crtc);
2333 if (pll != ATOM_PPLL_INVALID)
2334 return pll;
2335 }
2336
2337 /* XXX need to determine what plls are available on each DCE11 part */
2338 pll_in_use = amdgpu_pll_get_use_mask(crtc);
2339 if (adev->flags & AMD_IS_APU) {
2340 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2341 return ATOM_PPLL1;
2342 if (!(pll_in_use & (1 << ATOM_PPLL0)))
2343 return ATOM_PPLL0;
2344 DRM_ERROR("unable to allocate a PPLL\n");
2345 return ATOM_PPLL_INVALID;
2346 } else {
2347 if (!(pll_in_use & (1 << ATOM_PPLL2)))
2348 return ATOM_PPLL2;
2349 if (!(pll_in_use & (1 << ATOM_PPLL1)))
2350 return ATOM_PPLL1;
2351 if (!(pll_in_use & (1 << ATOM_PPLL0)))
2352 return ATOM_PPLL0;
2353 DRM_ERROR("unable to allocate a PPLL\n");
2354 return ATOM_PPLL_INVALID;
2355 }
2356 return ATOM_PPLL_INVALID;
2357}
2358
2359static void dce_v11_0_lock_cursor(struct drm_crtc *crtc, bool lock)
2360{
2361 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2362 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2363 uint32_t cur_lock;
2364
2365 cur_lock = RREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset);
2366 if (lock)
2367 cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 1);
2368 else
2369 cur_lock = REG_SET_FIELD(cur_lock, CUR_UPDATE, CURSOR_UPDATE_LOCK, 0);
2370 WREG32(mmCUR_UPDATE + amdgpu_crtc->crtc_offset, cur_lock);
2371}
2372
2373static void dce_v11_0_hide_cursor(struct drm_crtc *crtc)
2374{
2375 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2376 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2377 u32 tmp;
2378
2379 tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2380 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 0);
2381 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2382}
2383
2384static void dce_v11_0_show_cursor(struct drm_crtc *crtc)
2385{
2386 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2387 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2388 u32 tmp;
2389
2390 WREG32(mmCUR_SURFACE_ADDRESS_HIGH + amdgpu_crtc->crtc_offset,
2391 upper_32_bits(amdgpu_crtc->cursor_addr));
2392 WREG32(mmCUR_SURFACE_ADDRESS + amdgpu_crtc->crtc_offset,
2393 lower_32_bits(amdgpu_crtc->cursor_addr));
2394
2395 tmp = RREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset);
2396 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_EN, 1);
2397 tmp = REG_SET_FIELD(tmp, CUR_CONTROL, CURSOR_MODE, 2);
2398 WREG32(mmCUR_CONTROL + amdgpu_crtc->crtc_offset, tmp);
2399}
2400
2401static int dce_v11_0_cursor_move_locked(struct drm_crtc *crtc,
2402 int x, int y)
2403{
2404 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2405 struct amdgpu_device *adev = drm_to_adev(crtc->dev);
2406 int xorigin = 0, yorigin = 0;
2407
2408 amdgpu_crtc->cursor_x = x;
2409 amdgpu_crtc->cursor_y = y;
2410
2411 /* avivo cursor are offset into the total surface */
2412 x += crtc->x;
2413 y += crtc->y;
2414 DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y);
2415
2416 if (x < 0) {
2417 xorigin = min(-x, amdgpu_crtc->max_cursor_width - 1);
2418 x = 0;
2419 }
2420 if (y < 0) {
2421 yorigin = min(-y, amdgpu_crtc->max_cursor_height - 1);
2422 y = 0;
2423 }
2424
2425 WREG32(mmCUR_POSITION + amdgpu_crtc->crtc_offset, (x << 16) | y);
2426 WREG32(mmCUR_HOT_SPOT + amdgpu_crtc->crtc_offset, (xorigin << 16) | yorigin);
2427 WREG32(mmCUR_SIZE + amdgpu_crtc->crtc_offset,
2428 ((amdgpu_crtc->cursor_width - 1) << 16) | (amdgpu_crtc->cursor_height - 1));
2429
2430 return 0;
2431}
2432
2433static int dce_v11_0_crtc_cursor_move(struct drm_crtc *crtc,
2434 int x, int y)
2435{
2436 int ret;
2437
2438 dce_v11_0_lock_cursor(crtc, true);
2439 ret = dce_v11_0_cursor_move_locked(crtc, x, y);
2440 dce_v11_0_lock_cursor(crtc, false);
2441
2442 return ret;
2443}
2444
2445static int dce_v11_0_crtc_cursor_set2(struct drm_crtc *crtc,
2446 struct drm_file *file_priv,
2447 uint32_t handle,
2448 uint32_t width,
2449 uint32_t height,
2450 int32_t hot_x,
2451 int32_t hot_y)
2452{
2453 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2454 struct drm_gem_object *obj;
2455 struct amdgpu_bo *aobj;
2456 int ret;
2457
2458 if (!handle) {
2459 /* turn off cursor */
2460 dce_v11_0_hide_cursor(crtc);
2461 obj = NULL;
2462 goto unpin;
2463 }
2464
2465 if ((width > amdgpu_crtc->max_cursor_width) ||
2466 (height > amdgpu_crtc->max_cursor_height)) {
2467 DRM_ERROR("bad cursor width or height %d x %d\n", width, height);
2468 return -EINVAL;
2469 }
2470
2471 obj = drm_gem_object_lookup(file_priv, handle);
2472 if (!obj) {
2473 DRM_ERROR("Cannot find cursor object %x for crtc %d\n", handle, amdgpu_crtc->crtc_id);
2474 return -ENOENT;
2475 }
2476
2477 aobj = gem_to_amdgpu_bo(obj);
2478 ret = amdgpu_bo_reserve(aobj, false);
2479 if (ret != 0) {
2480 drm_gem_object_put(obj);
2481 return ret;
2482 }
2483
2484 ret = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
2485 amdgpu_bo_unreserve(aobj);
2486 if (ret) {
2487 DRM_ERROR("Failed to pin new cursor BO (%d)\n", ret);
2488 drm_gem_object_put(obj);
2489 return ret;
2490 }
2491 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
2492
2493 dce_v11_0_lock_cursor(crtc, true);
2494
2495 if (width != amdgpu_crtc->cursor_width ||
2496 height != amdgpu_crtc->cursor_height ||
2497 hot_x != amdgpu_crtc->cursor_hot_x ||
2498 hot_y != amdgpu_crtc->cursor_hot_y) {
2499 int x, y;
2500
2501 x = amdgpu_crtc->cursor_x + amdgpu_crtc->cursor_hot_x - hot_x;
2502 y = amdgpu_crtc->cursor_y + amdgpu_crtc->cursor_hot_y - hot_y;
2503
2504 dce_v11_0_cursor_move_locked(crtc, x, y);
2505
2506 amdgpu_crtc->cursor_width = width;
2507 amdgpu_crtc->cursor_height = height;
2508 amdgpu_crtc->cursor_hot_x = hot_x;
2509 amdgpu_crtc->cursor_hot_y = hot_y;
2510 }
2511
2512 dce_v11_0_show_cursor(crtc);
2513 dce_v11_0_lock_cursor(crtc, false);
2514
2515unpin:
2516 if (amdgpu_crtc->cursor_bo) {
2517 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2518 ret = amdgpu_bo_reserve(aobj, true);
2519 if (likely(ret == 0)) {
2520 amdgpu_bo_unpin(aobj);
2521 amdgpu_bo_unreserve(aobj);
2522 }
2523 drm_gem_object_put(amdgpu_crtc->cursor_bo);
2524 }
2525
2526 amdgpu_crtc->cursor_bo = obj;
2527 return 0;
2528}
2529
2530static void dce_v11_0_cursor_reset(struct drm_crtc *crtc)
2531{
2532 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2533
2534 if (amdgpu_crtc->cursor_bo) {
2535 dce_v11_0_lock_cursor(crtc, true);
2536
2537 dce_v11_0_cursor_move_locked(crtc, amdgpu_crtc->cursor_x,
2538 amdgpu_crtc->cursor_y);
2539
2540 dce_v11_0_show_cursor(crtc);
2541
2542 dce_v11_0_lock_cursor(crtc, false);
2543 }
2544}
2545
2546static int dce_v11_0_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
2547 u16 *blue, uint32_t size,
2548 struct drm_modeset_acquire_ctx *ctx)
2549{
2550 dce_v11_0_crtc_load_lut(crtc);
2551
2552 return 0;
2553}
2554
2555static void dce_v11_0_crtc_destroy(struct drm_crtc *crtc)
2556{
2557 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2558
2559 drm_crtc_cleanup(crtc);
2560 kfree(amdgpu_crtc);
2561}
2562
2563static const struct drm_crtc_funcs dce_v11_0_crtc_funcs = {
2564 .cursor_set2 = dce_v11_0_crtc_cursor_set2,
2565 .cursor_move = dce_v11_0_crtc_cursor_move,
2566 .gamma_set = dce_v11_0_crtc_gamma_set,
2567 .set_config = amdgpu_display_crtc_set_config,
2568 .destroy = dce_v11_0_crtc_destroy,
2569 .page_flip_target = amdgpu_display_crtc_page_flip_target,
2570 .get_vblank_counter = amdgpu_get_vblank_counter_kms,
2571 .enable_vblank = amdgpu_enable_vblank_kms,
2572 .disable_vblank = amdgpu_disable_vblank_kms,
2573 .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
2574};
2575
2576static void dce_v11_0_crtc_dpms(struct drm_crtc *crtc, int mode)
2577{
2578 struct drm_device *dev = crtc->dev;
2579 struct amdgpu_device *adev = drm_to_adev(dev);
2580 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2581 unsigned type;
2582
2583 switch (mode) {
2584 case DRM_MODE_DPMS_ON:
2585 amdgpu_crtc->enabled = true;
2586 amdgpu_atombios_crtc_enable(crtc, ATOM_ENABLE);
2587 dce_v11_0_vga_enable(crtc, true);
2588 amdgpu_atombios_crtc_blank(crtc, ATOM_DISABLE);
2589 dce_v11_0_vga_enable(crtc, false);
2590 /* Make sure VBLANK and PFLIP interrupts are still enabled */
2591 type = amdgpu_display_crtc_idx_to_irq_type(adev,
2592 amdgpu_crtc->crtc_id);
2593 amdgpu_irq_update(adev, &adev->crtc_irq, type);
2594 amdgpu_irq_update(adev, &adev->pageflip_irq, type);
2595 drm_crtc_vblank_on(crtc);
2596 dce_v11_0_crtc_load_lut(crtc);
2597 break;
2598 case DRM_MODE_DPMS_STANDBY:
2599 case DRM_MODE_DPMS_SUSPEND:
2600 case DRM_MODE_DPMS_OFF:
2601 drm_crtc_vblank_off(crtc);
2602 if (amdgpu_crtc->enabled) {
2603 dce_v11_0_vga_enable(crtc, true);
2604 amdgpu_atombios_crtc_blank(crtc, ATOM_ENABLE);
2605 dce_v11_0_vga_enable(crtc, false);
2606 }
2607 amdgpu_atombios_crtc_enable(crtc, ATOM_DISABLE);
2608 amdgpu_crtc->enabled = false;
2609 break;
2610 }
2611 /* adjust pm to dpms */
2612 amdgpu_dpm_compute_clocks(adev);
2613}
2614
2615static void dce_v11_0_crtc_prepare(struct drm_crtc *crtc)
2616{
2617 /* disable crtc pair power gating before programming */
2618 amdgpu_atombios_crtc_powergate(crtc, ATOM_DISABLE);
2619 amdgpu_atombios_crtc_lock(crtc, ATOM_ENABLE);
2620 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2621}
2622
2623static void dce_v11_0_crtc_commit(struct drm_crtc *crtc)
2624{
2625 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
2626 amdgpu_atombios_crtc_lock(crtc, ATOM_DISABLE);
2627}
2628
2629static void dce_v11_0_crtc_disable(struct drm_crtc *crtc)
2630{
2631 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2632 struct drm_device *dev = crtc->dev;
2633 struct amdgpu_device *adev = drm_to_adev(dev);
2634 struct amdgpu_atom_ss ss;
2635 int i;
2636
2637 dce_v11_0_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
2638 if (crtc->primary->fb) {
2639 int r;
2640 struct amdgpu_bo *abo;
2641
2642 abo = gem_to_amdgpu_bo(crtc->primary->fb->obj[0]);
2643 r = amdgpu_bo_reserve(abo, true);
2644 if (unlikely(r))
2645 DRM_ERROR("failed to reserve abo before unpin\n");
2646 else {
2647 amdgpu_bo_unpin(abo);
2648 amdgpu_bo_unreserve(abo);
2649 }
2650 }
2651 /* disable the GRPH */
2652 dce_v11_0_grph_enable(crtc, false);
2653
2654 amdgpu_atombios_crtc_powergate(crtc, ATOM_ENABLE);
2655
2656 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2657 if (adev->mode_info.crtcs[i] &&
2658 adev->mode_info.crtcs[i]->enabled &&
2659 i != amdgpu_crtc->crtc_id &&
2660 amdgpu_crtc->pll_id == adev->mode_info.crtcs[i]->pll_id) {
2661 /* one other crtc is using this pll don't turn
2662 * off the pll
2663 */
2664 goto done;
2665 }
2666 }
2667
2668 switch (amdgpu_crtc->pll_id) {
2669 case ATOM_PPLL0:
2670 case ATOM_PPLL1:
2671 case ATOM_PPLL2:
2672 /* disable the ppll */
2673 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id, amdgpu_crtc->pll_id,
2674 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2675 break;
2676 case ATOM_COMBOPHY_PLL0:
2677 case ATOM_COMBOPHY_PLL1:
2678 case ATOM_COMBOPHY_PLL2:
2679 case ATOM_COMBOPHY_PLL3:
2680 case ATOM_COMBOPHY_PLL4:
2681 case ATOM_COMBOPHY_PLL5:
2682 /* disable the ppll */
2683 amdgpu_atombios_crtc_program_pll(crtc, ATOM_CRTC_INVALID, amdgpu_crtc->pll_id,
2684 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2685 break;
2686 default:
2687 break;
2688 }
2689done:
2690 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2691 amdgpu_crtc->adjusted_clock = 0;
2692 amdgpu_crtc->encoder = NULL;
2693 amdgpu_crtc->connector = NULL;
2694}
2695
2696static int dce_v11_0_crtc_mode_set(struct drm_crtc *crtc,
2697 struct drm_display_mode *mode,
2698 struct drm_display_mode *adjusted_mode,
2699 int x, int y, struct drm_framebuffer *old_fb)
2700{
2701 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2702 struct drm_device *dev = crtc->dev;
2703 struct amdgpu_device *adev = drm_to_adev(dev);
2704
2705 if (!amdgpu_crtc->adjusted_clock)
2706 return -EINVAL;
2707
2708 if ((adev->asic_type == CHIP_POLARIS10) ||
2709 (adev->asic_type == CHIP_POLARIS11) ||
2710 (adev->asic_type == CHIP_POLARIS12) ||
2711 (adev->asic_type == CHIP_VEGAM)) {
2712 struct amdgpu_encoder *amdgpu_encoder =
2713 to_amdgpu_encoder(amdgpu_crtc->encoder);
2714 int encoder_mode =
2715 amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder);
2716
2717 /* SetPixelClock calculates the plls and ss values now */
2718 amdgpu_atombios_crtc_program_pll(crtc, amdgpu_crtc->crtc_id,
2719 amdgpu_crtc->pll_id,
2720 encoder_mode, amdgpu_encoder->encoder_id,
2721 adjusted_mode->clock, 0, 0, 0, 0,
2722 amdgpu_crtc->bpc, amdgpu_crtc->ss_enabled, &amdgpu_crtc->ss);
2723 } else {
2724 amdgpu_atombios_crtc_set_pll(crtc, adjusted_mode);
2725 }
2726 amdgpu_atombios_crtc_set_dtd_timing(crtc, adjusted_mode);
2727 dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2728 amdgpu_atombios_crtc_overscan_setup(crtc, mode, adjusted_mode);
2729 amdgpu_atombios_crtc_scaler_setup(crtc);
2730 dce_v11_0_cursor_reset(crtc);
2731 /* update the hw version fpr dpm */
2732 amdgpu_crtc->hw_mode = *adjusted_mode;
2733
2734 return 0;
2735}
2736
2737static bool dce_v11_0_crtc_mode_fixup(struct drm_crtc *crtc,
2738 const struct drm_display_mode *mode,
2739 struct drm_display_mode *adjusted_mode)
2740{
2741 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2742 struct drm_device *dev = crtc->dev;
2743 struct drm_encoder *encoder;
2744
2745 /* assign the encoder to the amdgpu crtc to avoid repeated lookups later */
2746 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2747 if (encoder->crtc == crtc) {
2748 amdgpu_crtc->encoder = encoder;
2749 amdgpu_crtc->connector = amdgpu_get_connector_for_encoder(encoder);
2750 break;
2751 }
2752 }
2753 if ((amdgpu_crtc->encoder == NULL) || (amdgpu_crtc->connector == NULL)) {
2754 amdgpu_crtc->encoder = NULL;
2755 amdgpu_crtc->connector = NULL;
2756 return false;
2757 }
2758 if (!amdgpu_display_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
2759 return false;
2760 if (amdgpu_atombios_crtc_prepare_pll(crtc, adjusted_mode))
2761 return false;
2762 /* pick pll */
2763 amdgpu_crtc->pll_id = dce_v11_0_pick_pll(crtc);
2764 /* if we can't get a PPLL for a non-DP encoder, fail */
2765 if ((amdgpu_crtc->pll_id == ATOM_PPLL_INVALID) &&
2766 !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(amdgpu_crtc->encoder)))
2767 return false;
2768
2769 return true;
2770}
2771
2772static int dce_v11_0_crtc_set_base(struct drm_crtc *crtc, int x, int y,
2773 struct drm_framebuffer *old_fb)
2774{
2775 return dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2776}
2777
2778static int dce_v11_0_crtc_set_base_atomic(struct drm_crtc *crtc,
2779 struct drm_framebuffer *fb,
2780 int x, int y, enum mode_set_atomic state)
2781{
2782 return dce_v11_0_crtc_do_set_base(crtc, fb, x, y, 1);
2783}
2784
2785static const struct drm_crtc_helper_funcs dce_v11_0_crtc_helper_funcs = {
2786 .dpms = dce_v11_0_crtc_dpms,
2787 .mode_fixup = dce_v11_0_crtc_mode_fixup,
2788 .mode_set = dce_v11_0_crtc_mode_set,
2789 .mode_set_base = dce_v11_0_crtc_set_base,
2790 .mode_set_base_atomic = dce_v11_0_crtc_set_base_atomic,
2791 .prepare = dce_v11_0_crtc_prepare,
2792 .commit = dce_v11_0_crtc_commit,
2793 .disable = dce_v11_0_crtc_disable,
2794 .get_scanout_position = amdgpu_crtc_get_scanout_position,
2795};
2796
2797static int dce_v11_0_crtc_init(struct amdgpu_device *adev, int index)
2798{
2799 struct amdgpu_crtc *amdgpu_crtc;
2800
2801 amdgpu_crtc = kzalloc(sizeof(struct amdgpu_crtc) +
2802 (AMDGPUFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
2803 if (amdgpu_crtc == NULL)
2804 return -ENOMEM;
2805
2806 drm_crtc_init(adev_to_drm(adev), &amdgpu_crtc->base, &dce_v11_0_crtc_funcs);
2807
2808 drm_mode_crtc_set_gamma_size(&amdgpu_crtc->base, 256);
2809 amdgpu_crtc->crtc_id = index;
2810 adev->mode_info.crtcs[index] = amdgpu_crtc;
2811
2812 amdgpu_crtc->max_cursor_width = 128;
2813 amdgpu_crtc->max_cursor_height = 128;
2814 adev_to_drm(adev)->mode_config.cursor_width = amdgpu_crtc->max_cursor_width;
2815 adev_to_drm(adev)->mode_config.cursor_height = amdgpu_crtc->max_cursor_height;
2816
2817 switch (amdgpu_crtc->crtc_id) {
2818 case 0:
2819 default:
2820 amdgpu_crtc->crtc_offset = CRTC0_REGISTER_OFFSET;
2821 break;
2822 case 1:
2823 amdgpu_crtc->crtc_offset = CRTC1_REGISTER_OFFSET;
2824 break;
2825 case 2:
2826 amdgpu_crtc->crtc_offset = CRTC2_REGISTER_OFFSET;
2827 break;
2828 case 3:
2829 amdgpu_crtc->crtc_offset = CRTC3_REGISTER_OFFSET;
2830 break;
2831 case 4:
2832 amdgpu_crtc->crtc_offset = CRTC4_REGISTER_OFFSET;
2833 break;
2834 case 5:
2835 amdgpu_crtc->crtc_offset = CRTC5_REGISTER_OFFSET;
2836 break;
2837 }
2838
2839 amdgpu_crtc->pll_id = ATOM_PPLL_INVALID;
2840 amdgpu_crtc->adjusted_clock = 0;
2841 amdgpu_crtc->encoder = NULL;
2842 amdgpu_crtc->connector = NULL;
2843 drm_crtc_helper_add(&amdgpu_crtc->base, &dce_v11_0_crtc_helper_funcs);
2844
2845 return 0;
2846}
2847
2848static int dce_v11_0_early_init(void *handle)
2849{
2850 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2851
2852 adev->audio_endpt_rreg = &dce_v11_0_audio_endpt_rreg;
2853 adev->audio_endpt_wreg = &dce_v11_0_audio_endpt_wreg;
2854
2855 dce_v11_0_set_display_funcs(adev);
2856
2857 adev->mode_info.num_crtc = dce_v11_0_get_num_crtc(adev);
2858
2859 switch (adev->asic_type) {
2860 case CHIP_CARRIZO:
2861 adev->mode_info.num_hpd = 6;
2862 adev->mode_info.num_dig = 9;
2863 break;
2864 case CHIP_STONEY:
2865 adev->mode_info.num_hpd = 6;
2866 adev->mode_info.num_dig = 9;
2867 break;
2868 case CHIP_POLARIS10:
2869 case CHIP_VEGAM:
2870 adev->mode_info.num_hpd = 6;
2871 adev->mode_info.num_dig = 6;
2872 break;
2873 case CHIP_POLARIS11:
2874 case CHIP_POLARIS12:
2875 adev->mode_info.num_hpd = 5;
2876 adev->mode_info.num_dig = 5;
2877 break;
2878 default:
2879 /* FIXME: not supported yet */
2880 return -EINVAL;
2881 }
2882
2883 dce_v11_0_set_irq_funcs(adev);
2884
2885 return 0;
2886}
2887
2888static int dce_v11_0_sw_init(void *handle)
2889{
2890 int r, i;
2891 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2892
2893 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2894 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + 1, &adev->crtc_irq);
2895 if (r)
2896 return r;
2897 }
2898
2899 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP; i < 20; i += 2) {
2900 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i, &adev->pageflip_irq);
2901 if (r)
2902 return r;
2903 }
2904
2905 /* HPD hotplug */
2906 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
2907 if (r)
2908 return r;
2909
2910 adev_to_drm(adev)->mode_config.funcs = &amdgpu_mode_funcs;
2911
2912 adev_to_drm(adev)->mode_config.async_page_flip = true;
2913
2914 adev_to_drm(adev)->mode_config.max_width = 16384;
2915 adev_to_drm(adev)->mode_config.max_height = 16384;
2916
2917 adev_to_drm(adev)->mode_config.preferred_depth = 24;
2918 adev_to_drm(adev)->mode_config.prefer_shadow = 1;
2919
2920 adev_to_drm(adev)->mode_config.fb_modifiers_not_supported = true;
2921
2922 r = amdgpu_display_modeset_create_props(adev);
2923 if (r)
2924 return r;
2925
2926 adev_to_drm(adev)->mode_config.max_width = 16384;
2927 adev_to_drm(adev)->mode_config.max_height = 16384;
2928
2929
2930 /* allocate crtcs */
2931 for (i = 0; i < adev->mode_info.num_crtc; i++) {
2932 r = dce_v11_0_crtc_init(adev, i);
2933 if (r)
2934 return r;
2935 }
2936
2937 if (amdgpu_atombios_get_connector_info_from_object_table(adev))
2938 amdgpu_display_print_display_setup(adev_to_drm(adev));
2939 else
2940 return -EINVAL;
2941
2942 /* setup afmt */
2943 r = dce_v11_0_afmt_init(adev);
2944 if (r)
2945 return r;
2946
2947 r = dce_v11_0_audio_init(adev);
2948 if (r)
2949 return r;
2950
2951 /* Disable vblank IRQs aggressively for power-saving */
2952 /* XXX: can this be enabled for DC? */
2953 adev_to_drm(adev)->vblank_disable_immediate = true;
2954
2955 r = drm_vblank_init(adev_to_drm(adev), adev->mode_info.num_crtc);
2956 if (r)
2957 return r;
2958
2959 INIT_WORK(&adev->hotplug_work,
2960 amdgpu_display_hotplug_work_func);
2961
2962 drm_kms_helper_poll_init(adev_to_drm(adev));
2963
2964 adev->mode_info.mode_config_initialized = true;
2965 return 0;
2966}
2967
2968static int dce_v11_0_sw_fini(void *handle)
2969{
2970 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2971
2972 kfree(adev->mode_info.bios_hardcoded_edid);
2973
2974 drm_kms_helper_poll_fini(adev_to_drm(adev));
2975
2976 dce_v11_0_audio_fini(adev);
2977
2978 dce_v11_0_afmt_fini(adev);
2979
2980 drm_mode_config_cleanup(adev_to_drm(adev));
2981 adev->mode_info.mode_config_initialized = false;
2982
2983 return 0;
2984}
2985
2986static int dce_v11_0_hw_init(void *handle)
2987{
2988 int i;
2989 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2990
2991 dce_v11_0_init_golden_registers(adev);
2992
2993 /* disable vga render */
2994 dce_v11_0_set_vga_render_state(adev, false);
2995 /* init dig PHYs, disp eng pll */
2996 amdgpu_atombios_crtc_powergate_init(adev);
2997 amdgpu_atombios_encoder_init_dig(adev);
2998 if ((adev->asic_type == CHIP_POLARIS10) ||
2999 (adev->asic_type == CHIP_POLARIS11) ||
3000 (adev->asic_type == CHIP_POLARIS12) ||
3001 (adev->asic_type == CHIP_VEGAM)) {
3002 amdgpu_atombios_crtc_set_dce_clock(adev, adev->clock.default_dispclk,
3003 DCE_CLOCK_TYPE_DISPCLK, ATOM_GCK_DFS);
3004 amdgpu_atombios_crtc_set_dce_clock(adev, 0,
3005 DCE_CLOCK_TYPE_DPREFCLK, ATOM_GCK_DFS);
3006 } else {
3007 amdgpu_atombios_crtc_set_disp_eng_pll(adev, adev->clock.default_dispclk);
3008 }
3009
3010 /* initialize hpd */
3011 dce_v11_0_hpd_init(adev);
3012
3013 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3014 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3015 }
3016
3017 dce_v11_0_pageflip_interrupt_init(adev);
3018
3019 return 0;
3020}
3021
3022static int dce_v11_0_hw_fini(void *handle)
3023{
3024 int i;
3025 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3026
3027 dce_v11_0_hpd_fini(adev);
3028
3029 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
3030 dce_v11_0_audio_enable(adev, &adev->mode_info.audio.pin[i], false);
3031 }
3032
3033 dce_v11_0_pageflip_interrupt_fini(adev);
3034
3035 flush_work(&adev->hotplug_work);
3036
3037 return 0;
3038}
3039
3040static int dce_v11_0_suspend(void *handle)
3041{
3042 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3043 int r;
3044
3045 r = amdgpu_display_suspend_helper(adev);
3046 if (r)
3047 return r;
3048
3049 adev->mode_info.bl_level =
3050 amdgpu_atombios_encoder_get_backlight_level_from_reg(adev);
3051
3052 return dce_v11_0_hw_fini(handle);
3053}
3054
3055static int dce_v11_0_resume(void *handle)
3056{
3057 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3058 int ret;
3059
3060 amdgpu_atombios_encoder_set_backlight_level_to_reg(adev,
3061 adev->mode_info.bl_level);
3062
3063 ret = dce_v11_0_hw_init(handle);
3064
3065 /* turn on the BL */
3066 if (adev->mode_info.bl_encoder) {
3067 u8 bl_level = amdgpu_display_backlight_get_level(adev,
3068 adev->mode_info.bl_encoder);
3069 amdgpu_display_backlight_set_level(adev, adev->mode_info.bl_encoder,
3070 bl_level);
3071 }
3072 if (ret)
3073 return ret;
3074
3075 return amdgpu_display_resume_helper(adev);
3076}
3077
3078static bool dce_v11_0_is_idle(void *handle)
3079{
3080 return true;
3081}
3082
3083static int dce_v11_0_wait_for_idle(void *handle)
3084{
3085 return 0;
3086}
3087
3088static int dce_v11_0_soft_reset(void *handle)
3089{
3090 u32 srbm_soft_reset = 0, tmp;
3091 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
3092
3093 if (dce_v11_0_is_display_hung(adev))
3094 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_DC_MASK;
3095
3096 if (srbm_soft_reset) {
3097 tmp = RREG32(mmSRBM_SOFT_RESET);
3098 tmp |= srbm_soft_reset;
3099 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
3100 WREG32(mmSRBM_SOFT_RESET, tmp);
3101 tmp = RREG32(mmSRBM_SOFT_RESET);
3102
3103 udelay(50);
3104
3105 tmp &= ~srbm_soft_reset;
3106 WREG32(mmSRBM_SOFT_RESET, tmp);
3107 tmp = RREG32(mmSRBM_SOFT_RESET);
3108
3109 /* Wait a little for things to settle down */
3110 udelay(50);
3111 }
3112 return 0;
3113}
3114
3115static void dce_v11_0_set_crtc_vblank_interrupt_state(struct amdgpu_device *adev,
3116 int crtc,
3117 enum amdgpu_interrupt_state state)
3118{
3119 u32 lb_interrupt_mask;
3120
3121 if (crtc >= adev->mode_info.num_crtc) {
3122 DRM_DEBUG("invalid crtc %d\n", crtc);
3123 return;
3124 }
3125
3126 switch (state) {
3127 case AMDGPU_IRQ_STATE_DISABLE:
3128 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3129 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3130 VBLANK_INTERRUPT_MASK, 0);
3131 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3132 break;
3133 case AMDGPU_IRQ_STATE_ENABLE:
3134 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3135 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3136 VBLANK_INTERRUPT_MASK, 1);
3137 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3138 break;
3139 default:
3140 break;
3141 }
3142}
3143
3144static void dce_v11_0_set_crtc_vline_interrupt_state(struct amdgpu_device *adev,
3145 int crtc,
3146 enum amdgpu_interrupt_state state)
3147{
3148 u32 lb_interrupt_mask;
3149
3150 if (crtc >= adev->mode_info.num_crtc) {
3151 DRM_DEBUG("invalid crtc %d\n", crtc);
3152 return;
3153 }
3154
3155 switch (state) {
3156 case AMDGPU_IRQ_STATE_DISABLE:
3157 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3158 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3159 VLINE_INTERRUPT_MASK, 0);
3160 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3161 break;
3162 case AMDGPU_IRQ_STATE_ENABLE:
3163 lb_interrupt_mask = RREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc]);
3164 lb_interrupt_mask = REG_SET_FIELD(lb_interrupt_mask, LB_INTERRUPT_MASK,
3165 VLINE_INTERRUPT_MASK, 1);
3166 WREG32(mmLB_INTERRUPT_MASK + crtc_offsets[crtc], lb_interrupt_mask);
3167 break;
3168 default:
3169 break;
3170 }
3171}
3172
3173static int dce_v11_0_set_hpd_irq_state(struct amdgpu_device *adev,
3174 struct amdgpu_irq_src *source,
3175 unsigned hpd,
3176 enum amdgpu_interrupt_state state)
3177{
3178 u32 tmp;
3179
3180 if (hpd >= adev->mode_info.num_hpd) {
3181 DRM_DEBUG("invalid hdp %d\n", hpd);
3182 return 0;
3183 }
3184
3185 switch (state) {
3186 case AMDGPU_IRQ_STATE_DISABLE:
3187 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3188 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0);
3189 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3190 break;
3191 case AMDGPU_IRQ_STATE_ENABLE:
3192 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3193 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 1);
3194 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3195 break;
3196 default:
3197 break;
3198 }
3199
3200 return 0;
3201}
3202
3203static int dce_v11_0_set_crtc_irq_state(struct amdgpu_device *adev,
3204 struct amdgpu_irq_src *source,
3205 unsigned type,
3206 enum amdgpu_interrupt_state state)
3207{
3208 switch (type) {
3209 case AMDGPU_CRTC_IRQ_VBLANK1:
3210 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 0, state);
3211 break;
3212 case AMDGPU_CRTC_IRQ_VBLANK2:
3213 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 1, state);
3214 break;
3215 case AMDGPU_CRTC_IRQ_VBLANK3:
3216 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 2, state);
3217 break;
3218 case AMDGPU_CRTC_IRQ_VBLANK4:
3219 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 3, state);
3220 break;
3221 case AMDGPU_CRTC_IRQ_VBLANK5:
3222 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 4, state);
3223 break;
3224 case AMDGPU_CRTC_IRQ_VBLANK6:
3225 dce_v11_0_set_crtc_vblank_interrupt_state(adev, 5, state);
3226 break;
3227 case AMDGPU_CRTC_IRQ_VLINE1:
3228 dce_v11_0_set_crtc_vline_interrupt_state(adev, 0, state);
3229 break;
3230 case AMDGPU_CRTC_IRQ_VLINE2:
3231 dce_v11_0_set_crtc_vline_interrupt_state(adev, 1, state);
3232 break;
3233 case AMDGPU_CRTC_IRQ_VLINE3:
3234 dce_v11_0_set_crtc_vline_interrupt_state(adev, 2, state);
3235 break;
3236 case AMDGPU_CRTC_IRQ_VLINE4:
3237 dce_v11_0_set_crtc_vline_interrupt_state(adev, 3, state);
3238 break;
3239 case AMDGPU_CRTC_IRQ_VLINE5:
3240 dce_v11_0_set_crtc_vline_interrupt_state(adev, 4, state);
3241 break;
3242 case AMDGPU_CRTC_IRQ_VLINE6:
3243 dce_v11_0_set_crtc_vline_interrupt_state(adev, 5, state);
3244 break;
3245 default:
3246 break;
3247 }
3248 return 0;
3249}
3250
3251static int dce_v11_0_set_pageflip_irq_state(struct amdgpu_device *adev,
3252 struct amdgpu_irq_src *src,
3253 unsigned type,
3254 enum amdgpu_interrupt_state state)
3255{
3256 u32 reg;
3257
3258 if (type >= adev->mode_info.num_crtc) {
3259 DRM_ERROR("invalid pageflip crtc %d\n", type);
3260 return -EINVAL;
3261 }
3262
3263 reg = RREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type]);
3264 if (state == AMDGPU_IRQ_STATE_DISABLE)
3265 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3266 reg & ~GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3267 else
3268 WREG32(mmGRPH_INTERRUPT_CONTROL + crtc_offsets[type],
3269 reg | GRPH_INTERRUPT_CONTROL__GRPH_PFLIP_INT_MASK_MASK);
3270
3271 return 0;
3272}
3273
3274static int dce_v11_0_pageflip_irq(struct amdgpu_device *adev,
3275 struct amdgpu_irq_src *source,
3276 struct amdgpu_iv_entry *entry)
3277{
3278 unsigned long flags;
3279 unsigned crtc_id;
3280 struct amdgpu_crtc *amdgpu_crtc;
3281 struct amdgpu_flip_work *works;
3282
3283 crtc_id = (entry->src_id - 8) >> 1;
3284 amdgpu_crtc = adev->mode_info.crtcs[crtc_id];
3285
3286 if (crtc_id >= adev->mode_info.num_crtc) {
3287 DRM_ERROR("invalid pageflip crtc %d\n", crtc_id);
3288 return -EINVAL;
3289 }
3290
3291 if (RREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id]) &
3292 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_OCCURRED_MASK)
3293 WREG32(mmGRPH_INTERRUPT_STATUS + crtc_offsets[crtc_id],
3294 GRPH_INTERRUPT_STATUS__GRPH_PFLIP_INT_CLEAR_MASK);
3295
3296 /* IRQ could occur when in initial stage */
3297 if(amdgpu_crtc == NULL)
3298 return 0;
3299
3300 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
3301 works = amdgpu_crtc->pflip_works;
3302 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
3303 DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d != "
3304 "AMDGPU_FLIP_SUBMITTED(%d)\n",
3305 amdgpu_crtc->pflip_status,
3306 AMDGPU_FLIP_SUBMITTED);
3307 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3308 return 0;
3309 }
3310
3311 /* page flip completed. clean up */
3312 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
3313 amdgpu_crtc->pflip_works = NULL;
3314
3315 /* wakeup usersapce */
3316 if(works->event)
3317 drm_crtc_send_vblank_event(&amdgpu_crtc->base, works->event);
3318
3319 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
3320
3321 drm_crtc_vblank_put(&amdgpu_crtc->base);
3322 schedule_work(&works->unpin_work);
3323
3324 return 0;
3325}
3326
3327static void dce_v11_0_hpd_int_ack(struct amdgpu_device *adev,
3328 int hpd)
3329{
3330 u32 tmp;
3331
3332 if (hpd >= adev->mode_info.num_hpd) {
3333 DRM_DEBUG("invalid hdp %d\n", hpd);
3334 return;
3335 }
3336
3337 tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd]);
3338 tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_ACK, 1);
3339 WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[hpd], tmp);
3340}
3341
3342static void dce_v11_0_crtc_vblank_int_ack(struct amdgpu_device *adev,
3343 int crtc)
3344{
3345 u32 tmp;
3346
3347 if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3348 DRM_DEBUG("invalid crtc %d\n", crtc);
3349 return;
3350 }
3351
3352 tmp = RREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc]);
3353 tmp = REG_SET_FIELD(tmp, LB_VBLANK_STATUS, VBLANK_ACK, 1);
3354 WREG32(mmLB_VBLANK_STATUS + crtc_offsets[crtc], tmp);
3355}
3356
3357static void dce_v11_0_crtc_vline_int_ack(struct amdgpu_device *adev,
3358 int crtc)
3359{
3360 u32 tmp;
3361
3362 if (crtc < 0 || crtc >= adev->mode_info.num_crtc) {
3363 DRM_DEBUG("invalid crtc %d\n", crtc);
3364 return;
3365 }
3366
3367 tmp = RREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc]);
3368 tmp = REG_SET_FIELD(tmp, LB_VLINE_STATUS, VLINE_ACK, 1);
3369 WREG32(mmLB_VLINE_STATUS + crtc_offsets[crtc], tmp);
3370}
3371
3372static int dce_v11_0_crtc_irq(struct amdgpu_device *adev,
3373 struct amdgpu_irq_src *source,
3374 struct amdgpu_iv_entry *entry)
3375{
3376 unsigned crtc = entry->src_id - 1;
3377 uint32_t disp_int = RREG32(interrupt_status_offsets[crtc].reg);
3378 unsigned int irq_type = amdgpu_display_crtc_idx_to_irq_type(adev,
3379 crtc);
3380
3381 switch (entry->src_data[0]) {
3382 case 0: /* vblank */
3383 if (disp_int & interrupt_status_offsets[crtc].vblank)
3384 dce_v11_0_crtc_vblank_int_ack(adev, crtc);
3385 else
3386 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3387
3388 if (amdgpu_irq_enabled(adev, source, irq_type)) {
3389 drm_handle_vblank(adev_to_drm(adev), crtc);
3390 }
3391 DRM_DEBUG("IH: D%d vblank\n", crtc + 1);
3392
3393 break;
3394 case 1: /* vline */
3395 if (disp_int & interrupt_status_offsets[crtc].vline)
3396 dce_v11_0_crtc_vline_int_ack(adev, crtc);
3397 else
3398 DRM_DEBUG("IH: IH event w/o asserted irq bit?\n");
3399
3400 DRM_DEBUG("IH: D%d vline\n", crtc + 1);
3401
3402 break;
3403 default:
3404 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3405 break;
3406 }
3407
3408 return 0;
3409}
3410
3411static int dce_v11_0_hpd_irq(struct amdgpu_device *adev,
3412 struct amdgpu_irq_src *source,
3413 struct amdgpu_iv_entry *entry)
3414{
3415 uint32_t disp_int, mask;
3416 unsigned hpd;
3417
3418 if (entry->src_data[0] >= adev->mode_info.num_hpd) {
3419 DRM_DEBUG("Unhandled interrupt: %d %d\n", entry->src_id, entry->src_data[0]);
3420 return 0;
3421 }
3422
3423 hpd = entry->src_data[0];
3424 disp_int = RREG32(interrupt_status_offsets[hpd].reg);
3425 mask = interrupt_status_offsets[hpd].hpd;
3426
3427 if (disp_int & mask) {
3428 dce_v11_0_hpd_int_ack(adev, hpd);
3429 schedule_work(&adev->hotplug_work);
3430 DRM_DEBUG("IH: HPD%d\n", hpd + 1);
3431 }
3432
3433 return 0;
3434}
3435
3436static int dce_v11_0_set_clockgating_state(void *handle,
3437 enum amd_clockgating_state state)
3438{
3439 return 0;
3440}
3441
3442static int dce_v11_0_set_powergating_state(void *handle,
3443 enum amd_powergating_state state)
3444{
3445 return 0;
3446}
3447
3448static const struct amd_ip_funcs dce_v11_0_ip_funcs = {
3449 .name = "dce_v11_0",
3450 .early_init = dce_v11_0_early_init,
3451 .late_init = NULL,
3452 .sw_init = dce_v11_0_sw_init,
3453 .sw_fini = dce_v11_0_sw_fini,
3454 .hw_init = dce_v11_0_hw_init,
3455 .hw_fini = dce_v11_0_hw_fini,
3456 .suspend = dce_v11_0_suspend,
3457 .resume = dce_v11_0_resume,
3458 .is_idle = dce_v11_0_is_idle,
3459 .wait_for_idle = dce_v11_0_wait_for_idle,
3460 .soft_reset = dce_v11_0_soft_reset,
3461 .set_clockgating_state = dce_v11_0_set_clockgating_state,
3462 .set_powergating_state = dce_v11_0_set_powergating_state,
3463};
3464
3465static void
3466dce_v11_0_encoder_mode_set(struct drm_encoder *encoder,
3467 struct drm_display_mode *mode,
3468 struct drm_display_mode *adjusted_mode)
3469{
3470 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3471
3472 amdgpu_encoder->pixel_clock = adjusted_mode->clock;
3473
3474 /* need to call this here rather than in prepare() since we need some crtc info */
3475 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3476
3477 /* set scaler clears this on some chips */
3478 dce_v11_0_set_interleave(encoder->crtc, mode);
3479
3480 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI) {
3481 dce_v11_0_afmt_enable(encoder, true);
3482 dce_v11_0_afmt_setmode(encoder, adjusted_mode);
3483 }
3484}
3485
3486static void dce_v11_0_encoder_prepare(struct drm_encoder *encoder)
3487{
3488 struct amdgpu_device *adev = drm_to_adev(encoder->dev);
3489 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3490 struct drm_connector *connector = amdgpu_get_connector_for_encoder(encoder);
3491
3492 if ((amdgpu_encoder->active_device &
3493 (ATOM_DEVICE_DFP_SUPPORT | ATOM_DEVICE_LCD_SUPPORT)) ||
3494 (amdgpu_encoder_get_dp_bridge_encoder_id(encoder) !=
3495 ENCODER_OBJECT_ID_NONE)) {
3496 struct amdgpu_encoder_atom_dig *dig = amdgpu_encoder->enc_priv;
3497 if (dig) {
3498 dig->dig_encoder = dce_v11_0_pick_dig_encoder(encoder);
3499 if (amdgpu_encoder->active_device & ATOM_DEVICE_DFP_SUPPORT)
3500 dig->afmt = adev->mode_info.afmt[dig->dig_encoder];
3501 }
3502 }
3503
3504 amdgpu_atombios_scratch_regs_lock(adev, true);
3505
3506 if (connector) {
3507 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
3508
3509 /* select the clock/data port if it uses a router */
3510 if (amdgpu_connector->router.cd_valid)
3511 amdgpu_i2c_router_select_cd_port(amdgpu_connector);
3512
3513 /* turn eDP panel on for mode set */
3514 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
3515 amdgpu_atombios_encoder_set_edp_panel_power(connector,
3516 ATOM_TRANSMITTER_ACTION_POWER_ON);
3517 }
3518
3519 /* this is needed for the pll/ss setup to work correctly in some cases */
3520 amdgpu_atombios_encoder_set_crtc_source(encoder);
3521 /* set up the FMT blocks */
3522 dce_v11_0_program_fmt(encoder);
3523}
3524
3525static void dce_v11_0_encoder_commit(struct drm_encoder *encoder)
3526{
3527 struct drm_device *dev = encoder->dev;
3528 struct amdgpu_device *adev = drm_to_adev(dev);
3529
3530 /* need to call this here as we need the crtc set up */
3531 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
3532 amdgpu_atombios_scratch_regs_lock(adev, false);
3533}
3534
3535static void dce_v11_0_encoder_disable(struct drm_encoder *encoder)
3536{
3537 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3538 struct amdgpu_encoder_atom_dig *dig;
3539
3540 amdgpu_atombios_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
3541
3542 if (amdgpu_atombios_encoder_is_digital(encoder)) {
3543 if (amdgpu_atombios_encoder_get_encoder_mode(encoder) == ATOM_ENCODER_MODE_HDMI)
3544 dce_v11_0_afmt_enable(encoder, false);
3545 dig = amdgpu_encoder->enc_priv;
3546 dig->dig_encoder = -1;
3547 }
3548 amdgpu_encoder->active_device = 0;
3549}
3550
3551/* these are handled by the primary encoders */
3552static void dce_v11_0_ext_prepare(struct drm_encoder *encoder)
3553{
3554
3555}
3556
3557static void dce_v11_0_ext_commit(struct drm_encoder *encoder)
3558{
3559
3560}
3561
3562static void
3563dce_v11_0_ext_mode_set(struct drm_encoder *encoder,
3564 struct drm_display_mode *mode,
3565 struct drm_display_mode *adjusted_mode)
3566{
3567
3568}
3569
3570static void dce_v11_0_ext_disable(struct drm_encoder *encoder)
3571{
3572
3573}
3574
3575static void
3576dce_v11_0_ext_dpms(struct drm_encoder *encoder, int mode)
3577{
3578
3579}
3580
3581static const struct drm_encoder_helper_funcs dce_v11_0_ext_helper_funcs = {
3582 .dpms = dce_v11_0_ext_dpms,
3583 .prepare = dce_v11_0_ext_prepare,
3584 .mode_set = dce_v11_0_ext_mode_set,
3585 .commit = dce_v11_0_ext_commit,
3586 .disable = dce_v11_0_ext_disable,
3587 /* no detect for TMDS/LVDS yet */
3588};
3589
3590static const struct drm_encoder_helper_funcs dce_v11_0_dig_helper_funcs = {
3591 .dpms = amdgpu_atombios_encoder_dpms,
3592 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3593 .prepare = dce_v11_0_encoder_prepare,
3594 .mode_set = dce_v11_0_encoder_mode_set,
3595 .commit = dce_v11_0_encoder_commit,
3596 .disable = dce_v11_0_encoder_disable,
3597 .detect = amdgpu_atombios_encoder_dig_detect,
3598};
3599
3600static const struct drm_encoder_helper_funcs dce_v11_0_dac_helper_funcs = {
3601 .dpms = amdgpu_atombios_encoder_dpms,
3602 .mode_fixup = amdgpu_atombios_encoder_mode_fixup,
3603 .prepare = dce_v11_0_encoder_prepare,
3604 .mode_set = dce_v11_0_encoder_mode_set,
3605 .commit = dce_v11_0_encoder_commit,
3606 .detect = amdgpu_atombios_encoder_dac_detect,
3607};
3608
3609static void dce_v11_0_encoder_destroy(struct drm_encoder *encoder)
3610{
3611 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
3612 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3613 amdgpu_atombios_encoder_fini_backlight(amdgpu_encoder);
3614 kfree(amdgpu_encoder->enc_priv);
3615 drm_encoder_cleanup(encoder);
3616 kfree(amdgpu_encoder);
3617}
3618
3619static const struct drm_encoder_funcs dce_v11_0_encoder_funcs = {
3620 .destroy = dce_v11_0_encoder_destroy,
3621};
3622
3623static void dce_v11_0_encoder_add(struct amdgpu_device *adev,
3624 uint32_t encoder_enum,
3625 uint32_t supported_device,
3626 u16 caps)
3627{
3628 struct drm_device *dev = adev_to_drm(adev);
3629 struct drm_encoder *encoder;
3630 struct amdgpu_encoder *amdgpu_encoder;
3631
3632 /* see if we already added it */
3633 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3634 amdgpu_encoder = to_amdgpu_encoder(encoder);
3635 if (amdgpu_encoder->encoder_enum == encoder_enum) {
3636 amdgpu_encoder->devices |= supported_device;
3637 return;
3638 }
3639
3640 }
3641
3642 /* add a new one */
3643 amdgpu_encoder = kzalloc(sizeof(struct amdgpu_encoder), GFP_KERNEL);
3644 if (!amdgpu_encoder)
3645 return;
3646
3647 encoder = &amdgpu_encoder->base;
3648 switch (adev->mode_info.num_crtc) {
3649 case 1:
3650 encoder->possible_crtcs = 0x1;
3651 break;
3652 case 2:
3653 default:
3654 encoder->possible_crtcs = 0x3;
3655 break;
3656 case 3:
3657 encoder->possible_crtcs = 0x7;
3658 break;
3659 case 4:
3660 encoder->possible_crtcs = 0xf;
3661 break;
3662 case 5:
3663 encoder->possible_crtcs = 0x1f;
3664 break;
3665 case 6:
3666 encoder->possible_crtcs = 0x3f;
3667 break;
3668 }
3669
3670 amdgpu_encoder->enc_priv = NULL;
3671
3672 amdgpu_encoder->encoder_enum = encoder_enum;
3673 amdgpu_encoder->encoder_id = (encoder_enum & OBJECT_ID_MASK) >> OBJECT_ID_SHIFT;
3674 amdgpu_encoder->devices = supported_device;
3675 amdgpu_encoder->rmx_type = RMX_OFF;
3676 amdgpu_encoder->underscan_type = UNDERSCAN_OFF;
3677 amdgpu_encoder->is_ext_encoder = false;
3678 amdgpu_encoder->caps = caps;
3679
3680 switch (amdgpu_encoder->encoder_id) {
3681 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1:
3682 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2:
3683 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3684 DRM_MODE_ENCODER_DAC, NULL);
3685 drm_encoder_helper_add(encoder, &dce_v11_0_dac_helper_funcs);
3686 break;
3687 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
3688 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
3689 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
3690 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
3691 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY3:
3692 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
3693 amdgpu_encoder->rmx_type = RMX_FULL;
3694 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3695 DRM_MODE_ENCODER_LVDS, NULL);
3696 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_lcd_info(amdgpu_encoder);
3697 } else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
3698 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3699 DRM_MODE_ENCODER_DAC, NULL);
3700 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3701 } else {
3702 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3703 DRM_MODE_ENCODER_TMDS, NULL);
3704 amdgpu_encoder->enc_priv = amdgpu_atombios_encoder_get_dig_info(amdgpu_encoder);
3705 }
3706 drm_encoder_helper_add(encoder, &dce_v11_0_dig_helper_funcs);
3707 break;
3708 case ENCODER_OBJECT_ID_SI170B:
3709 case ENCODER_OBJECT_ID_CH7303:
3710 case ENCODER_OBJECT_ID_EXTERNAL_SDVOA:
3711 case ENCODER_OBJECT_ID_EXTERNAL_SDVOB:
3712 case ENCODER_OBJECT_ID_TITFP513:
3713 case ENCODER_OBJECT_ID_VT1623:
3714 case ENCODER_OBJECT_ID_HDMI_SI1930:
3715 case ENCODER_OBJECT_ID_TRAVIS:
3716 case ENCODER_OBJECT_ID_NUTMEG:
3717 /* these are handled by the primary encoders */
3718 amdgpu_encoder->is_ext_encoder = true;
3719 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
3720 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3721 DRM_MODE_ENCODER_LVDS, NULL);
3722 else if (amdgpu_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT))
3723 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3724 DRM_MODE_ENCODER_DAC, NULL);
3725 else
3726 drm_encoder_init(dev, encoder, &dce_v11_0_encoder_funcs,
3727 DRM_MODE_ENCODER_TMDS, NULL);
3728 drm_encoder_helper_add(encoder, &dce_v11_0_ext_helper_funcs);
3729 break;
3730 }
3731}
3732
3733static const struct amdgpu_display_funcs dce_v11_0_display_funcs = {
3734 .bandwidth_update = &dce_v11_0_bandwidth_update,
3735 .vblank_get_counter = &dce_v11_0_vblank_get_counter,
3736 .backlight_set_level = &amdgpu_atombios_encoder_set_backlight_level,
3737 .backlight_get_level = &amdgpu_atombios_encoder_get_backlight_level,
3738 .hpd_sense = &dce_v11_0_hpd_sense,
3739 .hpd_set_polarity = &dce_v11_0_hpd_set_polarity,
3740 .hpd_get_gpio_reg = &dce_v11_0_hpd_get_gpio_reg,
3741 .page_flip = &dce_v11_0_page_flip,
3742 .page_flip_get_scanoutpos = &dce_v11_0_crtc_get_scanoutpos,
3743 .add_encoder = &dce_v11_0_encoder_add,
3744 .add_connector = &amdgpu_connector_add,
3745};
3746
3747static void dce_v11_0_set_display_funcs(struct amdgpu_device *adev)
3748{
3749 adev->mode_info.funcs = &dce_v11_0_display_funcs;
3750}
3751
3752static const struct amdgpu_irq_src_funcs dce_v11_0_crtc_irq_funcs = {
3753 .set = dce_v11_0_set_crtc_irq_state,
3754 .process = dce_v11_0_crtc_irq,
3755};
3756
3757static const struct amdgpu_irq_src_funcs dce_v11_0_pageflip_irq_funcs = {
3758 .set = dce_v11_0_set_pageflip_irq_state,
3759 .process = dce_v11_0_pageflip_irq,
3760};
3761
3762static const struct amdgpu_irq_src_funcs dce_v11_0_hpd_irq_funcs = {
3763 .set = dce_v11_0_set_hpd_irq_state,
3764 .process = dce_v11_0_hpd_irq,
3765};
3766
3767static void dce_v11_0_set_irq_funcs(struct amdgpu_device *adev)
3768{
3769 if (adev->mode_info.num_crtc > 0)
3770 adev->crtc_irq.num_types = AMDGPU_CRTC_IRQ_VLINE1 + adev->mode_info.num_crtc;
3771 else
3772 adev->crtc_irq.num_types = 0;
3773 adev->crtc_irq.funcs = &dce_v11_0_crtc_irq_funcs;
3774
3775 adev->pageflip_irq.num_types = adev->mode_info.num_crtc;
3776 adev->pageflip_irq.funcs = &dce_v11_0_pageflip_irq_funcs;
3777
3778 adev->hpd_irq.num_types = adev->mode_info.num_hpd;
3779 adev->hpd_irq.funcs = &dce_v11_0_hpd_irq_funcs;
3780}
3781
3782const struct amdgpu_ip_block_version dce_v11_0_ip_block =
3783{
3784 .type = AMD_IP_BLOCK_TYPE_DCE,
3785 .major = 11,
3786 .minor = 0,
3787 .rev = 0,
3788 .funcs = &dce_v11_0_ip_funcs,
3789};
3790
3791const struct amdgpu_ip_block_version dce_v11_2_ip_block =
3792{
3793 .type = AMD_IP_BLOCK_TYPE_DCE,
3794 .major = 11,
3795 .minor = 2,
3796 .rev = 0,
3797 .funcs = &dce_v11_0_ip_funcs,
3798};