blob: 8e01b558131d19b455c172d4c8f571cddce4adc1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PMac Tumbler/Snapper lowlevel functions
3 *
4 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * Rene Rebe <rene.rebe@gmx.net>:
21 * * update from shadow registers on wakeup and headphone plug
22 * * automatically toggle DRC on headphone plug
23 *
24 */
25
26
27#include <sound/driver.h>
28#include <linux/init.h>
29#include <linux/delay.h>
30#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kmod.h>
32#include <linux/slab.h>
33#include <linux/interrupt.h>
34#include <sound/core.h>
35#include <asm/io.h>
36#include <asm/irq.h>
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070037#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/pmac_feature.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "pmac.h"
40#include "tumbler_volume.h"
41
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070042#undef DEBUG
43
44#ifdef DEBUG
45#define DBG(fmt...) printk(fmt)
46#else
47#define DBG(fmt...)
48#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* i2c address for tumbler */
51#define TAS_I2C_ADDR 0x34
52
53/* registers */
54#define TAS_REG_MCS 0x01 /* main control */
55#define TAS_REG_DRC 0x02
56#define TAS_REG_VOL 0x04
57#define TAS_REG_TREBLE 0x05
58#define TAS_REG_BASS 0x06
59#define TAS_REG_INPUT1 0x07
60#define TAS_REG_INPUT2 0x08
61
62/* tas3001c */
63#define TAS_REG_PCM TAS_REG_INPUT1
64
65/* tas3004 */
66#define TAS_REG_LMIX TAS_REG_INPUT1
67#define TAS_REG_RMIX TAS_REG_INPUT2
68#define TAS_REG_MCS2 0x43 /* main control 2 */
69#define TAS_REG_ACS 0x40 /* analog control */
70
71/* mono volumes for tas3001c/tas3004 */
72enum {
73 VOL_IDX_PCM_MONO, /* tas3001c only */
74 VOL_IDX_BASS, VOL_IDX_TREBLE,
75 VOL_IDX_LAST_MONO
76};
77
78/* stereo volumes for tas3004 */
79enum {
80 VOL_IDX_PCM, VOL_IDX_PCM2, VOL_IDX_ADC,
81 VOL_IDX_LAST_MIX
82};
83
Takashi Iwai65b29f52005-11-17 15:09:46 +010084struct pmac_gpio {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned int addr;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -070086 u8 active_val;
87 u8 inactive_val;
88 u8 active_state;
Takashi Iwai65b29f52005-11-17 15:09:46 +010089};
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Takashi Iwai65b29f52005-11-17 15:09:46 +010091struct pmac_tumbler {
92 struct pmac_keywest i2c;
93 struct pmac_gpio audio_reset;
94 struct pmac_gpio amp_mute;
95 struct pmac_gpio line_mute;
96 struct pmac_gpio line_detect;
97 struct pmac_gpio hp_mute;
98 struct pmac_gpio hp_detect;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int headphone_irq;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700100 int lineout_irq;
Colin Leroy085e6fc2005-05-01 08:58:43 -0700101 unsigned int save_master_vol[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned int master_vol[2];
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700103 unsigned int save_master_switch[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 unsigned int master_switch[2];
105 unsigned int mono_vol[VOL_IDX_LAST_MONO];
106 unsigned int mix_vol[VOL_IDX_LAST_MIX][2]; /* stereo volumes for tas3004 */
107 int drc_range;
108 int drc_enable;
109 int capture_source;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700110 int anded_reset;
111 int auto_mute_notify;
112 int reset_on_sleep;
113 u8 acs;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100114};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116
117/*
118 */
119
Takashi Iwai65b29f52005-11-17 15:09:46 +0100120static int send_init_client(struct pmac_keywest *i2c, unsigned int *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 while (*regs > 0) {
123 int err, count = 10;
124 do {
125 err = i2c_smbus_write_byte_data(i2c->client,
126 regs[0], regs[1]);
127 if (err >= 0)
128 break;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700129 DBG("(W) i2c error %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mdelay(10);
131 } while (count--);
132 if (err < 0)
133 return -ENXIO;
134 regs += 2;
135 }
136 return 0;
137}
138
139
Takashi Iwai65b29f52005-11-17 15:09:46 +0100140static int tumbler_init_client(struct pmac_keywest *i2c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 static unsigned int regs[] = {
143 /* normal operation, SCLK=64fps, i2s output, i2s input, 16bit width */
144 TAS_REG_MCS, (1<<6)|(2<<4)|(2<<2)|0,
145 0, /* terminator */
146 };
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700147 DBG("(I) tumbler init client\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return send_init_client(i2c, regs);
149}
150
Takashi Iwai65b29f52005-11-17 15:09:46 +0100151static int snapper_init_client(struct pmac_keywest *i2c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 static unsigned int regs[] = {
154 /* normal operation, SCLK=64fps, i2s output, 16bit width */
155 TAS_REG_MCS, (1<<6)|(2<<4)|0,
156 /* normal operation, all-pass mode */
157 TAS_REG_MCS2, (1<<1),
158 /* normal output, no deemphasis, A input, power-up, line-in */
159 TAS_REG_ACS, 0,
160 0, /* terminator */
161 };
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700162 DBG("(I) snapper init client\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return send_init_client(i2c, regs);
164}
165
166/*
167 * gpio access
168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#define do_gpio_write(gp, val) \
170 pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, (gp)->addr, val)
171#define do_gpio_read(gp) \
172 pmac_call_feature(PMAC_FTR_READ_GPIO, NULL, (gp)->addr, 0)
173#define tumbler_gpio_free(gp) /* NOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Takashi Iwai65b29f52005-11-17 15:09:46 +0100175static void write_audio_gpio(struct pmac_gpio *gp, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 if (! gp->addr)
178 return;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700179 active = active ? gp->active_val : gp->inactive_val;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700180 do_gpio_write(gp, active);
181 DBG("(I) gpio %x write %d\n", gp->addr, active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Takashi Iwai65b29f52005-11-17 15:09:46 +0100184static int check_audio_gpio(struct pmac_gpio *gp)
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700185{
186 int ret;
187
188 if (! gp->addr)
189 return 0;
190
191 ret = do_gpio_read(gp);
192
Andreas Schwab2fd53a72006-09-01 17:15:36 +0200193 return (ret & 0x1) == (gp->active_val & 0x1);
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700194}
195
Takashi Iwai65b29f52005-11-17 15:09:46 +0100196static int read_audio_gpio(struct pmac_gpio *gp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int ret;
199 if (! gp->addr)
200 return 0;
Andreas Schwab2fd53a72006-09-01 17:15:36 +0200201 ret = do_gpio_read(gp);
202 ret = (ret & 0x02) !=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return ret == gp->active_state;
204}
205
206/*
207 * update master volume
208 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100209static int tumbler_set_master_volume(struct pmac_tumbler *mix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 unsigned char block[6];
212 unsigned int left_vol, right_vol;
213
214 if (! mix->i2c.client)
215 return -ENODEV;
216
217 if (! mix->master_switch[0])
218 left_vol = 0;
219 else {
220 left_vol = mix->master_vol[0];
221 if (left_vol >= ARRAY_SIZE(master_volume_table))
222 left_vol = ARRAY_SIZE(master_volume_table) - 1;
223 left_vol = master_volume_table[left_vol];
224 }
225 if (! mix->master_switch[1])
226 right_vol = 0;
227 else {
228 right_vol = mix->master_vol[1];
229 if (right_vol >= ARRAY_SIZE(master_volume_table))
230 right_vol = ARRAY_SIZE(master_volume_table) - 1;
231 right_vol = master_volume_table[right_vol];
232 }
233
234 block[0] = (left_vol >> 16) & 0xff;
235 block[1] = (left_vol >> 8) & 0xff;
236 block[2] = (left_vol >> 0) & 0xff;
237
238 block[3] = (right_vol >> 16) & 0xff;
239 block[4] = (right_vol >> 8) & 0xff;
240 block[5] = (right_vol >> 0) & 0xff;
241
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100242 if (i2c_smbus_write_i2c_block_data(mix->i2c.client, TAS_REG_VOL, 6,
243 block) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 snd_printk("failed to set volume \n");
245 return -EINVAL;
246 }
247 return 0;
248}
249
250
251/* output volume */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100252static int tumbler_info_master_volume(struct snd_kcontrol *kcontrol,
253 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
256 uinfo->count = 2;
257 uinfo->value.integer.min = 0;
258 uinfo->value.integer.max = ARRAY_SIZE(master_volume_table) - 1;
259 return 0;
260}
261
Takashi Iwai65b29f52005-11-17 15:09:46 +0100262static int tumbler_get_master_volume(struct snd_kcontrol *kcontrol,
263 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100265 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
266 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 snd_assert(mix, return -ENODEV);
268 ucontrol->value.integer.value[0] = mix->master_vol[0];
269 ucontrol->value.integer.value[1] = mix->master_vol[1];
270 return 0;
271}
272
Takashi Iwai65b29f52005-11-17 15:09:46 +0100273static int tumbler_put_master_volume(struct snd_kcontrol *kcontrol,
274 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100276 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
277 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int change;
279
280 snd_assert(mix, return -ENODEV);
281 change = mix->master_vol[0] != ucontrol->value.integer.value[0] ||
282 mix->master_vol[1] != ucontrol->value.integer.value[1];
283 if (change) {
284 mix->master_vol[0] = ucontrol->value.integer.value[0];
285 mix->master_vol[1] = ucontrol->value.integer.value[1];
286 tumbler_set_master_volume(mix);
287 }
288 return change;
289}
290
291/* output switch */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100292static int tumbler_get_master_switch(struct snd_kcontrol *kcontrol,
293 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100295 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
296 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 snd_assert(mix, return -ENODEV);
298 ucontrol->value.integer.value[0] = mix->master_switch[0];
299 ucontrol->value.integer.value[1] = mix->master_switch[1];
300 return 0;
301}
302
Takashi Iwai65b29f52005-11-17 15:09:46 +0100303static int tumbler_put_master_switch(struct snd_kcontrol *kcontrol,
304 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100306 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
307 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int change;
309
310 snd_assert(mix, return -ENODEV);
311 change = mix->master_switch[0] != ucontrol->value.integer.value[0] ||
312 mix->master_switch[1] != ucontrol->value.integer.value[1];
313 if (change) {
314 mix->master_switch[0] = !!ucontrol->value.integer.value[0];
315 mix->master_switch[1] = !!ucontrol->value.integer.value[1];
316 tumbler_set_master_volume(mix);
317 }
318 return change;
319}
320
321
322/*
323 * TAS3001c dynamic range compression
324 */
325
326#define TAS3001_DRC_MAX 0x5f
327
Takashi Iwai65b29f52005-11-17 15:09:46 +0100328static int tumbler_set_drc(struct pmac_tumbler *mix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 unsigned char val[2];
331
332 if (! mix->i2c.client)
333 return -ENODEV;
334
335 if (mix->drc_enable) {
336 val[0] = 0xc1; /* enable, 3:1 compression */
337 if (mix->drc_range > TAS3001_DRC_MAX)
338 val[1] = 0xf0;
339 else if (mix->drc_range < 0)
340 val[1] = 0x91;
341 else
342 val[1] = mix->drc_range + 0x91;
343 } else {
344 val[0] = 0;
345 val[1] = 0;
346 }
347
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100348 if (i2c_smbus_write_i2c_block_data(mix->i2c.client, TAS_REG_DRC,
349 2, val) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 snd_printk("failed to set DRC\n");
351 return -EINVAL;
352 }
353 return 0;
354}
355
356/*
357 * TAS3004
358 */
359
360#define TAS3004_DRC_MAX 0xef
361
Takashi Iwai65b29f52005-11-17 15:09:46 +0100362static int snapper_set_drc(struct pmac_tumbler *mix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 unsigned char val[6];
365
366 if (! mix->i2c.client)
367 return -ENODEV;
368
369 if (mix->drc_enable)
370 val[0] = 0x50; /* 3:1 above threshold */
371 else
372 val[0] = 0x51; /* disabled */
373 val[1] = 0x02; /* 1:1 below threshold */
374 if (mix->drc_range > 0xef)
375 val[2] = 0xef;
376 else if (mix->drc_range < 0)
377 val[2] = 0x00;
378 else
379 val[2] = mix->drc_range;
380 val[3] = 0xb0;
381 val[4] = 0x60;
382 val[5] = 0xa0;
383
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100384 if (i2c_smbus_write_i2c_block_data(mix->i2c.client, TAS_REG_DRC,
385 6, val) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 snd_printk("failed to set DRC\n");
387 return -EINVAL;
388 }
389 return 0;
390}
391
Takashi Iwai65b29f52005-11-17 15:09:46 +0100392static int tumbler_info_drc_value(struct snd_kcontrol *kcontrol,
393 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100395 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
397 uinfo->count = 1;
398 uinfo->value.integer.min = 0;
399 uinfo->value.integer.max =
400 chip->model == PMAC_TUMBLER ? TAS3001_DRC_MAX : TAS3004_DRC_MAX;
401 return 0;
402}
403
Takashi Iwai65b29f52005-11-17 15:09:46 +0100404static int tumbler_get_drc_value(struct snd_kcontrol *kcontrol,
405 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100407 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
408 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (! (mix = chip->mixer_data))
410 return -ENODEV;
411 ucontrol->value.integer.value[0] = mix->drc_range;
412 return 0;
413}
414
Takashi Iwai65b29f52005-11-17 15:09:46 +0100415static int tumbler_put_drc_value(struct snd_kcontrol *kcontrol,
416 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100418 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
419 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int change;
421
422 if (! (mix = chip->mixer_data))
423 return -ENODEV;
424 change = mix->drc_range != ucontrol->value.integer.value[0];
425 if (change) {
426 mix->drc_range = ucontrol->value.integer.value[0];
427 if (chip->model == PMAC_TUMBLER)
428 tumbler_set_drc(mix);
429 else
430 snapper_set_drc(mix);
431 }
432 return change;
433}
434
Takashi Iwai65b29f52005-11-17 15:09:46 +0100435static int tumbler_get_drc_switch(struct snd_kcontrol *kcontrol,
436 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100438 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
439 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (! (mix = chip->mixer_data))
441 return -ENODEV;
442 ucontrol->value.integer.value[0] = mix->drc_enable;
443 return 0;
444}
445
Takashi Iwai65b29f52005-11-17 15:09:46 +0100446static int tumbler_put_drc_switch(struct snd_kcontrol *kcontrol,
447 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100449 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
450 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 int change;
452
453 if (! (mix = chip->mixer_data))
454 return -ENODEV;
455 change = mix->drc_enable != ucontrol->value.integer.value[0];
456 if (change) {
457 mix->drc_enable = !!ucontrol->value.integer.value[0];
458 if (chip->model == PMAC_TUMBLER)
459 tumbler_set_drc(mix);
460 else
461 snapper_set_drc(mix);
462 }
463 return change;
464}
465
466
467/*
468 * mono volumes
469 */
470
471struct tumbler_mono_vol {
472 int index;
473 int reg;
474 int bytes;
475 unsigned int max;
476 unsigned int *table;
477};
478
Takashi Iwai65b29f52005-11-17 15:09:46 +0100479static int tumbler_set_mono_volume(struct pmac_tumbler *mix,
480 struct tumbler_mono_vol *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 unsigned char block[4];
483 unsigned int vol;
484 int i;
485
486 if (! mix->i2c.client)
487 return -ENODEV;
488
489 vol = mix->mono_vol[info->index];
490 if (vol >= info->max)
491 vol = info->max - 1;
492 vol = info->table[vol];
493 for (i = 0; i < info->bytes; i++)
494 block[i] = (vol >> ((info->bytes - i - 1) * 8)) & 0xff;
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100495 if (i2c_smbus_write_i2c_block_data(mix->i2c.client, info->reg,
496 info->bytes, block) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 snd_printk("failed to set mono volume %d\n", info->index);
498 return -EINVAL;
499 }
500 return 0;
501}
502
Takashi Iwai65b29f52005-11-17 15:09:46 +0100503static int tumbler_info_mono(struct snd_kcontrol *kcontrol,
504 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct tumbler_mono_vol *info = (struct tumbler_mono_vol *)kcontrol->private_value;
507
508 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
509 uinfo->count = 1;
510 uinfo->value.integer.min = 0;
511 uinfo->value.integer.max = info->max - 1;
512 return 0;
513}
514
Takashi Iwai65b29f52005-11-17 15:09:46 +0100515static int tumbler_get_mono(struct snd_kcontrol *kcontrol,
516 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 struct tumbler_mono_vol *info = (struct tumbler_mono_vol *)kcontrol->private_value;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100519 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
520 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (! (mix = chip->mixer_data))
522 return -ENODEV;
523 ucontrol->value.integer.value[0] = mix->mono_vol[info->index];
524 return 0;
525}
526
Takashi Iwai65b29f52005-11-17 15:09:46 +0100527static int tumbler_put_mono(struct snd_kcontrol *kcontrol,
528 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 struct tumbler_mono_vol *info = (struct tumbler_mono_vol *)kcontrol->private_value;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100531 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
532 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int change;
534
535 if (! (mix = chip->mixer_data))
536 return -ENODEV;
537 change = mix->mono_vol[info->index] != ucontrol->value.integer.value[0];
538 if (change) {
539 mix->mono_vol[info->index] = ucontrol->value.integer.value[0];
540 tumbler_set_mono_volume(mix, info);
541 }
542 return change;
543}
544
545/* TAS3001c mono volumes */
546static struct tumbler_mono_vol tumbler_pcm_vol_info = {
547 .index = VOL_IDX_PCM_MONO,
548 .reg = TAS_REG_PCM,
549 .bytes = 3,
550 .max = ARRAY_SIZE(mixer_volume_table),
551 .table = mixer_volume_table,
552};
553
554static struct tumbler_mono_vol tumbler_bass_vol_info = {
555 .index = VOL_IDX_BASS,
556 .reg = TAS_REG_BASS,
557 .bytes = 1,
558 .max = ARRAY_SIZE(bass_volume_table),
559 .table = bass_volume_table,
560};
561
562static struct tumbler_mono_vol tumbler_treble_vol_info = {
563 .index = VOL_IDX_TREBLE,
564 .reg = TAS_REG_TREBLE,
565 .bytes = 1,
566 .max = ARRAY_SIZE(treble_volume_table),
567 .table = treble_volume_table,
568};
569
570/* TAS3004 mono volumes */
571static struct tumbler_mono_vol snapper_bass_vol_info = {
572 .index = VOL_IDX_BASS,
573 .reg = TAS_REG_BASS,
574 .bytes = 1,
575 .max = ARRAY_SIZE(snapper_bass_volume_table),
576 .table = snapper_bass_volume_table,
577};
578
579static struct tumbler_mono_vol snapper_treble_vol_info = {
580 .index = VOL_IDX_TREBLE,
581 .reg = TAS_REG_TREBLE,
582 .bytes = 1,
583 .max = ARRAY_SIZE(snapper_treble_volume_table),
584 .table = snapper_treble_volume_table,
585};
586
587
588#define DEFINE_MONO(xname,type) { \
589 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\
590 .name = xname, \
591 .info = tumbler_info_mono, \
592 .get = tumbler_get_mono, \
593 .put = tumbler_put_mono, \
594 .private_value = (unsigned long)(&tumbler_##type##_vol_info), \
595}
596
597#define DEFINE_SNAPPER_MONO(xname,type) { \
598 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\
599 .name = xname, \
600 .info = tumbler_info_mono, \
601 .get = tumbler_get_mono, \
602 .put = tumbler_put_mono, \
603 .private_value = (unsigned long)(&snapper_##type##_vol_info), \
604}
605
606
607/*
608 * snapper mixer volumes
609 */
610
Takashi Iwai65b29f52005-11-17 15:09:46 +0100611static int snapper_set_mix_vol1(struct pmac_tumbler *mix, int idx, int ch, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 int i, j, vol;
614 unsigned char block[9];
615
616 vol = mix->mix_vol[idx][ch];
617 if (vol >= ARRAY_SIZE(mixer_volume_table)) {
618 vol = ARRAY_SIZE(mixer_volume_table) - 1;
619 mix->mix_vol[idx][ch] = vol;
620 }
621
622 for (i = 0; i < 3; i++) {
623 vol = mix->mix_vol[i][ch];
624 vol = mixer_volume_table[vol];
625 for (j = 0; j < 3; j++)
626 block[i * 3 + j] = (vol >> ((2 - j) * 8)) & 0xff;
627 }
Benjamin Herrenschmidt367636e2006-02-08 15:04:18 +1100628 if (i2c_smbus_write_i2c_block_data(mix->i2c.client, reg,
629 9, block) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 snd_printk("failed to set mono volume %d\n", reg);
631 return -EINVAL;
632 }
633 return 0;
634}
635
Takashi Iwai65b29f52005-11-17 15:09:46 +0100636static int snapper_set_mix_vol(struct pmac_tumbler *mix, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 if (! mix->i2c.client)
639 return -ENODEV;
640 if (snapper_set_mix_vol1(mix, idx, 0, TAS_REG_LMIX) < 0 ||
641 snapper_set_mix_vol1(mix, idx, 1, TAS_REG_RMIX) < 0)
642 return -EINVAL;
643 return 0;
644}
645
Takashi Iwai65b29f52005-11-17 15:09:46 +0100646static int snapper_info_mix(struct snd_kcontrol *kcontrol,
647 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
650 uinfo->count = 2;
651 uinfo->value.integer.min = 0;
652 uinfo->value.integer.max = ARRAY_SIZE(mixer_volume_table) - 1;
653 return 0;
654}
655
Takashi Iwai65b29f52005-11-17 15:09:46 +0100656static int snapper_get_mix(struct snd_kcontrol *kcontrol,
657 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 int idx = (int)kcontrol->private_value;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100660 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
661 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (! (mix = chip->mixer_data))
663 return -ENODEV;
664 ucontrol->value.integer.value[0] = mix->mix_vol[idx][0];
665 ucontrol->value.integer.value[1] = mix->mix_vol[idx][1];
666 return 0;
667}
668
Takashi Iwai65b29f52005-11-17 15:09:46 +0100669static int snapper_put_mix(struct snd_kcontrol *kcontrol,
670 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 int idx = (int)kcontrol->private_value;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100673 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
674 struct pmac_tumbler *mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int change;
676
677 if (! (mix = chip->mixer_data))
678 return -ENODEV;
679 change = mix->mix_vol[idx][0] != ucontrol->value.integer.value[0] ||
680 mix->mix_vol[idx][1] != ucontrol->value.integer.value[1];
681 if (change) {
682 mix->mix_vol[idx][0] = ucontrol->value.integer.value[0];
683 mix->mix_vol[idx][1] = ucontrol->value.integer.value[1];
684 snapper_set_mix_vol(mix, idx);
685 }
686 return change;
687}
688
689
690/*
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700691 * mute switches. FIXME: Turn that into software mute when both outputs are muted
692 * to avoid codec reset on ibook M7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
694
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700695enum { TUMBLER_MUTE_HP, TUMBLER_MUTE_AMP, TUMBLER_MUTE_LINE };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Takashi Iwai65b29f52005-11-17 15:09:46 +0100697static int tumbler_get_mute_switch(struct snd_kcontrol *kcontrol,
698 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100700 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
701 struct pmac_tumbler *mix;
702 struct pmac_gpio *gp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (! (mix = chip->mixer_data))
704 return -ENODEV;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700705 switch(kcontrol->private_value) {
706 case TUMBLER_MUTE_HP:
707 gp = &mix->hp_mute; break;
708 case TUMBLER_MUTE_AMP:
709 gp = &mix->amp_mute; break;
710 case TUMBLER_MUTE_LINE:
711 gp = &mix->line_mute; break;
712 default:
713 gp = NULL;
714 }
715 if (gp == NULL)
716 return -EINVAL;
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700717 ucontrol->value.integer.value[0] = !check_audio_gpio(gp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719}
720
Takashi Iwai65b29f52005-11-17 15:09:46 +0100721static int tumbler_put_mute_switch(struct snd_kcontrol *kcontrol,
722 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100724 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
725 struct pmac_tumbler *mix;
726 struct pmac_gpio *gp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 int val;
728#ifdef PMAC_SUPPORT_AUTOMUTE
729 if (chip->update_automute && chip->auto_mute)
730 return 0; /* don't touch in the auto-mute mode */
731#endif
732 if (! (mix = chip->mixer_data))
733 return -ENODEV;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700734 switch(kcontrol->private_value) {
735 case TUMBLER_MUTE_HP:
736 gp = &mix->hp_mute; break;
737 case TUMBLER_MUTE_AMP:
738 gp = &mix->amp_mute; break;
739 case TUMBLER_MUTE_LINE:
740 gp = &mix->line_mute; break;
741 default:
742 gp = NULL;
743 }
744 if (gp == NULL)
745 return -EINVAL;
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700746 val = ! check_audio_gpio(gp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (val != ucontrol->value.integer.value[0]) {
748 write_audio_gpio(gp, ! ucontrol->value.integer.value[0]);
749 return 1;
750 }
751 return 0;
752}
753
Takashi Iwai65b29f52005-11-17 15:09:46 +0100754static int snapper_set_capture_source(struct pmac_tumbler *mix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 if (! mix->i2c.client)
757 return -ENODEV;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700758 if (mix->capture_source)
759 mix->acs = mix->acs |= 2;
760 else
761 mix->acs &= ~2;
762 return i2c_smbus_write_byte_data(mix->i2c.client, TAS_REG_ACS, mix->acs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Takashi Iwai65b29f52005-11-17 15:09:46 +0100765static int snapper_info_capture_source(struct snd_kcontrol *kcontrol,
766 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 static char *texts[2] = {
769 "Line", "Mic"
770 };
771 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
772 uinfo->count = 1;
773 uinfo->value.enumerated.items = 2;
774 if (uinfo->value.enumerated.item > 1)
775 uinfo->value.enumerated.item = 1;
776 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
777 return 0;
778}
779
Takashi Iwai65b29f52005-11-17 15:09:46 +0100780static int snapper_get_capture_source(struct snd_kcontrol *kcontrol,
781 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100783 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
784 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 snd_assert(mix, return -ENODEV);
787 ucontrol->value.integer.value[0] = mix->capture_source;
788 return 0;
789}
790
Takashi Iwai65b29f52005-11-17 15:09:46 +0100791static int snapper_put_capture_source(struct snd_kcontrol *kcontrol,
792 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100794 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
795 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int change;
797
798 snd_assert(mix, return -ENODEV);
799 change = ucontrol->value.integer.value[0] != mix->capture_source;
800 if (change) {
801 mix->capture_source = !!ucontrol->value.integer.value[0];
802 snapper_set_capture_source(mix);
803 }
804 return change;
805}
806
807#define DEFINE_SNAPPER_MIX(xname,idx,ofs) { \
808 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\
809 .name = xname, \
810 .info = snapper_info_mix, \
811 .get = snapper_get_mix, \
812 .put = snapper_put_mix, \
813 .index = idx,\
814 .private_value = ofs, \
815}
816
817
818/*
819 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100820static struct snd_kcontrol_new tumbler_mixers[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
822 .name = "Master Playback Volume",
823 .info = tumbler_info_master_volume,
824 .get = tumbler_get_master_volume,
825 .put = tumbler_put_master_volume
826 },
827 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
828 .name = "Master Playback Switch",
829 .info = snd_pmac_boolean_stereo_info,
830 .get = tumbler_get_master_switch,
831 .put = tumbler_put_master_switch
832 },
833 DEFINE_MONO("Tone Control - Bass", bass),
834 DEFINE_MONO("Tone Control - Treble", treble),
835 DEFINE_MONO("PCM Playback Volume", pcm),
836 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
837 .name = "DRC Range",
838 .info = tumbler_info_drc_value,
839 .get = tumbler_get_drc_value,
840 .put = tumbler_put_drc_value
841 },
842};
843
Takashi Iwai65b29f52005-11-17 15:09:46 +0100844static struct snd_kcontrol_new snapper_mixers[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
846 .name = "Master Playback Volume",
847 .info = tumbler_info_master_volume,
848 .get = tumbler_get_master_volume,
849 .put = tumbler_put_master_volume
850 },
851 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
852 .name = "Master Playback Switch",
853 .info = snd_pmac_boolean_stereo_info,
854 .get = tumbler_get_master_switch,
855 .put = tumbler_put_master_switch
856 },
857 DEFINE_SNAPPER_MIX("PCM Playback Volume", 0, VOL_IDX_PCM),
858 DEFINE_SNAPPER_MIX("PCM Playback Volume", 1, VOL_IDX_PCM2),
859 DEFINE_SNAPPER_MIX("Monitor Mix Volume", 0, VOL_IDX_ADC),
860 DEFINE_SNAPPER_MONO("Tone Control - Bass", bass),
861 DEFINE_SNAPPER_MONO("Tone Control - Treble", treble),
862 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
863 .name = "DRC Range",
864 .info = tumbler_info_drc_value,
865 .get = tumbler_get_drc_value,
866 .put = tumbler_put_drc_value
867 },
868 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
869 .name = "Input Source", /* FIXME: "Capture Source" doesn't work properly */
870 .info = snapper_info_capture_source,
871 .get = snapper_get_capture_source,
872 .put = snapper_put_capture_source
873 },
874};
875
Takashi Iwai65b29f52005-11-17 15:09:46 +0100876static struct snd_kcontrol_new tumbler_hp_sw __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
878 .name = "Headphone Playback Switch",
879 .info = snd_pmac_boolean_mono_info,
880 .get = tumbler_get_mute_switch,
881 .put = tumbler_put_mute_switch,
882 .private_value = TUMBLER_MUTE_HP,
883};
Takashi Iwai65b29f52005-11-17 15:09:46 +0100884static struct snd_kcontrol_new tumbler_speaker_sw __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
886 .name = "PC Speaker Playback Switch",
887 .info = snd_pmac_boolean_mono_info,
888 .get = tumbler_get_mute_switch,
889 .put = tumbler_put_mute_switch,
890 .private_value = TUMBLER_MUTE_AMP,
891};
Takashi Iwai65b29f52005-11-17 15:09:46 +0100892static struct snd_kcontrol_new tumbler_lineout_sw __initdata = {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700893 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
894 .name = "Line Out Playback Switch",
895 .info = snd_pmac_boolean_mono_info,
896 .get = tumbler_get_mute_switch,
897 .put = tumbler_put_mute_switch,
898 .private_value = TUMBLER_MUTE_LINE,
899};
Takashi Iwai65b29f52005-11-17 15:09:46 +0100900static struct snd_kcontrol_new tumbler_drc_sw __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
902 .name = "DRC Switch",
903 .info = snd_pmac_boolean_mono_info,
904 .get = tumbler_get_drc_switch,
905 .put = tumbler_put_drc_switch
906};
907
908
909#ifdef PMAC_SUPPORT_AUTOMUTE
910/*
911 * auto-mute stuffs
912 */
Takashi Iwai65b29f52005-11-17 15:09:46 +0100913static int tumbler_detect_headphone(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100915 struct pmac_tumbler *mix = chip->mixer_data;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700916 int detect = 0;
917
918 if (mix->hp_detect.addr)
919 detect |= read_audio_gpio(&mix->hp_detect);
920 return detect;
921}
922
Takashi Iwai65b29f52005-11-17 15:09:46 +0100923static int tumbler_detect_lineout(struct snd_pmac *chip)
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700924{
Takashi Iwai65b29f52005-11-17 15:09:46 +0100925 struct pmac_tumbler *mix = chip->mixer_data;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700926 int detect = 0;
927
928 if (mix->line_detect.addr)
929 detect |= read_audio_gpio(&mix->line_detect);
930 return detect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931}
932
Takashi Iwai65b29f52005-11-17 15:09:46 +0100933static void check_mute(struct snd_pmac *chip, struct pmac_gpio *gp, int val, int do_notify,
934 struct snd_kcontrol *sw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700936 if (check_audio_gpio(gp) != val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 write_audio_gpio(gp, val);
938 if (do_notify)
Benjamin Herrenschmidt4be8dc72005-05-01 08:58:43 -0700939 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
940 &sw->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942}
943
944static struct work_struct device_change;
David Howellsc4028952006-11-22 14:57:56 +0000945static struct snd_pmac *device_change_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
David Howellsc4028952006-11-22 14:57:56 +0000947static void device_change_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
David Howellsc4028952006-11-22 14:57:56 +0000949 struct snd_pmac *chip = device_change_chip;
Takashi Iwai65b29f52005-11-17 15:09:46 +0100950 struct pmac_tumbler *mix;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700951 int headphone, lineout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 if (!chip)
954 return;
955
956 mix = chip->mixer_data;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700957 snd_assert(mix, return);
958
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700959 headphone = tumbler_detect_headphone(chip);
960 lineout = tumbler_detect_lineout(chip);
961
962 DBG("headphone: %d, lineout: %d\n", headphone, lineout);
963
964 if (headphone || lineout) {
965 /* unmute headphone/lineout & mute speaker */
966 if (headphone)
967 check_mute(chip, &mix->hp_mute, 0, mix->auto_mute_notify,
968 chip->master_sw_ctl);
969 if (lineout && mix->line_mute.addr != 0)
970 check_mute(chip, &mix->line_mute, 0, mix->auto_mute_notify,
971 chip->lineout_sw_ctl);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700972 if (mix->anded_reset)
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +0200973 msleep(10);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700974 check_mute(chip, &mix->amp_mute, 1, mix->auto_mute_notify,
975 chip->speaker_sw_ctl);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700976 } else {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700977 /* unmute speaker, mute others */
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700978 check_mute(chip, &mix->amp_mute, 0, mix->auto_mute_notify,
979 chip->speaker_sw_ctl);
980 if (mix->anded_reset)
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +0200981 msleep(10);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700982 check_mute(chip, &mix->hp_mute, 1, mix->auto_mute_notify,
983 chip->master_sw_ctl);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -0700984 if (mix->line_mute.addr != 0)
985 check_mute(chip, &mix->line_mute, 1, mix->auto_mute_notify,
986 chip->lineout_sw_ctl);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700987 }
Takashi Iwaif3283852005-09-07 17:08:40 +0200988 if (mix->auto_mute_notify)
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700989 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
990 &chip->hp_detect_ctl->id);
Takashi Iwaif3283852005-09-07 17:08:40 +0200991
992#ifdef CONFIG_SND_POWERMAC_AUTO_DRC
993 mix->drc_enable = ! (headphone || lineout);
994 if (mix->auto_mute_notify)
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -0700995 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
996 &chip->drc_sw_ctl->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (chip->model == PMAC_TUMBLER)
998 tumbler_set_drc(mix);
999 else
1000 snapper_set_drc(mix);
Takashi Iwaif3283852005-09-07 17:08:40 +02001001#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /* reset the master volume so the correct amplification is applied */
1004 tumbler_set_master_volume(mix);
1005}
1006
Takashi Iwai65b29f52005-11-17 15:09:46 +01001007static void tumbler_update_automute(struct snd_pmac *chip, int do_notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 if (chip->auto_mute) {
Takashi Iwai65b29f52005-11-17 15:09:46 +01001010 struct pmac_tumbler *mix;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001011 mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 snd_assert(mix, return);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001013 mix->auto_mute_notify = do_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 schedule_work(&device_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016}
1017#endif /* PMAC_SUPPORT_AUTOMUTE */
1018
1019
1020/* interrupt - headphone plug changed */
David Howells7d12e782006-10-05 14:55:46 +01001021static irqreturn_t headphone_intr(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001023 struct snd_pmac *chip = devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (chip->update_automute && chip->initialized) {
1025 chip->update_automute(chip, 1);
1026 return IRQ_HANDLED;
1027 }
1028 return IRQ_NONE;
1029}
1030
1031/* look for audio-gpio device */
1032static struct device_node *find_audio_device(const char *name)
1033{
1034 struct device_node *np;
1035
1036 if (! (np = find_devices("gpio")))
1037 return NULL;
1038
1039 for (np = np->child; np; np = np->sibling) {
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001040 const char *property = of_get_property(np, "audio-gpio", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (property && strcmp(property, name) == 0)
1042 return np;
1043 }
1044 return NULL;
1045}
1046
1047/* look for audio-gpio device */
1048static struct device_node *find_compatible_audio_device(const char *name)
1049{
1050 struct device_node *np;
1051
1052 if (! (np = find_devices("gpio")))
1053 return NULL;
1054
1055 for (np = np->child; np; np = np->sibling) {
1056 if (device_is_compatible(np, name))
1057 return np;
1058 }
1059 return NULL;
1060}
1061
1062/* find an audio device and get its address */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001063static long tumbler_find_device(const char *device, const char *platform,
1064 struct pmac_gpio *gp, int is_compatible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct device_node *node;
Jeremy Kerrabddd182006-07-12 15:41:18 +10001067 const u32 *base;
1068 u32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (is_compatible)
1071 node = find_compatible_audio_device(device);
1072 else
1073 node = find_audio_device(device);
1074 if (! node) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001075 DBG("(W) cannot find audio device %s !\n", device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 snd_printdd("cannot find device %s\n", device);
1077 return -ENODEV;
1078 }
1079
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001080 base = of_get_property(node, "AAPL,address", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (! base) {
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001082 base = of_get_property(node, "reg", NULL);
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001083 if (!base) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001084 DBG("(E) cannot find address for device %s !\n", device);
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001085 snd_printd("cannot find address for device %s\n", device);
1086 return -ENODEV;
1087 }
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001088 addr = *base;
1089 if (addr < 0x50)
1090 addr += 0x50;
1091 } else
1092 addr = *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001094 gp->addr = addr & 0x0000ffff;
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001095 /* Try to find the active state, default to 0 ! */
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001096 base = of_get_property(node, "audio-gpio-active-state", NULL);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001097 if (base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 gp->active_state = *base;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001099 gp->active_val = (*base) ? 0x5 : 0x4;
1100 gp->inactive_val = (*base) ? 0x4 : 0x5;
1101 } else {
Jeremy Kerrabddd182006-07-12 15:41:18 +10001102 const u32 *prop = NULL;
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001103 gp->active_state = 0;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001104 gp->active_val = 0x4;
1105 gp->inactive_val = 0x5;
1106 /* Here are some crude hacks to extract the GPIO polarity and
1107 * open collector informations out of the do-platform script
1108 * as we don't yet have an interpreter for these things
1109 */
1110 if (platform)
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001111 prop = of_get_property(node, platform, NULL);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001112 if (prop) {
1113 if (prop[3] == 0x9 && prop[4] == 0x9) {
1114 gp->active_val = 0xd;
1115 gp->inactive_val = 0xc;
1116 }
1117 if (prop[3] == 0x1 && prop[4] == 0x1) {
1118 gp->active_val = 0x5;
1119 gp->inactive_val = 0x4;
1120 }
1121 }
1122 }
1123
1124 DBG("(I) GPIO device %s found, offset: %x, active state: %d !\n",
1125 device, gp->addr, gp->active_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001127 return irq_of_parse_and_map(node, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/* reset audio */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001131static void tumbler_reset_audio(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001133 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001135 if (mix->anded_reset) {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001136 DBG("(I) codec anded reset !\n");
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001137 write_audio_gpio(&mix->hp_mute, 0);
1138 write_audio_gpio(&mix->amp_mute, 0);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001139 msleep(200);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001140 write_audio_gpio(&mix->hp_mute, 1);
1141 write_audio_gpio(&mix->amp_mute, 1);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001142 msleep(100);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001143 write_audio_gpio(&mix->hp_mute, 0);
1144 write_audio_gpio(&mix->amp_mute, 0);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001145 msleep(100);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001146 } else {
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001147 DBG("(I) codec normal reset !\n");
1148
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001149 write_audio_gpio(&mix->audio_reset, 0);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001150 msleep(200);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001151 write_audio_gpio(&mix->audio_reset, 1);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001152 msleep(100);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001153 write_audio_gpio(&mix->audio_reset, 0);
Nishanth Aravamudan989a0b22005-07-09 10:53:24 +02001154 msleep(100);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001158#ifdef CONFIG_PM
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001159/* suspend mixer */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001160static void tumbler_suspend(struct snd_pmac *chip)
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001161{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001162 struct pmac_tumbler *mix = chip->mixer_data;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001163
1164 if (mix->headphone_irq >= 0)
1165 disable_irq(mix->headphone_irq);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001166 if (mix->lineout_irq >= 0)
1167 disable_irq(mix->lineout_irq);
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001168 mix->save_master_switch[0] = mix->master_switch[0];
1169 mix->save_master_switch[1] = mix->master_switch[1];
Colin Leroy085e6fc2005-05-01 08:58:43 -07001170 mix->save_master_vol[0] = mix->master_vol[0];
1171 mix->save_master_vol[1] = mix->master_vol[1];
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001172 mix->master_switch[0] = mix->master_switch[1] = 0;
1173 tumbler_set_master_volume(mix);
1174 if (!mix->anded_reset) {
1175 write_audio_gpio(&mix->amp_mute, 1);
1176 write_audio_gpio(&mix->hp_mute, 1);
1177 }
1178 if (chip->model == PMAC_SNAPPER) {
1179 mix->acs |= 1;
1180 i2c_smbus_write_byte_data(mix->i2c.client, TAS_REG_ACS, mix->acs);
1181 }
1182 if (mix->anded_reset) {
1183 write_audio_gpio(&mix->amp_mute, 1);
1184 write_audio_gpio(&mix->hp_mute, 1);
1185 } else
1186 write_audio_gpio(&mix->audio_reset, 1);
1187}
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189/* resume mixer */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001190static void tumbler_resume(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001192 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 snd_assert(mix, return);
1195
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001196 mix->acs &= ~1;
1197 mix->master_switch[0] = mix->save_master_switch[0];
1198 mix->master_switch[1] = mix->save_master_switch[1];
Colin Leroy085e6fc2005-05-01 08:58:43 -07001199 mix->master_vol[0] = mix->save_master_vol[0];
1200 mix->master_vol[1] = mix->save_master_vol[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 tumbler_reset_audio(chip);
1202 if (mix->i2c.client && mix->i2c.init_client) {
1203 if (mix->i2c.init_client(&mix->i2c) < 0)
1204 printk(KERN_ERR "tumbler_init_client error\n");
1205 } else
1206 printk(KERN_ERR "tumbler: i2c is not initialized\n");
1207 if (chip->model == PMAC_TUMBLER) {
1208 tumbler_set_mono_volume(mix, &tumbler_pcm_vol_info);
1209 tumbler_set_mono_volume(mix, &tumbler_bass_vol_info);
1210 tumbler_set_mono_volume(mix, &tumbler_treble_vol_info);
1211 tumbler_set_drc(mix);
1212 } else {
1213 snapper_set_mix_vol(mix, VOL_IDX_PCM);
1214 snapper_set_mix_vol(mix, VOL_IDX_PCM2);
1215 snapper_set_mix_vol(mix, VOL_IDX_ADC);
1216 tumbler_set_mono_volume(mix, &snapper_bass_vol_info);
1217 tumbler_set_mono_volume(mix, &snapper_treble_vol_info);
1218 snapper_set_drc(mix);
1219 snapper_set_capture_source(mix);
1220 }
1221 tumbler_set_master_volume(mix);
1222 if (chip->update_automute)
1223 chip->update_automute(chip, 0);
Guido Guentherc0ce5c52005-11-15 17:28:05 +11001224 if (mix->headphone_irq >= 0) {
1225 unsigned char val;
1226
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001227 enable_irq(mix->headphone_irq);
Guido Guentherc0ce5c52005-11-15 17:28:05 +11001228 /* activate headphone status interrupts */
1229 val = do_gpio_read(&mix->hp_detect);
1230 do_gpio_write(&mix->hp_detect, val | 0x80);
1231 }
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001232 if (mix->lineout_irq >= 0)
1233 enable_irq(mix->lineout_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235#endif
1236
1237/* initialize tumbler */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001238static int __init tumbler_init(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001240 int irq;
Takashi Iwai65b29f52005-11-17 15:09:46 +01001241 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 snd_assert(mix, return -EINVAL);
1243
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001244 if (tumbler_find_device("audio-hw-reset",
1245 "platform-do-hw-reset",
1246 &mix->audio_reset, 0) < 0)
1247 tumbler_find_device("hw-reset",
1248 "platform-do-hw-reset",
1249 &mix->audio_reset, 1);
1250 if (tumbler_find_device("amp-mute",
1251 "platform-do-amp-mute",
1252 &mix->amp_mute, 0) < 0)
1253 tumbler_find_device("amp-mute",
1254 "platform-do-amp-mute",
1255 &mix->amp_mute, 1);
1256 if (tumbler_find_device("headphone-mute",
1257 "platform-do-headphone-mute",
1258 &mix->hp_mute, 0) < 0)
1259 tumbler_find_device("headphone-mute",
1260 "platform-do-headphone-mute",
1261 &mix->hp_mute, 1);
1262 if (tumbler_find_device("line-output-mute",
1263 "platform-do-lineout-mute",
1264 &mix->line_mute, 0) < 0)
1265 tumbler_find_device("line-output-mute",
1266 "platform-do-lineout-mute",
1267 &mix->line_mute, 1);
1268 irq = tumbler_find_device("headphone-detect",
1269 NULL, &mix->hp_detect, 0);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001270 if (irq <= NO_IRQ)
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001271 irq = tumbler_find_device("headphone-detect",
1272 NULL, &mix->hp_detect, 1);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001273 if (irq <= NO_IRQ)
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001274 irq = tumbler_find_device("keywest-gpio15",
1275 NULL, &mix->hp_detect, 1);
1276 mix->headphone_irq = irq;
1277 irq = tumbler_find_device("line-output-detect",
1278 NULL, &mix->line_detect, 0);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001279 if (irq <= NO_IRQ)
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001280 irq = tumbler_find_device("line-output-detect",
1281 NULL, &mix->line_detect, 1);
1282 mix->lineout_irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 tumbler_reset_audio(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 return 0;
1287}
1288
Takashi Iwai65b29f52005-11-17 15:09:46 +01001289static void tumbler_cleanup(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Takashi Iwai65b29f52005-11-17 15:09:46 +01001291 struct pmac_tumbler *mix = chip->mixer_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (! mix)
1293 return;
1294
1295 if (mix->headphone_irq >= 0)
1296 free_irq(mix->headphone_irq, chip);
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001297 if (mix->lineout_irq >= 0)
1298 free_irq(mix->lineout_irq, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 tumbler_gpio_free(&mix->audio_reset);
1300 tumbler_gpio_free(&mix->amp_mute);
1301 tumbler_gpio_free(&mix->hp_mute);
1302 tumbler_gpio_free(&mix->hp_detect);
1303 snd_pmac_keywest_cleanup(&mix->i2c);
1304 kfree(mix);
1305 chip->mixer_data = NULL;
1306}
1307
1308/* exported */
Takashi Iwai65b29f52005-11-17 15:09:46 +01001309int __init snd_pmac_tumbler_init(struct snd_pmac *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 int i, err;
Takashi Iwai65b29f52005-11-17 15:09:46 +01001312 struct pmac_tumbler *mix;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001313 const u32 *paddr;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001314 struct device_node *tas_node, *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 char *chipname;
1316
1317#ifdef CONFIG_KMOD
1318 if (current->fs->root)
Benjamin Herrenschmidt4d6c5882006-04-21 15:04:22 +10001319 request_module("i2c-powermac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320#endif /* CONFIG_KMOD */
1321
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02001322 mix = kzalloc(sizeof(*mix), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (! mix)
1324 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 mix->headphone_irq = -1;
1326
1327 chip->mixer_data = mix;
1328 chip->mixer_free = tumbler_cleanup;
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001329 mix->anded_reset = 0;
1330 mix->reset_on_sleep = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001332 for (np = chip->node->child; np; np = np->sibling) {
1333 if (!strcmp(np->name, "sound")) {
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001334 if (of_get_property(np, "has-anded-reset", NULL))
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001335 mix->anded_reset = 1;
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001336 if (of_get_property(np, "layout-id", NULL))
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001337 mix->reset_on_sleep = 0;
1338 break;
1339 }
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if ((err = tumbler_init(chip)) < 0)
1342 return err;
1343
1344 /* set up TAS */
1345 tas_node = find_devices("deq");
1346 if (tas_node == NULL)
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001347 tas_node = find_devices("codec");
1348 if (tas_node == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return -ENODEV;
1350
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001351 paddr = of_get_property(tas_node, "i2c-address", NULL);
Benjamin Herrenschmidtb75550e2005-04-16 15:24:31 -07001352 if (paddr == NULL)
Stephen Rothwellc4f55b32007-04-03 22:39:14 +10001353 paddr = of_get_property(tas_node, "reg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (paddr)
1355 mix->i2c.addr = (*paddr) >> 1;
1356 else
1357 mix->i2c.addr = TAS_I2C_ADDR;
1358
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001359 DBG("(I) TAS i2c address is: %x\n", mix->i2c.addr);
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (chip->model == PMAC_TUMBLER) {
1362 mix->i2c.init_client = tumbler_init_client;
1363 mix->i2c.name = "TAS3001c";
1364 chipname = "Tumbler";
1365 } else {
1366 mix->i2c.init_client = snapper_init_client;
1367 mix->i2c.name = "TAS3004";
1368 chipname = "Snapper";
1369 }
1370
1371 if ((err = snd_pmac_keywest_init(&mix->i2c)) < 0)
1372 return err;
1373
1374 /*
1375 * build mixers
1376 */
1377 sprintf(chip->card->mixername, "PowerMac %s", chipname);
1378
1379 if (chip->model == PMAC_TUMBLER) {
1380 for (i = 0; i < ARRAY_SIZE(tumbler_mixers); i++) {
1381 if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&tumbler_mixers[i], chip))) < 0)
1382 return err;
1383 }
1384 } else {
1385 for (i = 0; i < ARRAY_SIZE(snapper_mixers); i++) {
1386 if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snapper_mixers[i], chip))) < 0)
1387 return err;
1388 }
1389 }
1390 chip->master_sw_ctl = snd_ctl_new1(&tumbler_hp_sw, chip);
1391 if ((err = snd_ctl_add(chip->card, chip->master_sw_ctl)) < 0)
1392 return err;
1393 chip->speaker_sw_ctl = snd_ctl_new1(&tumbler_speaker_sw, chip);
1394 if ((err = snd_ctl_add(chip->card, chip->speaker_sw_ctl)) < 0)
1395 return err;
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001396 if (mix->line_mute.addr != 0) {
1397 chip->lineout_sw_ctl = snd_ctl_new1(&tumbler_lineout_sw, chip);
1398 if ((err = snd_ctl_add(chip->card, chip->lineout_sw_ctl)) < 0)
1399 return err;
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 chip->drc_sw_ctl = snd_ctl_new1(&tumbler_drc_sw, chip);
1402 if ((err = snd_ctl_add(chip->card, chip->drc_sw_ctl)) < 0)
1403 return err;
1404
Takashi Iwaif3283852005-09-07 17:08:40 +02001405 /* set initial DRC range to 60% */
1406 if (chip->model == PMAC_TUMBLER)
1407 mix->drc_range = (TAS3001_DRC_MAX * 6) / 10;
1408 else
1409 mix->drc_range = (TAS3004_DRC_MAX * 6) / 10;
1410 mix->drc_enable = 1; /* will be changed later if AUTO_DRC is set */
1411 if (chip->model == PMAC_TUMBLER)
1412 tumbler_set_drc(mix);
1413 else
1414 snapper_set_drc(mix);
1415
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001416#ifdef CONFIG_PM
Benjamin Herrenschmidtb20af5f2005-04-16 15:24:32 -07001417 chip->suspend = tumbler_suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 chip->resume = tumbler_resume;
1419#endif
1420
David Howellsc4028952006-11-22 14:57:56 +00001421 INIT_WORK(&device_change, device_change_handler);
1422 device_change_chip = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424#ifdef PMAC_SUPPORT_AUTOMUTE
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001425 if ((mix->headphone_irq >=0 || mix->lineout_irq >= 0)
1426 && (err = snd_pmac_add_automute(chip)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return err;
1428 chip->detect_headphone = tumbler_detect_headphone;
1429 chip->update_automute = tumbler_update_automute;
1430 tumbler_update_automute(chip, 0); /* update the status only */
Benjamin Herrenschmidt7bbd8272005-04-16 15:24:32 -07001431
1432 /* activate headphone status interrupts */
1433 if (mix->headphone_irq >= 0) {
1434 unsigned char val;
1435 if ((err = request_irq(mix->headphone_irq, headphone_intr, 0,
1436 "Sound Headphone Detection", chip)) < 0)
1437 return 0;
1438 /* activate headphone status interrupts */
1439 val = do_gpio_read(&mix->hp_detect);
1440 do_gpio_write(&mix->hp_detect, val | 0x80);
1441 }
1442 if (mix->lineout_irq >= 0) {
1443 unsigned char val;
1444 if ((err = request_irq(mix->lineout_irq, headphone_intr, 0,
1445 "Sound Lineout Detection", chip)) < 0)
1446 return 0;
1447 /* activate headphone status interrupts */
1448 val = do_gpio_read(&mix->line_detect);
1449 do_gpio_write(&mix->line_detect, val | 0x80);
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451#endif
1452
1453 return 0;
1454}