2 * Apple Onboard Audio driver for Onyx codec
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * GPL v2, can be found in COPYING.
9 * This is a driver for the pcm3052 codec chip (codenamed Onyx)
10 * that is present in newer Apple hardware (with digital output).
12 * The Onyx codec has the following connections (listed by the bit
13 * to be used in aoa_codec.connected):
18 * Note that even though I know of no machine that has for example
19 * the digital output connected but not the analog, I have handled
20 * all the different cases in the code so that this driver may serve
21 * as a good example of what to do.
23 * NOTE: This driver assumes that there's at most one chip to be
24 * used with one alsa card, in form of creating all kinds
25 * of mixer elements without regard for their existence.
26 * But snd-aoa assumes that there's at most one card, so
27 * this means you can only have one onyx on a system. This
28 * should probably be fixed by changing the assumption of
29 * having just a single card on a system, and making the
30 * 'card' pointer accessible to anyone who needs it instead
31 * of hiding it in the aoa_snd_* functions...
34 #include <linux/delay.h>
35 #include <linux/module.h>
36 MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
37 MODULE_LICENSE("GPL");
38 MODULE_DESCRIPTION("pcm3052 (onyx) codec driver for snd-aoa");
40 #include "snd-aoa-codec-onyx.h"
42 #include "../soundbus/soundbus.h"
45 #define PFX "snd-aoa-codec-onyx: "
48 /* cache registers 65 to 80, they are write-only! */
50 struct i2c_client i2c
;
51 struct aoa_codec codec
;
57 struct codec_info
*codec_info
;
59 /* mutex serializes concurrent access to the device
64 #define codec_to_onyx(c) container_of(c, struct onyx, codec)
66 /* both return 0 if all ok, else on error */
67 static int onyx_read_register(struct onyx
*onyx
, u8 reg
, u8
*value
)
71 if (reg
!= ONYX_REG_CONTROL
) {
72 *value
= onyx
->cache
[reg
-FIRSTREGISTER
];
75 v
= i2c_smbus_read_byte_data(&onyx
->i2c
, reg
);
79 onyx
->cache
[ONYX_REG_CONTROL
-FIRSTREGISTER
] = *value
;
83 static int onyx_write_register(struct onyx
*onyx
, u8 reg
, u8 value
)
87 result
= i2c_smbus_write_byte_data(&onyx
->i2c
, reg
, value
);
89 onyx
->cache
[reg
-FIRSTREGISTER
] = value
;
95 static int onyx_dev_register(struct snd_device
*dev
)
100 static struct snd_device_ops ops
= {
101 .dev_register
= onyx_dev_register
,
104 /* this is necessary because most alsa mixer programs
105 * can't properly handle the negative range */
106 #define VOLUME_RANGE_SHIFT 128
108 static int onyx_snd_vol_info(struct snd_kcontrol
*kcontrol
,
109 struct snd_ctl_elem_info
*uinfo
)
111 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
113 uinfo
->value
.integer
.min
= -128 + VOLUME_RANGE_SHIFT
;
114 uinfo
->value
.integer
.max
= -1 + VOLUME_RANGE_SHIFT
;
118 static int onyx_snd_vol_get(struct snd_kcontrol
*kcontrol
,
119 struct snd_ctl_elem_value
*ucontrol
)
121 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
124 mutex_lock(&onyx
->mutex
);
125 onyx_read_register(onyx
, ONYX_REG_DAC_ATTEN_LEFT
, &l
);
126 onyx_read_register(onyx
, ONYX_REG_DAC_ATTEN_RIGHT
, &r
);
127 mutex_unlock(&onyx
->mutex
);
129 ucontrol
->value
.integer
.value
[0] = l
+ VOLUME_RANGE_SHIFT
;
130 ucontrol
->value
.integer
.value
[1] = r
+ VOLUME_RANGE_SHIFT
;
135 static int onyx_snd_vol_put(struct snd_kcontrol
*kcontrol
,
136 struct snd_ctl_elem_value
*ucontrol
)
138 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
141 mutex_lock(&onyx
->mutex
);
142 onyx_read_register(onyx
, ONYX_REG_DAC_ATTEN_LEFT
, &l
);
143 onyx_read_register(onyx
, ONYX_REG_DAC_ATTEN_RIGHT
, &r
);
145 if (l
+ VOLUME_RANGE_SHIFT
== ucontrol
->value
.integer
.value
[0] &&
146 r
+ VOLUME_RANGE_SHIFT
== ucontrol
->value
.integer
.value
[1]) {
147 mutex_unlock(&onyx
->mutex
);
151 onyx_write_register(onyx
, ONYX_REG_DAC_ATTEN_LEFT
,
152 ucontrol
->value
.integer
.value
[0]
153 - VOLUME_RANGE_SHIFT
);
154 onyx_write_register(onyx
, ONYX_REG_DAC_ATTEN_RIGHT
,
155 ucontrol
->value
.integer
.value
[1]
156 - VOLUME_RANGE_SHIFT
);
157 mutex_unlock(&onyx
->mutex
);
162 static struct snd_kcontrol_new volume_control
= {
163 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
164 .name
= "Master Playback Volume",
165 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
166 .info
= onyx_snd_vol_info
,
167 .get
= onyx_snd_vol_get
,
168 .put
= onyx_snd_vol_put
,
171 /* like above, this is necessary because a lot
172 * of alsa mixer programs don't handle ranges
173 * that don't start at 0 properly.
174 * even alsamixer is one of them... */
175 #define INPUTGAIN_RANGE_SHIFT (-3)
177 static int onyx_snd_inputgain_info(struct snd_kcontrol
*kcontrol
,
178 struct snd_ctl_elem_info
*uinfo
)
180 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
182 uinfo
->value
.integer
.min
= 3 + INPUTGAIN_RANGE_SHIFT
;
183 uinfo
->value
.integer
.max
= 28 + INPUTGAIN_RANGE_SHIFT
;
187 static int onyx_snd_inputgain_get(struct snd_kcontrol
*kcontrol
,
188 struct snd_ctl_elem_value
*ucontrol
)
190 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
193 mutex_lock(&onyx
->mutex
);
194 onyx_read_register(onyx
, ONYX_REG_ADC_CONTROL
, &ig
);
195 mutex_unlock(&onyx
->mutex
);
197 ucontrol
->value
.integer
.value
[0] =
198 (ig
& ONYX_ADC_PGA_GAIN_MASK
) + INPUTGAIN_RANGE_SHIFT
;
203 static int onyx_snd_inputgain_put(struct snd_kcontrol
*kcontrol
,
204 struct snd_ctl_elem_value
*ucontrol
)
206 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
209 mutex_lock(&onyx
->mutex
);
210 onyx_read_register(onyx
, ONYX_REG_ADC_CONTROL
, &v
);
212 n
&= ~ONYX_ADC_PGA_GAIN_MASK
;
213 n
|= (ucontrol
->value
.integer
.value
[0] - INPUTGAIN_RANGE_SHIFT
)
214 & ONYX_ADC_PGA_GAIN_MASK
;
215 onyx_write_register(onyx
, ONYX_REG_ADC_CONTROL
, n
);
216 mutex_unlock(&onyx
->mutex
);
221 static struct snd_kcontrol_new inputgain_control
= {
222 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
223 .name
= "Master Capture Volume",
224 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
225 .info
= onyx_snd_inputgain_info
,
226 .get
= onyx_snd_inputgain_get
,
227 .put
= onyx_snd_inputgain_put
,
230 static int onyx_snd_capture_source_info(struct snd_kcontrol
*kcontrol
,
231 struct snd_ctl_elem_info
*uinfo
)
233 static char *texts
[] = { "Line-In", "Microphone" };
235 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
237 uinfo
->value
.enumerated
.items
= 2;
238 if (uinfo
->value
.enumerated
.item
> 1)
239 uinfo
->value
.enumerated
.item
= 1;
240 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
244 static int onyx_snd_capture_source_get(struct snd_kcontrol
*kcontrol
,
245 struct snd_ctl_elem_value
*ucontrol
)
247 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
250 mutex_lock(&onyx
->mutex
);
251 onyx_read_register(onyx
, ONYX_REG_ADC_CONTROL
, &v
);
252 mutex_unlock(&onyx
->mutex
);
254 ucontrol
->value
.enumerated
.item
[0] = !!(v
&ONYX_ADC_INPUT_MIC
);
259 static void onyx_set_capture_source(struct onyx
*onyx
, int mic
)
263 mutex_lock(&onyx
->mutex
);
264 onyx_read_register(onyx
, ONYX_REG_ADC_CONTROL
, &v
);
265 v
&= ~ONYX_ADC_INPUT_MIC
;
267 v
|= ONYX_ADC_INPUT_MIC
;
268 onyx_write_register(onyx
, ONYX_REG_ADC_CONTROL
, v
);
269 mutex_unlock(&onyx
->mutex
);
272 static int onyx_snd_capture_source_put(struct snd_kcontrol
*kcontrol
,
273 struct snd_ctl_elem_value
*ucontrol
)
275 onyx_set_capture_source(snd_kcontrol_chip(kcontrol
),
276 ucontrol
->value
.enumerated
.item
[0]);
280 static struct snd_kcontrol_new capture_source_control
= {
281 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
282 /* If we name this 'Input Source', it properly shows up in
283 * alsamixer as a selection, * but it's shown under the
284 * 'Playback' category.
285 * If I name it 'Capture Source', it shows up in strange
286 * ways (two bools of which one can be selected at a
287 * time) but at least it's shown in the 'Capture'
289 * I was told that this was due to backward compatibility,
290 * but I don't understand then why the mangling is *not*
291 * done when I name it "Input Source".....
293 .name
= "Capture Source",
294 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
295 .info
= onyx_snd_capture_source_info
,
296 .get
= onyx_snd_capture_source_get
,
297 .put
= onyx_snd_capture_source_put
,
300 static int onyx_snd_mute_info(struct snd_kcontrol
*kcontrol
,
301 struct snd_ctl_elem_info
*uinfo
)
303 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
305 uinfo
->value
.integer
.min
= 0;
306 uinfo
->value
.integer
.max
= 1;
310 static int onyx_snd_mute_get(struct snd_kcontrol
*kcontrol
,
311 struct snd_ctl_elem_value
*ucontrol
)
313 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
316 mutex_lock(&onyx
->mutex
);
317 onyx_read_register(onyx
, ONYX_REG_DAC_CONTROL
, &c
);
318 mutex_unlock(&onyx
->mutex
);
320 ucontrol
->value
.integer
.value
[0] = !(c
& ONYX_MUTE_LEFT
);
321 ucontrol
->value
.integer
.value
[1] = !(c
& ONYX_MUTE_RIGHT
);
326 static int onyx_snd_mute_put(struct snd_kcontrol
*kcontrol
,
327 struct snd_ctl_elem_value
*ucontrol
)
329 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
333 mutex_lock(&onyx
->mutex
);
334 if (onyx
->analog_locked
)
337 onyx_read_register(onyx
, ONYX_REG_DAC_CONTROL
, &v
);
339 c
&= ~(ONYX_MUTE_RIGHT
| ONYX_MUTE_LEFT
);
340 if (!ucontrol
->value
.integer
.value
[0])
342 if (!ucontrol
->value
.integer
.value
[1])
343 c
|= ONYX_MUTE_RIGHT
;
344 err
= onyx_write_register(onyx
, ONYX_REG_DAC_CONTROL
, c
);
347 mutex_unlock(&onyx
->mutex
);
349 return !err
? (v
!= c
) : err
;
352 static struct snd_kcontrol_new mute_control
= {
353 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
354 .name
= "Master Playback Switch",
355 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
356 .info
= onyx_snd_mute_info
,
357 .get
= onyx_snd_mute_get
,
358 .put
= onyx_snd_mute_put
,
362 static int onyx_snd_single_bit_info(struct snd_kcontrol
*kcontrol
,
363 struct snd_ctl_elem_info
*uinfo
)
365 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
367 uinfo
->value
.integer
.min
= 0;
368 uinfo
->value
.integer
.max
= 1;
372 #define FLAG_POLARITY_INVERT 1
373 #define FLAG_SPDIFLOCK 2
375 static int onyx_snd_single_bit_get(struct snd_kcontrol
*kcontrol
,
376 struct snd_ctl_elem_value
*ucontrol
)
378 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
380 long int pv
= kcontrol
->private_value
;
381 u8 polarity
= (pv
>> 16) & FLAG_POLARITY_INVERT
;
382 u8 address
= (pv
>> 8) & 0xff;
385 mutex_lock(&onyx
->mutex
);
386 onyx_read_register(onyx
, address
, &c
);
387 mutex_unlock(&onyx
->mutex
);
389 ucontrol
->value
.integer
.value
[0] = !!(c
& mask
) ^ polarity
;
394 static int onyx_snd_single_bit_put(struct snd_kcontrol
*kcontrol
,
395 struct snd_ctl_elem_value
*ucontrol
)
397 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
400 long int pv
= kcontrol
->private_value
;
401 u8 polarity
= (pv
>> 16) & FLAG_POLARITY_INVERT
;
402 u8 spdiflock
= (pv
>> 16) & FLAG_SPDIFLOCK
;
403 u8 address
= (pv
>> 8) & 0xff;
406 mutex_lock(&onyx
->mutex
);
407 if (spdiflock
&& onyx
->spdif_locked
) {
408 /* even if alsamixer doesn't care.. */
412 onyx_read_register(onyx
, address
, &v
);
415 if (!!ucontrol
->value
.integer
.value
[0] ^ polarity
)
417 err
= onyx_write_register(onyx
, address
, c
);
420 mutex_unlock(&onyx
->mutex
);
422 return !err
? (v
!= c
) : err
;
425 #define SINGLE_BIT(n, type, description, address, mask, flags) \
426 static struct snd_kcontrol_new n##_control = { \
427 .iface = SNDRV_CTL_ELEM_IFACE_##type, \
428 .name = description, \
429 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
430 .info = onyx_snd_single_bit_info, \
431 .get = onyx_snd_single_bit_get, \
432 .put = onyx_snd_single_bit_put, \
433 .private_value = (flags << 16) | (address << 8) | mask \
438 SNDRV_CTL_NAME_IEC958("", PLAYBACK
, SWITCH
),
445 ONYX_REG_DAC_CONTROL
,
450 "Fast Digital Filter Rolloff",
453 FLAG_POLARITY_INVERT
);
457 ONYX_REG_ADC_HPF_BYPASS
,
459 FLAG_POLARITY_INVERT
);
462 "Digital De-Emphasis",
467 static int onyx_spdif_info(struct snd_kcontrol
*kcontrol
,
468 struct snd_ctl_elem_info
*uinfo
)
470 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
475 static int onyx_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
476 struct snd_ctl_elem_value
*ucontrol
)
478 /* datasheet page 30, all others are 0 */
479 ucontrol
->value
.iec958
.status
[0] = 0x3e;
480 ucontrol
->value
.iec958
.status
[1] = 0xff;
482 ucontrol
->value
.iec958
.status
[3] = 0x3f;
483 ucontrol
->value
.iec958
.status
[4] = 0x0f;
488 static struct snd_kcontrol_new onyx_spdif_mask
= {
489 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
490 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
491 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,CON_MASK
),
492 .info
= onyx_spdif_info
,
493 .get
= onyx_spdif_mask_get
,
496 static int onyx_spdif_get(struct snd_kcontrol
*kcontrol
,
497 struct snd_ctl_elem_value
*ucontrol
)
499 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
502 mutex_lock(&onyx
->mutex
);
503 onyx_read_register(onyx
, ONYX_REG_DIG_INFO1
, &v
);
504 ucontrol
->value
.iec958
.status
[0] = v
& 0x3e;
506 onyx_read_register(onyx
, ONYX_REG_DIG_INFO2
, &v
);
507 ucontrol
->value
.iec958
.status
[1] = v
;
509 onyx_read_register(onyx
, ONYX_REG_DIG_INFO3
, &v
);
510 ucontrol
->value
.iec958
.status
[3] = v
& 0x3f;
512 onyx_read_register(onyx
, ONYX_REG_DIG_INFO4
, &v
);
513 ucontrol
->value
.iec958
.status
[4] = v
& 0x0f;
514 mutex_unlock(&onyx
->mutex
);
519 static int onyx_spdif_put(struct snd_kcontrol
*kcontrol
,
520 struct snd_ctl_elem_value
*ucontrol
)
522 struct onyx
*onyx
= snd_kcontrol_chip(kcontrol
);
525 mutex_lock(&onyx
->mutex
);
526 onyx_read_register(onyx
, ONYX_REG_DIG_INFO1
, &v
);
527 v
= (v
& ~0x3e) | (ucontrol
->value
.iec958
.status
[0] & 0x3e);
528 onyx_write_register(onyx
, ONYX_REG_DIG_INFO1
, v
);
530 v
= ucontrol
->value
.iec958
.status
[1];
531 onyx_write_register(onyx
, ONYX_REG_DIG_INFO2
, v
);
533 onyx_read_register(onyx
, ONYX_REG_DIG_INFO3
, &v
);
534 v
= (v
& ~0x3f) | (ucontrol
->value
.iec958
.status
[3] & 0x3f);
535 onyx_write_register(onyx
, ONYX_REG_DIG_INFO3
, v
);
537 onyx_read_register(onyx
, ONYX_REG_DIG_INFO4
, &v
);
538 v
= (v
& ~0x0f) | (ucontrol
->value
.iec958
.status
[4] & 0x0f);
539 onyx_write_register(onyx
, ONYX_REG_DIG_INFO4
, v
);
540 mutex_unlock(&onyx
->mutex
);
545 static struct snd_kcontrol_new onyx_spdif_ctrl
= {
546 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
547 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
548 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
549 .info
= onyx_spdif_info
,
550 .get
= onyx_spdif_get
,
551 .put
= onyx_spdif_put
,
556 static u8 register_map
[] = {
557 ONYX_REG_DAC_ATTEN_LEFT
,
558 ONYX_REG_DAC_ATTEN_RIGHT
,
560 ONYX_REG_DAC_CONTROL
,
563 ONYX_REG_DAC_OUTPHASE
,
564 ONYX_REG_ADC_CONTROL
,
565 ONYX_REG_ADC_HPF_BYPASS
,
572 static u8 initial_values
[ARRAY_SIZE(register_map
)] = {
573 0x80, 0x80, /* muted */
574 ONYX_MRST
| ONYX_SRST
, /* but handled specially! */
575 ONYX_MUTE_LEFT
| ONYX_MUTE_RIGHT
,
576 0, /* no deemphasis */
577 ONYX_DAC_FILTER_ALWAYS
,
578 ONYX_OUTPHASE_INVERTED
,
579 (-1 /*dB*/ + 8) & 0xF, /* line in selected, -1 dB gain*/
581 (1<<2), /* pcm audio */
582 2, /* category: pcm coder */
583 0, /* sampling frequency 44.1 kHz, clock accuracy level II */
587 /* reset registers of chip, either to initial or to previous values */
588 static int onyx_register_init(struct onyx
*onyx
)
592 u8 regs
[sizeof(initial_values
)];
594 if (!onyx
->initialised
) {
595 memcpy(regs
, initial_values
, sizeof(initial_values
));
596 if (onyx_read_register(onyx
, ONYX_REG_CONTROL
, &val
))
598 val
&= ~ONYX_SILICONVERSION
;
599 val
|= initial_values
[3];
602 for (i
=0; i
<sizeof(register_map
); i
++)
603 regs
[i
] = onyx
->cache
[register_map
[i
]-FIRSTREGISTER
];
606 for (i
=0; i
<sizeof(register_map
); i
++) {
607 if (onyx_write_register(onyx
, register_map
[i
], regs
[i
]))
610 onyx
->initialised
= 1;
614 static struct transfer_info onyx_transfers
[] = {
615 /* this is first so we can skip it if no input is present...
616 * No hardware exists with that, but it's here as an example
617 * of what to do :) */
620 .formats
= SNDRV_PCM_FMTBIT_S8
|
621 SNDRV_PCM_FMTBIT_S16_BE
|
622 SNDRV_PCM_FMTBIT_S24_BE
,
623 .rates
= SNDRV_PCM_RATE_8000_96000
,
625 .must_be_clock_source
= 0,
629 /* if analog and digital are currently off, anything should go,
630 * so this entry describes everything we can do... */
631 .formats
= SNDRV_PCM_FMTBIT_S8
|
632 SNDRV_PCM_FMTBIT_S16_BE
|
633 SNDRV_PCM_FMTBIT_S24_BE
634 #ifdef SNDRV_PCM_FMTBIT_COMPRESSED_16BE
635 | SNDRV_PCM_FMTBIT_COMPRESSED_16BE
638 .rates
= SNDRV_PCM_RATE_8000_96000
,
643 .formats
= SNDRV_PCM_FMTBIT_S8
|
644 SNDRV_PCM_FMTBIT_S16_BE
|
645 SNDRV_PCM_FMTBIT_S24_BE
,
646 .rates
= SNDRV_PCM_RATE_8000_96000
,
648 .must_be_clock_source
= 0,
652 /* digital pcm output, also possible for analog out */
653 .formats
= SNDRV_PCM_FMTBIT_S8
|
654 SNDRV_PCM_FMTBIT_S16_BE
|
655 SNDRV_PCM_FMTBIT_S24_BE
,
656 .rates
= SNDRV_PCM_RATE_32000
|
657 SNDRV_PCM_RATE_44100
|
658 SNDRV_PCM_RATE_48000
,
660 .must_be_clock_source
= 0,
663 #ifdef SNDRV_PCM_FMTBIT_COMPRESSED_16BE
664 Once alsa gets supports
for this kind of thing we can add it
...
666 /* digital compressed output */
667 .formats
= SNDRV_PCM_FMTBIT_COMPRESSED_16BE
,
668 .rates
= SNDRV_PCM_RATE_32000
|
669 SNDRV_PCM_RATE_44100
|
670 SNDRV_PCM_RATE_48000
,
677 static int onyx_usable(struct codec_info_item
*cii
,
678 struct transfer_info
*ti
,
679 struct transfer_info
*out
)
682 struct onyx
*onyx
= cii
->codec_data
;
683 int spdif_enabled
, analog_enabled
;
685 mutex_lock(&onyx
->mutex
);
686 onyx_read_register(onyx
, ONYX_REG_DIG_INFO4
, &v
);
687 spdif_enabled
= !!(v
& ONYX_SPDIF_ENABLE
);
688 onyx_read_register(onyx
, ONYX_REG_DAC_CONTROL
, &v
);
690 (v
& (ONYX_MUTE_RIGHT
|ONYX_MUTE_LEFT
))
691 != (ONYX_MUTE_RIGHT
|ONYX_MUTE_LEFT
);
692 mutex_unlock(&onyx
->mutex
);
696 case 1: return analog_enabled
;
697 case 2: return spdif_enabled
;
702 static int onyx_prepare(struct codec_info_item
*cii
,
704 struct snd_pcm_substream
*substream
)
707 struct onyx
*onyx
= cii
->codec_data
;
710 mutex_lock(&onyx
->mutex
);
712 #ifdef SNDRV_PCM_FMTBIT_COMPRESSED_16BE
713 if (substream
->runtime
->format
== SNDRV_PCM_FMTBIT_COMPRESSED_16BE
) {
714 /* mute and lock analog output */
715 onyx_read_register(onyx
, ONYX_REG_DAC_CONTROL
, &v
);
716 if (onyx_write_register(onyx
717 ONYX_REG_DAC_CONTROL
,
718 v
| ONYX_MUTE_RIGHT
| ONYX_MUTE_LEFT
))
720 onyx
->analog_locked
= 1;
725 switch (substream
->runtime
->rate
) {
729 /* these rates are ok for all outputs */
730 /* FIXME: program spdif channel control bits here so that
731 * userspace doesn't have to if it only plays pcm! */
735 /* got some rate that the digital output can't do,
736 * so disable and lock it */
737 onyx_read_register(cii
->codec_data
, ONYX_REG_DIG_INFO4
, &v
);
738 if (onyx_write_register(onyx
,
740 v
& ~ONYX_SPDIF_ENABLE
))
742 onyx
->spdif_locked
= 1;
748 mutex_unlock(&onyx
->mutex
);
753 static int onyx_open(struct codec_info_item
*cii
,
754 struct snd_pcm_substream
*substream
)
756 struct onyx
*onyx
= cii
->codec_data
;
758 mutex_lock(&onyx
->mutex
);
760 mutex_unlock(&onyx
->mutex
);
765 static int onyx_close(struct codec_info_item
*cii
,
766 struct snd_pcm_substream
*substream
)
768 struct onyx
*onyx
= cii
->codec_data
;
770 mutex_lock(&onyx
->mutex
);
772 if (!onyx
->open_count
)
773 onyx
->spdif_locked
= onyx
->analog_locked
= 0;
774 mutex_unlock(&onyx
->mutex
);
779 static int onyx_switch_clock(struct codec_info_item
*cii
,
780 enum clock_switch what
)
782 struct onyx
*onyx
= cii
->codec_data
;
784 mutex_lock(&onyx
->mutex
);
785 /* this *MUST* be more elaborate later... */
787 case CLOCK_SWITCH_PREPARE_SLAVE
:
788 onyx
->codec
.gpio
->methods
->all_amps_off(onyx
->codec
.gpio
);
790 case CLOCK_SWITCH_SLAVE
:
791 onyx
->codec
.gpio
->methods
->all_amps_restore(onyx
->codec
.gpio
);
793 default: /* silence warning */
796 mutex_unlock(&onyx
->mutex
);
803 static int onyx_suspend(struct codec_info_item
*cii
, pm_message_t state
)
805 struct onyx
*onyx
= cii
->codec_data
;
809 mutex_lock(&onyx
->mutex
);
810 if (onyx_read_register(onyx
, ONYX_REG_CONTROL
, &v
))
812 onyx_write_register(onyx
, ONYX_REG_CONTROL
, v
| ONYX_ADPSV
| ONYX_DAPSV
);
813 /* Apple does a sleep here but the datasheet says to do it on resume */
816 mutex_unlock(&onyx
->mutex
);
821 static int onyx_resume(struct codec_info_item
*cii
)
823 struct onyx
*onyx
= cii
->codec_data
;
827 mutex_lock(&onyx
->mutex
);
830 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 0);
832 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 1);
834 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 0);
837 /* take codec out of suspend (if it still is after reset) */
838 if (onyx_read_register(onyx
, ONYX_REG_CONTROL
, &v
))
840 onyx_write_register(onyx
, ONYX_REG_CONTROL
, v
& ~(ONYX_ADPSV
| ONYX_DAPSV
));
841 /* FIXME: should divide by sample rate, but 8k is the lowest we go */
842 msleep(2205000/8000);
843 /* reset all values */
844 onyx_register_init(onyx
);
847 mutex_unlock(&onyx
->mutex
);
852 #endif /* CONFIG_PM */
854 static struct codec_info onyx_codec_info
= {
855 .transfers
= onyx_transfers
,
856 .sysclock_factor
= 256,
858 .owner
= THIS_MODULE
,
859 .usable
= onyx_usable
,
860 .prepare
= onyx_prepare
,
863 .switch_clock
= onyx_switch_clock
,
865 .suspend
= onyx_suspend
,
866 .resume
= onyx_resume
,
870 static int onyx_init_codec(struct aoa_codec
*codec
)
872 struct onyx
*onyx
= codec_to_onyx(codec
);
873 struct snd_kcontrol
*ctl
;
874 struct codec_info
*ci
= &onyx_codec_info
;
878 if (!onyx
->codec
.gpio
|| !onyx
->codec
.gpio
->methods
) {
879 printk(KERN_ERR PFX
"gpios not assigned!!\n");
883 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 0);
885 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 1);
887 onyx
->codec
.gpio
->methods
->set_hw_reset(onyx
->codec
.gpio
, 0);
890 if (onyx_register_init(onyx
)) {
891 printk(KERN_ERR PFX
"failed to initialise onyx registers\n");
895 if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL
, onyx
, &ops
)) {
896 printk(KERN_ERR PFX
"failed to create onyx snd device!\n");
900 /* nothing connected? what a joke! */
901 if ((onyx
->codec
.connected
& 0xF) == 0)
904 /* if no inputs are present... */
905 if ((onyx
->codec
.connected
& 0xC) == 0) {
906 if (!onyx
->codec_info
)
907 onyx
->codec_info
= kmalloc(sizeof(struct codec_info
), GFP_KERNEL
);
908 if (!onyx
->codec_info
)
910 ci
= onyx
->codec_info
;
911 *ci
= onyx_codec_info
;
915 /* if no outputs are present... */
916 if ((onyx
->codec
.connected
& 3) == 0) {
917 if (!onyx
->codec_info
)
918 onyx
->codec_info
= kmalloc(sizeof(struct codec_info
), GFP_KERNEL
);
919 if (!onyx
->codec_info
)
921 ci
= onyx
->codec_info
;
922 /* this is fine as there have to be inputs
923 * if we end up in this part of the code */
924 *ci
= onyx_codec_info
;
925 ci
->transfers
[1].formats
= 0;
928 if (onyx
->codec
.soundbus_dev
->attach_codec(onyx
->codec
.soundbus_dev
,
931 printk(KERN_ERR PFX
"error creating onyx pcm\n");
936 ctl = snd_ctl_new1(&n, onyx); \
939 onyx->codec.soundbus_dev->pcm->device; \
940 err = aoa_snd_ctl_add(ctl); \
946 if (onyx
->codec
.soundbus_dev
->pcm
) {
947 /* give the user appropriate controls
948 * depending on what inputs are connected */
949 if ((onyx
->codec
.connected
& 0xC) == 0xC)
950 ADDCTL(capture_source_control
);
951 else if (onyx
->codec
.connected
& 4)
952 onyx_set_capture_source(onyx
, 0);
954 onyx_set_capture_source(onyx
, 1);
955 if (onyx
->codec
.connected
& 0xC)
956 ADDCTL(inputgain_control
);
958 /* depending on what output is connected,
959 * give the user appropriate controls */
960 if (onyx
->codec
.connected
& 1) {
961 ADDCTL(volume_control
);
962 ADDCTL(mute_control
);
963 ADDCTL(ovr1_control
);
964 ADDCTL(flt0_control
);
966 ADDCTL(dm12_control
);
967 /* spdif control defaults to off */
969 if (onyx
->codec
.connected
& 2) {
970 ADDCTL(onyx_spdif_mask
);
971 ADDCTL(onyx_spdif_ctrl
);
973 if ((onyx
->codec
.connected
& 3) == 3)
974 ADDCTL(spdif_control
);
975 /* if only S/PDIF is connected, enable it unconditionally */
976 if ((onyx
->codec
.connected
& 3) == 2) {
977 onyx_read_register(onyx
, ONYX_REG_DIG_INFO4
, &v
);
978 v
|= ONYX_SPDIF_ENABLE
;
979 onyx_write_register(onyx
, ONYX_REG_DIG_INFO4
, v
);
983 printk(KERN_INFO PFX
"attached to onyx codec via i2c\n");
987 onyx
->codec
.soundbus_dev
->detach_codec(onyx
->codec
.soundbus_dev
, onyx
);
988 snd_device_free(aoa_get_card(), onyx
);
992 static void onyx_exit_codec(struct aoa_codec
*codec
)
994 struct onyx
*onyx
= codec_to_onyx(codec
);
996 if (!onyx
->codec
.soundbus_dev
) {
997 printk(KERN_ERR PFX
"onyx_exit_codec called without soundbus_dev!\n");
1000 onyx
->codec
.soundbus_dev
->detach_codec(onyx
->codec
.soundbus_dev
, onyx
);
1003 static struct i2c_driver onyx_driver
;
1005 static int onyx_create(struct i2c_adapter
*adapter
,
1006 struct device_node
*node
,
1012 onyx
= kzalloc(sizeof(struct onyx
), GFP_KERNEL
);
1017 mutex_init(&onyx
->mutex
);
1018 onyx
->i2c
.driver
= &onyx_driver
;
1019 onyx
->i2c
.adapter
= adapter
;
1020 onyx
->i2c
.addr
= addr
& 0x7f;
1021 strlcpy(onyx
->i2c
.name
, "onyx audio codec", I2C_NAME_SIZE
-1);
1023 if (i2c_attach_client(&onyx
->i2c
)) {
1024 printk(KERN_ERR PFX
"failed to attach to i2c\n");
1028 /* we try to read from register ONYX_REG_CONTROL
1029 * to check if the codec is present */
1030 if (onyx_read_register(onyx
, ONYX_REG_CONTROL
, &dummy
) != 0) {
1031 i2c_detach_client(&onyx
->i2c
);
1032 printk(KERN_ERR PFX
"failed to read control register\n");
1036 strlcpy(onyx
->codec
.name
, "onyx", MAX_CODEC_NAME_LEN
-1);
1037 onyx
->codec
.owner
= THIS_MODULE
;
1038 onyx
->codec
.init
= onyx_init_codec
;
1039 onyx
->codec
.exit
= onyx_exit_codec
;
1040 onyx
->codec
.node
= of_node_get(node
);
1042 if (aoa_codec_register(&onyx
->codec
)) {
1043 i2c_detach_client(&onyx
->i2c
);
1046 printk(KERN_DEBUG PFX
"created and attached onyx instance\n");
1053 static int onyx_i2c_attach(struct i2c_adapter
*adapter
)
1055 struct device_node
*busnode
, *dev
= NULL
;
1056 struct pmac_i2c_bus
*bus
;
1058 bus
= pmac_i2c_adapter_to_bus(adapter
);
1061 busnode
= pmac_i2c_get_bus_node(bus
);
1063 while ((dev
= of_get_next_child(busnode
, dev
)) != NULL
) {
1064 if (of_device_is_compatible(dev
, "pcm3052")) {
1066 printk(KERN_DEBUG PFX
"found pcm3052\n");
1067 addr
= of_get_property(dev
, "reg", NULL
);
1070 return onyx_create(adapter
, dev
, (*addr
)>>1);
1074 /* if that didn't work, try desperate mode for older
1075 * machines that have stuff missing from the device tree */
1077 if (!of_device_is_compatible(busnode
, "k2-i2c"))
1080 printk(KERN_DEBUG PFX
"found k2-i2c, checking if onyx chip is on it\n");
1081 /* probe both possible addresses for the onyx chip */
1082 if (onyx_create(adapter
, NULL
, 0x46) == 0)
1084 return onyx_create(adapter
, NULL
, 0x47);
1087 static int onyx_i2c_detach(struct i2c_client
*client
)
1089 struct onyx
*onyx
= container_of(client
, struct onyx
, i2c
);
1092 if ((err
= i2c_detach_client(client
)))
1094 aoa_codec_unregister(&onyx
->codec
);
1095 of_node_put(onyx
->codec
.node
);
1096 if (onyx
->codec_info
)
1097 kfree(onyx
->codec_info
);
1102 static struct i2c_driver onyx_driver
= {
1104 .name
= "aoa_codec_onyx",
1105 .owner
= THIS_MODULE
,
1107 .attach_adapter
= onyx_i2c_attach
,
1108 .detach_client
= onyx_i2c_detach
,
1111 static int __init
onyx_init(void)
1113 return i2c_add_driver(&onyx_driver
);
1116 static void __exit
onyx_exit(void)
1118 i2c_del_driver(&onyx_driver
);
1121 module_init(onyx_init
);
1122 module_exit(onyx_exit
);