2 * PMac Burgundy lowlevel functions
4 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
5 * code based on dmasound.c.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/driver.h>
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/delay.h>
27 #include <sound/core.h>
32 /* Waits for busy flag to clear */
34 snd_pmac_burgundy_busy_wait(pmac_t *chip)
37 while ((in_le32(&chip->awacs->codec_ctrl) & MASK_NEWECMD) && timeout--)
40 printk(KERN_DEBUG "burgundy_busy_wait: timeout\n");
44 snd_pmac_burgundy_extend_wait(pmac_t *chip)
48 while (!(in_le32(&chip->awacs->codec_stat) & MASK_EXTEND) && timeout--)
51 printk(KERN_DEBUG "burgundy_extend_wait: timeout #1\n");
53 while ((in_le32(&chip->awacs->codec_stat) & MASK_EXTEND) && timeout--)
56 printk(KERN_DEBUG "burgundy_extend_wait: timeout #2\n");
60 snd_pmac_burgundy_wcw(pmac_t *chip, unsigned addr, unsigned val)
62 out_le32(&chip->awacs->codec_ctrl, addr + 0x200c00 + (val & 0xff));
63 snd_pmac_burgundy_busy_wait(chip);
64 out_le32(&chip->awacs->codec_ctrl, addr + 0x200d00 +((val>>8) & 0xff));
65 snd_pmac_burgundy_busy_wait(chip);
66 out_le32(&chip->awacs->codec_ctrl, addr + 0x200e00 +((val>>16) & 0xff));
67 snd_pmac_burgundy_busy_wait(chip);
68 out_le32(&chip->awacs->codec_ctrl, addr + 0x200f00 +((val>>24) & 0xff));
69 snd_pmac_burgundy_busy_wait(chip);
73 snd_pmac_burgundy_rcw(pmac_t *chip, unsigned addr)
78 spin_lock_irqsave(&chip->reg_lock, flags);
80 out_le32(&chip->awacs->codec_ctrl, addr + 0x100000);
81 snd_pmac_burgundy_busy_wait(chip);
82 snd_pmac_burgundy_extend_wait(chip);
83 val += (in_le32(&chip->awacs->codec_stat) >> 4) & 0xff;
85 out_le32(&chip->awacs->codec_ctrl, addr + 0x100100);
86 snd_pmac_burgundy_busy_wait(chip);
87 snd_pmac_burgundy_extend_wait(chip);
88 val += ((in_le32(&chip->awacs->codec_stat)>>4) & 0xff) <<8;
90 out_le32(&chip->awacs->codec_ctrl, addr + 0x100200);
91 snd_pmac_burgundy_busy_wait(chip);
92 snd_pmac_burgundy_extend_wait(chip);
93 val += ((in_le32(&chip->awacs->codec_stat)>>4) & 0xff) <<16;
95 out_le32(&chip->awacs->codec_ctrl, addr + 0x100300);
96 snd_pmac_burgundy_busy_wait(chip);
97 snd_pmac_burgundy_extend_wait(chip);
98 val += ((in_le32(&chip->awacs->codec_stat)>>4) & 0xff) <<24;
100 spin_unlock_irqrestore(&chip->reg_lock, flags);
106 snd_pmac_burgundy_wcb(pmac_t *chip, unsigned int addr, unsigned int val)
108 out_le32(&chip->awacs->codec_ctrl, addr + 0x300000 + (val & 0xff));
109 snd_pmac_burgundy_busy_wait(chip);
113 snd_pmac_burgundy_rcb(pmac_t *chip, unsigned int addr)
118 spin_lock_irqsave(&chip->reg_lock, flags);
120 out_le32(&chip->awacs->codec_ctrl, addr + 0x100000);
121 snd_pmac_burgundy_busy_wait(chip);
122 snd_pmac_burgundy_extend_wait(chip);
123 val += (in_le32(&chip->awacs->codec_stat) >> 4) & 0xff;
125 spin_unlock_irqrestore(&chip->reg_lock, flags);
131 * Burgundy volume: 0 - 100, stereo
134 snd_pmac_burgundy_write_volume(pmac_t *chip, unsigned int address, long *volume, int shift)
136 int hardvolume, lvolume, rvolume;
138 lvolume = volume[0] ? volume[0] + BURGUNDY_VOLUME_OFFSET : 0;
139 rvolume = volume[1] ? volume[1] + BURGUNDY_VOLUME_OFFSET : 0;
141 hardvolume = lvolume + (rvolume << shift);
143 hardvolume |= hardvolume << 16;
145 snd_pmac_burgundy_wcw(chip, address, hardvolume);
149 snd_pmac_burgundy_read_volume(pmac_t *chip, unsigned int address, long *volume, int shift)
153 wvolume = snd_pmac_burgundy_rcw(chip, address);
155 volume[0] = wvolume & 0xff;
156 if (volume[0] >= BURGUNDY_VOLUME_OFFSET)
157 volume[0] -= BURGUNDY_VOLUME_OFFSET;
160 volume[1] = (wvolume >> shift) & 0xff;
161 if (volume[1] >= BURGUNDY_VOLUME_OFFSET)
162 volume[1] -= BURGUNDY_VOLUME_OFFSET;
171 #define BASE2ADDR(base) ((base) << 12)
172 #define ADDR2BASE(addr) ((addr) >> 12)
174 static int snd_pmac_burgundy_info_volume(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
176 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
178 uinfo->value.integer.min = 0;
179 uinfo->value.integer.max = 100;
183 static int snd_pmac_burgundy_get_volume(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
185 pmac_t *chip = snd_kcontrol_chip(kcontrol);
186 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff);
187 int shift = (kcontrol->private_value >> 8) & 0xff;
188 snd_pmac_burgundy_read_volume(chip, addr, ucontrol->value.integer.value, shift);
192 static int snd_pmac_burgundy_put_volume(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
194 pmac_t *chip = snd_kcontrol_chip(kcontrol);
195 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff);
196 int shift = (kcontrol->private_value >> 8) & 0xff;
199 snd_pmac_burgundy_write_volume(chip, addr, ucontrol->value.integer.value, shift);
200 snd_pmac_burgundy_read_volume(chip, addr, nvoices, shift);
201 return (nvoices[0] != ucontrol->value.integer.value[0] ||
202 nvoices[1] != ucontrol->value.integer.value[1]);
205 #define BURGUNDY_VOLUME(xname, xindex, addr, shift) \
206 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\
207 .info = snd_pmac_burgundy_info_volume,\
208 .get = snd_pmac_burgundy_get_volume,\
209 .put = snd_pmac_burgundy_put_volume,\
210 .private_value = ((ADDR2BASE(addr) & 0xff) | ((shift) << 8)) }
212 /* lineout/speaker */
214 static int snd_pmac_burgundy_info_switch_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
216 int stereo = (kcontrol->private_value >> 24) & 1;
217 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
218 uinfo->count = stereo + 1;
219 uinfo->value.integer.min = 0;
220 uinfo->value.integer.max = 1;
224 static int snd_pmac_burgundy_get_switch_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
226 pmac_t *chip = snd_kcontrol_chip(kcontrol);
227 int lmask = kcontrol->private_value & 0xff;
228 int rmask = (kcontrol->private_value >> 8) & 0xff;
229 int stereo = (kcontrol->private_value >> 24) & 1;
230 int val = snd_pmac_burgundy_rcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES);
231 ucontrol->value.integer.value[0] = (val & lmask) ? 1 : 0;
233 ucontrol->value.integer.value[1] = (val & rmask) ? 1 : 0;
237 static int snd_pmac_burgundy_put_switch_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
239 pmac_t *chip = snd_kcontrol_chip(kcontrol);
240 int lmask = kcontrol->private_value & 0xff;
241 int rmask = (kcontrol->private_value >> 8) & 0xff;
242 int stereo = (kcontrol->private_value >> 24) & 1;
244 oval = snd_pmac_burgundy_rcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES);
245 val = oval & ~(lmask | rmask);
246 if (ucontrol->value.integer.value[0])
248 if (stereo && ucontrol->value.integer.value[1])
250 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, val);
254 #define BURGUNDY_OUTPUT_SWITCH(xname, xindex, lmask, rmask, stereo) \
255 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\
256 .info = snd_pmac_burgundy_info_switch_out,\
257 .get = snd_pmac_burgundy_get_switch_out,\
258 .put = snd_pmac_burgundy_put_switch_out,\
259 .private_value = ((lmask) | ((rmask) << 8) | ((stereo) << 24)) }
261 /* line/speaker output volume */
262 static int snd_pmac_burgundy_info_volume_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
264 int stereo = (kcontrol->private_value >> 24) & 1;
265 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
266 uinfo->count = stereo + 1;
267 uinfo->value.integer.min = 0;
268 uinfo->value.integer.max = 15;
272 static int snd_pmac_burgundy_get_volume_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
274 pmac_t *chip = snd_kcontrol_chip(kcontrol);
275 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff);
276 int stereo = (kcontrol->private_value >> 24) & 1;
279 oval = ~snd_pmac_burgundy_rcb(chip, addr) & 0xff;
280 ucontrol->value.integer.value[0] = oval & 0xf;
282 ucontrol->value.integer.value[1] = (oval >> 4) & 0xf;
286 static int snd_pmac_burgundy_put_volume_out(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
288 pmac_t *chip = snd_kcontrol_chip(kcontrol);
289 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff);
290 int stereo = (kcontrol->private_value >> 24) & 1;
293 oval = ~snd_pmac_burgundy_rcb(chip, addr) & 0xff;
294 val = ucontrol->value.integer.value[0];
296 val |= ucontrol->value.integer.value[1] << 4;
298 val |= ucontrol->value.integer.value[0] << 4;
300 snd_pmac_burgundy_wcb(chip, addr, val);
304 #define BURGUNDY_OUTPUT_VOLUME(xname, xindex, addr, stereo) \
305 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\
306 .info = snd_pmac_burgundy_info_volume_out,\
307 .get = snd_pmac_burgundy_get_volume_out,\
308 .put = snd_pmac_burgundy_put_volume_out,\
309 .private_value = (ADDR2BASE(addr) | ((stereo) << 24)) }
311 static snd_kcontrol_new_t snd_pmac_burgundy_mixers[] __initdata = {
312 BURGUNDY_VOLUME("Master Playback Volume", 0, MASK_ADDR_BURGUNDY_MASTER_VOLUME, 8),
313 BURGUNDY_VOLUME("Line Playback Volume", 0, MASK_ADDR_BURGUNDY_VOLLINE, 16),
314 BURGUNDY_VOLUME("CD Playback Volume", 0, MASK_ADDR_BURGUNDY_VOLCD, 16),
315 BURGUNDY_VOLUME("Mic Playback Volume", 0, MASK_ADDR_BURGUNDY_VOLMIC, 16),
316 BURGUNDY_OUTPUT_VOLUME("PC Speaker Playback Volume", 0, MASK_ADDR_BURGUNDY_ATTENHP, 0),
317 /*BURGUNDY_OUTPUT_VOLUME("PCM Playback Volume", 0, MASK_ADDR_BURGUNDY_ATTENLINEOUT, 1),*/
318 BURGUNDY_OUTPUT_VOLUME("Headphone Playback Volume", 0, MASK_ADDR_BURGUNDY_ATTENSPEAKER, 1),
320 static snd_kcontrol_new_t snd_pmac_burgundy_master_sw __initdata =
321 BURGUNDY_OUTPUT_SWITCH("Headphone Playback Switch", 0, BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1);
322 static snd_kcontrol_new_t snd_pmac_burgundy_speaker_sw __initdata =
323 BURGUNDY_OUTPUT_SWITCH("PC Speaker Playback Switch", 0, BURGUNDY_OUTPUT_INTERN, 0, 0);
326 #ifdef PMAC_SUPPORT_AUTOMUTE
330 static int snd_pmac_burgundy_detect_headphone(pmac_t *chip)
332 return (in_le32(&chip->awacs->codec_stat) & chip->hp_stat_mask) ? 1 : 0;
335 static void snd_pmac_burgundy_update_automute(pmac_t *chip, int do_notify)
337 if (chip->auto_mute) {
339 reg = oreg = snd_pmac_burgundy_rcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES);
340 reg &= ~(BURGUNDY_OUTPUT_LEFT | BURGUNDY_OUTPUT_RIGHT | BURGUNDY_OUTPUT_INTERN);
341 if (snd_pmac_burgundy_detect_headphone(chip))
342 reg |= BURGUNDY_OUTPUT_LEFT | BURGUNDY_OUTPUT_RIGHT;
344 reg |= BURGUNDY_OUTPUT_INTERN;
345 if (do_notify && reg == oreg)
347 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, reg);
349 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
350 &chip->master_sw_ctl->id);
351 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
352 &chip->speaker_sw_ctl->id);
353 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
354 &chip->hp_detect_ctl->id);
358 #endif /* PMAC_SUPPORT_AUTOMUTE */
362 * initialize burgundy
364 int __init snd_pmac_burgundy_init(pmac_t *chip)
368 /* Checks to see the chip is alive and kicking */
369 if ((in_le32(&chip->awacs->codec_ctrl) & MASK_ERRCODE) == 0xf0000) {
370 printk(KERN_WARNING "pmac burgundy: disabled by MacOS :-(\n");
374 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_OUTPUTENABLES,
375 DEF_BURGUNDY_OUTPUTENABLES);
376 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
377 DEF_BURGUNDY_MORE_OUTPUTENABLES);
378 snd_pmac_burgundy_wcw(chip, MASK_ADDR_BURGUNDY_OUTPUTSELECTS,
379 DEF_BURGUNDY_OUTPUTSELECTS);
381 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_INPSEL21,
382 DEF_BURGUNDY_INPSEL21);
383 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_INPSEL3,
384 DEF_BURGUNDY_INPSEL3);
385 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_GAINCD,
386 DEF_BURGUNDY_GAINCD);
387 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_GAINLINE,
388 DEF_BURGUNDY_GAINLINE);
389 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_GAINMIC,
390 DEF_BURGUNDY_GAINMIC);
391 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_GAINMODEM,
392 DEF_BURGUNDY_GAINMODEM);
394 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_ATTENSPEAKER,
395 DEF_BURGUNDY_ATTENSPEAKER);
396 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_ATTENLINEOUT,
397 DEF_BURGUNDY_ATTENLINEOUT);
398 snd_pmac_burgundy_wcb(chip, MASK_ADDR_BURGUNDY_ATTENHP,
399 DEF_BURGUNDY_ATTENHP);
401 snd_pmac_burgundy_wcw(chip, MASK_ADDR_BURGUNDY_MASTER_VOLUME,
402 DEF_BURGUNDY_MASTER_VOLUME);
403 snd_pmac_burgundy_wcw(chip, MASK_ADDR_BURGUNDY_VOLCD,
405 snd_pmac_burgundy_wcw(chip, MASK_ADDR_BURGUNDY_VOLLINE,
406 DEF_BURGUNDY_VOLLINE);
407 snd_pmac_burgundy_wcw(chip, MASK_ADDR_BURGUNDY_VOLMIC,
408 DEF_BURGUNDY_VOLMIC);
410 if (chip->hp_stat_mask == 0)
411 /* set headphone-jack detection bit */
412 chip->hp_stat_mask = 0x04;
415 * build burgundy mixers
417 strcpy(chip->card->mixername, "PowerMac Burgundy");
419 for (i = 0; i < ARRAY_SIZE(snd_pmac_burgundy_mixers); i++) {
420 if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_pmac_burgundy_mixers[i], chip))) < 0)
423 chip->master_sw_ctl = snd_ctl_new1(&snd_pmac_burgundy_master_sw, chip);
424 if ((err = snd_ctl_add(chip->card, chip->master_sw_ctl)) < 0)
426 chip->speaker_sw_ctl = snd_ctl_new1(&snd_pmac_burgundy_speaker_sw, chip);
427 if ((err = snd_ctl_add(chip->card, chip->speaker_sw_ctl)) < 0)
429 #ifdef PMAC_SUPPORT_AUTOMUTE
430 if ((err = snd_pmac_add_automute(chip)) < 0)
433 chip->detect_headphone = snd_pmac_burgundy_detect_headphone;
434 chip->update_automute = snd_pmac_burgundy_update_automute;
435 snd_pmac_burgundy_update_automute(chip, 0); /* update the status only */