oxygen.c 10.0 KB
Newer Older
C
Clemens Ladisch 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * C-Media CMI8788 driver for C-Media's reference design and for the X-Meridian
 *
 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
 *
 *
 *  This driver is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License, version 2.
 *
 *  This driver is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this driver; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

/*
 * SPI 0 -> 1st AK4396 (front)
22
 * SPI 1 -> 2nd AK4396 (surround)
C
Clemens Ladisch 已提交
23 24
 * SPI 2 -> 3rd AK4396 (center/LFE)
 * SPI 3 -> WM8785
25
 * SPI 4 -> 4th AK4396 (back)
C
Clemens Ladisch 已提交
26 27 28 29 30
 *
 * GPIO 0 -> DFS0 of AK5385
 * GPIO 1 -> DFS1 of AK5385
 */

31
#include <linux/mutex.h>
C
Clemens Ladisch 已提交
32
#include <linux/pci.h>
33
#include <sound/ac97_codec.h>
34
#include <sound/control.h>
C
Clemens Ladisch 已提交
35 36 37 38 39 40
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/tlv.h>
#include "oxygen.h"
41
#include "ak4396.h"
42
#include "cm9780.h"
43
#include "wm8785.h"
C
Clemens Ladisch 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
MODULE_DESCRIPTION("C-Media CMI8788 driver");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8788}}");

static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "card index");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "enable card");

static struct pci_device_id oxygen_ids[] __devinitdata = {
	{ OXYGEN_PCI_SUBID(0x10b0, 0x0216) },
	{ OXYGEN_PCI_SUBID(0x10b0, 0x0218) },
	{ OXYGEN_PCI_SUBID(0x10b0, 0x0219) },
	{ OXYGEN_PCI_SUBID(0x13f6, 0x0001) },
	{ OXYGEN_PCI_SUBID(0x13f6, 0x0010) },
	{ OXYGEN_PCI_SUBID(0x13f6, 0x8788) },
	{ OXYGEN_PCI_SUBID(0x147a, 0xa017) },
	{ OXYGEN_PCI_SUBID(0x1a58, 0x0910) },
	{ OXYGEN_PCI_SUBID(0x415a, 0x5431), .driver_data = 1 },
	{ OXYGEN_PCI_SUBID(0x7284, 0x9761) },
	{ }
};
MODULE_DEVICE_TABLE(pci, oxygen_ids);

76 77 78 79 80 81

#define GPIO_AK5385_DFS_MASK	0x0003
#define GPIO_AK5385_DFS_NORMAL	0x0000
#define GPIO_AK5385_DFS_DOUBLE	0x0001
#define GPIO_AK5385_DFS_QUAD	0x0002

82 83
#define GPIO_LINE_MUTE		CM9780_GPO0

84 85 86 87
struct generic_data {
	u8 ak4396_ctl2;
};

C
Clemens Ladisch 已提交
88 89 90 91 92
static void ak4396_write(struct oxygen *chip, unsigned int codec,
			 u8 reg, u8 value)
{
	/* maps ALSA channel pair number to SPI output */
	static const u8 codec_spi_map[4] = {
93
		0, 1, 2, 4
C
Clemens Ladisch 已提交
94
	};
95
	oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER |
C
Clemens Ladisch 已提交
96
			 OXYGEN_SPI_DATA_LENGTH_2 |
97
			 OXYGEN_SPI_CLOCK_160 |
C
Clemens Ladisch 已提交
98
			 (codec_spi_map[codec] << OXYGEN_SPI_CODEC_SHIFT) |
99
			 OXYGEN_SPI_CEN_LATCH_CLOCK_HI,
C
Clemens Ladisch 已提交
100 101 102 103 104
			 AK4396_WRITE | (reg << 8) | value);
}

static void wm8785_write(struct oxygen *chip, u8 reg, unsigned int value)
{
105
	oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER |
C
Clemens Ladisch 已提交
106
			 OXYGEN_SPI_DATA_LENGTH_2 |
107
			 OXYGEN_SPI_CLOCK_160 |
108 109
			 (3 << OXYGEN_SPI_CODEC_SHIFT) |
			 OXYGEN_SPI_CEN_LATCH_CLOCK_LO,
C
Clemens Ladisch 已提交
110 111 112 113 114
			 (reg << 9) | value);
}

static void ak4396_init(struct oxygen *chip)
{
115
	struct generic_data *data = chip->model_data;
C
Clemens Ladisch 已提交
116 117
	unsigned int i;

118
	data->ak4396_ctl2 = AK4396_DEM_OFF | AK4396_DFS_NORMAL;
C
Clemens Ladisch 已提交
119
	for (i = 0; i < 4; ++i) {
120 121 122
		ak4396_write(chip, i,
			     AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
		ak4396_write(chip, i,
123
			     AK4396_CONTROL_2, data->ak4396_ctl2);
124 125 126 127
		ak4396_write(chip, i,
			     AK4396_CONTROL_3, AK4396_PCM);
		ak4396_write(chip, i, AK4396_LCH_ATT, 0xff);
		ak4396_write(chip, i, AK4396_RCH_ATT, 0xff);
C
Clemens Ladisch 已提交
128 129 130 131 132 133
	}
	snd_component_add(chip->card, "AK4396");
}

static void ak5385_init(struct oxygen *chip)
{
134 135
	oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_AK5385_DFS_MASK);
	oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_AK5385_DFS_MASK);
C
Clemens Ladisch 已提交
136 137 138 139 140
	snd_component_add(chip->card, "AK5385");
}

static void wm8785_init(struct oxygen *chip)
{
141 142 143 144
	wm8785_write(chip, WM8785_R7, 0);
	wm8785_write(chip, WM8785_R0, WM8785_MCR_SLAVE |
		     WM8785_OSR_SINGLE | WM8785_FORMAT_LJUST);
	wm8785_write(chip, WM8785_R1, WM8785_WL_24);
C
Clemens Ladisch 已提交
145 146 147
	snd_component_add(chip->card, "WM8785");
}

148 149 150 151 152
static void cmi9780_init(struct oxygen *chip)
{
	oxygen_ac97_clear_bits(chip, 0, CM9780_GPIO_STATUS, GPIO_LINE_MUTE);
}

C
Clemens Ladisch 已提交
153 154 155 156
static void generic_init(struct oxygen *chip)
{
	ak4396_init(chip);
	wm8785_init(chip);
157
	cmi9780_init(chip);
C
Clemens Ladisch 已提交
158 159 160 161 162 163
}

static void meridian_init(struct oxygen *chip)
{
	ak4396_init(chip);
	ak5385_init(chip);
164
	cmi9780_init(chip);
C
Clemens Ladisch 已提交
165 166 167 168 169 170 171 172 173
}

static void generic_cleanup(struct oxygen *chip)
{
}

static void set_ak4396_params(struct oxygen *chip,
			      struct snd_pcm_hw_params *params)
{
174
	struct generic_data *data = chip->model_data;
C
Clemens Ladisch 已提交
175 176 177
	unsigned int i;
	u8 value;

178
	value = data->ak4396_ctl2 & ~AK4396_DFS_MASK;
C
Clemens Ladisch 已提交
179 180
	if (params_rate(params) <= 54000)
		value |= AK4396_DFS_NORMAL;
181
	else if (params_rate(params) <= 108000)
C
Clemens Ladisch 已提交
182 183 184
		value |= AK4396_DFS_DOUBLE;
	else
		value |= AK4396_DFS_QUAD;
185
	data->ak4396_ctl2 = value;
C
Clemens Ladisch 已提交
186
	for (i = 0; i < 4; ++i) {
187 188 189 190 191 192
		ak4396_write(chip, i,
			     AK4396_CONTROL_1, AK4396_DIF_24_MSB);
		ak4396_write(chip, i,
			     AK4396_CONTROL_2, value);
		ak4396_write(chip, i,
			     AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
C
Clemens Ladisch 已提交
193 194 195 196 197 198 199 200
	}
}

static void update_ak4396_volume(struct oxygen *chip)
{
	unsigned int i;

	for (i = 0; i < 4; ++i) {
201 202 203 204
		ak4396_write(chip, i,
			     AK4396_LCH_ATT, chip->dac_volume[i * 2]);
		ak4396_write(chip, i,
			     AK4396_RCH_ATT, chip->dac_volume[i * 2 + 1]);
C
Clemens Ladisch 已提交
205 206 207 208 209
	}
}

static void update_ak4396_mute(struct oxygen *chip)
{
210
	struct generic_data *data = chip->model_data;
C
Clemens Ladisch 已提交
211 212 213
	unsigned int i;
	u8 value;

214
	value = data->ak4396_ctl2 & ~AK4396_SMUTE;
C
Clemens Ladisch 已提交
215 216
	if (chip->dac_mute)
		value |= AK4396_SMUTE;
217
	data->ak4396_ctl2 = value;
C
Clemens Ladisch 已提交
218
	for (i = 0; i < 4; ++i)
219
		ak4396_write(chip, i, AK4396_CONTROL_2, value);
C
Clemens Ladisch 已提交
220 221 222 223 224 225 226
}

static void set_wm8785_params(struct oxygen *chip,
			      struct snd_pcm_hw_params *params)
{
	unsigned int value;

227
	wm8785_write(chip, WM8785_R7, 0);
C
Clemens Ladisch 已提交
228

229
	value = WM8785_MCR_SLAVE | WM8785_FORMAT_LJUST;
230 231 232
	if (params_rate(params) <= 48000)
		value |= WM8785_OSR_SINGLE;
	else if (params_rate(params) <= 96000)
C
Clemens Ladisch 已提交
233 234
		value |= WM8785_OSR_DOUBLE;
	else
235
		value |= WM8785_OSR_QUAD;
236
	wm8785_write(chip, WM8785_R0, value);
C
Clemens Ladisch 已提交
237 238 239 240 241

	if (snd_pcm_format_width(params_format(params)) <= 16)
		value = WM8785_WL_16;
	else
		value = WM8785_WL_24;
242
	wm8785_write(chip, WM8785_R1, value);
C
Clemens Ladisch 已提交
243 244 245 246 247 248 249 250
}

static void set_ak5385_params(struct oxygen *chip,
			      struct snd_pcm_hw_params *params)
{
	unsigned int value;

	if (params_rate(params) <= 54000)
251
		value = GPIO_AK5385_DFS_NORMAL;
C
Clemens Ladisch 已提交
252
	else if (params_rate(params) <= 108000)
253
		value = GPIO_AK5385_DFS_DOUBLE;
C
Clemens Ladisch 已提交
254
	else
255 256 257
		value = GPIO_AK5385_DFS_QUAD;
	oxygen_write16_masked(chip, OXYGEN_GPIO_DATA,
			      value, GPIO_AK5385_DFS_MASK);
C
Clemens Ladisch 已提交
258 259
}

260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
static void cmi9780_switch_hook(struct oxygen *chip, unsigned int codec,
				unsigned int reg, int mute)
{
	if (codec != 0)
		return;
	switch (reg) {
	case AC97_LINE:
		oxygen_write_ac97_masked(chip, 0, CM9780_GPIO_STATUS,
					 mute ? GPIO_LINE_MUTE : 0,
					 GPIO_LINE_MUTE);
		break;
	case AC97_MIC:
	case AC97_CD:
	case AC97_AUX:
		if (!mute)
			oxygen_ac97_set_bits(chip, 0, CM9780_GPIO_STATUS,
					     GPIO_LINE_MUTE);
		break;
	}
}

C
Clemens Ladisch 已提交
281 282
static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0);

283 284 285 286 287 288 289 290 291
static int ak4396_control_filter(struct snd_kcontrol_new *template)
{
	if (!strcmp(template->name, "Master Playback Volume")) {
		template->access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
		template->tlv.p = ak4396_db_scale;
	}
	return 0;
}

C
Clemens Ladisch 已提交
292 293 294 295 296 297
static const struct oxygen_model model_generic = {
	.shortname = "C-Media CMI8788",
	.longname = "C-Media Oxygen HD Audio",
	.chip = "CMI8788",
	.owner = THIS_MODULE,
	.init = generic_init,
298
	.control_filter = ak4396_control_filter,
C
Clemens Ladisch 已提交
299 300 301 302 303
	.cleanup = generic_cleanup,
	.set_dac_params = set_ak4396_params,
	.set_adc_params = set_wm8785_params,
	.update_dac_volume = update_ak4396_volume,
	.update_dac_mute = update_ak4396_mute,
304
	.ac97_switch_hook = cmi9780_switch_hook,
305
	.model_data_size = sizeof(struct generic_data),
306
	.dac_channels = 8,
307 308 309 310 311
	.used_channels = OXYGEN_CHANNEL_A |
			 OXYGEN_CHANNEL_C |
			 OXYGEN_CHANNEL_SPDIF |
			 OXYGEN_CHANNEL_MULTICH |
			 OXYGEN_CHANNEL_AC97,
312
	.function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5,
313 314
	.dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
	.adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
C
Clemens Ladisch 已提交
315 316 317 318 319 320 321
};
static const struct oxygen_model model_meridian = {
	.shortname = "C-Media CMI8788",
	.longname = "C-Media Oxygen HD Audio",
	.chip = "CMI8788",
	.owner = THIS_MODULE,
	.init = meridian_init,
322
	.control_filter = ak4396_control_filter,
C
Clemens Ladisch 已提交
323 324 325 326 327
	.cleanup = generic_cleanup,
	.set_dac_params = set_ak4396_params,
	.set_adc_params = set_ak5385_params,
	.update_dac_volume = update_ak4396_volume,
	.update_dac_mute = update_ak4396_mute,
328
	.ac97_switch_hook = cmi9780_switch_hook,
329
	.model_data_size = sizeof(struct generic_data),
330
	.dac_channels = 8,
331 332 333 334 335
	.used_channels = OXYGEN_CHANNEL_B |
			 OXYGEN_CHANNEL_C |
			 OXYGEN_CHANNEL_SPDIF |
			 OXYGEN_CHANNEL_MULTICH |
			 OXYGEN_CHANNEL_AC97,
336
	.function_flags = OXYGEN_FUNCTION_ENABLE_SPI_4_5,
337 338
	.dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
	.adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
C
Clemens Ladisch 已提交
339 340 341 342 343 344
};

static int __devinit generic_oxygen_probe(struct pci_dev *pci,
					  const struct pci_device_id *pci_id)
{
	static int dev;
345
	int is_meridian;
C
Clemens Ladisch 已提交
346 347 348 349 350 351 352 353
	int err;

	if (dev >= SNDRV_CARDS)
		return -ENODEV;
	if (!enable[dev]) {
		++dev;
		return -ENOENT;
	}
354 355 356
	is_meridian = pci_id->driver_data;
	err = oxygen_pci_probe(pci, index[dev], id[dev], is_meridian,
			       is_meridian ? &model_meridian : &model_generic);
C
Clemens Ladisch 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	if (err >= 0)
		++dev;
	return err;
}

static struct pci_driver oxygen_driver = {
	.name = "CMI8788",
	.id_table = oxygen_ids,
	.probe = generic_oxygen_probe,
	.remove = __devexit_p(oxygen_pci_remove),
};

static int __init alsa_card_oxygen_init(void)
{
	return pci_register_driver(&oxygen_driver);
}

static void __exit alsa_card_oxygen_exit(void)
{
	pci_unregister_driver(&oxygen_driver);
}

module_init(alsa_card_oxygen_init)
module_exit(alsa_card_oxygen_exit)