blob: b90dc0eb08e6637623af76e3f76911ced593fba3 [file] [log] [blame]
Christian Koenigdafc3bd2009-10-11 23:49:13 +02001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Christian König.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Christian König
25 */
Thierry Redinge3b2e032013-01-14 13:36:30 +010026#include <linux/hdmi.h>
Pierre Ossmana2098252013-11-06 20:09:08 +010027#include <linux/gcd.h>
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/radeon_drm.h>
Christian Koenigdafc3bd2009-10-11 23:49:13 +020030#include "radeon.h"
Daniel Vetter3574dda2011-02-18 17:59:19 +010031#include "radeon_asic.h"
Rafał Miłeckic6543a62012-04-28 23:35:24 +020032#include "r600d.h"
Christian Koenigdafc3bd2009-10-11 23:49:13 +020033#include "atom.h"
34
35/*
36 * HDMI color format
37 */
38enum r600_hdmi_color_format {
39 RGB = 0,
40 YCC_422 = 1,
41 YCC_444 = 2
42};
43
44/*
45 * IEC60958 status bits
46 */
47enum r600_hdmi_iec_status_bits {
48 AUDIO_STATUS_DIG_ENABLE = 0x01,
Rafał Miłecki3fe373d2010-03-06 13:03:38 +000049 AUDIO_STATUS_V = 0x02,
50 AUDIO_STATUS_VCFG = 0x04,
Christian Koenigdafc3bd2009-10-11 23:49:13 +020051 AUDIO_STATUS_EMPHASIS = 0x08,
52 AUDIO_STATUS_COPYRIGHT = 0x10,
53 AUDIO_STATUS_NONAUDIO = 0x20,
54 AUDIO_STATUS_PROFESSIONAL = 0x40,
Rafał Miłecki3fe373d2010-03-06 13:03:38 +000055 AUDIO_STATUS_LEVEL = 0x80
Christian Koenigdafc3bd2009-10-11 23:49:13 +020056};
57
Lauri Kasanen1109ca02012-08-31 13:43:50 -040058static const struct radeon_hdmi_acr r600_hdmi_predefined_acr[] = {
Christian Koenigdafc3bd2009-10-11 23:49:13 +020059 /* 32kHz 44.1kHz 48kHz */
60 /* Clock N CTS N CTS N CTS */
Pierre Ossman3e719852013-11-06 20:00:32 +010061 { 25175, 4096, 25175, 28224, 125875, 6144, 25175 }, /* 25,20/1.001 MHz */
Christian Koenigdafc3bd2009-10-11 23:49:13 +020062 { 25200, 4096, 25200, 6272, 28000, 6144, 25200 }, /* 25.20 MHz */
63 { 27000, 4096, 27000, 6272, 30000, 6144, 27000 }, /* 27.00 MHz */
64 { 27027, 4096, 27027, 6272, 30030, 6144, 27027 }, /* 27.00*1.001 MHz */
65 { 54000, 4096, 54000, 6272, 60000, 6144, 54000 }, /* 54.00 MHz */
66 { 54054, 4096, 54054, 6272, 60060, 6144, 54054 }, /* 54.00*1.001 MHz */
Pierre Ossman3e719852013-11-06 20:00:32 +010067 { 74176, 4096, 74176, 5733, 75335, 6144, 74176 }, /* 74.25/1.001 MHz */
Christian Koenigdafc3bd2009-10-11 23:49:13 +020068 { 74250, 4096, 74250, 6272, 82500, 6144, 74250 }, /* 74.25 MHz */
Pierre Ossman3e719852013-11-06 20:00:32 +010069 { 148352, 4096, 148352, 5733, 150670, 6144, 148352 }, /* 148.50/1.001 MHz */
Christian Koenigdafc3bd2009-10-11 23:49:13 +020070 { 148500, 4096, 148500, 6272, 165000, 6144, 148500 }, /* 148.50 MHz */
Christian Koenigdafc3bd2009-10-11 23:49:13 +020071};
72
Alex Deucher062c2e42013-09-27 18:09:54 -040073
Pierre Ossmana2098252013-11-06 20:09:08 +010074/*
Alex Deucher72156672014-09-18 16:36:08 -040075 * check if the chipset is supported
76 */
77static int r600_audio_chipset_supported(struct radeon_device *rdev)
78{
79 return ASIC_IS_DCE2(rdev) && !ASIC_IS_NODCE(rdev);
80}
81
82static struct r600_audio_pin r600_audio_status(struct radeon_device *rdev)
83{
84 struct r600_audio_pin status;
85 uint32_t value;
86
87 value = RREG32(R600_AUDIO_RATE_BPS_CHANNEL);
88
89 /* number of channels */
90 status.channels = (value & 0x7) + 1;
91
92 /* bits per sample */
93 switch ((value & 0xF0) >> 4) {
94 case 0x0:
95 status.bits_per_sample = 8;
96 break;
97 case 0x1:
98 status.bits_per_sample = 16;
99 break;
100 case 0x2:
101 status.bits_per_sample = 20;
102 break;
103 case 0x3:
104 status.bits_per_sample = 24;
105 break;
106 case 0x4:
107 status.bits_per_sample = 32;
108 break;
109 default:
110 dev_err(rdev->dev, "Unknown bits per sample 0x%x, using 16\n",
111 (int)value);
112 status.bits_per_sample = 16;
113 }
114
115 /* current sampling rate in HZ */
116 if (value & 0x4000)
117 status.rate = 44100;
118 else
119 status.rate = 48000;
120 status.rate *= ((value >> 11) & 0x7) + 1;
121 status.rate /= ((value >> 8) & 0x7) + 1;
122
123 value = RREG32(R600_AUDIO_STATUS_BITS);
124
125 /* iec 60958 status bits */
126 status.status_bits = value & 0xff;
127
128 /* iec 60958 category code */
129 status.category_code = (value >> 8) & 0xff;
130
131 return status;
132}
133
134/*
135 * update all hdmi interfaces with current audio parameters
136 */
137void r600_audio_update_hdmi(struct work_struct *work)
138{
139 struct radeon_device *rdev = container_of(work, struct radeon_device,
140 audio_work);
141 struct drm_device *dev = rdev->ddev;
142 struct r600_audio_pin audio_status = r600_audio_status(rdev);
143 struct drm_encoder *encoder;
144 bool changed = false;
145
146 if (rdev->audio.pin[0].channels != audio_status.channels ||
147 rdev->audio.pin[0].rate != audio_status.rate ||
148 rdev->audio.pin[0].bits_per_sample != audio_status.bits_per_sample ||
149 rdev->audio.pin[0].status_bits != audio_status.status_bits ||
150 rdev->audio.pin[0].category_code != audio_status.category_code) {
151 rdev->audio.pin[0] = audio_status;
152 changed = true;
153 }
154
155 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
156 if (!radeon_encoder_is_digital(encoder))
157 continue;
158 if (changed || r600_hdmi_buffer_status_changed(encoder))
159 r600_hdmi_update_audio_settings(encoder);
160 }
161}
162
163/* enable the audio stream */
164void r600_audio_enable(struct radeon_device *rdev,
165 struct r600_audio_pin *pin,
Alex Deucherd3d8c142014-09-18 17:26:39 -0400166 u8 enable_mask)
Alex Deucher72156672014-09-18 16:36:08 -0400167{
Alex Deucherd3d8c142014-09-18 17:26:39 -0400168 u32 tmp = RREG32(AZ_HOT_PLUG_CONTROL);
Alex Deucher72156672014-09-18 16:36:08 -0400169
170 if (!pin)
171 return;
172
Alex Deucherd3d8c142014-09-18 17:26:39 -0400173 if (enable_mask) {
174 tmp |= AUDIO_ENABLED;
175 if (enable_mask & 1)
176 tmp |= PIN0_AUDIO_ENABLED;
177 if (enable_mask & 2)
178 tmp |= PIN1_AUDIO_ENABLED;
179 if (enable_mask & 4)
180 tmp |= PIN2_AUDIO_ENABLED;
181 if (enable_mask & 8)
182 tmp |= PIN3_AUDIO_ENABLED;
Alex Deucher72156672014-09-18 16:36:08 -0400183 } else {
Alex Deucherd3d8c142014-09-18 17:26:39 -0400184 tmp &= ~(AUDIO_ENABLED |
185 PIN0_AUDIO_ENABLED |
186 PIN1_AUDIO_ENABLED |
187 PIN2_AUDIO_ENABLED |
188 PIN3_AUDIO_ENABLED);
Alex Deucher72156672014-09-18 16:36:08 -0400189 }
Alex Deucherd3d8c142014-09-18 17:26:39 -0400190
191 WREG32(AZ_HOT_PLUG_CONTROL, tmp);
Alex Deucher72156672014-09-18 16:36:08 -0400192}
193
194/*
195 * initialize the audio vars
196 */
197int r600_audio_init(struct radeon_device *rdev)
198{
199 if (!radeon_audio || !r600_audio_chipset_supported(rdev))
200 return 0;
201
202 rdev->audio.enabled = true;
203
204 rdev->audio.num_pins = 1;
205 rdev->audio.pin[0].channels = -1;
206 rdev->audio.pin[0].rate = -1;
207 rdev->audio.pin[0].bits_per_sample = -1;
208 rdev->audio.pin[0].status_bits = 0;
209 rdev->audio.pin[0].category_code = 0;
210 rdev->audio.pin[0].id = 0;
211 /* disable audio. it will be set up later */
Alex Deucherd3d8c142014-09-18 17:26:39 -0400212 r600_audio_enable(rdev, &rdev->audio.pin[0], 0);
Alex Deucher72156672014-09-18 16:36:08 -0400213
214 return 0;
215}
216
217/*
218 * release the audio timer
219 * TODO: How to do this correctly on SMP systems?
220 */
221void r600_audio_fini(struct radeon_device *rdev)
222{
223 if (!rdev->audio.enabled)
224 return;
225
Alex Deucherd3d8c142014-09-18 17:26:39 -0400226 r600_audio_enable(rdev, &rdev->audio.pin[0], 0);
Alex Deucher72156672014-09-18 16:36:08 -0400227
228 rdev->audio.enabled = false;
229}
230
231struct r600_audio_pin *r600_audio_get_pin(struct radeon_device *rdev)
232{
233 /* only one pin on 6xx-NI */
234 return &rdev->audio.pin[0];
235}
236
237/*
Pierre Ossmana2098252013-11-06 20:09:08 +0100238 * calculate CTS and N values if they are not found in the table
239 */
240static void r600_hdmi_calc_cts(uint32_t clock, int *CTS, int *N, int freq)
241{
242 int n, cts;
243 unsigned long div, mul;
244
245 /* Safe, but overly large values */
246 n = 128 * freq;
247 cts = clock * 1000;
248
249 /* Smallest valid fraction */
250 div = gcd(n, cts);
251
252 n /= div;
253 cts /= div;
254
255 /*
256 * The optimal N is 128*freq/1000. Calculate the closest larger
257 * value that doesn't truncate any bits.
258 */
259 mul = ((128*freq/1000) + (n-1))/n;
260
261 n *= mul;
262 cts *= mul;
263
264 /* Check that we are in spec (not always possible) */
265 if (n < (128*freq/1500))
266 printk(KERN_WARNING "Calculated ACR N value is too small. You may experience audio problems.\n");
267 if (n > (128*freq/300))
268 printk(KERN_WARNING "Calculated ACR N value is too large. You may experience audio problems.\n");
269
270 *N = n;
271 *CTS = cts;
272
273 DRM_DEBUG("Calculated ACR timing N=%d CTS=%d for frequency %d\n",
274 *N, *CTS, freq);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200275}
276
Rafał Miłecki1b688d02012-04-30 15:44:54 +0200277struct radeon_hdmi_acr r600_hdmi_acr(uint32_t clock)
278{
279 struct radeon_hdmi_acr res;
280 u8 i;
281
Pierre Ossmana2098252013-11-06 20:09:08 +0100282 /* Precalculated values for common clocks */
283 for (i = 0; i < ARRAY_SIZE(r600_hdmi_predefined_acr); i++) {
284 if (r600_hdmi_predefined_acr[i].clock == clock)
285 return r600_hdmi_predefined_acr[i];
286 }
Rafał Miłecki1b688d02012-04-30 15:44:54 +0200287
Pierre Ossmana2098252013-11-06 20:09:08 +0100288 /* And odd clocks get manually calculated */
289 r600_hdmi_calc_cts(clock, &res.cts_32khz, &res.n_32khz, 32000);
290 r600_hdmi_calc_cts(clock, &res.cts_44_1khz, &res.n_44_1khz, 44100);
291 r600_hdmi_calc_cts(clock, &res.cts_48khz, &res.n_48khz, 48000);
Rafał Miłecki1b688d02012-04-30 15:44:54 +0200292
293 return res;
294}
295
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200296/*
297 * update the N and CTS parameters for a given pixel clock rate
298 */
Rafał Miłecki8f33a152014-05-16 11:36:24 +0200299void r600_hdmi_update_ACR(struct drm_encoder *encoder, uint32_t clock)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200300{
301 struct drm_device *dev = encoder->dev;
302 struct radeon_device *rdev = dev->dev_private;
Rafał Miłecki1b688d02012-04-30 15:44:54 +0200303 struct radeon_hdmi_acr acr = r600_hdmi_acr(clock);
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200304 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
305 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
306 uint32_t offset = dig->afmt->offset;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200307
Rafał Miłecki68706332014-05-16 11:10:30 +0200308 WREG32_P(HDMI0_ACR_32_0 + offset,
309 HDMI0_ACR_CTS_32(acr.cts_32khz),
310 ~HDMI0_ACR_CTS_32_MASK);
311 WREG32_P(HDMI0_ACR_32_1 + offset,
312 HDMI0_ACR_N_32(acr.n_32khz),
313 ~HDMI0_ACR_N_32_MASK);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200314
Rafał Miłecki68706332014-05-16 11:10:30 +0200315 WREG32_P(HDMI0_ACR_44_0 + offset,
316 HDMI0_ACR_CTS_44(acr.cts_44_1khz),
317 ~HDMI0_ACR_CTS_44_MASK);
318 WREG32_P(HDMI0_ACR_44_1 + offset,
319 HDMI0_ACR_N_44(acr.n_44_1khz),
320 ~HDMI0_ACR_N_44_MASK);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200321
Rafał Miłecki68706332014-05-16 11:10:30 +0200322 WREG32_P(HDMI0_ACR_48_0 + offset,
323 HDMI0_ACR_CTS_48(acr.cts_48khz),
324 ~HDMI0_ACR_CTS_48_MASK);
325 WREG32_P(HDMI0_ACR_48_1 + offset,
326 HDMI0_ACR_N_48(acr.n_48khz),
327 ~HDMI0_ACR_N_48_MASK);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200328}
329
330/*
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200331 * build a HDMI Video Info Frame
332 */
Rafał Miłecki8f33a152014-05-16 11:36:24 +0200333void r600_hdmi_update_avi_infoframe(struct drm_encoder *encoder, void *buffer,
334 size_t size)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200335{
336 struct drm_device *dev = encoder->dev;
337 struct radeon_device *rdev = dev->dev_private;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200338 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
339 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
340 uint32_t offset = dig->afmt->offset;
Thierry Redinge3b2e032013-01-14 13:36:30 +0100341 uint8_t *frame = buffer + 3;
Alex Deucherf1003802013-06-07 10:41:03 -0400342 uint8_t *header = buffer;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200343
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200344 WREG32(HDMI0_AVI_INFO0 + offset,
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200345 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200346 WREG32(HDMI0_AVI_INFO1 + offset,
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200347 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200348 WREG32(HDMI0_AVI_INFO2 + offset,
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200349 frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200350 WREG32(HDMI0_AVI_INFO3 + offset,
Alex Deucherf1003802013-06-07 10:41:03 -0400351 frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200352}
353
354/*
355 * build a Audio Info Frame
356 */
Thierry Redinge3b2e032013-01-14 13:36:30 +0100357static void r600_hdmi_update_audio_infoframe(struct drm_encoder *encoder,
358 const void *buffer, size_t size)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200359{
360 struct drm_device *dev = encoder->dev;
361 struct radeon_device *rdev = dev->dev_private;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200362 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
363 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
364 uint32_t offset = dig->afmt->offset;
Thierry Redinge3b2e032013-01-14 13:36:30 +0100365 const u8 *frame = buffer + 3;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200366
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200367 WREG32(HDMI0_AUDIO_INFO0 + offset,
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200368 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200369 WREG32(HDMI0_AUDIO_INFO1 + offset,
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200370 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x8] << 24));
371}
372
373/*
374 * test if audio buffer is filled enough to start playing
375 */
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200376static bool r600_hdmi_is_audio_buffer_filled(struct drm_encoder *encoder)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200377{
378 struct drm_device *dev = encoder->dev;
379 struct radeon_device *rdev = dev->dev_private;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200380 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
381 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
382 uint32_t offset = dig->afmt->offset;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200383
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200384 return (RREG32(HDMI0_STATUS + offset) & 0x10) != 0;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200385}
386
387/*
388 * have buffer status changed since last call?
389 */
390int r600_hdmi_buffer_status_changed(struct drm_encoder *encoder)
391{
392 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200393 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200394 int status, result;
395
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200396 if (!dig->afmt || !dig->afmt->enabled)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200397 return 0;
398
399 status = r600_hdmi_is_audio_buffer_filled(encoder);
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200400 result = dig->afmt->last_buffer_filled_status != status;
401 dig->afmt->last_buffer_filled_status = status;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200402
403 return result;
404}
405
406/*
407 * write the audio workaround status to the hardware
408 */
Rafał Miłecki8f33a152014-05-16 11:36:24 +0200409void r600_hdmi_audio_workaround(struct drm_encoder *encoder)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200410{
411 struct drm_device *dev = encoder->dev;
412 struct radeon_device *rdev = dev->dev_private;
413 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200414 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
415 uint32_t offset = dig->afmt->offset;
416 bool hdmi_audio_workaround = false; /* FIXME */
417 u32 value;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200418
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200419 if (!hdmi_audio_workaround ||
420 r600_hdmi_is_audio_buffer_filled(encoder))
421 value = 0; /* disable workaround */
422 else
423 value = HDMI0_AUDIO_TEST_EN; /* enable workaround */
424 WREG32_P(HDMI0_AUDIO_PACKET_CONTROL + offset,
425 value, ~HDMI0_AUDIO_TEST_EN);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200426}
427
Rafał Miłecki8f33a152014-05-16 11:36:24 +0200428void r600_audio_set_dto(struct drm_encoder *encoder, u32 clock)
Alex Deucherb1f6f472013-04-18 10:50:55 -0400429{
430 struct drm_device *dev = encoder->dev;
431 struct radeon_device *rdev = dev->dev_private;
432 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
433 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucher731da212013-05-13 11:35:26 -0400434 u32 base_rate = 24000;
Alex Deucher1518dd82013-07-30 17:31:07 -0400435 u32 max_ratio = clock / base_rate;
436 u32 dto_phase;
437 u32 dto_modulo = clock;
438 u32 wallclock_ratio;
439 u32 dto_cntl;
Alex Deucherb1f6f472013-04-18 10:50:55 -0400440
441 if (!dig || !dig->afmt)
442 return;
443
Alex Deucher1518dd82013-07-30 17:31:07 -0400444 if (max_ratio >= 8) {
445 dto_phase = 192 * 1000;
446 wallclock_ratio = 3;
447 } else if (max_ratio >= 4) {
448 dto_phase = 96 * 1000;
449 wallclock_ratio = 2;
450 } else if (max_ratio >= 2) {
451 dto_phase = 48 * 1000;
452 wallclock_ratio = 1;
453 } else {
454 dto_phase = 24 * 1000;
455 wallclock_ratio = 0;
456 }
457
Alex Deucherb1f6f472013-04-18 10:50:55 -0400458 /* there are two DTOs selected by DCCG_AUDIO_DTO_SELECT.
459 * doesn't matter which one you use. Just use the first one.
460 */
Alex Deucherb1f6f472013-04-18 10:50:55 -0400461 /* XXX two dtos; generally use dto0 for hdmi */
462 /* Express [24MHz / target pixel clock] as an exact rational
463 * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE
464 * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
465 */
Alex Deucher58d327d2013-09-25 12:04:37 -0400466 if (ASIC_IS_DCE32(rdev)) {
Alex Deuchere1accbf2013-07-29 18:56:13 -0400467 if (dig->dig_encoder == 0) {
Alex Deucher1518dd82013-07-30 17:31:07 -0400468 dto_cntl = RREG32(DCCG_AUDIO_DTO0_CNTL) & ~DCCG_AUDIO_DTO_WALLCLOCK_RATIO_MASK;
469 dto_cntl |= DCCG_AUDIO_DTO_WALLCLOCK_RATIO(wallclock_ratio);
470 WREG32(DCCG_AUDIO_DTO0_CNTL, dto_cntl);
471 WREG32(DCCG_AUDIO_DTO0_PHASE, dto_phase);
472 WREG32(DCCG_AUDIO_DTO0_MODULE, dto_modulo);
Alex Deuchere1accbf2013-07-29 18:56:13 -0400473 WREG32(DCCG_AUDIO_DTO_SELECT, 0); /* select DTO0 */
474 } else {
Alex Deucher1518dd82013-07-30 17:31:07 -0400475 dto_cntl = RREG32(DCCG_AUDIO_DTO1_CNTL) & ~DCCG_AUDIO_DTO_WALLCLOCK_RATIO_MASK;
476 dto_cntl |= DCCG_AUDIO_DTO_WALLCLOCK_RATIO(wallclock_ratio);
477 WREG32(DCCG_AUDIO_DTO1_CNTL, dto_cntl);
478 WREG32(DCCG_AUDIO_DTO1_PHASE, dto_phase);
479 WREG32(DCCG_AUDIO_DTO1_MODULE, dto_modulo);
Alex Deuchere1accbf2013-07-29 18:56:13 -0400480 WREG32(DCCG_AUDIO_DTO_SELECT, 1); /* select DTO1 */
481 }
Alex Deucher55d4e022013-11-25 13:20:59 -0500482 } else {
Alex Deucher58d327d2013-09-25 12:04:37 -0400483 /* according to the reg specs, this should DCE3.2 only, but in
Alex Deucher55d4e022013-11-25 13:20:59 -0500484 * practice it seems to cover DCE2.0/3.0/3.1 as well.
Alex Deucher58d327d2013-09-25 12:04:37 -0400485 */
486 if (dig->dig_encoder == 0) {
487 WREG32(DCCG_AUDIO_DTO0_PHASE, base_rate * 100);
488 WREG32(DCCG_AUDIO_DTO0_MODULE, clock * 100);
489 WREG32(DCCG_AUDIO_DTO_SELECT, 0); /* select DTO0 */
490 } else {
491 WREG32(DCCG_AUDIO_DTO1_PHASE, base_rate * 100);
492 WREG32(DCCG_AUDIO_DTO1_MODULE, clock * 100);
493 WREG32(DCCG_AUDIO_DTO_SELECT, 1); /* select DTO1 */
494 }
Alex Deucher15865052013-04-22 09:42:07 -0400495 }
Alex Deucherb1f6f472013-04-18 10:50:55 -0400496}
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200497
498/*
499 * update the info frames with the data from the current display mode
500 */
501void r600_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode)
502{
503 struct drm_device *dev = encoder->dev;
504 struct radeon_device *rdev = dev->dev_private;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200505 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
506 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Thierry Redinge3b2e032013-01-14 13:36:30 +0100507 u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
508 struct hdmi_avi_infoframe frame;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200509 uint32_t offset;
Rafał Miłecki2e93cac2014-05-16 11:10:29 +0200510 uint32_t acr_ctl;
Thierry Redinge3b2e032013-01-14 13:36:30 +0100511 ssize_t err;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200512
Alex Deucherc2b4cacf2013-07-08 18:16:56 -0400513 if (!dig || !dig->afmt)
514 return;
515
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200516 /* Silent, r600_hdmi_enable will raise WARN for us */
517 if (!dig->afmt->enabled)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200518 return;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200519 offset = dig->afmt->offset;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200520
Alex Deucher832eafa2014-02-18 11:07:55 -0500521 /* disable audio prior to setting up hw */
522 dig->afmt->pin = r600_audio_get_pin(rdev);
Alex Deucherd3d8c142014-09-18 17:26:39 -0400523 r600_audio_enable(rdev, dig->afmt->pin, 0xf);
Alex Deucher832eafa2014-02-18 11:07:55 -0500524
Alex Deucherb1f6f472013-04-18 10:50:55 -0400525 r600_audio_set_dto(encoder, mode->clock);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200526
Rafał Miłecki68706332014-05-16 11:10:30 +0200527 WREG32_P(HDMI0_AUDIO_PACKET_CONTROL + offset,
528 HDMI0_AUDIO_SAMPLE_SEND | /* send audio packets */
529 HDMI0_AUDIO_DELAY_EN(1) | /* default audio delay */
530 HDMI0_AUDIO_PACKETS_PER_LINE(3) | /* should be suffient for all audio modes and small enough for all hblanks */
531 HDMI0_60958_CS_UPDATE, /* allow 60958 channel status fields to be updated */
532 ~(HDMI0_AUDIO_SAMPLE_SEND |
533 HDMI0_AUDIO_DELAY_EN_MASK |
534 HDMI0_AUDIO_PACKETS_PER_LINE_MASK |
535 HDMI0_60958_CS_UPDATE));
Alex Deucher0ffae602013-08-15 12:03:37 -0400536
Rafał Miłecki2e93cac2014-05-16 11:10:29 +0200537 /* DCE 3.0 uses register that's normally for CRC_CONTROL */
538 acr_ctl = ASIC_IS_DCE3(rdev) ? DCE3_HDMI0_ACR_PACKET_CONTROL :
539 HDMI0_ACR_PACKET_CONTROL;
Rafał Miłecki68706332014-05-16 11:10:30 +0200540 WREG32_P(acr_ctl + offset,
541 HDMI0_ACR_SOURCE | /* select SW CTS value - XXX verify that hw CTS works on all families */
542 HDMI0_ACR_AUTO_SEND, /* allow hw to sent ACR packets when required */
543 ~(HDMI0_ACR_SOURCE |
544 HDMI0_ACR_AUTO_SEND));
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200545
Rafał Miłecki68706332014-05-16 11:10:30 +0200546 WREG32_OR(HDMI0_VBI_PACKET_CONTROL + offset,
547 HDMI0_NULL_SEND | /* send null packets when required */
548 HDMI0_GC_SEND | /* send general control packets */
549 HDMI0_GC_CONT); /* send general control packets every frame */
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200550
Rafał Miłecki68706332014-05-16 11:10:30 +0200551 WREG32_OR(HDMI0_INFOFRAME_CONTROL0 + offset,
552 HDMI0_AVI_INFO_SEND | /* enable AVI info frames */
553 HDMI0_AVI_INFO_CONT | /* send AVI info frames every frame/field */
554 HDMI0_AUDIO_INFO_SEND | /* enable audio info frames (frames won't be set until audio is enabled) */
555 HDMI0_AUDIO_INFO_UPDATE); /* required for audio info values to be updated */
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200556
Rafał Miłecki68706332014-05-16 11:10:30 +0200557 WREG32_P(HDMI0_INFOFRAME_CONTROL1 + offset,
558 HDMI0_AVI_INFO_LINE(2) | /* anything other than 0 */
559 HDMI0_AUDIO_INFO_LINE(2), /* anything other than 0 */
560 ~(HDMI0_AVI_INFO_LINE_MASK |
561 HDMI0_AUDIO_INFO_LINE_MASK));
Rafał Miłecki1c3439f2012-05-06 17:29:45 +0200562
Rafał Miłecki68706332014-05-16 11:10:30 +0200563 WREG32_AND(HDMI0_GC + offset,
564 ~HDMI0_GC_AVMUTE); /* unset HDMI0_GC_AVMUTE */
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200565
Thierry Redinge3b2e032013-01-14 13:36:30 +0100566 err = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode);
567 if (err < 0) {
568 DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
569 return;
570 }
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200571
Thierry Redinge3b2e032013-01-14 13:36:30 +0100572 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
573 if (err < 0) {
574 DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
575 return;
576 }
577
578 r600_hdmi_update_avi_infoframe(encoder, buffer, sizeof(buffer));
Rafał Miłecki68706332014-05-16 11:10:30 +0200579
580 /* fglrx duplicates INFOFRAME_CONTROL0 & INFOFRAME_CONTROL1 ops here */
581
582 WREG32_AND(HDMI0_GENERIC_PACKET_CONTROL + offset,
583 ~(HDMI0_GENERIC0_SEND |
584 HDMI0_GENERIC0_CONT |
585 HDMI0_GENERIC0_UPDATE |
586 HDMI0_GENERIC1_SEND |
587 HDMI0_GENERIC1_CONT |
588 HDMI0_GENERIC0_LINE_MASK |
589 HDMI0_GENERIC1_LINE_MASK));
590
Rafał Miłecki1c3439f2012-05-06 17:29:45 +0200591 r600_hdmi_update_ACR(encoder, mode->clock);
592
Rafał Miłecki68706332014-05-16 11:10:30 +0200593 WREG32_P(HDMI0_60958_0 + offset,
594 HDMI0_60958_CS_CHANNEL_NUMBER_L(1),
595 ~(HDMI0_60958_CS_CHANNEL_NUMBER_L_MASK |
596 HDMI0_60958_CS_CLOCK_ACCURACY_MASK));
597
598 WREG32_P(HDMI0_60958_1 + offset,
599 HDMI0_60958_CS_CHANNEL_NUMBER_R(2),
600 ~HDMI0_60958_CS_CHANNEL_NUMBER_R_MASK);
601
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300602 /* it's unknown what these bits do excatly, but it's indeed quite useful for debugging */
Rafał Miłeckic6543a62012-04-28 23:35:24 +0200603 WREG32(HDMI0_RAMP_CONTROL0 + offset, 0x00FFFFFF);
604 WREG32(HDMI0_RAMP_CONTROL1 + offset, 0x007FFFFF);
605 WREG32(HDMI0_RAMP_CONTROL2 + offset, 0x00000001);
606 WREG32(HDMI0_RAMP_CONTROL3 + offset, 0x00000001);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200607
Alex Deucher832eafa2014-02-18 11:07:55 -0500608 /* enable audio after to setting up hw */
Alex Deucherd3d8c142014-09-18 17:26:39 -0400609 r600_audio_enable(rdev, dig->afmt->pin, 0xf);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200610}
611
Rafał Miłecki8e4d9f82014-05-16 11:10:31 +0200612/**
613 * r600_hdmi_update_audio_settings - Update audio infoframe
614 *
615 * @encoder: drm encoder
616 *
617 * Gets info about current audio stream and updates audio infoframe.
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200618 */
Christian König58bd0862010-04-05 22:14:55 +0200619void r600_hdmi_update_audio_settings(struct drm_encoder *encoder)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200620{
621 struct drm_device *dev = encoder->dev;
622 struct radeon_device *rdev = dev->dev_private;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200623 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
624 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucherb5306022013-07-31 16:51:33 -0400625 struct r600_audio_pin audio = r600_audio_status(rdev);
Thierry Redinge3b2e032013-01-14 13:36:30 +0100626 uint8_t buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AUDIO_INFOFRAME_SIZE];
627 struct hdmi_audio_infoframe frame;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200628 uint32_t offset;
Rafał Miłecki8e4d9f82014-05-16 11:10:31 +0200629 uint32_t value;
Thierry Redinge3b2e032013-01-14 13:36:30 +0100630 ssize_t err;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200631
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200632 if (!dig->afmt || !dig->afmt->enabled)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200633 return;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200634 offset = dig->afmt->offset;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200635
636 DRM_DEBUG("%s with %d channels, %d Hz sampling rate, %d bits per sample,\n",
637 r600_hdmi_is_audio_buffer_filled(encoder) ? "playing" : "stopped",
Rafał Miłecki3299de92012-05-14 21:25:57 +0200638 audio.channels, audio.rate, audio.bits_per_sample);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200639 DRM_DEBUG("0x%02X IEC60958 status bits and 0x%02X category code\n",
Rafał Miłecki3299de92012-05-14 21:25:57 +0200640 (int)audio.status_bits, (int)audio.category_code);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200641
Thierry Redinge3b2e032013-01-14 13:36:30 +0100642 err = hdmi_audio_infoframe_init(&frame);
643 if (err < 0) {
644 DRM_ERROR("failed to setup audio infoframe\n");
645 return;
646 }
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200647
Thierry Redinge3b2e032013-01-14 13:36:30 +0100648 frame.channels = audio.channels;
649
650 err = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
651 if (err < 0) {
652 DRM_ERROR("failed to pack audio infoframe\n");
653 return;
654 }
655
Rafał Miłecki8e4d9f82014-05-16 11:10:31 +0200656 value = RREG32(HDMI0_AUDIO_PACKET_CONTROL + offset);
657 if (value & HDMI0_AUDIO_TEST_EN)
658 WREG32(HDMI0_AUDIO_PACKET_CONTROL + offset,
659 value & ~HDMI0_AUDIO_TEST_EN);
660
661 WREG32_OR(HDMI0_CONTROL + offset,
662 HDMI0_ERROR_ACK);
663
664 WREG32_AND(HDMI0_INFOFRAME_CONTROL0 + offset,
665 ~HDMI0_AUDIO_INFO_SOURCE);
666
Thierry Redinge3b2e032013-01-14 13:36:30 +0100667 r600_hdmi_update_audio_infoframe(encoder, buffer, sizeof(buffer));
Rafał Miłecki8e4d9f82014-05-16 11:10:31 +0200668
669 WREG32_OR(HDMI0_INFOFRAME_CONTROL0 + offset,
670 HDMI0_AUDIO_INFO_CONT |
671 HDMI0_AUDIO_INFO_UPDATE);
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200672}
673
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200674/*
Rafał Miłecki2cd62182010-03-08 22:14:01 +0000675 * enable the HDMI engine
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200676 */
Alex Deuchera973bea2013-04-18 11:32:16 -0400677void r600_hdmi_enable(struct drm_encoder *encoder, bool enable)
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200678{
Rafał Miłecki2cd62182010-03-08 22:14:01 +0000679 struct drm_device *dev = encoder->dev;
680 struct radeon_device *rdev = dev->dev_private;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200681 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200682 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deuchera973bea2013-04-18 11:32:16 -0400683 u32 hdmi = HDMI0_ERROR_ACK;
Alex Deucher16823d12010-04-16 11:35:30 -0400684
Alex Deucherc2b4cacf2013-07-08 18:16:56 -0400685 if (!dig || !dig->afmt)
686 return;
687
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200688 /* Silent, r600_hdmi_enable will raise WARN for us */
Alex Deuchera973bea2013-04-18 11:32:16 -0400689 if (enable && dig->afmt->enabled)
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200690 return;
Alex Deuchera973bea2013-04-18 11:32:16 -0400691 if (!enable && !dig->afmt->enabled)
692 return;
Rafał Miłecki64fb4fb2012-04-30 15:44:53 +0200693
Alex Deucher4adb34e2014-09-18 18:07:08 -0400694 if (!enable && dig->afmt->pin) {
695 r600_audio_enable(rdev, dig->afmt->pin, 0);
696 dig->afmt->pin = NULL;
697 }
698
Rafał Miłecki64fb4fb2012-04-30 15:44:53 +0200699 /* Older chipsets require setting HDMI and routing manually */
Alex Deuchera973bea2013-04-18 11:32:16 -0400700 if (!ASIC_IS_DCE3(rdev)) {
701 if (enable)
702 hdmi |= HDMI0_ENABLE;
Rafał Miłecki5715f672010-03-06 13:03:35 +0000703 switch (radeon_encoder->encoder_id) {
704 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1:
Alex Deuchera973bea2013-04-18 11:32:16 -0400705 if (enable) {
706 WREG32_OR(AVIVO_TMDSA_CNTL, AVIVO_TMDSA_CNTL_HDMI_EN);
707 hdmi |= HDMI0_STREAM(HDMI0_STREAM_TMDSA);
708 } else {
709 WREG32_AND(AVIVO_TMDSA_CNTL, ~AVIVO_TMDSA_CNTL_HDMI_EN);
710 }
Rafał Miłecki5715f672010-03-06 13:03:35 +0000711 break;
712 case ENCODER_OBJECT_ID_INTERNAL_LVTM1:
Alex Deuchera973bea2013-04-18 11:32:16 -0400713 if (enable) {
714 WREG32_OR(AVIVO_LVTMA_CNTL, AVIVO_LVTMA_CNTL_HDMI_EN);
715 hdmi |= HDMI0_STREAM(HDMI0_STREAM_LVTMA);
716 } else {
717 WREG32_AND(AVIVO_LVTMA_CNTL, ~AVIVO_LVTMA_CNTL_HDMI_EN);
718 }
Rafał Miłecki64fb4fb2012-04-30 15:44:53 +0200719 break;
720 case ENCODER_OBJECT_ID_INTERNAL_DDI:
Alex Deuchera973bea2013-04-18 11:32:16 -0400721 if (enable) {
722 WREG32_OR(DDIA_CNTL, DDIA_HDMI_EN);
723 hdmi |= HDMI0_STREAM(HDMI0_STREAM_DDIA);
724 } else {
725 WREG32_AND(DDIA_CNTL, ~DDIA_HDMI_EN);
726 }
Rafał Miłecki64fb4fb2012-04-30 15:44:53 +0200727 break;
728 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
Alex Deuchera973bea2013-04-18 11:32:16 -0400729 if (enable)
730 hdmi |= HDMI0_STREAM(HDMI0_STREAM_DVOA);
Rafał Miłecki5715f672010-03-06 13:03:35 +0000731 break;
732 default:
Rafał Miłecki64fb4fb2012-04-30 15:44:53 +0200733 dev_err(rdev->dev, "Invalid encoder for HDMI: 0x%X\n",
734 radeon_encoder->encoder_id);
Rafał Miłecki5715f672010-03-06 13:03:35 +0000735 break;
736 }
Alex Deuchera973bea2013-04-18 11:32:16 -0400737 WREG32(HDMI0_CONTROL + dig->afmt->offset, hdmi);
Rafał Miłecki5715f672010-03-06 13:03:35 +0000738 }
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200739
Alex Deucherf122c612012-03-30 08:59:57 -0400740 if (rdev->irq.installed) {
Christian Koenigf2594932010-04-10 03:13:16 +0200741 /* if irq is available use it */
Alex Deucher9054ae12013-04-18 09:42:13 -0400742 /* XXX: shouldn't need this on any asics. Double check DCE2/3 */
Alex Deuchera973bea2013-04-18 11:32:16 -0400743 if (enable)
Alex Deucher9054ae12013-04-18 09:42:13 -0400744 radeon_irq_kms_enable_afmt(rdev, dig->afmt->id);
Alex Deuchera973bea2013-04-18 11:32:16 -0400745 else
746 radeon_irq_kms_disable_afmt(rdev, dig->afmt->id);
Christian Koenigf2594932010-04-10 03:13:16 +0200747 }
Christian König58bd0862010-04-05 22:14:55 +0200748
Alex Deuchera973bea2013-04-18 11:32:16 -0400749 dig->afmt->enabled = enable;
Rafał Miłeckicfcbd6d2012-05-14 16:52:30 +0200750
Alex Deuchera973bea2013-04-18 11:32:16 -0400751 DRM_DEBUG("%sabling HDMI interface @ 0x%04X for encoder 0x%x\n",
752 enable ? "En" : "Dis", dig->afmt->offset, radeon_encoder->encoder_id);
Rafał Miłecki2cd62182010-03-08 22:14:01 +0000753}
754