Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 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 165 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 194 195 196 197 198 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | #define _PAS2_PCM_C_ /* * sound/pas2_pcm.c * * The low level driver for the Pro Audio Spectrum ADC/DAC. * * Copyright by Hannu Savolainen 1993 * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. 2. * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #include "sound_config.h" #ifdef CONFIGURE_SOUNDCARD #include "pas.h" #if !defined(EXCLUDE_PAS) && !defined(EXCLUDE_AUDIO) #define TRACE(WHAT) /* (WHAT) */ #define PAS_PCM_INTRBITS (0x08) /* Sample buffer timer interrupt enable */ #define PCM_NON 0 #define PCM_DAC 1 #define PCM_ADC 2 static unsigned long pcm_speed = 0; /* sampling rate */ static unsigned char pcm_channels = 1; /* channels/sample (1 or 2) */ static unsigned char pcm_bits = 8; /* bits/sample (8 or 16) */ static unsigned char pcm_filter = 0; /* filter FLAG */ static unsigned char pcm_mode = PCM_NON; static unsigned long pcm_count = 0; static unsigned short pcm_bitsok = 8; /* mask of OK bits */ static int my_devnum = 0; int pcm_set_speed (int arg) { int foo, tmp; unsigned long flags; if (arg > 44100) arg = 44100; if (arg < 5000) arg = 5000; foo = 1193180 / arg; arg = 1193180 / foo; if (pcm_channels & 2) foo = foo >> 1; pcm_speed = arg; tmp = pas_read (FILTER_FREQUENCY); DISABLE_INTR (flags); pas_write (tmp & ~(F_F_PCM_RATE_COUNTER | F_F_PCM_BUFFER_COUNTER), FILTER_FREQUENCY); pas_write (S_C_C_SAMPLE_RATE | S_C_C_LSB_THEN_MSB | S_C_C_SQUARE_WAVE, SAMPLE_COUNTER_CONTROL); pas_write (foo & 0xff, SAMPLE_RATE_TIMER); pas_write ((foo >> 8) & 0xff, SAMPLE_RATE_TIMER); pas_write (tmp, FILTER_FREQUENCY); RESTORE_INTR (flags); return pcm_speed; } int pcm_set_channels (int arg) { if ((arg != 1) && (arg != 2)) return pcm_channels; if (arg != pcm_channels) { pas_write (pas_read (PCM_CONTROL) ^ P_C_PCM_MONO, PCM_CONTROL); pcm_channels = arg; pcm_set_speed (pcm_speed);/* The speed must be reinitialized */ } return pcm_channels; } int pcm_set_bits (int arg) { if ((arg & pcm_bitsok) != arg) return pcm_bits; if (arg != pcm_bits) { pas_write (pas_read (SYSTEM_CONFIGURATION_2) ^ S_C_2_PCM_16_BIT, SYSTEM_CONFIGURATION_2); pcm_bits = arg; } return pcm_bits; } static int pas_pcm_ioctl (int dev, unsigned int cmd, unsigned int arg, int local) { TRACE (printk ("pas2_pcm.c: static int pas_pcm_ioctl(unsigned int cmd = %X, unsigned int arg = %X)\n", cmd, arg)); switch (cmd) { case SOUND_PCM_WRITE_RATE: if (local) return pcm_set_speed (arg); return IOCTL_OUT (arg, pcm_set_speed (IOCTL_IN (arg))); break; case SOUND_PCM_READ_RATE: if (local) return pcm_speed; return IOCTL_OUT (arg, pcm_speed); break; case SNDCTL_DSP_STEREO: if (local) return pcm_set_channels (arg + 1) - 1; return IOCTL_OUT (arg, pcm_set_channels (IOCTL_IN (arg) + 1) - 1); break; case SOUND_PCM_WRITE_CHANNELS: if (local) return pcm_set_channels (arg); return IOCTL_OUT (arg, pcm_set_channels (IOCTL_IN (arg))); break; case SOUND_PCM_READ_CHANNELS: if (local) return pcm_channels; return IOCTL_OUT (arg, pcm_channels); break; case SNDCTL_DSP_SAMPLESIZE: if (local) return pcm_set_bits (arg); return IOCTL_OUT (arg, pcm_set_bits (IOCTL_IN (arg))); break; case SOUND_PCM_READ_BITS: if (local) return pcm_bits; return IOCTL_OUT (arg, pcm_bits); case SOUND_PCM_WRITE_FILTER: /* NOT YET IMPLEMENTED */ if (IOCTL_IN (arg) > 1) return IOCTL_OUT (arg, RET_ERROR (EINVAL)); break; pcm_filter = IOCTL_IN (arg); case SOUND_PCM_READ_FILTER: return IOCTL_OUT (arg, pcm_filter); break; default: return RET_ERROR (EINVAL); } return RET_ERROR (EINVAL); } static void pas_pcm_reset (int dev) { TRACE (printk ("pas2_pcm.c: static void pas_pcm_reset(void)\n")); pas_write (pas_read (PCM_CONTROL) & ~P_C_PCM_ENABLE, PCM_CONTROL); } static int pas_pcm_open (int dev, int mode) { int err; TRACE (printk ("pas2_pcm.c: static int pas_pcm_open(int mode = %X)\n", mode)); if ((err = pas_set_intr (PAS_PCM_INTRBITS)) < 0) return err; if (!DMAbuf_open_dma (dev)) { pas_remove_intr (PAS_PCM_INTRBITS); return RET_ERROR (EBUSY); } pcm_count = 0; return 0; } static void pas_pcm_close (int dev) { unsigned long flags; TRACE (printk ("pas2_pcm.c: static void pas_pcm_close(void)\n")); DISABLE_INTR (flags); pas_pcm_reset (dev); DMAbuf_close_dma (dev); pas_remove_intr (PAS_PCM_INTRBITS); pcm_mode = PCM_NON; RESTORE_INTR (flags); } static void pas_pcm_output_block (int dev, unsigned long buf, int count, int intrflag, int restart_dma) { unsigned long flags, cnt; TRACE (printk ("pas2_pcm.c: static void pas_pcm_output_block(char *buf = %P, int count = %X)\n", buf, count)); cnt = count; if (sound_dsp_dmachan[dev] > 3) cnt >>= 1; if (sound_dma_automode[dev] && intrflag && cnt == pcm_count) return; /* Auto mode on. No need to react */ DISABLE_INTR (flags); pas_write (pas_read (PCM_CONTROL) & ~P_C_PCM_ENABLE, PCM_CONTROL); if (restart_dma) DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); if (sound_dsp_dmachan[dev] > 3) count >>= 1; if (count != pcm_count) { pas_write (pas_read (FILTER_FREQUENCY) & ~F_F_PCM_BUFFER_COUNTER, FILTER_FREQUENCY); pas_write (S_C_C_SAMPLE_BUFFER | S_C_C_LSB_THEN_MSB | S_C_C_SQUARE_WAVE, SAMPLE_COUNTER_CONTROL); pas_write (count & 0xff, SAMPLE_BUFFER_COUNTER); pas_write ((count >> 8) & 0xff, SAMPLE_BUFFER_COUNTER); pas_write (pas_read (FILTER_FREQUENCY) | F_F_PCM_BUFFER_COUNTER, FILTER_FREQUENCY); pcm_count = count; } pas_write (pas_read (FILTER_FREQUENCY) | F_F_PCM_BUFFER_COUNTER | F_F_PCM_RATE_COUNTER, FILTER_FREQUENCY); pas_write (pas_read (PCM_CONTROL) | P_C_PCM_ENABLE | P_C_PCM_DAC_MODE, PCM_CONTROL); pcm_mode = PCM_DAC; RESTORE_INTR (flags); } static void pas_pcm_start_input (int dev, unsigned long buf, int count, int intrflag, int restart_dma) { unsigned long flags; int cnt; TRACE (printk ("pas2_pcm.c: static void pas_pcm_start_input(char *buf = %P, int count = %X)\n", buf, count)); cnt = count; if (sound_dsp_dmachan[dev] > 3) cnt >>= 1; if (sound_dma_automode[my_devnum] && intrflag && cnt == pcm_count) return; /* Auto mode on. No need to react */ DISABLE_INTR (flags); if (restart_dma) DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); if (sound_dsp_dmachan[dev] > 3) count >>= 1; if (count != pcm_count) { pas_write (pas_read (FILTER_FREQUENCY) & ~F_F_PCM_BUFFER_COUNTER, FILTER_FREQUENCY); pas_write (S_C_C_SAMPLE_BUFFER | S_C_C_LSB_THEN_MSB | S_C_C_SQUARE_WAVE, SAMPLE_COUNTER_CONTROL); pas_write (count & 0xff, SAMPLE_BUFFER_COUNTER); pas_write ((count >> 8) & 0xff, SAMPLE_BUFFER_COUNTER); pas_write (pas_read (FILTER_FREQUENCY) | F_F_PCM_BUFFER_COUNTER, FILTER_FREQUENCY); pcm_count = count; } pas_write (pas_read (FILTER_FREQUENCY) | F_F_PCM_BUFFER_COUNTER | F_F_PCM_RATE_COUNTER, FILTER_FREQUENCY); pas_write ((pas_read (PCM_CONTROL) | P_C_PCM_ENABLE) & ~P_C_PCM_DAC_MODE, PCM_CONTROL); pcm_mode = PCM_ADC; RESTORE_INTR (flags); } static int pas_pcm_prepare_for_input (int dev, int bsize, int bcount) { return 0; } static int pas_pcm_prepare_for_output (int dev, int bsize, int bcount) { return 0; } static struct audio_operations pas_pcm_operations = { "Pro Audio Spectrum", NOTHING_SPECIAL, pas_pcm_open, pas_pcm_close, pas_pcm_output_block, pas_pcm_start_input, pas_pcm_ioctl, pas_pcm_prepare_for_input, pas_pcm_prepare_for_output, pas_pcm_reset, pas_pcm_reset, /* halt_xfer */ NULL, /* has_output_drained */ NULL /* copy_from_user */ }; long pas_pcm_init (long mem_start, struct address_info *hw_config) { TRACE (printk ("pas2_pcm.c: long pas_pcm_init(long mem_start = %X)\n", mem_start)); pcm_bitsok = 8; if (pas_read (OPERATION_MODE_1) & O_M_1_PCM_TYPE) pcm_bitsok |= 16; pcm_set_speed (DSP_DEFAULT_SPEED); if (num_dspdevs < MAX_DSP_DEV) { dsp_devs[my_devnum = num_dspdevs++] = &pas_pcm_operations; sound_dsp_dmachan[my_devnum] = hw_config->dma; #ifndef PAS_NO_AUTODMA if (hw_config->dma > 3) { sound_buffcounts[my_devnum] = 1; sound_buffsizes[my_devnum] = 2 * 65536; sound_dma_automode[my_devnum] = 1; } else { sound_buffcounts[my_devnum] = 1; sound_buffsizes[my_devnum] = DSP_BUFFSIZE; sound_dma_automode[my_devnum] = 1; } #else sound_buffcounts[my_devnum] = 2; sound_buffsizes[my_devnum] = DSP_BUFFSIZE; sound_dma_automode[my_devnum] = 0; #endif } else printk ("PAS2: Too many PCM devices available\n"); return mem_start; } void pas_pcm_interrupt (unsigned char status, int cause) { if (cause == 1) /* PCM buffer done */ { /* * Halt the PCM first. Otherwise we don't have time to start a new * block before the PCM chip proceeds to the next sample */ if (!sound_dma_automode[my_devnum]) { pas_write (pas_read (PCM_CONTROL) & ~P_C_PCM_ENABLE, PCM_CONTROL); } switch (pcm_mode) { case PCM_DAC: DMAbuf_outputintr (my_devnum, 1); break; case PCM_ADC: DMAbuf_inputintr (my_devnum); break; default: printk ("PAS: Unexpected PCM interrupt\n"); } } } #endif #endif |