blob: b47f6fe6277fd72aadfeadda3eddb623a3215291 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for CS4231 sound chips found on Sparcs.
David S. Millerae251032008-08-27 18:24:01 -07003 * Copyright (C) 2002, 2008 David S. Miller <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Based entirely upon drivers/sbus/audio/cs4231.c which is:
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02006 * Copyright (C) 1996, 1997, 1998 Derrick J Brashear (shadow@andrew.cmu.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * and also sound/isa/cs423x/cs4231_lib.c which is:
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02008 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/delay.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/moduleparam.h>
Krzysztof Helt9e9abb42007-09-10 23:06:55 +020017#include <linux/irq.h>
18#include <linux/io.h>
David S. Millerae251032008-08-27 18:24:01 -070019#include <linux/of.h>
20#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/info.h>
25#include <sound/control.h>
26#include <sound/timer.h>
27#include <sound/initval.h>
28#include <sound/pcm_params.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef CONFIG_SBUS
31#define SBUS_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#endif
33
34#if defined(CONFIG_PCI) && defined(CONFIG_SPARC64)
35#define EBUS_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/pci.h>
David S. Milleraae7fb82008-08-29 23:10:21 -070037#include <asm/ebus_dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif
39
40static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
41static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Krzysztof Helt9e9abb42007-09-10 23:06:55 +020042/* Enable this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103043static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45module_param_array(index, int, NULL, 0444);
46MODULE_PARM_DESC(index, "Index value for Sun CS4231 soundcard.");
47module_param_array(id, charp, NULL, 0444);
48MODULE_PARM_DESC(id, "ID string for Sun CS4231 soundcard.");
49module_param_array(enable, bool, NULL, 0444);
50MODULE_PARM_DESC(enable, "Enable Sun CS4231 soundcard.");
51MODULE_AUTHOR("Jaroslav Kysela, Derrick J. Brashear and David S. Miller");
52MODULE_DESCRIPTION("Sun CS4231");
53MODULE_LICENSE("GPL");
54MODULE_SUPPORTED_DEVICE("{{Sun,CS4231}}");
55
Georg Chini5a820fa2005-11-07 14:08:25 -080056#ifdef SBUS_SUPPORT
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010057struct sbus_dma_info {
Krzysztof Helt9e9abb42007-09-10 23:06:55 +020058 spinlock_t lock; /* DMA access lock */
59 int dir;
60 void __iomem *regs;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010061};
Georg Chini5a820fa2005-11-07 14:08:25 -080062#endif
63
David S. Miller4f3f2f62006-01-17 15:55:58 -080064struct snd_cs4231;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010065struct cs4231_dma_control {
Krzysztof Helt9e9abb42007-09-10 23:06:55 +020066 void (*prepare)(struct cs4231_dma_control *dma_cont,
67 int dir);
68 void (*enable)(struct cs4231_dma_control *dma_cont, int on);
69 int (*request)(struct cs4231_dma_control *dma_cont,
70 dma_addr_t bus_addr, size_t len);
71 unsigned int (*address)(struct cs4231_dma_control *dma_cont);
Georg Chinib1282542005-11-07 14:09:19 -080072#ifdef EBUS_SUPPORT
73 struct ebus_dma_info ebus_info;
74#endif
75#ifdef SBUS_SUPPORT
76 struct sbus_dma_info sbus_info;
77#endif
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010078};
Georg Chinib1282542005-11-07 14:09:19 -080079
80struct snd_cs4231 {
Krzysztof Helt9e9abb42007-09-10 23:06:55 +020081 spinlock_t lock; /* registers access lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010084 struct cs4231_dma_control p_dma;
85 struct cs4231_dma_control c_dma;
Georg Chini5a820fa2005-11-07 14:08:25 -080086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 u32 flags;
88#define CS4231_FLAG_EBUS 0x00000001
89#define CS4231_FLAG_PLAYBACK 0x00000002
90#define CS4231_FLAG_CAPTURE 0x00000004
91
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010092 struct snd_card *card;
93 struct snd_pcm *pcm;
94 struct snd_pcm_substream *playback_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned int p_periods_sent;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010096 struct snd_pcm_substream *capture_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned int c_periods_sent;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +010098 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 unsigned short mode;
101#define CS4231_MODE_NONE 0x0000
102#define CS4231_MODE_PLAY 0x0001
103#define CS4231_MODE_RECORD 0x0002
104#define CS4231_MODE_TIMER 0x0004
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200105#define CS4231_MODE_OPEN (CS4231_MODE_PLAY | CS4231_MODE_RECORD | \
106 CS4231_MODE_TIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 unsigned char image[32]; /* registers image */
109 int mce_bit;
110 int calibrate_mute;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200111 struct mutex mce_mutex; /* mutex for mce register */
112 struct mutex open_mutex; /* mutex for ALSA open/close */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Grant Likely2dc11582010-08-06 09:25:50 -0600114 struct platform_device *op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 unsigned int irq[2];
116 unsigned int regs_size;
117 struct snd_cs4231 *next;
Georg Chinib1282542005-11-07 14:09:19 -0800118};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* Eventually we can use sound/isa/cs423x/cs4231_lib.c directly, but for
121 * now.... -DaveM
122 */
123
124/* IO ports */
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200125#include <sound/cs4231-regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* XXX offsets are different than PC ISA chips... */
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200128#define CS4231U(chip, x) ((chip)->port + ((c_d_c_CS4231##x) << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* SBUS DMA register defines. */
131
132#define APCCSR 0x10UL /* APC DMA CSR */
133#define APCCVA 0x20UL /* APC Capture DMA Address */
134#define APCCC 0x24UL /* APC Capture Count */
135#define APCCNVA 0x28UL /* APC Capture DMA Next Address */
136#define APCCNC 0x2cUL /* APC Capture Next Count */
137#define APCPVA 0x30UL /* APC Play DMA Address */
138#define APCPC 0x34UL /* APC Play Count */
139#define APCPNVA 0x38UL /* APC Play DMA Next Address */
140#define APCPNC 0x3cUL /* APC Play Next Count */
141
Georg Chini5a820fa2005-11-07 14:08:25 -0800142/* Defines for SBUS DMA-routines */
143
144#define APCVA 0x0UL /* APC DMA Address */
145#define APCC 0x4UL /* APC Count */
146#define APCNVA 0x8UL /* APC DMA Next Address */
147#define APCNC 0xcUL /* APC Next Count */
148#define APC_PLAY 0x30UL /* Play registers start at 0x30 */
149#define APC_RECORD 0x20UL /* Record registers start at 0x20 */
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* APCCSR bits */
152
153#define APC_INT_PENDING 0x800000 /* Interrupt Pending */
154#define APC_PLAY_INT 0x400000 /* Playback interrupt */
155#define APC_CAPT_INT 0x200000 /* Capture interrupt */
156#define APC_GENL_INT 0x100000 /* General interrupt */
157#define APC_XINT_ENA 0x80000 /* General ext int. enable */
158#define APC_XINT_PLAY 0x40000 /* Playback ext intr */
159#define APC_XINT_CAPT 0x20000 /* Capture ext intr */
160#define APC_XINT_GENL 0x10000 /* Error ext intr */
161#define APC_XINT_EMPT 0x8000 /* Pipe empty interrupt (0 write to pva) */
162#define APC_XINT_PEMP 0x4000 /* Play pipe empty (pva and pnva not set) */
163#define APC_XINT_PNVA 0x2000 /* Playback NVA dirty */
164#define APC_XINT_PENA 0x1000 /* play pipe empty Int enable */
165#define APC_XINT_COVF 0x800 /* Cap data dropped on floor */
166#define APC_XINT_CNVA 0x400 /* Capture NVA dirty */
167#define APC_XINT_CEMP 0x200 /* Capture pipe empty (cva and cnva not set) */
168#define APC_XINT_CENA 0x100 /* Cap. pipe empty int enable */
169#define APC_PPAUSE 0x80 /* Pause the play DMA */
170#define APC_CPAUSE 0x40 /* Pause the capture DMA */
171#define APC_CDC_RESET 0x20 /* CODEC RESET */
172#define APC_PDMA_READY 0x08 /* Play DMA Go */
173#define APC_CDMA_READY 0x04 /* Capture DMA Go */
174#define APC_CHIP_RESET 0x01 /* Reset the chip */
175
176/* EBUS DMA register offsets */
177
178#define EBDMA_CSR 0x00UL /* Control/Status */
179#define EBDMA_ADDR 0x04UL /* DMA Address */
180#define EBDMA_COUNT 0x08UL /* DMA Count */
181
182/*
183 * Some variables
184 */
185
186static unsigned char freq_bits[14] = {
187 /* 5510 */ 0x00 | CS4231_XTAL2,
188 /* 6620 */ 0x0E | CS4231_XTAL2,
189 /* 8000 */ 0x00 | CS4231_XTAL1,
190 /* 9600 */ 0x0E | CS4231_XTAL1,
191 /* 11025 */ 0x02 | CS4231_XTAL2,
192 /* 16000 */ 0x02 | CS4231_XTAL1,
193 /* 18900 */ 0x04 | CS4231_XTAL2,
194 /* 22050 */ 0x06 | CS4231_XTAL2,
195 /* 27042 */ 0x04 | CS4231_XTAL1,
196 /* 32000 */ 0x06 | CS4231_XTAL1,
197 /* 33075 */ 0x0C | CS4231_XTAL2,
198 /* 37800 */ 0x08 | CS4231_XTAL2,
199 /* 44100 */ 0x0A | CS4231_XTAL2,
200 /* 48000 */ 0x0C | CS4231_XTAL1
201};
202
203static unsigned int rates[14] = {
204 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050,
205 27042, 32000, 33075, 37800, 44100, 48000
206};
207
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100208static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200209 .count = ARRAY_SIZE(rates),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .list = rates,
211};
212
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100213static int snd_cs4231_xrate(struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 return snd_pcm_hw_constraint_list(runtime, 0,
216 SNDRV_PCM_HW_PARAM_RATE,
217 &hw_constraints_rates);
218}
219
220static unsigned char snd_cs4231_original_image[32] =
221{
222 0x00, /* 00/00 - lic */
223 0x00, /* 01/01 - ric */
224 0x9f, /* 02/02 - la1ic */
225 0x9f, /* 03/03 - ra1ic */
226 0x9f, /* 04/04 - la2ic */
227 0x9f, /* 05/05 - ra2ic */
228 0xbf, /* 06/06 - loc */
229 0xbf, /* 07/07 - roc */
230 0x20, /* 08/08 - pdfr */
231 CS4231_AUTOCALIB, /* 09/09 - ic */
232 0x00, /* 0a/10 - pc */
233 0x00, /* 0b/11 - ti */
234 CS4231_MODE2, /* 0c/12 - mi */
235 0x00, /* 0d/13 - lbc */
236 0x00, /* 0e/14 - pbru */
237 0x00, /* 0f/15 - pbrl */
238 0x80, /* 10/16 - afei */
239 0x01, /* 11/17 - afeii */
240 0x9f, /* 12/18 - llic */
241 0x9f, /* 13/19 - rlic */
242 0x00, /* 14/20 - tlb */
243 0x00, /* 15/21 - thb */
244 0x00, /* 16/22 - la3mic/reserved */
245 0x00, /* 17/23 - ra3mic/reserved */
246 0x00, /* 18/24 - afs */
247 0x00, /* 19/25 - lamoc/version */
248 0x00, /* 1a/26 - mioc */
249 0x00, /* 1b/27 - ramoc/reserved */
250 0x20, /* 1c/28 - cdfr */
251 0x00, /* 1d/29 - res4 */
252 0x00, /* 1e/30 - cbru */
253 0x00, /* 1f/31 - cbrl */
254};
255
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100256static u8 __cs4231_readb(struct snd_cs4231 *cp, void __iomem *reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200258 if (cp->flags & CS4231_FLAG_EBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return readb(reg_addr);
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200260 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return sbus_readb(reg_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200264static void __cs4231_writeb(struct snd_cs4231 *cp, u8 val,
265 void __iomem *reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200267 if (cp->flags & CS4231_FLAG_EBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return writeb(val, reg_addr);
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200269 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return sbus_writeb(val, reg_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/*
274 * Basic I/O functions
275 */
276
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200277static void snd_cs4231_ready(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200281 for (timeout = 250; timeout > 0; timeout--) {
282 int val = __cs4231_readb(chip, CS4231U(chip, REGSEL));
283 if ((val & CS4231_INIT) == 0)
284 break;
285 udelay(100);
286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200289static void snd_cs4231_dout(struct snd_cs4231 *chip, unsigned char reg,
290 unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200292 snd_cs4231_ready(chip);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700293#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200294 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200295 snd_printdd("out: auto calibration time out - reg = 0x%x, "
296 "value = 0x%x\n",
297 reg, value);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700298#endif
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200299 __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL));
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200300 wmb();
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200301 __cs4231_writeb(chip, value, CS4231U(chip, REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 mb();
303}
304
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200305static inline void snd_cs4231_outm(struct snd_cs4231 *chip, unsigned char reg,
306 unsigned char mask, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200308 unsigned char tmp = (chip->image[reg] & mask) | value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200310 chip->image[reg] = tmp;
311 if (!chip->calibrate_mute)
312 snd_cs4231_dout(chip, reg, tmp);
313}
314
315static void snd_cs4231_out(struct snd_cs4231 *chip, unsigned char reg,
316 unsigned char value)
317{
318 snd_cs4231_dout(chip, reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 chip->image[reg] = value;
320 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100323static unsigned char snd_cs4231_in(struct snd_cs4231 *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200325 snd_cs4231_ready(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200327 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200328 snd_printdd("in: auto calibration time out - reg = 0x%x\n",
329 reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#endif
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200331 __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 mb();
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200333 return __cs4231_readb(chip, CS4231U(chip, REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/*
337 * CS4231 detection / MCE routines
338 */
339
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100340static void snd_cs4231_busy_wait(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 int timeout;
343
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200344 /* looks like this sequence is proper for CS4231A chip (GUS MAX) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 for (timeout = 5; timeout > 0; timeout--)
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200346 __cs4231_readb(chip, CS4231U(chip, REGSEL));
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* end of cleanup sequence */
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200349 for (timeout = 500; timeout > 0; timeout--) {
350 int val = __cs4231_readb(chip, CS4231U(chip, REGSEL));
351 if ((val & CS4231_INIT) == 0)
352 break;
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200353 msleep(1);
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100357static void snd_cs4231_mce_up(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 unsigned long flags;
360 int timeout;
361
362 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Heltc6c2d572007-09-04 13:08:24 +0200363 snd_cs4231_ready(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200365 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700366 snd_printdd("mce_up - auto calibration time out (0)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367#endif
368 chip->mce_bit |= CS4231_MCE;
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200369 timeout = __cs4231_readb(chip, CS4231U(chip, REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (timeout == 0x80)
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200371 snd_printdd("mce_up [%p]: serious init problem - "
372 "codec still busy\n",
373 chip->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (!(timeout & CS4231_MCE))
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200375 __cs4231_writeb(chip, chip->mce_bit | (timeout & 0x1f),
376 CS4231U(chip, REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 spin_unlock_irqrestore(&chip->lock, flags);
378}
379
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100380static void snd_cs4231_mce_down(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200382 unsigned long flags, timeout;
383 int reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 snd_cs4231_busy_wait(chip);
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200386 spin_lock_irqsave(&chip->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200388 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
389 snd_printdd("mce_down [%p] - auto calibration time out (0)\n",
390 CS4231U(chip, REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#endif
392 chip->mce_bit &= ~CS4231_MCE;
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200393 reg = __cs4231_readb(chip, CS4231U(chip, REGSEL));
394 __cs4231_writeb(chip, chip->mce_bit | (reg & 0x1f),
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200395 CS4231U(chip, REGSEL));
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200396 if (reg == 0x80)
397 snd_printdd("mce_down [%p]: serious init problem "
398 "- codec still busy\n", chip->port);
399 if ((reg & CS4231_MCE) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 spin_unlock_irqrestore(&chip->lock, flags);
401 return;
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Krzysztof Helt56f91582007-09-11 00:55:46 +0200404 /*
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200405 * Wait for auto-calibration (AC) process to finish, i.e. ACI to go low.
Krzysztof Helt56f91582007-09-11 00:55:46 +0200406 */
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200407 timeout = jiffies + msecs_to_jiffies(250);
408 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 spin_unlock_irqrestore(&chip->lock, flags);
Takashi Iwaib875d652007-09-11 10:12:14 +0200410 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200412 reg = snd_cs4231_in(chip, CS4231_TEST_INIT);
413 reg &= CS4231_CALIB_IN_PROGRESS;
414 } while (reg && time_before(jiffies, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 spin_unlock_irqrestore(&chip->lock, flags);
Krzysztof Helt9823adf2007-10-16 14:54:58 +0200416
417 if (reg)
418 snd_printk(KERN_ERR
419 "mce_down - auto calibration time out (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100422static void snd_cs4231_advance_dma(struct cs4231_dma_control *dma_cont,
423 struct snd_pcm_substream *substream,
424 unsigned int *periods_sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100426 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 while (1) {
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700429 unsigned int period_size = snd_pcm_lib_period_bytes(substream);
430 unsigned int offset = period_size * (*periods_sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Takashi Iwai5a19b172013-11-05 15:02:42 +0100432 if (WARN_ON(period_size >= (1 << 24)))
433 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200435 if (dma_cont->request(dma_cont,
436 runtime->dma_addr + offset, period_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 (*periods_sent) = ((*periods_sent) + 1) % runtime->periods;
439 }
440}
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700441
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100442static void cs4231_dma_trigger(struct snd_pcm_substream *substream,
443 unsigned int what, int on)
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700444{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100445 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
446 struct cs4231_dma_control *dma_cont;
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700447
Georg Chini5a820fa2005-11-07 14:08:25 -0800448 if (what & CS4231_PLAYBACK_ENABLE) {
Georg Chinib1282542005-11-07 14:09:19 -0800449 dma_cont = &chip->p_dma;
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700450 if (on) {
Georg Chinib1282542005-11-07 14:09:19 -0800451 dma_cont->prepare(dma_cont, 0);
452 dma_cont->enable(dma_cont, 1);
453 snd_cs4231_advance_dma(dma_cont,
Georg Chini5a820fa2005-11-07 14:08:25 -0800454 chip->playback_substream,
455 &chip->p_periods_sent);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700456 } else {
Georg Chinib1282542005-11-07 14:09:19 -0800457 dma_cont->enable(dma_cont, 0);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700458 }
Georg Chini5a820fa2005-11-07 14:08:25 -0800459 }
460 if (what & CS4231_RECORD_ENABLE) {
Georg Chinib1282542005-11-07 14:09:19 -0800461 dma_cont = &chip->c_dma;
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700462 if (on) {
Georg Chinib1282542005-11-07 14:09:19 -0800463 dma_cont->prepare(dma_cont, 1);
464 dma_cont->enable(dma_cont, 1);
465 snd_cs4231_advance_dma(dma_cont,
Georg Chini5a820fa2005-11-07 14:08:25 -0800466 chip->capture_substream,
467 &chip->c_periods_sent);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700468 } else {
Georg Chinib1282542005-11-07 14:09:19 -0800469 dma_cont->enable(dma_cont, 0);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700470 }
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100474static int snd_cs4231_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100476 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int result = 0;
478
479 switch (cmd) {
480 case SNDRV_PCM_TRIGGER_START:
481 case SNDRV_PCM_TRIGGER_STOP:
482 {
483 unsigned int what = 0;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100484 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 unsigned long flags;
486
Takashi Iwaief991b92007-02-22 12:52:53 +0100487 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (s == chip->playback_substream) {
489 what |= CS4231_PLAYBACK_ENABLE;
490 snd_pcm_trigger_done(s, substream);
491 } else if (s == chip->capture_substream) {
492 what |= CS4231_RECORD_ENABLE;
493 snd_pcm_trigger_done(s, substream);
494 }
495 }
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 spin_lock_irqsave(&chip->lock, flags);
498 if (cmd == SNDRV_PCM_TRIGGER_START) {
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700499 cs4231_dma_trigger(substream, what, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 chip->image[CS4231_IFACE_CTRL] |= what;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 } else {
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700502 cs4231_dma_trigger(substream, what, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 chip->image[CS4231_IFACE_CTRL] &= ~what;
504 }
505 snd_cs4231_out(chip, CS4231_IFACE_CTRL,
506 chip->image[CS4231_IFACE_CTRL]);
507 spin_unlock_irqrestore(&chip->lock, flags);
508 break;
509 }
510 default:
511 result = -EINVAL;
512 break;
513 }
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return result;
516}
517
518/*
519 * CODEC I/O
520 */
521
522static unsigned char snd_cs4231_get_rate(unsigned int rate)
523{
524 int i;
525
526 for (i = 0; i < 14; i++)
527 if (rate == rates[i])
528 return freq_bits[i];
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return freq_bits[13];
531}
532
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200533static unsigned char snd_cs4231_get_format(struct snd_cs4231 *chip, int format,
534 int channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 unsigned char rformat;
537
538 rformat = CS4231_LINEAR_8;
539 switch (format) {
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200540 case SNDRV_PCM_FORMAT_MU_LAW:
541 rformat = CS4231_ULAW_8;
542 break;
543 case SNDRV_PCM_FORMAT_A_LAW:
544 rformat = CS4231_ALAW_8;
545 break;
546 case SNDRV_PCM_FORMAT_S16_LE:
547 rformat = CS4231_LINEAR_16;
548 break;
549 case SNDRV_PCM_FORMAT_S16_BE:
550 rformat = CS4231_LINEAR_16_BIG;
551 break;
552 case SNDRV_PCM_FORMAT_IMA_ADPCM:
553 rformat = CS4231_ADPCM_16;
554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 if (channels > 1)
557 rformat |= CS4231_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return rformat;
559}
560
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100561static void snd_cs4231_calibrate_mute(struct snd_cs4231 *chip, int mute)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 unsigned long flags;
564
565 mute = mute ? 1 : 0;
566 spin_lock_irqsave(&chip->lock, flags);
567 if (chip->calibrate_mute == mute) {
568 spin_unlock_irqrestore(&chip->lock, flags);
569 return;
570 }
571 if (!mute) {
572 snd_cs4231_dout(chip, CS4231_LEFT_INPUT,
573 chip->image[CS4231_LEFT_INPUT]);
574 snd_cs4231_dout(chip, CS4231_RIGHT_INPUT,
575 chip->image[CS4231_RIGHT_INPUT]);
576 snd_cs4231_dout(chip, CS4231_LOOPBACK,
577 chip->image[CS4231_LOOPBACK]);
578 }
579 snd_cs4231_dout(chip, CS4231_AUX1_LEFT_INPUT,
580 mute ? 0x80 : chip->image[CS4231_AUX1_LEFT_INPUT]);
581 snd_cs4231_dout(chip, CS4231_AUX1_RIGHT_INPUT,
582 mute ? 0x80 : chip->image[CS4231_AUX1_RIGHT_INPUT]);
583 snd_cs4231_dout(chip, CS4231_AUX2_LEFT_INPUT,
584 mute ? 0x80 : chip->image[CS4231_AUX2_LEFT_INPUT]);
585 snd_cs4231_dout(chip, CS4231_AUX2_RIGHT_INPUT,
586 mute ? 0x80 : chip->image[CS4231_AUX2_RIGHT_INPUT]);
587 snd_cs4231_dout(chip, CS4231_LEFT_OUTPUT,
588 mute ? 0x80 : chip->image[CS4231_LEFT_OUTPUT]);
589 snd_cs4231_dout(chip, CS4231_RIGHT_OUTPUT,
590 mute ? 0x80 : chip->image[CS4231_RIGHT_OUTPUT]);
591 snd_cs4231_dout(chip, CS4231_LEFT_LINE_IN,
592 mute ? 0x80 : chip->image[CS4231_LEFT_LINE_IN]);
593 snd_cs4231_dout(chip, CS4231_RIGHT_LINE_IN,
594 mute ? 0x80 : chip->image[CS4231_RIGHT_LINE_IN]);
595 snd_cs4231_dout(chip, CS4231_MONO_CTRL,
596 mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]);
597 chip->calibrate_mute = mute;
598 spin_unlock_irqrestore(&chip->lock, flags);
599}
600
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200601static void snd_cs4231_playback_format(struct snd_cs4231 *chip,
602 struct snd_pcm_hw_params *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 unsigned char pdfr)
604{
605 unsigned long flags;
606
Ingo Molnar12aa7572006-01-16 16:36:05 +0100607 mutex_lock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 snd_cs4231_calibrate_mute(chip, 1);
609
610 snd_cs4231_mce_up(chip);
611
612 spin_lock_irqsave(&chip->lock, flags);
613 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
614 (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) ?
615 (pdfr & 0xf0) | (chip->image[CS4231_REC_FORMAT] & 0x0f) :
616 pdfr);
617 spin_unlock_irqrestore(&chip->lock, flags);
618
619 snd_cs4231_mce_down(chip);
620
621 snd_cs4231_calibrate_mute(chip, 0);
Ingo Molnar12aa7572006-01-16 16:36:05 +0100622 mutex_unlock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200625static void snd_cs4231_capture_format(struct snd_cs4231 *chip,
626 struct snd_pcm_hw_params *params,
627 unsigned char cdfr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 unsigned long flags;
630
Ingo Molnar12aa7572006-01-16 16:36:05 +0100631 mutex_lock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 snd_cs4231_calibrate_mute(chip, 1);
633
634 snd_cs4231_mce_up(chip);
635
636 spin_lock_irqsave(&chip->lock, flags);
637 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) {
638 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
639 ((chip->image[CS4231_PLAYBK_FORMAT]) & 0xf0) |
640 (cdfr & 0x0f));
641 spin_unlock_irqrestore(&chip->lock, flags);
642 snd_cs4231_mce_down(chip);
643 snd_cs4231_mce_up(chip);
644 spin_lock_irqsave(&chip->lock, flags);
645 }
646 snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr);
647 spin_unlock_irqrestore(&chip->lock, flags);
648
649 snd_cs4231_mce_down(chip);
650
651 snd_cs4231_calibrate_mute(chip, 0);
Ingo Molnar12aa7572006-01-16 16:36:05 +0100652 mutex_unlock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655/*
656 * Timer interface
657 */
658
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100659static unsigned long snd_cs4231_timer_resolution(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100661 struct snd_cs4231 *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920;
664}
665
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100666static int snd_cs4231_timer_start(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 unsigned long flags;
669 unsigned int ticks;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100670 struct snd_cs4231 *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 spin_lock_irqsave(&chip->lock, flags);
673 ticks = timer->sticks;
674 if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 ||
675 (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] ||
676 (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) {
677 snd_cs4231_out(chip, CS4231_TIMER_HIGH,
678 chip->image[CS4231_TIMER_HIGH] =
679 (unsigned char) (ticks >> 8));
680 snd_cs4231_out(chip, CS4231_TIMER_LOW,
681 chip->image[CS4231_TIMER_LOW] =
682 (unsigned char) ticks);
683 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200684 chip->image[CS4231_ALT_FEATURE_1] |
685 CS4231_TIMER_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687 spin_unlock_irqrestore(&chip->lock, flags);
688
689 return 0;
690}
691
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100692static int snd_cs4231_timer_stop(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 unsigned long flags;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100695 struct snd_cs4231 *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200698 chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200700 chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 spin_unlock_irqrestore(&chip->lock, flags);
702
703 return 0;
704}
705
Bill Pemberton32e02a72012-12-06 12:35:25 -0500706static void snd_cs4231_init(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 unsigned long flags;
709
710 snd_cs4231_mce_down(chip);
711
712#ifdef SNDRV_DEBUG_MCE
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700713 snd_printdd("init: (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#endif
715 snd_cs4231_mce_up(chip);
716 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200717 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE |
718 CS4231_PLAYBACK_PIO |
719 CS4231_RECORD_ENABLE |
720 CS4231_RECORD_PIO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 CS4231_CALIB_MODE);
722 chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB;
723 snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]);
724 spin_unlock_irqrestore(&chip->lock, flags);
725 snd_cs4231_mce_down(chip);
726
727#ifdef SNDRV_DEBUG_MCE
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700728 snd_printdd("init: (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729#endif
730
731 snd_cs4231_mce_up(chip);
732 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200733 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
734 chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 spin_unlock_irqrestore(&chip->lock, flags);
736 snd_cs4231_mce_down(chip);
737
738#ifdef SNDRV_DEBUG_MCE
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200739 snd_printdd("init: (3) - afei = 0x%x\n",
740 chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741#endif
742
743 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200744 snd_cs4231_out(chip, CS4231_ALT_FEATURE_2,
745 chip->image[CS4231_ALT_FEATURE_2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 spin_unlock_irqrestore(&chip->lock, flags);
747
748 snd_cs4231_mce_up(chip);
749 spin_lock_irqsave(&chip->lock, flags);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200750 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
751 chip->image[CS4231_PLAYBK_FORMAT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 spin_unlock_irqrestore(&chip->lock, flags);
753 snd_cs4231_mce_down(chip);
754
755#ifdef SNDRV_DEBUG_MCE
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700756 snd_printdd("init: (4)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757#endif
758
759 snd_cs4231_mce_up(chip);
760 spin_lock_irqsave(&chip->lock, flags);
761 snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT]);
762 spin_unlock_irqrestore(&chip->lock, flags);
763 snd_cs4231_mce_down(chip);
764
765#ifdef SNDRV_DEBUG_MCE
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700766 snd_printdd("init: (5)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767#endif
768}
769
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100770static int snd_cs4231_open(struct snd_cs4231 *chip, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned long flags;
773
Ingo Molnar12aa7572006-01-16 16:36:05 +0100774 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if ((chip->mode & mode)) {
Ingo Molnar12aa7572006-01-16 16:36:05 +0100776 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return -EAGAIN;
778 }
779 if (chip->mode & CS4231_MODE_OPEN) {
780 chip->mode |= mode;
Ingo Molnar12aa7572006-01-16 16:36:05 +0100781 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
783 }
784 /* ok. now enable and ack CODEC IRQ */
785 spin_lock_irqsave(&chip->lock, flags);
786 snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ |
787 CS4231_RECORD_IRQ |
788 CS4231_TIMER_IRQ);
789 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200790 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
791 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ |
794 CS4231_RECORD_IRQ |
795 CS4231_TIMER_IRQ);
796 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 spin_unlock_irqrestore(&chip->lock, flags);
799
800 chip->mode = mode;
Ingo Molnar12aa7572006-01-16 16:36:05 +0100801 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return 0;
803}
804
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100805static void snd_cs4231_close(struct snd_cs4231 *chip, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 unsigned long flags;
808
Ingo Molnar12aa7572006-01-16 16:36:05 +0100809 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 chip->mode &= ~mode;
811 if (chip->mode & CS4231_MODE_OPEN) {
Ingo Molnar12aa7572006-01-16 16:36:05 +0100812 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return;
814 }
815 snd_cs4231_calibrate_mute(chip, 1);
816
817 /* disable IRQ */
818 spin_lock_irqsave(&chip->lock, flags);
819 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200820 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
821 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* now disable record & playback */
824
825 if (chip->image[CS4231_IFACE_CTRL] &
826 (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
827 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) {
828 spin_unlock_irqrestore(&chip->lock, flags);
829 snd_cs4231_mce_up(chip);
830 spin_lock_irqsave(&chip->lock, flags);
831 chip->image[CS4231_IFACE_CTRL] &=
832 ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
833 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200834 snd_cs4231_out(chip, CS4231_IFACE_CTRL,
835 chip->image[CS4231_IFACE_CTRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 spin_unlock_irqrestore(&chip->lock, flags);
837 snd_cs4231_mce_down(chip);
838 spin_lock_irqsave(&chip->lock, flags);
839 }
840
841 /* clear IRQ again */
842 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +0200843 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
844 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_unlock_irqrestore(&chip->lock, flags);
846
847 snd_cs4231_calibrate_mute(chip, 0);
848
849 chip->mode = 0;
Ingo Molnar12aa7572006-01-16 16:36:05 +0100850 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/*
854 * timer open/close
855 */
856
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100857static int snd_cs4231_timer_open(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100859 struct snd_cs4231 *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 snd_cs4231_open(chip, CS4231_MODE_TIMER);
861 return 0;
862}
863
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200864static int snd_cs4231_timer_close(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100866 struct snd_cs4231 *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 snd_cs4231_close(chip, CS4231_MODE_TIMER);
868 return 0;
869}
870
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200871static struct snd_timer_hardware snd_cs4231_timer_table = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 .flags = SNDRV_TIMER_HW_AUTO,
873 .resolution = 9945,
874 .ticks = 65535,
875 .open = snd_cs4231_timer_open,
876 .close = snd_cs4231_timer_close,
877 .c_resolution = snd_cs4231_timer_resolution,
878 .start = snd_cs4231_timer_start,
879 .stop = snd_cs4231_timer_stop,
880};
881
882/*
883 * ok.. exported functions..
884 */
885
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100886static int snd_cs4231_playback_hw_params(struct snd_pcm_substream *substream,
887 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100889 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 unsigned char new_pdfr;
891 int err;
892
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200893 err = snd_pcm_lib_malloc_pages(substream,
894 params_buffer_bytes(hw_params));
895 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return err;
897 new_pdfr = snd_cs4231_get_format(chip, params_format(hw_params),
898 params_channels(hw_params)) |
899 snd_cs4231_get_rate(params_rate(hw_params));
900 snd_cs4231_playback_format(chip, hw_params, new_pdfr);
901
902 return 0;
903}
904
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100905static int snd_cs4231_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100907 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
908 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 unsigned long flags;
910
911 spin_lock_irqsave(&chip->lock, flags);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE |
914 CS4231_PLAYBACK_PIO);
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700915
Takashi Iwai5a19b172013-11-05 15:02:42 +0100916 if (WARN_ON(runtime->period_size > 0xffff + 1))
917 return -EINVAL;
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700918
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700919 chip->p_periods_sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 spin_unlock_irqrestore(&chip->lock, flags);
921
922 return 0;
923}
924
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100925static int snd_cs4231_capture_hw_params(struct snd_pcm_substream *substream,
926 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100928 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 unsigned char new_cdfr;
930 int err;
931
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200932 err = snd_pcm_lib_malloc_pages(substream,
933 params_buffer_bytes(hw_params));
934 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return err;
936 new_cdfr = snd_cs4231_get_format(chip, params_format(hw_params),
937 params_channels(hw_params)) |
938 snd_cs4231_get_rate(params_rate(hw_params));
939 snd_cs4231_capture_format(chip, hw_params, new_cdfr);
940
941 return 0;
942}
943
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100944static int snd_cs4231_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100946 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 unsigned long flags;
948
949 spin_lock_irqsave(&chip->lock, flags);
950 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE |
951 CS4231_RECORD_PIO);
952
Christopher Zimmermanna1314302005-09-21 00:41:22 -0700953
Georg Chini5a820fa2005-11-07 14:08:25 -0800954 chip->c_periods_sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 spin_unlock_irqrestore(&chip->lock, flags);
956
957 return 0;
958}
959
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100960static void snd_cs4231_overrange(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
962 unsigned long flags;
963 unsigned char res;
964
965 spin_lock_irqsave(&chip->lock, flags);
966 res = snd_cs4231_in(chip, CS4231_TEST_INIT);
967 spin_unlock_irqrestore(&chip->lock, flags);
968
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200969 /* detect overrange only above 0dB; may be user selectable? */
970 if (res & (0x08 | 0x02))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 chip->capture_substream->runtime->overrange++;
972}
973
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100974static void snd_cs4231_play_callback(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE) {
977 snd_pcm_period_elapsed(chip->playback_substream);
Georg Chinib1282542005-11-07 14:09:19 -0800978 snd_cs4231_advance_dma(&chip->p_dma, chip->playback_substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 &chip->p_periods_sent);
980 }
981}
982
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100983static void snd_cs4231_capture_callback(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) {
986 snd_pcm_period_elapsed(chip->capture_substream);
Georg Chinib1282542005-11-07 14:09:19 -0800987 snd_cs4231_advance_dma(&chip->c_dma, chip->capture_substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 &chip->c_periods_sent);
989 }
990}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200992static snd_pcm_uframes_t snd_cs4231_playback_pointer(
993 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +0100995 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
996 struct cs4231_dma_control *dma_cont = &chip->p_dma;
Georg Chini5a820fa2005-11-07 14:08:25 -0800997 size_t ptr;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +0200998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE))
1000 return 0;
Georg Chinib1282542005-11-07 14:09:19 -08001001 ptr = dma_cont->address(dma_cont);
1002 if (ptr != 0)
1003 ptr -= substream->runtime->dma_addr;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return bytes_to_frames(substream->runtime, ptr);
1006}
1007
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001008static snd_pcm_uframes_t snd_cs4231_capture_pointer(
1009 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001011 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1012 struct cs4231_dma_control *dma_cont = &chip->c_dma;
Georg Chini5a820fa2005-11-07 14:08:25 -08001013 size_t ptr;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE))
1016 return 0;
Georg Chinib1282542005-11-07 14:09:19 -08001017 ptr = dma_cont->address(dma_cont);
1018 if (ptr != 0)
1019 ptr -= substream->runtime->dma_addr;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return bytes_to_frames(substream->runtime, ptr);
1022}
1023
Bill Pemberton32e02a72012-12-06 12:35:25 -05001024static int snd_cs4231_probe(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 unsigned long flags;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001027 int i;
1028 int id = 0;
1029 int vers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 unsigned char *ptr;
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 for (i = 0; i < 50; i++) {
1033 mb();
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +02001034 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001035 msleep(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 else {
1037 spin_lock_irqsave(&chip->lock, flags);
1038 snd_cs4231_out(chip, CS4231_MISC_INFO, CS4231_MODE2);
1039 id = snd_cs4231_in(chip, CS4231_MISC_INFO) & 0x0f;
1040 vers = snd_cs4231_in(chip, CS4231_VERSION);
1041 spin_unlock_irqrestore(&chip->lock, flags);
1042 if (id == 0x0a)
1043 break; /* this is valid value */
1044 }
1045 }
1046 snd_printdd("cs4231: port = %p, id = 0x%x\n", chip->port, id);
1047 if (id != 0x0a)
1048 return -ENODEV; /* no valid device found */
1049
1050 spin_lock_irqsave(&chip->lock, flags);
1051
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +02001052 /* clear any pendings IRQ */
1053 __cs4231_readb(chip, CS4231U(chip, STATUS));
1054 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 mb();
1056
1057 spin_unlock_irqrestore(&chip->lock, flags);
1058
1059 chip->image[CS4231_MISC_INFO] = CS4231_MODE2;
1060 chip->image[CS4231_IFACE_CTRL] =
1061 chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA;
1062 chip->image[CS4231_ALT_FEATURE_1] = 0x80;
1063 chip->image[CS4231_ALT_FEATURE_2] = 0x01;
1064 if (vers & 0x20)
1065 chip->image[CS4231_ALT_FEATURE_2] |= 0x02;
1066
1067 ptr = (unsigned char *) &chip->image;
1068
1069 snd_cs4231_mce_down(chip);
1070
1071 spin_lock_irqsave(&chip->lock, flags);
1072
1073 for (i = 0; i < 32; i++) /* ok.. fill all CS4231 registers */
1074 snd_cs4231_out(chip, i, *ptr++);
1075
1076 spin_unlock_irqrestore(&chip->lock, flags);
1077
1078 snd_cs4231_mce_up(chip);
1079
1080 snd_cs4231_mce_down(chip);
1081
1082 mdelay(2);
1083
1084 return 0; /* all things are ok.. */
1085}
1086
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001087static struct snd_pcm_hardware snd_cs4231_playback = {
1088 .info = SNDRV_PCM_INFO_MMAP |
1089 SNDRV_PCM_INFO_INTERLEAVED |
1090 SNDRV_PCM_INFO_MMAP_VALID |
1091 SNDRV_PCM_INFO_SYNC_START,
1092 .formats = SNDRV_PCM_FMTBIT_MU_LAW |
1093 SNDRV_PCM_FMTBIT_A_LAW |
1094 SNDRV_PCM_FMTBIT_IMA_ADPCM |
1095 SNDRV_PCM_FMTBIT_U8 |
1096 SNDRV_PCM_FMTBIT_S16_LE |
1097 SNDRV_PCM_FMTBIT_S16_BE,
1098 .rates = SNDRV_PCM_RATE_KNOT |
1099 SNDRV_PCM_RATE_8000_48000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 .rate_min = 5510,
1101 .rate_max = 48000,
1102 .channels_min = 1,
1103 .channels_max = 2,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001104 .buffer_bytes_max = 32 * 1024,
David S. Millerf9af1d92007-01-03 18:51:54 -08001105 .period_bytes_min = 64,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001106 .period_bytes_max = 32 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 .periods_min = 1,
1108 .periods_max = 1024,
1109};
1110
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001111static struct snd_pcm_hardware snd_cs4231_capture = {
1112 .info = SNDRV_PCM_INFO_MMAP |
1113 SNDRV_PCM_INFO_INTERLEAVED |
1114 SNDRV_PCM_INFO_MMAP_VALID |
1115 SNDRV_PCM_INFO_SYNC_START,
1116 .formats = SNDRV_PCM_FMTBIT_MU_LAW |
1117 SNDRV_PCM_FMTBIT_A_LAW |
1118 SNDRV_PCM_FMTBIT_IMA_ADPCM |
1119 SNDRV_PCM_FMTBIT_U8 |
1120 SNDRV_PCM_FMTBIT_S16_LE |
1121 SNDRV_PCM_FMTBIT_S16_BE,
1122 .rates = SNDRV_PCM_RATE_KNOT |
1123 SNDRV_PCM_RATE_8000_48000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 .rate_min = 5510,
1125 .rate_max = 48000,
1126 .channels_min = 1,
1127 .channels_max = 2,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001128 .buffer_bytes_max = 32 * 1024,
David S. Millerf9af1d92007-01-03 18:51:54 -08001129 .period_bytes_min = 64,
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001130 .period_bytes_max = 32 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 .periods_min = 1,
1132 .periods_max = 1024,
1133};
1134
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001135static int snd_cs4231_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001137 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1138 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int err;
1140
1141 runtime->hw = snd_cs4231_playback;
1142
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001143 err = snd_cs4231_open(chip, CS4231_MODE_PLAY);
1144 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1146 return err;
1147 }
1148 chip->playback_substream = substream;
1149 chip->p_periods_sent = 0;
1150 snd_pcm_set_sync(substream);
1151 snd_cs4231_xrate(runtime);
1152
1153 return 0;
1154}
1155
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001156static int snd_cs4231_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001158 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1159 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 int err;
1161
1162 runtime->hw = snd_cs4231_capture;
1163
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001164 err = snd_cs4231_open(chip, CS4231_MODE_RECORD);
1165 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1167 return err;
1168 }
1169 chip->capture_substream = substream;
1170 chip->c_periods_sent = 0;
1171 snd_pcm_set_sync(substream);
1172 snd_cs4231_xrate(runtime);
1173
1174 return 0;
1175}
1176
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001177static int snd_cs4231_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001179 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 snd_cs4231_close(chip, CS4231_MODE_PLAY);
Georg Chinib1282542005-11-07 14:09:19 -08001182 chip->playback_substream = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 return 0;
1185}
1186
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001187static int snd_cs4231_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001189 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 snd_cs4231_close(chip, CS4231_MODE_RECORD);
Georg Chinib1282542005-11-07 14:09:19 -08001192 chip->capture_substream = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 return 0;
1195}
1196
1197/* XXX We can do some power-management, in particular on EBUS using
1198 * XXX the audio AUXIO register...
1199 */
1200
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001201static struct snd_pcm_ops snd_cs4231_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 .open = snd_cs4231_playback_open,
1203 .close = snd_cs4231_playback_close,
1204 .ioctl = snd_pcm_lib_ioctl,
1205 .hw_params = snd_cs4231_playback_hw_params,
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001206 .hw_free = snd_pcm_lib_free_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 .prepare = snd_cs4231_playback_prepare,
1208 .trigger = snd_cs4231_trigger,
1209 .pointer = snd_cs4231_playback_pointer,
1210};
1211
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001212static struct snd_pcm_ops snd_cs4231_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 .open = snd_cs4231_capture_open,
1214 .close = snd_cs4231_capture_close,
1215 .ioctl = snd_pcm_lib_ioctl,
1216 .hw_params = snd_cs4231_capture_hw_params,
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001217 .hw_free = snd_pcm_lib_free_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 .prepare = snd_cs4231_capture_prepare,
1219 .trigger = snd_cs4231_trigger,
1220 .pointer = snd_cs4231_capture_pointer,
1221};
1222
Bill Pemberton32e02a72012-12-06 12:35:25 -05001223static int snd_cs4231_pcm(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001225 struct snd_cs4231 *chip = card->private_data;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001226 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 int err;
1228
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001229 err = snd_pcm_new(card, "CS4231", 0, 1, 1, &pcm);
1230 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return err;
1232
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001233 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1234 &snd_cs4231_playback_ops);
1235 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1236 &snd_cs4231_capture_ops);
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /* global setup */
1239 pcm->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
1241 strcpy(pcm->name, "CS4231");
1242
David S. Millerafc88ad2008-08-30 00:13:55 -07001243 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1244 &chip->op->dev,
1245 64 * 1024, 128 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 chip->pcm = pcm;
1248
1249 return 0;
1250}
1251
Bill Pemberton32e02a72012-12-06 12:35:25 -05001252static int snd_cs4231_timer(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001254 struct snd_cs4231 *chip = card->private_data;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001255 struct snd_timer *timer;
1256 struct snd_timer_id tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 int err;
1258
1259 /* Timer initialization */
1260 tid.dev_class = SNDRV_TIMER_CLASS_CARD;
1261 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001262 tid.card = card->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 tid.device = 0;
1264 tid.subdevice = 0;
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001265 err = snd_timer_new(card, "CS4231", &tid, &timer);
1266 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return err;
1268 strcpy(timer->name, "CS4231");
1269 timer->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 timer->hw = snd_cs4231_timer_table;
1271 chip->timer = timer;
1272
1273 return 0;
1274}
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276/*
1277 * MIXER part
1278 */
1279
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001280static int snd_cs4231_info_mux(struct snd_kcontrol *kcontrol,
1281 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 static char *texts[4] = {
1284 "Line", "CD", "Mic", "Mix"
1285 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1288 uinfo->count = 2;
1289 uinfo->value.enumerated.items = 4;
1290 if (uinfo->value.enumerated.item > 3)
1291 uinfo->value.enumerated.item = 3;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001292 strcpy(uinfo->value.enumerated.name,
1293 texts[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 return 0;
1296}
1297
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001298static int snd_cs4231_get_mux(struct snd_kcontrol *kcontrol,
1299 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001301 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 unsigned long flags;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 spin_lock_irqsave(&chip->lock, flags);
1305 ucontrol->value.enumerated.item[0] =
1306 (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6;
1307 ucontrol->value.enumerated.item[1] =
1308 (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6;
1309 spin_unlock_irqrestore(&chip->lock, flags);
1310
1311 return 0;
1312}
1313
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001314static int snd_cs4231_put_mux(struct snd_kcontrol *kcontrol,
1315 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001317 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 unsigned long flags;
1319 unsigned short left, right;
1320 int change;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (ucontrol->value.enumerated.item[0] > 3 ||
1323 ucontrol->value.enumerated.item[1] > 3)
1324 return -EINVAL;
1325 left = ucontrol->value.enumerated.item[0] << 6;
1326 right = ucontrol->value.enumerated.item[1] << 6;
1327
1328 spin_lock_irqsave(&chip->lock, flags);
1329
1330 left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left;
1331 right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right;
1332 change = left != chip->image[CS4231_LEFT_INPUT] ||
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001333 right != chip->image[CS4231_RIGHT_INPUT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 snd_cs4231_out(chip, CS4231_LEFT_INPUT, left);
1335 snd_cs4231_out(chip, CS4231_RIGHT_INPUT, right);
1336
1337 spin_unlock_irqrestore(&chip->lock, flags);
1338
1339 return change;
1340}
1341
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001342static int snd_cs4231_info_single(struct snd_kcontrol *kcontrol,
1343 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
1345 int mask = (kcontrol->private_value >> 16) & 0xff;
1346
1347 uinfo->type = (mask == 1) ?
1348 SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1349 uinfo->count = 1;
1350 uinfo->value.integer.min = 0;
1351 uinfo->value.integer.max = mask;
1352
1353 return 0;
1354}
1355
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001356static int snd_cs4231_get_single(struct snd_kcontrol *kcontrol,
1357 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001359 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 unsigned long flags;
1361 int reg = kcontrol->private_value & 0xff;
1362 int shift = (kcontrol->private_value >> 8) & 0xff;
1363 int mask = (kcontrol->private_value >> 16) & 0xff;
1364 int invert = (kcontrol->private_value >> 24) & 0xff;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 spin_lock_irqsave(&chip->lock, flags);
1367
1368 ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask;
1369
1370 spin_unlock_irqrestore(&chip->lock, flags);
1371
1372 if (invert)
1373 ucontrol->value.integer.value[0] =
1374 (mask - ucontrol->value.integer.value[0]);
1375
1376 return 0;
1377}
1378
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001379static int snd_cs4231_put_single(struct snd_kcontrol *kcontrol,
1380 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001382 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 unsigned long flags;
1384 int reg = kcontrol->private_value & 0xff;
1385 int shift = (kcontrol->private_value >> 8) & 0xff;
1386 int mask = (kcontrol->private_value >> 16) & 0xff;
1387 int invert = (kcontrol->private_value >> 24) & 0xff;
1388 int change;
1389 unsigned short val;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 val = (ucontrol->value.integer.value[0] & mask);
1392 if (invert)
1393 val = mask - val;
1394 val <<= shift;
1395
1396 spin_lock_irqsave(&chip->lock, flags);
1397
1398 val = (chip->image[reg] & ~(mask << shift)) | val;
1399 change = val != chip->image[reg];
1400 snd_cs4231_out(chip, reg, val);
1401
1402 spin_unlock_irqrestore(&chip->lock, flags);
1403
1404 return change;
1405}
1406
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001407static int snd_cs4231_info_double(struct snd_kcontrol *kcontrol,
1408 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 int mask = (kcontrol->private_value >> 24) & 0xff;
1411
1412 uinfo->type = mask == 1 ?
1413 SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1414 uinfo->count = 2;
1415 uinfo->value.integer.min = 0;
1416 uinfo->value.integer.max = mask;
1417
1418 return 0;
1419}
1420
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001421static int snd_cs4231_get_double(struct snd_kcontrol *kcontrol,
1422 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001424 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 unsigned long flags;
1426 int left_reg = kcontrol->private_value & 0xff;
1427 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1428 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1429 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1430 int mask = (kcontrol->private_value >> 24) & 0xff;
1431 int invert = (kcontrol->private_value >> 22) & 1;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 spin_lock_irqsave(&chip->lock, flags);
1434
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001435 ucontrol->value.integer.value[0] =
1436 (chip->image[left_reg] >> shift_left) & mask;
1437 ucontrol->value.integer.value[1] =
1438 (chip->image[right_reg] >> shift_right) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 spin_unlock_irqrestore(&chip->lock, flags);
1441
1442 if (invert) {
1443 ucontrol->value.integer.value[0] =
1444 (mask - ucontrol->value.integer.value[0]);
1445 ucontrol->value.integer.value[1] =
1446 (mask - ucontrol->value.integer.value[1]);
1447 }
1448
1449 return 0;
1450}
1451
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001452static int snd_cs4231_put_double(struct snd_kcontrol *kcontrol,
1453 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001455 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 unsigned long flags;
1457 int left_reg = kcontrol->private_value & 0xff;
1458 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1459 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1460 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1461 int mask = (kcontrol->private_value >> 24) & 0xff;
1462 int invert = (kcontrol->private_value >> 22) & 1;
1463 int change;
1464 unsigned short val1, val2;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 val1 = ucontrol->value.integer.value[0] & mask;
1467 val2 = ucontrol->value.integer.value[1] & mask;
1468 if (invert) {
1469 val1 = mask - val1;
1470 val2 = mask - val2;
1471 }
1472 val1 <<= shift_left;
1473 val2 <<= shift_right;
1474
1475 spin_lock_irqsave(&chip->lock, flags);
1476
1477 val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1;
1478 val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001479 change = val1 != chip->image[left_reg];
1480 change |= val2 != chip->image[right_reg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 snd_cs4231_out(chip, left_reg, val1);
1482 snd_cs4231_out(chip, right_reg, val2);
1483
1484 spin_unlock_irqrestore(&chip->lock, flags);
1485
1486 return change;
1487}
1488
1489#define CS4231_SINGLE(xname, xindex, reg, shift, mask, invert) \
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001490{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \
1491 .info = snd_cs4231_info_single, \
1492 .get = snd_cs4231_get_single, .put = snd_cs4231_put_single, \
1493 .private_value = (reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24) }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001495#define CS4231_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, \
1496 shift_right, mask, invert) \
1497{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \
1498 .info = snd_cs4231_info_double, \
1499 .get = snd_cs4231_get_double, .put = snd_cs4231_put_double, \
1500 .private_value = (left_reg) | ((right_reg) << 8) | ((shift_left) << 16) | \
1501 ((shift_right) << 19) | ((mask) << 24) | ((invert) << 22) }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Bill Pemberton32e02a72012-12-06 12:35:25 -05001503static struct snd_kcontrol_new snd_cs4231_controls[] = {
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001504CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT,
1505 CS4231_RIGHT_OUTPUT, 7, 7, 1, 1),
1506CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT,
1507 CS4231_RIGHT_OUTPUT, 0, 0, 63, 1),
1508CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN,
1509 CS4231_RIGHT_LINE_IN, 7, 7, 1, 1),
1510CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN,
1511 CS4231_RIGHT_LINE_IN, 0, 0, 31, 1),
1512CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT,
1513 CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1),
1514CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT,
1515 CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1),
1516CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT,
1517 CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1),
1518CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT,
1519 CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL, 7, 1, 1),
1521CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1),
1522CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, 6, 1, 1),
1523CS4231_SINGLE("Mono Output Playback Bypass", 0, CS4231_MONO_CTRL, 5, 1, 0),
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001524CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0,
1525 15, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
1527 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1528 .name = "Capture Source",
1529 .info = snd_cs4231_info_mux,
1530 .get = snd_cs4231_get_mux,
1531 .put = snd_cs4231_put_mux,
1532},
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001533CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5,
1534 1, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0),
1536CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1),
1537/* SPARC specific uses of XCTL{0,1} general purpose outputs. */
1538CS4231_SINGLE("Line Out Switch", 0, CS4231_PIN_CTRL, 6, 1, 1),
1539CS4231_SINGLE("Headphone Out Switch", 0, CS4231_PIN_CTRL, 7, 1, 1)
1540};
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001541
Bill Pemberton32e02a72012-12-06 12:35:25 -05001542static int snd_cs4231_mixer(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001544 struct snd_cs4231 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 int err, idx;
1546
Takashi Iwai5e246b82008-08-08 17:12:47 +02001547 if (snd_BUG_ON(!chip || !chip->pcm))
1548 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 strcpy(card->mixername, chip->pcm->name);
1551
1552 for (idx = 0; idx < ARRAY_SIZE(snd_cs4231_controls); idx++) {
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001553 err = snd_ctl_add(card,
1554 snd_ctl_new1(&snd_cs4231_controls[idx], chip));
1555 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return err;
1557 }
1558 return 0;
1559}
1560
1561static int dev;
1562
Bill Pemberton32e02a72012-12-06 12:35:25 -05001563static int cs4231_attach_begin(struct snd_card **rcard)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001565 struct snd_card *card;
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001566 struct snd_cs4231 *chip;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001567 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 *rcard = NULL;
1570
1571 if (dev >= SNDRV_CARDS)
1572 return -ENODEV;
1573
1574 if (!enable[dev]) {
1575 dev++;
1576 return -ENOENT;
1577 }
1578
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001579 err = snd_card_create(index[dev], id[dev], THIS_MODULE,
1580 sizeof(struct snd_cs4231), &card);
1581 if (err < 0)
1582 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 strcpy(card->driver, "CS4231");
1585 strcpy(card->shortname, "Sun CS4231");
1586
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001587 chip = card->private_data;
1588 chip->card = card;
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *rcard = card;
1591 return 0;
1592}
1593
Bill Pemberton32e02a72012-12-06 12:35:25 -05001594static int cs4231_attach_finish(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001596 struct snd_cs4231 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int err;
1598
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001599 err = snd_cs4231_pcm(card);
1600 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 goto out_err;
1602
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001603 err = snd_cs4231_mixer(card);
1604 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 goto out_err;
1606
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001607 err = snd_cs4231_timer(card);
1608 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 goto out_err;
1610
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001611 err = snd_card_register(card);
1612 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 goto out_err;
1614
David S. Millerafc88ad2008-08-30 00:13:55 -07001615 dev_set_drvdata(&chip->op->dev, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 dev++;
1618 return 0;
1619
1620out_err:
1621 snd_card_free(card);
1622 return err;
1623}
1624
1625#ifdef SBUS_SUPPORT
Georg Chinib1282542005-11-07 14:09:19 -08001626
David Howells7d12e782006-10-05 14:55:46 +01001627static irqreturn_t snd_cs4231_sbus_interrupt(int irq, void *dev_id)
Georg Chinib1282542005-11-07 14:09:19 -08001628{
1629 unsigned long flags;
1630 unsigned char status;
1631 u32 csr;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001632 struct snd_cs4231 *chip = dev_id;
Georg Chinib1282542005-11-07 14:09:19 -08001633
1634 /*This is IRQ is not raised by the cs4231*/
Krzysztof Helt7e52f3d2007-09-05 15:08:23 +02001635 if (!(__cs4231_readb(chip, CS4231U(chip, STATUS)) & CS4231_GLOBALIRQ))
Georg Chinib1282542005-11-07 14:09:19 -08001636 return IRQ_NONE;
1637
1638 /* ACK the APC interrupt. */
1639 csr = sbus_readl(chip->port + APCCSR);
1640
1641 sbus_writel(csr, chip->port + APCCSR);
1642
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001643 if ((csr & APC_PDMA_READY) &&
1644 (csr & APC_PLAY_INT) &&
Georg Chinib1282542005-11-07 14:09:19 -08001645 (csr & APC_XINT_PNVA) &&
1646 !(csr & APC_XINT_EMPT))
1647 snd_cs4231_play_callback(chip);
1648
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001649 if ((csr & APC_CDMA_READY) &&
1650 (csr & APC_CAPT_INT) &&
Georg Chinib1282542005-11-07 14:09:19 -08001651 (csr & APC_XINT_CNVA) &&
1652 !(csr & APC_XINT_EMPT))
1653 snd_cs4231_capture_callback(chip);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001654
Georg Chinib1282542005-11-07 14:09:19 -08001655 status = snd_cs4231_in(chip, CS4231_IRQ_STATUS);
1656
1657 if (status & CS4231_TIMER_IRQ) {
1658 if (chip->timer)
1659 snd_timer_interrupt(chip->timer, chip->timer->sticks);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001660 }
Georg Chinib1282542005-11-07 14:09:19 -08001661
1662 if ((status & CS4231_RECORD_IRQ) && (csr & APC_CDMA_READY))
1663 snd_cs4231_overrange(chip);
1664
1665 /* ACK the CS4231 interrupt. */
1666 spin_lock_irqsave(&chip->lock, flags);
1667 snd_cs4231_outm(chip, CS4231_IRQ_STATUS, ~CS4231_ALL_IRQS | ~status, 0);
1668 spin_unlock_irqrestore(&chip->lock, flags);
1669
Georg Chinid35a1b92007-01-02 21:28:17 -08001670 return IRQ_HANDLED;
Georg Chinib1282542005-11-07 14:09:19 -08001671}
1672
1673/*
1674 * SBUS DMA routines
1675 */
1676
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001677static int sbus_dma_request(struct cs4231_dma_control *dma_cont,
1678 dma_addr_t bus_addr, size_t len)
Georg Chinib1282542005-11-07 14:09:19 -08001679{
1680 unsigned long flags;
1681 u32 test, csr;
1682 int err;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001683 struct sbus_dma_info *base = &dma_cont->sbus_info;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001684
Georg Chinib1282542005-11-07 14:09:19 -08001685 if (len >= (1 << 24))
1686 return -EINVAL;
1687 spin_lock_irqsave(&base->lock, flags);
1688 csr = sbus_readl(base->regs + APCCSR);
1689 err = -EINVAL;
1690 test = APC_CDMA_READY;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001691 if (base->dir == APC_PLAY)
Georg Chinib1282542005-11-07 14:09:19 -08001692 test = APC_PDMA_READY;
1693 if (!(csr & test))
1694 goto out;
1695 err = -EBUSY;
Georg Chinib1282542005-11-07 14:09:19 -08001696 test = APC_XINT_CNVA;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001697 if (base->dir == APC_PLAY)
Georg Chinib1282542005-11-07 14:09:19 -08001698 test = APC_XINT_PNVA;
1699 if (!(csr & test))
1700 goto out;
1701 err = 0;
1702 sbus_writel(bus_addr, base->regs + base->dir + APCNVA);
1703 sbus_writel(len, base->regs + base->dir + APCNC);
1704out:
1705 spin_unlock_irqrestore(&base->lock, flags);
1706 return err;
1707}
1708
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001709static void sbus_dma_prepare(struct cs4231_dma_control *dma_cont, int d)
Georg Chinib1282542005-11-07 14:09:19 -08001710{
1711 unsigned long flags;
1712 u32 csr, test;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001713 struct sbus_dma_info *base = &dma_cont->sbus_info;
Georg Chinib1282542005-11-07 14:09:19 -08001714
1715 spin_lock_irqsave(&base->lock, flags);
1716 csr = sbus_readl(base->regs + APCCSR);
1717 test = APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA |
1718 APC_XINT_PLAY | APC_XINT_PEMP | APC_XINT_GENL |
1719 APC_XINT_PENA;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001720 if (base->dir == APC_RECORD)
Georg Chinib1282542005-11-07 14:09:19 -08001721 test = APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA |
1722 APC_XINT_CAPT | APC_XINT_CEMP | APC_XINT_GENL;
1723 csr |= test;
1724 sbus_writel(csr, base->regs + APCCSR);
1725 spin_unlock_irqrestore(&base->lock, flags);
1726}
1727
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001728static void sbus_dma_enable(struct cs4231_dma_control *dma_cont, int on)
Georg Chinib1282542005-11-07 14:09:19 -08001729{
1730 unsigned long flags;
1731 u32 csr, shift;
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001732 struct sbus_dma_info *base = &dma_cont->sbus_info;
Georg Chinib1282542005-11-07 14:09:19 -08001733
1734 spin_lock_irqsave(&base->lock, flags);
1735 if (!on) {
Georg Chinid35a1b92007-01-02 21:28:17 -08001736 sbus_writel(0, base->regs + base->dir + APCNC);
1737 sbus_writel(0, base->regs + base->dir + APCNVA);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001738 if (base->dir == APC_PLAY) {
Georg Chini3daadf32007-08-01 21:55:58 -07001739 sbus_writel(0, base->regs + base->dir + APCC);
1740 sbus_writel(0, base->regs + base->dir + APCVA);
1741 }
Georg Chinid35a1b92007-01-02 21:28:17 -08001742
Georg Chini3daadf32007-08-01 21:55:58 -07001743 udelay(1200);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001744 }
Georg Chinib1282542005-11-07 14:09:19 -08001745 csr = sbus_readl(base->regs + APCCSR);
1746 shift = 0;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001747 if (base->dir == APC_PLAY)
Georg Chinib1282542005-11-07 14:09:19 -08001748 shift = 1;
1749 if (on)
1750 csr &= ~(APC_CPAUSE << shift);
1751 else
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001752 csr |= (APC_CPAUSE << shift);
Georg Chinib1282542005-11-07 14:09:19 -08001753 sbus_writel(csr, base->regs + APCCSR);
1754 if (on)
1755 csr |= (APC_CDMA_READY << shift);
1756 else
1757 csr &= ~(APC_CDMA_READY << shift);
1758 sbus_writel(csr, base->regs + APCCSR);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001759
Georg Chinib1282542005-11-07 14:09:19 -08001760 spin_unlock_irqrestore(&base->lock, flags);
1761}
1762
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001763static unsigned int sbus_dma_addr(struct cs4231_dma_control *dma_cont)
Georg Chinib1282542005-11-07 14:09:19 -08001764{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001765 struct sbus_dma_info *base = &dma_cont->sbus_info;
Georg Chinib1282542005-11-07 14:09:19 -08001766
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001767 return sbus_readl(base->regs + base->dir + APCVA);
Georg Chinib1282542005-11-07 14:09:19 -08001768}
1769
Georg Chinib1282542005-11-07 14:09:19 -08001770/*
1771 * Init and exit routines
1772 */
1773
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001774static int snd_cs4231_sbus_free(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Grant Likely2dc11582010-08-06 09:25:50 -06001776 struct platform_device *op = chip->op;
David S. Millerae251032008-08-27 18:24:01 -07001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (chip->irq[0])
1779 free_irq(chip->irq[0], chip);
1780
1781 if (chip->port)
David S. Millerae251032008-08-27 18:24:01 -07001782 of_iounmap(&op->resource[0], chip->port, chip->regs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return 0;
1785}
1786
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001787static int snd_cs4231_sbus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001789 struct snd_cs4231 *cp = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 return snd_cs4231_sbus_free(cp);
1792}
1793
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001794static struct snd_device_ops snd_cs4231_sbus_dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 .dev_free = snd_cs4231_sbus_dev_free,
1796};
1797
Bill Pemberton32e02a72012-12-06 12:35:25 -05001798static int snd_cs4231_sbus_create(struct snd_card *card,
1799 struct platform_device *op,
1800 int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001802 struct snd_cs4231 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int err;
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 spin_lock_init(&chip->lock);
Georg Chinib1282542005-11-07 14:09:19 -08001806 spin_lock_init(&chip->c_dma.sbus_info.lock);
1807 spin_lock_init(&chip->p_dma.sbus_info.lock);
Ingo Molnar12aa7572006-01-16 16:36:05 +01001808 mutex_init(&chip->mce_mutex);
1809 mutex_init(&chip->open_mutex);
David S. Millerafc88ad2008-08-30 00:13:55 -07001810 chip->op = op;
David S. Millerae251032008-08-27 18:24:01 -07001811 chip->regs_size = resource_size(&op->resource[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 memcpy(&chip->image, &snd_cs4231_original_image,
1813 sizeof(snd_cs4231_original_image));
1814
David S. Millerae251032008-08-27 18:24:01 -07001815 chip->port = of_ioremap(&op->resource[0], 0,
1816 chip->regs_size, "cs4231");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (!chip->port) {
Christopher Zimmermanna1314302005-09-21 00:41:22 -07001818 snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return -EIO;
1820 }
1821
Georg Chinib1282542005-11-07 14:09:19 -08001822 chip->c_dma.sbus_info.regs = chip->port;
1823 chip->p_dma.sbus_info.regs = chip->port;
1824 chip->c_dma.sbus_info.dir = APC_RECORD;
1825 chip->p_dma.sbus_info.dir = APC_PLAY;
1826
1827 chip->p_dma.prepare = sbus_dma_prepare;
1828 chip->p_dma.enable = sbus_dma_enable;
1829 chip->p_dma.request = sbus_dma_request;
1830 chip->p_dma.address = sbus_dma_addr;
Georg Chinib1282542005-11-07 14:09:19 -08001831
1832 chip->c_dma.prepare = sbus_dma_prepare;
1833 chip->c_dma.enable = sbus_dma_enable;
1834 chip->c_dma.request = sbus_dma_request;
1835 chip->c_dma.address = sbus_dma_addr;
Georg Chini5a820fa2005-11-07 14:08:25 -08001836
Grant Likely1636f8a2010-06-18 11:09:58 -06001837 if (request_irq(op->archdata.irqs[0], snd_cs4231_sbus_interrupt,
Thomas Gleixner65ca68b2006-07-01 19:29:46 -07001838 IRQF_SHARED, "cs4231", chip)) {
David S. Millerc6387a42006-06-20 01:21:29 -07001839 snd_printdd("cs4231-%d: Unable to grab SBUS IRQ %d\n",
Grant Likely1636f8a2010-06-18 11:09:58 -06001840 dev, op->archdata.irqs[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 snd_cs4231_sbus_free(chip);
1842 return -EBUSY;
1843 }
Grant Likely1636f8a2010-06-18 11:09:58 -06001844 chip->irq[0] = op->archdata.irqs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846 if (snd_cs4231_probe(chip) < 0) {
1847 snd_cs4231_sbus_free(chip);
1848 return -ENODEV;
1849 }
1850 snd_cs4231_init(chip);
1851
1852 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
1853 chip, &snd_cs4231_sbus_dev_ops)) < 0) {
1854 snd_cs4231_sbus_free(chip);
1855 return err;
1856 }
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return 0;
1859}
1860
Bill Pemberton32e02a72012-12-06 12:35:25 -05001861static int cs4231_sbus_probe(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
David S. Millerae251032008-08-27 18:24:01 -07001863 struct resource *rp = &op->resource[0];
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001864 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 int err;
1866
1867 err = cs4231_attach_begin(&card);
1868 if (err)
1869 return err;
1870
Andrew Morton5863aa62006-07-03 00:24:22 -07001871 sprintf(card->longname, "%s at 0x%02lx:0x%016Lx, irq %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 card->shortname,
1873 rp->flags & 0xffL,
Greg Kroah-Hartmanaa0a2dd2006-06-12 14:50:27 -07001874 (unsigned long long)rp->start,
Grant Likely1636f8a2010-06-18 11:09:58 -06001875 op->archdata.irqs[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
David S. Millerae251032008-08-27 18:24:01 -07001877 err = snd_cs4231_sbus_create(card, op, dev);
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001878 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 snd_card_free(card);
1880 return err;
1881 }
1882
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001883 return cs4231_attach_finish(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885#endif
1886
1887#ifdef EBUS_SUPPORT
Georg Chinib1282542005-11-07 14:09:19 -08001888
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001889static void snd_cs4231_ebus_play_callback(struct ebus_dma_info *p, int event,
1890 void *cookie)
Georg Chinib1282542005-11-07 14:09:19 -08001891{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001892 struct snd_cs4231 *chip = cookie;
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001893
Georg Chinib1282542005-11-07 14:09:19 -08001894 snd_cs4231_play_callback(chip);
1895}
1896
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001897static void snd_cs4231_ebus_capture_callback(struct ebus_dma_info *p,
1898 int event, void *cookie)
Georg Chinib1282542005-11-07 14:09:19 -08001899{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001900 struct snd_cs4231 *chip = cookie;
Georg Chinib1282542005-11-07 14:09:19 -08001901
1902 snd_cs4231_capture_callback(chip);
1903}
1904
1905/*
1906 * EBUS DMA wrappers
1907 */
1908
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02001909static int _ebus_dma_request(struct cs4231_dma_control *dma_cont,
1910 dma_addr_t bus_addr, size_t len)
Georg Chinib1282542005-11-07 14:09:19 -08001911{
1912 return ebus_dma_request(&dma_cont->ebus_info, bus_addr, len);
1913}
1914
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001915static void _ebus_dma_enable(struct cs4231_dma_control *dma_cont, int on)
Georg Chinib1282542005-11-07 14:09:19 -08001916{
1917 ebus_dma_enable(&dma_cont->ebus_info, on);
1918}
1919
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001920static void _ebus_dma_prepare(struct cs4231_dma_control *dma_cont, int dir)
Georg Chinib1282542005-11-07 14:09:19 -08001921{
1922 ebus_dma_prepare(&dma_cont->ebus_info, dir);
1923}
1924
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001925static unsigned int _ebus_dma_addr(struct cs4231_dma_control *dma_cont)
Georg Chinib1282542005-11-07 14:09:19 -08001926{
1927 return ebus_dma_addr(&dma_cont->ebus_info);
1928}
1929
Georg Chinib1282542005-11-07 14:09:19 -08001930/*
1931 * Init and exit routines
1932 */
1933
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001934static int snd_cs4231_ebus_free(struct snd_cs4231 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Grant Likely2dc11582010-08-06 09:25:50 -06001936 struct platform_device *op = chip->op;
David S. Millerafc88ad2008-08-30 00:13:55 -07001937
Georg Chinib1282542005-11-07 14:09:19 -08001938 if (chip->c_dma.ebus_info.regs) {
1939 ebus_dma_unregister(&chip->c_dma.ebus_info);
David S. Millerafc88ad2008-08-30 00:13:55 -07001940 of_iounmap(&op->resource[2], chip->c_dma.ebus_info.regs, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
Georg Chinib1282542005-11-07 14:09:19 -08001942 if (chip->p_dma.ebus_info.regs) {
1943 ebus_dma_unregister(&chip->p_dma.ebus_info);
David S. Millerafc88ad2008-08-30 00:13:55 -07001944 of_iounmap(&op->resource[1], chip->p_dma.ebus_info.regs, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946
1947 if (chip->port)
David S. Millerafc88ad2008-08-30 00:13:55 -07001948 of_iounmap(&op->resource[0], chip->port, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return 0;
1951}
1952
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001953static int snd_cs4231_ebus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001955 struct snd_cs4231 *cp = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 return snd_cs4231_ebus_free(cp);
1958}
1959
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01001960static struct snd_device_ops snd_cs4231_ebus_dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 .dev_free = snd_cs4231_ebus_dev_free,
1962};
1963
Bill Pemberton32e02a72012-12-06 12:35:25 -05001964static int snd_cs4231_ebus_create(struct snd_card *card,
1965 struct platform_device *op,
1966 int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02001968 struct snd_cs4231 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 int err;
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 spin_lock_init(&chip->lock);
Georg Chinib1282542005-11-07 14:09:19 -08001972 spin_lock_init(&chip->c_dma.ebus_info.lock);
1973 spin_lock_init(&chip->p_dma.ebus_info.lock);
Ingo Molnar12aa7572006-01-16 16:36:05 +01001974 mutex_init(&chip->mce_mutex);
1975 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 chip->flags |= CS4231_FLAG_EBUS;
David S. Millerafc88ad2008-08-30 00:13:55 -07001977 chip->op = op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 memcpy(&chip->image, &snd_cs4231_original_image,
1979 sizeof(snd_cs4231_original_image));
Georg Chinib1282542005-11-07 14:09:19 -08001980 strcpy(chip->c_dma.ebus_info.name, "cs4231(capture)");
1981 chip->c_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER;
1982 chip->c_dma.ebus_info.callback = snd_cs4231_ebus_capture_callback;
1983 chip->c_dma.ebus_info.client_cookie = chip;
Grant Likely1636f8a2010-06-18 11:09:58 -06001984 chip->c_dma.ebus_info.irq = op->archdata.irqs[0];
Georg Chinib1282542005-11-07 14:09:19 -08001985 strcpy(chip->p_dma.ebus_info.name, "cs4231(play)");
1986 chip->p_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER;
1987 chip->p_dma.ebus_info.callback = snd_cs4231_ebus_play_callback;
1988 chip->p_dma.ebus_info.client_cookie = chip;
Grant Likely1636f8a2010-06-18 11:09:58 -06001989 chip->p_dma.ebus_info.irq = op->archdata.irqs[1];
Georg Chinib1282542005-11-07 14:09:19 -08001990
1991 chip->p_dma.prepare = _ebus_dma_prepare;
1992 chip->p_dma.enable = _ebus_dma_enable;
1993 chip->p_dma.request = _ebus_dma_request;
1994 chip->p_dma.address = _ebus_dma_addr;
Georg Chinib1282542005-11-07 14:09:19 -08001995
1996 chip->c_dma.prepare = _ebus_dma_prepare;
1997 chip->c_dma.enable = _ebus_dma_enable;
1998 chip->c_dma.request = _ebus_dma_request;
1999 chip->c_dma.address = _ebus_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
David S. Millerafc88ad2008-08-30 00:13:55 -07002001 chip->port = of_ioremap(&op->resource[0], 0, 0x10, "cs4231");
2002 chip->p_dma.ebus_info.regs =
2003 of_ioremap(&op->resource[1], 0, 0x10, "cs4231_pdma");
2004 chip->c_dma.ebus_info.regs =
2005 of_ioremap(&op->resource[2], 0, 0x10, "cs4231_cdma");
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02002006 if (!chip->port || !chip->p_dma.ebus_info.regs ||
2007 !chip->c_dma.ebus_info.regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 snd_cs4231_ebus_free(chip);
Christopher Zimmermanna1314302005-09-21 00:41:22 -07002009 snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -EIO;
2011 }
2012
Georg Chinib1282542005-11-07 14:09:19 -08002013 if (ebus_dma_register(&chip->c_dma.ebus_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 snd_cs4231_ebus_free(chip);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02002015 snd_printdd("cs4231-%d: Unable to register EBUS capture DMA\n",
2016 dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return -EBUSY;
2018 }
Georg Chinib1282542005-11-07 14:09:19 -08002019 if (ebus_dma_irq_enable(&chip->c_dma.ebus_info, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 snd_cs4231_ebus_free(chip);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02002021 snd_printdd("cs4231-%d: Unable to enable EBUS capture IRQ\n",
2022 dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return -EBUSY;
2024 }
2025
Georg Chinib1282542005-11-07 14:09:19 -08002026 if (ebus_dma_register(&chip->p_dma.ebus_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 snd_cs4231_ebus_free(chip);
Krzysztof Helt9e9abb42007-09-10 23:06:55 +02002028 snd_printdd("cs4231-%d: Unable to register EBUS play DMA\n",
2029 dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 return -EBUSY;
2031 }
Georg Chinib1282542005-11-07 14:09:19 -08002032 if (ebus_dma_irq_enable(&chip->p_dma.ebus_info, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 snd_cs4231_ebus_free(chip);
Christopher Zimmermanna1314302005-09-21 00:41:22 -07002034 snd_printdd("cs4231-%d: Unable to enable EBUS play IRQ\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return -EBUSY;
2036 }
2037
2038 if (snd_cs4231_probe(chip) < 0) {
2039 snd_cs4231_ebus_free(chip);
2040 return -ENODEV;
2041 }
2042 snd_cs4231_init(chip);
2043
2044 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
2045 chip, &snd_cs4231_ebus_dev_ops)) < 0) {
2046 snd_cs4231_ebus_free(chip);
2047 return err;
2048 }
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return 0;
2051}
2052
Bill Pemberton32e02a72012-12-06 12:35:25 -05002053static int cs4231_ebus_probe(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Takashi Iwaibe9b7e82006-01-03 13:42:38 +01002055 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 int err;
2057
2058 err = cs4231_attach_begin(&card);
2059 if (err)
2060 return err;
2061
Sam Ravnborg3f4528d2009-01-06 13:20:38 -08002062 sprintf(card->longname, "%s at 0x%llx, irq %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 card->shortname,
David S. Millerafc88ad2008-08-30 00:13:55 -07002064 op->resource[0].start,
Grant Likely1636f8a2010-06-18 11:09:58 -06002065 op->archdata.irqs[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
David S. Millerafc88ad2008-08-30 00:13:55 -07002067 err = snd_cs4231_ebus_create(card, op, dev);
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02002068 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 snd_card_free(card);
2070 return err;
2071 }
2072
Krzysztof Heltc6c2d572007-09-04 13:08:24 +02002073 return cs4231_attach_finish(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075#endif
2076
Bill Pemberton32e02a72012-12-06 12:35:25 -05002077static int cs4231_probe(struct platform_device *op)
David S. Millerafc88ad2008-08-30 00:13:55 -07002078{
2079#ifdef EBUS_SUPPORT
Grant Likely61c7a082010-04-13 16:12:29 -07002080 if (!strcmp(op->dev.of_node->parent->name, "ebus"))
Grant Likelyf07eb222011-02-22 21:05:04 -07002081 return cs4231_ebus_probe(op);
David S. Millerafc88ad2008-08-30 00:13:55 -07002082#endif
David S. Millerae251032008-08-27 18:24:01 -07002083#ifdef SBUS_SUPPORT
Grant Likely61c7a082010-04-13 16:12:29 -07002084 if (!strcmp(op->dev.of_node->parent->name, "sbus") ||
2085 !strcmp(op->dev.of_node->parent->name, "sbi"))
Grant Likelyf07eb222011-02-22 21:05:04 -07002086 return cs4231_sbus_probe(op);
David S. Millerafc88ad2008-08-30 00:13:55 -07002087#endif
2088 return -ENODEV;
2089}
2090
Bill Pemberton32e02a72012-12-06 12:35:25 -05002091static int cs4231_remove(struct platform_device *op)
David S. Millerafc88ad2008-08-30 00:13:55 -07002092{
2093 struct snd_cs4231 *chip = dev_get_drvdata(&op->dev);
2094
2095 snd_card_free(chip->card);
2096
2097 return 0;
2098}
2099
David S. Millerfd098312008-08-31 01:23:17 -07002100static const struct of_device_id cs4231_match[] = {
David S. Millerae251032008-08-27 18:24:01 -07002101 {
2102 .name = "SUNW,CS4231",
2103 },
David S. Millerafc88ad2008-08-30 00:13:55 -07002104 {
2105 .name = "audio",
2106 .compatible = "SUNW,CS4231",
2107 },
David S. Millerae251032008-08-27 18:24:01 -07002108 {},
2109};
2110
2111MODULE_DEVICE_TABLE(of, cs4231_match);
2112
Grant Likelyf07eb222011-02-22 21:05:04 -07002113static struct platform_driver cs4231_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002114 .driver = {
2115 .name = "audio",
2116 .owner = THIS_MODULE,
2117 .of_match_table = cs4231_match,
2118 },
David S. Millerae251032008-08-27 18:24:01 -07002119 .probe = cs4231_probe,
Bill Pemberton32e02a72012-12-06 12:35:25 -05002120 .remove = cs4231_remove,
David S. Millerae251032008-08-27 18:24:01 -07002121};
David S. Millerae251032008-08-27 18:24:01 -07002122
Axel Lina09452e2011-11-27 16:36:04 +08002123module_platform_driver(cs4231_driver);