Merge git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes
[pandora-kernel.git] / drivers / gpu / drm / radeon / r600_audio.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  */
26 #include "drmP.h"
27 #include "radeon.h"
28 #include "radeon_reg.h"
29 #include "atom.h"
30
31 #define AUDIO_TIMER_INTERVALL 100 /* 1/10 sekund should be enough */
32
33 /*
34  * check if the chipset is supported
35  */
36 static int r600_audio_chipset_supported(struct radeon_device *rdev)
37 {
38         return (rdev->family >= CHIP_R600 && rdev->family < CHIP_CEDAR)
39                 || rdev->family == CHIP_RS600
40                 || rdev->family == CHIP_RS690
41                 || rdev->family == CHIP_RS740;
42 }
43
44 /*
45  * current number of channels
46  */
47 int r600_audio_channels(struct radeon_device *rdev)
48 {
49         return (RREG32(R600_AUDIO_RATE_BPS_CHANNEL) & 0x7) + 1;
50 }
51
52 /*
53  * current bits per sample
54  */
55 int r600_audio_bits_per_sample(struct radeon_device *rdev)
56 {
57         uint32_t value = (RREG32(R600_AUDIO_RATE_BPS_CHANNEL) & 0xF0) >> 4;
58         switch (value) {
59         case 0x0: return  8;
60         case 0x1: return 16;
61         case 0x2: return 20;
62         case 0x3: return 24;
63         case 0x4: return 32;
64         }
65
66         DRM_ERROR("Unknown bits per sample 0x%x using 16 instead.\n", (int)value);
67
68         return 16;
69 }
70
71 /*
72  * current sampling rate in HZ
73  */
74 int r600_audio_rate(struct radeon_device *rdev)
75 {
76         uint32_t value = RREG32(R600_AUDIO_RATE_BPS_CHANNEL);
77         uint32_t result;
78
79         if (value & 0x4000)
80                 result = 44100;
81         else
82                 result = 48000;
83
84         result *= ((value >> 11) & 0x7) + 1;
85         result /= ((value >> 8) & 0x7) + 1;
86
87         return result;
88 }
89
90 /*
91  * iec 60958 status bits
92  */
93 uint8_t r600_audio_status_bits(struct radeon_device *rdev)
94 {
95         return RREG32(R600_AUDIO_STATUS_BITS) & 0xff;
96 }
97
98 /*
99  * iec 60958 category code
100  */
101 uint8_t r600_audio_category_code(struct radeon_device *rdev)
102 {
103         return (RREG32(R600_AUDIO_STATUS_BITS) >> 8) & 0xff;
104 }
105
106 /*
107  * schedule next audio update event
108  */
109 void r600_audio_schedule_polling(struct radeon_device *rdev)
110 {
111         mod_timer(&rdev->audio_timer,
112                 jiffies + msecs_to_jiffies(AUDIO_TIMER_INTERVALL));
113 }
114
115 /*
116  * update all hdmi interfaces with current audio parameters
117  */
118 static void r600_audio_update_hdmi(unsigned long param)
119 {
120         struct radeon_device *rdev = (struct radeon_device *)param;
121         struct drm_device *dev = rdev->ddev;
122
123         int channels = r600_audio_channels(rdev);
124         int rate = r600_audio_rate(rdev);
125         int bps = r600_audio_bits_per_sample(rdev);
126         uint8_t status_bits = r600_audio_status_bits(rdev);
127         uint8_t category_code = r600_audio_category_code(rdev);
128
129         struct drm_encoder *encoder;
130         int changes = 0, still_going = 0;
131
132         changes |= channels != rdev->audio_channels;
133         changes |= rate != rdev->audio_rate;
134         changes |= bps != rdev->audio_bits_per_sample;
135         changes |= status_bits != rdev->audio_status_bits;
136         changes |= category_code != rdev->audio_category_code;
137
138         if (changes) {
139                 rdev->audio_channels = channels;
140                 rdev->audio_rate = rate;
141                 rdev->audio_bits_per_sample = bps;
142                 rdev->audio_status_bits = status_bits;
143                 rdev->audio_category_code = category_code;
144         }
145
146         list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
147                 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
148                 still_going |= radeon_encoder->audio_polling_active;
149                 if (changes || r600_hdmi_buffer_status_changed(encoder))
150                         r600_hdmi_update_audio_settings(encoder);
151         }
152
153         if(still_going) r600_audio_schedule_polling(rdev);
154 }
155
156 /*
157  * turn on/off audio engine
158  */
159 static void r600_audio_engine_enable(struct radeon_device *rdev, bool enable)
160 {
161         DRM_INFO("%s audio support", enable ? "Enabling" : "Disabling");
162         WREG32_P(R600_AUDIO_ENABLE, enable ? 0x81000000 : 0x0, ~0x81000000);
163 }
164
165 /*
166  * initialize the audio vars and register the update timer
167  */
168 int r600_audio_init(struct radeon_device *rdev)
169 {
170         if (!radeon_audio || !r600_audio_chipset_supported(rdev))
171                 return 0;
172
173         r600_audio_engine_enable(rdev, true);
174
175         rdev->audio_channels = -1;
176         rdev->audio_rate = -1;
177         rdev->audio_bits_per_sample = -1;
178         rdev->audio_status_bits = 0;
179         rdev->audio_category_code = 0;
180
181         setup_timer(
182                 &rdev->audio_timer,
183                 r600_audio_update_hdmi,
184                 (unsigned long)rdev);
185
186         return 0;
187 }
188
189 /*
190  * enable the polling timer, to check for status changes
191  */
192 void r600_audio_enable_polling(struct drm_encoder *encoder)
193 {
194         struct drm_device *dev = encoder->dev;
195         struct radeon_device *rdev = dev->dev_private;
196         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
197
198         DRM_DEBUG("r600_audio_enable_polling: %d", radeon_encoder->audio_polling_active);
199         if (radeon_encoder->audio_polling_active)
200                 return;
201
202         radeon_encoder->audio_polling_active = 1;
203         mod_timer(&rdev->audio_timer, jiffies + 1);
204 }
205
206 /*
207  * disable the polling timer, so we get no more status updates
208  */
209 void r600_audio_disable_polling(struct drm_encoder *encoder)
210 {
211         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
212         DRM_DEBUG("r600_audio_disable_polling: %d", radeon_encoder->audio_polling_active);
213         radeon_encoder->audio_polling_active = 0;
214 }
215
216 /*
217  * atach the audio codec to the clock source of the encoder
218  */
219 void r600_audio_set_clock(struct drm_encoder *encoder, int clock)
220 {
221         struct drm_device *dev = encoder->dev;
222         struct radeon_device *rdev = dev->dev_private;
223         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
224         struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
225         int base_rate = 48000;
226
227         switch (radeon_encoder->encoder_id) {
228         case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1:
229         case ENCODER_OBJECT_ID_INTERNAL_LVTM1:
230                 WREG32_P(R600_AUDIO_TIMING, 0, ~0x301);
231                 break;
232         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
233         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
234         case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
235         case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA:
236                 WREG32_P(R600_AUDIO_TIMING, 0x100, ~0x301);
237                 break;
238         default:
239                 DRM_ERROR("Unsupported encoder type 0x%02X\n",
240                           radeon_encoder->encoder_id);
241                 return;
242         }
243
244         switch (dig->dig_encoder) {
245         case 0:
246                 WREG32(R600_AUDIO_PLL1_MUL, base_rate * 50);
247                 WREG32(R600_AUDIO_PLL1_DIV, clock * 100);
248                 WREG32(R600_AUDIO_CLK_SRCSEL, 0);
249                 break;
250
251         case 1:
252                 WREG32(R600_AUDIO_PLL2_MUL, base_rate * 50);
253                 WREG32(R600_AUDIO_PLL2_DIV, clock * 100);
254                 WREG32(R600_AUDIO_CLK_SRCSEL, 1);
255                 break;
256         default:
257                 dev_err(rdev->dev, "Unsupported DIG on encoder 0x%02X\n",
258                           radeon_encoder->encoder_id);
259                 return;
260         }
261 }
262
263 /*
264  * release the audio timer
265  * TODO: How to do this correctly on SMP systems?
266  */
267 void r600_audio_fini(struct radeon_device *rdev)
268 {
269         if (!radeon_audio || !r600_audio_chipset_supported(rdev))
270                 return;
271
272         del_timer(&rdev->audio_timer);
273
274         r600_audio_engine_enable(rdev, false);
275 }