/*1* Driver for Digigram VXpocket soundcards2*3* Copyright (c) 2002 by Takashi Iwai <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* (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 of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/1920#ifndef __VXPOCKET_H21#define __VXPOCKET_H2223#include <sound/vx_core.h>2425#include <pcmcia/cistpl.h>26#include <pcmcia/ds.h>2728struct snd_vxpocket {2930struct vx_core core;3132unsigned long port;3334int mic_level; /* analog mic level (or boost) */3536unsigned int regCDSP; /* current CDSP register */37unsigned int regDIALOG; /* current DIALOG register */3839int index; /* card index */4041/* pcmcia stuff */42struct pcmcia_device *p_dev;43};4445extern struct snd_vx_ops snd_vxpocket_ops;4647void vx_set_mic_boost(struct vx_core *chip, int boost);48void vx_set_mic_level(struct vx_core *chip, int level);4950int vxp_add_mic_controls(struct vx_core *chip);5152/* Constants used to access the CDSP register (0x08). */53#define CDSP_MAGIC 0xA7 /* magic value (for read) */54/* for write */55#define VXP_CDSP_CLOCKIN_SEL_MASK 0x80 /* 0 (internal), 1 (AES/EBU) */56#define VXP_CDSP_DATAIN_SEL_MASK 0x40 /* 0 (analog), 1 (UER) */57#define VXP_CDSP_SMPTE_SEL_MASK 0x2058#define VXP_CDSP_RESERVED_MASK 0x1059#define VXP_CDSP_MIC_SEL_MASK 0x0860#define VXP_CDSP_VALID_IRQ_MASK 0x0461#define VXP_CDSP_CODEC_RESET_MASK 0x0262#define VXP_CDSP_DSP_RESET_MASK 0x0163/* VXPOCKET 240/440 */64#define P24_CDSP_MICS_SEL_MASK 0x1865#define P24_CDSP_MIC20_SEL_MASK 0x1066#define P24_CDSP_MIC38_SEL_MASK 0x086768/* Constants used to access the MEMIRQ register (0x0C). */69#define P44_MEMIRQ_MASTER_SLAVE_SEL_MASK 0x0870#define P44_MEMIRQ_SYNCED_ALONE_SEL_MASK 0x0471#define P44_MEMIRQ_WCLK_OUT_IN_SEL_MASK 0x02 /* Not used */72#define P44_MEMIRQ_WCLK_UER_SEL_MASK 0x01 /* Not used */7374/* Micro levels (0x0C) */7576/* Constants used to access the DIALOG register (0x0D). */77#define VXP_DLG_XILINX_REPROG_MASK 0x80 /* W */78#define VXP_DLG_DATA_XICOR_MASK 0x80 /* R */79#define VXP_DLG_RESERVED4_0_MASK 0x4080#define VXP_DLG_RESERVED2_0_MASK 0x2081#define VXP_DLG_RESERVED1_0_MASK 0x1082#define VXP_DLG_DMAWRITE_SEL_MASK 0x08 /* W */83#define VXP_DLG_DMAREAD_SEL_MASK 0x04 /* W */84#define VXP_DLG_MEMIRQ_MASK 0x02 /* R */85#define VXP_DLG_DMA16_SEL_MASK 0x02 /* W */86#define VXP_DLG_ACK_MEMIRQ_MASK 0x01 /* R/W */878889#endif /* __VXPOCKET_H */909192