diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /sound/isa/cs423x |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'sound/isa/cs423x')
-rw-r--r-- | sound/isa/cs423x/Makefile | 25 | ||||
-rw-r--r-- | sound/isa/cs423x/cs4231.c | 169 | ||||
-rw-r--r-- | sound/isa/cs423x/cs4231_lib.c | 1964 | ||||
-rw-r--r-- | sound/isa/cs423x/cs4232.c | 2 | ||||
-rw-r--r-- | sound/isa/cs423x/cs4236.c | 608 | ||||
-rw-r--r-- | sound/isa/cs423x/cs4236_lib.c | 970 |
6 files changed, 3738 insertions, 0 deletions
diff --git a/sound/isa/cs423x/Makefile b/sound/isa/cs423x/Makefile new file mode 100644 index 000000000000..d2afaea30cbc --- /dev/null +++ b/sound/isa/cs423x/Makefile | |||
@@ -0,0 +1,25 @@ | |||
1 | # | ||
2 | # Makefile for ALSA | ||
3 | # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> | ||
4 | # | ||
5 | |||
6 | snd-cs4231-lib-objs := cs4231_lib.o | ||
7 | snd-cs4236-lib-objs := cs4236_lib.o | ||
8 | snd-cs4231-objs := cs4231.o | ||
9 | snd-cs4232-objs := cs4232.o | ||
10 | snd-cs4236-objs := cs4236.o | ||
11 | |||
12 | # Toplevel Module Dependency | ||
13 | obj-$(CONFIG_SND_AZT2320) += snd-cs4231-lib.o | ||
14 | obj-$(CONFIG_SND_OPL3SA2) += snd-cs4231-lib.o | ||
15 | obj-$(CONFIG_SND_CS4231) += snd-cs4231.o snd-cs4231-lib.o | ||
16 | obj-$(CONFIG_SND_CS4232) += snd-cs4232.o snd-cs4231-lib.o | ||
17 | obj-$(CONFIG_SND_CS4236) += snd-cs4236.o snd-cs4236-lib.o snd-cs4231-lib.o | ||
18 | obj-$(CONFIG_SND_GUSMAX) += snd-cs4231-lib.o | ||
19 | obj-$(CONFIG_SND_INTERWAVE) += snd-cs4231-lib.o | ||
20 | obj-$(CONFIG_SND_INTERWAVE_STB) += snd-cs4231-lib.o | ||
21 | obj-$(CONFIG_SND_OPTI92X_CS4231) += snd-cs4231-lib.o | ||
22 | obj-$(CONFIG_SND_WAVEFRONT) += snd-cs4231-lib.o | ||
23 | obj-$(CONFIG_SND_SSCAPE) += snd-cs4231-lib.o | ||
24 | |||
25 | obj-m := $(sort $(obj-m)) | ||
diff --git a/sound/isa/cs423x/cs4231.c b/sound/isa/cs423x/cs4231.c new file mode 100644 index 000000000000..7640837659ea --- /dev/null +++ b/sound/isa/cs423x/cs4231.c | |||
@@ -0,0 +1,169 @@ | |||
1 | /* | ||
2 | * Generic driver for CS4231 chips | ||
3 | * Copyright (c) by Jaroslav Kysela <perex@suse.cz> | ||
4 | * Originally the CS4232/CS4232A driver, modified for use on CS4231 by | ||
5 | * Tugrul Galatali <galatalt@stuy.edu> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | * | ||
21 | */ | ||
22 | |||
23 | #include <sound/driver.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/time.h> | ||
26 | #include <linux/wait.h> | ||
27 | #include <linux/moduleparam.h> | ||
28 | #include <sound/core.h> | ||
29 | #include <sound/cs4231.h> | ||
30 | #include <sound/mpu401.h> | ||
31 | #include <sound/initval.h> | ||
32 | |||
33 | MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); | ||
34 | MODULE_DESCRIPTION("Generic CS4231"); | ||
35 | MODULE_LICENSE("GPL"); | ||
36 | MODULE_SUPPORTED_DEVICE("{{Crystal Semiconductors,CS4231}}"); | ||
37 | |||
38 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ | ||
39 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | ||
40 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ | ||
41 | static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
42 | static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
43 | static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ | ||
44 | static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */ | ||
45 | static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ | ||
46 | static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ | ||
47 | |||
48 | module_param_array(index, int, NULL, 0444); | ||
49 | MODULE_PARM_DESC(index, "Index value for CS4231 soundcard."); | ||
50 | module_param_array(id, charp, NULL, 0444); | ||
51 | MODULE_PARM_DESC(id, "ID string for CS4231 soundcard."); | ||
52 | module_param_array(enable, bool, NULL, 0444); | ||
53 | MODULE_PARM_DESC(enable, "Enable CS4231 soundcard."); | ||
54 | module_param_array(port, long, NULL, 0444); | ||
55 | MODULE_PARM_DESC(port, "Port # for CS4231 driver."); | ||
56 | module_param_array(mpu_port, long, NULL, 0444); | ||
57 | MODULE_PARM_DESC(mpu_port, "MPU-401 port # for CS4231 driver."); | ||
58 | module_param_array(irq, int, NULL, 0444); | ||
59 | MODULE_PARM_DESC(irq, "IRQ # for CS4231 driver."); | ||
60 | module_param_array(mpu_irq, int, NULL, 0444); | ||
61 | MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for CS4231 driver."); | ||
62 | module_param_array(dma1, int, NULL, 0444); | ||
63 | MODULE_PARM_DESC(dma1, "DMA1 # for CS4231 driver."); | ||
64 | module_param_array(dma2, int, NULL, 0444); | ||
65 | MODULE_PARM_DESC(dma2, "DMA2 # for CS4231 driver."); | ||
66 | |||
67 | static snd_card_t *snd_cs4231_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; | ||
68 | |||
69 | |||
70 | static int __init snd_card_cs4231_probe(int dev) | ||
71 | { | ||
72 | snd_card_t *card; | ||
73 | struct snd_card_cs4231 *acard; | ||
74 | snd_pcm_t *pcm = NULL; | ||
75 | cs4231_t *chip; | ||
76 | int err; | ||
77 | |||
78 | if (port[dev] == SNDRV_AUTO_PORT) { | ||
79 | snd_printk("specify port\n"); | ||
80 | return -EINVAL; | ||
81 | } | ||
82 | if (irq[dev] == SNDRV_AUTO_IRQ) { | ||
83 | snd_printk("specify irq\n"); | ||
84 | return -EINVAL; | ||
85 | } | ||
86 | if (dma1[dev] == SNDRV_AUTO_DMA) { | ||
87 | snd_printk("specify dma1\n"); | ||
88 | return -EINVAL; | ||
89 | } | ||
90 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); | ||
91 | if (card == NULL) | ||
92 | return -ENOMEM; | ||
93 | acard = (struct snd_card_cs4231 *)card->private_data; | ||
94 | if ((err = snd_cs4231_create(card, port[dev], -1, | ||
95 | irq[dev], | ||
96 | dma1[dev], | ||
97 | dma2[dev], | ||
98 | CS4231_HW_DETECT, | ||
99 | 0, &chip)) < 0) { | ||
100 | snd_card_free(card); | ||
101 | return err; | ||
102 | } | ||
103 | |||
104 | if ((err = snd_cs4231_pcm(chip, 0, &pcm)) < 0) { | ||
105 | snd_card_free(card); | ||
106 | return err; | ||
107 | } | ||
108 | |||
109 | strcpy(card->driver, "CS4231"); | ||
110 | strcpy(card->shortname, pcm->name); | ||
111 | sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", | ||
112 | pcm->name, chip->port, irq[dev], dma1[dev]); | ||
113 | if (dma2[dev] >= 0) | ||
114 | sprintf(card->longname + strlen(card->longname), "&%d", dma2[dev]); | ||
115 | |||
116 | if ((err = snd_cs4231_mixer(chip)) < 0) { | ||
117 | snd_card_free(card); | ||
118 | return err; | ||
119 | } | ||
120 | if ((err = snd_cs4231_timer(chip, 0, NULL)) < 0) { | ||
121 | snd_card_free(card); | ||
122 | return err; | ||
123 | } | ||
124 | |||
125 | if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) { | ||
126 | if (mpu_irq[dev] == SNDRV_AUTO_IRQ) | ||
127 | mpu_irq[dev] = -1; | ||
128 | if (snd_mpu401_uart_new(card, 0, MPU401_HW_CS4232, | ||
129 | mpu_port[dev], 0, | ||
130 | mpu_irq[dev], | ||
131 | mpu_irq[dev] >= 0 ? SA_INTERRUPT : 0, | ||
132 | NULL) < 0) | ||
133 | printk(KERN_ERR "cs4231: MPU401 not detected\n"); | ||
134 | } | ||
135 | if ((err = snd_card_register(card)) < 0) { | ||
136 | snd_card_free(card); | ||
137 | return err; | ||
138 | } | ||
139 | snd_cs4231_cards[dev] = card; | ||
140 | return 0; | ||
141 | } | ||
142 | |||
143 | static int __init alsa_card_cs4231_init(void) | ||
144 | { | ||
145 | int dev, cards; | ||
146 | |||
147 | for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { | ||
148 | if (snd_card_cs4231_probe(dev) >= 0) | ||
149 | cards++; | ||
150 | } | ||
151 | if (!cards) { | ||
152 | #ifdef MODULE | ||
153 | printk(KERN_ERR "CS4231 soundcard not found or device busy\n"); | ||
154 | #endif | ||
155 | return -ENODEV; | ||
156 | } | ||
157 | return 0; | ||
158 | } | ||
159 | |||
160 | static void __exit alsa_card_cs4231_exit(void) | ||
161 | { | ||
162 | int idx; | ||
163 | |||
164 | for (idx = 0; idx < SNDRV_CARDS; idx++) | ||
165 | snd_card_free(snd_cs4231_cards[idx]); | ||
166 | } | ||
167 | |||
168 | module_init(alsa_card_cs4231_init) | ||
169 | module_exit(alsa_card_cs4231_exit) | ||
diff --git a/sound/isa/cs423x/cs4231_lib.c b/sound/isa/cs423x/cs4231_lib.c new file mode 100644 index 000000000000..3e7a2a33a5ca --- /dev/null +++ b/sound/isa/cs423x/cs4231_lib.c | |||
@@ -0,0 +1,1964 @@ | |||
1 | /* | ||
2 | * Copyright (c) by Jaroslav Kysela <perex@suse.cz> | ||
3 | * Routines for control of CS4231(A)/CS4232/InterWave & compatible chips | ||
4 | * | ||
5 | * Bugs: | ||
6 | * - sometimes record brokes playback with WSS portion of | ||
7 | * Yamaha OPL3-SA3 chip | ||
8 | * - CS4231 (GUS MAX) - still trouble with occasional noises | ||
9 | * - broken initialization? | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License as published by | ||
13 | * the Free Software Foundation; either version 2 of the License, or | ||
14 | * (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 of | ||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
19 | * GNU General Public License for more details. | ||
20 | * | ||
21 | * You should have received a copy of the GNU General Public License | ||
22 | * along with this program; if not, write to the Free Software | ||
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
24 | * | ||
25 | */ | ||
26 | |||
27 | #include <sound/driver.h> | ||
28 | #include <linux/delay.h> | ||
29 | #include <linux/pm.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/interrupt.h> | ||
32 | #include <linux/slab.h> | ||
33 | #include <linux/ioport.h> | ||
34 | #include <sound/core.h> | ||
35 | #include <sound/cs4231.h> | ||
36 | #include <sound/pcm_params.h> | ||
37 | |||
38 | #include <asm/io.h> | ||
39 | #include <asm/dma.h> | ||
40 | #include <asm/irq.h> | ||
41 | |||
42 | MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); | ||
43 | MODULE_DESCRIPTION("Routines for control of CS4231(A)/CS4232/InterWave & compatible chips"); | ||
44 | MODULE_LICENSE("GPL"); | ||
45 | |||
46 | #if 0 | ||
47 | #define SNDRV_DEBUG_MCE | ||
48 | #endif | ||
49 | |||
50 | /* | ||
51 | * Some variables | ||
52 | */ | ||
53 | |||
54 | static unsigned char freq_bits[14] = { | ||
55 | /* 5510 */ 0x00 | CS4231_XTAL2, | ||
56 | /* 6620 */ 0x0E | CS4231_XTAL2, | ||
57 | /* 8000 */ 0x00 | CS4231_XTAL1, | ||
58 | /* 9600 */ 0x0E | CS4231_XTAL1, | ||
59 | /* 11025 */ 0x02 | CS4231_XTAL2, | ||
60 | /* 16000 */ 0x02 | CS4231_XTAL1, | ||
61 | /* 18900 */ 0x04 | CS4231_XTAL2, | ||
62 | /* 22050 */ 0x06 | CS4231_XTAL2, | ||
63 | /* 27042 */ 0x04 | CS4231_XTAL1, | ||
64 | /* 32000 */ 0x06 | CS4231_XTAL1, | ||
65 | /* 33075 */ 0x0C | CS4231_XTAL2, | ||
66 | /* 37800 */ 0x08 | CS4231_XTAL2, | ||
67 | /* 44100 */ 0x0A | CS4231_XTAL2, | ||
68 | /* 48000 */ 0x0C | CS4231_XTAL1 | ||
69 | }; | ||
70 | |||
71 | static unsigned int rates[14] = { | ||
72 | 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050, | ||
73 | 27042, 32000, 33075, 37800, 44100, 48000 | ||
74 | }; | ||
75 | |||
76 | static snd_pcm_hw_constraint_list_t hw_constraints_rates = { | ||
77 | .count = 14, | ||
78 | .list = rates, | ||
79 | .mask = 0, | ||
80 | }; | ||
81 | |||
82 | static int snd_cs4231_xrate(snd_pcm_runtime_t *runtime) | ||
83 | { | ||
84 | return snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates); | ||
85 | } | ||
86 | |||
87 | static unsigned char snd_cs4231_original_image[32] = | ||
88 | { | ||
89 | 0x00, /* 00/00 - lic */ | ||
90 | 0x00, /* 01/01 - ric */ | ||
91 | 0x9f, /* 02/02 - la1ic */ | ||
92 | 0x9f, /* 03/03 - ra1ic */ | ||
93 | 0x9f, /* 04/04 - la2ic */ | ||
94 | 0x9f, /* 05/05 - ra2ic */ | ||
95 | 0xbf, /* 06/06 - loc */ | ||
96 | 0xbf, /* 07/07 - roc */ | ||
97 | 0x20, /* 08/08 - pdfr */ | ||
98 | CS4231_AUTOCALIB, /* 09/09 - ic */ | ||
99 | 0x00, /* 0a/10 - pc */ | ||
100 | 0x00, /* 0b/11 - ti */ | ||
101 | CS4231_MODE2, /* 0c/12 - mi */ | ||
102 | 0xfc, /* 0d/13 - lbc */ | ||
103 | 0x00, /* 0e/14 - pbru */ | ||
104 | 0x00, /* 0f/15 - pbrl */ | ||
105 | 0x80, /* 10/16 - afei */ | ||
106 | 0x01, /* 11/17 - afeii */ | ||
107 | 0x9f, /* 12/18 - llic */ | ||
108 | 0x9f, /* 13/19 - rlic */ | ||
109 | 0x00, /* 14/20 - tlb */ | ||
110 | 0x00, /* 15/21 - thb */ | ||
111 | 0x00, /* 16/22 - la3mic/reserved */ | ||
112 | 0x00, /* 17/23 - ra3mic/reserved */ | ||
113 | 0x00, /* 18/24 - afs */ | ||
114 | 0x00, /* 19/25 - lamoc/version */ | ||
115 | 0xcf, /* 1a/26 - mioc */ | ||
116 | 0x00, /* 1b/27 - ramoc/reserved */ | ||
117 | 0x20, /* 1c/28 - cdfr */ | ||
118 | 0x00, /* 1d/29 - res4 */ | ||
119 | 0x00, /* 1e/30 - cbru */ | ||
120 | 0x00, /* 1f/31 - cbrl */ | ||
121 | }; | ||
122 | |||
123 | /* | ||
124 | * Basic I/O functions | ||
125 | */ | ||
126 | |||
127 | #if !defined(EBUS_SUPPORT) && !defined(SBUS_SUPPORT) | ||
128 | #define __CS4231_INLINE__ inline | ||
129 | #else | ||
130 | #define __CS4231_INLINE__ /* nothing */ | ||
131 | #endif | ||
132 | |||
133 | static __CS4231_INLINE__ void cs4231_outb(cs4231_t *chip, u8 offset, u8 val) | ||
134 | { | ||
135 | #ifdef EBUS_SUPPORT | ||
136 | if (chip->ebus->flag) { | ||
137 | writeb(val, chip->port + (offset << 2)); | ||
138 | } else { | ||
139 | #endif | ||
140 | #ifdef SBUS_SUPPORT | ||
141 | sbus_writeb(val, chip->port + (offset << 2)); | ||
142 | #endif | ||
143 | #ifdef EBUS_SUPPORT | ||
144 | } | ||
145 | #endif | ||
146 | #ifdef LEGACY_SUPPORT | ||
147 | outb(val, chip->port + offset); | ||
148 | #endif | ||
149 | } | ||
150 | |||
151 | static __CS4231_INLINE__ u8 cs4231_inb(cs4231_t *chip, u8 offset) | ||
152 | { | ||
153 | #ifdef EBUS_SUPPORT | ||
154 | if (chip->ebus_flag) { | ||
155 | return readb(chip->port + (offset << 2)); | ||
156 | } else { | ||
157 | #endif | ||
158 | #ifdef SBUS_SUPPORT | ||
159 | return sbus_readb(chip->port + (offset << 2)); | ||
160 | #endif | ||
161 | #ifdef EBUS_SUPPORT | ||
162 | } | ||
163 | #endif | ||
164 | #ifdef LEGACY_SUPPORT | ||
165 | return inb(chip->port + offset); | ||
166 | #endif | ||
167 | } | ||
168 | |||
169 | static void snd_cs4231_outm(cs4231_t *chip, unsigned char reg, | ||
170 | unsigned char mask, unsigned char value) | ||
171 | { | ||
172 | int timeout; | ||
173 | unsigned char tmp; | ||
174 | |||
175 | for (timeout = 250; | ||
176 | timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); | ||
177 | timeout--) | ||
178 | udelay(100); | ||
179 | #ifdef CONFIG_SND_DEBUG | ||
180 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
181 | snd_printk("outm: auto calibration time out - reg = 0x%x, value = 0x%x\n", reg, value); | ||
182 | #endif | ||
183 | if (chip->calibrate_mute) { | ||
184 | chip->image[reg] &= mask; | ||
185 | chip->image[reg] |= value; | ||
186 | } else { | ||
187 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg); | ||
188 | mb(); | ||
189 | tmp = (chip->image[reg] & mask) | value; | ||
190 | cs4231_outb(chip, CS4231P(REG), tmp); | ||
191 | chip->image[reg] = tmp; | ||
192 | mb(); | ||
193 | } | ||
194 | } | ||
195 | |||
196 | static void snd_cs4231_dout(cs4231_t *chip, unsigned char reg, unsigned char value) | ||
197 | { | ||
198 | int timeout; | ||
199 | |||
200 | for (timeout = 250; | ||
201 | timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); | ||
202 | timeout--) | ||
203 | udelay(10); | ||
204 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg); | ||
205 | cs4231_outb(chip, CS4231P(REG), value); | ||
206 | mb(); | ||
207 | } | ||
208 | |||
209 | void snd_cs4231_out(cs4231_t *chip, unsigned char reg, unsigned char value) | ||
210 | { | ||
211 | int timeout; | ||
212 | |||
213 | for (timeout = 250; | ||
214 | timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); | ||
215 | timeout--) | ||
216 | udelay(100); | ||
217 | #ifdef CONFIG_SND_DEBUG | ||
218 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
219 | snd_printk("out: auto calibration time out - reg = 0x%x, value = 0x%x\n", reg, value); | ||
220 | #endif | ||
221 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg); | ||
222 | cs4231_outb(chip, CS4231P(REG), value); | ||
223 | chip->image[reg] = value; | ||
224 | mb(); | ||
225 | #if 0 | ||
226 | printk("codec out - reg 0x%x = 0x%x\n", chip->mce_bit | reg, value); | ||
227 | #endif | ||
228 | } | ||
229 | |||
230 | unsigned char snd_cs4231_in(cs4231_t *chip, unsigned char reg) | ||
231 | { | ||
232 | int timeout; | ||
233 | |||
234 | for (timeout = 250; | ||
235 | timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); | ||
236 | timeout--) | ||
237 | udelay(100); | ||
238 | #ifdef CONFIG_SND_DEBUG | ||
239 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
240 | snd_printk("in: auto calibration time out - reg = 0x%x\n", reg); | ||
241 | #endif | ||
242 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg); | ||
243 | mb(); | ||
244 | return cs4231_inb(chip, CS4231P(REG)); | ||
245 | } | ||
246 | |||
247 | void snd_cs4236_ext_out(cs4231_t *chip, unsigned char reg, unsigned char val) | ||
248 | { | ||
249 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | 0x17); | ||
250 | cs4231_outb(chip, CS4231P(REG), reg | (chip->image[CS4236_EXT_REG] & 0x01)); | ||
251 | cs4231_outb(chip, CS4231P(REG), val); | ||
252 | chip->eimage[CS4236_REG(reg)] = val; | ||
253 | #if 0 | ||
254 | printk("ext out : reg = 0x%x, val = 0x%x\n", reg, val); | ||
255 | #endif | ||
256 | } | ||
257 | |||
258 | unsigned char snd_cs4236_ext_in(cs4231_t *chip, unsigned char reg) | ||
259 | { | ||
260 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | 0x17); | ||
261 | cs4231_outb(chip, CS4231P(REG), reg | (chip->image[CS4236_EXT_REG] & 0x01)); | ||
262 | #if 1 | ||
263 | return cs4231_inb(chip, CS4231P(REG)); | ||
264 | #else | ||
265 | { | ||
266 | unsigned char res; | ||
267 | res = cs4231_inb(chip, CS4231P(REG)); | ||
268 | printk("ext in : reg = 0x%x, val = 0x%x\n", reg, res); | ||
269 | return res; | ||
270 | } | ||
271 | #endif | ||
272 | } | ||
273 | |||
274 | #if 0 | ||
275 | |||
276 | static void snd_cs4231_debug(cs4231_t *chip) | ||
277 | { | ||
278 | printk("CS4231 REGS: INDEX = 0x%02x ", cs4231_inb(chip, CS4231P(REGSEL))); | ||
279 | printk(" STATUS = 0x%02x\n", cs4231_inb(chip, CS4231P(STATUS))); | ||
280 | printk(" 0x00: left input = 0x%02x ", snd_cs4231_in(chip, 0x00)); | ||
281 | printk(" 0x10: alt 1 (CFIG 2) = 0x%02x\n", snd_cs4231_in(chip, 0x10)); | ||
282 | printk(" 0x01: right input = 0x%02x ", snd_cs4231_in(chip, 0x01)); | ||
283 | printk(" 0x11: alt 2 (CFIG 3) = 0x%02x\n", snd_cs4231_in(chip, 0x11)); | ||
284 | printk(" 0x02: GF1 left input = 0x%02x ", snd_cs4231_in(chip, 0x02)); | ||
285 | printk(" 0x12: left line in = 0x%02x\n", snd_cs4231_in(chip, 0x12)); | ||
286 | printk(" 0x03: GF1 right input = 0x%02x ", snd_cs4231_in(chip, 0x03)); | ||
287 | printk(" 0x13: right line in = 0x%02x\n", snd_cs4231_in(chip, 0x13)); | ||
288 | printk(" 0x04: CD left input = 0x%02x ", snd_cs4231_in(chip, 0x04)); | ||
289 | printk(" 0x14: timer low = 0x%02x\n", snd_cs4231_in(chip, 0x14)); | ||
290 | printk(" 0x05: CD right input = 0x%02x ", snd_cs4231_in(chip, 0x05)); | ||
291 | printk(" 0x15: timer high = 0x%02x\n", snd_cs4231_in(chip, 0x15)); | ||
292 | printk(" 0x06: left output = 0x%02x ", snd_cs4231_in(chip, 0x06)); | ||
293 | printk(" 0x16: left MIC (PnP) = 0x%02x\n", snd_cs4231_in(chip, 0x16)); | ||
294 | printk(" 0x07: right output = 0x%02x ", snd_cs4231_in(chip, 0x07)); | ||
295 | printk(" 0x17: right MIC (PnP) = 0x%02x\n", snd_cs4231_in(chip, 0x17)); | ||
296 | printk(" 0x08: playback format = 0x%02x ", snd_cs4231_in(chip, 0x08)); | ||
297 | printk(" 0x18: IRQ status = 0x%02x\n", snd_cs4231_in(chip, 0x18)); | ||
298 | printk(" 0x09: iface (CFIG 1) = 0x%02x ", snd_cs4231_in(chip, 0x09)); | ||
299 | printk(" 0x19: left line out = 0x%02x\n", snd_cs4231_in(chip, 0x19)); | ||
300 | printk(" 0x0a: pin control = 0x%02x ", snd_cs4231_in(chip, 0x0a)); | ||
301 | printk(" 0x1a: mono control = 0x%02x\n", snd_cs4231_in(chip, 0x1a)); | ||
302 | printk(" 0x0b: init & status = 0x%02x ", snd_cs4231_in(chip, 0x0b)); | ||
303 | printk(" 0x1b: right line out = 0x%02x\n", snd_cs4231_in(chip, 0x1b)); | ||
304 | printk(" 0x0c: revision & mode = 0x%02x ", snd_cs4231_in(chip, 0x0c)); | ||
305 | printk(" 0x1c: record format = 0x%02x\n", snd_cs4231_in(chip, 0x1c)); | ||
306 | printk(" 0x0d: loopback = 0x%02x ", snd_cs4231_in(chip, 0x0d)); | ||
307 | printk(" 0x1d: var freq (PnP) = 0x%02x\n", snd_cs4231_in(chip, 0x1d)); | ||
308 | printk(" 0x0e: ply upr count = 0x%02x ", snd_cs4231_in(chip, 0x0e)); | ||
309 | printk(" 0x1e: ply lwr count = 0x%02x\n", snd_cs4231_in(chip, 0x1e)); | ||
310 | printk(" 0x0f: rec upr count = 0x%02x ", snd_cs4231_in(chip, 0x0f)); | ||
311 | printk(" 0x1f: rec lwr count = 0x%02x\n", snd_cs4231_in(chip, 0x1f)); | ||
312 | } | ||
313 | |||
314 | #endif | ||
315 | |||
316 | /* | ||
317 | * CS4231 detection / MCE routines | ||
318 | */ | ||
319 | |||
320 | static void snd_cs4231_busy_wait(cs4231_t *chip) | ||
321 | { | ||
322 | int timeout; | ||
323 | |||
324 | /* huh.. looks like this sequence is proper for CS4231A chip (GUS MAX) */ | ||
325 | for (timeout = 5; timeout > 0; timeout--) | ||
326 | cs4231_inb(chip, CS4231P(REGSEL)); | ||
327 | /* end of cleanup sequence */ | ||
328 | for (timeout = 250; | ||
329 | timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); | ||
330 | timeout--) | ||
331 | udelay(10); | ||
332 | } | ||
333 | |||
334 | void snd_cs4231_mce_up(cs4231_t *chip) | ||
335 | { | ||
336 | unsigned long flags; | ||
337 | int timeout; | ||
338 | |||
339 | for (timeout = 250; timeout > 0 && (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT); timeout--) | ||
340 | udelay(100); | ||
341 | #ifdef CONFIG_SND_DEBUG | ||
342 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
343 | snd_printk("mce_up - auto calibration time out (0)\n"); | ||
344 | #endif | ||
345 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
346 | chip->mce_bit |= CS4231_MCE; | ||
347 | timeout = cs4231_inb(chip, CS4231P(REGSEL)); | ||
348 | if (timeout == 0x80) | ||
349 | snd_printk("mce_up [0x%lx]: serious init problem - codec still busy\n", chip->port); | ||
350 | if (!(timeout & CS4231_MCE)) | ||
351 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | (timeout & 0x1f)); | ||
352 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
353 | } | ||
354 | |||
355 | void snd_cs4231_mce_down(cs4231_t *chip) | ||
356 | { | ||
357 | unsigned long flags; | ||
358 | int timeout; | ||
359 | |||
360 | snd_cs4231_busy_wait(chip); | ||
361 | #if 0 | ||
362 | printk("(1) timeout = %i\n", timeout); | ||
363 | #endif | ||
364 | #ifdef CONFIG_SND_DEBUG | ||
365 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
366 | snd_printk("mce_down [0x%lx] - auto calibration time out (0)\n", (long)CS4231P(REGSEL)); | ||
367 | #endif | ||
368 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
369 | chip->mce_bit &= ~CS4231_MCE; | ||
370 | timeout = cs4231_inb(chip, CS4231P(REGSEL)); | ||
371 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | (timeout & 0x1f)); | ||
372 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
373 | if (timeout == 0x80) | ||
374 | snd_printk("mce_down [0x%lx]: serious init problem - codec still busy\n", chip->port); | ||
375 | if ((timeout & CS4231_MCE) == 0 || | ||
376 | !(chip->hardware & (CS4231_HW_CS4231_MASK | CS4231_HW_CS4232_MASK))) { | ||
377 | return; | ||
378 | } | ||
379 | snd_cs4231_busy_wait(chip); | ||
380 | |||
381 | /* calibration process */ | ||
382 | |||
383 | for (timeout = 500; timeout > 0 && (snd_cs4231_in(chip, CS4231_TEST_INIT) & CS4231_CALIB_IN_PROGRESS) == 0; timeout--) | ||
384 | udelay(10); | ||
385 | if ((snd_cs4231_in(chip, CS4231_TEST_INIT) & CS4231_CALIB_IN_PROGRESS) == 0) { | ||
386 | snd_printd("cs4231_mce_down - auto calibration time out (1)\n"); | ||
387 | return; | ||
388 | } | ||
389 | #if 0 | ||
390 | printk("(2) timeout = %i, jiffies = %li\n", timeout, jiffies); | ||
391 | #endif | ||
392 | /* in 10 ms increments, check condition, up to 250 ms */ | ||
393 | timeout = 25; | ||
394 | while (snd_cs4231_in(chip, CS4231_TEST_INIT) & CS4231_CALIB_IN_PROGRESS) { | ||
395 | if (--timeout < 0) { | ||
396 | snd_printk("mce_down - auto calibration time out (2)\n"); | ||
397 | return; | ||
398 | } | ||
399 | msleep(10); | ||
400 | } | ||
401 | #if 0 | ||
402 | printk("(3) jiffies = %li\n", jiffies); | ||
403 | #endif | ||
404 | /* in 10 ms increments, check condition, up to 100 ms */ | ||
405 | timeout = 10; | ||
406 | while (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) { | ||
407 | if (--timeout < 0) { | ||
408 | snd_printk(KERN_ERR "mce_down - auto calibration time out (3)\n"); | ||
409 | return; | ||
410 | } | ||
411 | msleep(10); | ||
412 | } | ||
413 | #if 0 | ||
414 | printk("(4) jiffies = %li\n", jiffies); | ||
415 | snd_printk("mce_down - exit = 0x%x\n", cs4231_inb(chip, CS4231P(REGSEL))); | ||
416 | #endif | ||
417 | } | ||
418 | |||
419 | static unsigned int snd_cs4231_get_count(unsigned char format, unsigned int size) | ||
420 | { | ||
421 | switch (format & 0xe0) { | ||
422 | case CS4231_LINEAR_16: | ||
423 | case CS4231_LINEAR_16_BIG: | ||
424 | size >>= 1; | ||
425 | break; | ||
426 | case CS4231_ADPCM_16: | ||
427 | return size >> 2; | ||
428 | } | ||
429 | if (format & CS4231_STEREO) | ||
430 | size >>= 1; | ||
431 | return size; | ||
432 | } | ||
433 | |||
434 | static int snd_cs4231_trigger(snd_pcm_substream_t *substream, | ||
435 | int cmd) | ||
436 | { | ||
437 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
438 | int result = 0; | ||
439 | unsigned int what; | ||
440 | struct list_head *pos; | ||
441 | snd_pcm_substream_t *s; | ||
442 | int do_start; | ||
443 | |||
444 | #if 0 | ||
445 | printk("codec trigger!!! - what = %i, enable = %i, status = 0x%x\n", what, enable, cs4231_inb(chip, CS4231P(STATUS))); | ||
446 | #endif | ||
447 | |||
448 | switch (cmd) { | ||
449 | case SNDRV_PCM_TRIGGER_START: | ||
450 | case SNDRV_PCM_TRIGGER_RESUME: | ||
451 | do_start = 1; break; | ||
452 | case SNDRV_PCM_TRIGGER_STOP: | ||
453 | case SNDRV_PCM_TRIGGER_SUSPEND: | ||
454 | do_start = 0; break; | ||
455 | default: | ||
456 | return -EINVAL; | ||
457 | } | ||
458 | |||
459 | what = 0; | ||
460 | snd_pcm_group_for_each(pos, substream) { | ||
461 | s = snd_pcm_group_substream_entry(pos); | ||
462 | if (s == chip->playback_substream) { | ||
463 | what |= CS4231_PLAYBACK_ENABLE; | ||
464 | snd_pcm_trigger_done(s, substream); | ||
465 | } else if (s == chip->capture_substream) { | ||
466 | what |= CS4231_RECORD_ENABLE; | ||
467 | snd_pcm_trigger_done(s, substream); | ||
468 | } | ||
469 | } | ||
470 | spin_lock(&chip->reg_lock); | ||
471 | if (do_start) { | ||
472 | chip->image[CS4231_IFACE_CTRL] |= what; | ||
473 | if (chip->trigger) | ||
474 | chip->trigger(chip, what, 1); | ||
475 | } else { | ||
476 | chip->image[CS4231_IFACE_CTRL] &= ~what; | ||
477 | if (chip->trigger) | ||
478 | chip->trigger(chip, what, 0); | ||
479 | } | ||
480 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]); | ||
481 | spin_unlock(&chip->reg_lock); | ||
482 | #if 0 | ||
483 | snd_cs4231_debug(chip); | ||
484 | #endif | ||
485 | return result; | ||
486 | } | ||
487 | |||
488 | /* | ||
489 | * CODEC I/O | ||
490 | */ | ||
491 | |||
492 | static unsigned char snd_cs4231_get_rate(unsigned int rate) | ||
493 | { | ||
494 | int i; | ||
495 | |||
496 | for (i = 0; i < 14; i++) | ||
497 | if (rate == rates[i]) | ||
498 | return freq_bits[i]; | ||
499 | // snd_BUG(); | ||
500 | return freq_bits[13]; | ||
501 | } | ||
502 | |||
503 | static unsigned char snd_cs4231_get_format(cs4231_t *chip, | ||
504 | int format, | ||
505 | int channels) | ||
506 | { | ||
507 | unsigned char rformat; | ||
508 | |||
509 | rformat = CS4231_LINEAR_8; | ||
510 | switch (format) { | ||
511 | case SNDRV_PCM_FORMAT_MU_LAW: rformat = CS4231_ULAW_8; break; | ||
512 | case SNDRV_PCM_FORMAT_A_LAW: rformat = CS4231_ALAW_8; break; | ||
513 | case SNDRV_PCM_FORMAT_S16_LE: rformat = CS4231_LINEAR_16; break; | ||
514 | case SNDRV_PCM_FORMAT_S16_BE: rformat = CS4231_LINEAR_16_BIG; break; | ||
515 | case SNDRV_PCM_FORMAT_IMA_ADPCM: rformat = CS4231_ADPCM_16; break; | ||
516 | } | ||
517 | if (channels > 1) | ||
518 | rformat |= CS4231_STEREO; | ||
519 | #if 0 | ||
520 | snd_printk("get_format: 0x%x (mode=0x%x)\n", format, mode); | ||
521 | #endif | ||
522 | return rformat; | ||
523 | } | ||
524 | |||
525 | static void snd_cs4231_calibrate_mute(cs4231_t *chip, int mute) | ||
526 | { | ||
527 | unsigned long flags; | ||
528 | |||
529 | mute = mute ? 1 : 0; | ||
530 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
531 | if (chip->calibrate_mute == mute) { | ||
532 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
533 | return; | ||
534 | } | ||
535 | if (!mute) { | ||
536 | snd_cs4231_dout(chip, CS4231_LEFT_INPUT, chip->image[CS4231_LEFT_INPUT]); | ||
537 | snd_cs4231_dout(chip, CS4231_RIGHT_INPUT, chip->image[CS4231_RIGHT_INPUT]); | ||
538 | snd_cs4231_dout(chip, CS4231_LOOPBACK, chip->image[CS4231_LOOPBACK]); | ||
539 | } | ||
540 | snd_cs4231_dout(chip, CS4231_AUX1_LEFT_INPUT, mute ? 0x80 : chip->image[CS4231_AUX1_LEFT_INPUT]); | ||
541 | snd_cs4231_dout(chip, CS4231_AUX1_RIGHT_INPUT, mute ? 0x80 : chip->image[CS4231_AUX1_RIGHT_INPUT]); | ||
542 | snd_cs4231_dout(chip, CS4231_AUX2_LEFT_INPUT, mute ? 0x80 : chip->image[CS4231_AUX2_LEFT_INPUT]); | ||
543 | snd_cs4231_dout(chip, CS4231_AUX2_RIGHT_INPUT, mute ? 0x80 : chip->image[CS4231_AUX2_RIGHT_INPUT]); | ||
544 | snd_cs4231_dout(chip, CS4231_LEFT_OUTPUT, mute ? 0x80 : chip->image[CS4231_LEFT_OUTPUT]); | ||
545 | snd_cs4231_dout(chip, CS4231_RIGHT_OUTPUT, mute ? 0x80 : chip->image[CS4231_RIGHT_OUTPUT]); | ||
546 | snd_cs4231_dout(chip, CS4231_LEFT_LINE_IN, mute ? 0x80 : chip->image[CS4231_LEFT_LINE_IN]); | ||
547 | snd_cs4231_dout(chip, CS4231_RIGHT_LINE_IN, mute ? 0x80 : chip->image[CS4231_RIGHT_LINE_IN]); | ||
548 | snd_cs4231_dout(chip, CS4231_MONO_CTRL, mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]); | ||
549 | if (chip->hardware == CS4231_HW_INTERWAVE) { | ||
550 | snd_cs4231_dout(chip, CS4231_LEFT_MIC_INPUT, mute ? 0x80 : chip->image[CS4231_LEFT_MIC_INPUT]); | ||
551 | snd_cs4231_dout(chip, CS4231_RIGHT_MIC_INPUT, mute ? 0x80 : chip->image[CS4231_RIGHT_MIC_INPUT]); | ||
552 | snd_cs4231_dout(chip, CS4231_LINE_LEFT_OUTPUT, mute ? 0x80 : chip->image[CS4231_LINE_LEFT_OUTPUT]); | ||
553 | snd_cs4231_dout(chip, CS4231_LINE_RIGHT_OUTPUT, mute ? 0x80 : chip->image[CS4231_LINE_RIGHT_OUTPUT]); | ||
554 | } | ||
555 | chip->calibrate_mute = mute; | ||
556 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
557 | } | ||
558 | |||
559 | static void snd_cs4231_playback_format(cs4231_t *chip, | ||
560 | snd_pcm_hw_params_t *params, | ||
561 | unsigned char pdfr) | ||
562 | { | ||
563 | unsigned long flags; | ||
564 | int full_calib = 1; | ||
565 | |||
566 | down(&chip->mce_mutex); | ||
567 | snd_cs4231_calibrate_mute(chip, 1); | ||
568 | if (chip->hardware == CS4231_HW_CS4231A || | ||
569 | (chip->hardware & CS4231_HW_CS4232_MASK)) { | ||
570 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
571 | if ((chip->image[CS4231_PLAYBK_FORMAT] & 0x0f) == (pdfr & 0x0f)) { /* rate is same? */ | ||
572 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] | 0x10); | ||
573 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, chip->image[CS4231_PLAYBK_FORMAT] = pdfr); | ||
574 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] &= ~0x10); | ||
575 | udelay(100); /* Fixes audible clicks at least on GUS MAX */ | ||
576 | full_calib = 0; | ||
577 | } | ||
578 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
579 | } | ||
580 | if (full_calib) { | ||
581 | snd_cs4231_mce_up(chip); | ||
582 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
583 | if (chip->hardware != CS4231_HW_INTERWAVE && !chip->single_dma) { | ||
584 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, | ||
585 | (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) ? | ||
586 | (pdfr & 0xf0) | (chip->image[CS4231_REC_FORMAT] & 0x0f) : | ||
587 | pdfr); | ||
588 | } else { | ||
589 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, chip->image[CS4231_PLAYBK_FORMAT] = pdfr); | ||
590 | } | ||
591 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
592 | snd_cs4231_mce_down(chip); | ||
593 | } | ||
594 | snd_cs4231_calibrate_mute(chip, 0); | ||
595 | up(&chip->mce_mutex); | ||
596 | } | ||
597 | |||
598 | static void snd_cs4231_capture_format(cs4231_t *chip, | ||
599 | snd_pcm_hw_params_t *params, | ||
600 | unsigned char cdfr) | ||
601 | { | ||
602 | unsigned long flags; | ||
603 | int full_calib = 1; | ||
604 | |||
605 | down(&chip->mce_mutex); | ||
606 | snd_cs4231_calibrate_mute(chip, 1); | ||
607 | if (chip->hardware == CS4231_HW_CS4231A || | ||
608 | (chip->hardware & CS4231_HW_CS4232_MASK)) { | ||
609 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
610 | if ((chip->image[CS4231_PLAYBK_FORMAT] & 0x0f) == (cdfr & 0x0f) || /* rate is same? */ | ||
611 | (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) { | ||
612 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] | 0x20); | ||
613 | snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT] = cdfr); | ||
614 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] &= ~0x20); | ||
615 | full_calib = 0; | ||
616 | } | ||
617 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
618 | } | ||
619 | if (full_calib) { | ||
620 | snd_cs4231_mce_up(chip); | ||
621 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
622 | if (chip->hardware != CS4231_HW_INTERWAVE) { | ||
623 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) { | ||
624 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, | ||
625 | ((chip->single_dma ? cdfr : chip->image[CS4231_PLAYBK_FORMAT]) & 0xf0) | | ||
626 | (cdfr & 0x0f)); | ||
627 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
628 | snd_cs4231_mce_down(chip); | ||
629 | snd_cs4231_mce_up(chip); | ||
630 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
631 | } | ||
632 | } | ||
633 | snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr); | ||
634 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
635 | snd_cs4231_mce_down(chip); | ||
636 | } | ||
637 | snd_cs4231_calibrate_mute(chip, 0); | ||
638 | up(&chip->mce_mutex); | ||
639 | } | ||
640 | |||
641 | /* | ||
642 | * Timer interface | ||
643 | */ | ||
644 | |||
645 | static unsigned long snd_cs4231_timer_resolution(snd_timer_t * timer) | ||
646 | { | ||
647 | cs4231_t *chip = snd_timer_chip(timer); | ||
648 | if (chip->hardware & CS4231_HW_CS4236B_MASK) | ||
649 | return 14467; | ||
650 | else | ||
651 | return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920; | ||
652 | } | ||
653 | |||
654 | static int snd_cs4231_timer_start(snd_timer_t * timer) | ||
655 | { | ||
656 | unsigned long flags; | ||
657 | unsigned int ticks; | ||
658 | cs4231_t *chip = snd_timer_chip(timer); | ||
659 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
660 | ticks = timer->sticks; | ||
661 | if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 || | ||
662 | (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] || | ||
663 | (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) { | ||
664 | snd_cs4231_out(chip, CS4231_TIMER_HIGH, chip->image[CS4231_TIMER_HIGH] = (unsigned char) (ticks >> 8)); | ||
665 | snd_cs4231_out(chip, CS4231_TIMER_LOW, chip->image[CS4231_TIMER_LOW] = (unsigned char) ticks); | ||
666 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] | CS4231_TIMER_ENABLE); | ||
667 | } | ||
668 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
669 | return 0; | ||
670 | } | ||
671 | |||
672 | static int snd_cs4231_timer_stop(snd_timer_t * timer) | ||
673 | { | ||
674 | unsigned long flags; | ||
675 | cs4231_t *chip = snd_timer_chip(timer); | ||
676 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
677 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE); | ||
678 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
679 | return 0; | ||
680 | } | ||
681 | |||
682 | static void snd_cs4231_init(cs4231_t *chip) | ||
683 | { | ||
684 | unsigned long flags; | ||
685 | |||
686 | snd_cs4231_mce_down(chip); | ||
687 | |||
688 | #ifdef SNDRV_DEBUG_MCE | ||
689 | snd_printk("init: (1)\n"); | ||
690 | #endif | ||
691 | snd_cs4231_mce_up(chip); | ||
692 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
693 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | | ||
694 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO | | ||
695 | CS4231_CALIB_MODE); | ||
696 | chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB; | ||
697 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]); | ||
698 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
699 | snd_cs4231_mce_down(chip); | ||
700 | |||
701 | #ifdef SNDRV_DEBUG_MCE | ||
702 | snd_printk("init: (2)\n"); | ||
703 | #endif | ||
704 | |||
705 | snd_cs4231_mce_up(chip); | ||
706 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
707 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1]); | ||
708 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
709 | snd_cs4231_mce_down(chip); | ||
710 | |||
711 | #ifdef SNDRV_DEBUG_MCE | ||
712 | snd_printk("init: (3) - afei = 0x%x\n", chip->image[CS4231_ALT_FEATURE_1]); | ||
713 | #endif | ||
714 | |||
715 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
716 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_2, chip->image[CS4231_ALT_FEATURE_2]); | ||
717 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
718 | |||
719 | snd_cs4231_mce_up(chip); | ||
720 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
721 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, chip->image[CS4231_PLAYBK_FORMAT]); | ||
722 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
723 | snd_cs4231_mce_down(chip); | ||
724 | |||
725 | #ifdef SNDRV_DEBUG_MCE | ||
726 | snd_printk("init: (4)\n"); | ||
727 | #endif | ||
728 | |||
729 | snd_cs4231_mce_up(chip); | ||
730 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
731 | snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT]); | ||
732 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
733 | snd_cs4231_mce_down(chip); | ||
734 | |||
735 | #ifdef SNDRV_DEBUG_MCE | ||
736 | snd_printk("init: (5)\n"); | ||
737 | #endif | ||
738 | } | ||
739 | |||
740 | static int snd_cs4231_open(cs4231_t *chip, unsigned int mode) | ||
741 | { | ||
742 | unsigned long flags; | ||
743 | |||
744 | down(&chip->open_mutex); | ||
745 | if ((chip->mode & mode) || | ||
746 | ((chip->mode & CS4231_MODE_OPEN) && chip->single_dma)) { | ||
747 | up(&chip->open_mutex); | ||
748 | return -EAGAIN; | ||
749 | } | ||
750 | if (chip->mode & CS4231_MODE_OPEN) { | ||
751 | chip->mode |= mode; | ||
752 | up(&chip->open_mutex); | ||
753 | return 0; | ||
754 | } | ||
755 | /* ok. now enable and ack CODEC IRQ */ | ||
756 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
757 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | | ||
758 | CS4231_RECORD_IRQ | | ||
759 | CS4231_TIMER_IRQ); | ||
760 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); | ||
761 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
762 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
763 | chip->image[CS4231_PIN_CTRL] |= CS4231_IRQ_ENABLE; | ||
764 | snd_cs4231_out(chip, CS4231_PIN_CTRL, chip->image[CS4231_PIN_CTRL]); | ||
765 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | | ||
766 | CS4231_RECORD_IRQ | | ||
767 | CS4231_TIMER_IRQ); | ||
768 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); | ||
769 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
770 | |||
771 | chip->mode = mode; | ||
772 | up(&chip->open_mutex); | ||
773 | return 0; | ||
774 | } | ||
775 | |||
776 | static void snd_cs4231_close(cs4231_t *chip, unsigned int mode) | ||
777 | { | ||
778 | unsigned long flags; | ||
779 | |||
780 | down(&chip->open_mutex); | ||
781 | chip->mode &= ~mode; | ||
782 | if (chip->mode & CS4231_MODE_OPEN) { | ||
783 | up(&chip->open_mutex); | ||
784 | return; | ||
785 | } | ||
786 | snd_cs4231_calibrate_mute(chip, 1); | ||
787 | |||
788 | /* disable IRQ */ | ||
789 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
790 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); | ||
791 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
792 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
793 | chip->image[CS4231_PIN_CTRL] &= ~CS4231_IRQ_ENABLE; | ||
794 | snd_cs4231_out(chip, CS4231_PIN_CTRL, chip->image[CS4231_PIN_CTRL]); | ||
795 | |||
796 | /* now disable record & playback */ | ||
797 | |||
798 | if (chip->image[CS4231_IFACE_CTRL] & (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | | ||
799 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) { | ||
800 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
801 | snd_cs4231_mce_up(chip); | ||
802 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
803 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | | ||
804 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO); | ||
805 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]); | ||
806 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
807 | snd_cs4231_mce_down(chip); | ||
808 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
809 | } | ||
810 | |||
811 | /* clear IRQ again */ | ||
812 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); | ||
813 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
814 | cs4231_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */ | ||
815 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
816 | |||
817 | snd_cs4231_calibrate_mute(chip, 0); | ||
818 | |||
819 | chip->mode = 0; | ||
820 | up(&chip->open_mutex); | ||
821 | } | ||
822 | |||
823 | /* | ||
824 | * timer open/close | ||
825 | */ | ||
826 | |||
827 | static int snd_cs4231_timer_open(snd_timer_t * timer) | ||
828 | { | ||
829 | cs4231_t *chip = snd_timer_chip(timer); | ||
830 | snd_cs4231_open(chip, CS4231_MODE_TIMER); | ||
831 | return 0; | ||
832 | } | ||
833 | |||
834 | static int snd_cs4231_timer_close(snd_timer_t * timer) | ||
835 | { | ||
836 | cs4231_t *chip = snd_timer_chip(timer); | ||
837 | snd_cs4231_close(chip, CS4231_MODE_TIMER); | ||
838 | return 0; | ||
839 | } | ||
840 | |||
841 | static struct _snd_timer_hardware snd_cs4231_timer_table = | ||
842 | { | ||
843 | .flags = SNDRV_TIMER_HW_AUTO, | ||
844 | .resolution = 9945, | ||
845 | .ticks = 65535, | ||
846 | .open = snd_cs4231_timer_open, | ||
847 | .close = snd_cs4231_timer_close, | ||
848 | .c_resolution = snd_cs4231_timer_resolution, | ||
849 | .start = snd_cs4231_timer_start, | ||
850 | .stop = snd_cs4231_timer_stop, | ||
851 | }; | ||
852 | |||
853 | /* | ||
854 | * ok.. exported functions.. | ||
855 | */ | ||
856 | |||
857 | static int snd_cs4231_playback_hw_params(snd_pcm_substream_t * substream, | ||
858 | snd_pcm_hw_params_t * hw_params) | ||
859 | { | ||
860 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
861 | unsigned char new_pdfr; | ||
862 | int err; | ||
863 | |||
864 | if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0) | ||
865 | return err; | ||
866 | new_pdfr = snd_cs4231_get_format(chip, params_format(hw_params), params_channels(hw_params)) | | ||
867 | snd_cs4231_get_rate(params_rate(hw_params)); | ||
868 | chip->set_playback_format(chip, hw_params, new_pdfr); | ||
869 | return 0; | ||
870 | } | ||
871 | |||
872 | static int snd_cs4231_playback_hw_free(snd_pcm_substream_t * substream) | ||
873 | { | ||
874 | return snd_pcm_lib_free_pages(substream); | ||
875 | } | ||
876 | |||
877 | #ifdef LEGACY_SUPPORT | ||
878 | static int snd_cs4231_playback_prepare(snd_pcm_substream_t * substream) | ||
879 | { | ||
880 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
881 | snd_pcm_runtime_t *runtime = substream->runtime; | ||
882 | unsigned long flags; | ||
883 | unsigned int size = snd_pcm_lib_buffer_bytes(substream); | ||
884 | unsigned int count = snd_pcm_lib_period_bytes(substream); | ||
885 | |||
886 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
887 | chip->p_dma_size = size; | ||
888 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO); | ||
889 | snd_dma_program(chip->dma1, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT); | ||
890 | count = snd_cs4231_get_count(chip->image[CS4231_PLAYBK_FORMAT], count) - 1; | ||
891 | snd_cs4231_out(chip, CS4231_PLY_LWR_CNT, (unsigned char) count); | ||
892 | snd_cs4231_out(chip, CS4231_PLY_UPR_CNT, (unsigned char) (count >> 8)); | ||
893 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
894 | #if 0 | ||
895 | snd_cs4231_debug(chip); | ||
896 | #endif | ||
897 | return 0; | ||
898 | } | ||
899 | #endif /* LEGACY_SUPPORT */ | ||
900 | |||
901 | static int snd_cs4231_capture_hw_params(snd_pcm_substream_t * substream, | ||
902 | snd_pcm_hw_params_t * hw_params) | ||
903 | { | ||
904 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
905 | unsigned char new_cdfr; | ||
906 | int err; | ||
907 | |||
908 | if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0) | ||
909 | return err; | ||
910 | new_cdfr = snd_cs4231_get_format(chip, params_format(hw_params), params_channels(hw_params)) | | ||
911 | snd_cs4231_get_rate(params_rate(hw_params)); | ||
912 | chip->set_capture_format(chip, hw_params, new_cdfr); | ||
913 | return 0; | ||
914 | } | ||
915 | |||
916 | static int snd_cs4231_capture_hw_free(snd_pcm_substream_t * substream) | ||
917 | { | ||
918 | return snd_pcm_lib_free_pages(substream); | ||
919 | } | ||
920 | |||
921 | #ifdef LEGACY_SUPPORT | ||
922 | static int snd_cs4231_capture_prepare(snd_pcm_substream_t * substream) | ||
923 | { | ||
924 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
925 | snd_pcm_runtime_t *runtime = substream->runtime; | ||
926 | unsigned long flags; | ||
927 | unsigned int size = snd_pcm_lib_buffer_bytes(substream); | ||
928 | unsigned int count = snd_pcm_lib_period_bytes(substream); | ||
929 | |||
930 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
931 | chip->c_dma_size = size; | ||
932 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE | CS4231_RECORD_PIO); | ||
933 | snd_dma_program(chip->dma2, runtime->dma_addr, size, DMA_MODE_READ | DMA_AUTOINIT); | ||
934 | count = snd_cs4231_get_count(chip->image[CS4231_REC_FORMAT], count) - 1; | ||
935 | if (chip->single_dma && chip->hardware != CS4231_HW_INTERWAVE) { | ||
936 | snd_cs4231_out(chip, CS4231_PLY_LWR_CNT, (unsigned char) count); | ||
937 | snd_cs4231_out(chip, CS4231_PLY_UPR_CNT, (unsigned char) (count >> 8)); | ||
938 | } else { | ||
939 | snd_cs4231_out(chip, CS4231_REC_LWR_CNT, (unsigned char) count); | ||
940 | snd_cs4231_out(chip, CS4231_REC_UPR_CNT, (unsigned char) (count >> 8)); | ||
941 | } | ||
942 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
943 | return 0; | ||
944 | } | ||
945 | #endif | ||
946 | |||
947 | static void snd_cs4231_overrange(cs4231_t *chip) | ||
948 | { | ||
949 | unsigned long flags; | ||
950 | unsigned char res; | ||
951 | |||
952 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
953 | res = snd_cs4231_in(chip, CS4231_TEST_INIT); | ||
954 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
955 | if (res & (0x08 | 0x02)) /* detect overrange only above 0dB; may be user selectable? */ | ||
956 | chip->capture_substream->runtime->overrange++; | ||
957 | } | ||
958 | |||
959 | irqreturn_t snd_cs4231_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
960 | { | ||
961 | cs4231_t *chip = dev_id; | ||
962 | unsigned char status; | ||
963 | |||
964 | status = snd_cs4231_in(chip, CS4231_IRQ_STATUS); | ||
965 | if (status & CS4231_TIMER_IRQ) { | ||
966 | if (chip->timer) | ||
967 | snd_timer_interrupt(chip->timer, chip->timer->sticks); | ||
968 | } | ||
969 | if (chip->single_dma && chip->hardware != CS4231_HW_INTERWAVE) { | ||
970 | if (status & CS4231_PLAYBACK_IRQ) { | ||
971 | if (chip->mode & CS4231_MODE_PLAY) { | ||
972 | if (chip->playback_substream) | ||
973 | snd_pcm_period_elapsed(chip->playback_substream); | ||
974 | } | ||
975 | if (chip->mode & CS4231_MODE_RECORD) { | ||
976 | if (chip->capture_substream) { | ||
977 | snd_cs4231_overrange(chip); | ||
978 | snd_pcm_period_elapsed(chip->capture_substream); | ||
979 | } | ||
980 | } | ||
981 | } | ||
982 | } else { | ||
983 | if (status & CS4231_PLAYBACK_IRQ) { | ||
984 | if (chip->playback_substream) | ||
985 | snd_pcm_period_elapsed(chip->playback_substream); | ||
986 | } | ||
987 | if (status & CS4231_RECORD_IRQ) { | ||
988 | if (chip->capture_substream) { | ||
989 | snd_cs4231_overrange(chip); | ||
990 | snd_pcm_period_elapsed(chip->capture_substream); | ||
991 | } | ||
992 | } | ||
993 | } | ||
994 | |||
995 | spin_lock(&chip->reg_lock); | ||
996 | snd_cs4231_outm(chip, CS4231_IRQ_STATUS, ~CS4231_ALL_IRQS | ~status, 0); | ||
997 | spin_unlock(&chip->reg_lock); | ||
998 | return IRQ_HANDLED; | ||
999 | } | ||
1000 | |||
1001 | #ifdef LEGACY_SUPPORT | ||
1002 | static snd_pcm_uframes_t snd_cs4231_playback_pointer(snd_pcm_substream_t * substream) | ||
1003 | { | ||
1004 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1005 | size_t ptr; | ||
1006 | |||
1007 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) | ||
1008 | return 0; | ||
1009 | ptr = snd_dma_pointer(chip->dma1, chip->p_dma_size); | ||
1010 | return bytes_to_frames(substream->runtime, ptr); | ||
1011 | } | ||
1012 | |||
1013 | static snd_pcm_uframes_t snd_cs4231_capture_pointer(snd_pcm_substream_t * substream) | ||
1014 | { | ||
1015 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1016 | size_t ptr; | ||
1017 | |||
1018 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE)) | ||
1019 | return 0; | ||
1020 | ptr = snd_dma_pointer(chip->dma2, chip->c_dma_size); | ||
1021 | return bytes_to_frames(substream->runtime, ptr); | ||
1022 | } | ||
1023 | #endif /* LEGACY_SUPPORT */ | ||
1024 | |||
1025 | /* | ||
1026 | |||
1027 | */ | ||
1028 | |||
1029 | static int snd_cs4231_probe(cs4231_t *chip) | ||
1030 | { | ||
1031 | unsigned long flags; | ||
1032 | int i, id, rev; | ||
1033 | unsigned char *ptr; | ||
1034 | unsigned int hw; | ||
1035 | |||
1036 | #if 0 | ||
1037 | snd_cs4231_debug(chip); | ||
1038 | #endif | ||
1039 | id = 0; | ||
1040 | for (i = 0; i < 50; i++) { | ||
1041 | mb(); | ||
1042 | if (cs4231_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) | ||
1043 | udelay(2000); | ||
1044 | else { | ||
1045 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1046 | snd_cs4231_out(chip, CS4231_MISC_INFO, CS4231_MODE2); | ||
1047 | id = snd_cs4231_in(chip, CS4231_MISC_INFO) & 0x0f; | ||
1048 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1049 | if (id == 0x0a) | ||
1050 | break; /* this is valid value */ | ||
1051 | } | ||
1052 | } | ||
1053 | snd_printdd("cs4231: port = 0x%lx, id = 0x%x\n", chip->port, id); | ||
1054 | if (id != 0x0a) | ||
1055 | return -ENODEV; /* no valid device found */ | ||
1056 | |||
1057 | if (((hw = chip->hardware) & CS4231_HW_TYPE_MASK) == CS4231_HW_DETECT) { | ||
1058 | rev = snd_cs4231_in(chip, CS4231_VERSION) & 0xe7; | ||
1059 | snd_printdd("CS4231: VERSION (I25) = 0x%x\n", rev); | ||
1060 | if (rev == 0x80) { | ||
1061 | unsigned char tmp = snd_cs4231_in(chip, 23); | ||
1062 | snd_cs4231_out(chip, 23, ~tmp); | ||
1063 | if (snd_cs4231_in(chip, 23) != tmp) | ||
1064 | chip->hardware = CS4231_HW_AD1845; | ||
1065 | else | ||
1066 | chip->hardware = CS4231_HW_CS4231; | ||
1067 | } else if (rev == 0xa0) { | ||
1068 | chip->hardware = CS4231_HW_CS4231A; | ||
1069 | } else if (rev == 0xa2) { | ||
1070 | chip->hardware = CS4231_HW_CS4232; | ||
1071 | } else if (rev == 0xb2) { | ||
1072 | chip->hardware = CS4231_HW_CS4232A; | ||
1073 | } else if (rev == 0x83) { | ||
1074 | chip->hardware = CS4231_HW_CS4236; | ||
1075 | } else if (rev == 0x03) { | ||
1076 | chip->hardware = CS4231_HW_CS4236B; | ||
1077 | } else { | ||
1078 | snd_printk("unknown CS chip with version 0x%x\n", rev); | ||
1079 | return -ENODEV; /* unknown CS4231 chip? */ | ||
1080 | } | ||
1081 | } | ||
1082 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1083 | cs4231_inb(chip, CS4231P(STATUS)); /* clear any pendings IRQ */ | ||
1084 | cs4231_outb(chip, CS4231P(STATUS), 0); | ||
1085 | mb(); | ||
1086 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1087 | |||
1088 | chip->image[CS4231_MISC_INFO] = CS4231_MODE2; | ||
1089 | switch (chip->hardware) { | ||
1090 | case CS4231_HW_INTERWAVE: | ||
1091 | chip->image[CS4231_MISC_INFO] = CS4231_IW_MODE3; | ||
1092 | break; | ||
1093 | case CS4231_HW_CS4235: | ||
1094 | case CS4231_HW_CS4236B: | ||
1095 | case CS4231_HW_CS4237B: | ||
1096 | case CS4231_HW_CS4238B: | ||
1097 | case CS4231_HW_CS4239: | ||
1098 | if (hw == CS4231_HW_DETECT3) | ||
1099 | chip->image[CS4231_MISC_INFO] = CS4231_4236_MODE3; | ||
1100 | else | ||
1101 | chip->hardware = CS4231_HW_CS4236; | ||
1102 | break; | ||
1103 | } | ||
1104 | |||
1105 | chip->image[CS4231_IFACE_CTRL] = | ||
1106 | (chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA) | | ||
1107 | (chip->single_dma ? CS4231_SINGLE_DMA : 0); | ||
1108 | chip->image[CS4231_ALT_FEATURE_1] = 0x80; | ||
1109 | chip->image[CS4231_ALT_FEATURE_2] = chip->hardware == CS4231_HW_INTERWAVE ? 0xc2 : 0x01; | ||
1110 | ptr = (unsigned char *) &chip->image; | ||
1111 | snd_cs4231_mce_down(chip); | ||
1112 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1113 | for (i = 0; i < 32; i++) /* ok.. fill all CS4231 registers */ | ||
1114 | snd_cs4231_out(chip, i, *ptr++); | ||
1115 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1116 | snd_cs4231_mce_up(chip); | ||
1117 | snd_cs4231_mce_down(chip); | ||
1118 | |||
1119 | mdelay(2); | ||
1120 | |||
1121 | /* ok.. try check hardware version for CS4236+ chips */ | ||
1122 | if ((hw & CS4231_HW_TYPE_MASK) == CS4231_HW_DETECT) { | ||
1123 | if (chip->hardware == CS4231_HW_CS4236B) { | ||
1124 | rev = snd_cs4236_ext_in(chip, CS4236_VERSION); | ||
1125 | snd_cs4236_ext_out(chip, CS4236_VERSION, 0xff); | ||
1126 | id = snd_cs4236_ext_in(chip, CS4236_VERSION); | ||
1127 | snd_cs4236_ext_out(chip, CS4236_VERSION, rev); | ||
1128 | snd_printdd("CS4231: ext version; rev = 0x%x, id = 0x%x\n", rev, id); | ||
1129 | if ((id & 0x1f) == 0x1d) { /* CS4235 */ | ||
1130 | chip->hardware = CS4231_HW_CS4235; | ||
1131 | switch (id >> 5) { | ||
1132 | case 4: | ||
1133 | case 5: | ||
1134 | case 6: | ||
1135 | break; | ||
1136 | default: | ||
1137 | snd_printk("unknown CS4235 chip (enhanced version = 0x%x)\n", id); | ||
1138 | } | ||
1139 | } else if ((id & 0x1f) == 0x0b) { /* CS4236/B */ | ||
1140 | switch (id >> 5) { | ||
1141 | case 4: | ||
1142 | case 5: | ||
1143 | case 6: | ||
1144 | case 7: | ||
1145 | chip->hardware = CS4231_HW_CS4236B; | ||
1146 | break; | ||
1147 | default: | ||
1148 | snd_printk("unknown CS4236 chip (enhanced version = 0x%x)\n", id); | ||
1149 | } | ||
1150 | } else if ((id & 0x1f) == 0x08) { /* CS4237B */ | ||
1151 | chip->hardware = CS4231_HW_CS4237B; | ||
1152 | switch (id >> 5) { | ||
1153 | case 4: | ||
1154 | case 5: | ||
1155 | case 6: | ||
1156 | case 7: | ||
1157 | break; | ||
1158 | default: | ||
1159 | snd_printk("unknown CS4237B chip (enhanced version = 0x%x)\n", id); | ||
1160 | } | ||
1161 | } else if ((id & 0x1f) == 0x09) { /* CS4238B */ | ||
1162 | chip->hardware = CS4231_HW_CS4238B; | ||
1163 | switch (id >> 5) { | ||
1164 | case 5: | ||
1165 | case 6: | ||
1166 | case 7: | ||
1167 | break; | ||
1168 | default: | ||
1169 | snd_printk("unknown CS4238B chip (enhanced version = 0x%x)\n", id); | ||
1170 | } | ||
1171 | } else if ((id & 0x1f) == 0x1e) { /* CS4239 */ | ||
1172 | chip->hardware = CS4231_HW_CS4239; | ||
1173 | switch (id >> 5) { | ||
1174 | case 4: | ||
1175 | case 5: | ||
1176 | case 6: | ||
1177 | break; | ||
1178 | default: | ||
1179 | snd_printk("unknown CS4239 chip (enhanced version = 0x%x)\n", id); | ||
1180 | } | ||
1181 | } else { | ||
1182 | snd_printk("unknown CS4236/CS423xB chip (enhanced version = 0x%x)\n", id); | ||
1183 | } | ||
1184 | } | ||
1185 | } | ||
1186 | return 0; /* all things are ok.. */ | ||
1187 | } | ||
1188 | |||
1189 | /* | ||
1190 | |||
1191 | */ | ||
1192 | |||
1193 | static snd_pcm_hardware_t snd_cs4231_playback = | ||
1194 | { | ||
1195 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | | ||
1196 | SNDRV_PCM_INFO_MMAP_VALID | | ||
1197 | SNDRV_PCM_INFO_RESUME | | ||
1198 | SNDRV_PCM_INFO_SYNC_START), | ||
1199 | .formats = (SNDRV_PCM_FMTBIT_MU_LAW | SNDRV_PCM_FMTBIT_A_LAW | SNDRV_PCM_FMTBIT_IMA_ADPCM | | ||
1200 | SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE), | ||
1201 | .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000, | ||
1202 | .rate_min = 5510, | ||
1203 | .rate_max = 48000, | ||
1204 | .channels_min = 1, | ||
1205 | .channels_max = 2, | ||
1206 | .buffer_bytes_max = (128*1024), | ||
1207 | .period_bytes_min = 64, | ||
1208 | .period_bytes_max = (128*1024), | ||
1209 | .periods_min = 1, | ||
1210 | .periods_max = 1024, | ||
1211 | .fifo_size = 0, | ||
1212 | }; | ||
1213 | |||
1214 | static snd_pcm_hardware_t snd_cs4231_capture = | ||
1215 | { | ||
1216 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | | ||
1217 | SNDRV_PCM_INFO_MMAP_VALID | | ||
1218 | SNDRV_PCM_INFO_RESUME | | ||
1219 | SNDRV_PCM_INFO_SYNC_START), | ||
1220 | .formats = (SNDRV_PCM_FMTBIT_MU_LAW | SNDRV_PCM_FMTBIT_A_LAW | SNDRV_PCM_FMTBIT_IMA_ADPCM | | ||
1221 | SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE), | ||
1222 | .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000, | ||
1223 | .rate_min = 5510, | ||
1224 | .rate_max = 48000, | ||
1225 | .channels_min = 1, | ||
1226 | .channels_max = 2, | ||
1227 | .buffer_bytes_max = (128*1024), | ||
1228 | .period_bytes_min = 64, | ||
1229 | .period_bytes_max = (128*1024), | ||
1230 | .periods_min = 1, | ||
1231 | .periods_max = 1024, | ||
1232 | .fifo_size = 0, | ||
1233 | }; | ||
1234 | |||
1235 | /* | ||
1236 | |||
1237 | */ | ||
1238 | |||
1239 | static int snd_cs4231_playback_open(snd_pcm_substream_t * substream) | ||
1240 | { | ||
1241 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1242 | snd_pcm_runtime_t *runtime = substream->runtime; | ||
1243 | int err; | ||
1244 | |||
1245 | runtime->hw = snd_cs4231_playback; | ||
1246 | |||
1247 | /* hardware bug in InterWave chipset */ | ||
1248 | if (chip->hardware == CS4231_HW_INTERWAVE && chip->dma1 > 3) | ||
1249 | runtime->hw.formats &= ~SNDRV_PCM_FMTBIT_MU_LAW; | ||
1250 | |||
1251 | /* hardware limitation of cheap chips */ | ||
1252 | if (chip->hardware == CS4231_HW_CS4235 || | ||
1253 | chip->hardware == CS4231_HW_CS4239) | ||
1254 | runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE; | ||
1255 | |||
1256 | #ifdef LEGACY_SUPPORT | ||
1257 | snd_pcm_limit_isa_dma_size(chip->dma1, &runtime->hw.buffer_bytes_max); | ||
1258 | snd_pcm_limit_isa_dma_size(chip->dma1, &runtime->hw.period_bytes_max); | ||
1259 | |||
1260 | if (chip->claim_dma) { | ||
1261 | if ((err = chip->claim_dma(chip, chip->dma_private_data, chip->dma1)) < 0) | ||
1262 | return err; | ||
1263 | } | ||
1264 | #endif | ||
1265 | |||
1266 | if ((err = snd_cs4231_open(chip, CS4231_MODE_PLAY)) < 0) { | ||
1267 | #ifdef LEGACY_SUPPORT | ||
1268 | if (chip->release_dma) | ||
1269 | chip->release_dma(chip, chip->dma_private_data, chip->dma1); | ||
1270 | #endif | ||
1271 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); | ||
1272 | return err; | ||
1273 | } | ||
1274 | chip->playback_substream = substream; | ||
1275 | #if defined(SBUS_SUPPORT) || defined(EBUS_SUPPORT) | ||
1276 | chip->p_periods_sent = 0; | ||
1277 | #endif | ||
1278 | snd_pcm_set_sync(substream); | ||
1279 | chip->rate_constraint(runtime); | ||
1280 | return 0; | ||
1281 | } | ||
1282 | |||
1283 | static int snd_cs4231_capture_open(snd_pcm_substream_t * substream) | ||
1284 | { | ||
1285 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1286 | snd_pcm_runtime_t *runtime = substream->runtime; | ||
1287 | int err; | ||
1288 | |||
1289 | runtime->hw = snd_cs4231_capture; | ||
1290 | |||
1291 | /* hardware limitation of cheap chips */ | ||
1292 | if (chip->hardware == CS4231_HW_CS4235 || | ||
1293 | chip->hardware == CS4231_HW_CS4239) | ||
1294 | runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE; | ||
1295 | |||
1296 | #ifdef LEGACY_SUPPORT | ||
1297 | snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.buffer_bytes_max); | ||
1298 | snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.period_bytes_max); | ||
1299 | |||
1300 | if (chip->claim_dma) { | ||
1301 | if ((err = chip->claim_dma(chip, chip->dma_private_data, chip->dma2)) < 0) | ||
1302 | return err; | ||
1303 | } | ||
1304 | #endif | ||
1305 | |||
1306 | if ((err = snd_cs4231_open(chip, CS4231_MODE_RECORD)) < 0) { | ||
1307 | #ifdef LEGACY_SUPPORT | ||
1308 | if (chip->release_dma) | ||
1309 | chip->release_dma(chip, chip->dma_private_data, chip->dma2); | ||
1310 | #endif | ||
1311 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); | ||
1312 | return err; | ||
1313 | } | ||
1314 | chip->capture_substream = substream; | ||
1315 | #if defined(SBUS_SUPPORT) || defined(EBUS_SUPPORT) | ||
1316 | chip->c_periods_sent = 0; | ||
1317 | #endif | ||
1318 | snd_pcm_set_sync(substream); | ||
1319 | chip->rate_constraint(runtime); | ||
1320 | return 0; | ||
1321 | } | ||
1322 | |||
1323 | static int snd_cs4231_playback_close(snd_pcm_substream_t * substream) | ||
1324 | { | ||
1325 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1326 | |||
1327 | chip->playback_substream = NULL; | ||
1328 | snd_cs4231_close(chip, CS4231_MODE_PLAY); | ||
1329 | return 0; | ||
1330 | } | ||
1331 | |||
1332 | static int snd_cs4231_capture_close(snd_pcm_substream_t * substream) | ||
1333 | { | ||
1334 | cs4231_t *chip = snd_pcm_substream_chip(substream); | ||
1335 | |||
1336 | chip->capture_substream = NULL; | ||
1337 | snd_cs4231_close(chip, CS4231_MODE_RECORD); | ||
1338 | return 0; | ||
1339 | } | ||
1340 | |||
1341 | #ifdef CONFIG_PM | ||
1342 | |||
1343 | /* lowlevel suspend callback for CS4231 */ | ||
1344 | static void snd_cs4231_suspend(cs4231_t *chip) | ||
1345 | { | ||
1346 | int reg; | ||
1347 | unsigned long flags; | ||
1348 | |||
1349 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1350 | for (reg = 0; reg < 32; reg++) | ||
1351 | chip->image[reg] = snd_cs4231_in(chip, reg); | ||
1352 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1353 | } | ||
1354 | |||
1355 | /* lowlevel resume callback for CS4231 */ | ||
1356 | static void snd_cs4231_resume(cs4231_t *chip) | ||
1357 | { | ||
1358 | int reg; | ||
1359 | unsigned long flags; | ||
1360 | int timeout; | ||
1361 | |||
1362 | snd_cs4231_mce_up(chip); | ||
1363 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1364 | for (reg = 0; reg < 32; reg++) { | ||
1365 | switch (reg) { | ||
1366 | case CS4231_VERSION: | ||
1367 | break; | ||
1368 | default: | ||
1369 | snd_cs4231_out(chip, reg, chip->image[reg]); | ||
1370 | break; | ||
1371 | } | ||
1372 | } | ||
1373 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1374 | #if 0 | ||
1375 | snd_cs4231_mce_down(chip); | ||
1376 | #else | ||
1377 | /* The following is a workaround to avoid freeze after resume on TP600E. | ||
1378 | This is the first half of copy of snd_cs4231_mce_down(), but doesn't | ||
1379 | include rescheduling. -- iwai | ||
1380 | */ | ||
1381 | snd_cs4231_busy_wait(chip); | ||
1382 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1383 | chip->mce_bit &= ~CS4231_MCE; | ||
1384 | timeout = cs4231_inb(chip, CS4231P(REGSEL)); | ||
1385 | cs4231_outb(chip, CS4231P(REGSEL), chip->mce_bit | (timeout & 0x1f)); | ||
1386 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1387 | if (timeout == 0x80) | ||
1388 | snd_printk("down [0x%lx]: serious init problem - codec still busy\n", chip->port); | ||
1389 | if ((timeout & CS4231_MCE) == 0 || | ||
1390 | !(chip->hardware & (CS4231_HW_CS4231_MASK | CS4231_HW_CS4232_MASK))) { | ||
1391 | return; | ||
1392 | } | ||
1393 | snd_cs4231_busy_wait(chip); | ||
1394 | #endif | ||
1395 | } | ||
1396 | |||
1397 | static int snd_cs4231_pm_suspend(snd_card_t *card, pm_message_t state) | ||
1398 | { | ||
1399 | cs4231_t *chip = card->pm_private_data; | ||
1400 | if (chip->suspend) | ||
1401 | chip->suspend(chip); | ||
1402 | return 0; | ||
1403 | } | ||
1404 | |||
1405 | static int snd_cs4231_pm_resume(snd_card_t *card) | ||
1406 | { | ||
1407 | cs4231_t *chip = card->pm_private_data; | ||
1408 | if (chip->resume) | ||
1409 | chip->resume(chip); | ||
1410 | return 0; | ||
1411 | } | ||
1412 | #endif /* CONFIG_PM */ | ||
1413 | |||
1414 | #ifdef LEGACY_SUPPORT | ||
1415 | |||
1416 | static int snd_cs4231_free(cs4231_t *chip) | ||
1417 | { | ||
1418 | if (chip->res_port) { | ||
1419 | release_resource(chip->res_port); | ||
1420 | kfree_nocheck(chip->res_port); | ||
1421 | } | ||
1422 | if (chip->res_cport) { | ||
1423 | release_resource(chip->res_cport); | ||
1424 | kfree_nocheck(chip->res_cport); | ||
1425 | } | ||
1426 | if (chip->irq >= 0) { | ||
1427 | disable_irq(chip->irq); | ||
1428 | if (!(chip->hwshare & CS4231_HWSHARE_IRQ)) | ||
1429 | free_irq(chip->irq, (void *) chip); | ||
1430 | } | ||
1431 | if (!(chip->hwshare & CS4231_HWSHARE_DMA1) && chip->dma1 >= 0) { | ||
1432 | snd_dma_disable(chip->dma1); | ||
1433 | free_dma(chip->dma1); | ||
1434 | } | ||
1435 | if (!(chip->hwshare & CS4231_HWSHARE_DMA2) && chip->dma2 >= 0 && chip->dma2 != chip->dma1) { | ||
1436 | snd_dma_disable(chip->dma2); | ||
1437 | free_dma(chip->dma2); | ||
1438 | } | ||
1439 | if (chip->timer) | ||
1440 | snd_device_free(chip->card, chip->timer); | ||
1441 | kfree(chip); | ||
1442 | return 0; | ||
1443 | } | ||
1444 | |||
1445 | static int snd_cs4231_dev_free(snd_device_t *device) | ||
1446 | { | ||
1447 | cs4231_t *chip = device->device_data; | ||
1448 | return snd_cs4231_free(chip); | ||
1449 | } | ||
1450 | |||
1451 | #endif /* LEGACY_SUPPORT */ | ||
1452 | |||
1453 | const char *snd_cs4231_chip_id(cs4231_t *chip) | ||
1454 | { | ||
1455 | switch (chip->hardware) { | ||
1456 | case CS4231_HW_CS4231: return "CS4231"; | ||
1457 | case CS4231_HW_CS4231A: return "CS4231A"; | ||
1458 | case CS4231_HW_CS4232: return "CS4232"; | ||
1459 | case CS4231_HW_CS4232A: return "CS4232A"; | ||
1460 | case CS4231_HW_CS4235: return "CS4235"; | ||
1461 | case CS4231_HW_CS4236: return "CS4236"; | ||
1462 | case CS4231_HW_CS4236B: return "CS4236B"; | ||
1463 | case CS4231_HW_CS4237B: return "CS4237B"; | ||
1464 | case CS4231_HW_CS4238B: return "CS4238B"; | ||
1465 | case CS4231_HW_CS4239: return "CS4239"; | ||
1466 | case CS4231_HW_INTERWAVE: return "AMD InterWave"; | ||
1467 | case CS4231_HW_OPL3SA2: return chip->card->shortname; | ||
1468 | case CS4231_HW_AD1845: return "AD1845"; | ||
1469 | default: return "???"; | ||
1470 | } | ||
1471 | } | ||
1472 | |||
1473 | static int snd_cs4231_new(snd_card_t * card, | ||
1474 | unsigned short hardware, | ||
1475 | unsigned short hwshare, | ||
1476 | cs4231_t ** rchip) | ||
1477 | { | ||
1478 | cs4231_t *chip; | ||
1479 | |||
1480 | *rchip = NULL; | ||
1481 | chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); | ||
1482 | if (chip == NULL) | ||
1483 | return -ENOMEM; | ||
1484 | chip->hardware = hardware; | ||
1485 | chip->hwshare = hwshare; | ||
1486 | |||
1487 | spin_lock_init(&chip->reg_lock); | ||
1488 | init_MUTEX(&chip->mce_mutex); | ||
1489 | init_MUTEX(&chip->open_mutex); | ||
1490 | chip->card = card; | ||
1491 | chip->rate_constraint = snd_cs4231_xrate; | ||
1492 | chip->set_playback_format = snd_cs4231_playback_format; | ||
1493 | chip->set_capture_format = snd_cs4231_capture_format; | ||
1494 | memcpy(&chip->image, &snd_cs4231_original_image, sizeof(snd_cs4231_original_image)); | ||
1495 | |||
1496 | *rchip = chip; | ||
1497 | return 0; | ||
1498 | } | ||
1499 | |||
1500 | #ifdef LEGACY_SUPPORT | ||
1501 | |||
1502 | int snd_cs4231_create(snd_card_t * card, | ||
1503 | unsigned long port, | ||
1504 | unsigned long cport, | ||
1505 | int irq, int dma1, int dma2, | ||
1506 | unsigned short hardware, | ||
1507 | unsigned short hwshare, | ||
1508 | cs4231_t ** rchip) | ||
1509 | { | ||
1510 | static snd_device_ops_t ops = { | ||
1511 | .dev_free = snd_cs4231_dev_free, | ||
1512 | }; | ||
1513 | cs4231_t *chip; | ||
1514 | int err; | ||
1515 | |||
1516 | err = snd_cs4231_new(card, hardware, hwshare, &chip); | ||
1517 | if (err < 0) | ||
1518 | return err; | ||
1519 | |||
1520 | chip->irq = -1; | ||
1521 | chip->dma1 = -1; | ||
1522 | chip->dma2 = -1; | ||
1523 | |||
1524 | if ((chip->res_port = request_region(port, 4, "CS4231")) == NULL) { | ||
1525 | snd_printk(KERN_ERR "cs4231: can't grab port 0x%lx\n", port); | ||
1526 | snd_cs4231_free(chip); | ||
1527 | return -EBUSY; | ||
1528 | } | ||
1529 | chip->port = port; | ||
1530 | if ((long)cport >= 0 && (chip->res_cport = request_region(cport, 8, "CS4232 Control")) == NULL) { | ||
1531 | snd_printk(KERN_ERR "cs4231: can't grab control port 0x%lx\n", cport); | ||
1532 | snd_cs4231_free(chip); | ||
1533 | return -ENODEV; | ||
1534 | } | ||
1535 | chip->cport = cport; | ||
1536 | if (!(hwshare & CS4231_HWSHARE_IRQ) && request_irq(irq, snd_cs4231_interrupt, SA_INTERRUPT, "CS4231", (void *) chip)) { | ||
1537 | snd_printk(KERN_ERR "cs4231: can't grab IRQ %d\n", irq); | ||
1538 | snd_cs4231_free(chip); | ||
1539 | return -EBUSY; | ||
1540 | } | ||
1541 | chip->irq = irq; | ||
1542 | if (!(hwshare & CS4231_HWSHARE_DMA1) && request_dma(dma1, "CS4231 - 1")) { | ||
1543 | snd_printk(KERN_ERR "cs4231: can't grab DMA1 %d\n", dma1); | ||
1544 | snd_cs4231_free(chip); | ||
1545 | return -EBUSY; | ||
1546 | } | ||
1547 | chip->dma1 = dma1; | ||
1548 | if (!(hwshare & CS4231_HWSHARE_DMA2) && dma1 != dma2 && dma2 >= 0 && request_dma(dma2, "CS4231 - 2")) { | ||
1549 | snd_printk(KERN_ERR "cs4231: can't grab DMA2 %d\n", dma2); | ||
1550 | snd_cs4231_free(chip); | ||
1551 | return -EBUSY; | ||
1552 | } | ||
1553 | if (dma1 == dma2 || dma2 < 0) { | ||
1554 | chip->single_dma = 1; | ||
1555 | chip->dma2 = chip->dma1; | ||
1556 | } else | ||
1557 | chip->dma2 = dma2; | ||
1558 | |||
1559 | /* global setup */ | ||
1560 | if (snd_cs4231_probe(chip) < 0) { | ||
1561 | snd_cs4231_free(chip); | ||
1562 | return -ENODEV; | ||
1563 | } | ||
1564 | snd_cs4231_init(chip); | ||
1565 | |||
1566 | if (chip->hardware & CS4231_HW_CS4232_MASK) { | ||
1567 | if (chip->res_cport == NULL) | ||
1568 | snd_printk("CS4232 control port features are not accessible\n"); | ||
1569 | } | ||
1570 | |||
1571 | /* Register device */ | ||
1572 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { | ||
1573 | snd_cs4231_free(chip); | ||
1574 | return err; | ||
1575 | } | ||
1576 | |||
1577 | #ifdef CONFIG_PM | ||
1578 | /* Power Management */ | ||
1579 | chip->suspend = snd_cs4231_suspend; | ||
1580 | chip->resume = snd_cs4231_resume; | ||
1581 | snd_card_set_isa_pm_callback(card, snd_cs4231_pm_suspend, snd_cs4231_pm_resume, chip); | ||
1582 | #endif | ||
1583 | |||
1584 | *rchip = chip; | ||
1585 | return 0; | ||
1586 | } | ||
1587 | |||
1588 | #endif /* LEGACY_SUPPORT */ | ||
1589 | |||
1590 | static snd_pcm_ops_t snd_cs4231_playback_ops = { | ||
1591 | .open = snd_cs4231_playback_open, | ||
1592 | .close = snd_cs4231_playback_close, | ||
1593 | .ioctl = snd_pcm_lib_ioctl, | ||
1594 | .hw_params = snd_cs4231_playback_hw_params, | ||
1595 | .hw_free = snd_cs4231_playback_hw_free, | ||
1596 | .prepare = snd_cs4231_playback_prepare, | ||
1597 | .trigger = snd_cs4231_trigger, | ||
1598 | .pointer = snd_cs4231_playback_pointer, | ||
1599 | }; | ||
1600 | |||
1601 | static snd_pcm_ops_t snd_cs4231_capture_ops = { | ||
1602 | .open = snd_cs4231_capture_open, | ||
1603 | .close = snd_cs4231_capture_close, | ||
1604 | .ioctl = snd_pcm_lib_ioctl, | ||
1605 | .hw_params = snd_cs4231_capture_hw_params, | ||
1606 | .hw_free = snd_cs4231_capture_hw_free, | ||
1607 | .prepare = snd_cs4231_capture_prepare, | ||
1608 | .trigger = snd_cs4231_trigger, | ||
1609 | .pointer = snd_cs4231_capture_pointer, | ||
1610 | }; | ||
1611 | |||
1612 | static void snd_cs4231_pcm_free(snd_pcm_t *pcm) | ||
1613 | { | ||
1614 | cs4231_t *chip = pcm->private_data; | ||
1615 | chip->pcm = NULL; | ||
1616 | snd_pcm_lib_preallocate_free_for_all(pcm); | ||
1617 | } | ||
1618 | |||
1619 | int snd_cs4231_pcm(cs4231_t *chip, int device, snd_pcm_t **rpcm) | ||
1620 | { | ||
1621 | snd_pcm_t *pcm; | ||
1622 | int err; | ||
1623 | |||
1624 | if ((err = snd_pcm_new(chip->card, "CS4231", device, 1, 1, &pcm)) < 0) | ||
1625 | return err; | ||
1626 | |||
1627 | spin_lock_init(&chip->reg_lock); | ||
1628 | init_MUTEX(&chip->mce_mutex); | ||
1629 | init_MUTEX(&chip->open_mutex); | ||
1630 | |||
1631 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs4231_playback_ops); | ||
1632 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs4231_capture_ops); | ||
1633 | |||
1634 | /* global setup */ | ||
1635 | pcm->private_data = chip; | ||
1636 | pcm->private_free = snd_cs4231_pcm_free; | ||
1637 | pcm->info_flags = 0; | ||
1638 | if (chip->single_dma) | ||
1639 | pcm->info_flags |= SNDRV_PCM_INFO_HALF_DUPLEX; | ||
1640 | if (chip->hardware != CS4231_HW_INTERWAVE) | ||
1641 | pcm->info_flags |= SNDRV_PCM_INFO_JOINT_DUPLEX; | ||
1642 | strcpy(pcm->name, snd_cs4231_chip_id(chip)); | ||
1643 | |||
1644 | #ifdef LEGACY_SUPPORT | ||
1645 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, | ||
1646 | snd_dma_isa_data(), | ||
1647 | 64*1024, chip->dma1 > 3 || chip->dma2 > 3 ? 128*1024 : 64*1024); | ||
1648 | #else | ||
1649 | # ifdef EBUS_SUPPORT | ||
1650 | if (chip->ebus_flag) { | ||
1651 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, | ||
1652 | chip->dev_u.pdev, | ||
1653 | 64*1024, 128*1024); | ||
1654 | } else { | ||
1655 | # endif | ||
1656 | # ifdef SBUS_SUPPORT | ||
1657 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_SBUS, | ||
1658 | chip->dev_u.sdev, | ||
1659 | 64*1024, 128*1024); | ||
1660 | # endif | ||
1661 | # ifdef EBUS_SUPPORT | ||
1662 | } | ||
1663 | # endif | ||
1664 | #endif | ||
1665 | |||
1666 | chip->pcm = pcm; | ||
1667 | if (rpcm) | ||
1668 | *rpcm = pcm; | ||
1669 | return 0; | ||
1670 | } | ||
1671 | |||
1672 | static void snd_cs4231_timer_free(snd_timer_t *timer) | ||
1673 | { | ||
1674 | cs4231_t *chip = timer->private_data; | ||
1675 | chip->timer = NULL; | ||
1676 | } | ||
1677 | |||
1678 | int snd_cs4231_timer(cs4231_t *chip, int device, snd_timer_t **rtimer) | ||
1679 | { | ||
1680 | snd_timer_t *timer; | ||
1681 | snd_timer_id_t tid; | ||
1682 | int err; | ||
1683 | |||
1684 | /* Timer initialization */ | ||
1685 | tid.dev_class = SNDRV_TIMER_CLASS_CARD; | ||
1686 | tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE; | ||
1687 | tid.card = chip->card->number; | ||
1688 | tid.device = device; | ||
1689 | tid.subdevice = 0; | ||
1690 | if ((err = snd_timer_new(chip->card, "CS4231", &tid, &timer)) < 0) | ||
1691 | return err; | ||
1692 | strcpy(timer->name, snd_cs4231_chip_id(chip)); | ||
1693 | timer->private_data = chip; | ||
1694 | timer->private_free = snd_cs4231_timer_free; | ||
1695 | timer->hw = snd_cs4231_timer_table; | ||
1696 | chip->timer = timer; | ||
1697 | if (rtimer) | ||
1698 | *rtimer = timer; | ||
1699 | return 0; | ||
1700 | } | ||
1701 | |||
1702 | /* | ||
1703 | * MIXER part | ||
1704 | */ | ||
1705 | |||
1706 | static int snd_cs4231_info_mux(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) | ||
1707 | { | ||
1708 | static char *texts[4] = { | ||
1709 | "Line", "Aux", "Mic", "Mix" | ||
1710 | }; | ||
1711 | static char *opl3sa_texts[4] = { | ||
1712 | "Line", "CD", "Mic", "Mix" | ||
1713 | }; | ||
1714 | static char *gusmax_texts[4] = { | ||
1715 | "Line", "Synth", "Mic", "Mix" | ||
1716 | }; | ||
1717 | char **ptexts = texts; | ||
1718 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1719 | |||
1720 | snd_assert(chip->card != NULL, return -EINVAL); | ||
1721 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
1722 | uinfo->count = 2; | ||
1723 | uinfo->value.enumerated.items = 4; | ||
1724 | if (uinfo->value.enumerated.item > 3) | ||
1725 | uinfo->value.enumerated.item = 3; | ||
1726 | if (!strcmp(chip->card->driver, "GUS MAX")) | ||
1727 | ptexts = gusmax_texts; | ||
1728 | switch (chip->hardware) { | ||
1729 | case CS4231_HW_INTERWAVE: ptexts = gusmax_texts; break; | ||
1730 | case CS4231_HW_OPL3SA2: ptexts = opl3sa_texts; break; | ||
1731 | } | ||
1732 | strcpy(uinfo->value.enumerated.name, ptexts[uinfo->value.enumerated.item]); | ||
1733 | return 0; | ||
1734 | } | ||
1735 | |||
1736 | static int snd_cs4231_get_mux(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1737 | { | ||
1738 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1739 | unsigned long flags; | ||
1740 | |||
1741 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1742 | ucontrol->value.enumerated.item[0] = (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6; | ||
1743 | ucontrol->value.enumerated.item[1] = (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6; | ||
1744 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1745 | return 0; | ||
1746 | } | ||
1747 | |||
1748 | static int snd_cs4231_put_mux(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1749 | { | ||
1750 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1751 | unsigned long flags; | ||
1752 | unsigned short left, right; | ||
1753 | int change; | ||
1754 | |||
1755 | if (ucontrol->value.enumerated.item[0] > 3 || | ||
1756 | ucontrol->value.enumerated.item[1] > 3) | ||
1757 | return -EINVAL; | ||
1758 | left = ucontrol->value.enumerated.item[0] << 6; | ||
1759 | right = ucontrol->value.enumerated.item[1] << 6; | ||
1760 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1761 | left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left; | ||
1762 | right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right; | ||
1763 | change = left != chip->image[CS4231_LEFT_INPUT] || | ||
1764 | right != chip->image[CS4231_RIGHT_INPUT]; | ||
1765 | snd_cs4231_out(chip, CS4231_LEFT_INPUT, left); | ||
1766 | snd_cs4231_out(chip, CS4231_RIGHT_INPUT, right); | ||
1767 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1768 | return change; | ||
1769 | } | ||
1770 | |||
1771 | int snd_cs4231_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) | ||
1772 | { | ||
1773 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
1774 | |||
1775 | uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; | ||
1776 | uinfo->count = 1; | ||
1777 | uinfo->value.integer.min = 0; | ||
1778 | uinfo->value.integer.max = mask; | ||
1779 | return 0; | ||
1780 | } | ||
1781 | |||
1782 | int snd_cs4231_get_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1783 | { | ||
1784 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1785 | unsigned long flags; | ||
1786 | int reg = kcontrol->private_value & 0xff; | ||
1787 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
1788 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
1789 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
1790 | |||
1791 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1792 | ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask; | ||
1793 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1794 | if (invert) | ||
1795 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
1796 | return 0; | ||
1797 | } | ||
1798 | |||
1799 | int snd_cs4231_put_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1800 | { | ||
1801 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1802 | unsigned long flags; | ||
1803 | int reg = kcontrol->private_value & 0xff; | ||
1804 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
1805 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
1806 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
1807 | int change; | ||
1808 | unsigned short val; | ||
1809 | |||
1810 | val = (ucontrol->value.integer.value[0] & mask); | ||
1811 | if (invert) | ||
1812 | val = mask - val; | ||
1813 | val <<= shift; | ||
1814 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1815 | val = (chip->image[reg] & ~(mask << shift)) | val; | ||
1816 | change = val != chip->image[reg]; | ||
1817 | snd_cs4231_out(chip, reg, val); | ||
1818 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1819 | return change; | ||
1820 | } | ||
1821 | |||
1822 | int snd_cs4231_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) | ||
1823 | { | ||
1824 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
1825 | |||
1826 | uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; | ||
1827 | uinfo->count = 2; | ||
1828 | uinfo->value.integer.min = 0; | ||
1829 | uinfo->value.integer.max = mask; | ||
1830 | return 0; | ||
1831 | } | ||
1832 | |||
1833 | int snd_cs4231_get_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1834 | { | ||
1835 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1836 | unsigned long flags; | ||
1837 | int left_reg = kcontrol->private_value & 0xff; | ||
1838 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
1839 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
1840 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
1841 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
1842 | int invert = (kcontrol->private_value >> 22) & 1; | ||
1843 | |||
1844 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1845 | ucontrol->value.integer.value[0] = (chip->image[left_reg] >> shift_left) & mask; | ||
1846 | ucontrol->value.integer.value[1] = (chip->image[right_reg] >> shift_right) & mask; | ||
1847 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1848 | if (invert) { | ||
1849 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
1850 | ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1]; | ||
1851 | } | ||
1852 | return 0; | ||
1853 | } | ||
1854 | |||
1855 | int snd_cs4231_put_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
1856 | { | ||
1857 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
1858 | unsigned long flags; | ||
1859 | int left_reg = kcontrol->private_value & 0xff; | ||
1860 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
1861 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
1862 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
1863 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
1864 | int invert = (kcontrol->private_value >> 22) & 1; | ||
1865 | int change; | ||
1866 | unsigned short val1, val2; | ||
1867 | |||
1868 | val1 = ucontrol->value.integer.value[0] & mask; | ||
1869 | val2 = ucontrol->value.integer.value[1] & mask; | ||
1870 | if (invert) { | ||
1871 | val1 = mask - val1; | ||
1872 | val2 = mask - val2; | ||
1873 | } | ||
1874 | val1 <<= shift_left; | ||
1875 | val2 <<= shift_right; | ||
1876 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
1877 | val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1; | ||
1878 | val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2; | ||
1879 | change = val1 != chip->image[left_reg] || val2 != chip->image[right_reg]; | ||
1880 | snd_cs4231_out(chip, left_reg, val1); | ||
1881 | snd_cs4231_out(chip, right_reg, val2); | ||
1882 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
1883 | return change; | ||
1884 | } | ||
1885 | |||
1886 | static snd_kcontrol_new_t snd_cs4231_controls[] = { | ||
1887 | CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), | ||
1888 | CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), | ||
1889 | CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), | ||
1890 | CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), | ||
1891 | CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), | ||
1892 | CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), | ||
1893 | CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | ||
1894 | CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), | ||
1895 | CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL, 7, 1, 1), | ||
1896 | CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1), | ||
1897 | CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, 6, 1, 1), | ||
1898 | CS4231_SINGLE("Mono Output Playback Bypass", 0, CS4231_MONO_CTRL, 5, 1, 0), | ||
1899 | CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0, 15, 0), | ||
1900 | { | ||
1901 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
1902 | .name = "Capture Source", | ||
1903 | .info = snd_cs4231_info_mux, | ||
1904 | .get = snd_cs4231_get_mux, | ||
1905 | .put = snd_cs4231_put_mux, | ||
1906 | }, | ||
1907 | CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, 1, 0), | ||
1908 | CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0), | ||
1909 | CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1) | ||
1910 | }; | ||
1911 | |||
1912 | int snd_cs4231_mixer(cs4231_t *chip) | ||
1913 | { | ||
1914 | snd_card_t *card; | ||
1915 | unsigned int idx; | ||
1916 | int err; | ||
1917 | |||
1918 | snd_assert(chip != NULL && chip->pcm != NULL, return -EINVAL); | ||
1919 | |||
1920 | card = chip->card; | ||
1921 | |||
1922 | strcpy(card->mixername, chip->pcm->name); | ||
1923 | |||
1924 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4231_controls); idx++) { | ||
1925 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cs4231_controls[idx], chip))) < 0) | ||
1926 | return err; | ||
1927 | } | ||
1928 | return 0; | ||
1929 | } | ||
1930 | |||
1931 | EXPORT_SYMBOL(snd_cs4231_out); | ||
1932 | EXPORT_SYMBOL(snd_cs4231_in); | ||
1933 | EXPORT_SYMBOL(snd_cs4236_ext_out); | ||
1934 | EXPORT_SYMBOL(snd_cs4236_ext_in); | ||
1935 | EXPORT_SYMBOL(snd_cs4231_mce_up); | ||
1936 | EXPORT_SYMBOL(snd_cs4231_mce_down); | ||
1937 | EXPORT_SYMBOL(snd_cs4231_interrupt); | ||
1938 | EXPORT_SYMBOL(snd_cs4231_chip_id); | ||
1939 | EXPORT_SYMBOL(snd_cs4231_create); | ||
1940 | EXPORT_SYMBOL(snd_cs4231_pcm); | ||
1941 | EXPORT_SYMBOL(snd_cs4231_mixer); | ||
1942 | EXPORT_SYMBOL(snd_cs4231_timer); | ||
1943 | EXPORT_SYMBOL(snd_cs4231_info_single); | ||
1944 | EXPORT_SYMBOL(snd_cs4231_get_single); | ||
1945 | EXPORT_SYMBOL(snd_cs4231_put_single); | ||
1946 | EXPORT_SYMBOL(snd_cs4231_info_double); | ||
1947 | EXPORT_SYMBOL(snd_cs4231_get_double); | ||
1948 | EXPORT_SYMBOL(snd_cs4231_put_double); | ||
1949 | |||
1950 | /* | ||
1951 | * INIT part | ||
1952 | */ | ||
1953 | |||
1954 | static int __init alsa_cs4231_init(void) | ||
1955 | { | ||
1956 | return 0; | ||
1957 | } | ||
1958 | |||
1959 | static void __exit alsa_cs4231_exit(void) | ||
1960 | { | ||
1961 | } | ||
1962 | |||
1963 | module_init(alsa_cs4231_init) | ||
1964 | module_exit(alsa_cs4231_exit) | ||
diff --git a/sound/isa/cs423x/cs4232.c b/sound/isa/cs423x/cs4232.c new file mode 100644 index 000000000000..9fad2e6c0c2c --- /dev/null +++ b/sound/isa/cs423x/cs4232.c | |||
@@ -0,0 +1,2 @@ | |||
1 | #define CS4232 | ||
2 | #include "cs4236.c" | ||
diff --git a/sound/isa/cs423x/cs4236.c b/sound/isa/cs423x/cs4236.c new file mode 100644 index 000000000000..e745a54e00a1 --- /dev/null +++ b/sound/isa/cs423x/cs4236.c | |||
@@ -0,0 +1,608 @@ | |||
1 | /* | ||
2 | * Driver for generic CS4232/CS4235/CS4236/CS4236B/CS4237B/CS4238B/CS4239 chips | ||
3 | * Copyright (c) by Jaroslav Kysela <perex@suse.cz> | ||
4 | * | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #include <sound/driver.h> | ||
23 | #include <linux/init.h> | ||
24 | #include <linux/slab.h> | ||
25 | #include <linux/pnp.h> | ||
26 | #include <linux/moduleparam.h> | ||
27 | #include <sound/core.h> | ||
28 | #include <sound/cs4231.h> | ||
29 | #include <sound/mpu401.h> | ||
30 | #include <sound/opl3.h> | ||
31 | #include <sound/initval.h> | ||
32 | |||
33 | MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); | ||
34 | MODULE_LICENSE("GPL"); | ||
35 | #ifdef CS4232 | ||
36 | MODULE_DESCRIPTION("Cirrus Logic CS4232"); | ||
37 | MODULE_SUPPORTED_DEVICE("{{Turtle Beach,TBS-2000}," | ||
38 | "{Turtle Beach,Tropez Plus}," | ||
39 | "{SIC CrystalWave 32}," | ||
40 | "{Hewlett Packard,Omnibook 5500}," | ||
41 | "{TerraTec,Maestro 32/96}," | ||
42 | "{Philips,PCA70PS}}"); | ||
43 | #else | ||
44 | MODULE_DESCRIPTION("Cirrus Logic CS4235-9"); | ||
45 | MODULE_SUPPORTED_DEVICE("{{Crystal Semiconductors,CS4235}," | ||
46 | "{Crystal Semiconductors,CS4236}," | ||
47 | "{Crystal Semiconductors,CS4237}," | ||
48 | "{Crystal Semiconductors,CS4238}," | ||
49 | "{Crystal Semiconductors,CS4239}," | ||
50 | "{Acer,AW37}," | ||
51 | "{Acer,AW35/Pro}," | ||
52 | "{Crystal,3D}," | ||
53 | "{Crystal Computer,TidalWave128}," | ||
54 | "{Dell,Optiplex GX1}," | ||
55 | "{Dell,Workstation 400 sound}," | ||
56 | "{EliteGroup,P5TX-LA sound}," | ||
57 | "{Gallant,SC-70P}," | ||
58 | "{Gateway,E1000 Onboard CS4236B}," | ||
59 | "{Genius,Sound Maker 3DJ}," | ||
60 | "{Hewlett Packard,HP6330 sound}," | ||
61 | "{IBM,PC 300PL sound}," | ||
62 | "{IBM,Aptiva 2137 E24}," | ||
63 | "{IBM,IntelliStation M Pro}," | ||
64 | "{Intel,Marlin Spike Mobo CS4235}," | ||
65 | "{Intel PR440FX Onboard}," | ||
66 | "{Guillemot,MaxiSound 16 PnP}," | ||
67 | "{NewClear,3D}," | ||
68 | "{TerraTec,AudioSystem EWS64L/XL}," | ||
69 | "{Typhoon Soundsystem,CS4236B}," | ||
70 | "{Turtle Beach,Malibu}," | ||
71 | "{Unknown,Digital PC 5000 Onboard}}"); | ||
72 | #endif | ||
73 | |||
74 | #ifdef CS4232 | ||
75 | #define IDENT "CS4232" | ||
76 | #else | ||
77 | #define IDENT "CS4236+" | ||
78 | #endif | ||
79 | |||
80 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ | ||
81 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | ||
82 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ | ||
83 | #ifdef CONFIG_PNP | ||
84 | static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; | ||
85 | #endif | ||
86 | static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
87 | static long cport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
88 | static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* PnP setup */ | ||
89 | static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
90 | static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ | ||
91 | static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ | ||
92 | static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */ | ||
93 | static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ | ||
94 | static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ | ||
95 | |||
96 | module_param_array(index, int, NULL, 0444); | ||
97 | MODULE_PARM_DESC(index, "Index value for " IDENT " soundcard."); | ||
98 | module_param_array(id, charp, NULL, 0444); | ||
99 | MODULE_PARM_DESC(id, "ID string for " IDENT " soundcard."); | ||
100 | module_param_array(enable, bool, NULL, 0444); | ||
101 | MODULE_PARM_DESC(enable, "Enable " IDENT " soundcard."); | ||
102 | #ifdef CONFIG_PNP | ||
103 | module_param_array(isapnp, bool, NULL, 0444); | ||
104 | MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); | ||
105 | #endif | ||
106 | module_param_array(port, long, NULL, 0444); | ||
107 | MODULE_PARM_DESC(port, "Port # for " IDENT " driver."); | ||
108 | module_param_array(cport, long, NULL, 0444); | ||
109 | MODULE_PARM_DESC(cport, "Control port # for " IDENT " driver."); | ||
110 | module_param_array(mpu_port, long, NULL, 0444); | ||
111 | MODULE_PARM_DESC(mpu_port, "MPU-401 port # for " IDENT " driver."); | ||
112 | module_param_array(fm_port, long, NULL, 0444); | ||
113 | MODULE_PARM_DESC(fm_port, "FM port # for " IDENT " driver."); | ||
114 | module_param_array(sb_port, long, NULL, 0444); | ||
115 | MODULE_PARM_DESC(sb_port, "SB port # for " IDENT " driver (optional)."); | ||
116 | module_param_array(irq, int, NULL, 0444); | ||
117 | MODULE_PARM_DESC(irq, "IRQ # for " IDENT " driver."); | ||
118 | module_param_array(mpu_irq, int, NULL, 0444); | ||
119 | MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for " IDENT " driver."); | ||
120 | module_param_array(dma1, int, NULL, 0444); | ||
121 | MODULE_PARM_DESC(dma1, "DMA1 # for " IDENT " driver."); | ||
122 | module_param_array(dma2, int, NULL, 0444); | ||
123 | MODULE_PARM_DESC(dma2, "DMA2 # for " IDENT " driver."); | ||
124 | |||
125 | struct snd_card_cs4236 { | ||
126 | struct resource *res_sb_port; | ||
127 | #ifdef CONFIG_PNP | ||
128 | struct pnp_dev *wss; | ||
129 | struct pnp_dev *ctrl; | ||
130 | struct pnp_dev *mpu; | ||
131 | #endif | ||
132 | }; | ||
133 | |||
134 | static snd_card_t *snd_cs4236_legacy[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; | ||
135 | |||
136 | #ifdef CONFIG_PNP | ||
137 | |||
138 | #define ISAPNP_CS4232(_va, _vb, _vc, _device, _wss, _ctrl, _mpu401) \ | ||
139 | { \ | ||
140 | ISAPNP_CARD_ID(_va, _vb, _vc, _device), \ | ||
141 | .devs = { ISAPNP_DEVICE_ID(_va, _vb, _vc, _wss), \ | ||
142 | ISAPNP_DEVICE_ID(_va, _vb, _vc, _ctrl), \ | ||
143 | ISAPNP_DEVICE_ID(_va, _vb, _vc, _mpu401) } \ | ||
144 | } | ||
145 | #define ISAPNP_CS4232_1(_va, _vb, _vc, _device, _wss, _ctrl, _mpu401) \ | ||
146 | { \ | ||
147 | ISAPNP_CARD_ID(_va, _vb, _vc, _device), \ | ||
148 | .devs = { ISAPNP_DEVICE_ID(_va, _vb, _vc, _wss), \ | ||
149 | ISAPNP_DEVICE_ID(_va, _vb, _vc, _ctrl), \ | ||
150 | ISAPNP_DEVICE_ID('P', 'N', 'P', _mpu401) } \ | ||
151 | } | ||
152 | #define ISAPNP_CS4232_WOMPU(_va, _vb, _vc, _device, _wss, _ctrl) \ | ||
153 | { \ | ||
154 | ISAPNP_CARD_ID(_va, _vb, _vc, _device), \ | ||
155 | .devs = { ISAPNP_DEVICE_ID(_va, _vb, _vc, _wss), \ | ||
156 | ISAPNP_DEVICE_ID(_va, _vb, _vc, _ctrl) } \ | ||
157 | } | ||
158 | |||
159 | |||
160 | #ifdef CS4232 | ||
161 | static struct pnp_card_device_id snd_cs423x_pnpids[] = { | ||
162 | /* Philips PCA70PS */ | ||
163 | { .id = "CSC0d32", .devs = { { "CSC0000" }, { "CSC0010" }, { "PNPb006" } } }, | ||
164 | /* TerraTec Maestro 32/96 (CS4232) */ | ||
165 | { .id = "CSC1a32", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
166 | /* HP Omnibook 5500 onboard */ | ||
167 | { .id = "CSC4232", .devs = { { "CSC0000" }, { "CSC0002" }, { "CSC0003" } } }, | ||
168 | /* Unnamed CS4236 card (Made in Taiwan) */ | ||
169 | { .id = "CSC4236", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
170 | /* Turtle Beach TBS-2000 (CS4232) */ | ||
171 | { .id = "CSC7532", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSCb006" } } }, | ||
172 | /* Turtle Beach Tropez Plus (CS4232) */ | ||
173 | { .id = "CSC7632", .devs = { { "CSC0000" }, { "CSC0010" }, { "PNPb006" } } }, | ||
174 | /* SIC CrystalWave 32 (CS4232) */ | ||
175 | { .id = "CSCf032", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
176 | /* --- */ | ||
177 | { .id = "" } /* end */ | ||
178 | }; | ||
179 | #else /* CS4236 */ | ||
180 | static struct pnp_card_device_id snd_cs423x_pnpids[] = { | ||
181 | /* Intel Marlin Spike Motherboard - CS4235 */ | ||
182 | { .id = "CSC0225", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
183 | /* Intel Marlin Spike Motherboard (#2) - CS4235 */ | ||
184 | { .id = "CSC0225", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC0103" } } }, | ||
185 | /* Unknown Intel mainboard - CS4235 */ | ||
186 | { .id = "CSC0225", .devs = { { "CSC0100" }, { "CSC0110" } } }, | ||
187 | /* Genius Sound Maker 3DJ - CS4237B */ | ||
188 | { .id = "CSC0437", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
189 | /* Digital PC 5000 Onboard - CS4236B */ | ||
190 | { .id = "CSC0735", .devs = { { "CSC0000" }, { "CSC0010" } } }, | ||
191 | /* some uknown CS4236B */ | ||
192 | { .id = "CSC0b35", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
193 | /* Intel PR440FX Onboard sound */ | ||
194 | { .id = "CSC0b36", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
195 | /* CS4235 on mainboard without MPU */ | ||
196 | { .id = "CSC1425", .devs = { { "CSC0100" }, { "CSC0110" } } }, | ||
197 | /* Gateway E1000 Onboard CS4236B */ | ||
198 | { .id = "CSC1335", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
199 | /* HP 6330 Onboard sound */ | ||
200 | { .id = "CSC1525", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC0103" } } }, | ||
201 | /* Crystal Computer TidalWave128 */ | ||
202 | { .id = "CSC1e37", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
203 | /* ACER AW37 - CS4235 */ | ||
204 | { .id = "CSC4236", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
205 | /* build-in soundcard in EliteGroup P5TX-LA motherboard - CS4237B */ | ||
206 | { .id = "CSC4237", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
207 | /* Crystal 3D - CS4237B */ | ||
208 | { .id = "CSC4336", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
209 | /* Typhoon Soundsystem PnP - CS4236B */ | ||
210 | { .id = "CSC4536", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
211 | /* Crystal CX4235-XQ3 EP - CS4235 */ | ||
212 | { .id = "CSC4625", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC0103" } } }, | ||
213 | /* Crystal Semiconductors CS4237B */ | ||
214 | { .id = "CSC4637", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
215 | /* NewClear 3D - CX4237B-XQ3 */ | ||
216 | { .id = "CSC4837", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
217 | /* Dell Optiplex GX1 - CS4236B */ | ||
218 | { .id = "CSC6835", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
219 | /* Dell P410 motherboard - CS4236B */ | ||
220 | { .id = "CSC6835", .devs = { { "CSC0000" }, { "CSC0010" } } }, | ||
221 | /* Dell Workstation 400 Onboard - CS4236B */ | ||
222 | { .id = "CSC6836", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
223 | /* Turtle Beach Malibu - CS4237B */ | ||
224 | { .id = "CSC7537", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
225 | /* CS4235 - onboard */ | ||
226 | { .id = "CSC8025", .devs = { { "CSC0100" }, { "CSC0110" }, { "CSC0103" } } }, | ||
227 | /* IBM Aptiva 2137 E24 Onboard - CS4237B */ | ||
228 | { .id = "CSC8037", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
229 | /* IBM IntelliStation M Pro motherboard */ | ||
230 | { .id = "CSCc835", .devs = { { "CSC0000" }, { "CSC0010" } } }, | ||
231 | /* Guillemot MaxiSound 16 PnP - CS4236B */ | ||
232 | { .id = "CSC9836", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
233 | /* Gallant SC-70P */ | ||
234 | { .id = "CSC9837", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
235 | /* TerraTec AudioSystem EWS64XL - CS4236B */ | ||
236 | { .id = "CSCa836", .devs = { { "CSCa800" }, { "CSCa810" }, { "CSCa803" } } }, | ||
237 | /* TerraTec AudioSystem EWS64XL - CS4236B */ | ||
238 | { .id = "CSCa836", .devs = { { "CSCa800" }, { "CSCa810" } } }, | ||
239 | /* ACER AW37/Pro - CS4235 */ | ||
240 | { .id = "CSCd925", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
241 | /* ACER AW35/Pro - CS4237B */ | ||
242 | { .id = "CSCd937", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
243 | /* CS4235 without MPU401 */ | ||
244 | { .id = "CSCe825", .devs = { { "CSC0100" }, { "CSC0110" } } }, | ||
245 | /* Unknown SiS530 - CS4235 */ | ||
246 | { .id = "CSC4825", .devs = { { "CSC0100" }, { "CSC0110" } } }, | ||
247 | /* IBM IntelliStation M Pro 6898 11U - CS4236B */ | ||
248 | { .id = "CSCe835", .devs = { { "CSC0000" }, { "CSC0010" } } }, | ||
249 | /* IBM PC 300PL Onboard - CS4236B */ | ||
250 | { .id = "CSCe836", .devs = { { "CSC0000" }, { "CSC0010" } } }, | ||
251 | /* Some noname CS4236 based card */ | ||
252 | { .id = "CSCe936", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
253 | /* CS4236B */ | ||
254 | { .id = "CSCf235", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
255 | /* CS4236B */ | ||
256 | { .id = "CSCf238", .devs = { { "CSC0000" }, { "CSC0010" }, { "CSC0003" } } }, | ||
257 | /* --- */ | ||
258 | { .id = "" } /* end */ | ||
259 | }; | ||
260 | #endif | ||
261 | |||
262 | MODULE_DEVICE_TABLE(pnp_card, snd_cs423x_pnpids); | ||
263 | |||
264 | static int __devinit snd_card_cs4236_pnp(int dev, struct snd_card_cs4236 *acard, | ||
265 | struct pnp_card_link *card, | ||
266 | const struct pnp_card_device_id *id) | ||
267 | { | ||
268 | struct pnp_dev *pdev; | ||
269 | struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL); | ||
270 | int err; | ||
271 | |||
272 | if (!cfg) | ||
273 | return -ENOMEM; | ||
274 | |||
275 | acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL); | ||
276 | if (acard->wss == NULL) { | ||
277 | kfree(cfg); | ||
278 | return -EBUSY; | ||
279 | } | ||
280 | acard->ctrl = pnp_request_card_device(card, id->devs[1].id, NULL); | ||
281 | if (acard->ctrl == NULL) { | ||
282 | kfree(cfg); | ||
283 | return -EBUSY; | ||
284 | } | ||
285 | if (id->devs[2].id[0]) { | ||
286 | acard->mpu = pnp_request_card_device(card, id->devs[2].id, NULL); | ||
287 | if (acard->mpu == NULL) { | ||
288 | kfree(cfg); | ||
289 | return -EBUSY; | ||
290 | } | ||
291 | } | ||
292 | |||
293 | /* WSS initialization */ | ||
294 | pdev = acard->wss; | ||
295 | pnp_init_resource_table(cfg); | ||
296 | if (port[dev] != SNDRV_AUTO_PORT) | ||
297 | pnp_resource_change(&cfg->port_resource[0], port[dev], 4); | ||
298 | if (fm_port[dev] != SNDRV_AUTO_PORT && fm_port[dev] > 0) | ||
299 | pnp_resource_change(&cfg->port_resource[1], fm_port[dev], 4); | ||
300 | if (sb_port[dev] != SNDRV_AUTO_PORT) | ||
301 | pnp_resource_change(&cfg->port_resource[2], sb_port[dev], 16); | ||
302 | if (irq[dev] != SNDRV_AUTO_IRQ) | ||
303 | pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1); | ||
304 | if (dma1[dev] != SNDRV_AUTO_DMA) | ||
305 | pnp_resource_change(&cfg->dma_resource[0], dma1[dev], 1); | ||
306 | if (dma2[dev] != SNDRV_AUTO_DMA) | ||
307 | pnp_resource_change(&cfg->dma_resource[1], dma2[dev] < 0 ? 4 : dma2[dev], 1); | ||
308 | err = pnp_manual_config_dev(pdev, cfg, 0); | ||
309 | if (err < 0) | ||
310 | snd_printk(KERN_ERR IDENT " WSS PnP manual resources are invalid, using auto config\n"); | ||
311 | err = pnp_activate_dev(pdev); | ||
312 | if (err < 0) { | ||
313 | kfree(cfg); | ||
314 | printk(KERN_ERR IDENT " WSS PnP configure failed for WSS (out of resources?)\n"); | ||
315 | return -EBUSY; | ||
316 | } | ||
317 | port[dev] = pnp_port_start(pdev, 0); | ||
318 | if (fm_port[dev] > 0) | ||
319 | fm_port[dev] = pnp_port_start(pdev, 1); | ||
320 | sb_port[dev] = pnp_port_start(pdev, 2); | ||
321 | irq[dev] = pnp_irq(pdev, 0); | ||
322 | dma1[dev] = pnp_dma(pdev, 0); | ||
323 | dma2[dev] = pnp_dma(pdev, 1) == 4 ? -1 : (int)pnp_dma(pdev, 1); | ||
324 | snd_printdd("isapnp WSS: wss port=0x%lx, fm port=0x%lx, sb port=0x%lx\n", | ||
325 | port[dev], fm_port[dev], sb_port[dev]); | ||
326 | snd_printdd("isapnp WSS: irq=%i, dma1=%i, dma2=%i\n", | ||
327 | irq[dev], dma1[dev], dma2[dev]); | ||
328 | /* CTRL initialization */ | ||
329 | if (acard->ctrl && cport[dev] > 0) { | ||
330 | pdev = acard->ctrl; | ||
331 | pnp_init_resource_table(cfg); | ||
332 | if (cport[dev] != SNDRV_AUTO_PORT) | ||
333 | pnp_resource_change(&cfg->port_resource[0], cport[dev], 8); | ||
334 | err = pnp_manual_config_dev(pdev, cfg, 0); | ||
335 | if (err < 0) | ||
336 | snd_printk(KERN_ERR IDENT " CTRL PnP manual resources are invalid, using auto config\n"); | ||
337 | err = pnp_activate_dev(pdev); | ||
338 | if (err < 0) { | ||
339 | kfree(cfg); | ||
340 | printk(KERN_ERR IDENT " CTRL PnP configure failed for WSS (out of resources?)\n"); | ||
341 | return -EBUSY; | ||
342 | } | ||
343 | cport[dev] = pnp_port_start(pdev, 0); | ||
344 | snd_printdd("isapnp CTRL: control port=0x%lx\n", cport[dev]); | ||
345 | } | ||
346 | /* MPU initialization */ | ||
347 | if (acard->mpu && mpu_port[dev] > 0) { | ||
348 | pdev = acard->mpu; | ||
349 | pnp_init_resource_table(cfg); | ||
350 | if (mpu_port[dev] != SNDRV_AUTO_PORT) | ||
351 | pnp_resource_change(&cfg->port_resource[0], mpu_port[dev], 2); | ||
352 | if (mpu_irq[dev] != SNDRV_AUTO_IRQ && mpu_irq[dev] >= 0 && | ||
353 | pnp_irq_valid(pdev, 0)) | ||
354 | pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1); | ||
355 | err = pnp_manual_config_dev(pdev, cfg, 0); | ||
356 | if (err < 0) | ||
357 | snd_printk(KERN_ERR IDENT " MPU401 PnP manual resources are invalid, using auto config\n"); | ||
358 | err = pnp_activate_dev(pdev); | ||
359 | if (err < 0) { | ||
360 | printk(KERN_ERR IDENT " MPU401 PnP configure failed for WSS (out of resources?)\n"); | ||
361 | mpu_port[dev] = SNDRV_AUTO_PORT; | ||
362 | mpu_irq[dev] = SNDRV_AUTO_IRQ; | ||
363 | } else { | ||
364 | mpu_port[dev] = pnp_port_start(pdev, 0); | ||
365 | if (mpu_irq[dev] >= 0 && | ||
366 | pnp_irq_valid(pdev, 0) && pnp_irq(pdev, 0) >= 0) { | ||
367 | mpu_irq[dev] = pnp_irq(pdev, 0); | ||
368 | } else { | ||
369 | mpu_irq[dev] = -1; /* disable interrupt */ | ||
370 | } | ||
371 | } | ||
372 | snd_printdd("isapnp MPU: port=0x%lx, irq=%i\n", mpu_port[dev], mpu_irq[dev]); | ||
373 | } | ||
374 | kfree(cfg); | ||
375 | return 0; | ||
376 | } | ||
377 | #endif /* CONFIG_PNP */ | ||
378 | |||
379 | static void snd_card_cs4236_free(snd_card_t *card) | ||
380 | { | ||
381 | struct snd_card_cs4236 *acard = (struct snd_card_cs4236 *)card->private_data; | ||
382 | |||
383 | if (acard) { | ||
384 | if (acard->res_sb_port) { | ||
385 | release_resource(acard->res_sb_port); | ||
386 | kfree_nocheck(acard->res_sb_port); | ||
387 | } | ||
388 | } | ||
389 | } | ||
390 | |||
391 | static int __devinit snd_card_cs423x_probe(int dev, struct pnp_card_link *pcard, | ||
392 | const struct pnp_card_device_id *pid) | ||
393 | { | ||
394 | snd_card_t *card; | ||
395 | struct snd_card_cs4236 *acard; | ||
396 | snd_pcm_t *pcm = NULL; | ||
397 | cs4231_t *chip; | ||
398 | opl3_t *opl3; | ||
399 | int err; | ||
400 | |||
401 | #ifdef CONFIG_PNP | ||
402 | if (!isapnp[dev]) { | ||
403 | #endif | ||
404 | if (port[dev] == SNDRV_AUTO_PORT) { | ||
405 | snd_printk("specify port\n"); | ||
406 | return -EINVAL; | ||
407 | } | ||
408 | if (cport[dev] == SNDRV_AUTO_PORT) { | ||
409 | snd_printk("specify cport\n"); | ||
410 | return -EINVAL; | ||
411 | } | ||
412 | #ifdef CONFIG_PNP | ||
413 | } | ||
414 | #endif | ||
415 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, | ||
416 | sizeof(struct snd_card_cs4236)); | ||
417 | if (card == NULL) | ||
418 | return -ENOMEM; | ||
419 | acard = (struct snd_card_cs4236 *)card->private_data; | ||
420 | card->private_free = snd_card_cs4236_free; | ||
421 | #ifdef CONFIG_PNP | ||
422 | if (isapnp[dev]) { | ||
423 | if ((err = snd_card_cs4236_pnp(dev, acard, pcard, pid))<0) { | ||
424 | printk(KERN_ERR "isapnp detection failed and probing for " IDENT " is not supported\n"); | ||
425 | snd_card_free(card); | ||
426 | return -ENXIO; | ||
427 | } | ||
428 | snd_card_set_dev(card, &pcard->card->dev); | ||
429 | } | ||
430 | #endif | ||
431 | if (sb_port[dev] > 0 && sb_port[dev] != SNDRV_AUTO_PORT) | ||
432 | if ((acard->res_sb_port = request_region(sb_port[dev], 16, IDENT " SB")) == NULL) { | ||
433 | printk(KERN_ERR IDENT ": unable to register SB port at 0x%lx\n", sb_port[dev]); | ||
434 | snd_card_free(card); | ||
435 | return -ENOMEM; | ||
436 | } | ||
437 | |||
438 | #ifdef CS4232 | ||
439 | if ((err = snd_cs4231_create(card, | ||
440 | port[dev], | ||
441 | cport[dev], | ||
442 | irq[dev], | ||
443 | dma1[dev], | ||
444 | dma2[dev], | ||
445 | CS4231_HW_DETECT, | ||
446 | 0, | ||
447 | &chip)) < 0) { | ||
448 | snd_card_free(card); | ||
449 | return err; | ||
450 | } | ||
451 | if ((err = snd_cs4231_pcm(chip, 0, &pcm)) < 0) { | ||
452 | snd_card_free(card); | ||
453 | return err; | ||
454 | } | ||
455 | if ((err = snd_cs4231_mixer(chip)) < 0) { | ||
456 | snd_card_free(card); | ||
457 | return err; | ||
458 | } | ||
459 | |||
460 | #else /* CS4236 */ | ||
461 | if ((err = snd_cs4236_create(card, | ||
462 | port[dev], | ||
463 | cport[dev], | ||
464 | irq[dev], | ||
465 | dma1[dev], | ||
466 | dma2[dev], | ||
467 | CS4231_HW_DETECT, | ||
468 | 0, | ||
469 | &chip)) < 0) { | ||
470 | snd_card_free(card); | ||
471 | return err; | ||
472 | } | ||
473 | if ((err = snd_cs4236_pcm(chip, 0, &pcm)) < 0) { | ||
474 | snd_card_free(card); | ||
475 | return err; | ||
476 | } | ||
477 | if ((err = snd_cs4236_mixer(chip)) < 0) { | ||
478 | snd_card_free(card); | ||
479 | return err; | ||
480 | } | ||
481 | #endif | ||
482 | strcpy(card->driver, pcm->name); | ||
483 | strcpy(card->shortname, pcm->name); | ||
484 | sprintf(card->longname, "%s at 0x%lx, irq %i, dma %i", | ||
485 | pcm->name, | ||
486 | chip->port, | ||
487 | irq[dev], | ||
488 | dma1[dev]); | ||
489 | if (dma2[dev] >= 0) | ||
490 | sprintf(card->longname + strlen(card->longname), "&%d", dma2[dev]); | ||
491 | |||
492 | if ((err = snd_cs4231_timer(chip, 0, NULL)) < 0) { | ||
493 | snd_card_free(card); | ||
494 | return err; | ||
495 | } | ||
496 | |||
497 | if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) { | ||
498 | if (snd_opl3_create(card, | ||
499 | fm_port[dev], fm_port[dev] + 2, | ||
500 | OPL3_HW_OPL3_CS, 0, &opl3) < 0) { | ||
501 | printk(KERN_ERR IDENT ": OPL3 not detected\n"); | ||
502 | } else { | ||
503 | if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) { | ||
504 | snd_card_free(card); | ||
505 | return err; | ||
506 | } | ||
507 | } | ||
508 | } | ||
509 | |||
510 | if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) { | ||
511 | if (mpu_irq[dev] == SNDRV_AUTO_IRQ) | ||
512 | mpu_irq[dev] = -1; | ||
513 | if (snd_mpu401_uart_new(card, 0, MPU401_HW_CS4232, | ||
514 | mpu_port[dev], 0, | ||
515 | mpu_irq[dev], | ||
516 | mpu_irq[dev] >= 0 ? SA_INTERRUPT : 0, NULL) < 0) | ||
517 | printk(KERN_ERR IDENT ": MPU401 not detected\n"); | ||
518 | } | ||
519 | if ((err = snd_card_register(card)) < 0) { | ||
520 | snd_card_free(card); | ||
521 | return err; | ||
522 | } | ||
523 | if (pcard) | ||
524 | pnp_set_card_drvdata(pcard, card); | ||
525 | else | ||
526 | snd_cs4236_legacy[dev] = card; | ||
527 | return 0; | ||
528 | } | ||
529 | |||
530 | #ifdef CONFIG_PNP | ||
531 | static int __devinit snd_cs423x_pnp_detect(struct pnp_card_link *card, | ||
532 | const struct pnp_card_device_id *id) | ||
533 | { | ||
534 | static int dev; | ||
535 | int res; | ||
536 | |||
537 | for ( ; dev < SNDRV_CARDS; dev++) { | ||
538 | if (!enable[dev] || !isapnp[dev]) | ||
539 | continue; | ||
540 | res = snd_card_cs423x_probe(dev, card, id); | ||
541 | if (res < 0) | ||
542 | return res; | ||
543 | dev++; | ||
544 | return 0; | ||
545 | } | ||
546 | return -ENODEV; | ||
547 | } | ||
548 | |||
549 | static void __devexit snd_cs423x_pnp_remove(struct pnp_card_link * pcard) | ||
550 | { | ||
551 | snd_card_t *card = (snd_card_t *) pnp_get_card_drvdata(pcard); | ||
552 | |||
553 | snd_card_disconnect(card); | ||
554 | snd_card_free_in_thread(card); | ||
555 | } | ||
556 | |||
557 | static struct pnp_card_driver cs423x_pnpc_driver = { | ||
558 | .flags = PNP_DRIVER_RES_DISABLE, | ||
559 | .name = "cs423x", | ||
560 | .id_table = snd_cs423x_pnpids, | ||
561 | .probe = snd_cs423x_pnp_detect, | ||
562 | .remove = __devexit_p(snd_cs423x_pnp_remove), | ||
563 | }; | ||
564 | #endif /* CONFIG_PNP */ | ||
565 | |||
566 | static int __init alsa_card_cs423x_init(void) | ||
567 | { | ||
568 | int dev, cards = 0; | ||
569 | |||
570 | for (dev = 0; dev < SNDRV_CARDS; dev++) { | ||
571 | if (!enable[dev]) | ||
572 | continue; | ||
573 | #ifdef CONFIG_PNP | ||
574 | if (isapnp[dev]) | ||
575 | continue; | ||
576 | #endif | ||
577 | if (snd_card_cs423x_probe(dev, NULL, NULL) >= 0) | ||
578 | cards++; | ||
579 | } | ||
580 | #ifdef CONFIG_PNP | ||
581 | cards += pnp_register_card_driver(&cs423x_pnpc_driver); | ||
582 | #endif | ||
583 | if (!cards) { | ||
584 | #ifdef CONFIG_PNP | ||
585 | pnp_unregister_card_driver(&cs423x_pnpc_driver); | ||
586 | #endif | ||
587 | #ifdef MODULE | ||
588 | printk(KERN_ERR IDENT " soundcard not found or device busy\n"); | ||
589 | #endif | ||
590 | return -ENODEV; | ||
591 | } | ||
592 | return 0; | ||
593 | } | ||
594 | |||
595 | static void __exit alsa_card_cs423x_exit(void) | ||
596 | { | ||
597 | int idx; | ||
598 | |||
599 | #ifdef CONFIG_PNP | ||
600 | /* PnP cards first */ | ||
601 | pnp_unregister_card_driver(&cs423x_pnpc_driver); | ||
602 | #endif | ||
603 | for (idx = 0; idx < SNDRV_CARDS; idx++) | ||
604 | snd_card_free(snd_cs4236_legacy[idx]); | ||
605 | } | ||
606 | |||
607 | module_init(alsa_card_cs423x_init) | ||
608 | module_exit(alsa_card_cs423x_exit) | ||
diff --git a/sound/isa/cs423x/cs4236_lib.c b/sound/isa/cs423x/cs4236_lib.c new file mode 100644 index 000000000000..2128d4bdef41 --- /dev/null +++ b/sound/isa/cs423x/cs4236_lib.c | |||
@@ -0,0 +1,970 @@ | |||
1 | /* | ||
2 | * Copyright (c) by Jaroslav Kysela <perex@suse.cz> | ||
3 | * Routines for control of CS4235/4236B/4237B/4238B/4239 chips | ||
4 | * | ||
5 | * Note: | ||
6 | * ----- | ||
7 | * | ||
8 | * Bugs: | ||
9 | * ----- | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License as published by | ||
13 | * the Free Software Foundation; either version 2 of the License, or | ||
14 | * (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 of | ||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
19 | * GNU General Public License for more details. | ||
20 | * | ||
21 | * You should have received a copy of the GNU General Public License | ||
22 | * along with this program; if not, write to the Free Software | ||
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
24 | * | ||
25 | */ | ||
26 | |||
27 | /* | ||
28 | * Indirect control registers (CS4236B+) | ||
29 | * | ||
30 | * C0 | ||
31 | * D8: WSS reset (all chips) | ||
32 | * | ||
33 | * C1 (all chips except CS4236) | ||
34 | * D7-D5: version | ||
35 | * D4-D0: chip id | ||
36 | * 11101 - CS4235 | ||
37 | * 01011 - CS4236B | ||
38 | * 01000 - CS4237B | ||
39 | * 01001 - CS4238B | ||
40 | * 11110 - CS4239 | ||
41 | * | ||
42 | * C2 | ||
43 | * D7-D4: 3D Space (CS4235,CS4237B,CS4238B,CS4239) | ||
44 | * D3-D0: 3D Center (CS4237B); 3D Volume (CS4238B) | ||
45 | * | ||
46 | * C3 | ||
47 | * D7: 3D Enable (CS4237B) | ||
48 | * D6: 3D Mono Enable (CS4237B) | ||
49 | * D5: 3D Serial Output (CS4237B,CS4238B) | ||
50 | * D4: 3D Enable (CS4235,CS4238B,CS4239) | ||
51 | * | ||
52 | * C4 | ||
53 | * D7: consumer serial port enable (CS4237B,CS4238B) | ||
54 | * D6: channels status block reset (CS4237B,CS4238B) | ||
55 | * D5: user bit in sub-frame of digital audio data (CS4237B,CS4238B) | ||
56 | * D4: validity bit bit in sub-frame of digital audio data (CS4237B,CS4238B) | ||
57 | * | ||
58 | * C5 lower channel status (digital serial data description) (CS4237B,CS4238B) | ||
59 | * D7-D6: first two bits of category code | ||
60 | * D5: lock | ||
61 | * D4-D3: pre-emphasis (0 = none, 1 = 50/15us) | ||
62 | * D2: copy/copyright (0 = copy inhibited) | ||
63 | * D1: 0 = digital audio / 1 = non-digital audio | ||
64 | * | ||
65 | * C6 upper channel status (digital serial data description) (CS4237B,CS4238B) | ||
66 | * D7-D6: sample frequency (0 = 44.1kHz) | ||
67 | * D5: generation status (0 = no indication, 1 = original/commercially precaptureed data) | ||
68 | * D4-D0: category code (upper bits) | ||
69 | * | ||
70 | * C7 reserved (must write 0) | ||
71 | * | ||
72 | * C8 wavetable control | ||
73 | * D7: volume control interrupt enable (CS4235,CS4239) | ||
74 | * D6: hardware volume control format (CS4235,CS4239) | ||
75 | * D3: wavetable serial port enable (all chips) | ||
76 | * D2: DSP serial port switch (all chips) | ||
77 | * D1: disable MCLK (all chips) | ||
78 | * D0: force BRESET low (all chips) | ||
79 | * | ||
80 | */ | ||
81 | |||
82 | #include <sound/driver.h> | ||
83 | #include <asm/io.h> | ||
84 | #include <linux/delay.h> | ||
85 | #include <linux/init.h> | ||
86 | #include <linux/time.h> | ||
87 | #include <linux/wait.h> | ||
88 | #include <sound/core.h> | ||
89 | #include <sound/cs4231.h> | ||
90 | #include <sound/asoundef.h> | ||
91 | |||
92 | MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); | ||
93 | MODULE_DESCRIPTION("Routines for control of CS4235/4236B/4237B/4238B/4239 chips"); | ||
94 | MODULE_LICENSE("GPL"); | ||
95 | |||
96 | /* | ||
97 | * | ||
98 | */ | ||
99 | |||
100 | static unsigned char snd_cs4236_ext_map[18] = { | ||
101 | /* CS4236_LEFT_LINE */ 0xff, | ||
102 | /* CS4236_RIGHT_LINE */ 0xff, | ||
103 | /* CS4236_LEFT_MIC */ 0xdf, | ||
104 | /* CS4236_RIGHT_MIC */ 0xdf, | ||
105 | /* CS4236_LEFT_MIX_CTRL */ 0xe0 | 0x18, | ||
106 | /* CS4236_RIGHT_MIX_CTRL */ 0xe0, | ||
107 | /* CS4236_LEFT_FM */ 0xbf, | ||
108 | /* CS4236_RIGHT_FM */ 0xbf, | ||
109 | /* CS4236_LEFT_DSP */ 0xbf, | ||
110 | /* CS4236_RIGHT_DSP */ 0xbf, | ||
111 | /* CS4236_RIGHT_LOOPBACK */ 0xbf, | ||
112 | /* CS4236_DAC_MUTE */ 0xe0, | ||
113 | /* CS4236_ADC_RATE */ 0x01, /* 48kHz */ | ||
114 | /* CS4236_DAC_RATE */ 0x01, /* 48kHz */ | ||
115 | /* CS4236_LEFT_MASTER */ 0xbf, | ||
116 | /* CS4236_RIGHT_MASTER */ 0xbf, | ||
117 | /* CS4236_LEFT_WAVE */ 0xbf, | ||
118 | /* CS4236_RIGHT_WAVE */ 0xbf | ||
119 | }; | ||
120 | |||
121 | /* | ||
122 | * | ||
123 | */ | ||
124 | |||
125 | static void snd_cs4236_ctrl_out(cs4231_t *chip, unsigned char reg, unsigned char val) | ||
126 | { | ||
127 | outb(reg, chip->cport + 3); | ||
128 | outb(chip->cimage[reg] = val, chip->cport + 4); | ||
129 | } | ||
130 | |||
131 | static unsigned char snd_cs4236_ctrl_in(cs4231_t *chip, unsigned char reg) | ||
132 | { | ||
133 | outb(reg, chip->cport + 3); | ||
134 | return inb(chip->cport + 4); | ||
135 | } | ||
136 | |||
137 | /* | ||
138 | * PCM | ||
139 | */ | ||
140 | |||
141 | #define CLOCKS 8 | ||
142 | |||
143 | static ratnum_t clocks[CLOCKS] = { | ||
144 | { .num = 16934400, .den_min = 353, .den_max = 353, .den_step = 1 }, | ||
145 | { .num = 16934400, .den_min = 529, .den_max = 529, .den_step = 1 }, | ||
146 | { .num = 16934400, .den_min = 617, .den_max = 617, .den_step = 1 }, | ||
147 | { .num = 16934400, .den_min = 1058, .den_max = 1058, .den_step = 1 }, | ||
148 | { .num = 16934400, .den_min = 1764, .den_max = 1764, .den_step = 1 }, | ||
149 | { .num = 16934400, .den_min = 2117, .den_max = 2117, .den_step = 1 }, | ||
150 | { .num = 16934400, .den_min = 2558, .den_max = 2558, .den_step = 1 }, | ||
151 | { .num = 16934400/16, .den_min = 21, .den_max = 192, .den_step = 1 } | ||
152 | }; | ||
153 | |||
154 | static snd_pcm_hw_constraint_ratnums_t hw_constraints_clocks = { | ||
155 | .nrats = CLOCKS, | ||
156 | .rats = clocks, | ||
157 | }; | ||
158 | |||
159 | static int snd_cs4236_xrate(snd_pcm_runtime_t *runtime) | ||
160 | { | ||
161 | return snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, | ||
162 | &hw_constraints_clocks); | ||
163 | } | ||
164 | |||
165 | static unsigned char divisor_to_rate_register(unsigned int divisor) | ||
166 | { | ||
167 | switch (divisor) { | ||
168 | case 353: return 1; | ||
169 | case 529: return 2; | ||
170 | case 617: return 3; | ||
171 | case 1058: return 4; | ||
172 | case 1764: return 5; | ||
173 | case 2117: return 6; | ||
174 | case 2558: return 7; | ||
175 | default: | ||
176 | snd_runtime_check(divisor >= 21 && divisor <= 192, return 192); | ||
177 | return divisor; | ||
178 | } | ||
179 | } | ||
180 | |||
181 | static void snd_cs4236_playback_format(cs4231_t *chip, snd_pcm_hw_params_t *params, unsigned char pdfr) | ||
182 | { | ||
183 | unsigned long flags; | ||
184 | unsigned char rate = divisor_to_rate_register(params->rate_den); | ||
185 | |||
186 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
187 | /* set fast playback format change and clean playback FIFO */ | ||
188 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] | 0x10); | ||
189 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, pdfr & 0xf0); | ||
190 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] & ~0x10); | ||
191 | snd_cs4236_ext_out(chip, CS4236_DAC_RATE, rate); | ||
192 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
193 | } | ||
194 | |||
195 | static void snd_cs4236_capture_format(cs4231_t *chip, snd_pcm_hw_params_t *params, unsigned char cdfr) | ||
196 | { | ||
197 | unsigned long flags; | ||
198 | unsigned char rate = divisor_to_rate_register(params->rate_den); | ||
199 | |||
200 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
201 | /* set fast capture format change and clean capture FIFO */ | ||
202 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] | 0x20); | ||
203 | snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr & 0xf0); | ||
204 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1] & ~0x20); | ||
205 | snd_cs4236_ext_out(chip, CS4236_ADC_RATE, rate); | ||
206 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
207 | } | ||
208 | |||
209 | #ifdef CONFIG_PM | ||
210 | |||
211 | static void snd_cs4236_suspend(cs4231_t *chip) | ||
212 | { | ||
213 | int reg; | ||
214 | unsigned long flags; | ||
215 | |||
216 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
217 | for (reg = 0; reg < 32; reg++) | ||
218 | chip->image[reg] = snd_cs4231_in(chip, reg); | ||
219 | for (reg = 0; reg < 18; reg++) | ||
220 | chip->eimage[reg] = snd_cs4236_ext_in(chip, CS4236_I23VAL(reg)); | ||
221 | for (reg = 2; reg < 9; reg++) | ||
222 | chip->cimage[reg] = snd_cs4236_ctrl_in(chip, reg); | ||
223 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
224 | } | ||
225 | |||
226 | static void snd_cs4236_resume(cs4231_t *chip) | ||
227 | { | ||
228 | int reg; | ||
229 | unsigned long flags; | ||
230 | |||
231 | snd_cs4231_mce_up(chip); | ||
232 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
233 | for (reg = 0; reg < 32; reg++) { | ||
234 | switch (reg) { | ||
235 | case CS4236_EXT_REG: | ||
236 | case CS4231_VERSION: | ||
237 | case 27: /* why? CS4235 - master left */ | ||
238 | case 29: /* why? CS4235 - master right */ | ||
239 | break; | ||
240 | default: | ||
241 | snd_cs4231_out(chip, reg, chip->image[reg]); | ||
242 | break; | ||
243 | } | ||
244 | } | ||
245 | for (reg = 0; reg < 18; reg++) | ||
246 | snd_cs4236_ext_out(chip, CS4236_I23VAL(reg), chip->eimage[reg]); | ||
247 | for (reg = 2; reg < 9; reg++) { | ||
248 | switch (reg) { | ||
249 | case 7: | ||
250 | break; | ||
251 | default: | ||
252 | snd_cs4236_ctrl_out(chip, reg, chip->cimage[reg]); | ||
253 | } | ||
254 | } | ||
255 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
256 | snd_cs4231_mce_down(chip); | ||
257 | } | ||
258 | |||
259 | #endif /* CONFIG_PM */ | ||
260 | |||
261 | int snd_cs4236_create(snd_card_t * card, | ||
262 | unsigned long port, | ||
263 | unsigned long cport, | ||
264 | int irq, int dma1, int dma2, | ||
265 | unsigned short hardware, | ||
266 | unsigned short hwshare, | ||
267 | cs4231_t ** rchip) | ||
268 | { | ||
269 | cs4231_t *chip; | ||
270 | unsigned char ver1, ver2; | ||
271 | unsigned int reg; | ||
272 | int err; | ||
273 | |||
274 | *rchip = NULL; | ||
275 | if (hardware == CS4231_HW_DETECT) | ||
276 | hardware = CS4231_HW_DETECT3; | ||
277 | if (cport < 0x100) { | ||
278 | snd_printk("please, specify control port for CS4236+ chips\n"); | ||
279 | return -ENODEV; | ||
280 | } | ||
281 | if ((err = snd_cs4231_create(card, port, cport, irq, dma1, dma2, hardware, hwshare, &chip)) < 0) | ||
282 | return err; | ||
283 | |||
284 | if (!(chip->hardware & CS4231_HW_CS4236B_MASK)) { | ||
285 | snd_printk("CS4236+: MODE3 and extended registers not available, hardware=0x%x\n",chip->hardware); | ||
286 | snd_device_free(card, chip); | ||
287 | return -ENODEV; | ||
288 | } | ||
289 | #if 0 | ||
290 | { | ||
291 | int idx; | ||
292 | for (idx = 0; idx < 8; idx++) | ||
293 | snd_printk("CD%i = 0x%x\n", idx, inb(chip->cport + idx)); | ||
294 | for (idx = 0; idx < 9; idx++) | ||
295 | snd_printk("C%i = 0x%x\n", idx, snd_cs4236_ctrl_in(chip, idx)); | ||
296 | } | ||
297 | #endif | ||
298 | ver1 = snd_cs4236_ctrl_in(chip, 1); | ||
299 | ver2 = snd_cs4236_ext_in(chip, CS4236_VERSION); | ||
300 | snd_printdd("CS4236: [0x%lx] C1 (version) = 0x%x, ext = 0x%x\n", cport, ver1, ver2); | ||
301 | if (ver1 != ver2) { | ||
302 | snd_printk("CS4236+ chip detected, but control port 0x%lx is not valid\n", cport); | ||
303 | snd_device_free(card, chip); | ||
304 | return -ENODEV; | ||
305 | } | ||
306 | snd_cs4236_ctrl_out(chip, 0, 0x00); | ||
307 | snd_cs4236_ctrl_out(chip, 2, 0xff); | ||
308 | snd_cs4236_ctrl_out(chip, 3, 0x00); | ||
309 | snd_cs4236_ctrl_out(chip, 4, 0x80); | ||
310 | snd_cs4236_ctrl_out(chip, 5, ((IEC958_AES1_CON_PCM_CODER & 3) << 6) | IEC958_AES0_CON_EMPHASIS_NONE); | ||
311 | snd_cs4236_ctrl_out(chip, 6, IEC958_AES1_CON_PCM_CODER >> 2); | ||
312 | snd_cs4236_ctrl_out(chip, 7, 0x00); | ||
313 | /* 0x8c for C8 is valid for Turtle Beach Malibu - the IEC-958 output */ | ||
314 | /* is working with this setup, other hardware should have */ | ||
315 | /* different signal paths and this value should be selectable */ | ||
316 | /* in the future */ | ||
317 | snd_cs4236_ctrl_out(chip, 8, 0x8c); | ||
318 | chip->rate_constraint = snd_cs4236_xrate; | ||
319 | chip->set_playback_format = snd_cs4236_playback_format; | ||
320 | chip->set_capture_format = snd_cs4236_capture_format; | ||
321 | #ifdef CONFIG_PM | ||
322 | chip->suspend = snd_cs4236_suspend; | ||
323 | chip->resume = snd_cs4236_resume; | ||
324 | #endif | ||
325 | |||
326 | /* initialize extended registers */ | ||
327 | for (reg = 0; reg < sizeof(snd_cs4236_ext_map); reg++) | ||
328 | snd_cs4236_ext_out(chip, CS4236_I23VAL(reg), snd_cs4236_ext_map[reg]); | ||
329 | |||
330 | /* initialize compatible but more featured registers */ | ||
331 | snd_cs4231_out(chip, CS4231_LEFT_INPUT, 0x40); | ||
332 | snd_cs4231_out(chip, CS4231_RIGHT_INPUT, 0x40); | ||
333 | snd_cs4231_out(chip, CS4231_AUX1_LEFT_INPUT, 0xff); | ||
334 | snd_cs4231_out(chip, CS4231_AUX1_RIGHT_INPUT, 0xff); | ||
335 | snd_cs4231_out(chip, CS4231_AUX2_LEFT_INPUT, 0xdf); | ||
336 | snd_cs4231_out(chip, CS4231_AUX2_RIGHT_INPUT, 0xdf); | ||
337 | snd_cs4231_out(chip, CS4231_RIGHT_LINE_IN, 0xff); | ||
338 | snd_cs4231_out(chip, CS4231_LEFT_LINE_IN, 0xff); | ||
339 | snd_cs4231_out(chip, CS4231_RIGHT_LINE_IN, 0xff); | ||
340 | switch (chip->hardware) { | ||
341 | case CS4231_HW_CS4235: | ||
342 | case CS4231_HW_CS4239: | ||
343 | snd_cs4231_out(chip, CS4235_LEFT_MASTER, 0xff); | ||
344 | snd_cs4231_out(chip, CS4235_RIGHT_MASTER, 0xff); | ||
345 | break; | ||
346 | } | ||
347 | |||
348 | *rchip = chip; | ||
349 | return 0; | ||
350 | } | ||
351 | |||
352 | int snd_cs4236_pcm(cs4231_t *chip, int device, snd_pcm_t **rpcm) | ||
353 | { | ||
354 | snd_pcm_t *pcm; | ||
355 | int err; | ||
356 | |||
357 | if ((err = snd_cs4231_pcm(chip, device, &pcm)) < 0) | ||
358 | return err; | ||
359 | pcm->info_flags &= ~SNDRV_PCM_INFO_JOINT_DUPLEX; | ||
360 | if (rpcm) | ||
361 | *rpcm = pcm; | ||
362 | return 0; | ||
363 | } | ||
364 | |||
365 | /* | ||
366 | * MIXER | ||
367 | */ | ||
368 | |||
369 | #define CS4236_SINGLE(xname, xindex, reg, shift, mask, invert) \ | ||
370 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
371 | .info = snd_cs4236_info_single, \ | ||
372 | .get = snd_cs4236_get_single, .put = snd_cs4236_put_single, \ | ||
373 | .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) } | ||
374 | |||
375 | static int snd_cs4236_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) | ||
376 | { | ||
377 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
378 | |||
379 | uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; | ||
380 | uinfo->count = 1; | ||
381 | uinfo->value.integer.min = 0; | ||
382 | uinfo->value.integer.max = mask; | ||
383 | return 0; | ||
384 | } | ||
385 | |||
386 | static int snd_cs4236_get_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
387 | { | ||
388 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
389 | unsigned long flags; | ||
390 | int reg = kcontrol->private_value & 0xff; | ||
391 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
392 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
393 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
394 | |||
395 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
396 | ucontrol->value.integer.value[0] = (chip->eimage[CS4236_REG(reg)] >> shift) & mask; | ||
397 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
398 | if (invert) | ||
399 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
400 | return 0; | ||
401 | } | ||
402 | |||
403 | static int snd_cs4236_put_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
404 | { | ||
405 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
406 | unsigned long flags; | ||
407 | int reg = kcontrol->private_value & 0xff; | ||
408 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
409 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
410 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
411 | int change; | ||
412 | unsigned short val; | ||
413 | |||
414 | val = (ucontrol->value.integer.value[0] & mask); | ||
415 | if (invert) | ||
416 | val = mask - val; | ||
417 | val <<= shift; | ||
418 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
419 | val = (chip->eimage[CS4236_REG(reg)] & ~(mask << shift)) | val; | ||
420 | change = val != chip->eimage[CS4236_REG(reg)]; | ||
421 | snd_cs4236_ext_out(chip, reg, val); | ||
422 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
423 | return change; | ||
424 | } | ||
425 | |||
426 | #define CS4236_SINGLEC(xname, xindex, reg, shift, mask, invert) \ | ||
427 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
428 | .info = snd_cs4236_info_single, \ | ||
429 | .get = snd_cs4236_get_singlec, .put = snd_cs4236_put_singlec, \ | ||
430 | .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) } | ||
431 | |||
432 | static int snd_cs4236_get_singlec(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
433 | { | ||
434 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
435 | unsigned long flags; | ||
436 | int reg = kcontrol->private_value & 0xff; | ||
437 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
438 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
439 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
440 | |||
441 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
442 | ucontrol->value.integer.value[0] = (chip->cimage[reg] >> shift) & mask; | ||
443 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
444 | if (invert) | ||
445 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
446 | return 0; | ||
447 | } | ||
448 | |||
449 | static int snd_cs4236_put_singlec(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
450 | { | ||
451 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
452 | unsigned long flags; | ||
453 | int reg = kcontrol->private_value & 0xff; | ||
454 | int shift = (kcontrol->private_value >> 8) & 0xff; | ||
455 | int mask = (kcontrol->private_value >> 16) & 0xff; | ||
456 | int invert = (kcontrol->private_value >> 24) & 0xff; | ||
457 | int change; | ||
458 | unsigned short val; | ||
459 | |||
460 | val = (ucontrol->value.integer.value[0] & mask); | ||
461 | if (invert) | ||
462 | val = mask - val; | ||
463 | val <<= shift; | ||
464 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
465 | val = (chip->cimage[reg] & ~(mask << shift)) | val; | ||
466 | change = val != chip->cimage[reg]; | ||
467 | snd_cs4236_ctrl_out(chip, reg, val); | ||
468 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
469 | return change; | ||
470 | } | ||
471 | |||
472 | #define CS4236_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \ | ||
473 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
474 | .info = snd_cs4236_info_double, \ | ||
475 | .get = snd_cs4236_get_double, .put = snd_cs4236_put_double, \ | ||
476 | .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) } | ||
477 | |||
478 | static int snd_cs4236_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) | ||
479 | { | ||
480 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
481 | |||
482 | uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; | ||
483 | uinfo->count = 2; | ||
484 | uinfo->value.integer.min = 0; | ||
485 | uinfo->value.integer.max = mask; | ||
486 | return 0; | ||
487 | } | ||
488 | |||
489 | static int snd_cs4236_get_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
490 | { | ||
491 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
492 | unsigned long flags; | ||
493 | int left_reg = kcontrol->private_value & 0xff; | ||
494 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
495 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
496 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
497 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
498 | int invert = (kcontrol->private_value >> 22) & 1; | ||
499 | |||
500 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
501 | ucontrol->value.integer.value[0] = (chip->eimage[CS4236_REG(left_reg)] >> shift_left) & mask; | ||
502 | ucontrol->value.integer.value[1] = (chip->eimage[CS4236_REG(right_reg)] >> shift_right) & mask; | ||
503 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
504 | if (invert) { | ||
505 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
506 | ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1]; | ||
507 | } | ||
508 | return 0; | ||
509 | } | ||
510 | |||
511 | static int snd_cs4236_put_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
512 | { | ||
513 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
514 | unsigned long flags; | ||
515 | int left_reg = kcontrol->private_value & 0xff; | ||
516 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
517 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
518 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
519 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
520 | int invert = (kcontrol->private_value >> 22) & 1; | ||
521 | int change; | ||
522 | unsigned short val1, val2; | ||
523 | |||
524 | val1 = ucontrol->value.integer.value[0] & mask; | ||
525 | val2 = ucontrol->value.integer.value[1] & mask; | ||
526 | if (invert) { | ||
527 | val1 = mask - val1; | ||
528 | val2 = mask - val2; | ||
529 | } | ||
530 | val1 <<= shift_left; | ||
531 | val2 <<= shift_right; | ||
532 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
533 | if (left_reg != right_reg) { | ||
534 | val1 = (chip->eimage[CS4236_REG(left_reg)] & ~(mask << shift_left)) | val1; | ||
535 | val2 = (chip->eimage[CS4236_REG(right_reg)] & ~(mask << shift_right)) | val2; | ||
536 | change = val1 != chip->eimage[CS4236_REG(left_reg)] || val2 != chip->eimage[CS4236_REG(right_reg)]; | ||
537 | snd_cs4236_ext_out(chip, left_reg, val1); | ||
538 | snd_cs4236_ext_out(chip, right_reg, val2); | ||
539 | } else { | ||
540 | val1 = (chip->eimage[CS4236_REG(left_reg)] & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2; | ||
541 | change = val1 != chip->eimage[CS4236_REG(left_reg)]; | ||
542 | snd_cs4236_ext_out(chip, left_reg, val1); | ||
543 | } | ||
544 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
545 | return change; | ||
546 | } | ||
547 | |||
548 | #define CS4236_DOUBLE1(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \ | ||
549 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
550 | .info = snd_cs4236_info_double, \ | ||
551 | .get = snd_cs4236_get_double1, .put = snd_cs4236_put_double1, \ | ||
552 | .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) } | ||
553 | |||
554 | static int snd_cs4236_get_double1(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
555 | { | ||
556 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
557 | unsigned long flags; | ||
558 | int left_reg = kcontrol->private_value & 0xff; | ||
559 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
560 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
561 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
562 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
563 | int invert = (kcontrol->private_value >> 22) & 1; | ||
564 | |||
565 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
566 | ucontrol->value.integer.value[0] = (chip->image[left_reg] >> shift_left) & mask; | ||
567 | ucontrol->value.integer.value[1] = (chip->eimage[CS4236_REG(right_reg)] >> shift_right) & mask; | ||
568 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
569 | if (invert) { | ||
570 | ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0]; | ||
571 | ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1]; | ||
572 | } | ||
573 | return 0; | ||
574 | } | ||
575 | |||
576 | static int snd_cs4236_put_double1(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
577 | { | ||
578 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
579 | unsigned long flags; | ||
580 | int left_reg = kcontrol->private_value & 0xff; | ||
581 | int right_reg = (kcontrol->private_value >> 8) & 0xff; | ||
582 | int shift_left = (kcontrol->private_value >> 16) & 0x07; | ||
583 | int shift_right = (kcontrol->private_value >> 19) & 0x07; | ||
584 | int mask = (kcontrol->private_value >> 24) & 0xff; | ||
585 | int invert = (kcontrol->private_value >> 22) & 1; | ||
586 | int change; | ||
587 | unsigned short val1, val2; | ||
588 | |||
589 | val1 = ucontrol->value.integer.value[0] & mask; | ||
590 | val2 = ucontrol->value.integer.value[1] & mask; | ||
591 | if (invert) { | ||
592 | val1 = mask - val1; | ||
593 | val2 = mask - val2; | ||
594 | } | ||
595 | val1 <<= shift_left; | ||
596 | val2 <<= shift_right; | ||
597 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
598 | val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1; | ||
599 | val2 = (chip->eimage[CS4236_REG(right_reg)] & ~(mask << shift_right)) | val2; | ||
600 | change = val1 != chip->image[left_reg] || val2 != chip->eimage[CS4236_REG(right_reg)]; | ||
601 | snd_cs4231_out(chip, left_reg, val1); | ||
602 | snd_cs4236_ext_out(chip, right_reg, val2); | ||
603 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
604 | return change; | ||
605 | } | ||
606 | |||
607 | #define CS4236_MASTER_DIGITAL(xname, xindex) \ | ||
608 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
609 | .info = snd_cs4236_info_double, \ | ||
610 | .get = snd_cs4236_get_master_digital, .put = snd_cs4236_put_master_digital, \ | ||
611 | .private_value = 71 << 24 } | ||
612 | |||
613 | static inline int snd_cs4236_mixer_master_digital_invert_volume(int vol) | ||
614 | { | ||
615 | return (vol < 64) ? 63 - vol : 64 + (71 - vol); | ||
616 | } | ||
617 | |||
618 | static int snd_cs4236_get_master_digital(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
619 | { | ||
620 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
621 | unsigned long flags; | ||
622 | |||
623 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
624 | ucontrol->value.integer.value[0] = snd_cs4236_mixer_master_digital_invert_volume(chip->eimage[CS4236_REG(CS4236_LEFT_MASTER)] & 0x7f); | ||
625 | ucontrol->value.integer.value[1] = snd_cs4236_mixer_master_digital_invert_volume(chip->eimage[CS4236_REG(CS4236_RIGHT_MASTER)] & 0x7f); | ||
626 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
627 | return 0; | ||
628 | } | ||
629 | |||
630 | static int snd_cs4236_put_master_digital(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
631 | { | ||
632 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
633 | unsigned long flags; | ||
634 | int change; | ||
635 | unsigned short val1, val2; | ||
636 | |||
637 | val1 = snd_cs4236_mixer_master_digital_invert_volume(ucontrol->value.integer.value[0] & 0x7f); | ||
638 | val2 = snd_cs4236_mixer_master_digital_invert_volume(ucontrol->value.integer.value[1] & 0x7f); | ||
639 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
640 | val1 = (chip->eimage[CS4236_REG(CS4236_LEFT_MASTER)] & ~0x7f) | val1; | ||
641 | val2 = (chip->eimage[CS4236_REG(CS4236_RIGHT_MASTER)] & ~0x7f) | val2; | ||
642 | change = val1 != chip->eimage[CS4236_REG(CS4236_LEFT_MASTER)] || val2 != chip->eimage[CS4236_REG(CS4236_RIGHT_MASTER)]; | ||
643 | snd_cs4236_ext_out(chip, CS4236_LEFT_MASTER, val1); | ||
644 | snd_cs4236_ext_out(chip, CS4236_RIGHT_MASTER, val1); | ||
645 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
646 | return change; | ||
647 | } | ||
648 | |||
649 | #define CS4235_OUTPUT_ACCU(xname, xindex) \ | ||
650 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
651 | .info = snd_cs4236_info_double, \ | ||
652 | .get = snd_cs4235_get_output_accu, .put = snd_cs4235_put_output_accu, \ | ||
653 | .private_value = 3 << 24 } | ||
654 | |||
655 | static inline int snd_cs4235_mixer_output_accu_get_volume(int vol) | ||
656 | { | ||
657 | switch ((vol >> 5) & 3) { | ||
658 | case 0: return 1; | ||
659 | case 1: return 3; | ||
660 | case 2: return 2; | ||
661 | case 3: return 0; | ||
662 | } | ||
663 | return 3; | ||
664 | } | ||
665 | |||
666 | static inline int snd_cs4235_mixer_output_accu_set_volume(int vol) | ||
667 | { | ||
668 | switch (vol & 3) { | ||
669 | case 0: return 3 << 5; | ||
670 | case 1: return 0 << 5; | ||
671 | case 2: return 2 << 5; | ||
672 | case 3: return 1 << 5; | ||
673 | } | ||
674 | return 1 << 5; | ||
675 | } | ||
676 | |||
677 | static int snd_cs4235_get_output_accu(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
678 | { | ||
679 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
680 | unsigned long flags; | ||
681 | |||
682 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
683 | ucontrol->value.integer.value[0] = snd_cs4235_mixer_output_accu_get_volume(chip->image[CS4235_LEFT_MASTER]); | ||
684 | ucontrol->value.integer.value[1] = snd_cs4235_mixer_output_accu_get_volume(chip->image[CS4235_RIGHT_MASTER]); | ||
685 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
686 | return 0; | ||
687 | } | ||
688 | |||
689 | static int snd_cs4235_put_output_accu(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
690 | { | ||
691 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
692 | unsigned long flags; | ||
693 | int change; | ||
694 | unsigned short val1, val2; | ||
695 | |||
696 | val1 = snd_cs4235_mixer_output_accu_set_volume(ucontrol->value.integer.value[0]); | ||
697 | val2 = snd_cs4235_mixer_output_accu_set_volume(ucontrol->value.integer.value[1]); | ||
698 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
699 | val1 = (chip->image[CS4235_LEFT_MASTER] & ~(3 << 5)) | val1; | ||
700 | val2 = (chip->image[CS4235_RIGHT_MASTER] & ~(3 << 5)) | val2; | ||
701 | change = val1 != chip->image[CS4235_LEFT_MASTER] || val2 != chip->image[CS4235_RIGHT_MASTER]; | ||
702 | snd_cs4231_out(chip, CS4235_LEFT_MASTER, val1); | ||
703 | snd_cs4231_out(chip, CS4235_RIGHT_MASTER, val2); | ||
704 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
705 | return change; | ||
706 | } | ||
707 | |||
708 | static snd_kcontrol_new_t snd_cs4236_controls[] = { | ||
709 | |||
710 | CS4236_DOUBLE("Master Digital Playback Switch", 0, CS4236_LEFT_MASTER, CS4236_RIGHT_MASTER, 7, 7, 1, 1), | ||
711 | CS4236_DOUBLE("Master Digital Capture Switch", 0, CS4236_DAC_MUTE, CS4236_DAC_MUTE, 7, 6, 1, 1), | ||
712 | CS4236_MASTER_DIGITAL("Master Digital Volume", 0), | ||
713 | |||
714 | CS4236_DOUBLE("Capture Boost Volume", 0, CS4236_LEFT_MIX_CTRL, CS4236_RIGHT_MIX_CTRL, 5, 5, 3, 1), | ||
715 | |||
716 | CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), | ||
717 | CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), | ||
718 | |||
719 | CS4236_DOUBLE("DSP Playback Switch", 0, CS4236_LEFT_DSP, CS4236_RIGHT_DSP, 7, 7, 1, 1), | ||
720 | CS4236_DOUBLE("DSP Playback Volume", 0, CS4236_LEFT_DSP, CS4236_RIGHT_DSP, 0, 0, 63, 1), | ||
721 | |||
722 | CS4236_DOUBLE("FM Playback Switch", 0, CS4236_LEFT_FM, CS4236_RIGHT_FM, 7, 7, 1, 1), | ||
723 | CS4236_DOUBLE("FM Playback Volume", 0, CS4236_LEFT_FM, CS4236_RIGHT_FM, 0, 0, 63, 1), | ||
724 | |||
725 | CS4236_DOUBLE("Wavetable Playback Switch", 0, CS4236_LEFT_WAVE, CS4236_RIGHT_WAVE, 7, 7, 1, 1), | ||
726 | CS4236_DOUBLE("Wavetable Playback Volume", 0, CS4236_LEFT_WAVE, CS4236_RIGHT_WAVE, 0, 0, 63, 1), | ||
727 | |||
728 | CS4231_DOUBLE("Synth Playback Switch", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), | ||
729 | CS4231_DOUBLE("Synth Volume", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), | ||
730 | CS4231_DOUBLE("Synth Capture Switch", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 6, 6, 1, 1), | ||
731 | CS4231_DOUBLE("Synth Capture Bypass", 0, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 5, 5, 1, 1), | ||
732 | |||
733 | CS4236_DOUBLE("Mic Playback Switch", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 6, 6, 1, 1), | ||
734 | CS4236_DOUBLE("Mic Capture Switch", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 7, 7, 1, 1), | ||
735 | CS4236_DOUBLE("Mic Volume", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 0, 0, 31, 1), | ||
736 | CS4236_DOUBLE("Mic Playback Boost", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 5, 5, 1, 0), | ||
737 | |||
738 | CS4231_DOUBLE("Line Playback Switch", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), | ||
739 | CS4231_DOUBLE("Line Volume", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), | ||
740 | CS4231_DOUBLE("Line Capture Switch", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 6, 6, 1, 1), | ||
741 | CS4231_DOUBLE("Line Capture Bypass", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 5, 5, 1, 1), | ||
742 | |||
743 | CS4231_DOUBLE("CD Playback Switch", 0, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | ||
744 | CS4231_DOUBLE("CD Volume", 0, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), | ||
745 | CS4231_DOUBLE("CD Capture Switch", 0, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 6, 6, 1, 1), | ||
746 | |||
747 | CS4236_DOUBLE1("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, CS4236_RIGHT_MIX_CTRL, 6, 7, 1, 1), | ||
748 | CS4236_DOUBLE1("Mono Playback Switch", 0, CS4231_MONO_CTRL, CS4236_LEFT_MIX_CTRL, 7, 7, 1, 1), | ||
749 | CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1), | ||
750 | CS4231_SINGLE("Mono Playback Bypass", 0, CS4231_MONO_CTRL, 5, 1, 0), | ||
751 | |||
752 | CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0, 15, 0), | ||
753 | CS4231_DOUBLE("Analog Loopback Capture Switch", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 7, 7, 1, 0), | ||
754 | |||
755 | CS4231_SINGLE("Digital Loopback Playback Switch", 0, CS4231_LOOPBACK, 0, 1, 0), | ||
756 | CS4236_DOUBLE1("Digital Loopback Playback Volume", 0, CS4231_LOOPBACK, CS4236_RIGHT_LOOPBACK, 2, 0, 63, 1) | ||
757 | }; | ||
758 | |||
759 | static snd_kcontrol_new_t snd_cs4235_controls[] = { | ||
760 | |||
761 | CS4231_DOUBLE("Master Switch", 0, CS4235_LEFT_MASTER, CS4235_RIGHT_MASTER, 7, 7, 1, 1), | ||
762 | CS4231_DOUBLE("Master Volume", 0, CS4235_LEFT_MASTER, CS4235_RIGHT_MASTER, 0, 0, 31, 1), | ||
763 | |||
764 | CS4235_OUTPUT_ACCU("Playback Volume", 0), | ||
765 | |||
766 | CS4236_DOUBLE("Master Digital Playback Switch", 0, CS4236_LEFT_MASTER, CS4236_RIGHT_MASTER, 7, 7, 1, 1), | ||
767 | CS4236_DOUBLE("Master Digital Capture Switch", 0, CS4236_DAC_MUTE, CS4236_DAC_MUTE, 7, 6, 1, 1), | ||
768 | CS4236_MASTER_DIGITAL("Master Digital Volume", 0), | ||
769 | |||
770 | CS4231_DOUBLE("Master Digital Playback Switch", 1, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), | ||
771 | CS4231_DOUBLE("Master Digital Capture Switch", 1, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 6, 6, 1, 1), | ||
772 | CS4231_DOUBLE("Master Digital Volume", 1, CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), | ||
773 | |||
774 | CS4236_DOUBLE("Capture Volume", 0, CS4236_LEFT_MIX_CTRL, CS4236_RIGHT_MIX_CTRL, 5, 5, 3, 1), | ||
775 | |||
776 | CS4231_DOUBLE("PCM Switch", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), | ||
777 | CS4231_DOUBLE("PCM Volume", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), | ||
778 | |||
779 | CS4236_DOUBLE("DSP Switch", 0, CS4236_LEFT_DSP, CS4236_RIGHT_DSP, 7, 7, 1, 1), | ||
780 | |||
781 | CS4236_DOUBLE("FM Switch", 0, CS4236_LEFT_FM, CS4236_RIGHT_FM, 7, 7, 1, 1), | ||
782 | |||
783 | CS4236_DOUBLE("Wavetable Switch", 0, CS4236_LEFT_WAVE, CS4236_RIGHT_WAVE, 7, 7, 1, 1), | ||
784 | |||
785 | CS4236_DOUBLE("Mic Capture Switch", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 7, 7, 1, 1), | ||
786 | CS4236_DOUBLE("Mic Playback Switch", 0, CS4236_LEFT_MIC, CS4236_RIGHT_MIC, 6, 6, 1, 1), | ||
787 | CS4236_SINGLE("Mic Volume", 0, CS4236_LEFT_MIC, 0, 31, 1), | ||
788 | CS4236_SINGLE("Mic Playback Boost", 0, CS4236_LEFT_MIC, 5, 1, 0), | ||
789 | |||
790 | CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), | ||
791 | CS4231_DOUBLE("Aux Capture Switch", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 6, 6, 1, 1), | ||
792 | CS4231_DOUBLE("Aux Volume", 0, CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), | ||
793 | |||
794 | CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | ||
795 | CS4231_DOUBLE("Aux Capture Switch", 1, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 6, 6, 1, 1), | ||
796 | CS4231_DOUBLE("Aux Volume", 1, CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), | ||
797 | |||
798 | CS4236_DOUBLE1("Master Mono Switch", 0, CS4231_MONO_CTRL, CS4236_RIGHT_MIX_CTRL, 6, 7, 1, 1), | ||
799 | |||
800 | CS4236_DOUBLE1("Mono Switch", 0, CS4231_MONO_CTRL, CS4236_LEFT_MIX_CTRL, 7, 7, 1, 1), | ||
801 | CS4231_SINGLE("Mono Volume", 0, CS4231_MONO_CTRL, 0, 15, 1), | ||
802 | |||
803 | CS4231_DOUBLE("Analog Loopback Switch", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 7, 7, 1, 0), | ||
804 | }; | ||
805 | |||
806 | #define CS4236_IEC958_ENABLE(xname, xindex) \ | ||
807 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ | ||
808 | .info = snd_cs4236_info_single, \ | ||
809 | .get = snd_cs4236_get_iec958_switch, .put = snd_cs4236_put_iec958_switch, \ | ||
810 | .private_value = 1 << 16 } | ||
811 | |||
812 | static int snd_cs4236_get_iec958_switch(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
813 | { | ||
814 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
815 | unsigned long flags; | ||
816 | |||
817 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
818 | ucontrol->value.integer.value[0] = chip->image[CS4231_ALT_FEATURE_1] & 0x02 ? 1 : 0; | ||
819 | #if 0 | ||
820 | printk("get valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | ||
821 | snd_cs4231_in(chip, CS4231_ALT_FEATURE_1), | ||
822 | snd_cs4236_ctrl_in(chip, 3), | ||
823 | snd_cs4236_ctrl_in(chip, 4), | ||
824 | snd_cs4236_ctrl_in(chip, 5), | ||
825 | snd_cs4236_ctrl_in(chip, 6), | ||
826 | snd_cs4236_ctrl_in(chip, 8)); | ||
827 | #endif | ||
828 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
829 | return 0; | ||
830 | } | ||
831 | |||
832 | static int snd_cs4236_put_iec958_switch(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | ||
833 | { | ||
834 | cs4231_t *chip = snd_kcontrol_chip(kcontrol); | ||
835 | unsigned long flags; | ||
836 | int change; | ||
837 | unsigned short enable, val; | ||
838 | |||
839 | enable = ucontrol->value.integer.value[0] & 1; | ||
840 | |||
841 | down(&chip->mce_mutex); | ||
842 | snd_cs4231_mce_up(chip); | ||
843 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
844 | val = (chip->image[CS4231_ALT_FEATURE_1] & ~0x0e) | (0<<2) | (enable << 1); | ||
845 | change = val != chip->image[CS4231_ALT_FEATURE_1]; | ||
846 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, val); | ||
847 | val = snd_cs4236_ctrl_in(chip, 4) | 0xc0; | ||
848 | snd_cs4236_ctrl_out(chip, 4, val); | ||
849 | udelay(100); | ||
850 | val &= ~0x40; | ||
851 | snd_cs4236_ctrl_out(chip, 4, val); | ||
852 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
853 | snd_cs4231_mce_down(chip); | ||
854 | up(&chip->mce_mutex); | ||
855 | |||
856 | #if 0 | ||
857 | printk("set valid: ALT = 0x%x, C3 = 0x%x, C4 = 0x%x, C5 = 0x%x, C6 = 0x%x, C8 = 0x%x\n", | ||
858 | snd_cs4231_in(chip, CS4231_ALT_FEATURE_1), | ||
859 | snd_cs4236_ctrl_in(chip, 3), | ||
860 | snd_cs4236_ctrl_in(chip, 4), | ||
861 | snd_cs4236_ctrl_in(chip, 5), | ||
862 | snd_cs4236_ctrl_in(chip, 6), | ||
863 | snd_cs4236_ctrl_in(chip, 8)); | ||
864 | #endif | ||
865 | return change; | ||
866 | } | ||
867 | |||
868 | static snd_kcontrol_new_t snd_cs4236_iec958_controls[] = { | ||
869 | CS4236_IEC958_ENABLE("IEC958 Output Enable", 0), | ||
870 | CS4236_SINGLEC("IEC958 Output Validity", 0, 4, 4, 1, 0), | ||
871 | CS4236_SINGLEC("IEC958 Output User", 0, 4, 5, 1, 0), | ||
872 | CS4236_SINGLEC("IEC958 Output CSBR", 0, 4, 6, 1, 0), | ||
873 | CS4236_SINGLEC("IEC958 Output Channel Status Low", 0, 5, 1, 127, 0), | ||
874 | CS4236_SINGLEC("IEC958 Output Channel Status High", 0, 6, 0, 255, 0) | ||
875 | }; | ||
876 | |||
877 | static snd_kcontrol_new_t snd_cs4236_3d_controls_cs4235[] = { | ||
878 | CS4236_SINGLEC("3D Control - Switch", 0, 3, 4, 1, 0), | ||
879 | CS4236_SINGLEC("3D Control - Space", 0, 2, 4, 15, 1) | ||
880 | }; | ||
881 | |||
882 | static snd_kcontrol_new_t snd_cs4236_3d_controls_cs4237[] = { | ||
883 | CS4236_SINGLEC("3D Control - Switch", 0, 3, 7, 1, 0), | ||
884 | CS4236_SINGLEC("3D Control - Space", 0, 2, 4, 15, 1), | ||
885 | CS4236_SINGLEC("3D Control - Center", 0, 2, 0, 15, 1), | ||
886 | CS4236_SINGLEC("3D Control - Mono", 0, 3, 6, 1, 0), | ||
887 | CS4236_SINGLEC("3D Control - IEC958", 0, 3, 5, 1, 0) | ||
888 | }; | ||
889 | |||
890 | static snd_kcontrol_new_t snd_cs4236_3d_controls_cs4238[] = { | ||
891 | CS4236_SINGLEC("3D Control - Switch", 0, 3, 4, 1, 0), | ||
892 | CS4236_SINGLEC("3D Control - Space", 0, 2, 4, 15, 1), | ||
893 | CS4236_SINGLEC("3D Control - Volume", 0, 2, 0, 15, 1), | ||
894 | CS4236_SINGLEC("3D Control - IEC958", 0, 3, 5, 1, 0) | ||
895 | }; | ||
896 | |||
897 | int snd_cs4236_mixer(cs4231_t *chip) | ||
898 | { | ||
899 | snd_card_t *card; | ||
900 | unsigned int idx, count; | ||
901 | int err; | ||
902 | snd_kcontrol_new_t *kcontrol; | ||
903 | |||
904 | snd_assert(chip != NULL && chip->card != NULL, return -EINVAL); | ||
905 | card = chip->card; | ||
906 | strcpy(card->mixername, snd_cs4231_chip_id(chip)); | ||
907 | |||
908 | if (chip->hardware == CS4231_HW_CS4235 || | ||
909 | chip->hardware == CS4231_HW_CS4239) { | ||
910 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4235_controls); idx++) { | ||
911 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cs4235_controls[idx], chip))) < 0) | ||
912 | return err; | ||
913 | } | ||
914 | } else { | ||
915 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4236_controls); idx++) { | ||
916 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cs4236_controls[idx], chip))) < 0) | ||
917 | return err; | ||
918 | } | ||
919 | } | ||
920 | switch (chip->hardware) { | ||
921 | case CS4231_HW_CS4235: | ||
922 | case CS4231_HW_CS4239: | ||
923 | count = ARRAY_SIZE(snd_cs4236_3d_controls_cs4235); | ||
924 | kcontrol = snd_cs4236_3d_controls_cs4235; | ||
925 | break; | ||
926 | case CS4231_HW_CS4237B: | ||
927 | count = ARRAY_SIZE(snd_cs4236_3d_controls_cs4237); | ||
928 | kcontrol = snd_cs4236_3d_controls_cs4237; | ||
929 | break; | ||
930 | case CS4231_HW_CS4238B: | ||
931 | count = ARRAY_SIZE(snd_cs4236_3d_controls_cs4238); | ||
932 | kcontrol = snd_cs4236_3d_controls_cs4238; | ||
933 | break; | ||
934 | default: | ||
935 | count = 0; | ||
936 | kcontrol = NULL; | ||
937 | } | ||
938 | for (idx = 0; idx < count; idx++, kcontrol++) { | ||
939 | if ((err = snd_ctl_add(card, snd_ctl_new1(kcontrol, chip))) < 0) | ||
940 | return err; | ||
941 | } | ||
942 | if (chip->hardware == CS4231_HW_CS4237B || | ||
943 | chip->hardware == CS4231_HW_CS4238B) { | ||
944 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4236_iec958_controls); idx++) { | ||
945 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cs4236_iec958_controls[idx], chip))) < 0) | ||
946 | return err; | ||
947 | } | ||
948 | } | ||
949 | return 0; | ||
950 | } | ||
951 | |||
952 | EXPORT_SYMBOL(snd_cs4236_create); | ||
953 | EXPORT_SYMBOL(snd_cs4236_pcm); | ||
954 | EXPORT_SYMBOL(snd_cs4236_mixer); | ||
955 | |||
956 | /* | ||
957 | * INIT part | ||
958 | */ | ||
959 | |||
960 | static int __init alsa_cs4236_init(void) | ||
961 | { | ||
962 | return 0; | ||
963 | } | ||
964 | |||
965 | static void __exit alsa_cs4236_exit(void) | ||
966 | { | ||
967 | } | ||
968 | |||
969 | module_init(alsa_cs4236_init) | ||
970 | module_exit(alsa_cs4236_exit) | ||