#ifndef __SOUND_EWS_H1#define __SOUND_EWS_H23/*4* ALSA driver for ICEnsemble ICE1712 (Envy24)5*6* Lowlevel functions for Terratec EWS88MT/D, EWX24/96, DMX 6Fire7*8* Copyright (c) 2000 Jaroslav Kysela <[email protected]>9* 2002 Takashi Iwai <[email protected]>10*11* This program is free software; you can redistribute it and/or modify12* it under the terms of the GNU General Public License as published by13* the Free Software Foundation; either version 2 of the License, or14* (at your option) any later version.15*16* This program is distributed in the hope that it will be useful,17* but WITHOUT ANY WARRANTY; without even the implied warranty of18* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the19* GNU General Public License for more details.20*21* You should have received a copy of the GNU General Public License22* along with this program; if not, write to the Free Software23* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA24*25*/2627#define EWS_DEVICE_DESC \28"{TerraTec,EWX 24/96},"\29"{TerraTec,EWS 88MT},"\30"{TerraTec,EWS 88D},"\31"{TerraTec,DMX 6Fire},"\32"{TerraTec,Phase 88}," \33"{terrasoniq,TS 88},"3435#define ICE1712_SUBDEVICE_EWX2496 0x3b15301136#define ICE1712_SUBDEVICE_EWS88MT 0x3b15151137#define ICE1712_SUBDEVICE_EWS88MT_NEW 0x3b15251138#define ICE1712_SUBDEVICE_EWS88D 0x3b152b1139#define ICE1712_SUBDEVICE_DMX6FIRE 0x3b15381140#define ICE1712_SUBDEVICE_PHASE88 0x3b15511141#define ICE1712_SUBDEVICE_TS88 0x3b157c114243/* entry point */44extern struct snd_ice1712_card_info snd_ice1712_ews_cards[];454647/* TerraTec EWX 24/96 configuration definitions */4849#define ICE1712_EWX2496_AK4524_CS 0x01 /* AK4524 chip select; low = active */50#define ICE1712_EWX2496_AIN_SEL 0x02 /* input sensitivity switch; high = louder */51#define ICE1712_EWX2496_AOUT_SEL 0x04 /* output sensitivity switch; high = louder */52#define ICE1712_EWX2496_RW 0x08 /* read/write switch for i2c; high = write */53#define ICE1712_EWX2496_SERIAL_DATA 0x10 /* i2c & ak4524 data */54#define ICE1712_EWX2496_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */55#define ICE1712_EWX2496_TX2 0x40 /* MIDI2 (not used) */56#define ICE1712_EWX2496_RX2 0x80 /* MIDI2 (not used) */5758/* TerraTec EWS 88MT/D configuration definitions */59/* RW, SDA snd SCLK are identical with EWX24/96 */60#define ICE1712_EWS88_CS8414_RATE 0x07 /* CS8414 sample rate: gpio 0-2 */61#define ICE1712_EWS88_RW 0x08 /* read/write switch for i2c; high = write */62#define ICE1712_EWS88_SERIAL_DATA 0x10 /* i2c & ak4524 data */63#define ICE1712_EWS88_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */64#define ICE1712_EWS88_TX2 0x40 /* MIDI2 (only on 88D) */65#define ICE1712_EWS88_RX2 0x80 /* MIDI2 (only on 88D) */6667/* i2c address */68#define ICE1712_EWS88MT_CS8404_ADDR (0x40>>1)69#define ICE1712_EWS88MT_INPUT_ADDR (0x46>>1)70#define ICE1712_EWS88MT_OUTPUT_ADDR (0x48>>1)71#define ICE1712_EWS88MT_OUTPUT_SENSE 0x40 /* mask */72#define ICE1712_EWS88D_PCF_ADDR (0x40>>1)7374/* TerraTec DMX 6Fire configuration definitions */75#define ICE1712_6FIRE_AK4524_CS_MASK 0x07 /* AK4524 chip select #1-#3 */76#define ICE1712_6FIRE_RW 0x08 /* read/write switch for i2c; high = write */77#define ICE1712_6FIRE_SERIAL_DATA 0x10 /* i2c & ak4524 data */78#define ICE1712_6FIRE_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */79#define ICE1712_6FIRE_TX2 0x40 /* MIDI2 */80#define ICE1712_6FIRE_RX2 0x80 /* MIDI2 */8182#define ICE1712_6FIRE_PCF9554_ADDR (0x40>>1)83#define ICE1712_6FIRE_CS8427_ADDR (0x22)8485#endif /* __SOUND_EWS_H */868788