Blame view

sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c 7.63 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  /*
   * Driver for Sound Core PDAudioCF soundcards
   *
   * PCM part
   *
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
6
   * Copyright (c) 2003 by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
26
27
28
  #include <linux/delay.h>
  #include <sound/core.h>
  #include <sound/asoundef.h>
  #include "pdaudiocf.h"
  
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
   * clear the SRAM contents
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
31
  static int pdacf_pcm_clear_sram(struct snd_pdacf *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  {
  	int max_loop = 64 * 1024;
  
  	while (inw(chip->port + PDAUDIOCF_REG_RDP) != inw(chip->port + PDAUDIOCF_REG_WDP)) {
  		if (max_loop-- < 0)
  			return -EIO;
  		inw(chip->port + PDAUDIOCF_REG_MD);
  	}
  	return 0;
  }
  
  /*
   * pdacf_pcm_trigger - trigger callback for capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
46
  static int pdacf_pcm_trigger(struct snd_pcm_substream *subs, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
48
49
  	struct snd_pdacf *chip = snd_pcm_substream_chip(subs);
  	struct snd_pcm_runtime *runtime = subs->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  	int inc, ret = 0, rate;
  	unsigned short mask, val, tmp;
  
  	if (chip->chip_status & PDAUDIOCF_STAT_IS_STALE)
  		return -EBUSY;
  
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
  		chip->pcm_hwptr = 0;
  		chip->pcm_tdone = 0;
  		/* fall thru */
  	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  	case SNDRV_PCM_TRIGGER_RESUME:
  		mask = 0;
  		val = PDAUDIOCF_RECORD;
  		inc = 1;
  		rate = snd_ak4117_check_rate_and_errors(chip->ak4117, AK4117_CHECK_NO_STAT|AK4117_CHECK_NO_RATE);
  		break;
  	case SNDRV_PCM_TRIGGER_STOP:
  	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  	case SNDRV_PCM_TRIGGER_SUSPEND:
  		mask = PDAUDIOCF_RECORD;
  		val = 0;
  		inc = -1;
  		rate = 0;
  		break;
  	default:
  		return -EINVAL;
  	}
  	spin_lock(&chip->reg_lock);
  	chip->pcm_running += inc;
  	tmp = pdacf_reg_read(chip, PDAUDIOCF_REG_SCR);
  	if (chip->pcm_running) {
  		if ((chip->ak4117->rcs0 & AK4117_UNLCK) || runtime->rate != rate) {
  			chip->pcm_running -= inc;
  			ret = -EIO;
  			goto __end;
  		}
  	}
  	tmp &= ~mask;
  	tmp |= val;
  	pdacf_reg_write(chip, PDAUDIOCF_REG_SCR, tmp);
        __end:
  	spin_unlock(&chip->reg_lock);
  	snd_ak4117_check_rate_and_errors(chip->ak4117, AK4117_CHECK_NO_RATE);
  	return ret;
  }
  
  /*
   * pdacf_pcm_hw_params - hw_params callback for playback and capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
101
102
  static int pdacf_pcm_hw_params(struct snd_pcm_substream *subs,
  				     struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
  {
d20fb5dc0   Clemens Ladisch   sound: pdaudiocf:...
104
105
  	return snd_pcm_lib_alloc_vmalloc_32_buffer
  					(subs, params_buffer_bytes(hw_params));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
108
109
110
  }
  
  /*
   * pdacf_pcm_hw_free - hw_free callback for playback and capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
111
  static int pdacf_pcm_hw_free(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
  {
d20fb5dc0   Clemens Ladisch   sound: pdaudiocf:...
113
  	return snd_pcm_lib_free_vmalloc_buffer(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
116
117
118
  }
  
  /*
   * pdacf_pcm_prepare - prepare callback for playback and capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
119
  static int pdacf_pcm_prepare(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
120
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
121
122
  	struct snd_pdacf *chip = snd_pcm_substream_chip(subs);
  	struct snd_pcm_runtime *runtime = subs->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  	u16 val, nval, aval;
  
  	if (chip->chip_status & PDAUDIOCF_STAT_IS_STALE)
  		return -EBUSY;
  
  	chip->pcm_channels = runtime->channels;
  
  	chip->pcm_little = snd_pcm_format_little_endian(runtime->format) > 0;
  #ifdef SNDRV_LITTLE_ENDIAN
  	chip->pcm_swab = snd_pcm_format_big_endian(runtime->format) > 0;
  #else
  	chip->pcm_swab = chip->pcm_little;
  #endif
  
  	if (snd_pcm_format_unsigned(runtime->format))
  		chip->pcm_xor = 0x80008000;
  
  	if (pdacf_pcm_clear_sram(chip) < 0)
  		return -EIO;
  	
  	val = nval = pdacf_reg_read(chip, PDAUDIOCF_REG_SCR);
  	nval &= ~(PDAUDIOCF_DATAFMT0|PDAUDIOCF_DATAFMT1);
  	switch (runtime->format) {
  	case SNDRV_PCM_FORMAT_S16_LE:
  	case SNDRV_PCM_FORMAT_S16_BE:
  		break;
  	default: /* 24-bit */
  		nval |= PDAUDIOCF_DATAFMT0 | PDAUDIOCF_DATAFMT1;
  		break;
  	}
  	aval = 0;
  	chip->pcm_sample = 4;
  	switch (runtime->format) {
  	case SNDRV_PCM_FORMAT_S16_LE:
  	case SNDRV_PCM_FORMAT_S16_BE:
  		aval = AK4117_DIF_16R;
  		chip->pcm_frame = 2;
  		chip->pcm_sample = 2;
  		break;
  	case SNDRV_PCM_FORMAT_S24_3LE:
  	case SNDRV_PCM_FORMAT_S24_3BE:
  		chip->pcm_sample = 3;
93b1fae49   Adrian Bunk   spelling: s/troug...
165
  		/* fall through */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
  	default: /* 24-bit */
  		aval = AK4117_DIF_24R;
  		chip->pcm_frame = 3;
  		chip->pcm_xor &= 0xffff0000;
  		break;
  	}
  
  	if (val != nval) {
  		snd_ak4117_reg_write(chip->ak4117, AK4117_REG_IO, AK4117_DIF2|AK4117_DIF1|AK4117_DIF0, aval);
  		pdacf_reg_write(chip, PDAUDIOCF_REG_SCR, nval);
  	}
  
  	val = pdacf_reg_read(chip,  PDAUDIOCF_REG_IER);
  	val &= ~(PDAUDIOCF_IRQLVLEN1);
  	val |= PDAUDIOCF_IRQLVLEN0;
  	pdacf_reg_write(chip, PDAUDIOCF_REG_IER, val);
  
  	chip->pcm_size = runtime->buffer_size;
  	chip->pcm_period = runtime->period_size;
  	chip->pcm_area = runtime->dma_area;
  
  	return 0;
  }
  
  
  /*
   * capture hw information
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
194
  static struct snd_pcm_hardware pdacf_pcm_capture_hw = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
196
  	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME |
2008f137e   Takashi Iwai   ALSA: Add missing...
197
198
  				 SNDRV_PCM_INFO_MMAP_VALID |
  				 SNDRV_PCM_INFO_BATCH),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
  	.formats =		SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
  				SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE |
  				SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
  	.rates =		SNDRV_PCM_RATE_32000 |
  				SNDRV_PCM_RATE_44100 |
  				SNDRV_PCM_RATE_48000 |
  				SNDRV_PCM_RATE_88200 |
  				SNDRV_PCM_RATE_96000 |
  				SNDRV_PCM_RATE_176400 |
  				SNDRV_PCM_RATE_192000,
  	.rate_min =		32000,
  	.rate_max =		192000,
  	.channels_min =		1,
  	.channels_max =		2,
  	.buffer_bytes_max =	(512*1024),
  	.period_bytes_min =	8*1024,
  	.period_bytes_max =	(64*1024),
  	.periods_min =		2,
  	.periods_max =		128,
  	.fifo_size =		0,
  };
  
  
  /*
   * pdacf_pcm_capture_open - open callback for capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
225
  static int pdacf_pcm_capture_open(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
226
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
227
228
  	struct snd_pcm_runtime *runtime = subs->runtime;
  	struct snd_pdacf *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
230
231
232
233
234
235
236
237
238
239
240
241
242
  
  	if (chip->chip_status & PDAUDIOCF_STAT_IS_STALE)
  		return -EBUSY;
  
  	runtime->hw = pdacf_pcm_capture_hw;
  	runtime->private_data = chip;
  	chip->pcm_substream = subs;
  
  	return 0;
  }
  
  /*
   * pdacf_pcm_capture_close - close callback for capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
243
  static int pdacf_pcm_capture_close(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
245
  	struct snd_pdacf *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
246
247
248
249
250
251
252
253
254
255
256
257
  
  	if (!chip)
  		return -EINVAL;
  	pdacf_reinit(chip, 0);
  	chip->pcm_substream = NULL;
  	return 0;
  }
  
  
  /*
   * pdacf_pcm_capture_pointer - pointer callback for capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
258
  static snd_pcm_uframes_t pdacf_pcm_capture_pointer(struct snd_pcm_substream *subs)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
259
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
260
  	struct snd_pdacf *chip = snd_pcm_substream_chip(subs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
263
264
265
266
  	return chip->pcm_hwptr;
  }
  
  /*
   * operators for PCM capture
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
267
  static struct snd_pcm_ops pdacf_pcm_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
269
270
271
272
273
274
275
  	.open =		pdacf_pcm_capture_open,
  	.close =	pdacf_pcm_capture_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.hw_params =	pdacf_pcm_hw_params,
  	.hw_free =	pdacf_pcm_hw_free,
  	.prepare =	pdacf_pcm_prepare,
  	.trigger =	pdacf_pcm_trigger,
  	.pointer =	pdacf_pcm_capture_pointer,
d20fb5dc0   Clemens Ladisch   sound: pdaudiocf:...
276
  	.page =		snd_pcm_lib_get_vmalloc_page,
c32d977b8   Takashi Iwai   ALSA: pcm - Call ...
277
  	.mmap =		snd_pcm_lib_mmap_vmalloc,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
279
280
281
  };
  
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
282
283
   * snd_pdacf_pcm_new - create and initialize a pcm
   */
db1315484   Takashi Iwai   [ALSA] Remove xxx...
284
  int snd_pdacf_pcm_new(struct snd_pdacf *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
  {
db1315484   Takashi Iwai   [ALSA] Remove xxx...
286
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
287
288
289
290
291
292
293
294
295
  	int err;
  
  	err = snd_pcm_new(chip->card, "PDAudioCF", 0, 0, 1, &pcm);
  	if (err < 0)
  		return err;
  		
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &pdacf_pcm_capture_ops);
  
  	pcm->private_data = chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
296
297
298
299
300
301
302
303
304
305
  	pcm->info_flags = 0;
  	strcpy(pcm->name, chip->card->shortname);
  	chip->pcm = pcm;
  	
  	err = snd_ak4117_build(chip->ak4117, pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream);
  	if (err < 0)
  		return err;
  
  	return 0;
  }