Linux Audio

Check our new training course

Loading...
v4.6
 
   1/*
   2 *  The driver for the ForteMedia FM801 based soundcards
   3 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
   4 *
   5 *   This program is free software; you can redistribute it and/or modify
   6 *   it under the terms of the GNU General Public License as published by
   7 *   the Free Software Foundation; either version 2 of the License, or
   8 *   (at your option) any later version.
   9 *
  10 *   This program is distributed in the hope that it will be useful,
  11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13 *   GNU General Public License for more details.
  14 *
  15 */
  16
  17#include <linux/delay.h>
  18#include <linux/init.h>
  19#include <linux/interrupt.h>
  20#include <linux/io.h>
  21#include <linux/pci.h>
  22#include <linux/slab.h>
  23#include <linux/module.h>
  24#include <sound/core.h>
  25#include <sound/pcm.h>
  26#include <sound/tlv.h>
  27#include <sound/ac97_codec.h>
  28#include <sound/mpu401.h>
  29#include <sound/opl3.h>
  30#include <sound/initval.h>
  31
  32#ifdef CONFIG_SND_FM801_TEA575X_BOOL
  33#include <media/drv-intf/tea575x.h>
  34#endif
  35
  36MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  37MODULE_DESCRIPTION("ForteMedia FM801");
  38MODULE_LICENSE("GPL");
  39MODULE_SUPPORTED_DEVICE("{{ForteMedia,FM801},"
  40		"{Genius,SoundMaker Live 5.1}}");
  41
  42static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
  43static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
  44static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
  45/*
  46 *  Enable TEA575x tuner
  47 *    1 = MediaForte 256-PCS
  48 *    2 = MediaForte 256-PCP
  49 *    3 = MediaForte 64-PCR
  50 *   16 = setup tuner only (this is additional bit), i.e. SF64-PCR FM card
  51 *  High 16-bits are video (radio) device number + 1
  52 */
  53static int tea575x_tuner[SNDRV_CARDS];
  54static int radio_nr[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};
  55
  56module_param_array(index, int, NULL, 0444);
  57MODULE_PARM_DESC(index, "Index value for the FM801 soundcard.");
  58module_param_array(id, charp, NULL, 0444);
  59MODULE_PARM_DESC(id, "ID string for the FM801 soundcard.");
  60module_param_array(enable, bool, NULL, 0444);
  61MODULE_PARM_DESC(enable, "Enable FM801 soundcard.");
  62module_param_array(tea575x_tuner, int, NULL, 0444);
  63MODULE_PARM_DESC(tea575x_tuner, "TEA575x tuner access method (0 = auto, 1 = SF256-PCS, 2=SF256-PCP, 3=SF64-PCR, 8=disable, +16=tuner-only).");
  64module_param_array(radio_nr, int, NULL, 0444);
  65MODULE_PARM_DESC(radio_nr, "Radio device numbers");
  66
  67
  68#define TUNER_DISABLED		(1<<3)
  69#define TUNER_ONLY		(1<<4)
  70#define TUNER_TYPE_MASK		(~TUNER_ONLY & 0xFFFF)
  71
  72/*
  73 *  Direct registers
  74 */
  75
  76#define fm801_writew(chip,reg,value)	outw((value), chip->port + FM801_##reg)
  77#define fm801_readw(chip,reg)		inw(chip->port + FM801_##reg)
  78
  79#define fm801_writel(chip,reg,value)	outl((value), chip->port + FM801_##reg)
  80
  81#define FM801_PCM_VOL		0x00	/* PCM Output Volume */
  82#define FM801_FM_VOL		0x02	/* FM Output Volume */
  83#define FM801_I2S_VOL		0x04	/* I2S Volume */
  84#define FM801_REC_SRC		0x06	/* Record Source */
  85#define FM801_PLY_CTRL		0x08	/* Playback Control */
  86#define FM801_PLY_COUNT		0x0a	/* Playback Count */
  87#define FM801_PLY_BUF1		0x0c	/* Playback Bufer I */
  88#define FM801_PLY_BUF2		0x10	/* Playback Buffer II */
  89#define FM801_CAP_CTRL		0x14	/* Capture Control */
  90#define FM801_CAP_COUNT		0x16	/* Capture Count */
  91#define FM801_CAP_BUF1		0x18	/* Capture Buffer I */
  92#define FM801_CAP_BUF2		0x1c	/* Capture Buffer II */
  93#define FM801_CODEC_CTRL	0x22	/* Codec Control */
  94#define FM801_I2S_MODE		0x24	/* I2S Mode Control */
  95#define FM801_VOLUME		0x26	/* Volume Up/Down/Mute Status */
  96#define FM801_I2C_CTRL		0x29	/* I2C Control */
  97#define FM801_AC97_CMD		0x2a	/* AC'97 Command */
  98#define FM801_AC97_DATA		0x2c	/* AC'97 Data */
  99#define FM801_MPU401_DATA	0x30	/* MPU401 Data */
 100#define FM801_MPU401_CMD	0x31	/* MPU401 Command */
 101#define FM801_GPIO_CTRL		0x52	/* General Purpose I/O Control */
 102#define FM801_GEN_CTRL		0x54	/* General Control */
 103#define FM801_IRQ_MASK		0x56	/* Interrupt Mask */
 104#define FM801_IRQ_STATUS	0x5a	/* Interrupt Status */
 105#define FM801_OPL3_BANK0	0x68	/* OPL3 Status Read / Bank 0 Write */
 106#define FM801_OPL3_DATA0	0x69	/* OPL3 Data 0 Write */
 107#define FM801_OPL3_BANK1	0x6a	/* OPL3 Bank 1 Write */
 108#define FM801_OPL3_DATA1	0x6b	/* OPL3 Bank 1 Write */
 109#define FM801_POWERDOWN		0x70	/* Blocks Power Down Control */
 110
 111/* codec access */
 112#define FM801_AC97_READ		(1<<7)	/* read=1, write=0 */
 113#define FM801_AC97_VALID	(1<<8)	/* port valid=1 */
 114#define FM801_AC97_BUSY		(1<<9)	/* busy=1 */
 115#define FM801_AC97_ADDR_SHIFT	10	/* codec id (2bit) */
 116
 117/* playback and record control register bits */
 118#define FM801_BUF1_LAST		(1<<1)
 119#define FM801_BUF2_LAST		(1<<2)
 120#define FM801_START		(1<<5)
 121#define FM801_PAUSE		(1<<6)
 122#define FM801_IMMED_STOP	(1<<7)
 123#define FM801_RATE_SHIFT	8
 124#define FM801_RATE_MASK		(15 << FM801_RATE_SHIFT)
 125#define FM801_CHANNELS_4	(1<<12)	/* playback only */
 126#define FM801_CHANNELS_6	(2<<12)	/* playback only */
 127#define FM801_CHANNELS_6MS	(3<<12)	/* playback only */
 128#define FM801_CHANNELS_MASK	(3<<12)
 129#define FM801_16BIT		(1<<14)
 130#define FM801_STEREO		(1<<15)
 131
 132/* IRQ status bits */
 133#define FM801_IRQ_PLAYBACK	(1<<8)
 134#define FM801_IRQ_CAPTURE	(1<<9)
 135#define FM801_IRQ_VOLUME	(1<<14)
 136#define FM801_IRQ_MPU		(1<<15)
 137
 138/* GPIO control register */
 139#define FM801_GPIO_GP0		(1<<0)	/* read/write */
 140#define FM801_GPIO_GP1		(1<<1)
 141#define FM801_GPIO_GP2		(1<<2)
 142#define FM801_GPIO_GP3		(1<<3)
 143#define FM801_GPIO_GP(x)	(1<<(0+(x)))
 144#define FM801_GPIO_GD0		(1<<8)	/* directions: 1 = input, 0 = output*/
 145#define FM801_GPIO_GD1		(1<<9)
 146#define FM801_GPIO_GD2		(1<<10)
 147#define FM801_GPIO_GD3		(1<<11)
 148#define FM801_GPIO_GD(x)	(1<<(8+(x)))
 149#define FM801_GPIO_GS0		(1<<12)	/* function select: */
 150#define FM801_GPIO_GS1		(1<<13)	/*    1 = GPIO */
 151#define FM801_GPIO_GS2		(1<<14)	/*    0 = other (S/PDIF, VOL) */
 152#define FM801_GPIO_GS3		(1<<15)
 153#define FM801_GPIO_GS(x)	(1<<(12+(x)))
 154	
 155/**
 156 * struct fm801 - describes FM801 chip
 
 
 157 * @port:		I/O port number
 158 * @multichannel:	multichannel support
 159 * @secondary:		secondary codec
 160 * @secondary_addr:	address of the secondary codec
 161 * @tea575x_tuner:	tuner access method & flags
 162 * @ply_ctrl:		playback control
 163 * @cap_ctrl:		capture control
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 164 */
 165struct fm801 {
 166	struct device *dev;
 167	int irq;
 168
 169	unsigned long port;
 170	unsigned int multichannel: 1,
 171		     secondary: 1;
 172	unsigned char secondary_addr;
 173	unsigned int tea575x_tuner;
 174
 175	unsigned short ply_ctrl;
 176	unsigned short cap_ctrl;
 177
 178	unsigned long ply_buffer;
 179	unsigned int ply_buf;
 180	unsigned int ply_count;
 181	unsigned int ply_size;
 182	unsigned int ply_pos;
 183
 184	unsigned long cap_buffer;
 185	unsigned int cap_buf;
 186	unsigned int cap_count;
 187	unsigned int cap_size;
 188	unsigned int cap_pos;
 189
 190	struct snd_ac97_bus *ac97_bus;
 191	struct snd_ac97 *ac97;
 192	struct snd_ac97 *ac97_sec;
 193
 194	struct snd_card *card;
 195	struct snd_pcm *pcm;
 196	struct snd_rawmidi *rmidi;
 197	struct snd_pcm_substream *playback_substream;
 198	struct snd_pcm_substream *capture_substream;
 199	unsigned int p_dma_size;
 200	unsigned int c_dma_size;
 201
 202	spinlock_t reg_lock;
 203	struct snd_info_entry *proc_entry;
 204
 205#ifdef CONFIG_SND_FM801_TEA575X_BOOL
 206	struct v4l2_device v4l2_dev;
 207	struct snd_tea575x tea;
 208#endif
 209
 210#ifdef CONFIG_PM_SLEEP
 211	u16 saved_regs[0x20];
 212#endif
 213};
 214
 215/*
 216 * IO accessors
 217 */
 218
 219static inline void fm801_iowrite16(struct fm801 *chip, unsigned short offset, u16 value)
 220{
 221	outw(value, chip->port + offset);
 222}
 223
 224static inline u16 fm801_ioread16(struct fm801 *chip, unsigned short offset)
 225{
 226	return inw(chip->port + offset);
 227}
 228
 229static const struct pci_device_id snd_fm801_ids[] = {
 230	{ 0x1319, 0x0801, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0, },   /* FM801 */
 231	{ 0x5213, 0x0510, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0, },   /* Gallant Odyssey Sound 4 */
 232	{ 0, }
 233};
 234
 235MODULE_DEVICE_TABLE(pci, snd_fm801_ids);
 236
 237/*
 238 *  common I/O routines
 239 */
 240
 241static bool fm801_ac97_is_ready(struct fm801 *chip, unsigned int iterations)
 242{
 243	unsigned int idx;
 244
 245	for (idx = 0; idx < iterations; idx++) {
 246		if (!(fm801_readw(chip, AC97_CMD) & FM801_AC97_BUSY))
 247			return true;
 248		udelay(10);
 249	}
 250	return false;
 251}
 252
 253static bool fm801_ac97_is_valid(struct fm801 *chip, unsigned int iterations)
 254{
 255	unsigned int idx;
 256
 257	for (idx = 0; idx < iterations; idx++) {
 258		if (fm801_readw(chip, AC97_CMD) & FM801_AC97_VALID)
 259			return true;
 260		udelay(10);
 261	}
 262	return false;
 263}
 264
 265static int snd_fm801_update_bits(struct fm801 *chip, unsigned short reg,
 266				 unsigned short mask, unsigned short value)
 267{
 268	int change;
 269	unsigned long flags;
 270	unsigned short old, new;
 271
 272	spin_lock_irqsave(&chip->reg_lock, flags);
 273	old = fm801_ioread16(chip, reg);
 274	new = (old & ~mask) | value;
 275	change = old != new;
 276	if (change)
 277		fm801_iowrite16(chip, reg, new);
 278	spin_unlock_irqrestore(&chip->reg_lock, flags);
 279	return change;
 280}
 281
 282static void snd_fm801_codec_write(struct snd_ac97 *ac97,
 283				  unsigned short reg,
 284				  unsigned short val)
 285{
 286	struct fm801 *chip = ac97->private_data;
 287
 288	/*
 289	 *  Wait until the codec interface is not ready..
 290	 */
 291	if (!fm801_ac97_is_ready(chip, 100)) {
 292		dev_err(chip->card->dev, "AC'97 interface is busy (1)\n");
 293		return;
 294	}
 295
 296	/* write data and address */
 297	fm801_writew(chip, AC97_DATA, val);
 298	fm801_writew(chip, AC97_CMD, reg | (ac97->addr << FM801_AC97_ADDR_SHIFT));
 299	/*
 300	 *  Wait until the write command is not completed..
 301	 */
 302	if (!fm801_ac97_is_ready(chip, 1000))
 303		dev_err(chip->card->dev, "AC'97 interface #%d is busy (2)\n",
 304		ac97->num);
 305}
 306
 307static unsigned short snd_fm801_codec_read(struct snd_ac97 *ac97, unsigned short reg)
 308{
 309	struct fm801 *chip = ac97->private_data;
 310
 311	/*
 312	 *  Wait until the codec interface is not ready..
 313	 */
 314	if (!fm801_ac97_is_ready(chip, 100)) {
 315		dev_err(chip->card->dev, "AC'97 interface is busy (1)\n");
 316		return 0;
 317	}
 318
 319	/* read command */
 320	fm801_writew(chip, AC97_CMD,
 321		     reg | (ac97->addr << FM801_AC97_ADDR_SHIFT) | FM801_AC97_READ);
 322	if (!fm801_ac97_is_ready(chip, 100)) {
 323		dev_err(chip->card->dev, "AC'97 interface #%d is busy (2)\n",
 324			ac97->num);
 325		return 0;
 326	}
 327
 328	if (!fm801_ac97_is_valid(chip, 1000)) {
 329		dev_err(chip->card->dev,
 330			"AC'97 interface #%d is not valid (2)\n", ac97->num);
 331		return 0;
 332	}
 333
 334	return fm801_readw(chip, AC97_DATA);
 335}
 336
 337static unsigned int rates[] = {
 338  5500,  8000,  9600, 11025,
 339  16000, 19200, 22050, 32000,
 340  38400, 44100, 48000
 341};
 342
 343static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
 344	.count = ARRAY_SIZE(rates),
 345	.list = rates,
 346	.mask = 0,
 347};
 348
 349static unsigned int channels[] = {
 350  2, 4, 6
 351};
 352
 353static struct snd_pcm_hw_constraint_list hw_constraints_channels = {
 354	.count = ARRAY_SIZE(channels),
 355	.list = channels,
 356	.mask = 0,
 357};
 358
 359/*
 360 *  Sample rate routines
 361 */
 362
 363static unsigned short snd_fm801_rate_bits(unsigned int rate)
 364{
 365	unsigned int idx;
 366
 367	for (idx = 0; idx < ARRAY_SIZE(rates); idx++)
 368		if (rates[idx] == rate)
 369			return idx;
 370	snd_BUG();
 371	return ARRAY_SIZE(rates) - 1;
 372}
 373
 374/*
 375 *  PCM part
 376 */
 377
 378static int snd_fm801_playback_trigger(struct snd_pcm_substream *substream,
 379				      int cmd)
 380{
 381	struct fm801 *chip = snd_pcm_substream_chip(substream);
 382
 383	spin_lock(&chip->reg_lock);
 384	switch (cmd) {
 385	case SNDRV_PCM_TRIGGER_START:
 386		chip->ply_ctrl &= ~(FM801_BUF1_LAST |
 387				     FM801_BUF2_LAST |
 388				     FM801_PAUSE);
 389		chip->ply_ctrl |= FM801_START |
 390				   FM801_IMMED_STOP;
 391		break;
 392	case SNDRV_PCM_TRIGGER_STOP:
 393		chip->ply_ctrl &= ~(FM801_START | FM801_PAUSE);
 394		break;
 395	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 396	case SNDRV_PCM_TRIGGER_SUSPEND:
 397		chip->ply_ctrl |= FM801_PAUSE;
 398		break;
 399	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 400	case SNDRV_PCM_TRIGGER_RESUME:
 401		chip->ply_ctrl &= ~FM801_PAUSE;
 402		break;
 403	default:
 404		spin_unlock(&chip->reg_lock);
 405		snd_BUG();
 406		return -EINVAL;
 407	}
 408	fm801_writew(chip, PLY_CTRL, chip->ply_ctrl);
 409	spin_unlock(&chip->reg_lock);
 410	return 0;
 411}
 412
 413static int snd_fm801_capture_trigger(struct snd_pcm_substream *substream,
 414				     int cmd)
 415{
 416	struct fm801 *chip = snd_pcm_substream_chip(substream);
 417
 418	spin_lock(&chip->reg_lock);
 419	switch (cmd) {
 420	case SNDRV_PCM_TRIGGER_START:
 421		chip->cap_ctrl &= ~(FM801_BUF1_LAST |
 422				     FM801_BUF2_LAST |
 423				     FM801_PAUSE);
 424		chip->cap_ctrl |= FM801_START |
 425				   FM801_IMMED_STOP;
 426		break;
 427	case SNDRV_PCM_TRIGGER_STOP:
 428		chip->cap_ctrl &= ~(FM801_START | FM801_PAUSE);
 429		break;
 430	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 431	case SNDRV_PCM_TRIGGER_SUSPEND:
 432		chip->cap_ctrl |= FM801_PAUSE;
 433		break;
 434	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 435	case SNDRV_PCM_TRIGGER_RESUME:
 436		chip->cap_ctrl &= ~FM801_PAUSE;
 437		break;
 438	default:
 439		spin_unlock(&chip->reg_lock);
 440		snd_BUG();
 441		return -EINVAL;
 442	}
 443	fm801_writew(chip, CAP_CTRL, chip->cap_ctrl);
 444	spin_unlock(&chip->reg_lock);
 445	return 0;
 446}
 447
 448static int snd_fm801_hw_params(struct snd_pcm_substream *substream,
 449			       struct snd_pcm_hw_params *hw_params)
 450{
 451	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
 452}
 453
 454static int snd_fm801_hw_free(struct snd_pcm_substream *substream)
 455{
 456	return snd_pcm_lib_free_pages(substream);
 457}
 458
 459static int snd_fm801_playback_prepare(struct snd_pcm_substream *substream)
 460{
 461	struct fm801 *chip = snd_pcm_substream_chip(substream);
 462	struct snd_pcm_runtime *runtime = substream->runtime;
 463
 464	chip->ply_size = snd_pcm_lib_buffer_bytes(substream);
 465	chip->ply_count = snd_pcm_lib_period_bytes(substream);
 466	spin_lock_irq(&chip->reg_lock);
 467	chip->ply_ctrl &= ~(FM801_START | FM801_16BIT |
 468			     FM801_STEREO | FM801_RATE_MASK |
 469			     FM801_CHANNELS_MASK);
 470	if (snd_pcm_format_width(runtime->format) == 16)
 471		chip->ply_ctrl |= FM801_16BIT;
 472	if (runtime->channels > 1) {
 473		chip->ply_ctrl |= FM801_STEREO;
 474		if (runtime->channels == 4)
 475			chip->ply_ctrl |= FM801_CHANNELS_4;
 476		else if (runtime->channels == 6)
 477			chip->ply_ctrl |= FM801_CHANNELS_6;
 478	}
 479	chip->ply_ctrl |= snd_fm801_rate_bits(runtime->rate) << FM801_RATE_SHIFT;
 480	chip->ply_buf = 0;
 481	fm801_writew(chip, PLY_CTRL, chip->ply_ctrl);
 482	fm801_writew(chip, PLY_COUNT, chip->ply_count - 1);
 483	chip->ply_buffer = runtime->dma_addr;
 484	chip->ply_pos = 0;
 485	fm801_writel(chip, PLY_BUF1, chip->ply_buffer);
 486	fm801_writel(chip, PLY_BUF2,
 487		     chip->ply_buffer + (chip->ply_count % chip->ply_size));
 488	spin_unlock_irq(&chip->reg_lock);
 489	return 0;
 490}
 491
 492static int snd_fm801_capture_prepare(struct snd_pcm_substream *substream)
 493{
 494	struct fm801 *chip = snd_pcm_substream_chip(substream);
 495	struct snd_pcm_runtime *runtime = substream->runtime;
 496
 497	chip->cap_size = snd_pcm_lib_buffer_bytes(substream);
 498	chip->cap_count = snd_pcm_lib_period_bytes(substream);
 499	spin_lock_irq(&chip->reg_lock);
 500	chip->cap_ctrl &= ~(FM801_START | FM801_16BIT |
 501			     FM801_STEREO | FM801_RATE_MASK);
 502	if (snd_pcm_format_width(runtime->format) == 16)
 503		chip->cap_ctrl |= FM801_16BIT;
 504	if (runtime->channels > 1)
 505		chip->cap_ctrl |= FM801_STEREO;
 506	chip->cap_ctrl |= snd_fm801_rate_bits(runtime->rate) << FM801_RATE_SHIFT;
 507	chip->cap_buf = 0;
 508	fm801_writew(chip, CAP_CTRL, chip->cap_ctrl);
 509	fm801_writew(chip, CAP_COUNT, chip->cap_count - 1);
 510	chip->cap_buffer = runtime->dma_addr;
 511	chip->cap_pos = 0;
 512	fm801_writel(chip, CAP_BUF1, chip->cap_buffer);
 513	fm801_writel(chip, CAP_BUF2,
 514		     chip->cap_buffer + (chip->cap_count % chip->cap_size));
 515	spin_unlock_irq(&chip->reg_lock);
 516	return 0;
 517}
 518
 519static snd_pcm_uframes_t snd_fm801_playback_pointer(struct snd_pcm_substream *substream)
 520{
 521	struct fm801 *chip = snd_pcm_substream_chip(substream);
 522	size_t ptr;
 523
 524	if (!(chip->ply_ctrl & FM801_START))
 525		return 0;
 526	spin_lock(&chip->reg_lock);
 527	ptr = chip->ply_pos + (chip->ply_count - 1) - fm801_readw(chip, PLY_COUNT);
 528	if (fm801_readw(chip, IRQ_STATUS) & FM801_IRQ_PLAYBACK) {
 529		ptr += chip->ply_count;
 530		ptr %= chip->ply_size;
 531	}
 532	spin_unlock(&chip->reg_lock);
 533	return bytes_to_frames(substream->runtime, ptr);
 534}
 535
 536static snd_pcm_uframes_t snd_fm801_capture_pointer(struct snd_pcm_substream *substream)
 537{
 538	struct fm801 *chip = snd_pcm_substream_chip(substream);
 539	size_t ptr;
 540
 541	if (!(chip->cap_ctrl & FM801_START))
 542		return 0;
 543	spin_lock(&chip->reg_lock);
 544	ptr = chip->cap_pos + (chip->cap_count - 1) - fm801_readw(chip, CAP_COUNT);
 545	if (fm801_readw(chip, IRQ_STATUS) & FM801_IRQ_CAPTURE) {
 546		ptr += chip->cap_count;
 547		ptr %= chip->cap_size;
 548	}
 549	spin_unlock(&chip->reg_lock);
 550	return bytes_to_frames(substream->runtime, ptr);
 551}
 552
 553static irqreturn_t snd_fm801_interrupt(int irq, void *dev_id)
 554{
 555	struct fm801 *chip = dev_id;
 556	unsigned short status;
 557	unsigned int tmp;
 558
 559	status = fm801_readw(chip, IRQ_STATUS);
 560	status &= FM801_IRQ_PLAYBACK|FM801_IRQ_CAPTURE|FM801_IRQ_MPU|FM801_IRQ_VOLUME;
 561	if (! status)
 562		return IRQ_NONE;
 563	/* ack first */
 564	fm801_writew(chip, IRQ_STATUS, status);
 565	if (chip->pcm && (status & FM801_IRQ_PLAYBACK) && chip->playback_substream) {
 566		spin_lock(&chip->reg_lock);
 567		chip->ply_buf++;
 568		chip->ply_pos += chip->ply_count;
 569		chip->ply_pos %= chip->ply_size;
 570		tmp = chip->ply_pos + chip->ply_count;
 571		tmp %= chip->ply_size;
 572		if (chip->ply_buf & 1)
 573			fm801_writel(chip, PLY_BUF1, chip->ply_buffer + tmp);
 574		else
 575			fm801_writel(chip, PLY_BUF2, chip->ply_buffer + tmp);
 576		spin_unlock(&chip->reg_lock);
 577		snd_pcm_period_elapsed(chip->playback_substream);
 578	}
 579	if (chip->pcm && (status & FM801_IRQ_CAPTURE) && chip->capture_substream) {
 580		spin_lock(&chip->reg_lock);
 581		chip->cap_buf++;
 582		chip->cap_pos += chip->cap_count;
 583		chip->cap_pos %= chip->cap_size;
 584		tmp = chip->cap_pos + chip->cap_count;
 585		tmp %= chip->cap_size;
 586		if (chip->cap_buf & 1)
 587			fm801_writel(chip, CAP_BUF1, chip->cap_buffer + tmp);
 588		else
 589			fm801_writel(chip, CAP_BUF2, chip->cap_buffer + tmp);
 590		spin_unlock(&chip->reg_lock);
 591		snd_pcm_period_elapsed(chip->capture_substream);
 592	}
 593	if (chip->rmidi && (status & FM801_IRQ_MPU))
 594		snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
 595	if (status & FM801_IRQ_VOLUME) {
 596		/* TODO */
 597	}
 598
 599	return IRQ_HANDLED;
 600}
 601
 602static struct snd_pcm_hardware snd_fm801_playback =
 603{
 604	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
 605				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
 606				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME |
 607				 SNDRV_PCM_INFO_MMAP_VALID),
 608	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
 609	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
 610	.rate_min =		5500,
 611	.rate_max =		48000,
 612	.channels_min =		1,
 613	.channels_max =		2,
 614	.buffer_bytes_max =	(128*1024),
 615	.period_bytes_min =	64,
 616	.period_bytes_max =	(128*1024),
 617	.periods_min =		1,
 618	.periods_max =		1024,
 619	.fifo_size =		0,
 620};
 621
 622static struct snd_pcm_hardware snd_fm801_capture =
 623{
 624	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
 625				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
 626				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME |
 627				 SNDRV_PCM_INFO_MMAP_VALID),
 628	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
 629	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
 630	.rate_min =		5500,
 631	.rate_max =		48000,
 632	.channels_min =		1,
 633	.channels_max =		2,
 634	.buffer_bytes_max =	(128*1024),
 635	.period_bytes_min =	64,
 636	.period_bytes_max =	(128*1024),
 637	.periods_min =		1,
 638	.periods_max =		1024,
 639	.fifo_size =		0,
 640};
 641
 642static int snd_fm801_playback_open(struct snd_pcm_substream *substream)
 643{
 644	struct fm801 *chip = snd_pcm_substream_chip(substream);
 645	struct snd_pcm_runtime *runtime = substream->runtime;
 646	int err;
 647
 648	chip->playback_substream = substream;
 649	runtime->hw = snd_fm801_playback;
 650	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
 651				   &hw_constraints_rates);
 652	if (chip->multichannel) {
 653		runtime->hw.channels_max = 6;
 654		snd_pcm_hw_constraint_list(runtime, 0,
 655					   SNDRV_PCM_HW_PARAM_CHANNELS,
 656					   &hw_constraints_channels);
 657	}
 658	if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
 
 659		return err;
 660	return 0;
 661}
 662
 663static int snd_fm801_capture_open(struct snd_pcm_substream *substream)
 664{
 665	struct fm801 *chip = snd_pcm_substream_chip(substream);
 666	struct snd_pcm_runtime *runtime = substream->runtime;
 667	int err;
 668
 669	chip->capture_substream = substream;
 670	runtime->hw = snd_fm801_capture;
 671	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
 672				   &hw_constraints_rates);
 673	if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
 
 674		return err;
 675	return 0;
 676}
 677
 678static int snd_fm801_playback_close(struct snd_pcm_substream *substream)
 679{
 680	struct fm801 *chip = snd_pcm_substream_chip(substream);
 681
 682	chip->playback_substream = NULL;
 683	return 0;
 684}
 685
 686static int snd_fm801_capture_close(struct snd_pcm_substream *substream)
 687{
 688	struct fm801 *chip = snd_pcm_substream_chip(substream);
 689
 690	chip->capture_substream = NULL;
 691	return 0;
 692}
 693
 694static struct snd_pcm_ops snd_fm801_playback_ops = {
 695	.open =		snd_fm801_playback_open,
 696	.close =	snd_fm801_playback_close,
 697	.ioctl =	snd_pcm_lib_ioctl,
 698	.hw_params =	snd_fm801_hw_params,
 699	.hw_free =	snd_fm801_hw_free,
 700	.prepare =	snd_fm801_playback_prepare,
 701	.trigger =	snd_fm801_playback_trigger,
 702	.pointer =	snd_fm801_playback_pointer,
 703};
 704
 705static struct snd_pcm_ops snd_fm801_capture_ops = {
 706	.open =		snd_fm801_capture_open,
 707	.close =	snd_fm801_capture_close,
 708	.ioctl =	snd_pcm_lib_ioctl,
 709	.hw_params =	snd_fm801_hw_params,
 710	.hw_free =	snd_fm801_hw_free,
 711	.prepare =	snd_fm801_capture_prepare,
 712	.trigger =	snd_fm801_capture_trigger,
 713	.pointer =	snd_fm801_capture_pointer,
 714};
 715
 716static int snd_fm801_pcm(struct fm801 *chip, int device)
 717{
 718	struct pci_dev *pdev = to_pci_dev(chip->dev);
 719	struct snd_pcm *pcm;
 720	int err;
 721
 722	if ((err = snd_pcm_new(chip->card, "FM801", device, 1, 1, &pcm)) < 0)
 
 723		return err;
 724
 725	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_fm801_playback_ops);
 726	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_fm801_capture_ops);
 727
 728	pcm->private_data = chip;
 729	pcm->info_flags = 0;
 730	strcpy(pcm->name, "FM801");
 731	chip->pcm = pcm;
 732
 733	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
 734					      snd_dma_pci_data(pdev),
 735					      chip->multichannel ? 128*1024 : 64*1024, 128*1024);
 736
 737	return snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
 738				     snd_pcm_alt_chmaps,
 739				     chip->multichannel ? 6 : 2, 0,
 740				     NULL);
 741}
 742
 743/*
 744 *  TEA5757 radio
 745 */
 746
 747#ifdef CONFIG_SND_FM801_TEA575X_BOOL
 748
 749/* GPIO to TEA575x maps */
 750struct snd_fm801_tea575x_gpio {
 751	u8 data, clk, wren, most;
 752	char *name;
 753};
 754
 755static struct snd_fm801_tea575x_gpio snd_fm801_tea575x_gpios[] = {
 756	{ .data = 1, .clk = 3, .wren = 2, .most = 0, .name = "SF256-PCS" },
 757	{ .data = 1, .clk = 0, .wren = 2, .most = 3, .name = "SF256-PCP" },
 758	{ .data = 2, .clk = 0, .wren = 1, .most = 3, .name = "SF64-PCR" },
 759};
 760
 761#define get_tea575x_gpio(chip) \
 762	(&snd_fm801_tea575x_gpios[((chip)->tea575x_tuner & TUNER_TYPE_MASK) - 1])
 763
 764static void snd_fm801_tea575x_set_pins(struct snd_tea575x *tea, u8 pins)
 765{
 766	struct fm801 *chip = tea->private_data;
 767	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 768	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 769
 770	reg &= ~(FM801_GPIO_GP(gpio.data) |
 771		 FM801_GPIO_GP(gpio.clk) |
 772		 FM801_GPIO_GP(gpio.wren));
 773
 774	reg |= (pins & TEA575X_DATA) ? FM801_GPIO_GP(gpio.data) : 0;
 775	reg |= (pins & TEA575X_CLK)  ? FM801_GPIO_GP(gpio.clk) : 0;
 776	/* WRITE_ENABLE is inverted */
 777	reg |= (pins & TEA575X_WREN) ? 0 : FM801_GPIO_GP(gpio.wren);
 778
 779	fm801_writew(chip, GPIO_CTRL, reg);
 780}
 781
 782static u8 snd_fm801_tea575x_get_pins(struct snd_tea575x *tea)
 783{
 784	struct fm801 *chip = tea->private_data;
 785	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 786	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 787	u8 ret;
 788
 789	ret = 0;
 790	if (reg & FM801_GPIO_GP(gpio.data))
 791		ret |= TEA575X_DATA;
 792	if (reg & FM801_GPIO_GP(gpio.most))
 793		ret |= TEA575X_MOST;
 794	return ret;
 795}
 796
 797static void snd_fm801_tea575x_set_direction(struct snd_tea575x *tea, bool output)
 798{
 799	struct fm801 *chip = tea->private_data;
 800	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 801	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 802
 803	/* use GPIO lines and set write enable bit */
 804	reg |= FM801_GPIO_GS(gpio.data) |
 805	       FM801_GPIO_GS(gpio.wren) |
 806	       FM801_GPIO_GS(gpio.clk) |
 807	       FM801_GPIO_GS(gpio.most);
 808	if (output) {
 809		/* all of lines are in the write direction */
 810		/* clear data and clock lines */
 811		reg &= ~(FM801_GPIO_GD(gpio.data) |
 812			 FM801_GPIO_GD(gpio.wren) |
 813			 FM801_GPIO_GD(gpio.clk) |
 814			 FM801_GPIO_GP(gpio.data) |
 815			 FM801_GPIO_GP(gpio.clk) |
 816			 FM801_GPIO_GP(gpio.wren));
 817	} else {
 818		/* use GPIO lines, set data direction to input */
 819		reg |= FM801_GPIO_GD(gpio.data) |
 820		       FM801_GPIO_GD(gpio.most) |
 821		       FM801_GPIO_GP(gpio.data) |
 822		       FM801_GPIO_GP(gpio.most) |
 823		       FM801_GPIO_GP(gpio.wren);
 824		/* all of lines are in the write direction, except data */
 825		/* clear data, write enable and clock lines */
 826		reg &= ~(FM801_GPIO_GD(gpio.wren) |
 827			 FM801_GPIO_GD(gpio.clk) |
 828			 FM801_GPIO_GP(gpio.clk));
 829	}
 830
 831	fm801_writew(chip, GPIO_CTRL, reg);
 832}
 833
 834static const struct snd_tea575x_ops snd_fm801_tea_ops = {
 835	.set_pins = snd_fm801_tea575x_set_pins,
 836	.get_pins = snd_fm801_tea575x_get_pins,
 837	.set_direction = snd_fm801_tea575x_set_direction,
 838};
 839#endif
 840
 841/*
 842 *  Mixer routines
 843 */
 844
 845#define FM801_SINGLE(xname, reg, shift, mask, invert) \
 846{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_fm801_info_single, \
 847  .get = snd_fm801_get_single, .put = snd_fm801_put_single, \
 848  .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
 849
 850static int snd_fm801_info_single(struct snd_kcontrol *kcontrol,
 851				 struct snd_ctl_elem_info *uinfo)
 852{
 853	int mask = (kcontrol->private_value >> 16) & 0xff;
 854
 855	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
 856	uinfo->count = 1;
 857	uinfo->value.integer.min = 0;
 858	uinfo->value.integer.max = mask;
 859	return 0;
 860}
 861
 862static int snd_fm801_get_single(struct snd_kcontrol *kcontrol,
 863				struct snd_ctl_elem_value *ucontrol)
 864{
 865	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 866	int reg = kcontrol->private_value & 0xff;
 867	int shift = (kcontrol->private_value >> 8) & 0xff;
 868	int mask = (kcontrol->private_value >> 16) & 0xff;
 869	int invert = (kcontrol->private_value >> 24) & 0xff;
 870	long *value = ucontrol->value.integer.value;
 871
 872	value[0] = (fm801_ioread16(chip, reg) >> shift) & mask;
 873	if (invert)
 874		value[0] = mask - value[0];
 875	return 0;
 876}
 877
 878static int snd_fm801_put_single(struct snd_kcontrol *kcontrol,
 879				struct snd_ctl_elem_value *ucontrol)
 880{
 881	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 882	int reg = kcontrol->private_value & 0xff;
 883	int shift = (kcontrol->private_value >> 8) & 0xff;
 884	int mask = (kcontrol->private_value >> 16) & 0xff;
 885	int invert = (kcontrol->private_value >> 24) & 0xff;
 886	unsigned short val;
 887
 888	val = (ucontrol->value.integer.value[0] & mask);
 889	if (invert)
 890		val = mask - val;
 891	return snd_fm801_update_bits(chip, reg, mask << shift, val << shift);
 892}
 893
 894#define FM801_DOUBLE(xname, reg, shift_left, shift_right, mask, invert) \
 895{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_fm801_info_double, \
 896  .get = snd_fm801_get_double, .put = snd_fm801_put_double, \
 897  .private_value = reg | (shift_left << 8) | (shift_right << 12) | (mask << 16) | (invert << 24) }
 898#define FM801_DOUBLE_TLV(xname, reg, shift_left, shift_right, mask, invert, xtlv) \
 899{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
 900  .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
 901  .name = xname, .info = snd_fm801_info_double, \
 902  .get = snd_fm801_get_double, .put = snd_fm801_put_double, \
 903  .private_value = reg | (shift_left << 8) | (shift_right << 12) | (mask << 16) | (invert << 24), \
 904  .tlv = { .p = (xtlv) } }
 905
 906static int snd_fm801_info_double(struct snd_kcontrol *kcontrol,
 907				 struct snd_ctl_elem_info *uinfo)
 908{
 909	int mask = (kcontrol->private_value >> 16) & 0xff;
 910
 911	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
 912	uinfo->count = 2;
 913	uinfo->value.integer.min = 0;
 914	uinfo->value.integer.max = mask;
 915	return 0;
 916}
 917
 918static int snd_fm801_get_double(struct snd_kcontrol *kcontrol,
 919				struct snd_ctl_elem_value *ucontrol)
 920{
 921	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 922        int reg = kcontrol->private_value & 0xff;
 923	int shift_left = (kcontrol->private_value >> 8) & 0x0f;
 924	int shift_right = (kcontrol->private_value >> 12) & 0x0f;
 925	int mask = (kcontrol->private_value >> 16) & 0xff;
 926	int invert = (kcontrol->private_value >> 24) & 0xff;
 927	long *value = ucontrol->value.integer.value;
 928
 929	spin_lock_irq(&chip->reg_lock);
 930	value[0] = (fm801_ioread16(chip, reg) >> shift_left) & mask;
 931	value[1] = (fm801_ioread16(chip, reg) >> shift_right) & mask;
 932	spin_unlock_irq(&chip->reg_lock);
 933	if (invert) {
 934		value[0] = mask - value[0];
 935		value[1] = mask - value[1];
 936	}
 937	return 0;
 938}
 939
 940static int snd_fm801_put_double(struct snd_kcontrol *kcontrol,
 941				struct snd_ctl_elem_value *ucontrol)
 942{
 943	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 944	int reg = kcontrol->private_value & 0xff;
 945	int shift_left = (kcontrol->private_value >> 8) & 0x0f;
 946	int shift_right = (kcontrol->private_value >> 12) & 0x0f;
 947	int mask = (kcontrol->private_value >> 16) & 0xff;
 948	int invert = (kcontrol->private_value >> 24) & 0xff;
 949	unsigned short val1, val2;
 950 
 951	val1 = ucontrol->value.integer.value[0] & mask;
 952	val2 = ucontrol->value.integer.value[1] & mask;
 953	if (invert) {
 954		val1 = mask - val1;
 955		val2 = mask - val2;
 956	}
 957	return snd_fm801_update_bits(chip, reg,
 958				     (mask << shift_left) | (mask << shift_right),
 959				     (val1 << shift_left ) | (val2 << shift_right));
 960}
 961
 962static int snd_fm801_info_mux(struct snd_kcontrol *kcontrol,
 963			      struct snd_ctl_elem_info *uinfo)
 964{
 965	static const char * const texts[5] = {
 966		"AC97 Primary", "FM", "I2S", "PCM", "AC97 Secondary"
 967	};
 968 
 969	return snd_ctl_enum_info(uinfo, 1, 5, texts);
 970}
 971
 972static int snd_fm801_get_mux(struct snd_kcontrol *kcontrol,
 973			     struct snd_ctl_elem_value *ucontrol)
 974{
 975	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 976        unsigned short val;
 977 
 978	val = fm801_readw(chip, REC_SRC) & 7;
 979	if (val > 4)
 980		val = 4;
 981        ucontrol->value.enumerated.item[0] = val;
 982        return 0;
 983}
 984
 985static int snd_fm801_put_mux(struct snd_kcontrol *kcontrol,
 986			     struct snd_ctl_elem_value *ucontrol)
 987{
 988	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 989        unsigned short val;
 990 
 991        if ((val = ucontrol->value.enumerated.item[0]) > 4)
 
 992                return -EINVAL;
 993	return snd_fm801_update_bits(chip, FM801_REC_SRC, 7, val);
 994}
 995
 996static const DECLARE_TLV_DB_SCALE(db_scale_dsp, -3450, 150, 0);
 997
 998#define FM801_CONTROLS ARRAY_SIZE(snd_fm801_controls)
 999
1000static struct snd_kcontrol_new snd_fm801_controls[] = {
1001FM801_DOUBLE_TLV("Wave Playback Volume", FM801_PCM_VOL, 0, 8, 31, 1,
1002		 db_scale_dsp),
1003FM801_SINGLE("Wave Playback Switch", FM801_PCM_VOL, 15, 1, 1),
1004FM801_DOUBLE_TLV("I2S Playback Volume", FM801_I2S_VOL, 0, 8, 31, 1,
1005		 db_scale_dsp),
1006FM801_SINGLE("I2S Playback Switch", FM801_I2S_VOL, 15, 1, 1),
1007FM801_DOUBLE_TLV("FM Playback Volume", FM801_FM_VOL, 0, 8, 31, 1,
1008		 db_scale_dsp),
1009FM801_SINGLE("FM Playback Switch", FM801_FM_VOL, 15, 1, 1),
1010{
1011	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1012	.name = "Digital Capture Source",
1013	.info = snd_fm801_info_mux,
1014	.get = snd_fm801_get_mux,
1015	.put = snd_fm801_put_mux,
1016}
1017};
1018
1019#define FM801_CONTROLS_MULTI ARRAY_SIZE(snd_fm801_controls_multi)
1020
1021static struct snd_kcontrol_new snd_fm801_controls_multi[] = {
1022FM801_SINGLE("AC97 2ch->4ch Copy Switch", FM801_CODEC_CTRL, 7, 1, 0),
1023FM801_SINGLE("AC97 18-bit Switch", FM801_CODEC_CTRL, 10, 1, 0),
1024FM801_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), FM801_I2S_MODE, 8, 1, 0),
1025FM801_SINGLE(SNDRV_CTL_NAME_IEC958("Raw Data ",PLAYBACK,SWITCH), FM801_I2S_MODE, 9, 1, 0),
1026FM801_SINGLE(SNDRV_CTL_NAME_IEC958("Raw Data ",CAPTURE,SWITCH), FM801_I2S_MODE, 10, 1, 0),
1027FM801_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), FM801_GEN_CTRL, 2, 1, 0),
1028};
1029
1030static void snd_fm801_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
1031{
1032	struct fm801 *chip = bus->private_data;
1033	chip->ac97_bus = NULL;
1034}
1035
1036static void snd_fm801_mixer_free_ac97(struct snd_ac97 *ac97)
1037{
1038	struct fm801 *chip = ac97->private_data;
1039	if (ac97->num == 0) {
1040		chip->ac97 = NULL;
1041	} else {
1042		chip->ac97_sec = NULL;
1043	}
1044}
1045
1046static int snd_fm801_mixer(struct fm801 *chip)
1047{
1048	struct snd_ac97_template ac97;
1049	unsigned int i;
1050	int err;
1051	static struct snd_ac97_bus_ops ops = {
1052		.write = snd_fm801_codec_write,
1053		.read = snd_fm801_codec_read,
1054	};
1055
1056	if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
 
1057		return err;
1058	chip->ac97_bus->private_free = snd_fm801_mixer_free_ac97_bus;
1059
1060	memset(&ac97, 0, sizeof(ac97));
1061	ac97.private_data = chip;
1062	ac97.private_free = snd_fm801_mixer_free_ac97;
1063	if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
1064		return err;
1065	if (chip->secondary) {
1066		ac97.num = 1;
1067		ac97.addr = chip->secondary_addr;
1068		if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97_sec)) < 0)
 
 
 
 
 
 
 
1069			return err;
1070	}
1071	for (i = 0; i < FM801_CONTROLS; i++)
1072		snd_ctl_add(chip->card, snd_ctl_new1(&snd_fm801_controls[i], chip));
1073	if (chip->multichannel) {
1074		for (i = 0; i < FM801_CONTROLS_MULTI; i++)
1075			snd_ctl_add(chip->card, snd_ctl_new1(&snd_fm801_controls_multi[i], chip));
 
 
 
 
1076	}
1077	return 0;
1078}
1079
1080/*
1081 *  initialization routines
1082 */
1083
1084static int wait_for_codec(struct fm801 *chip, unsigned int codec_id,
1085			  unsigned short reg, unsigned long waits)
1086{
1087	unsigned long timeout = jiffies + waits;
1088
1089	fm801_writew(chip, AC97_CMD,
1090		     reg | (codec_id << FM801_AC97_ADDR_SHIFT) | FM801_AC97_READ);
1091	udelay(5);
1092	do {
1093		if ((fm801_readw(chip, AC97_CMD) &
1094		     (FM801_AC97_VALID | FM801_AC97_BUSY)) == FM801_AC97_VALID)
1095			return 0;
1096		schedule_timeout_uninterruptible(1);
1097	} while (time_after(timeout, jiffies));
1098	return -EIO;
1099}
1100
1101static int reset_codec(struct fm801 *chip)
1102{
1103	/* codec cold reset + AC'97 warm reset */
1104	fm801_writew(chip, CODEC_CTRL, (1 << 5) | (1 << 6));
1105	fm801_readw(chip, CODEC_CTRL); /* flush posting data */
1106	udelay(100);
1107	fm801_writew(chip, CODEC_CTRL, 0);
1108
1109	return wait_for_codec(chip, 0, AC97_RESET, msecs_to_jiffies(750));
1110}
1111
1112static void snd_fm801_chip_multichannel_init(struct fm801 *chip)
1113{
1114	unsigned short cmdw;
1115
1116	if (chip->multichannel) {
1117		if (chip->secondary_addr) {
1118			wait_for_codec(chip, chip->secondary_addr,
1119				       AC97_VENDOR_ID1, msecs_to_jiffies(50));
1120		} else {
1121			/* my card has the secondary codec */
1122			/* at address #3, so the loop is inverted */
1123			int i;
1124			for (i = 3; i > 0; i--) {
1125				if (!wait_for_codec(chip, i, AC97_VENDOR_ID1,
1126						     msecs_to_jiffies(50))) {
1127					cmdw = fm801_readw(chip, AC97_DATA);
1128					if (cmdw != 0xffff && cmdw != 0) {
1129						chip->secondary = 1;
1130						chip->secondary_addr = i;
1131						break;
1132					}
1133				}
1134			}
1135		}
1136
1137		/* the recovery phase, it seems that probing for non-existing codec might */
1138		/* cause timeout problems */
1139		wait_for_codec(chip, 0, AC97_VENDOR_ID1, msecs_to_jiffies(750));
1140	}
1141}
1142
1143static void snd_fm801_chip_init(struct fm801 *chip)
1144{
1145	unsigned short cmdw;
1146
1147	/* init volume */
1148	fm801_writew(chip, PCM_VOL, 0x0808);
1149	fm801_writew(chip, FM_VOL, 0x9f1f);
1150	fm801_writew(chip, I2S_VOL, 0x8808);
1151
1152	/* I2S control - I2S mode */
1153	fm801_writew(chip, I2S_MODE, 0x0003);
1154
1155	/* interrupt setup */
1156	cmdw = fm801_readw(chip, IRQ_MASK);
1157	if (chip->irq < 0)
1158		cmdw |= 0x00c3;		/* mask everything, no PCM nor MPU */
1159	else
1160		cmdw &= ~0x0083;	/* unmask MPU, PLAYBACK & CAPTURE */
1161	fm801_writew(chip, IRQ_MASK, cmdw);
1162
1163	/* interrupt clear */
1164	fm801_writew(chip, IRQ_STATUS,
1165		     FM801_IRQ_PLAYBACK | FM801_IRQ_CAPTURE | FM801_IRQ_MPU);
1166}
1167
1168static int snd_fm801_free(struct fm801 *chip)
1169{
 
1170	unsigned short cmdw;
1171
1172	if (chip->irq < 0)
1173		goto __end_hw;
1174
1175	/* interrupt setup - mask everything */
1176	cmdw = fm801_readw(chip, IRQ_MASK);
1177	cmdw |= 0x00c3;
1178	fm801_writew(chip, IRQ_MASK, cmdw);
1179
1180	devm_free_irq(chip->dev, chip->irq, chip);
1181
1182      __end_hw:
1183#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1184	if (!(chip->tea575x_tuner & TUNER_DISABLED)) {
1185		snd_tea575x_exit(&chip->tea);
1186		v4l2_device_unregister(&chip->v4l2_dev);
1187	}
1188#endif
1189	return 0;
1190}
1191
1192static int snd_fm801_dev_free(struct snd_device *device)
1193{
1194	struct fm801 *chip = device->device_data;
1195	return snd_fm801_free(chip);
1196}
1197
1198static int snd_fm801_create(struct snd_card *card,
1199			    struct pci_dev *pci,
1200			    int tea575x_tuner,
1201			    int radio_nr,
1202			    struct fm801 **rchip)
1203{
1204	struct fm801 *chip;
1205	int err;
1206	static struct snd_device_ops ops = {
1207		.dev_free =	snd_fm801_dev_free,
1208	};
1209
1210	*rchip = NULL;
1211	if ((err = pcim_enable_device(pci)) < 0)
1212		return err;
1213	chip = devm_kzalloc(&pci->dev, sizeof(*chip), GFP_KERNEL);
1214	if (chip == NULL)
1215		return -ENOMEM;
1216	spin_lock_init(&chip->reg_lock);
1217	chip->card = card;
1218	chip->dev = &pci->dev;
1219	chip->irq = -1;
1220	chip->tea575x_tuner = tea575x_tuner;
1221	if ((err = pci_request_regions(pci, "FM801")) < 0)
 
1222		return err;
1223	chip->port = pci_resource_start(pci, 0);
1224
1225	if (pci->revision >= 0xb1)	/* FM801-AU */
1226		chip->multichannel = 1;
1227
1228	if (!(chip->tea575x_tuner & TUNER_ONLY)) {
1229		if (reset_codec(chip) < 0) {
1230			dev_info(chip->card->dev,
1231				 "Primary AC'97 codec not found, assume SF64-PCR (tuner-only)\n");
1232			chip->tea575x_tuner = 3 | TUNER_ONLY;
1233		} else {
1234			snd_fm801_chip_multichannel_init(chip);
1235		}
1236	}
1237
1238	snd_fm801_chip_init(chip);
1239
1240	if ((chip->tea575x_tuner & TUNER_ONLY) == 0) {
1241		if (devm_request_irq(&pci->dev, pci->irq, snd_fm801_interrupt,
1242				IRQF_SHARED, KBUILD_MODNAME, chip)) {
1243			dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
1244			snd_fm801_free(chip);
1245			return -EBUSY;
1246		}
1247		chip->irq = pci->irq;
 
1248		pci_set_master(pci);
1249	}
1250
1251	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1252		snd_fm801_free(chip);
1253		return err;
1254	}
1255
1256#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1257	err = v4l2_device_register(&pci->dev, &chip->v4l2_dev);
1258	if (err < 0) {
1259		snd_fm801_free(chip);
1260		return err;
1261	}
1262	chip->tea.v4l2_dev = &chip->v4l2_dev;
1263	chip->tea.radio_nr = radio_nr;
1264	chip->tea.private_data = chip;
1265	chip->tea.ops = &snd_fm801_tea_ops;
1266	sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci));
1267	if ((chip->tea575x_tuner & TUNER_TYPE_MASK) > 0 &&
1268	    (chip->tea575x_tuner & TUNER_TYPE_MASK) < 4) {
1269		if (snd_tea575x_init(&chip->tea, THIS_MODULE)) {
1270			dev_err(card->dev, "TEA575x radio not found\n");
1271			snd_fm801_free(chip);
1272			return -ENODEV;
1273		}
1274	} else if ((chip->tea575x_tuner & TUNER_TYPE_MASK) == 0) {
1275		unsigned int tuner_only = chip->tea575x_tuner & TUNER_ONLY;
1276
1277		/* autodetect tuner connection */
1278		for (tea575x_tuner = 1; tea575x_tuner <= 3; tea575x_tuner++) {
1279			chip->tea575x_tuner = tea575x_tuner;
1280			if (!snd_tea575x_init(&chip->tea, THIS_MODULE)) {
1281				dev_info(card->dev,
1282					 "detected TEA575x radio type %s\n",
1283					   get_tea575x_gpio(chip)->name);
1284				break;
1285			}
1286		}
1287		if (tea575x_tuner == 4) {
1288			dev_err(card->dev, "TEA575x radio not found\n");
1289			chip->tea575x_tuner = TUNER_DISABLED;
1290		}
1291
1292		chip->tea575x_tuner |= tuner_only;
1293	}
1294	if (!(chip->tea575x_tuner & TUNER_DISABLED)) {
1295		strlcpy(chip->tea.card, get_tea575x_gpio(chip)->name,
1296			sizeof(chip->tea.card));
1297	}
1298#endif
1299
1300	*rchip = chip;
1301	return 0;
1302}
1303
1304static int snd_card_fm801_probe(struct pci_dev *pci,
1305				const struct pci_device_id *pci_id)
1306{
1307	static int dev;
1308	struct snd_card *card;
1309	struct fm801 *chip;
1310	struct snd_opl3 *opl3;
1311	int err;
1312
1313        if (dev >= SNDRV_CARDS)
1314                return -ENODEV;
1315	if (!enable[dev]) {
1316		dev++;
1317		return -ENOENT;
1318	}
1319
1320	err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
1321			   0, &card);
1322	if (err < 0)
1323		return err;
1324	if ((err = snd_fm801_create(card, pci, tea575x_tuner[dev], radio_nr[dev], &chip)) < 0) {
1325		snd_card_free(card);
 
1326		return err;
1327	}
1328	card->private_data = chip;
1329
1330	strcpy(card->driver, "FM801");
1331	strcpy(card->shortname, "ForteMedia FM801-");
1332	strcat(card->shortname, chip->multichannel ? "AU" : "AS");
1333	sprintf(card->longname, "%s at 0x%lx, irq %i",
1334		card->shortname, chip->port, chip->irq);
1335
1336	if (chip->tea575x_tuner & TUNER_ONLY)
1337		goto __fm801_tuner_only;
1338
1339	if ((err = snd_fm801_pcm(chip, 0)) < 0) {
1340		snd_card_free(card);
1341		return err;
1342	}
1343	if ((err = snd_fm801_mixer(chip)) < 0) {
1344		snd_card_free(card);
1345		return err;
1346	}
1347	if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_FM801,
1348				       chip->port + FM801_MPU401_DATA,
1349				       MPU401_INFO_INTEGRATED |
1350				       MPU401_INFO_IRQ_HOOK,
1351				       -1, &chip->rmidi)) < 0) {
1352		snd_card_free(card);
1353		return err;
1354	}
1355	if ((err = snd_opl3_create(card, chip->port + FM801_OPL3_BANK0,
1356				   chip->port + FM801_OPL3_BANK1,
1357				   OPL3_HW_OPL3_FM801, 1, &opl3)) < 0) {
1358		snd_card_free(card);
1359		return err;
1360	}
1361	if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
1362		snd_card_free(card);
1363		return err;
1364	}
1365
1366      __fm801_tuner_only:
1367	if ((err = snd_card_register(card)) < 0) {
1368		snd_card_free(card);
1369		return err;
1370	}
1371	pci_set_drvdata(pci, card);
1372	dev++;
1373	return 0;
1374}
1375
1376static void snd_card_fm801_remove(struct pci_dev *pci)
 
1377{
1378	snd_card_free(pci_get_drvdata(pci));
1379}
1380
1381#ifdef CONFIG_PM_SLEEP
1382static unsigned char saved_regs[] = {
1383	FM801_PCM_VOL, FM801_I2S_VOL, FM801_FM_VOL, FM801_REC_SRC,
1384	FM801_PLY_CTRL, FM801_PLY_COUNT, FM801_PLY_BUF1, FM801_PLY_BUF2,
1385	FM801_CAP_CTRL, FM801_CAP_COUNT, FM801_CAP_BUF1, FM801_CAP_BUF2,
1386	FM801_CODEC_CTRL, FM801_I2S_MODE, FM801_VOLUME, FM801_GEN_CTRL,
1387};
1388
1389static int snd_fm801_suspend(struct device *dev)
1390{
1391	struct snd_card *card = dev_get_drvdata(dev);
1392	struct fm801 *chip = card->private_data;
1393	int i;
1394
1395	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1396
1397	for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
1398		chip->saved_regs[i] = fm801_ioread16(chip, saved_regs[i]);
1399
1400	if (chip->tea575x_tuner & TUNER_ONLY) {
1401		/* FIXME: tea575x suspend */
1402	} else {
1403		snd_pcm_suspend_all(chip->pcm);
1404		snd_ac97_suspend(chip->ac97);
1405		snd_ac97_suspend(chip->ac97_sec);
1406	}
1407
1408	return 0;
1409}
1410
1411static int snd_fm801_resume(struct device *dev)
1412{
1413	struct snd_card *card = dev_get_drvdata(dev);
1414	struct fm801 *chip = card->private_data;
1415	int i;
1416
1417	if (chip->tea575x_tuner & TUNER_ONLY) {
1418		snd_fm801_chip_init(chip);
1419	} else {
1420		reset_codec(chip);
1421		snd_fm801_chip_multichannel_init(chip);
1422		snd_fm801_chip_init(chip);
1423		snd_ac97_resume(chip->ac97);
1424		snd_ac97_resume(chip->ac97_sec);
1425	}
1426
1427	for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
1428		fm801_iowrite16(chip, saved_regs[i], chip->saved_regs[i]);
1429
1430#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1431	if (!(chip->tea575x_tuner & TUNER_DISABLED))
1432		snd_tea575x_set_freq(&chip->tea);
1433#endif
1434
1435	snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1436	return 0;
1437}
1438
1439static SIMPLE_DEV_PM_OPS(snd_fm801_pm, snd_fm801_suspend, snd_fm801_resume);
1440#define SND_FM801_PM_OPS	&snd_fm801_pm
1441#else
1442#define SND_FM801_PM_OPS	NULL
1443#endif /* CONFIG_PM_SLEEP */
1444
1445static struct pci_driver fm801_driver = {
1446	.name = KBUILD_MODNAME,
1447	.id_table = snd_fm801_ids,
1448	.probe = snd_card_fm801_probe,
1449	.remove = snd_card_fm801_remove,
1450	.driver = {
1451		.pm = SND_FM801_PM_OPS,
1452	},
1453};
1454
1455module_pci_driver(fm801_driver);
v6.9.4
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 *  The driver for the ForteMedia FM801 based soundcards
   4 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
 
 
 
 
 
 
 
 
 
 
 
   5 */
   6
   7#include <linux/delay.h>
   8#include <linux/init.h>
   9#include <linux/interrupt.h>
  10#include <linux/io.h>
  11#include <linux/pci.h>
  12#include <linux/slab.h>
  13#include <linux/module.h>
  14#include <sound/core.h>
  15#include <sound/pcm.h>
  16#include <sound/tlv.h>
  17#include <sound/ac97_codec.h>
  18#include <sound/mpu401.h>
  19#include <sound/opl3.h>
  20#include <sound/initval.h>
  21
  22#ifdef CONFIG_SND_FM801_TEA575X_BOOL
  23#include <media/drv-intf/tea575x.h>
  24#endif
  25
  26MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  27MODULE_DESCRIPTION("ForteMedia FM801");
  28MODULE_LICENSE("GPL");
 
 
  29
  30static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
  31static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
  32static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
  33/*
  34 *  Enable TEA575x tuner
  35 *    1 = MediaForte 256-PCS
  36 *    2 = MediaForte 256-PCP
  37 *    3 = MediaForte 64-PCR
  38 *   16 = setup tuner only (this is additional bit), i.e. SF64-PCR FM card
  39 *  High 16-bits are video (radio) device number + 1
  40 */
  41static int tea575x_tuner[SNDRV_CARDS];
  42static int radio_nr[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};
  43
  44module_param_array(index, int, NULL, 0444);
  45MODULE_PARM_DESC(index, "Index value for the FM801 soundcard.");
  46module_param_array(id, charp, NULL, 0444);
  47MODULE_PARM_DESC(id, "ID string for the FM801 soundcard.");
  48module_param_array(enable, bool, NULL, 0444);
  49MODULE_PARM_DESC(enable, "Enable FM801 soundcard.");
  50module_param_array(tea575x_tuner, int, NULL, 0444);
  51MODULE_PARM_DESC(tea575x_tuner, "TEA575x tuner access method (0 = auto, 1 = SF256-PCS, 2=SF256-PCP, 3=SF64-PCR, 8=disable, +16=tuner-only).");
  52module_param_array(radio_nr, int, NULL, 0444);
  53MODULE_PARM_DESC(radio_nr, "Radio device numbers");
  54
  55
  56#define TUNER_DISABLED		(1<<3)
  57#define TUNER_ONLY		(1<<4)
  58#define TUNER_TYPE_MASK		(~TUNER_ONLY & 0xFFFF)
  59
  60/*
  61 *  Direct registers
  62 */
  63
  64#define fm801_writew(chip,reg,value)	outw((value), chip->port + FM801_##reg)
  65#define fm801_readw(chip,reg)		inw(chip->port + FM801_##reg)
  66
  67#define fm801_writel(chip,reg,value)	outl((value), chip->port + FM801_##reg)
  68
  69#define FM801_PCM_VOL		0x00	/* PCM Output Volume */
  70#define FM801_FM_VOL		0x02	/* FM Output Volume */
  71#define FM801_I2S_VOL		0x04	/* I2S Volume */
  72#define FM801_REC_SRC		0x06	/* Record Source */
  73#define FM801_PLY_CTRL		0x08	/* Playback Control */
  74#define FM801_PLY_COUNT		0x0a	/* Playback Count */
  75#define FM801_PLY_BUF1		0x0c	/* Playback Bufer I */
  76#define FM801_PLY_BUF2		0x10	/* Playback Buffer II */
  77#define FM801_CAP_CTRL		0x14	/* Capture Control */
  78#define FM801_CAP_COUNT		0x16	/* Capture Count */
  79#define FM801_CAP_BUF1		0x18	/* Capture Buffer I */
  80#define FM801_CAP_BUF2		0x1c	/* Capture Buffer II */
  81#define FM801_CODEC_CTRL	0x22	/* Codec Control */
  82#define FM801_I2S_MODE		0x24	/* I2S Mode Control */
  83#define FM801_VOLUME		0x26	/* Volume Up/Down/Mute Status */
  84#define FM801_I2C_CTRL		0x29	/* I2C Control */
  85#define FM801_AC97_CMD		0x2a	/* AC'97 Command */
  86#define FM801_AC97_DATA		0x2c	/* AC'97 Data */
  87#define FM801_MPU401_DATA	0x30	/* MPU401 Data */
  88#define FM801_MPU401_CMD	0x31	/* MPU401 Command */
  89#define FM801_GPIO_CTRL		0x52	/* General Purpose I/O Control */
  90#define FM801_GEN_CTRL		0x54	/* General Control */
  91#define FM801_IRQ_MASK		0x56	/* Interrupt Mask */
  92#define FM801_IRQ_STATUS	0x5a	/* Interrupt Status */
  93#define FM801_OPL3_BANK0	0x68	/* OPL3 Status Read / Bank 0 Write */
  94#define FM801_OPL3_DATA0	0x69	/* OPL3 Data 0 Write */
  95#define FM801_OPL3_BANK1	0x6a	/* OPL3 Bank 1 Write */
  96#define FM801_OPL3_DATA1	0x6b	/* OPL3 Bank 1 Write */
  97#define FM801_POWERDOWN		0x70	/* Blocks Power Down Control */
  98
  99/* codec access */
 100#define FM801_AC97_READ		(1<<7)	/* read=1, write=0 */
 101#define FM801_AC97_VALID	(1<<8)	/* port valid=1 */
 102#define FM801_AC97_BUSY		(1<<9)	/* busy=1 */
 103#define FM801_AC97_ADDR_SHIFT	10	/* codec id (2bit) */
 104
 105/* playback and record control register bits */
 106#define FM801_BUF1_LAST		(1<<1)
 107#define FM801_BUF2_LAST		(1<<2)
 108#define FM801_START		(1<<5)
 109#define FM801_PAUSE		(1<<6)
 110#define FM801_IMMED_STOP	(1<<7)
 111#define FM801_RATE_SHIFT	8
 112#define FM801_RATE_MASK		(15 << FM801_RATE_SHIFT)
 113#define FM801_CHANNELS_4	(1<<12)	/* playback only */
 114#define FM801_CHANNELS_6	(2<<12)	/* playback only */
 115#define FM801_CHANNELS_6MS	(3<<12)	/* playback only */
 116#define FM801_CHANNELS_MASK	(3<<12)
 117#define FM801_16BIT		(1<<14)
 118#define FM801_STEREO		(1<<15)
 119
 120/* IRQ status bits */
 121#define FM801_IRQ_PLAYBACK	(1<<8)
 122#define FM801_IRQ_CAPTURE	(1<<9)
 123#define FM801_IRQ_VOLUME	(1<<14)
 124#define FM801_IRQ_MPU		(1<<15)
 125
 126/* GPIO control register */
 127#define FM801_GPIO_GP0		(1<<0)	/* read/write */
 128#define FM801_GPIO_GP1		(1<<1)
 129#define FM801_GPIO_GP2		(1<<2)
 130#define FM801_GPIO_GP3		(1<<3)
 131#define FM801_GPIO_GP(x)	(1<<(0+(x)))
 132#define FM801_GPIO_GD0		(1<<8)	/* directions: 1 = input, 0 = output*/
 133#define FM801_GPIO_GD1		(1<<9)
 134#define FM801_GPIO_GD2		(1<<10)
 135#define FM801_GPIO_GD3		(1<<11)
 136#define FM801_GPIO_GD(x)	(1<<(8+(x)))
 137#define FM801_GPIO_GS0		(1<<12)	/* function select: */
 138#define FM801_GPIO_GS1		(1<<13)	/*    1 = GPIO */
 139#define FM801_GPIO_GS2		(1<<14)	/*    0 = other (S/PDIF, VOL) */
 140#define FM801_GPIO_GS3		(1<<15)
 141#define FM801_GPIO_GS(x)	(1<<(12+(x)))
 142	
 143/**
 144 * struct fm801 - describes FM801 chip
 145 * @dev:		device for this chio
 146 * @irq:		irq number
 147 * @port:		I/O port number
 148 * @multichannel:	multichannel support
 149 * @secondary:		secondary codec
 150 * @secondary_addr:	address of the secondary codec
 151 * @tea575x_tuner:	tuner access method & flags
 152 * @ply_ctrl:		playback control
 153 * @cap_ctrl:		capture control
 154 * @ply_buffer:		playback buffer
 155 * @ply_buf:		playback buffer index
 156 * @ply_count:		playback buffer count
 157 * @ply_size:		playback buffer size
 158 * @ply_pos:		playback position
 159 * @cap_buffer:		capture buffer
 160 * @cap_buf:		capture buffer index
 161 * @cap_count:		capture buffer count
 162 * @cap_size:		capture buffer size
 163 * @cap_pos:		capture position
 164 * @ac97_bus:		ac97 bus handle
 165 * @ac97:		ac97 handle
 166 * @ac97_sec:		ac97 secondary handle
 167 * @card:		ALSA card
 168 * @pcm:		PCM devices
 169 * @rmidi:		rmidi device
 170 * @playback_substream:	substream for playback
 171 * @capture_substream:	substream for capture
 172 * @p_dma_size:		playback DMA size
 173 * @c_dma_size:		capture DMA size
 174 * @reg_lock:		lock
 175 * @proc_entry:		/proc entry
 176 * @v4l2_dev:		v4l2 device
 177 * @tea:		tea575a structure
 178 * @saved_regs:		context saved during suspend
 179 */
 180struct fm801 {
 181	struct device *dev;
 182	int irq;
 183
 184	unsigned long port;
 185	unsigned int multichannel: 1,
 186		     secondary: 1;
 187	unsigned char secondary_addr;
 188	unsigned int tea575x_tuner;
 189
 190	unsigned short ply_ctrl;
 191	unsigned short cap_ctrl;
 192
 193	unsigned long ply_buffer;
 194	unsigned int ply_buf;
 195	unsigned int ply_count;
 196	unsigned int ply_size;
 197	unsigned int ply_pos;
 198
 199	unsigned long cap_buffer;
 200	unsigned int cap_buf;
 201	unsigned int cap_count;
 202	unsigned int cap_size;
 203	unsigned int cap_pos;
 204
 205	struct snd_ac97_bus *ac97_bus;
 206	struct snd_ac97 *ac97;
 207	struct snd_ac97 *ac97_sec;
 208
 209	struct snd_card *card;
 210	struct snd_pcm *pcm;
 211	struct snd_rawmidi *rmidi;
 212	struct snd_pcm_substream *playback_substream;
 213	struct snd_pcm_substream *capture_substream;
 214	unsigned int p_dma_size;
 215	unsigned int c_dma_size;
 216
 217	spinlock_t reg_lock;
 218	struct snd_info_entry *proc_entry;
 219
 220#ifdef CONFIG_SND_FM801_TEA575X_BOOL
 221	struct v4l2_device v4l2_dev;
 222	struct snd_tea575x tea;
 223#endif
 224
 
 225	u16 saved_regs[0x20];
 
 226};
 227
 228/*
 229 * IO accessors
 230 */
 231
 232static inline void fm801_iowrite16(struct fm801 *chip, unsigned short offset, u16 value)
 233{
 234	outw(value, chip->port + offset);
 235}
 236
 237static inline u16 fm801_ioread16(struct fm801 *chip, unsigned short offset)
 238{
 239	return inw(chip->port + offset);
 240}
 241
 242static const struct pci_device_id snd_fm801_ids[] = {
 243	{ 0x1319, 0x0801, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0, },   /* FM801 */
 244	{ 0x5213, 0x0510, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0, },   /* Gallant Odyssey Sound 4 */
 245	{ 0, }
 246};
 247
 248MODULE_DEVICE_TABLE(pci, snd_fm801_ids);
 249
 250/*
 251 *  common I/O routines
 252 */
 253
 254static bool fm801_ac97_is_ready(struct fm801 *chip, unsigned int iterations)
 255{
 256	unsigned int idx;
 257
 258	for (idx = 0; idx < iterations; idx++) {
 259		if (!(fm801_readw(chip, AC97_CMD) & FM801_AC97_BUSY))
 260			return true;
 261		udelay(10);
 262	}
 263	return false;
 264}
 265
 266static bool fm801_ac97_is_valid(struct fm801 *chip, unsigned int iterations)
 267{
 268	unsigned int idx;
 269
 270	for (idx = 0; idx < iterations; idx++) {
 271		if (fm801_readw(chip, AC97_CMD) & FM801_AC97_VALID)
 272			return true;
 273		udelay(10);
 274	}
 275	return false;
 276}
 277
 278static int snd_fm801_update_bits(struct fm801 *chip, unsigned short reg,
 279				 unsigned short mask, unsigned short value)
 280{
 281	int change;
 282	unsigned long flags;
 283	unsigned short old, new;
 284
 285	spin_lock_irqsave(&chip->reg_lock, flags);
 286	old = fm801_ioread16(chip, reg);
 287	new = (old & ~mask) | value;
 288	change = old != new;
 289	if (change)
 290		fm801_iowrite16(chip, reg, new);
 291	spin_unlock_irqrestore(&chip->reg_lock, flags);
 292	return change;
 293}
 294
 295static void snd_fm801_codec_write(struct snd_ac97 *ac97,
 296				  unsigned short reg,
 297				  unsigned short val)
 298{
 299	struct fm801 *chip = ac97->private_data;
 300
 301	/*
 302	 *  Wait until the codec interface is not ready..
 303	 */
 304	if (!fm801_ac97_is_ready(chip, 100)) {
 305		dev_err(chip->card->dev, "AC'97 interface is busy (1)\n");
 306		return;
 307	}
 308
 309	/* write data and address */
 310	fm801_writew(chip, AC97_DATA, val);
 311	fm801_writew(chip, AC97_CMD, reg | (ac97->addr << FM801_AC97_ADDR_SHIFT));
 312	/*
 313	 *  Wait until the write command is not completed..
 314	 */
 315	if (!fm801_ac97_is_ready(chip, 1000))
 316		dev_err(chip->card->dev, "AC'97 interface #%d is busy (2)\n",
 317		ac97->num);
 318}
 319
 320static unsigned short snd_fm801_codec_read(struct snd_ac97 *ac97, unsigned short reg)
 321{
 322	struct fm801 *chip = ac97->private_data;
 323
 324	/*
 325	 *  Wait until the codec interface is not ready..
 326	 */
 327	if (!fm801_ac97_is_ready(chip, 100)) {
 328		dev_err(chip->card->dev, "AC'97 interface is busy (1)\n");
 329		return 0;
 330	}
 331
 332	/* read command */
 333	fm801_writew(chip, AC97_CMD,
 334		     reg | (ac97->addr << FM801_AC97_ADDR_SHIFT) | FM801_AC97_READ);
 335	if (!fm801_ac97_is_ready(chip, 100)) {
 336		dev_err(chip->card->dev, "AC'97 interface #%d is busy (2)\n",
 337			ac97->num);
 338		return 0;
 339	}
 340
 341	if (!fm801_ac97_is_valid(chip, 1000)) {
 342		dev_err(chip->card->dev,
 343			"AC'97 interface #%d is not valid (2)\n", ac97->num);
 344		return 0;
 345	}
 346
 347	return fm801_readw(chip, AC97_DATA);
 348}
 349
 350static const unsigned int rates[] = {
 351  5500,  8000,  9600, 11025,
 352  16000, 19200, 22050, 32000,
 353  38400, 44100, 48000
 354};
 355
 356static const struct snd_pcm_hw_constraint_list hw_constraints_rates = {
 357	.count = ARRAY_SIZE(rates),
 358	.list = rates,
 359	.mask = 0,
 360};
 361
 362static const unsigned int channels[] = {
 363  2, 4, 6
 364};
 365
 366static const struct snd_pcm_hw_constraint_list hw_constraints_channels = {
 367	.count = ARRAY_SIZE(channels),
 368	.list = channels,
 369	.mask = 0,
 370};
 371
 372/*
 373 *  Sample rate routines
 374 */
 375
 376static unsigned short snd_fm801_rate_bits(unsigned int rate)
 377{
 378	unsigned int idx;
 379
 380	for (idx = 0; idx < ARRAY_SIZE(rates); idx++)
 381		if (rates[idx] == rate)
 382			return idx;
 383	snd_BUG();
 384	return ARRAY_SIZE(rates) - 1;
 385}
 386
 387/*
 388 *  PCM part
 389 */
 390
 391static int snd_fm801_playback_trigger(struct snd_pcm_substream *substream,
 392				      int cmd)
 393{
 394	struct fm801 *chip = snd_pcm_substream_chip(substream);
 395
 396	spin_lock(&chip->reg_lock);
 397	switch (cmd) {
 398	case SNDRV_PCM_TRIGGER_START:
 399		chip->ply_ctrl &= ~(FM801_BUF1_LAST |
 400				     FM801_BUF2_LAST |
 401				     FM801_PAUSE);
 402		chip->ply_ctrl |= FM801_START |
 403				   FM801_IMMED_STOP;
 404		break;
 405	case SNDRV_PCM_TRIGGER_STOP:
 406		chip->ply_ctrl &= ~(FM801_START | FM801_PAUSE);
 407		break;
 408	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 409	case SNDRV_PCM_TRIGGER_SUSPEND:
 410		chip->ply_ctrl |= FM801_PAUSE;
 411		break;
 412	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 413	case SNDRV_PCM_TRIGGER_RESUME:
 414		chip->ply_ctrl &= ~FM801_PAUSE;
 415		break;
 416	default:
 417		spin_unlock(&chip->reg_lock);
 418		snd_BUG();
 419		return -EINVAL;
 420	}
 421	fm801_writew(chip, PLY_CTRL, chip->ply_ctrl);
 422	spin_unlock(&chip->reg_lock);
 423	return 0;
 424}
 425
 426static int snd_fm801_capture_trigger(struct snd_pcm_substream *substream,
 427				     int cmd)
 428{
 429	struct fm801 *chip = snd_pcm_substream_chip(substream);
 430
 431	spin_lock(&chip->reg_lock);
 432	switch (cmd) {
 433	case SNDRV_PCM_TRIGGER_START:
 434		chip->cap_ctrl &= ~(FM801_BUF1_LAST |
 435				     FM801_BUF2_LAST |
 436				     FM801_PAUSE);
 437		chip->cap_ctrl |= FM801_START |
 438				   FM801_IMMED_STOP;
 439		break;
 440	case SNDRV_PCM_TRIGGER_STOP:
 441		chip->cap_ctrl &= ~(FM801_START | FM801_PAUSE);
 442		break;
 443	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 444	case SNDRV_PCM_TRIGGER_SUSPEND:
 445		chip->cap_ctrl |= FM801_PAUSE;
 446		break;
 447	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 448	case SNDRV_PCM_TRIGGER_RESUME:
 449		chip->cap_ctrl &= ~FM801_PAUSE;
 450		break;
 451	default:
 452		spin_unlock(&chip->reg_lock);
 453		snd_BUG();
 454		return -EINVAL;
 455	}
 456	fm801_writew(chip, CAP_CTRL, chip->cap_ctrl);
 457	spin_unlock(&chip->reg_lock);
 458	return 0;
 459}
 460
 
 
 
 
 
 
 
 
 
 
 
 461static int snd_fm801_playback_prepare(struct snd_pcm_substream *substream)
 462{
 463	struct fm801 *chip = snd_pcm_substream_chip(substream);
 464	struct snd_pcm_runtime *runtime = substream->runtime;
 465
 466	chip->ply_size = snd_pcm_lib_buffer_bytes(substream);
 467	chip->ply_count = snd_pcm_lib_period_bytes(substream);
 468	spin_lock_irq(&chip->reg_lock);
 469	chip->ply_ctrl &= ~(FM801_START | FM801_16BIT |
 470			     FM801_STEREO | FM801_RATE_MASK |
 471			     FM801_CHANNELS_MASK);
 472	if (snd_pcm_format_width(runtime->format) == 16)
 473		chip->ply_ctrl |= FM801_16BIT;
 474	if (runtime->channels > 1) {
 475		chip->ply_ctrl |= FM801_STEREO;
 476		if (runtime->channels == 4)
 477			chip->ply_ctrl |= FM801_CHANNELS_4;
 478		else if (runtime->channels == 6)
 479			chip->ply_ctrl |= FM801_CHANNELS_6;
 480	}
 481	chip->ply_ctrl |= snd_fm801_rate_bits(runtime->rate) << FM801_RATE_SHIFT;
 482	chip->ply_buf = 0;
 483	fm801_writew(chip, PLY_CTRL, chip->ply_ctrl);
 484	fm801_writew(chip, PLY_COUNT, chip->ply_count - 1);
 485	chip->ply_buffer = runtime->dma_addr;
 486	chip->ply_pos = 0;
 487	fm801_writel(chip, PLY_BUF1, chip->ply_buffer);
 488	fm801_writel(chip, PLY_BUF2,
 489		     chip->ply_buffer + (chip->ply_count % chip->ply_size));
 490	spin_unlock_irq(&chip->reg_lock);
 491	return 0;
 492}
 493
 494static int snd_fm801_capture_prepare(struct snd_pcm_substream *substream)
 495{
 496	struct fm801 *chip = snd_pcm_substream_chip(substream);
 497	struct snd_pcm_runtime *runtime = substream->runtime;
 498
 499	chip->cap_size = snd_pcm_lib_buffer_bytes(substream);
 500	chip->cap_count = snd_pcm_lib_period_bytes(substream);
 501	spin_lock_irq(&chip->reg_lock);
 502	chip->cap_ctrl &= ~(FM801_START | FM801_16BIT |
 503			     FM801_STEREO | FM801_RATE_MASK);
 504	if (snd_pcm_format_width(runtime->format) == 16)
 505		chip->cap_ctrl |= FM801_16BIT;
 506	if (runtime->channels > 1)
 507		chip->cap_ctrl |= FM801_STEREO;
 508	chip->cap_ctrl |= snd_fm801_rate_bits(runtime->rate) << FM801_RATE_SHIFT;
 509	chip->cap_buf = 0;
 510	fm801_writew(chip, CAP_CTRL, chip->cap_ctrl);
 511	fm801_writew(chip, CAP_COUNT, chip->cap_count - 1);
 512	chip->cap_buffer = runtime->dma_addr;
 513	chip->cap_pos = 0;
 514	fm801_writel(chip, CAP_BUF1, chip->cap_buffer);
 515	fm801_writel(chip, CAP_BUF2,
 516		     chip->cap_buffer + (chip->cap_count % chip->cap_size));
 517	spin_unlock_irq(&chip->reg_lock);
 518	return 0;
 519}
 520
 521static snd_pcm_uframes_t snd_fm801_playback_pointer(struct snd_pcm_substream *substream)
 522{
 523	struct fm801 *chip = snd_pcm_substream_chip(substream);
 524	size_t ptr;
 525
 526	if (!(chip->ply_ctrl & FM801_START))
 527		return 0;
 528	spin_lock(&chip->reg_lock);
 529	ptr = chip->ply_pos + (chip->ply_count - 1) - fm801_readw(chip, PLY_COUNT);
 530	if (fm801_readw(chip, IRQ_STATUS) & FM801_IRQ_PLAYBACK) {
 531		ptr += chip->ply_count;
 532		ptr %= chip->ply_size;
 533	}
 534	spin_unlock(&chip->reg_lock);
 535	return bytes_to_frames(substream->runtime, ptr);
 536}
 537
 538static snd_pcm_uframes_t snd_fm801_capture_pointer(struct snd_pcm_substream *substream)
 539{
 540	struct fm801 *chip = snd_pcm_substream_chip(substream);
 541	size_t ptr;
 542
 543	if (!(chip->cap_ctrl & FM801_START))
 544		return 0;
 545	spin_lock(&chip->reg_lock);
 546	ptr = chip->cap_pos + (chip->cap_count - 1) - fm801_readw(chip, CAP_COUNT);
 547	if (fm801_readw(chip, IRQ_STATUS) & FM801_IRQ_CAPTURE) {
 548		ptr += chip->cap_count;
 549		ptr %= chip->cap_size;
 550	}
 551	spin_unlock(&chip->reg_lock);
 552	return bytes_to_frames(substream->runtime, ptr);
 553}
 554
 555static irqreturn_t snd_fm801_interrupt(int irq, void *dev_id)
 556{
 557	struct fm801 *chip = dev_id;
 558	unsigned short status;
 559	unsigned int tmp;
 560
 561	status = fm801_readw(chip, IRQ_STATUS);
 562	status &= FM801_IRQ_PLAYBACK|FM801_IRQ_CAPTURE|FM801_IRQ_MPU|FM801_IRQ_VOLUME;
 563	if (! status)
 564		return IRQ_NONE;
 565	/* ack first */
 566	fm801_writew(chip, IRQ_STATUS, status);
 567	if (chip->pcm && (status & FM801_IRQ_PLAYBACK) && chip->playback_substream) {
 568		spin_lock(&chip->reg_lock);
 569		chip->ply_buf++;
 570		chip->ply_pos += chip->ply_count;
 571		chip->ply_pos %= chip->ply_size;
 572		tmp = chip->ply_pos + chip->ply_count;
 573		tmp %= chip->ply_size;
 574		if (chip->ply_buf & 1)
 575			fm801_writel(chip, PLY_BUF1, chip->ply_buffer + tmp);
 576		else
 577			fm801_writel(chip, PLY_BUF2, chip->ply_buffer + tmp);
 578		spin_unlock(&chip->reg_lock);
 579		snd_pcm_period_elapsed(chip->playback_substream);
 580	}
 581	if (chip->pcm && (status & FM801_IRQ_CAPTURE) && chip->capture_substream) {
 582		spin_lock(&chip->reg_lock);
 583		chip->cap_buf++;
 584		chip->cap_pos += chip->cap_count;
 585		chip->cap_pos %= chip->cap_size;
 586		tmp = chip->cap_pos + chip->cap_count;
 587		tmp %= chip->cap_size;
 588		if (chip->cap_buf & 1)
 589			fm801_writel(chip, CAP_BUF1, chip->cap_buffer + tmp);
 590		else
 591			fm801_writel(chip, CAP_BUF2, chip->cap_buffer + tmp);
 592		spin_unlock(&chip->reg_lock);
 593		snd_pcm_period_elapsed(chip->capture_substream);
 594	}
 595	if (chip->rmidi && (status & FM801_IRQ_MPU))
 596		snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
 597	if (status & FM801_IRQ_VOLUME) {
 598		/* TODO */
 599	}
 600
 601	return IRQ_HANDLED;
 602}
 603
 604static const struct snd_pcm_hardware snd_fm801_playback =
 605{
 606	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
 607				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
 608				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME |
 609				 SNDRV_PCM_INFO_MMAP_VALID),
 610	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
 611	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
 612	.rate_min =		5500,
 613	.rate_max =		48000,
 614	.channels_min =		1,
 615	.channels_max =		2,
 616	.buffer_bytes_max =	(128*1024),
 617	.period_bytes_min =	64,
 618	.period_bytes_max =	(128*1024),
 619	.periods_min =		1,
 620	.periods_max =		1024,
 621	.fifo_size =		0,
 622};
 623
 624static const struct snd_pcm_hardware snd_fm801_capture =
 625{
 626	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
 627				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
 628				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME |
 629				 SNDRV_PCM_INFO_MMAP_VALID),
 630	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
 631	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
 632	.rate_min =		5500,
 633	.rate_max =		48000,
 634	.channels_min =		1,
 635	.channels_max =		2,
 636	.buffer_bytes_max =	(128*1024),
 637	.period_bytes_min =	64,
 638	.period_bytes_max =	(128*1024),
 639	.periods_min =		1,
 640	.periods_max =		1024,
 641	.fifo_size =		0,
 642};
 643
 644static int snd_fm801_playback_open(struct snd_pcm_substream *substream)
 645{
 646	struct fm801 *chip = snd_pcm_substream_chip(substream);
 647	struct snd_pcm_runtime *runtime = substream->runtime;
 648	int err;
 649
 650	chip->playback_substream = substream;
 651	runtime->hw = snd_fm801_playback;
 652	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
 653				   &hw_constraints_rates);
 654	if (chip->multichannel) {
 655		runtime->hw.channels_max = 6;
 656		snd_pcm_hw_constraint_list(runtime, 0,
 657					   SNDRV_PCM_HW_PARAM_CHANNELS,
 658					   &hw_constraints_channels);
 659	}
 660	err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
 661	if (err < 0)
 662		return err;
 663	return 0;
 664}
 665
 666static int snd_fm801_capture_open(struct snd_pcm_substream *substream)
 667{
 668	struct fm801 *chip = snd_pcm_substream_chip(substream);
 669	struct snd_pcm_runtime *runtime = substream->runtime;
 670	int err;
 671
 672	chip->capture_substream = substream;
 673	runtime->hw = snd_fm801_capture;
 674	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
 675				   &hw_constraints_rates);
 676	err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
 677	if (err < 0)
 678		return err;
 679	return 0;
 680}
 681
 682static int snd_fm801_playback_close(struct snd_pcm_substream *substream)
 683{
 684	struct fm801 *chip = snd_pcm_substream_chip(substream);
 685
 686	chip->playback_substream = NULL;
 687	return 0;
 688}
 689
 690static int snd_fm801_capture_close(struct snd_pcm_substream *substream)
 691{
 692	struct fm801 *chip = snd_pcm_substream_chip(substream);
 693
 694	chip->capture_substream = NULL;
 695	return 0;
 696}
 697
 698static const struct snd_pcm_ops snd_fm801_playback_ops = {
 699	.open =		snd_fm801_playback_open,
 700	.close =	snd_fm801_playback_close,
 
 
 
 701	.prepare =	snd_fm801_playback_prepare,
 702	.trigger =	snd_fm801_playback_trigger,
 703	.pointer =	snd_fm801_playback_pointer,
 704};
 705
 706static const struct snd_pcm_ops snd_fm801_capture_ops = {
 707	.open =		snd_fm801_capture_open,
 708	.close =	snd_fm801_capture_close,
 
 
 
 709	.prepare =	snd_fm801_capture_prepare,
 710	.trigger =	snd_fm801_capture_trigger,
 711	.pointer =	snd_fm801_capture_pointer,
 712};
 713
 714static int snd_fm801_pcm(struct fm801 *chip, int device)
 715{
 716	struct pci_dev *pdev = to_pci_dev(chip->dev);
 717	struct snd_pcm *pcm;
 718	int err;
 719
 720	err = snd_pcm_new(chip->card, "FM801", device, 1, 1, &pcm);
 721	if (err < 0)
 722		return err;
 723
 724	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_fm801_playback_ops);
 725	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_fm801_capture_ops);
 726
 727	pcm->private_data = chip;
 728	pcm->info_flags = 0;
 729	strcpy(pcm->name, "FM801");
 730	chip->pcm = pcm;
 731
 732	snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV, &pdev->dev,
 733				       chip->multichannel ? 128*1024 : 64*1024, 128*1024);
 
 734
 735	return snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
 736				     snd_pcm_alt_chmaps,
 737				     chip->multichannel ? 6 : 2, 0,
 738				     NULL);
 739}
 740
 741/*
 742 *  TEA5757 radio
 743 */
 744
 745#ifdef CONFIG_SND_FM801_TEA575X_BOOL
 746
 747/* GPIO to TEA575x maps */
 748struct snd_fm801_tea575x_gpio {
 749	u8 data, clk, wren, most;
 750	char *name;
 751};
 752
 753static const struct snd_fm801_tea575x_gpio snd_fm801_tea575x_gpios[] = {
 754	{ .data = 1, .clk = 3, .wren = 2, .most = 0, .name = "SF256-PCS" },
 755	{ .data = 1, .clk = 0, .wren = 2, .most = 3, .name = "SF256-PCP" },
 756	{ .data = 2, .clk = 0, .wren = 1, .most = 3, .name = "SF64-PCR" },
 757};
 758
 759#define get_tea575x_gpio(chip) \
 760	(&snd_fm801_tea575x_gpios[((chip)->tea575x_tuner & TUNER_TYPE_MASK) - 1])
 761
 762static void snd_fm801_tea575x_set_pins(struct snd_tea575x *tea, u8 pins)
 763{
 764	struct fm801 *chip = tea->private_data;
 765	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 766	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 767
 768	reg &= ~(FM801_GPIO_GP(gpio.data) |
 769		 FM801_GPIO_GP(gpio.clk) |
 770		 FM801_GPIO_GP(gpio.wren));
 771
 772	reg |= (pins & TEA575X_DATA) ? FM801_GPIO_GP(gpio.data) : 0;
 773	reg |= (pins & TEA575X_CLK)  ? FM801_GPIO_GP(gpio.clk) : 0;
 774	/* WRITE_ENABLE is inverted */
 775	reg |= (pins & TEA575X_WREN) ? 0 : FM801_GPIO_GP(gpio.wren);
 776
 777	fm801_writew(chip, GPIO_CTRL, reg);
 778}
 779
 780static u8 snd_fm801_tea575x_get_pins(struct snd_tea575x *tea)
 781{
 782	struct fm801 *chip = tea->private_data;
 783	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 784	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 785	u8 ret;
 786
 787	ret = 0;
 788	if (reg & FM801_GPIO_GP(gpio.data))
 789		ret |= TEA575X_DATA;
 790	if (reg & FM801_GPIO_GP(gpio.most))
 791		ret |= TEA575X_MOST;
 792	return ret;
 793}
 794
 795static void snd_fm801_tea575x_set_direction(struct snd_tea575x *tea, bool output)
 796{
 797	struct fm801 *chip = tea->private_data;
 798	unsigned short reg = fm801_readw(chip, GPIO_CTRL);
 799	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
 800
 801	/* use GPIO lines and set write enable bit */
 802	reg |= FM801_GPIO_GS(gpio.data) |
 803	       FM801_GPIO_GS(gpio.wren) |
 804	       FM801_GPIO_GS(gpio.clk) |
 805	       FM801_GPIO_GS(gpio.most);
 806	if (output) {
 807		/* all of lines are in the write direction */
 808		/* clear data and clock lines */
 809		reg &= ~(FM801_GPIO_GD(gpio.data) |
 810			 FM801_GPIO_GD(gpio.wren) |
 811			 FM801_GPIO_GD(gpio.clk) |
 812			 FM801_GPIO_GP(gpio.data) |
 813			 FM801_GPIO_GP(gpio.clk) |
 814			 FM801_GPIO_GP(gpio.wren));
 815	} else {
 816		/* use GPIO lines, set data direction to input */
 817		reg |= FM801_GPIO_GD(gpio.data) |
 818		       FM801_GPIO_GD(gpio.most) |
 819		       FM801_GPIO_GP(gpio.data) |
 820		       FM801_GPIO_GP(gpio.most) |
 821		       FM801_GPIO_GP(gpio.wren);
 822		/* all of lines are in the write direction, except data */
 823		/* clear data, write enable and clock lines */
 824		reg &= ~(FM801_GPIO_GD(gpio.wren) |
 825			 FM801_GPIO_GD(gpio.clk) |
 826			 FM801_GPIO_GP(gpio.clk));
 827	}
 828
 829	fm801_writew(chip, GPIO_CTRL, reg);
 830}
 831
 832static const struct snd_tea575x_ops snd_fm801_tea_ops = {
 833	.set_pins = snd_fm801_tea575x_set_pins,
 834	.get_pins = snd_fm801_tea575x_get_pins,
 835	.set_direction = snd_fm801_tea575x_set_direction,
 836};
 837#endif
 838
 839/*
 840 *  Mixer routines
 841 */
 842
 843#define FM801_SINGLE(xname, reg, shift, mask, invert) \
 844{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_fm801_info_single, \
 845  .get = snd_fm801_get_single, .put = snd_fm801_put_single, \
 846  .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
 847
 848static int snd_fm801_info_single(struct snd_kcontrol *kcontrol,
 849				 struct snd_ctl_elem_info *uinfo)
 850{
 851	int mask = (kcontrol->private_value >> 16) & 0xff;
 852
 853	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
 854	uinfo->count = 1;
 855	uinfo->value.integer.min = 0;
 856	uinfo->value.integer.max = mask;
 857	return 0;
 858}
 859
 860static int snd_fm801_get_single(struct snd_kcontrol *kcontrol,
 861				struct snd_ctl_elem_value *ucontrol)
 862{
 863	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 864	int reg = kcontrol->private_value & 0xff;
 865	int shift = (kcontrol->private_value >> 8) & 0xff;
 866	int mask = (kcontrol->private_value >> 16) & 0xff;
 867	int invert = (kcontrol->private_value >> 24) & 0xff;
 868	long *value = ucontrol->value.integer.value;
 869
 870	value[0] = (fm801_ioread16(chip, reg) >> shift) & mask;
 871	if (invert)
 872		value[0] = mask - value[0];
 873	return 0;
 874}
 875
 876static int snd_fm801_put_single(struct snd_kcontrol *kcontrol,
 877				struct snd_ctl_elem_value *ucontrol)
 878{
 879	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 880	int reg = kcontrol->private_value & 0xff;
 881	int shift = (kcontrol->private_value >> 8) & 0xff;
 882	int mask = (kcontrol->private_value >> 16) & 0xff;
 883	int invert = (kcontrol->private_value >> 24) & 0xff;
 884	unsigned short val;
 885
 886	val = (ucontrol->value.integer.value[0] & mask);
 887	if (invert)
 888		val = mask - val;
 889	return snd_fm801_update_bits(chip, reg, mask << shift, val << shift);
 890}
 891
 892#define FM801_DOUBLE(xname, reg, shift_left, shift_right, mask, invert) \
 893{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_fm801_info_double, \
 894  .get = snd_fm801_get_double, .put = snd_fm801_put_double, \
 895  .private_value = reg | (shift_left << 8) | (shift_right << 12) | (mask << 16) | (invert << 24) }
 896#define FM801_DOUBLE_TLV(xname, reg, shift_left, shift_right, mask, invert, xtlv) \
 897{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
 898  .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
 899  .name = xname, .info = snd_fm801_info_double, \
 900  .get = snd_fm801_get_double, .put = snd_fm801_put_double, \
 901  .private_value = reg | (shift_left << 8) | (shift_right << 12) | (mask << 16) | (invert << 24), \
 902  .tlv = { .p = (xtlv) } }
 903
 904static int snd_fm801_info_double(struct snd_kcontrol *kcontrol,
 905				 struct snd_ctl_elem_info *uinfo)
 906{
 907	int mask = (kcontrol->private_value >> 16) & 0xff;
 908
 909	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
 910	uinfo->count = 2;
 911	uinfo->value.integer.min = 0;
 912	uinfo->value.integer.max = mask;
 913	return 0;
 914}
 915
 916static int snd_fm801_get_double(struct snd_kcontrol *kcontrol,
 917				struct snd_ctl_elem_value *ucontrol)
 918{
 919	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 920        int reg = kcontrol->private_value & 0xff;
 921	int shift_left = (kcontrol->private_value >> 8) & 0x0f;
 922	int shift_right = (kcontrol->private_value >> 12) & 0x0f;
 923	int mask = (kcontrol->private_value >> 16) & 0xff;
 924	int invert = (kcontrol->private_value >> 24) & 0xff;
 925	long *value = ucontrol->value.integer.value;
 926
 927	spin_lock_irq(&chip->reg_lock);
 928	value[0] = (fm801_ioread16(chip, reg) >> shift_left) & mask;
 929	value[1] = (fm801_ioread16(chip, reg) >> shift_right) & mask;
 930	spin_unlock_irq(&chip->reg_lock);
 931	if (invert) {
 932		value[0] = mask - value[0];
 933		value[1] = mask - value[1];
 934	}
 935	return 0;
 936}
 937
 938static int snd_fm801_put_double(struct snd_kcontrol *kcontrol,
 939				struct snd_ctl_elem_value *ucontrol)
 940{
 941	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 942	int reg = kcontrol->private_value & 0xff;
 943	int shift_left = (kcontrol->private_value >> 8) & 0x0f;
 944	int shift_right = (kcontrol->private_value >> 12) & 0x0f;
 945	int mask = (kcontrol->private_value >> 16) & 0xff;
 946	int invert = (kcontrol->private_value >> 24) & 0xff;
 947	unsigned short val1, val2;
 948 
 949	val1 = ucontrol->value.integer.value[0] & mask;
 950	val2 = ucontrol->value.integer.value[1] & mask;
 951	if (invert) {
 952		val1 = mask - val1;
 953		val2 = mask - val2;
 954	}
 955	return snd_fm801_update_bits(chip, reg,
 956				     (mask << shift_left) | (mask << shift_right),
 957				     (val1 << shift_left ) | (val2 << shift_right));
 958}
 959
 960static int snd_fm801_info_mux(struct snd_kcontrol *kcontrol,
 961			      struct snd_ctl_elem_info *uinfo)
 962{
 963	static const char * const texts[5] = {
 964		"AC97 Primary", "FM", "I2S", "PCM", "AC97 Secondary"
 965	};
 966 
 967	return snd_ctl_enum_info(uinfo, 1, 5, texts);
 968}
 969
 970static int snd_fm801_get_mux(struct snd_kcontrol *kcontrol,
 971			     struct snd_ctl_elem_value *ucontrol)
 972{
 973	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 974        unsigned short val;
 975 
 976	val = fm801_readw(chip, REC_SRC) & 7;
 977	if (val > 4)
 978		val = 4;
 979        ucontrol->value.enumerated.item[0] = val;
 980        return 0;
 981}
 982
 983static int snd_fm801_put_mux(struct snd_kcontrol *kcontrol,
 984			     struct snd_ctl_elem_value *ucontrol)
 985{
 986	struct fm801 *chip = snd_kcontrol_chip(kcontrol);
 987        unsigned short val;
 988 
 989	val = ucontrol->value.enumerated.item[0];
 990	if (val > 4)
 991                return -EINVAL;
 992	return snd_fm801_update_bits(chip, FM801_REC_SRC, 7, val);
 993}
 994
 995static const DECLARE_TLV_DB_SCALE(db_scale_dsp, -3450, 150, 0);
 996
 997#define FM801_CONTROLS ARRAY_SIZE(snd_fm801_controls)
 998
 999static const struct snd_kcontrol_new snd_fm801_controls[] = {
1000FM801_DOUBLE_TLV("Wave Playback Volume", FM801_PCM_VOL, 0, 8, 31, 1,
1001		 db_scale_dsp),
1002FM801_SINGLE("Wave Playback Switch", FM801_PCM_VOL, 15, 1, 1),
1003FM801_DOUBLE_TLV("I2S Playback Volume", FM801_I2S_VOL, 0, 8, 31, 1,
1004		 db_scale_dsp),
1005FM801_SINGLE("I2S Playback Switch", FM801_I2S_VOL, 15, 1, 1),
1006FM801_DOUBLE_TLV("FM Playback Volume", FM801_FM_VOL, 0, 8, 31, 1,
1007		 db_scale_dsp),
1008FM801_SINGLE("FM Playback Switch", FM801_FM_VOL, 15, 1, 1),
1009{
1010	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1011	.name = "Digital Capture Source",
1012	.info = snd_fm801_info_mux,
1013	.get = snd_fm801_get_mux,
1014	.put = snd_fm801_put_mux,
1015}
1016};
1017
1018#define FM801_CONTROLS_MULTI ARRAY_SIZE(snd_fm801_controls_multi)
1019
1020static const struct snd_kcontrol_new snd_fm801_controls_multi[] = {
1021FM801_SINGLE("AC97 2ch->4ch Copy Switch", FM801_CODEC_CTRL, 7, 1, 0),
1022FM801_SINGLE("AC97 18-bit Switch", FM801_CODEC_CTRL, 10, 1, 0),
1023FM801_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), FM801_I2S_MODE, 8, 1, 0),
1024FM801_SINGLE(SNDRV_CTL_NAME_IEC958("Raw Data ",PLAYBACK,SWITCH), FM801_I2S_MODE, 9, 1, 0),
1025FM801_SINGLE(SNDRV_CTL_NAME_IEC958("Raw Data ",CAPTURE,SWITCH), FM801_I2S_MODE, 10, 1, 0),
1026FM801_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), FM801_GEN_CTRL, 2, 1, 0),
1027};
1028
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1029static int snd_fm801_mixer(struct fm801 *chip)
1030{
1031	struct snd_ac97_template ac97;
1032	unsigned int i;
1033	int err;
1034	static const struct snd_ac97_bus_ops ops = {
1035		.write = snd_fm801_codec_write,
1036		.read = snd_fm801_codec_read,
1037	};
1038
1039	err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus);
1040	if (err < 0)
1041		return err;
 
1042
1043	memset(&ac97, 0, sizeof(ac97));
1044	ac97.private_data = chip;
1045	err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97);
1046	if (err < 0)
1047		return err;
1048	if (chip->secondary) {
1049		ac97.num = 1;
1050		ac97.addr = chip->secondary_addr;
1051		err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97_sec);
1052		if (err < 0)
1053			return err;
1054	}
1055	for (i = 0; i < FM801_CONTROLS; i++) {
1056		err = snd_ctl_add(chip->card,
1057			snd_ctl_new1(&snd_fm801_controls[i], chip));
1058		if (err < 0)
1059			return err;
1060	}
 
 
1061	if (chip->multichannel) {
1062		for (i = 0; i < FM801_CONTROLS_MULTI; i++) {
1063			err = snd_ctl_add(chip->card,
1064				snd_ctl_new1(&snd_fm801_controls_multi[i], chip));
1065			if (err < 0)
1066				return err;
1067		}
1068	}
1069	return 0;
1070}
1071
1072/*
1073 *  initialization routines
1074 */
1075
1076static int wait_for_codec(struct fm801 *chip, unsigned int codec_id,
1077			  unsigned short reg, unsigned long waits)
1078{
1079	unsigned long timeout = jiffies + waits;
1080
1081	fm801_writew(chip, AC97_CMD,
1082		     reg | (codec_id << FM801_AC97_ADDR_SHIFT) | FM801_AC97_READ);
1083	udelay(5);
1084	do {
1085		if ((fm801_readw(chip, AC97_CMD) &
1086		     (FM801_AC97_VALID | FM801_AC97_BUSY)) == FM801_AC97_VALID)
1087			return 0;
1088		schedule_timeout_uninterruptible(1);
1089	} while (time_after(timeout, jiffies));
1090	return -EIO;
1091}
1092
1093static int reset_codec(struct fm801 *chip)
1094{
1095	/* codec cold reset + AC'97 warm reset */
1096	fm801_writew(chip, CODEC_CTRL, (1 << 5) | (1 << 6));
1097	fm801_readw(chip, CODEC_CTRL); /* flush posting data */
1098	udelay(100);
1099	fm801_writew(chip, CODEC_CTRL, 0);
1100
1101	return wait_for_codec(chip, 0, AC97_RESET, msecs_to_jiffies(750));
1102}
1103
1104static void snd_fm801_chip_multichannel_init(struct fm801 *chip)
1105{
1106	unsigned short cmdw;
1107
1108	if (chip->multichannel) {
1109		if (chip->secondary_addr) {
1110			wait_for_codec(chip, chip->secondary_addr,
1111				       AC97_VENDOR_ID1, msecs_to_jiffies(50));
1112		} else {
1113			/* my card has the secondary codec */
1114			/* at address #3, so the loop is inverted */
1115			int i;
1116			for (i = 3; i > 0; i--) {
1117				if (!wait_for_codec(chip, i, AC97_VENDOR_ID1,
1118						     msecs_to_jiffies(50))) {
1119					cmdw = fm801_readw(chip, AC97_DATA);
1120					if (cmdw != 0xffff && cmdw != 0) {
1121						chip->secondary = 1;
1122						chip->secondary_addr = i;
1123						break;
1124					}
1125				}
1126			}
1127		}
1128
1129		/* the recovery phase, it seems that probing for non-existing codec might */
1130		/* cause timeout problems */
1131		wait_for_codec(chip, 0, AC97_VENDOR_ID1, msecs_to_jiffies(750));
1132	}
1133}
1134
1135static void snd_fm801_chip_init(struct fm801 *chip)
1136{
1137	unsigned short cmdw;
1138
1139	/* init volume */
1140	fm801_writew(chip, PCM_VOL, 0x0808);
1141	fm801_writew(chip, FM_VOL, 0x9f1f);
1142	fm801_writew(chip, I2S_VOL, 0x8808);
1143
1144	/* I2S control - I2S mode */
1145	fm801_writew(chip, I2S_MODE, 0x0003);
1146
1147	/* interrupt setup */
1148	cmdw = fm801_readw(chip, IRQ_MASK);
1149	if (chip->irq < 0)
1150		cmdw |= 0x00c3;		/* mask everything, no PCM nor MPU */
1151	else
1152		cmdw &= ~0x0083;	/* unmask MPU, PLAYBACK & CAPTURE */
1153	fm801_writew(chip, IRQ_MASK, cmdw);
1154
1155	/* interrupt clear */
1156	fm801_writew(chip, IRQ_STATUS,
1157		     FM801_IRQ_PLAYBACK | FM801_IRQ_CAPTURE | FM801_IRQ_MPU);
1158}
1159
1160static void snd_fm801_free(struct snd_card *card)
1161{
1162	struct fm801 *chip = card->private_data;
1163	unsigned short cmdw;
1164
 
 
 
1165	/* interrupt setup - mask everything */
1166	cmdw = fm801_readw(chip, IRQ_MASK);
1167	cmdw |= 0x00c3;
1168	fm801_writew(chip, IRQ_MASK, cmdw);
1169
 
 
 
1170#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1171	if (!(chip->tea575x_tuner & TUNER_DISABLED)) {
1172		snd_tea575x_exit(&chip->tea);
1173		v4l2_device_unregister(&chip->v4l2_dev);
1174	}
1175#endif
 
 
 
 
 
 
 
1176}
1177
1178static int snd_fm801_create(struct snd_card *card,
1179			    struct pci_dev *pci,
1180			    int tea575x_tuner,
1181			    int radio_nr)
 
1182{
1183	struct fm801 *chip = card->private_data;
1184	int err;
 
 
 
1185
1186	err = pcim_enable_device(pci);
1187	if (err < 0)
1188		return err;
 
 
 
1189	spin_lock_init(&chip->reg_lock);
1190	chip->card = card;
1191	chip->dev = &pci->dev;
1192	chip->irq = -1;
1193	chip->tea575x_tuner = tea575x_tuner;
1194	err = pci_request_regions(pci, "FM801");
1195	if (err < 0)
1196		return err;
1197	chip->port = pci_resource_start(pci, 0);
1198
1199	if (pci->revision >= 0xb1)	/* FM801-AU */
1200		chip->multichannel = 1;
1201
1202	if (!(chip->tea575x_tuner & TUNER_ONLY)) {
1203		if (reset_codec(chip) < 0) {
1204			dev_info(chip->card->dev,
1205				 "Primary AC'97 codec not found, assume SF64-PCR (tuner-only)\n");
1206			chip->tea575x_tuner = 3 | TUNER_ONLY;
1207		} else {
1208			snd_fm801_chip_multichannel_init(chip);
1209		}
1210	}
1211
 
 
1212	if ((chip->tea575x_tuner & TUNER_ONLY) == 0) {
1213		if (devm_request_irq(&pci->dev, pci->irq, snd_fm801_interrupt,
1214				IRQF_SHARED, KBUILD_MODNAME, chip)) {
1215			dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
 
1216			return -EBUSY;
1217		}
1218		chip->irq = pci->irq;
1219		card->sync_irq = chip->irq;
1220		pci_set_master(pci);
1221	}
1222
1223	card->private_free = snd_fm801_free;
1224	snd_fm801_chip_init(chip);
 
 
1225
1226#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1227	err = v4l2_device_register(&pci->dev, &chip->v4l2_dev);
1228	if (err < 0)
 
1229		return err;
 
1230	chip->tea.v4l2_dev = &chip->v4l2_dev;
1231	chip->tea.radio_nr = radio_nr;
1232	chip->tea.private_data = chip;
1233	chip->tea.ops = &snd_fm801_tea_ops;
1234	sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci));
1235	if ((chip->tea575x_tuner & TUNER_TYPE_MASK) > 0 &&
1236	    (chip->tea575x_tuner & TUNER_TYPE_MASK) < 4) {
1237		if (snd_tea575x_init(&chip->tea, THIS_MODULE)) {
1238			dev_err(card->dev, "TEA575x radio not found\n");
 
1239			return -ENODEV;
1240		}
1241	} else if ((chip->tea575x_tuner & TUNER_TYPE_MASK) == 0) {
1242		unsigned int tuner_only = chip->tea575x_tuner & TUNER_ONLY;
1243
1244		/* autodetect tuner connection */
1245		for (tea575x_tuner = 1; tea575x_tuner <= 3; tea575x_tuner++) {
1246			chip->tea575x_tuner = tea575x_tuner;
1247			if (!snd_tea575x_init(&chip->tea, THIS_MODULE)) {
1248				dev_info(card->dev,
1249					 "detected TEA575x radio type %s\n",
1250					   get_tea575x_gpio(chip)->name);
1251				break;
1252			}
1253		}
1254		if (tea575x_tuner == 4) {
1255			dev_err(card->dev, "TEA575x radio not found\n");
1256			chip->tea575x_tuner = TUNER_DISABLED;
1257		}
1258
1259		chip->tea575x_tuner |= tuner_only;
1260	}
1261	if (!(chip->tea575x_tuner & TUNER_DISABLED)) {
1262		strscpy(chip->tea.card, get_tea575x_gpio(chip)->name,
1263			sizeof(chip->tea.card));
1264	}
1265#endif
 
 
1266	return 0;
1267}
1268
1269static int __snd_card_fm801_probe(struct pci_dev *pci,
1270				  const struct pci_device_id *pci_id)
1271{
1272	static int dev;
1273	struct snd_card *card;
1274	struct fm801 *chip;
1275	struct snd_opl3 *opl3;
1276	int err;
1277
1278        if (dev >= SNDRV_CARDS)
1279                return -ENODEV;
1280	if (!enable[dev]) {
1281		dev++;
1282		return -ENOENT;
1283	}
1284
1285	err = snd_devm_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
1286				sizeof(*chip), &card);
1287	if (err < 0)
1288		return err;
1289	chip = card->private_data;
1290	err = snd_fm801_create(card, pci, tea575x_tuner[dev], radio_nr[dev]);
1291	if (err < 0)
1292		return err;
 
 
1293
1294	strcpy(card->driver, "FM801");
1295	strcpy(card->shortname, "ForteMedia FM801-");
1296	strcat(card->shortname, chip->multichannel ? "AU" : "AS");
1297	sprintf(card->longname, "%s at 0x%lx, irq %i",
1298		card->shortname, chip->port, chip->irq);
1299
1300	if (chip->tea575x_tuner & TUNER_ONLY)
1301		goto __fm801_tuner_only;
1302
1303	err = snd_fm801_pcm(chip, 0);
1304	if (err < 0)
1305		return err;
1306	err = snd_fm801_mixer(chip);
1307	if (err < 0)
 
1308		return err;
1309	err = snd_mpu401_uart_new(card, 0, MPU401_HW_FM801,
1310				  chip->port + FM801_MPU401_DATA,
1311				  MPU401_INFO_INTEGRATED |
1312				  MPU401_INFO_IRQ_HOOK,
1313				  -1, &chip->rmidi);
1314	if (err < 0)
 
1315		return err;
1316	err = snd_opl3_create(card, chip->port + FM801_OPL3_BANK0,
1317			      chip->port + FM801_OPL3_BANK1,
1318			      OPL3_HW_OPL3_FM801, 1, &opl3);
1319	if (err < 0)
 
1320		return err;
1321	err = snd_opl3_hwdep_new(opl3, 0, 1, NULL);
1322	if (err < 0)
 
1323		return err;
 
1324
1325      __fm801_tuner_only:
1326	err = snd_card_register(card);
1327	if (err < 0)
1328		return err;
 
1329	pci_set_drvdata(pci, card);
1330	dev++;
1331	return 0;
1332}
1333
1334static int snd_card_fm801_probe(struct pci_dev *pci,
1335				const struct pci_device_id *pci_id)
1336{
1337	return snd_card_free_on_error(&pci->dev, __snd_card_fm801_probe(pci, pci_id));
1338}
1339
1340static const unsigned char saved_regs[] = {
 
1341	FM801_PCM_VOL, FM801_I2S_VOL, FM801_FM_VOL, FM801_REC_SRC,
1342	FM801_PLY_CTRL, FM801_PLY_COUNT, FM801_PLY_BUF1, FM801_PLY_BUF2,
1343	FM801_CAP_CTRL, FM801_CAP_COUNT, FM801_CAP_BUF1, FM801_CAP_BUF2,
1344	FM801_CODEC_CTRL, FM801_I2S_MODE, FM801_VOLUME, FM801_GEN_CTRL,
1345};
1346
1347static int snd_fm801_suspend(struct device *dev)
1348{
1349	struct snd_card *card = dev_get_drvdata(dev);
1350	struct fm801 *chip = card->private_data;
1351	int i;
1352
1353	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1354
1355	for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
1356		chip->saved_regs[i] = fm801_ioread16(chip, saved_regs[i]);
1357
1358	if (chip->tea575x_tuner & TUNER_ONLY) {
1359		/* FIXME: tea575x suspend */
1360	} else {
 
1361		snd_ac97_suspend(chip->ac97);
1362		snd_ac97_suspend(chip->ac97_sec);
1363	}
1364
1365	return 0;
1366}
1367
1368static int snd_fm801_resume(struct device *dev)
1369{
1370	struct snd_card *card = dev_get_drvdata(dev);
1371	struct fm801 *chip = card->private_data;
1372	int i;
1373
1374	if (chip->tea575x_tuner & TUNER_ONLY) {
1375		snd_fm801_chip_init(chip);
1376	} else {
1377		reset_codec(chip);
1378		snd_fm801_chip_multichannel_init(chip);
1379		snd_fm801_chip_init(chip);
1380		snd_ac97_resume(chip->ac97);
1381		snd_ac97_resume(chip->ac97_sec);
1382	}
1383
1384	for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
1385		fm801_iowrite16(chip, saved_regs[i], chip->saved_regs[i]);
1386
1387#ifdef CONFIG_SND_FM801_TEA575X_BOOL
1388	if (!(chip->tea575x_tuner & TUNER_DISABLED))
1389		snd_tea575x_set_freq(&chip->tea);
1390#endif
1391
1392	snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1393	return 0;
1394}
1395
1396static DEFINE_SIMPLE_DEV_PM_OPS(snd_fm801_pm, snd_fm801_suspend, snd_fm801_resume);
 
 
 
 
1397
1398static struct pci_driver fm801_driver = {
1399	.name = KBUILD_MODNAME,
1400	.id_table = snd_fm801_ids,
1401	.probe = snd_card_fm801_probe,
 
1402	.driver = {
1403		.pm = &snd_fm801_pm,
1404	},
1405};
1406
1407module_pci_driver(fm801_driver);