2603f72234a178835815befc44118daabbe0e23b
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / radeon / evergreen_hdmi.c
1 /*
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  *          Rafał Miłecki
26  */
27 #include <linux/hdmi.h>
28 #include <drm/drmP.h>
29 #include <drm/radeon_drm.h>
30 #include "radeon.h"
31 #include "radeon_asic.h"
32 #include "radeon_audio.h"
33 #include "evergreend.h"
34 #include "atom.h"
35
36 extern void dce6_afmt_write_speaker_allocation(struct drm_encoder *encoder);
37 extern void dce6_afmt_select_pin(struct drm_encoder *encoder);
38 extern void dce6_afmt_write_latency_fields(struct drm_encoder *encoder,
39                                            struct drm_display_mode *mode);
40
41 /* enable the audio stream */
42 static void dce4_audio_enable(struct radeon_device *rdev,
43                               struct r600_audio_pin *pin,
44                               u8 enable_mask)
45 {
46         u32 tmp = RREG32(AZ_HOT_PLUG_CONTROL);
47
48         if (!pin)
49                 return;
50
51         if (enable_mask) {
52                 tmp |= AUDIO_ENABLED;
53                 if (enable_mask & 1)
54                         tmp |= PIN0_AUDIO_ENABLED;
55                 if (enable_mask & 2)
56                         tmp |= PIN1_AUDIO_ENABLED;
57                 if (enable_mask & 4)
58                         tmp |= PIN2_AUDIO_ENABLED;
59                 if (enable_mask & 8)
60                         tmp |= PIN3_AUDIO_ENABLED;
61         } else {
62                 tmp &= ~(AUDIO_ENABLED |
63                          PIN0_AUDIO_ENABLED |
64                          PIN1_AUDIO_ENABLED |
65                          PIN2_AUDIO_ENABLED |
66                          PIN3_AUDIO_ENABLED);
67         }
68
69         WREG32(AZ_HOT_PLUG_CONTROL, tmp);
70 }
71
72 /*
73  * update the N and CTS parameters for a given pixel clock rate
74  */
75 static void evergreen_hdmi_update_ACR(struct drm_encoder *encoder, uint32_t clock)
76 {
77         struct drm_device *dev = encoder->dev;
78         struct radeon_device *rdev = dev->dev_private;
79         struct radeon_hdmi_acr acr = r600_hdmi_acr(clock);
80         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
81         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
82         uint32_t offset = dig->afmt->offset;
83
84         WREG32(HDMI_ACR_32_0 + offset, HDMI_ACR_CTS_32(acr.cts_32khz));
85         WREG32(HDMI_ACR_32_1 + offset, acr.n_32khz);
86
87         WREG32(HDMI_ACR_44_0 + offset, HDMI_ACR_CTS_44(acr.cts_44_1khz));
88         WREG32(HDMI_ACR_44_1 + offset, acr.n_44_1khz);
89
90         WREG32(HDMI_ACR_48_0 + offset, HDMI_ACR_CTS_48(acr.cts_48khz));
91         WREG32(HDMI_ACR_48_1 + offset, acr.n_48khz);
92 }
93
94 static void dce4_afmt_write_latency_fields(struct drm_encoder *encoder,
95                                            struct drm_display_mode *mode)
96 {
97         struct radeon_device *rdev = encoder->dev->dev_private;
98         struct drm_connector *connector;
99         struct radeon_connector *radeon_connector = NULL;
100         u32 tmp = 0;
101
102         list_for_each_entry(connector, &encoder->dev->mode_config.connector_list, head) {
103                 if (connector->encoder == encoder) {
104                         radeon_connector = to_radeon_connector(connector);
105                         break;
106                 }
107         }
108
109         if (!radeon_connector) {
110                 DRM_ERROR("Couldn't find encoder's connector\n");
111                 return;
112         }
113
114         if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
115                 if (connector->latency_present[1])
116                         tmp = VIDEO_LIPSYNC(connector->video_latency[1]) |
117                                 AUDIO_LIPSYNC(connector->audio_latency[1]);
118                 else
119                         tmp = VIDEO_LIPSYNC(255) | AUDIO_LIPSYNC(255);
120         } else {
121                 if (connector->latency_present[0])
122                         tmp = VIDEO_LIPSYNC(connector->video_latency[0]) |
123                                 AUDIO_LIPSYNC(connector->audio_latency[0]);
124                 else
125                         tmp = VIDEO_LIPSYNC(255) | AUDIO_LIPSYNC(255);
126         }
127         WREG32(AZ_F0_CODEC_PIN0_CONTROL_RESPONSE_LIPSYNC, tmp);
128 }
129
130 static void dce4_afmt_write_speaker_allocation(struct drm_encoder *encoder)
131 {
132         struct radeon_device *rdev = encoder->dev->dev_private;
133         struct drm_connector *connector;
134         struct radeon_connector *radeon_connector = NULL;
135         u32 tmp;
136         u8 *sadb = NULL;
137         int sad_count;
138
139         list_for_each_entry(connector, &encoder->dev->mode_config.connector_list, head) {
140                 if (connector->encoder == encoder) {
141                         radeon_connector = to_radeon_connector(connector);
142                         break;
143                 }
144         }
145
146         if (!radeon_connector) {
147                 DRM_ERROR("Couldn't find encoder's connector\n");
148                 return;
149         }
150
151         sad_count = drm_edid_to_speaker_allocation(radeon_connector_edid(connector), &sadb);
152         if (sad_count < 0) {
153                 DRM_DEBUG("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
154                 sad_count = 0;
155         }
156
157         /* program the speaker allocation */
158         tmp = RREG32(AZ_F0_CODEC_PIN0_CONTROL_CHANNEL_SPEAKER);
159         tmp &= ~(DP_CONNECTION | SPEAKER_ALLOCATION_MASK);
160         /* set HDMI mode */
161         tmp |= HDMI_CONNECTION;
162         if (sad_count)
163                 tmp |= SPEAKER_ALLOCATION(sadb[0]);
164         else
165                 tmp |= SPEAKER_ALLOCATION(5); /* stereo */
166         WREG32(AZ_F0_CODEC_PIN0_CONTROL_CHANNEL_SPEAKER, tmp);
167
168         kfree(sadb);
169 }
170
171 void evergreen_hdmi_write_sad_regs(struct drm_encoder *encoder,
172         struct cea_sad *sads, int sad_count)
173 {
174         int i;
175         struct radeon_device *rdev = encoder->dev->dev_private;
176         static const u16 eld_reg_to_type[][2] = {
177                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR0, HDMI_AUDIO_CODING_TYPE_PCM },
178                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR1, HDMI_AUDIO_CODING_TYPE_AC3 },
179                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR2, HDMI_AUDIO_CODING_TYPE_MPEG1 },
180                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR3, HDMI_AUDIO_CODING_TYPE_MP3 },
181                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR4, HDMI_AUDIO_CODING_TYPE_MPEG2 },
182                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR5, HDMI_AUDIO_CODING_TYPE_AAC_LC },
183                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR6, HDMI_AUDIO_CODING_TYPE_DTS },
184                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR7, HDMI_AUDIO_CODING_TYPE_ATRAC },
185                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR9, HDMI_AUDIO_CODING_TYPE_EAC3 },
186                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR10, HDMI_AUDIO_CODING_TYPE_DTS_HD },
187                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR11, HDMI_AUDIO_CODING_TYPE_MLP },
188                 { AZ_F0_CODEC_PIN0_CONTROL_AUDIO_DESCRIPTOR13, HDMI_AUDIO_CODING_TYPE_WMA_PRO },
189         };
190
191         for (i = 0; i < ARRAY_SIZE(eld_reg_to_type); i++) {
192                 u32 value = 0;
193                 u8 stereo_freqs = 0;
194                 int max_channels = -1;
195                 int j;
196
197                 for (j = 0; j < sad_count; j++) {
198                         struct cea_sad *sad = &sads[j];
199
200                         if (sad->format == eld_reg_to_type[i][1]) {
201                                 if (sad->channels > max_channels) {
202                                         value = MAX_CHANNELS(sad->channels) |
203                                                 DESCRIPTOR_BYTE_2(sad->byte2) |
204                                                 SUPPORTED_FREQUENCIES(sad->freq);
205                                         max_channels = sad->channels;
206                                 }
207
208                                 if (sad->format == HDMI_AUDIO_CODING_TYPE_PCM)
209                                         stereo_freqs |= sad->freq;
210                                 else
211                                         break;
212                         }
213                 }
214
215                 value |= SUPPORTED_FREQUENCIES_STEREO(stereo_freqs);
216
217                 WREG32_ENDPOINT(0, eld_reg_to_type[i][0], value);
218         }
219 }
220
221 /*
222  * build a HDMI Video Info Frame
223  */
224 static void evergreen_hdmi_update_avi_infoframe(struct drm_encoder *encoder,
225                                                 void *buffer, size_t size)
226 {
227         struct drm_device *dev = encoder->dev;
228         struct radeon_device *rdev = dev->dev_private;
229         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
230         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
231         uint32_t offset = dig->afmt->offset;
232         uint8_t *frame = buffer + 3;
233         uint8_t *header = buffer;
234
235         WREG32(AFMT_AVI_INFO0 + offset,
236                 frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24));
237         WREG32(AFMT_AVI_INFO1 + offset,
238                 frame[0x4] | (frame[0x5] << 8) | (frame[0x6] << 16) | (frame[0x7] << 24));
239         WREG32(AFMT_AVI_INFO2 + offset,
240                 frame[0x8] | (frame[0x9] << 8) | (frame[0xA] << 16) | (frame[0xB] << 24));
241         WREG32(AFMT_AVI_INFO3 + offset,
242                 frame[0xC] | (frame[0xD] << 8) | (header[1] << 24));
243 }
244
245 static void evergreen_audio_set_dto(struct drm_encoder *encoder, u32 clock)
246 {
247         struct drm_device *dev = encoder->dev;
248         struct radeon_device *rdev = dev->dev_private;
249         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
250         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
251         struct radeon_crtc *radeon_crtc = to_radeon_crtc(encoder->crtc);
252         u32 base_rate = 24000;
253         u32 max_ratio = clock / base_rate;
254         u32 dto_phase;
255         u32 dto_modulo = clock;
256         u32 wallclock_ratio;
257         u32 dto_cntl;
258
259         if (!dig || !dig->afmt)
260                 return;
261
262         if (ASIC_IS_DCE6(rdev)) {
263                 dto_phase = 24 * 1000;
264         } else {
265                 if (max_ratio >= 8) {
266                         dto_phase = 192 * 1000;
267                         wallclock_ratio = 3;
268                 } else if (max_ratio >= 4) {
269                         dto_phase = 96 * 1000;
270                         wallclock_ratio = 2;
271                 } else if (max_ratio >= 2) {
272                         dto_phase = 48 * 1000;
273                         wallclock_ratio = 1;
274                 } else {
275                         dto_phase = 24 * 1000;
276                         wallclock_ratio = 0;
277                 }
278                 dto_cntl = RREG32(DCCG_AUDIO_DTO0_CNTL) & ~DCCG_AUDIO_DTO_WALLCLOCK_RATIO_MASK;
279                 dto_cntl |= DCCG_AUDIO_DTO_WALLCLOCK_RATIO(wallclock_ratio);
280                 WREG32(DCCG_AUDIO_DTO0_CNTL, dto_cntl);
281         }
282
283         /* XXX two dtos; generally use dto0 for hdmi */
284         /* Express [24MHz / target pixel clock] as an exact rational
285          * number (coefficient of two integer numbers.  DCCG_AUDIO_DTOx_PHASE
286          * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator
287          */
288         WREG32(DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL(radeon_crtc->crtc_id));
289         WREG32(DCCG_AUDIO_DTO0_PHASE, dto_phase);
290         WREG32(DCCG_AUDIO_DTO0_MODULE, dto_modulo);
291 }
292
293
294 /*
295  * update the info frames with the data from the current display mode
296  */
297 void evergreen_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode)
298 {
299         struct drm_device *dev = encoder->dev;
300         struct radeon_device *rdev = dev->dev_private;
301         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
302         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
303         struct drm_connector *connector = radeon_get_connector_for_encoder(encoder);
304         u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
305         struct hdmi_avi_infoframe frame;
306         uint32_t offset;
307         ssize_t err;
308         uint32_t val;
309         int bpc = 8;
310
311         if (!dig || !dig->afmt)
312                 return;
313
314         /* Silent, r600_hdmi_enable will raise WARN for us */
315         if (!dig->afmt->enabled)
316                 return;
317         offset = dig->afmt->offset;
318
319         /* hdmi deep color mode general control packets setup, if bpc > 8 */
320         if (encoder->crtc) {
321                 struct radeon_crtc *radeon_crtc = to_radeon_crtc(encoder->crtc);
322                 bpc = radeon_crtc->bpc;
323         }
324
325         /* disable audio prior to setting up hw */
326         if (ASIC_IS_DCE6(rdev)) {
327                 dig->afmt->pin = dce6_audio_get_pin(rdev);
328                 dce6_audio_enable(rdev, dig->afmt->pin, 0);
329         } else {
330                 dig->afmt->pin = r600_audio_get_pin(rdev);
331                 dce4_audio_enable(rdev, dig->afmt->pin, 0);
332         }
333
334         evergreen_audio_set_dto(encoder, mode->clock);
335
336         WREG32(HDMI_VBI_PACKET_CONTROL + offset,
337                HDMI_NULL_SEND); /* send null packets when required */
338
339         WREG32(AFMT_AUDIO_CRC_CONTROL + offset, 0x1000);
340
341         val = RREG32(HDMI_CONTROL + offset);
342         val &= ~HDMI_DEEP_COLOR_ENABLE;
343         val &= ~HDMI_DEEP_COLOR_DEPTH_MASK;
344
345         switch (bpc) {
346                 case 0:
347                 case 6:
348                 case 8:
349                 case 16:
350                 default:
351                         DRM_DEBUG("%s: Disabling hdmi deep color for %d bpc.\n",
352                                          connector->name, bpc);
353                         break;
354                 case 10:
355                         val |= HDMI_DEEP_COLOR_ENABLE;
356                         val |= HDMI_DEEP_COLOR_DEPTH(HDMI_30BIT_DEEP_COLOR);
357                         DRM_DEBUG("%s: Enabling hdmi deep color 30 for 10 bpc.\n",
358                                          connector->name);
359                         break;
360                 case 12:
361                         val |= HDMI_DEEP_COLOR_ENABLE;
362                         val |= HDMI_DEEP_COLOR_DEPTH(HDMI_36BIT_DEEP_COLOR);
363                         DRM_DEBUG("%s: Enabling hdmi deep color 36 for 12 bpc.\n",
364                                          connector->name);
365                         break;
366         }
367
368         WREG32(HDMI_CONTROL + offset, val);
369
370         WREG32(HDMI_VBI_PACKET_CONTROL + offset,
371                HDMI_NULL_SEND | /* send null packets when required */
372                HDMI_GC_SEND | /* send general control packets */
373                HDMI_GC_CONT); /* send general control packets every frame */
374
375         WREG32(HDMI_INFOFRAME_CONTROL0 + offset,
376                HDMI_AUDIO_INFO_SEND | /* enable audio info frames (frames won't be set until audio is enabled) */
377                HDMI_AUDIO_INFO_CONT); /* required for audio info values to be updated */
378
379         WREG32(AFMT_INFOFRAME_CONTROL0 + offset,
380                AFMT_AUDIO_INFO_UPDATE); /* required for audio info values to be updated */
381
382         WREG32(HDMI_INFOFRAME_CONTROL1 + offset,
383                HDMI_AUDIO_INFO_LINE(2)); /* anything other than 0 */
384
385         WREG32(HDMI_GC + offset, 0); /* unset HDMI_GC_AVMUTE */
386
387         WREG32(HDMI_AUDIO_PACKET_CONTROL + offset,
388                HDMI_AUDIO_DELAY_EN(1) | /* set the default audio delay */
389                HDMI_AUDIO_PACKETS_PER_LINE(3)); /* should be suffient for all audio modes and small enough for all hblanks */
390
391         WREG32(AFMT_AUDIO_PACKET_CONTROL + offset,
392                AFMT_60958_CS_UPDATE); /* allow 60958 channel status fields to be updated */
393
394         /* fglrx clears sth in AFMT_AUDIO_PACKET_CONTROL2 here */
395
396         if (bpc > 8)
397                 WREG32(HDMI_ACR_PACKET_CONTROL + offset,
398                        HDMI_ACR_AUTO_SEND); /* allow hw to sent ACR packets when required */
399         else
400                 WREG32(HDMI_ACR_PACKET_CONTROL + offset,
401                        HDMI_ACR_SOURCE | /* select SW CTS value */
402                        HDMI_ACR_AUTO_SEND); /* allow hw to sent ACR packets when required */
403
404         evergreen_hdmi_update_ACR(encoder, mode->clock);
405
406         WREG32(AFMT_60958_0 + offset,
407                AFMT_60958_CS_CHANNEL_NUMBER_L(1));
408
409         WREG32(AFMT_60958_1 + offset,
410                AFMT_60958_CS_CHANNEL_NUMBER_R(2));
411
412         WREG32(AFMT_60958_2 + offset,
413                AFMT_60958_CS_CHANNEL_NUMBER_2(3) |
414                AFMT_60958_CS_CHANNEL_NUMBER_3(4) |
415                AFMT_60958_CS_CHANNEL_NUMBER_4(5) |
416                AFMT_60958_CS_CHANNEL_NUMBER_5(6) |
417                AFMT_60958_CS_CHANNEL_NUMBER_6(7) |
418                AFMT_60958_CS_CHANNEL_NUMBER_7(8));
419
420         if (ASIC_IS_DCE6(rdev)) {
421                 dce6_afmt_write_speaker_allocation(encoder);
422         } else {
423                 dce4_afmt_write_speaker_allocation(encoder);
424         }
425
426         WREG32(AFMT_AUDIO_PACKET_CONTROL2 + offset,
427                AFMT_AUDIO_CHANNEL_ENABLE(0xff));
428
429         /* fglrx sets 0x40 in 0x5f80 here */
430
431         if (ASIC_IS_DCE6(rdev)) {
432                 dce6_afmt_select_pin(encoder);
433                 dce6_afmt_write_latency_fields(encoder, mode);
434         } else {
435                 dce4_afmt_write_latency_fields(encoder, mode);
436         }
437
438         radeon_audio_write_sad_regs(encoder);
439
440         err = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode);
441         if (err < 0) {
442                 DRM_ERROR("failed to setup AVI infoframe: %zd\n", err);
443                 return;
444         }
445
446         err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
447         if (err < 0) {
448                 DRM_ERROR("failed to pack AVI infoframe: %zd\n", err);
449                 return;
450         }
451
452         evergreen_hdmi_update_avi_infoframe(encoder, buffer, sizeof(buffer));
453
454         WREG32_OR(HDMI_INFOFRAME_CONTROL0 + offset,
455                   HDMI_AVI_INFO_SEND | /* enable AVI info frames */
456                   HDMI_AVI_INFO_CONT); /* required for audio info values to be updated */
457
458         WREG32_P(HDMI_INFOFRAME_CONTROL1 + offset,
459                  HDMI_AVI_INFO_LINE(2), /* anything other than 0 */
460                  ~HDMI_AVI_INFO_LINE_MASK);
461
462         WREG32_OR(AFMT_AUDIO_PACKET_CONTROL + offset,
463                   AFMT_AUDIO_SAMPLE_SEND); /* send audio packets */
464
465         /* it's unknown what these bits do excatly, but it's indeed quite useful for debugging */
466         WREG32(AFMT_RAMP_CONTROL0 + offset, 0x00FFFFFF);
467         WREG32(AFMT_RAMP_CONTROL1 + offset, 0x007FFFFF);
468         WREG32(AFMT_RAMP_CONTROL2 + offset, 0x00000001);
469         WREG32(AFMT_RAMP_CONTROL3 + offset, 0x00000001);
470
471         /* enable audio after to setting up hw */
472         if (ASIC_IS_DCE6(rdev))
473                 dce6_audio_enable(rdev, dig->afmt->pin, 1);
474         else
475                 dce4_audio_enable(rdev, dig->afmt->pin, 0xf);
476 }
477
478 void evergreen_hdmi_enable(struct drm_encoder *encoder, bool enable)
479 {
480         struct drm_device *dev = encoder->dev;
481         struct radeon_device *rdev = dev->dev_private;
482         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
483         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
484
485         if (!dig || !dig->afmt)
486                 return;
487
488         /* Silent, r600_hdmi_enable will raise WARN for us */
489         if (enable && dig->afmt->enabled)
490                 return;
491         if (!enable && !dig->afmt->enabled)
492                 return;
493
494         if (!enable && dig->afmt->pin) {
495                 if (ASIC_IS_DCE6(rdev))
496                         dce6_audio_enable(rdev, dig->afmt->pin, 0);
497                 else
498                         dce4_audio_enable(rdev, dig->afmt->pin, 0);
499                 dig->afmt->pin = NULL;
500         }
501
502         dig->afmt->enabled = enable;
503
504         DRM_DEBUG("%sabling HDMI interface @ 0x%04X for encoder 0x%x\n",
505                   enable ? "En" : "Dis", dig->afmt->offset, radeon_encoder->encoder_id);
506 }