blob: 1e0dc77f0d255703c6a6d286fae8136d04f1375b [file] [log] [blame]
Krzysztof Helt7779f752008-07-31 21:03:41 +02001#ifndef __SOUND_WSS_H
2#define __SOUND_WSS_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Definitions for CS4231 & InterWave chips & compatible chips
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#include "control.h"
26#include "pcm.h"
27#include "timer.h"
28
Krzysztof Heltf5457142007-09-04 13:24:14 +020029#include "cs4231-regs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* defines for codec.mode */
32
Krzysztof Helt7779f752008-07-31 21:03:41 +020033#define WSS_MODE_NONE 0x0000
34#define WSS_MODE_PLAY 0x0001
35#define WSS_MODE_RECORD 0x0002
36#define WSS_MODE_TIMER 0x0004
37#define WSS_MODE_OPEN (WSS_MODE_PLAY|WSS_MODE_RECORD|WSS_MODE_TIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/* defines for codec.hardware */
40
Krzysztof Helt7779f752008-07-31 21:03:41 +020041#define WSS_HW_DETECT 0x0000 /* let CS4231 driver detect chip */
42#define WSS_HW_DETECT3 0x0001 /* allow mode 3 */
43#define WSS_HW_TYPE_MASK 0xff00 /* type mask */
44#define WSS_HW_CS4231_MASK 0x0100 /* CS4231 serie */
45#define WSS_HW_CS4231 0x0100 /* CS4231 chip */
46#define WSS_HW_CS4231A 0x0101 /* CS4231A chip */
47#define WSS_HW_AD1845 0x0102 /* AD1845 chip */
48#define WSS_HW_CS4232_MASK 0x0200 /* CS4232 serie (has control ports) */
49#define WSS_HW_CS4232 0x0200 /* CS4232 */
50#define WSS_HW_CS4232A 0x0201 /* CS4232A */
51#define WSS_HW_CS4236 0x0202 /* CS4236 */
52#define WSS_HW_CS4236B_MASK 0x0400 /* CS4236B serie (has extended control regs) */
53#define WSS_HW_CS4235 0x0400 /* CS4235 - Crystal Clear (tm) stereo enhancement */
54#define WSS_HW_CS4236B 0x0401 /* CS4236B */
55#define WSS_HW_CS4237B 0x0402 /* CS4237B - SRS 3D */
56#define WSS_HW_CS4238B 0x0403 /* CS4238B - QSOUND 3D */
57#define WSS_HW_CS4239 0x0404 /* CS4239 - Crystal Clear (tm) stereo enhancement */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* compatible, but clones */
Krzysztof Helt7779f752008-07-31 21:03:41 +020059#define WSS_HW_INTERWAVE 0x1000 /* InterWave chip */
60#define WSS_HW_OPL3SA2 0x1101 /* OPL3-SA2 chip, similar to cs4231 */
61#define WSS_HW_OPTI93X 0x1102 /* Opti 930/931/933 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* defines for codec.hwshare */
Krzysztof Helt7779f752008-07-31 21:03:41 +020064#define WSS_HWSHARE_IRQ (1<<0)
65#define WSS_HWSHARE_DMA1 (1<<1)
66#define WSS_HWSHARE_DMA2 (1<<2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Krzysztof Helt7779f752008-07-31 21:03:41 +020068struct snd_wss {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned long port; /* base i/o port */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct resource *res_port;
71 unsigned long cport; /* control base i/o port (CS4236) */
72 struct resource *res_cport;
73 int irq; /* IRQ line */
74 int dma1; /* playback DMA */
75 int dma2; /* record DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned short version; /* version of CODEC chip */
Krzysztof Helt7779f752008-07-31 21:03:41 +020077 unsigned short mode; /* see to WSS_MODE_XXXX */
78 unsigned short hardware; /* see to WSS_HW_XXXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 unsigned short hwshare; /* shared resources */
Krzysztof Helt241b3ee2008-07-31 21:04:37 +020080 unsigned short single_dma:1, /* forced single DMA mode (GUS 16-bit */
81 /* daughter board) or dma1 == dma2 */
82 ebus_flag:1, /* SPARC: EBUS present */
83 thinkpad_flag:1; /* Thinkpad CS4248 needs extra help */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Takashi Iwaiba2375a2005-11-17 14:30:42 +010085 struct snd_card *card;
86 struct snd_pcm *pcm;
87 struct snd_pcm_substream *playback_substream;
88 struct snd_pcm_substream *capture_substream;
89 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 unsigned char image[32]; /* registers image */
92 unsigned char eimage[32]; /* extended registers image */
93 unsigned char cimage[16]; /* control registers image */
94 int mce_bit;
95 int calibrate_mute;
96 int sw_3d_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned int p_dma_size;
98 unsigned int c_dma_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 spinlock_t reg_lock;
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100101 struct mutex mce_mutex;
102 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Takashi Iwaiba2375a2005-11-17 14:30:42 +0100104 int (*rate_constraint) (struct snd_pcm_runtime *runtime);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200105 void (*set_playback_format) (struct snd_wss *chip,
106 struct snd_pcm_hw_params *hw_params,
107 unsigned char pdfr);
108 void (*set_capture_format) (struct snd_wss *chip,
109 struct snd_pcm_hw_params *hw_params,
110 unsigned char cdfr);
111 void (*trigger) (struct snd_wss *chip, unsigned int what, int start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#ifdef CONFIG_PM
Krzysztof Helt7779f752008-07-31 21:03:41 +0200113 void (*suspend) (struct snd_wss *chip);
114 void (*resume) (struct snd_wss *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif
116 void *dma_private_data;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200117 int (*claim_dma) (struct snd_wss *chip,
118 void *dma_private_data, int dma);
119 int (*release_dma) (struct snd_wss *chip,
120 void *dma_private_data, int dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123/* exported functions */
124
Krzysztof Helt7779f752008-07-31 21:03:41 +0200125void snd_wss_out(struct snd_wss *chip, unsigned char reg, unsigned char val);
126unsigned char snd_wss_in(struct snd_wss *chip, unsigned char reg);
127void snd_cs4236_ext_out(struct snd_wss *chip,
128 unsigned char reg, unsigned char val);
129unsigned char snd_cs4236_ext_in(struct snd_wss *chip, unsigned char reg);
130void snd_wss_mce_up(struct snd_wss *chip);
131void snd_wss_mce_down(struct snd_wss *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Krzysztof Helt7779f752008-07-31 21:03:41 +0200133void snd_wss_overrange(struct snd_wss *chip);
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +0200134
Krzysztof Helt7779f752008-07-31 21:03:41 +0200135irqreturn_t snd_wss_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Krzysztof Helt7779f752008-07-31 21:03:41 +0200137const char *snd_wss_chip_id(struct snd_wss *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Krzysztof Helt7779f752008-07-31 21:03:41 +0200139int snd_wss_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 unsigned long port,
141 unsigned long cport,
142 int irq, int dma1, int dma2,
143 unsigned short hardware,
144 unsigned short hwshare,
Krzysztof Helt7779f752008-07-31 21:03:41 +0200145 struct snd_wss **rchip);
146int snd_wss_pcm(struct snd_wss *chip, int device, struct snd_pcm **rpcm);
147int snd_wss_timer(struct snd_wss *chip, int device, struct snd_timer **rtimer);
148int snd_wss_mixer(struct snd_wss *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Takashi Iwaiba2375a2005-11-17 14:30:42 +0100150int snd_cs4236_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 unsigned long port,
152 unsigned long cport,
153 int irq, int dma1, int dma2,
154 unsigned short hardware,
155 unsigned short hwshare,
Krzysztof Helt7779f752008-07-31 21:03:41 +0200156 struct snd_wss **rchip);
157int snd_cs4236_pcm(struct snd_wss *chip, int device, struct snd_pcm **rpcm);
158int snd_cs4236_mixer(struct snd_wss *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160/*
161 * mixer library
162 */
163
Krzysztof Helt7779f752008-07-31 21:03:41 +0200164#define WSS_SINGLE(xname, xindex, reg, shift, mask, invert) \
165{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
166 .name = xname, \
167 .index = xindex, \
168 .info = snd_wss_info_single, \
169 .get = snd_wss_get_single, \
170 .put = snd_wss_put_single, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
172
Krzysztof Helt7779f752008-07-31 21:03:41 +0200173int snd_wss_info_single(struct snd_kcontrol *kcontrol,
174 struct snd_ctl_elem_info *uinfo);
175int snd_wss_get_single(struct snd_kcontrol *kcontrol,
176 struct snd_ctl_elem_value *ucontrol);
177int snd_wss_put_single(struct snd_kcontrol *kcontrol,
178 struct snd_ctl_elem_value *ucontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Krzysztof Helt7779f752008-07-31 21:03:41 +0200180#define WSS_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
181{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
182 .name = xname, \
183 .index = xindex, \
184 .info = snd_wss_info_double, \
185 .get = snd_wss_get_double, \
186 .put = snd_wss_put_double, \
187 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | \
188 (shift_right << 19) | (mask << 24) | (invert << 22) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Krzysztof Helt7779f752008-07-31 21:03:41 +0200190int snd_wss_info_double(struct snd_kcontrol *kcontrol,
191 struct snd_ctl_elem_info *uinfo);
192int snd_wss_get_double(struct snd_kcontrol *kcontrol,
193 struct snd_ctl_elem_value *ucontrol);
194int snd_wss_put_double(struct snd_kcontrol *kcontrol,
195 struct snd_ctl_elem_value *ucontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Krzysztof Helt7779f752008-07-31 21:03:41 +0200197#endif /* __SOUND_WSS_H */