tas.c 23.8 KB
Newer Older
J
Johannes Berg 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * Apple Onboard Audio driver for tas codec
 *
 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
 *
 * GPL v2, can be found in COPYING.
 *
 * Open questions:
 *  - How to distinguish between 3004 and versions?
 *
 * FIXMEs:
 *  - This codec driver doesn't honour the 'connected'
 *    property of the aoa_codec struct, hence if
 *    it is used in machines where not everything is
 *    connected it will display wrong mixer elements.
 *  - Driver assumes that the microphone is always
 *    monaureal and connected to the right channel of
 *    the input. This should also be a codec-dependent
 *    flag, maybe the codec should have 3 different
 *    bits for the three different possibilities how
 *    it can be hooked up...
 *    But as long as I don't see any hardware hooked
 *    up that way...
 *  - As Apple notes in their code, the tas3004 seems
 *    to delay the right channel by one sample. You can
 *    see this when for example recording stereo in
 *    audacity, or recording the tas output via cable
 *    on another machine (use a sinus generator or so).
 *    I tried programming the BiQuads but couldn't
 *    make the delay work, maybe someone can read the
 *    datasheet and fix it. The relevant Apple comment
 *    is in AppleTAS3004Audio.cpp lines 1637 ff. Note
 *    that their comment describing how they program
 *    the filters sucks...
 *
 * Other things:
 *  - this should actually register *two* aoa_codec
 *    structs since it has two inputs. Then it must
 *    use the prepare callback to forbid running the
 *    secondary output on a different clock.
 *    Also, whatever bus knows how to do this must
 *    provide two soundbus_dev devices and the fabric
 *    must be able to link them correctly.
 *
 *    I don't even know if Apple ever uses the second
 *    port on the tas3004 though, I don't think their
 *    i2s controllers can even do it. OTOH, they all
 *    derive the clocks from common clocks, so it
 *    might just be possible. The framework allows the
 *    codec to refine the transfer_info items in the
 *    usable callback, so we can simply remove the
 *    rates the second instance is not using when it
 *    actually is in use.
 *    Maybe we'll need to make the sound busses have
 *    a 'clock group id' value so the codec can
 *    determine if the two outputs can be driven at
 *    the same time. But that is likely overkill, up
 *    to the fabric to not link them up incorrectly,
 *    and up to the hardware designer to not wire
 *    them up in some weird unusable way.
 */
#include <stddef.h>
#include <linux/i2c.h>
#include <asm/pmac_low_i2c.h>
#include <asm/prom.h>
#include <linux/delay.h>
#include <linux/module.h>
68
#include <linux/mutex.h>
69
#include <linux/slab.h>
70

J
Johannes Berg 已提交
71 72 73 74
MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("tas codec driver for snd-aoa");

J
Johannes Berg 已提交
75 76 77
#include "tas.h"
#include "tas-gain-table.h"
#include "tas-basstreble.h"
J
Johannes Berg 已提交
78 79 80 81 82
#include "../aoa.h"
#include "../soundbus/soundbus.h"

#define PFX "snd-aoa-codec-tas: "

83

J
Johannes Berg 已提交
84 85
struct tas {
	struct aoa_codec	codec;
86
	struct i2c_client	*i2c;
87 88 89 90
	u32			mute_l:1, mute_r:1 ,
				controls_created:1 ,
				drc_enabled:1,
				hw_enabled:1;
J
Johannes Berg 已提交
91 92
	u8			cached_volume_l, cached_volume_r;
	u8			mixer_l[3], mixer_r[3];
93
	u8			bass, treble;
J
Johannes Berg 已提交
94
	u8			acr;
95
	int			drc_range;
96 97 98 99
	/* protects hardware access against concurrency from
	 * userspace when hitting controls and during
	 * codec init/suspend/resume */
	struct mutex		mtx;
J
Johannes Berg 已提交
100 101
};

102 103
static int tas_reset_init(struct tas *tas);

J
Johannes Berg 已提交
104 105 106 107 108 109 110 111
static struct tas *codec_to_tas(struct aoa_codec *codec)
{
	return container_of(codec, struct tas, codec);
}

static inline int tas_write_reg(struct tas *tas, u8 reg, u8 len, u8 *data)
{
	if (len == 1)
112
		return i2c_smbus_write_byte_data(tas->i2c, reg, *data);
J
Johannes Berg 已提交
113
	else
114
		return i2c_smbus_write_i2c_block_data(tas->i2c, reg, len, data);
J
Johannes Berg 已提交
115 116
}

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
static void tas3004_set_drc(struct tas *tas)
{
	unsigned char val[6];

	if (tas->drc_enabled)
		val[0] = 0x50; /* 3:1 above threshold */
	else
		val[0] = 0x51; /* disabled */
	val[1] = 0x02; /* 1:1 below threshold */
	if (tas->drc_range > 0xef)
		val[2] = 0xef;
	else if (tas->drc_range < 0)
		val[2] = 0x00;
	else
		val[2] = tas->drc_range;
	val[3] = 0xb0;
	val[4] = 0x60;
	val[5] = 0xa0;

	tas_write_reg(tas, TAS_REG_DRC, 6, val);
}

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
static void tas_set_treble(struct tas *tas)
{
	u8 tmp;

	tmp = tas3004_treble(tas->treble);
	tas_write_reg(tas, TAS_REG_TREBLE, 1, &tmp);
}

static void tas_set_bass(struct tas *tas)
{
	u8 tmp;

	tmp = tas3004_bass(tas->bass);
	tas_write_reg(tas, TAS_REG_BASS, 1, &tmp);
}

J
Johannes Berg 已提交
155 156 157 158 159 160 161 162 163 164 165 166
static void tas_set_volume(struct tas *tas)
{
	u8 block[6];
	int tmp;
	u8 left, right;

	left = tas->cached_volume_l;
	right = tas->cached_volume_r;

	if (left > 177) left = 177;
	if (right > 177) right = 177;

167 168
	if (tas->mute_l) left = 0;
	if (tas->mute_r) right = 0;
J
Johannes Berg 已提交
169 170 171 172

	/* analysing the volume and mixer tables shows
	 * that they are similar enough when we shift
	 * the mixer table down by 4 bits. The error
173
	 * is miniscule, in just one item the error
J
Johannes Berg 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
	 * is 1, at a value of 0x07f17b (mixer table
	 * value is 0x07f17a) */
	tmp = tas_gaintable[left];
	block[0] = tmp>>20;
	block[1] = tmp>>12;
	block[2] = tmp>>4;
	tmp = tas_gaintable[right];
	block[3] = tmp>>20;
	block[4] = tmp>>12;
	block[5] = tmp>>4;
	tas_write_reg(tas, TAS_REG_VOL, 6, block);
}

static void tas_set_mixer(struct tas *tas)
{
	u8 block[9];
	int tmp, i;
	u8 val;

	for (i=0;i<3;i++) {
		val = tas->mixer_l[i];
		if (val > 177) val = 177;
		tmp = tas_gaintable[val];
		block[3*i+0] = tmp>>16;
		block[3*i+1] = tmp>>8;
		block[3*i+2] = tmp;
	}
	tas_write_reg(tas, TAS_REG_LMIX, 9, block);

	for (i=0;i<3;i++) {
		val = tas->mixer_r[i];
		if (val > 177) val = 177;
		tmp = tas_gaintable[val];
		block[3*i+0] = tmp>>16;
		block[3*i+1] = tmp>>8;
		block[3*i+2] = tmp;
	}
	tas_write_reg(tas, TAS_REG_RMIX, 9, block);
}

/* alsa stuff */

static int tas_dev_register(struct snd_device *dev)
{
	return 0;
}

static struct snd_device_ops ops = {
	.dev_register = tas_dev_register,
};

static int tas_snd_vol_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 2;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 177;
	return 0;
}

static int tas_snd_vol_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

240
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
241 242
	ucontrol->value.integer.value[0] = tas->cached_volume_l;
	ucontrol->value.integer.value[1] = tas->cached_volume_r;
243
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
244 245 246 247 248 249 250 251
	return 0;
}

static int tas_snd_vol_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

252 253 254 255 256 257 258
	if (ucontrol->value.integer.value[0] < 0 ||
	    ucontrol->value.integer.value[0] > 177)
		return -EINVAL;
	if (ucontrol->value.integer.value[1] < 0 ||
	    ucontrol->value.integer.value[1] > 177)
		return -EINVAL;

259
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
260
	if (tas->cached_volume_l == ucontrol->value.integer.value[0]
261 262
	 && tas->cached_volume_r == ucontrol->value.integer.value[1]) {
		mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
263
		return 0;
264
	}
J
Johannes Berg 已提交
265 266 267

	tas->cached_volume_l = ucontrol->value.integer.value[0];
	tas->cached_volume_r = ucontrol->value.integer.value[1];
268 269
	if (tas->hw_enabled)
		tas_set_volume(tas);
270
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
271 272 273
	return 1;
}

274
static const struct snd_kcontrol_new volume_control = {
J
Johannes Berg 已提交
275 276 277 278 279 280 281 282
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Master Playback Volume",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_vol_info,
	.get = tas_snd_vol_get,
	.put = tas_snd_vol_put,
};

283
#define tas_snd_mute_info	snd_ctl_boolean_stereo_info
J
Johannes Berg 已提交
284 285 286 287 288 289

static int tas_snd_mute_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

290
	mutex_lock(&tas->mtx);
291 292
	ucontrol->value.integer.value[0] = !tas->mute_l;
	ucontrol->value.integer.value[1] = !tas->mute_r;
293
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
294 295 296 297 298 299 300 301
	return 0;
}

static int tas_snd_mute_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

302
	mutex_lock(&tas->mtx);
303
	if (tas->mute_l == !ucontrol->value.integer.value[0]
304 305
	 && tas->mute_r == !ucontrol->value.integer.value[1]) {
		mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
306
		return 0;
307
	}
J
Johannes Berg 已提交
308

309 310 311 312
	tas->mute_l = !ucontrol->value.integer.value[0];
	tas->mute_r = !ucontrol->value.integer.value[1];
	if (tas->hw_enabled)
		tas_set_volume(tas);
313
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
314 315 316
	return 1;
}

317
static const struct snd_kcontrol_new mute_control = {
J
Johannes Berg 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Master Playback Switch",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_mute_info,
	.get = tas_snd_mute_get,
	.put = tas_snd_mute_put,
};

static int tas_snd_mixer_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 2;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 177;
	return 0;
}

static int tas_snd_mixer_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);
	int idx = kcontrol->private_value;

342
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
343 344
	ucontrol->value.integer.value[0] = tas->mixer_l[idx];
	ucontrol->value.integer.value[1] = tas->mixer_r[idx];
345
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
346 347 348 349 350 351 352 353 354 355

	return 0;
}

static int tas_snd_mixer_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);
	int idx = kcontrol->private_value;

356
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
357
	if (tas->mixer_l[idx] == ucontrol->value.integer.value[0]
358 359
	 && tas->mixer_r[idx] == ucontrol->value.integer.value[1]) {
		mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
360
		return 0;
361
	}
J
Johannes Berg 已提交
362 363 364 365

	tas->mixer_l[idx] = ucontrol->value.integer.value[0];
	tas->mixer_r[idx] = ucontrol->value.integer.value[1];

366 367
	if (tas->hw_enabled)
		tas_set_mixer(tas);
368
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382
	return 1;
}

#define MIXER_CONTROL(n,descr,idx)			\
static struct snd_kcontrol_new n##_control = {		\
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,		\
	.name = descr " Playback Volume",		\
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,	\
	.info = tas_snd_mixer_info,			\
	.get = tas_snd_mixer_get,			\
	.put = tas_snd_mixer_put,			\
	.private_value = idx,				\
}

383
MIXER_CONTROL(pcm1, "PCM", 0);
J
Johannes Berg 已提交
384 385
MIXER_CONTROL(monitor, "Monitor", 2);

386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
static int tas_snd_drc_range_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 1;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = TAS3004_DRC_MAX;
	return 0;
}

static int tas_snd_drc_range_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

401
	mutex_lock(&tas->mtx);
402
	ucontrol->value.integer.value[0] = tas->drc_range;
403
	mutex_unlock(&tas->mtx);
404 405 406 407 408 409 410 411
	return 0;
}

static int tas_snd_drc_range_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

412 413 414 415
	if (ucontrol->value.integer.value[0] < 0 ||
	    ucontrol->value.integer.value[0] > TAS3004_DRC_MAX)
		return -EINVAL;

416 417 418
	mutex_lock(&tas->mtx);
	if (tas->drc_range == ucontrol->value.integer.value[0]) {
		mutex_unlock(&tas->mtx);
419
		return 0;
420
	}
421 422 423 424

	tas->drc_range = ucontrol->value.integer.value[0];
	if (tas->hw_enabled)
		tas3004_set_drc(tas);
425
	mutex_unlock(&tas->mtx);
426 427 428
	return 1;
}

429
static const struct snd_kcontrol_new drc_range_control = {
430 431 432 433 434 435 436 437
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "DRC Range",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_drc_range_info,
	.get = tas_snd_drc_range_get,
	.put = tas_snd_drc_range_put,
};

438
#define tas_snd_drc_switch_info		snd_ctl_boolean_mono_info
439 440 441 442 443 444

static int tas_snd_drc_switch_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

445
	mutex_lock(&tas->mtx);
446
	ucontrol->value.integer.value[0] = tas->drc_enabled;
447
	mutex_unlock(&tas->mtx);
448 449 450 451 452 453 454 455
	return 0;
}

static int tas_snd_drc_switch_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

456 457 458
	mutex_lock(&tas->mtx);
	if (tas->drc_enabled == ucontrol->value.integer.value[0]) {
		mutex_unlock(&tas->mtx);
459
		return 0;
460
	}
461

462
	tas->drc_enabled = !!ucontrol->value.integer.value[0];
463 464
	if (tas->hw_enabled)
		tas3004_set_drc(tas);
465
	mutex_unlock(&tas->mtx);
466 467 468
	return 1;
}

469
static const struct snd_kcontrol_new drc_switch_control = {
470 471 472 473 474 475 476 477
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "DRC Range Switch",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_drc_switch_info,
	.get = tas_snd_drc_switch_get,
	.put = tas_snd_drc_switch_put,
};

J
Johannes Berg 已提交
478 479 480
static int tas_snd_capture_source_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
T
Takashi Iwai 已提交
481
	static const char * const texts[] = { "Line-In", "Microphone" };
J
Johannes Berg 已提交
482

T
Takashi Iwai 已提交
483
	return snd_ctl_enum_info(uinfo, 1, 2, texts);
J
Johannes Berg 已提交
484 485 486 487 488 489 490
}

static int tas_snd_capture_source_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

491
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
492
	ucontrol->value.enumerated.item[0] = !!(tas->acr & TAS_ACR_INPUT_B);
493
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
494 495 496 497 498 499 500
	return 0;
}

static int tas_snd_capture_source_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);
501 502
	int oldacr;

503 504
	if (ucontrol->value.enumerated.item[0] > 1)
		return -EINVAL;
505 506
	mutex_lock(&tas->mtx);
	oldacr = tas->acr;
J
Johannes Berg 已提交
507

508 509 510 511 512 513
	/*
	 * Despite what the data sheet says in one place, the
	 * TAS_ACR_B_MONAUREAL bit forces mono output even when
	 * input A (line in) is selected.
	 */
	tas->acr &= ~(TAS_ACR_INPUT_B | TAS_ACR_B_MONAUREAL);
J
Johannes Berg 已提交
514
	if (ucontrol->value.enumerated.item[0])
515 516
		tas->acr |= TAS_ACR_INPUT_B | TAS_ACR_B_MONAUREAL |
		      TAS_ACR_B_MON_SEL_RIGHT;
517 518
	if (oldacr == tas->acr) {
		mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
519
		return 0;
520
	}
521 522
	if (tas->hw_enabled)
		tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr);
523
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
524 525 526
	return 1;
}

527
static const struct snd_kcontrol_new capture_source_control = {
J
Johannes Berg 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	/* If we name this 'Input Source', it properly shows up in
	 * alsamixer as a selection, * but it's shown under the
	 * 'Playback' category.
	 * If I name it 'Capture Source', it shows up in strange
	 * ways (two bools of which one can be selected at a
	 * time) but at least it's shown in the 'Capture'
	 * category.
	 * I was told that this was due to backward compatibility,
	 * but I don't understand then why the mangling is *not*
	 * done when I name it "Input Source".....
	 */
	.name = "Capture Source",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_capture_source_info,
	.get = tas_snd_capture_source_get,
	.put = tas_snd_capture_source_put,
};

547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
static int tas_snd_treble_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 1;
	uinfo->value.integer.min = TAS3004_TREBLE_MIN;
	uinfo->value.integer.max = TAS3004_TREBLE_MAX;
	return 0;
}

static int tas_snd_treble_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

562
	mutex_lock(&tas->mtx);
563
	ucontrol->value.integer.value[0] = tas->treble;
564
	mutex_unlock(&tas->mtx);
565 566 567 568 569 570 571 572
	return 0;
}

static int tas_snd_treble_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

573 574 575
	if (ucontrol->value.integer.value[0] < TAS3004_TREBLE_MIN ||
	    ucontrol->value.integer.value[0] > TAS3004_TREBLE_MAX)
		return -EINVAL;
576 577 578
	mutex_lock(&tas->mtx);
	if (tas->treble == ucontrol->value.integer.value[0]) {
		mutex_unlock(&tas->mtx);
579
		return 0;
580
	}
581 582 583 584

	tas->treble = ucontrol->value.integer.value[0];
	if (tas->hw_enabled)
		tas_set_treble(tas);
585
	mutex_unlock(&tas->mtx);
586 587 588
	return 1;
}

589
static const struct snd_kcontrol_new treble_control = {
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Treble",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_treble_info,
	.get = tas_snd_treble_get,
	.put = tas_snd_treble_put,
};

static int tas_snd_bass_info(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_info *uinfo)
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 1;
	uinfo->value.integer.min = TAS3004_BASS_MIN;
	uinfo->value.integer.max = TAS3004_BASS_MAX;
	return 0;
}

static int tas_snd_bass_get(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

613
	mutex_lock(&tas->mtx);
614
	ucontrol->value.integer.value[0] = tas->bass;
615
	mutex_unlock(&tas->mtx);
616 617 618 619 620 621 622 623
	return 0;
}

static int tas_snd_bass_put(struct snd_kcontrol *kcontrol,
	struct snd_ctl_elem_value *ucontrol)
{
	struct tas *tas = snd_kcontrol_chip(kcontrol);

624 625 626
	if (ucontrol->value.integer.value[0] < TAS3004_BASS_MIN ||
	    ucontrol->value.integer.value[0] > TAS3004_BASS_MAX)
		return -EINVAL;
627 628 629
	mutex_lock(&tas->mtx);
	if (tas->bass == ucontrol->value.integer.value[0]) {
		mutex_unlock(&tas->mtx);
630
		return 0;
631
	}
632 633 634 635

	tas->bass = ucontrol->value.integer.value[0];
	if (tas->hw_enabled)
		tas_set_bass(tas);
636
	mutex_unlock(&tas->mtx);
637 638 639
	return 1;
}

640
static const struct snd_kcontrol_new bass_control = {
641 642 643 644 645 646 647
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Bass",
	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
	.info = tas_snd_bass_info,
	.get = tas_snd_bass_get,
	.put = tas_snd_bass_put,
};
J
Johannes Berg 已提交
648 649 650 651

static struct transfer_info tas_transfers[] = {
	{
		/* input */
652
		.formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S24_BE,
J
Johannes Berg 已提交
653 654 655 656 657
		.rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
		.transfer_in = 1,
	},
	{
		/* output */
658
		.formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S24_BE,
J
Johannes Berg 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
		.rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
		.transfer_in = 0,
	},
	{}
};

static int tas_usable(struct codec_info_item *cii,
		      struct transfer_info *ti,
		      struct transfer_info *out)
{
	return 1;
}

static int tas_reset_init(struct tas *tas)
{
	u8 tmp;
675 676 677

	tas->codec.gpio->methods->all_amps_off(tas->codec.gpio);
	msleep(5);
J
Johannes Berg 已提交
678
	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 0);
679
	msleep(5);
J
Johannes Berg 已提交
680
	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 1);
681
	msleep(20);
J
Johannes Berg 已提交
682
	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 0);
683 684
	msleep(10);
	tas->codec.gpio->methods->all_amps_restore(tas->codec.gpio);
J
Johannes Berg 已提交
685 686 687

	tmp = TAS_MCS_SCLK64 | TAS_MCS_SPORT_MODE_I2S | TAS_MCS_SPORT_WL_24BIT;
	if (tas_write_reg(tas, TAS_REG_MCS, 1, &tmp))
688
		goto outerr;
J
Johannes Berg 已提交
689

690
	tas->acr |= TAS_ACR_ANALOG_PDOWN;
691
	if (tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr))
692
		goto outerr;
693

J
Johannes Berg 已提交
694 695
	tmp = 0;
	if (tas_write_reg(tas, TAS_REG_MCS2, 1, &tmp))
696
		goto outerr;
J
Johannes Berg 已提交
697

698 699 700
	tas3004_set_drc(tas);

	/* Set treble & bass to 0dB */
701 702 703 704
	tas->treble = TAS3004_TREBLE_ZERO;
	tas->bass = TAS3004_BASS_ZERO;
	tas_set_treble(tas);
	tas_set_bass(tas);
705 706 707

	tas->acr &= ~TAS_ACR_ANALOG_PDOWN;
	if (tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr))
708
		goto outerr;
709 710

	return 0;
711 712
 outerr:
	return -ENODEV;
713 714 715 716 717 718 719 720 721 722 723 724 725 726
}

static int tas_switch_clock(struct codec_info_item *cii, enum clock_switch clock)
{
	struct tas *tas = cii->codec_data;

	switch(clock) {
	case CLOCK_SWITCH_PREPARE_SLAVE:
		/* Clocks are going away, mute mute mute */
		tas->codec.gpio->methods->all_amps_off(tas->codec.gpio);
		tas->hw_enabled = 0;
		break;
	case CLOCK_SWITCH_SLAVE:
		/* Clocks are back, re-init the codec */
727
		mutex_lock(&tas->mtx);
728 729 730 731 732
		tas_reset_init(tas);
		tas_set_volume(tas);
		tas_set_mixer(tas);
		tas->hw_enabled = 1;
		tas->codec.gpio->methods->all_amps_restore(tas->codec.gpio);
733
		mutex_unlock(&tas->mtx);
734 735 736 737 738
		break;
	default:
		/* doesn't happen as of now */
		return -EINVAL;
	}
J
Johannes Berg 已提交
739 740 741
	return 0;
}

742
#ifdef CONFIG_PM
J
Johannes Berg 已提交
743 744 745 746 747
/* we are controlled via i2c and assume that is always up
 * If that wasn't the case, we'd have to suspend once
 * our i2c device is suspended, and then take note of that! */
static int tas_suspend(struct tas *tas)
{
748
	mutex_lock(&tas->mtx);
749
	tas->hw_enabled = 0;
J
Johannes Berg 已提交
750 751
	tas->acr |= TAS_ACR_ANALOG_PDOWN;
	tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr);
752
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
753 754 755 756 757 758
	return 0;
}

static int tas_resume(struct tas *tas)
{
	/* reset codec */
759
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
760 761 762
	tas_reset_init(tas);
	tas_set_volume(tas);
	tas_set_mixer(tas);
763
	tas->hw_enabled = 1;
764
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
765 766 767 768 769 770 771 772 773 774 775 776
	return 0;
}

static int _tas_suspend(struct codec_info_item *cii, pm_message_t state)
{
	return tas_suspend(cii->codec_data);
}

static int _tas_resume(struct codec_info_item *cii)
{
	return tas_resume(cii->codec_data);
}
777 778 779 780
#else /* CONFIG_PM */
#define _tas_suspend	NULL
#define _tas_resume	NULL
#endif /* CONFIG_PM */
J
Johannes Berg 已提交
781 782 783 784 785 786 787 788 789 790 791

static struct codec_info tas_codec_info = {
	.transfers = tas_transfers,
	/* in theory, we can drive it at 512 too...
	 * but so far the framework doesn't allow
	 * for that and I don't see much point in it. */
	.sysclock_factor = 256,
	/* same here, could be 32 for just one 16 bit format */
	.bus_factor = 64,
	.owner = THIS_MODULE,
	.usable = tas_usable,
792
	.switch_clock = tas_switch_clock,
J
Johannes Berg 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806
	.suspend = _tas_suspend,
	.resume = _tas_resume,
};

static int tas_init_codec(struct aoa_codec *codec)
{
	struct tas *tas = codec_to_tas(codec);
	int err;

	if (!tas->codec.gpio || !tas->codec.gpio->methods) {
		printk(KERN_ERR PFX "gpios not assigned!!\n");
		return -EINVAL;
	}

807
	mutex_lock(&tas->mtx);
J
Johannes Berg 已提交
808 809
	if (tas_reset_init(tas)) {
		printk(KERN_ERR PFX "tas failed to initialise\n");
810
		mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
811 812
		return -ENXIO;
	}
813
	tas->hw_enabled = 1;
814
	mutex_unlock(&tas->mtx);
J
Johannes Berg 已提交
815 816 817 818 819 820 821 822

	if (tas->codec.soundbus_dev->attach_codec(tas->codec.soundbus_dev,
						   aoa_get_card(),
						   &tas_codec_info, tas)) {
		printk(KERN_ERR PFX "error attaching tas to soundbus\n");
		return -ENODEV;
	}

823
	if (aoa_snd_device_new(SNDRV_DEV_CODEC, tas, &ops)) {
J
Johannes Berg 已提交
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
		printk(KERN_ERR PFX "failed to create tas snd device!\n");
		return -ENODEV;
	}
	err = aoa_snd_ctl_add(snd_ctl_new1(&volume_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&mute_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&pcm1_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&monitor_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&capture_source_control, tas));
	if (err)
		goto error;

847 848 849 850 851 852 853 854
	err = aoa_snd_ctl_add(snd_ctl_new1(&drc_range_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&drc_switch_control, tas));
	if (err)
		goto error;

855 856 857 858 859 860 861 862
	err = aoa_snd_ctl_add(snd_ctl_new1(&treble_control, tas));
	if (err)
		goto error;

	err = aoa_snd_ctl_add(snd_ctl_new1(&bass_control, tas));
	if (err)
		goto error;

J
Johannes Berg 已提交
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
	return 0;
 error:
	tas->codec.soundbus_dev->detach_codec(tas->codec.soundbus_dev, tas);
	snd_device_free(aoa_get_card(), tas);
	return err;
}

static void tas_exit_codec(struct aoa_codec *codec)
{
	struct tas *tas = codec_to_tas(codec);

	if (!tas->codec.soundbus_dev)
		return;
	tas->codec.soundbus_dev->detach_codec(tas->codec.soundbus_dev, tas);
}
J
Johannes Berg 已提交
878

J
Johannes Berg 已提交
879

880 881 882
static int tas_i2c_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
{
883
	struct device_node *node = client->dev.of_node;
J
Johannes Berg 已提交
884 885 886 887 888 889 890
	struct tas *tas;

	tas = kzalloc(sizeof(struct tas), GFP_KERNEL);

	if (!tas)
		return -ENOMEM;

891
	mutex_init(&tas->mtx);
892 893 894
	tas->i2c = client;
	i2c_set_clientdata(client, tas);

895 896
	/* seems that half is a saner default */
	tas->drc_range = TAS3004_DRC_MAX / 2;
J
Johannes Berg 已提交
897

898
	strlcpy(tas->codec.name, "tas", MAX_CODEC_NAME_LEN);
J
Johannes Berg 已提交
899 900 901 902 903 904
	tas->codec.owner = THIS_MODULE;
	tas->codec.init = tas_init_codec;
	tas->codec.exit = tas_exit_codec;
	tas->codec.node = of_node_get(node);

	if (aoa_codec_register(&tas->codec)) {
905
		goto fail;
J
Johannes Berg 已提交
906
	}
907 908
	printk(KERN_DEBUG
	       "snd-aoa-codec-tas: tas found, addr 0x%02x on %s\n",
909
	       (unsigned int)client->addr, node->full_name);
J
Johannes Berg 已提交
910 911
	return 0;
 fail:
912
	mutex_destroy(&tas->mtx);
J
Johannes Berg 已提交
913 914 915 916
	kfree(tas);
	return -EINVAL;
}

917
static int tas_i2c_remove(struct i2c_client *client)
J
Johannes Berg 已提交
918
{
919
	struct tas *tas = i2c_get_clientdata(client);
J
Johannes Berg 已提交
920 921 922 923 924 925 926 927
	u8 tmp = TAS_ACR_ANALOG_PDOWN;

	aoa_codec_unregister(&tas->codec);
	of_node_put(tas->codec.node);

	/* power down codec chip */
	tas_write_reg(tas, TAS_REG_ACR, 1, &tmp);

928
	mutex_destroy(&tas->mtx);
J
Johannes Berg 已提交
929 930 931 932
	kfree(tas);
	return 0;
}

933
static const struct i2c_device_id tas_i2c_id[] = {
934
	{ "MAC,tas3004", 0 },
935 936
	{ }
};
937
MODULE_DEVICE_TABLE(i2c,tas_i2c_id);
938

J
Johannes Berg 已提交
939 940 941 942
static struct i2c_driver tas_driver = {
	.driver = {
		.name = "aoa_codec_tas",
	},
943 944 945
	.probe = tas_i2c_probe,
	.remove = tas_i2c_remove,
	.id_table = tas_i2c_id,
J
Johannes Berg 已提交
946 947
};

948
module_i2c_driver(tas_driver);