2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Christian König.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Christian König
28 #include "radeon_reg.h"
31 #define AUDIO_TIMER_INTERVALL 100 /* 1/10 sekund should be enough */
34 * check if the chipset is supported
36 static int r600_audio_chipset_supported(struct radeon_device
*rdev
)
38 return rdev
->family
>= CHIP_R600
39 || rdev
->family
== CHIP_RS600
40 || rdev
->family
== CHIP_RS690
41 || rdev
->family
== CHIP_RS740
;
45 * current number of channels
47 static int r600_audio_channels(struct radeon_device
*rdev
)
49 return (RREG32(R600_AUDIO_RATE_BPS_CHANNEL
) & 0x7) + 1;
53 * current bits per sample
55 static int r600_audio_bits_per_sample(struct radeon_device
*rdev
)
57 uint32_t value
= (RREG32(R600_AUDIO_RATE_BPS_CHANNEL
) & 0xF0) >> 4;
66 DRM_ERROR("Unknown bits per sample 0x%x using 16 instead.\n", (int)value
);
72 * current sampling rate in HZ
74 static int r600_audio_rate(struct radeon_device
*rdev
)
76 uint32_t value
= RREG32(R600_AUDIO_RATE_BPS_CHANNEL
);
84 result
*= ((value
>> 11) & 0x7) + 1;
85 result
/= ((value
>> 8) & 0x7) + 1;
91 * iec 60958 status bits
93 static uint8_t r600_audio_status_bits(struct radeon_device
*rdev
)
95 return RREG32(R600_AUDIO_STATUS_BITS
) & 0xff;
99 * iec 60958 category code
101 static uint8_t r600_audio_category_code(struct radeon_device
*rdev
)
103 return (RREG32(R600_AUDIO_STATUS_BITS
) >> 8) & 0xff;
107 * update all hdmi interfaces with current audio parameters
109 static void r600_audio_update_hdmi(unsigned long param
)
111 struct radeon_device
*rdev
= (struct radeon_device
*)param
;
112 struct drm_device
*dev
= rdev
->ddev
;
114 int channels
= r600_audio_channels(rdev
);
115 int rate
= r600_audio_rate(rdev
);
116 int bps
= r600_audio_bits_per_sample(rdev
);
117 uint8_t status_bits
= r600_audio_status_bits(rdev
);
118 uint8_t category_code
= r600_audio_category_code(rdev
);
120 struct drm_encoder
*encoder
;
123 changes
|= channels
!= rdev
->audio_channels
;
124 changes
|= rate
!= rdev
->audio_rate
;
125 changes
|= bps
!= rdev
->audio_bits_per_sample
;
126 changes
|= status_bits
!= rdev
->audio_status_bits
;
127 changes
|= category_code
!= rdev
->audio_category_code
;
130 rdev
->audio_channels
= channels
;
131 rdev
->audio_rate
= rate
;
132 rdev
->audio_bits_per_sample
= bps
;
133 rdev
->audio_status_bits
= status_bits
;
134 rdev
->audio_category_code
= category_code
;
137 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
138 if (changes
|| r600_hdmi_buffer_status_changed(encoder
))
139 r600_hdmi_update_audio_settings(
141 rate
, bps
, status_bits
,
145 mod_timer(&rdev
->audio_timer
,
146 jiffies
+ msecs_to_jiffies(AUDIO_TIMER_INTERVALL
));
150 * initialize the audio vars and register the update timer
152 int r600_audio_init(struct radeon_device
*rdev
)
154 if (!r600_audio_chipset_supported(rdev
))
157 DRM_INFO("%s audio support", radeon_audio
? "Enabling" : "Disabling");
158 WREG32_P(R600_AUDIO_ENABLE
, radeon_audio
? 0x81000000 : 0x0, ~0x81000000);
160 rdev
->audio_channels
= -1;
161 rdev
->audio_rate
= -1;
162 rdev
->audio_bits_per_sample
= -1;
163 rdev
->audio_status_bits
= 0;
164 rdev
->audio_category_code
= 0;
168 r600_audio_update_hdmi
,
169 (unsigned long)rdev
);
171 mod_timer(&rdev
->audio_timer
, jiffies
+ 1);
177 * determin how the encoders and audio interface is wired together
179 int r600_audio_tmds_index(struct drm_encoder
*encoder
)
181 struct drm_device
*dev
= encoder
->dev
;
182 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
183 struct drm_encoder
*other
;
185 switch (radeon_encoder
->encoder_id
) {
186 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1
:
187 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY
:
188 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1
:
191 case ENCODER_OBJECT_ID_INTERNAL_LVTM1
:
192 /* special case check if an TMDS1 is present */
193 list_for_each_entry(other
, &dev
->mode_config
.encoder_list
, head
) {
194 if (to_radeon_encoder(other
)->encoder_id
==
195 ENCODER_OBJECT_ID_INTERNAL_TMDS1
)
200 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2
:
201 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA
:
205 DRM_ERROR("Unsupported encoder type 0x%02X\n",
206 radeon_encoder
->encoder_id
);
212 * atach the audio codec to the clock source of the encoder
214 void r600_audio_set_clock(struct drm_encoder
*encoder
, int clock
)
216 struct drm_device
*dev
= encoder
->dev
;
217 struct radeon_device
*rdev
= dev
->dev_private
;
218 struct radeon_encoder
*radeon_encoder
= to_radeon_encoder(encoder
);
219 int base_rate
= 48000;
221 switch (radeon_encoder
->encoder_id
) {
222 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1
:
223 case ENCODER_OBJECT_ID_INTERNAL_LVTM1
:
224 WREG32_P(R600_AUDIO_TIMING
, 0, ~0x301);
227 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY
:
228 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1
:
229 case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2
:
230 case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA
:
231 WREG32_P(R600_AUDIO_TIMING
, 0x100, ~0x301);
235 DRM_ERROR("Unsupported encoder type 0x%02X\n",
236 radeon_encoder
->encoder_id
);
240 switch (r600_audio_tmds_index(encoder
)) {
242 WREG32(R600_AUDIO_PLL1_MUL
, base_rate
*50);
243 WREG32(R600_AUDIO_PLL1_DIV
, clock
*100);
244 WREG32(R600_AUDIO_CLK_SRCSEL
, 0);
248 WREG32(R600_AUDIO_PLL2_MUL
, base_rate
*50);
249 WREG32(R600_AUDIO_PLL2_DIV
, clock
*100);
250 WREG32(R600_AUDIO_CLK_SRCSEL
, 1);
256 * release the audio timer
257 * TODO: How to do this correctly on SMP systems?
259 void r600_audio_fini(struct radeon_device
*rdev
)
261 if (!r600_audio_chipset_supported(rdev
))
264 WREG32_P(R600_AUDIO_ENABLE
, 0x0, ~0x81000000);
266 del_timer(&rdev
->audio_timer
);