📄 aureon.c
字号:
/* * ALSA driver for ICEnsemble VT1724 (Envy24HT) * * Lowlevel functions for Terratec Aureon cards * * Copyright (c) 2003 Takashi Iwai <tiwai@suse.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * * NOTES: * * - we reuse the akm4xxx_t record for storing the wm8770 codec data. * both wm and akm codecs are pretty similar, so we can integrate * both controls in the future, once if wm codecs are reused in * many boards. * * - DAC digital volumes are not implemented in the mixer. * if they show better response than DAC analog volumes, we can use them * instead. * * Lowlevel functions for AudioTrak Prodigy 7.1 (and possibly 192) cards * Copyright (c) 2003 Dimitromanolakis Apostolos <apostol@cs.utoronto.ca> * * version 0.82: Stable / not all features work yet (no communication with AC97 secondary) * added 64x/128x oversampling switch (should be 64x only for 96khz) * fixed some recording labels (still need to check the rest) * recording is working probably thanks to correct wm8770 initialization * * version 0.5: Initial release: * working: analog output, mixer, headphone amplifier switch * not working: prety much everything else, at least i could verify that * we have no digital output, no capture, pretty bad clicks and poops * on mixer switch and other coll stuff. * */ #include <sound/driver.h>#include <asm/io.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/init.h>#include <linux/slab.h>#include <sound/core.h>#include "ice1712.h"#include "envy24ht.h"#include "aureon.h"/* WM8770 registers */#define WM_DAC_ATTEN 0x00 /* DAC1-8 analog attenuation */#define WM_DAC_MASTER_ATTEN 0x08 /* DAC master analog attenuation */#define WM_DAC_DIG_ATTEN 0x09 /* DAC1-8 digital attenuation */#define WM_DAC_DIG_MASTER_ATTEN 0x11 /* DAC master digital attenuation */#define WM_PHASE_SWAP 0x12 /* DAC phase */#define WM_DAC_CTRL1 0x13 /* DAC control bits */#define WM_MUTE 0x14 /* mute controls */#define WM_DAC_CTRL2 0x15 /* de-emphasis and zefo-flag */#define WM_INT_CTRL 0x16 /* interface control */#define WM_MASTER 0x17 /* master clock and mode */#define WM_POWERDOWN 0x18 /* power-down controls */#define WM_ADC_GAIN 0x19 /* ADC gain L(19)/R(1a) */#define WM_ADC_MUX 0x1b /* input MUX */#define WM_OUT_MUX1 0x1c /* output MUX */#define WM_OUT_MUX2 0x1e /* output MUX */#define WM_RESET 0x1f /* software reset *//* CS8415A registers */#define CS8415_CTRL1 0x01#define CS8415_CTRL2 0x02#define CS8415_QSUB 0x14#define CS8415_RATIO 0x1E#define CS8415_C_BUFFER 0x20#define CS8415_ID 0x7Fstatic void aureon_ac97_write(ice1712_t *ice, unsigned short reg, unsigned short val) { unsigned int tmp; /* Send address to XILINX chip */ tmp = (snd_ice1712_gpio_read(ice) & ~0xFF) | (reg & 0x7F); snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp |= AUREON_AC97_ADDR; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp &= ~AUREON_AC97_ADDR; snd_ice1712_gpio_write(ice, tmp); udelay(10); /* Send low-order byte to XILINX chip */ tmp &= ~AUREON_AC97_DATA_MASK; tmp |= val & AUREON_AC97_DATA_MASK; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp |= AUREON_AC97_DATA_LOW; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp &= ~AUREON_AC97_DATA_LOW; snd_ice1712_gpio_write(ice, tmp); udelay(10); /* Send high-order byte to XILINX chip */ tmp &= ~AUREON_AC97_DATA_MASK; tmp |= (val >> 8) & AUREON_AC97_DATA_MASK; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp |= AUREON_AC97_DATA_HIGH; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp &= ~AUREON_AC97_DATA_HIGH; snd_ice1712_gpio_write(ice, tmp); udelay(10); /* Instruct XILINX chip to parse the data to the STAC9744 chip */ tmp |= AUREON_AC97_COMMIT; snd_ice1712_gpio_write(ice, tmp); udelay(10); tmp &= ~AUREON_AC97_COMMIT; snd_ice1712_gpio_write(ice, tmp); udelay(10); /* Store the data in out private buffer */ ice->spec.aureon.stac9744[(reg & 0x7F) >> 1] = val;}static unsigned short aureon_ac97_read(ice1712_t *ice, unsigned short reg){ return ice->spec.aureon.stac9744[(reg & 0x7F) >> 1];}/* * Initialize STAC9744 chip */static int aureon_ac97_init (ice1712_t *ice) { int i; static unsigned short ac97_defaults[] = { 0x00, 0x9640, 0x02, 0x8000, 0x04, 0x8000, 0x06, 0x8000, 0x0C, 0x8008, 0x0E, 0x8008, 0x10, 0x8808, 0x12, 0x8808, 0x14, 0x8808, 0x16, 0x8808, 0x18, 0x8808, 0x1C, 0x8000, 0x26, 0x000F, 0x28, 0x0201, 0x2C, 0xBB80, 0x32, 0xBB80, 0x7C, 0x8384, 0x7E, 0x7644, (unsigned short)-1 }; unsigned int tmp; /* Cold reset */ tmp = (snd_ice1712_gpio_read(ice) | AUREON_AC97_RESET) & ~AUREON_AC97_DATA_MASK; snd_ice1712_gpio_write(ice, tmp); udelay(3); tmp &= ~AUREON_AC97_RESET; snd_ice1712_gpio_write(ice, tmp); udelay(3); tmp |= AUREON_AC97_RESET; snd_ice1712_gpio_write(ice, tmp); udelay(3); memset(&ice->spec.aureon.stac9744, 0, sizeof(ice->spec.aureon.stac9744)); for (i=0; ac97_defaults[i] != (unsigned short)-1; i+=2) ice->spec.aureon.stac9744[(ac97_defaults[i]) >> 1] = ac97_defaults[i+1]; aureon_ac97_write(ice, AC97_MASTER, 0x0000); // Unmute AC'97 master volume permanently - muting is done by WM8770 return 0;}#define AUREON_AC97_STEREO 0x80/* * AC'97 volume controls */static int aureon_ac97_vol_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo){ uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; uinfo->count = kcontrol->private_value & AUREON_AC97_STEREO ? 2 : 1; uinfo->value.integer.min = 0; uinfo->value.integer.max = 31; return 0;}static int aureon_ac97_vol_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); unsigned short vol; down(&ice->gpio_mutex); vol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); ucontrol->value.integer.value[0] = 0x1F - (vol & 0x1F); if (kcontrol->private_value & AUREON_AC97_STEREO) ucontrol->value.integer.value[1] = 0x1F - ((vol >> 8) & 0x1F); up(&ice->gpio_mutex); return 0;}static int aureon_ac97_vol_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); unsigned short ovol, nvol; int change; snd_ice1712_save_gpio_status(ice); ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); nvol = (0x1F - ucontrol->value.integer.value[0]) & 0x001F; if (kcontrol->private_value & AUREON_AC97_STEREO) nvol |= ((0x1F - ucontrol->value.integer.value[1]) << 8) & 0x1F00; nvol |= ovol & ~0x1F1F; if ((change = (ovol != nvol))) aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol); snd_ice1712_restore_gpio_status(ice); return change; }/* * AC'97 mute controls */#define aureon_ac97_mute_info aureon_mono_bool_infostatic int aureon_ac97_mute_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); down(&ice->gpio_mutex); ucontrol->value.integer.value[0] = aureon_ac97_read(ice, kcontrol->private_value & 0x7F) & 0x8000 ? 0 : 1; up(&ice->gpio_mutex); return 0;}static int aureon_ac97_mute_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); unsigned short ovol, nvol; int change; snd_ice1712_save_gpio_status(ice); ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x8000) | (ovol & ~ 0x8000); if ((change = (ovol != nvol))) aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol); snd_ice1712_restore_gpio_status(ice); return change;}/* * AC'97 mute controls */#define aureon_ac97_micboost_info aureon_mono_bool_infostatic int aureon_ac97_micboost_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); down(&ice->gpio_mutex); ucontrol->value.integer.value[0] = aureon_ac97_read(ice, AC97_MIC) & 0x0020 ? 0 : 1; up(&ice->gpio_mutex); return 0;}static int aureon_ac97_micboost_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); unsigned short ovol, nvol; int change; snd_ice1712_save_gpio_status(ice); ovol = aureon_ac97_read(ice, AC97_MIC); nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x0020) | (ovol & ~0x0020); if ((change = (ovol != nvol))) aureon_ac97_write(ice, AC97_MIC, nvol); snd_ice1712_restore_gpio_status(ice); return change;}/* * write data in the SPI mode */static void aureon_spi_write(ice1712_t *ice, unsigned int cs, unsigned int data, int bits){ unsigned int tmp; int i; tmp = snd_ice1712_gpio_read(ice); snd_ice1712_gpio_set_mask(ice, ~(AUREON_WM_RW|AUREON_SPI_MOSI|AUREON_SPI_CLK| AUREON_WM_CS|AUREON_CS8415_CS)); tmp |= AUREON_WM_RW; tmp &= ~cs; snd_ice1712_gpio_write(ice, tmp); udelay(1); for (i = bits - 1; i >= 0; i--) { tmp &= ~AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); if (data & (1 << i)) tmp |= AUREON_SPI_MOSI; else tmp &= ~AUREON_SPI_MOSI; snd_ice1712_gpio_write(ice, tmp); udelay(1); tmp |= AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); } tmp &= ~AUREON_SPI_CLK; tmp |= cs; snd_ice1712_gpio_write(ice, tmp); udelay(1); tmp |= AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1);}/* * Read data in SPI mode */static void aureon_spi_read(ice1712_t *ice, unsigned int cs, unsigned int data, int bits, unsigned char *buffer, int size) { int i, j; unsigned int tmp; tmp = (snd_ice1712_gpio_read(ice) & ~AUREON_SPI_CLK) | AUREON_CS8415_CS|AUREON_WM_CS; snd_ice1712_gpio_write(ice, tmp); tmp &= ~cs; snd_ice1712_gpio_write(ice, tmp); udelay(1); for (i=bits-1; i>=0; i--) { if (data & (1 << i)) tmp |= AUREON_SPI_MOSI; else tmp &= ~AUREON_SPI_MOSI; snd_ice1712_gpio_write(ice, tmp); udelay(1); tmp |= AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); tmp &= ~AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); } for (j=0; j<size; j++) { unsigned char outdata = 0; for (i=7; i>=0; i--) { tmp = snd_ice1712_gpio_read(ice); outdata <<= 1; outdata |= (tmp & AUREON_SPI_MISO) ? 1 : 0; udelay(1); tmp |= AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); tmp &= ~AUREON_SPI_CLK; snd_ice1712_gpio_write(ice, tmp); udelay(1); } buffer[j] = outdata; } tmp |= cs; snd_ice1712_gpio_write(ice, tmp);}static unsigned char aureon_cs8415_get(ice1712_t *ice, int reg) { unsigned char val; aureon_spi_write(ice, AUREON_CS8415_CS, 0x2000 | reg, 16); aureon_spi_read(ice, AUREON_CS8415_CS, 0x21, 8, &val, 1); return val;}static void aureon_cs8415_read(ice1712_t *ice, int reg, unsigned char *buffer, int size) { aureon_spi_write(ice, AUREON_CS8415_CS, 0x2000 | reg, 16); aureon_spi_read(ice, AUREON_CS8415_CS, 0x21, 8, buffer, size);}static void aureon_cs8415_put(ice1712_t *ice, int reg, unsigned char val) { aureon_spi_write(ice, AUREON_CS8415_CS, 0x200000 | (reg << 8) | val, 24);}/* * get the current register value of WM codec */static unsigned short wm_get(ice1712_t *ice, int reg){ reg <<= 1; return ((unsigned short)ice->akm[0].images[reg] << 8) | ice->akm[0].images[reg + 1];}/* * set the register value of WM codec */static void wm_put_nocache(ice1712_t *ice, int reg, unsigned short val){ aureon_spi_write(ice, AUREON_WM_CS, (reg << 9) | (val & 0x1ff), 16);}/* * set the register value of WM codec and remember it */static void wm_put(ice1712_t *ice, int reg, unsigned short val){ wm_put_nocache(ice, reg, val); reg <<= 1; ice->akm[0].images[reg] = val >> 8; ice->akm[0].images[reg + 1] = val;}/* */static int aureon_mono_bool_info(snd_kcontrol_t *k, snd_ctl_elem_info_t *uinfo){ uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; uinfo->count = 1; uinfo->value.integer.min = 0; uinfo->value.integer.max = 1; return 0;}/* * AC'97 master playback mute controls (Mute on WM8770 chip) */#define aureon_ac97_mmute_info aureon_mono_bool_infostatic int aureon_ac97_mmute_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){ ice1712_t *ice = snd_kcontrol_chip(kcontrol); down(&ice->gpio_mutex); ucontrol->value.integer.value[0] = (wm_get(ice, WM_OUT_MUX1) >> 1) & 0x01; up(&ice->gpio_mutex); return 0;}static int aureon_ac97_mmute_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol) { ice1712_t *ice = snd_kcontrol_chip(kcontrol); unsigned short ovol, nvol; int change;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -