1 /* 2 * ALSA driver for RME Digi9652 audio interfaces 3 * 4 * Copyright (c) 1999 IEM - Winfried Ritsch 5 * Copyright (c) 1999-2001 Paul Davis 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * 21 */ 22 23 #include <linux/delay.h> 24 #include <linux/init.h> 25 #include <linux/interrupt.h> 26 #include <linux/pci.h> 27 #include <linux/module.h> 28 #include <linux/io.h> 29 #include <linux/nospec.h> 30 31 #include <sound/core.h> 32 #include <sound/control.h> 33 #include <sound/pcm.h> 34 #include <sound/info.h> 35 #include <sound/asoundef.h> 36 #include <sound/initval.h> 37 38 #include <asm/current.h> 39 40 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 41 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 42 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 43 static bool precise_ptr[SNDRV_CARDS]; /* Enable precise pointer */ 44 45 module_param_array(index, int, NULL, 0444); 46 MODULE_PARM_DESC(index, "Index value for RME Digi9652 (Hammerfall) soundcard."); 47 module_param_array(id, charp, NULL, 0444); 48 MODULE_PARM_DESC(id, "ID string for RME Digi9652 (Hammerfall) soundcard."); 49 module_param_array(enable, bool, NULL, 0444); 50 MODULE_PARM_DESC(enable, "Enable/disable specific RME96{52,36} soundcards."); 51 module_param_array(precise_ptr, bool, NULL, 0444); 52 MODULE_PARM_DESC(precise_ptr, "Enable precise pointer (doesn't work reliably)."); 53 MODULE_AUTHOR("Paul Davis <pbd@op.net>, Winfried Ritsch"); 54 MODULE_DESCRIPTION("RME Digi9652/Digi9636"); 55 MODULE_LICENSE("GPL"); 56 MODULE_SUPPORTED_DEVICE("{{RME,Hammerfall}," 57 "{RME,Hammerfall-Light}}"); 58 59 /* The Hammerfall has two sets of 24 ADAT + 2 S/PDIF channels, one for 60 capture, one for playback. Both the ADAT and S/PDIF channels appear 61 to the host CPU in the same block of memory. There is no functional 62 difference between them in terms of access. 63 64 The Hammerfall Light is identical to the Hammerfall, except that it 65 has 2 sets 18 channels (16 ADAT + 2 S/PDIF) for capture and playback. 66 */ 67 68 #define RME9652_NCHANNELS 26 69 #define RME9636_NCHANNELS 18 70 71 /* Preferred sync source choices - used by "sync_pref" control switch */ 72 73 #define RME9652_SYNC_FROM_SPDIF 0 74 #define RME9652_SYNC_FROM_ADAT1 1 75 #define RME9652_SYNC_FROM_ADAT2 2 76 #define RME9652_SYNC_FROM_ADAT3 3 77 78 /* Possible sources of S/PDIF input */ 79 80 #define RME9652_SPDIFIN_OPTICAL 0 /* optical (ADAT1) */ 81 #define RME9652_SPDIFIN_COAXIAL 1 /* coaxial (RCA) */ 82 #define RME9652_SPDIFIN_INTERN 2 /* internal (CDROM) */ 83 84 /* ------------- Status-Register bits --------------------- */ 85 86 #define RME9652_IRQ (1<<0) /* IRQ is High if not reset by irq_clear */ 87 #define RME9652_lock_2 (1<<1) /* ADAT 3-PLL: 1=locked, 0=unlocked */ 88 #define RME9652_lock_1 (1<<2) /* ADAT 2-PLL: 1=locked, 0=unlocked */ 89 #define RME9652_lock_0 (1<<3) /* ADAT 1-PLL: 1=locked, 0=unlocked */ 90 #define RME9652_fs48 (1<<4) /* sample rate is 0=44.1/88.2,1=48/96 Khz */ 91 #define RME9652_wsel_rd (1<<5) /* if Word-Clock is used and valid then 1 */ 92 /* bits 6-15 encode h/w buffer pointer position */ 93 #define RME9652_sync_2 (1<<16) /* if ADAT-IN 3 in sync to system clock */ 94 #define RME9652_sync_1 (1<<17) /* if ADAT-IN 2 in sync to system clock */ 95 #define RME9652_sync_0 (1<<18) /* if ADAT-IN 1 in sync to system clock */ 96 #define RME9652_DS_rd (1<<19) /* 1=Double Speed Mode, 0=Normal Speed */ 97 #define RME9652_tc_busy (1<<20) /* 1=time-code copy in progress (960ms) */ 98 #define RME9652_tc_out (1<<21) /* time-code out bit */ 99 #define RME9652_F_0 (1<<22) /* 000=64kHz, 100=88.2kHz, 011=96kHz */ 100 #define RME9652_F_1 (1<<23) /* 111=32kHz, 110=44.1kHz, 101=48kHz, */ 101 #define RME9652_F_2 (1<<24) /* external Crystal Chip if ERF=1 */ 102 #define RME9652_ERF (1<<25) /* Error-Flag of SDPIF Receiver (1=No Lock) */ 103 #define RME9652_buffer_id (1<<26) /* toggles by each interrupt on rec/play */ 104 #define RME9652_tc_valid (1<<27) /* 1 = a signal is detected on time-code input */ 105 #define RME9652_SPDIF_READ (1<<28) /* byte available from Rev 1.5+ S/PDIF interface */ 106 107 #define RME9652_sync (RME9652_sync_0|RME9652_sync_1|RME9652_sync_2) 108 #define RME9652_lock (RME9652_lock_0|RME9652_lock_1|RME9652_lock_2) 109 #define RME9652_F (RME9652_F_0|RME9652_F_1|RME9652_F_2) 110 #define rme9652_decode_spdif_rate(x) ((x)>>22) 111 112 /* Bit 6..15 : h/w buffer pointer */ 113 114 #define RME9652_buf_pos 0x000FFC0 115 116 /* Bits 31,30,29 are bits 5,4,3 of h/w pointer position on later 117 Rev G EEPROMS and Rev 1.5 cards or later. 118 */ 119 120 #define RME9652_REV15_buf_pos(x) ((((x)&0xE0000000)>>26)|((x)&RME9652_buf_pos)) 121 122 /* amount of io space we remap for register access. i'm not sure we 123 even need this much, but 1K is nice round number :) 124 */ 125 126 #define RME9652_IO_EXTENT 1024 127 128 #define RME9652_init_buffer 0 129 #define RME9652_play_buffer 32 /* holds ptr to 26x64kBit host RAM */ 130 #define RME9652_rec_buffer 36 /* holds ptr to 26x64kBit host RAM */ 131 #define RME9652_control_register 64 132 #define RME9652_irq_clear 96 133 #define RME9652_time_code 100 /* useful if used with alesis adat */ 134 #define RME9652_thru_base 128 /* 132...228 Thru for 26 channels */ 135 136 /* Read-only registers */ 137 138 /* Writing to any of the register locations writes to the status 139 register. We'll use the first location as our point of access. 140 */ 141 142 #define RME9652_status_register 0 143 144 /* --------- Control-Register Bits ---------------- */ 145 146 147 #define RME9652_start_bit (1<<0) /* start record/play */ 148 /* bits 1-3 encode buffersize/latency */ 149 #define RME9652_Master (1<<4) /* Clock Mode Master=1,Slave/Auto=0 */ 150 #define RME9652_IE (1<<5) /* Interrupt Enable */ 151 #define RME9652_freq (1<<6) /* samplerate 0=44.1/88.2, 1=48/96 kHz */ 152 #define RME9652_freq1 (1<<7) /* if 0, 32kHz, else always 1 */ 153 #define RME9652_DS (1<<8) /* Doule Speed 0=44.1/48, 1=88.2/96 Khz */ 154 #define RME9652_PRO (1<<9) /* S/PDIF out: 0=consumer, 1=professional */ 155 #define RME9652_EMP (1<<10) /* Emphasis 0=None, 1=ON */ 156 #define RME9652_Dolby (1<<11) /* Non-audio bit 1=set, 0=unset */ 157 #define RME9652_opt_out (1<<12) /* Use 1st optical OUT as SPDIF: 1=yes,0=no */ 158 #define RME9652_wsel (1<<13) /* use Wordclock as sync (overwrites master) */ 159 #define RME9652_inp_0 (1<<14) /* SPDIF-IN: 00=optical (ADAT1), */ 160 #define RME9652_inp_1 (1<<15) /* 01=koaxial (Cinch), 10=Internal CDROM */ 161 #define RME9652_SyncPref_ADAT2 (1<<16) 162 #define RME9652_SyncPref_ADAT3 (1<<17) 163 #define RME9652_SPDIF_RESET (1<<18) /* Rev 1.5+: h/w S/PDIF receiver */ 164 #define RME9652_SPDIF_SELECT (1<<19) 165 #define RME9652_SPDIF_CLOCK (1<<20) 166 #define RME9652_SPDIF_WRITE (1<<21) 167 #define RME9652_ADAT1_INTERNAL (1<<22) /* Rev 1.5+: if set, internal CD connector carries ADAT */ 168 169 /* buffersize = 512Bytes * 2^n, where n is made from Bit2 ... Bit0 */ 170 171 #define RME9652_latency 0x0e 172 #define rme9652_encode_latency(x) (((x)&0x7)<<1) 173 #define rme9652_decode_latency(x) (((x)>>1)&0x7) 174 #define rme9652_running_double_speed(s) ((s)->control_register & RME9652_DS) 175 #define RME9652_inp (RME9652_inp_0|RME9652_inp_1) 176 #define rme9652_encode_spdif_in(x) (((x)&0x3)<<14) 177 #define rme9652_decode_spdif_in(x) (((x)>>14)&0x3) 178 179 #define RME9652_SyncPref_Mask (RME9652_SyncPref_ADAT2|RME9652_SyncPref_ADAT3) 180 #define RME9652_SyncPref_ADAT1 0 181 #define RME9652_SyncPref_SPDIF (RME9652_SyncPref_ADAT2|RME9652_SyncPref_ADAT3) 182 183 /* the size of a substream (1 mono data stream) */ 184 185 #define RME9652_CHANNEL_BUFFER_SAMPLES (16*1024) 186 #define RME9652_CHANNEL_BUFFER_BYTES (4*RME9652_CHANNEL_BUFFER_SAMPLES) 187 188 /* the size of the area we need to allocate for DMA transfers. the 189 size is the same regardless of the number of channels - the 190 9636 still uses the same memory area. 191 192 Note that we allocate 1 more channel than is apparently needed 193 because the h/w seems to write 1 byte beyond the end of the last 194 page. Sigh. 195 */ 196 197 #define RME9652_DMA_AREA_BYTES ((RME9652_NCHANNELS+1) * RME9652_CHANNEL_BUFFER_BYTES) 198 #define RME9652_DMA_AREA_KILOBYTES (RME9652_DMA_AREA_BYTES/1024) 199 200 struct snd_rme9652 { 201 int dev; 202 203 spinlock_t lock; 204 int irq; 205 unsigned long port; 206 void __iomem *iobase; 207 208 int precise_ptr; 209 210 u32 control_register; /* cached value */ 211 u32 thru_bits; /* thru 1=on, 0=off channel 1=Bit1... channel 26= Bit26 */ 212 213 u32 creg_spdif; 214 u32 creg_spdif_stream; 215 216 char *card_name; /* hammerfall or hammerfall light names */ 217 218 size_t hw_offsetmask; /* &-with status register to get real hw_offset */ 219 size_t prev_hw_offset; /* previous hw offset */ 220 size_t max_jitter; /* maximum jitter in frames for 221 hw pointer */ 222 size_t period_bytes; /* guess what this is */ 223 224 unsigned char ds_channels; 225 unsigned char ss_channels; /* different for hammerfall/hammerfall-light */ 226 227 struct snd_dma_buffer playback_dma_buf; 228 struct snd_dma_buffer capture_dma_buf; 229 230 unsigned char *capture_buffer; /* suitably aligned address */ 231 unsigned char *playback_buffer; /* suitably aligned address */ 232 233 pid_t capture_pid; 234 pid_t playback_pid; 235 236 struct snd_pcm_substream *capture_substream; 237 struct snd_pcm_substream *playback_substream; 238 int running; 239 240 int passthru; /* non-zero if doing pass-thru */ 241 int hw_rev; /* h/w rev * 10 (i.e. 1.5 has hw_rev = 15) */ 242 243 int last_spdif_sample_rate; /* so that we can catch externally ... */ 244 int last_adat_sample_rate; /* ... induced rate changes */ 245 246 char *channel_map; 247 248 struct snd_card *card; 249 struct snd_pcm *pcm; 250 struct pci_dev *pci; 251 struct snd_kcontrol *spdif_ctl; 252 253 }; 254 255 /* These tables map the ALSA channels 1..N to the channels that we 256 need to use in order to find the relevant channel buffer. RME 257 refer to this kind of mapping as between "the ADAT channel and 258 the DMA channel." We index it using the logical audio channel, 259 and the value is the DMA channel (i.e. channel buffer number) 260 where the data for that channel can be read/written from/to. 261 */ 262 263 static char channel_map_9652_ss[26] = { 264 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 265 18, 19, 20, 21, 22, 23, 24, 25 266 }; 267 268 static char channel_map_9636_ss[26] = { 269 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 270 /* channels 16 and 17 are S/PDIF */ 271 24, 25, 272 /* channels 18-25 don't exist */ 273 -1, -1, -1, -1, -1, -1, -1, -1 274 }; 275 276 static char channel_map_9652_ds[26] = { 277 /* ADAT channels are remapped */ 278 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 279 /* channels 12 and 13 are S/PDIF */ 280 24, 25, 281 /* others don't exist */ 282 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 283 }; 284 285 static char channel_map_9636_ds[26] = { 286 /* ADAT channels are remapped */ 287 1, 3, 5, 7, 9, 11, 13, 15, 288 /* channels 8 and 9 are S/PDIF */ 289 24, 25, 290 /* others don't exist */ 291 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 292 }; 293 294 static int snd_hammerfall_get_buffer(struct pci_dev *pci, struct snd_dma_buffer *dmab, size_t size) 295 { 296 dmab->dev.type = SNDRV_DMA_TYPE_DEV; 297 dmab->dev.dev = snd_dma_pci_data(pci); 298 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci), 299 size, dmab) < 0) 300 return -ENOMEM; 301 return 0; 302 } 303 304 static void snd_hammerfall_free_buffer(struct snd_dma_buffer *dmab, struct pci_dev *pci) 305 { 306 if (dmab->area) 307 snd_dma_free_pages(dmab); 308 } 309 310 311 static const struct pci_device_id snd_rme9652_ids[] = { 312 { 313 .vendor = 0x10ee, 314 .device = 0x3fc4, 315 .subvendor = PCI_ANY_ID, 316 .subdevice = PCI_ANY_ID, 317 }, /* RME Digi9652 */ 318 { 0, }, 319 }; 320 321 MODULE_DEVICE_TABLE(pci, snd_rme9652_ids); 322 323 static inline void rme9652_write(struct snd_rme9652 *rme9652, int reg, int val) 324 { 325 writel(val, rme9652->iobase + reg); 326 } 327 328 static inline unsigned int rme9652_read(struct snd_rme9652 *rme9652, int reg) 329 { 330 return readl(rme9652->iobase + reg); 331 } 332 333 static inline int snd_rme9652_use_is_exclusive(struct snd_rme9652 *rme9652) 334 { 335 unsigned long flags; 336 int ret = 1; 337 338 spin_lock_irqsave(&rme9652->lock, flags); 339 if ((rme9652->playback_pid != rme9652->capture_pid) && 340 (rme9652->playback_pid >= 0) && (rme9652->capture_pid >= 0)) { 341 ret = 0; 342 } 343 spin_unlock_irqrestore(&rme9652->lock, flags); 344 return ret; 345 } 346 347 static inline int rme9652_adat_sample_rate(struct snd_rme9652 *rme9652) 348 { 349 if (rme9652_running_double_speed(rme9652)) { 350 return (rme9652_read(rme9652, RME9652_status_register) & 351 RME9652_fs48) ? 96000 : 88200; 352 } else { 353 return (rme9652_read(rme9652, RME9652_status_register) & 354 RME9652_fs48) ? 48000 : 44100; 355 } 356 } 357 358 static inline void rme9652_compute_period_size(struct snd_rme9652 *rme9652) 359 { 360 unsigned int i; 361 362 i = rme9652->control_register & RME9652_latency; 363 rme9652->period_bytes = 1 << ((rme9652_decode_latency(i) + 8)); 364 rme9652->hw_offsetmask = 365 (rme9652->period_bytes * 2 - 1) & RME9652_buf_pos; 366 rme9652->max_jitter = 80; 367 } 368 369 static snd_pcm_uframes_t rme9652_hw_pointer(struct snd_rme9652 *rme9652) 370 { 371 int status; 372 unsigned int offset, frag; 373 snd_pcm_uframes_t period_size = rme9652->period_bytes / 4; 374 snd_pcm_sframes_t delta; 375 376 status = rme9652_read(rme9652, RME9652_status_register); 377 if (!rme9652->precise_ptr) 378 return (status & RME9652_buffer_id) ? period_size : 0; 379 offset = status & RME9652_buf_pos; 380 381 /* The hardware may give a backward movement for up to 80 frames 382 Martin Kirst <martin.kirst@freenet.de> knows the details. 383 */ 384 385 delta = rme9652->prev_hw_offset - offset; 386 delta &= 0xffff; 387 if (delta <= (snd_pcm_sframes_t)rme9652->max_jitter * 4) 388 offset = rme9652->prev_hw_offset; 389 else 390 rme9652->prev_hw_offset = offset; 391 offset &= rme9652->hw_offsetmask; 392 offset /= 4; 393 frag = status & RME9652_buffer_id; 394 395 if (offset < period_size) { 396 if (offset > rme9652->max_jitter) { 397 if (frag) 398 dev_err(rme9652->card->dev, 399 "Unexpected hw_pointer position (bufid == 0): status: %x offset: %d\n", 400 status, offset); 401 } else if (!frag) 402 return 0; 403 offset -= rme9652->max_jitter; 404 if ((int)offset < 0) 405 offset += period_size * 2; 406 } else { 407 if (offset > period_size + rme9652->max_jitter) { 408 if (!frag) 409 dev_err(rme9652->card->dev, 410 "Unexpected hw_pointer position (bufid == 1): status: %x offset: %d\n", 411 status, offset); 412 } else if (frag) 413 return period_size; 414 offset -= rme9652->max_jitter; 415 } 416 417 return offset; 418 } 419 420 static inline void rme9652_reset_hw_pointer(struct snd_rme9652 *rme9652) 421 { 422 int i; 423 424 /* reset the FIFO pointer to zero. We do this by writing to 8 425 registers, each of which is a 32bit wide register, and set 426 them all to zero. Note that s->iobase is a pointer to 427 int32, not pointer to char. 428 */ 429 430 for (i = 0; i < 8; i++) { 431 rme9652_write(rme9652, i * 4, 0); 432 udelay(10); 433 } 434 rme9652->prev_hw_offset = 0; 435 } 436 437 static inline void rme9652_start(struct snd_rme9652 *s) 438 { 439 s->control_register |= (RME9652_IE | RME9652_start_bit); 440 rme9652_write(s, RME9652_control_register, s->control_register); 441 } 442 443 static inline void rme9652_stop(struct snd_rme9652 *s) 444 { 445 s->control_register &= ~(RME9652_start_bit | RME9652_IE); 446 rme9652_write(s, RME9652_control_register, s->control_register); 447 } 448 449 static int rme9652_set_interrupt_interval(struct snd_rme9652 *s, 450 unsigned int frames) 451 { 452 int restart = 0; 453 int n; 454 455 spin_lock_irq(&s->lock); 456 457 if ((restart = s->running)) { 458 rme9652_stop(s); 459 } 460 461 frames >>= 7; 462 n = 0; 463 while (frames) { 464 n++; 465 frames >>= 1; 466 } 467 468 s->control_register &= ~RME9652_latency; 469 s->control_register |= rme9652_encode_latency(n); 470 471 rme9652_write(s, RME9652_control_register, s->control_register); 472 473 rme9652_compute_period_size(s); 474 475 if (restart) 476 rme9652_start(s); 477 478 spin_unlock_irq(&s->lock); 479 480 return 0; 481 } 482 483 static int rme9652_set_rate(struct snd_rme9652 *rme9652, int rate) 484 { 485 int restart; 486 int reject_if_open = 0; 487 int xrate; 488 489 if (!snd_rme9652_use_is_exclusive (rme9652)) { 490 return -EBUSY; 491 } 492 493 /* Changing from a "single speed" to a "double speed" rate is 494 not allowed if any substreams are open. This is because 495 such a change causes a shift in the location of 496 the DMA buffers and a reduction in the number of available 497 buffers. 498 499 Note that a similar but essentially insoluble problem 500 exists for externally-driven rate changes. All we can do 501 is to flag rate changes in the read/write routines. 502 */ 503 504 spin_lock_irq(&rme9652->lock); 505 xrate = rme9652_adat_sample_rate(rme9652); 506 507 switch (rate) { 508 case 44100: 509 if (xrate > 48000) { 510 reject_if_open = 1; 511 } 512 rate = 0; 513 break; 514 case 48000: 515 if (xrate > 48000) { 516 reject_if_open = 1; 517 } 518 rate = RME9652_freq; 519 break; 520 case 88200: 521 if (xrate < 48000) { 522 reject_if_open = 1; 523 } 524 rate = RME9652_DS; 525 break; 526 case 96000: 527 if (xrate < 48000) { 528 reject_if_open = 1; 529 } 530 rate = RME9652_DS | RME9652_freq; 531 break; 532 default: 533 spin_unlock_irq(&rme9652->lock); 534 return -EINVAL; 535 } 536 537 if (reject_if_open && (rme9652->capture_pid >= 0 || rme9652->playback_pid >= 0)) { 538 spin_unlock_irq(&rme9652->lock); 539 return -EBUSY; 540 } 541 542 if ((restart = rme9652->running)) { 543 rme9652_stop(rme9652); 544 } 545 rme9652->control_register &= ~(RME9652_freq | RME9652_DS); 546 rme9652->control_register |= rate; 547 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 548 549 if (restart) { 550 rme9652_start(rme9652); 551 } 552 553 if (rate & RME9652_DS) { 554 if (rme9652->ss_channels == RME9652_NCHANNELS) { 555 rme9652->channel_map = channel_map_9652_ds; 556 } else { 557 rme9652->channel_map = channel_map_9636_ds; 558 } 559 } else { 560 if (rme9652->ss_channels == RME9652_NCHANNELS) { 561 rme9652->channel_map = channel_map_9652_ss; 562 } else { 563 rme9652->channel_map = channel_map_9636_ss; 564 } 565 } 566 567 spin_unlock_irq(&rme9652->lock); 568 return 0; 569 } 570 571 static void rme9652_set_thru(struct snd_rme9652 *rme9652, int channel, int enable) 572 { 573 int i; 574 575 rme9652->passthru = 0; 576 577 if (channel < 0) { 578 579 /* set thru for all channels */ 580 581 if (enable) { 582 for (i = 0; i < RME9652_NCHANNELS; i++) { 583 rme9652->thru_bits |= (1 << i); 584 rme9652_write(rme9652, RME9652_thru_base + i * 4, 1); 585 } 586 } else { 587 for (i = 0; i < RME9652_NCHANNELS; i++) { 588 rme9652->thru_bits &= ~(1 << i); 589 rme9652_write(rme9652, RME9652_thru_base + i * 4, 0); 590 } 591 } 592 593 } else { 594 int mapped_channel; 595 596 mapped_channel = rme9652->channel_map[channel]; 597 598 if (enable) { 599 rme9652->thru_bits |= (1 << mapped_channel); 600 } else { 601 rme9652->thru_bits &= ~(1 << mapped_channel); 602 } 603 604 rme9652_write(rme9652, 605 RME9652_thru_base + mapped_channel * 4, 606 enable ? 1 : 0); 607 } 608 } 609 610 static int rme9652_set_passthru(struct snd_rme9652 *rme9652, int onoff) 611 { 612 if (onoff) { 613 rme9652_set_thru(rme9652, -1, 1); 614 615 /* we don't want interrupts, so do a 616 custom version of rme9652_start(). 617 */ 618 619 rme9652->control_register = 620 RME9652_inp_0 | 621 rme9652_encode_latency(7) | 622 RME9652_start_bit; 623 624 rme9652_reset_hw_pointer(rme9652); 625 626 rme9652_write(rme9652, RME9652_control_register, 627 rme9652->control_register); 628 rme9652->passthru = 1; 629 } else { 630 rme9652_set_thru(rme9652, -1, 0); 631 rme9652_stop(rme9652); 632 rme9652->passthru = 0; 633 } 634 635 return 0; 636 } 637 638 static void rme9652_spdif_set_bit (struct snd_rme9652 *rme9652, int mask, int onoff) 639 { 640 if (onoff) 641 rme9652->control_register |= mask; 642 else 643 rme9652->control_register &= ~mask; 644 645 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 646 } 647 648 static void rme9652_spdif_write_byte (struct snd_rme9652 *rme9652, const int val) 649 { 650 long mask; 651 long i; 652 653 for (i = 0, mask = 0x80; i < 8; i++, mask >>= 1) { 654 if (val & mask) 655 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_WRITE, 1); 656 else 657 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_WRITE, 0); 658 659 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_CLOCK, 1); 660 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_CLOCK, 0); 661 } 662 } 663 664 static int rme9652_spdif_read_byte (struct snd_rme9652 *rme9652) 665 { 666 long mask; 667 long val; 668 long i; 669 670 val = 0; 671 672 for (i = 0, mask = 0x80; i < 8; i++, mask >>= 1) { 673 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_CLOCK, 1); 674 if (rme9652_read (rme9652, RME9652_status_register) & RME9652_SPDIF_READ) 675 val |= mask; 676 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_CLOCK, 0); 677 } 678 679 return val; 680 } 681 682 static void rme9652_write_spdif_codec (struct snd_rme9652 *rme9652, const int address, const int data) 683 { 684 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 1); 685 rme9652_spdif_write_byte (rme9652, 0x20); 686 rme9652_spdif_write_byte (rme9652, address); 687 rme9652_spdif_write_byte (rme9652, data); 688 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 0); 689 } 690 691 692 static int rme9652_spdif_read_codec (struct snd_rme9652 *rme9652, const int address) 693 { 694 int ret; 695 696 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 1); 697 rme9652_spdif_write_byte (rme9652, 0x20); 698 rme9652_spdif_write_byte (rme9652, address); 699 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 0); 700 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 1); 701 702 rme9652_spdif_write_byte (rme9652, 0x21); 703 ret = rme9652_spdif_read_byte (rme9652); 704 rme9652_spdif_set_bit (rme9652, RME9652_SPDIF_SELECT, 0); 705 706 return ret; 707 } 708 709 static void rme9652_initialize_spdif_receiver (struct snd_rme9652 *rme9652) 710 { 711 /* XXX what unsets this ? */ 712 713 rme9652->control_register |= RME9652_SPDIF_RESET; 714 715 rme9652_write_spdif_codec (rme9652, 4, 0x40); 716 rme9652_write_spdif_codec (rme9652, 17, 0x13); 717 rme9652_write_spdif_codec (rme9652, 6, 0x02); 718 } 719 720 static inline int rme9652_spdif_sample_rate(struct snd_rme9652 *s) 721 { 722 unsigned int rate_bits; 723 724 if (rme9652_read(s, RME9652_status_register) & RME9652_ERF) { 725 return -1; /* error condition */ 726 } 727 728 if (s->hw_rev == 15) { 729 730 int x, y, ret; 731 732 x = rme9652_spdif_read_codec (s, 30); 733 734 if (x != 0) 735 y = 48000 * 64 / x; 736 else 737 y = 0; 738 739 if (y > 30400 && y < 33600) ret = 32000; 740 else if (y > 41900 && y < 46000) ret = 44100; 741 else if (y > 46000 && y < 50400) ret = 48000; 742 else if (y > 60800 && y < 67200) ret = 64000; 743 else if (y > 83700 && y < 92000) ret = 88200; 744 else if (y > 92000 && y < 100000) ret = 96000; 745 else ret = 0; 746 return ret; 747 } 748 749 rate_bits = rme9652_read(s, RME9652_status_register) & RME9652_F; 750 751 switch (rme9652_decode_spdif_rate(rate_bits)) { 752 case 0x7: 753 return 32000; 754 break; 755 756 case 0x6: 757 return 44100; 758 break; 759 760 case 0x5: 761 return 48000; 762 break; 763 764 case 0x4: 765 return 88200; 766 break; 767 768 case 0x3: 769 return 96000; 770 break; 771 772 case 0x0: 773 return 64000; 774 break; 775 776 default: 777 dev_err(s->card->dev, 778 "%s: unknown S/PDIF input rate (bits = 0x%x)\n", 779 s->card_name, rate_bits); 780 return 0; 781 break; 782 } 783 } 784 785 /*----------------------------------------------------------------------------- 786 Control Interface 787 ----------------------------------------------------------------------------*/ 788 789 static u32 snd_rme9652_convert_from_aes(struct snd_aes_iec958 *aes) 790 { 791 u32 val = 0; 792 val |= (aes->status[0] & IEC958_AES0_PROFESSIONAL) ? RME9652_PRO : 0; 793 val |= (aes->status[0] & IEC958_AES0_NONAUDIO) ? RME9652_Dolby : 0; 794 if (val & RME9652_PRO) 795 val |= (aes->status[0] & IEC958_AES0_PRO_EMPHASIS_5015) ? RME9652_EMP : 0; 796 else 797 val |= (aes->status[0] & IEC958_AES0_CON_EMPHASIS_5015) ? RME9652_EMP : 0; 798 return val; 799 } 800 801 static void snd_rme9652_convert_to_aes(struct snd_aes_iec958 *aes, u32 val) 802 { 803 aes->status[0] = ((val & RME9652_PRO) ? IEC958_AES0_PROFESSIONAL : 0) | 804 ((val & RME9652_Dolby) ? IEC958_AES0_NONAUDIO : 0); 805 if (val & RME9652_PRO) 806 aes->status[0] |= (val & RME9652_EMP) ? IEC958_AES0_PRO_EMPHASIS_5015 : 0; 807 else 808 aes->status[0] |= (val & RME9652_EMP) ? IEC958_AES0_CON_EMPHASIS_5015 : 0; 809 } 810 811 static int snd_rme9652_control_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 812 { 813 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; 814 uinfo->count = 1; 815 return 0; 816 } 817 818 static int snd_rme9652_control_spdif_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 819 { 820 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 821 822 snd_rme9652_convert_to_aes(&ucontrol->value.iec958, rme9652->creg_spdif); 823 return 0; 824 } 825 826 static int snd_rme9652_control_spdif_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 827 { 828 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 829 int change; 830 u32 val; 831 832 val = snd_rme9652_convert_from_aes(&ucontrol->value.iec958); 833 spin_lock_irq(&rme9652->lock); 834 change = val != rme9652->creg_spdif; 835 rme9652->creg_spdif = val; 836 spin_unlock_irq(&rme9652->lock); 837 return change; 838 } 839 840 static int snd_rme9652_control_spdif_stream_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 841 { 842 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; 843 uinfo->count = 1; 844 return 0; 845 } 846 847 static int snd_rme9652_control_spdif_stream_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 848 { 849 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 850 851 snd_rme9652_convert_to_aes(&ucontrol->value.iec958, rme9652->creg_spdif_stream); 852 return 0; 853 } 854 855 static int snd_rme9652_control_spdif_stream_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 856 { 857 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 858 int change; 859 u32 val; 860 861 val = snd_rme9652_convert_from_aes(&ucontrol->value.iec958); 862 spin_lock_irq(&rme9652->lock); 863 change = val != rme9652->creg_spdif_stream; 864 rme9652->creg_spdif_stream = val; 865 rme9652->control_register &= ~(RME9652_PRO | RME9652_Dolby | RME9652_EMP); 866 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register |= val); 867 spin_unlock_irq(&rme9652->lock); 868 return change; 869 } 870 871 static int snd_rme9652_control_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 872 { 873 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; 874 uinfo->count = 1; 875 return 0; 876 } 877 878 static int snd_rme9652_control_spdif_mask_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 879 { 880 ucontrol->value.iec958.status[0] = kcontrol->private_value; 881 return 0; 882 } 883 884 #define RME9652_ADAT1_IN(xname, xindex) \ 885 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 886 .info = snd_rme9652_info_adat1_in, \ 887 .get = snd_rme9652_get_adat1_in, \ 888 .put = snd_rme9652_put_adat1_in } 889 890 static unsigned int rme9652_adat1_in(struct snd_rme9652 *rme9652) 891 { 892 if (rme9652->control_register & RME9652_ADAT1_INTERNAL) 893 return 1; 894 return 0; 895 } 896 897 static int rme9652_set_adat1_input(struct snd_rme9652 *rme9652, int internal) 898 { 899 int restart = 0; 900 901 if (internal) { 902 rme9652->control_register |= RME9652_ADAT1_INTERNAL; 903 } else { 904 rme9652->control_register &= ~RME9652_ADAT1_INTERNAL; 905 } 906 907 /* XXX do we actually need to stop the card when we do this ? */ 908 909 if ((restart = rme9652->running)) { 910 rme9652_stop(rme9652); 911 } 912 913 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 914 915 if (restart) { 916 rme9652_start(rme9652); 917 } 918 919 return 0; 920 } 921 922 static int snd_rme9652_info_adat1_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 923 { 924 static const char * const texts[2] = {"ADAT1", "Internal"}; 925 926 return snd_ctl_enum_info(uinfo, 1, 2, texts); 927 } 928 929 static int snd_rme9652_get_adat1_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 930 { 931 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 932 933 spin_lock_irq(&rme9652->lock); 934 ucontrol->value.enumerated.item[0] = rme9652_adat1_in(rme9652); 935 spin_unlock_irq(&rme9652->lock); 936 return 0; 937 } 938 939 static int snd_rme9652_put_adat1_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 940 { 941 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 942 int change; 943 unsigned int val; 944 945 if (!snd_rme9652_use_is_exclusive(rme9652)) 946 return -EBUSY; 947 val = ucontrol->value.enumerated.item[0] % 2; 948 spin_lock_irq(&rme9652->lock); 949 change = val != rme9652_adat1_in(rme9652); 950 if (change) 951 rme9652_set_adat1_input(rme9652, val); 952 spin_unlock_irq(&rme9652->lock); 953 return change; 954 } 955 956 #define RME9652_SPDIF_IN(xname, xindex) \ 957 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 958 .info = snd_rme9652_info_spdif_in, \ 959 .get = snd_rme9652_get_spdif_in, .put = snd_rme9652_put_spdif_in } 960 961 static unsigned int rme9652_spdif_in(struct snd_rme9652 *rme9652) 962 { 963 return rme9652_decode_spdif_in(rme9652->control_register & 964 RME9652_inp); 965 } 966 967 static int rme9652_set_spdif_input(struct snd_rme9652 *rme9652, int in) 968 { 969 int restart = 0; 970 971 rme9652->control_register &= ~RME9652_inp; 972 rme9652->control_register |= rme9652_encode_spdif_in(in); 973 974 if ((restart = rme9652->running)) { 975 rme9652_stop(rme9652); 976 } 977 978 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 979 980 if (restart) { 981 rme9652_start(rme9652); 982 } 983 984 return 0; 985 } 986 987 static int snd_rme9652_info_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 988 { 989 static const char * const texts[3] = {"ADAT1", "Coaxial", "Internal"}; 990 991 return snd_ctl_enum_info(uinfo, 1, 3, texts); 992 } 993 994 static int snd_rme9652_get_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 995 { 996 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 997 998 spin_lock_irq(&rme9652->lock); 999 ucontrol->value.enumerated.item[0] = rme9652_spdif_in(rme9652); 1000 spin_unlock_irq(&rme9652->lock); 1001 return 0; 1002 } 1003 1004 static int snd_rme9652_put_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1005 { 1006 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1007 int change; 1008 unsigned int val; 1009 1010 if (!snd_rme9652_use_is_exclusive(rme9652)) 1011 return -EBUSY; 1012 val = ucontrol->value.enumerated.item[0] % 3; 1013 spin_lock_irq(&rme9652->lock); 1014 change = val != rme9652_spdif_in(rme9652); 1015 if (change) 1016 rme9652_set_spdif_input(rme9652, val); 1017 spin_unlock_irq(&rme9652->lock); 1018 return change; 1019 } 1020 1021 #define RME9652_SPDIF_OUT(xname, xindex) \ 1022 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1023 .info = snd_rme9652_info_spdif_out, \ 1024 .get = snd_rme9652_get_spdif_out, .put = snd_rme9652_put_spdif_out } 1025 1026 static int rme9652_spdif_out(struct snd_rme9652 *rme9652) 1027 { 1028 return (rme9652->control_register & RME9652_opt_out) ? 1 : 0; 1029 } 1030 1031 static int rme9652_set_spdif_output(struct snd_rme9652 *rme9652, int out) 1032 { 1033 int restart = 0; 1034 1035 if (out) { 1036 rme9652->control_register |= RME9652_opt_out; 1037 } else { 1038 rme9652->control_register &= ~RME9652_opt_out; 1039 } 1040 1041 if ((restart = rme9652->running)) { 1042 rme9652_stop(rme9652); 1043 } 1044 1045 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 1046 1047 if (restart) { 1048 rme9652_start(rme9652); 1049 } 1050 1051 return 0; 1052 } 1053 1054 #define snd_rme9652_info_spdif_out snd_ctl_boolean_mono_info 1055 1056 static int snd_rme9652_get_spdif_out(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1057 { 1058 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1059 1060 spin_lock_irq(&rme9652->lock); 1061 ucontrol->value.integer.value[0] = rme9652_spdif_out(rme9652); 1062 spin_unlock_irq(&rme9652->lock); 1063 return 0; 1064 } 1065 1066 static int snd_rme9652_put_spdif_out(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1067 { 1068 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1069 int change; 1070 unsigned int val; 1071 1072 if (!snd_rme9652_use_is_exclusive(rme9652)) 1073 return -EBUSY; 1074 val = ucontrol->value.integer.value[0] & 1; 1075 spin_lock_irq(&rme9652->lock); 1076 change = (int)val != rme9652_spdif_out(rme9652); 1077 rme9652_set_spdif_output(rme9652, val); 1078 spin_unlock_irq(&rme9652->lock); 1079 return change; 1080 } 1081 1082 #define RME9652_SYNC_MODE(xname, xindex) \ 1083 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1084 .info = snd_rme9652_info_sync_mode, \ 1085 .get = snd_rme9652_get_sync_mode, .put = snd_rme9652_put_sync_mode } 1086 1087 static int rme9652_sync_mode(struct snd_rme9652 *rme9652) 1088 { 1089 if (rme9652->control_register & RME9652_wsel) { 1090 return 2; 1091 } else if (rme9652->control_register & RME9652_Master) { 1092 return 1; 1093 } else { 1094 return 0; 1095 } 1096 } 1097 1098 static int rme9652_set_sync_mode(struct snd_rme9652 *rme9652, int mode) 1099 { 1100 int restart = 0; 1101 1102 switch (mode) { 1103 case 0: 1104 rme9652->control_register &= 1105 ~(RME9652_Master | RME9652_wsel); 1106 break; 1107 case 1: 1108 rme9652->control_register = 1109 (rme9652->control_register & ~RME9652_wsel) | RME9652_Master; 1110 break; 1111 case 2: 1112 rme9652->control_register |= 1113 (RME9652_Master | RME9652_wsel); 1114 break; 1115 } 1116 1117 if ((restart = rme9652->running)) { 1118 rme9652_stop(rme9652); 1119 } 1120 1121 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 1122 1123 if (restart) { 1124 rme9652_start(rme9652); 1125 } 1126 1127 return 0; 1128 } 1129 1130 static int snd_rme9652_info_sync_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 1131 { 1132 static const char * const texts[3] = { 1133 "AutoSync", "Master", "Word Clock" 1134 }; 1135 1136 return snd_ctl_enum_info(uinfo, 1, 3, texts); 1137 } 1138 1139 static int snd_rme9652_get_sync_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1140 { 1141 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1142 1143 spin_lock_irq(&rme9652->lock); 1144 ucontrol->value.enumerated.item[0] = rme9652_sync_mode(rme9652); 1145 spin_unlock_irq(&rme9652->lock); 1146 return 0; 1147 } 1148 1149 static int snd_rme9652_put_sync_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1150 { 1151 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1152 int change; 1153 unsigned int val; 1154 1155 val = ucontrol->value.enumerated.item[0] % 3; 1156 spin_lock_irq(&rme9652->lock); 1157 change = (int)val != rme9652_sync_mode(rme9652); 1158 rme9652_set_sync_mode(rme9652, val); 1159 spin_unlock_irq(&rme9652->lock); 1160 return change; 1161 } 1162 1163 #define RME9652_SYNC_PREF(xname, xindex) \ 1164 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1165 .info = snd_rme9652_info_sync_pref, \ 1166 .get = snd_rme9652_get_sync_pref, .put = snd_rme9652_put_sync_pref } 1167 1168 static int rme9652_sync_pref(struct snd_rme9652 *rme9652) 1169 { 1170 switch (rme9652->control_register & RME9652_SyncPref_Mask) { 1171 case RME9652_SyncPref_ADAT1: 1172 return RME9652_SYNC_FROM_ADAT1; 1173 case RME9652_SyncPref_ADAT2: 1174 return RME9652_SYNC_FROM_ADAT2; 1175 case RME9652_SyncPref_ADAT3: 1176 return RME9652_SYNC_FROM_ADAT3; 1177 case RME9652_SyncPref_SPDIF: 1178 return RME9652_SYNC_FROM_SPDIF; 1179 } 1180 /* Not reachable */ 1181 return 0; 1182 } 1183 1184 static int rme9652_set_sync_pref(struct snd_rme9652 *rme9652, int pref) 1185 { 1186 int restart; 1187 1188 rme9652->control_register &= ~RME9652_SyncPref_Mask; 1189 switch (pref) { 1190 case RME9652_SYNC_FROM_ADAT1: 1191 rme9652->control_register |= RME9652_SyncPref_ADAT1; 1192 break; 1193 case RME9652_SYNC_FROM_ADAT2: 1194 rme9652->control_register |= RME9652_SyncPref_ADAT2; 1195 break; 1196 case RME9652_SYNC_FROM_ADAT3: 1197 rme9652->control_register |= RME9652_SyncPref_ADAT3; 1198 break; 1199 case RME9652_SYNC_FROM_SPDIF: 1200 rme9652->control_register |= RME9652_SyncPref_SPDIF; 1201 break; 1202 } 1203 1204 if ((restart = rme9652->running)) { 1205 rme9652_stop(rme9652); 1206 } 1207 1208 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 1209 1210 if (restart) { 1211 rme9652_start(rme9652); 1212 } 1213 1214 return 0; 1215 } 1216 1217 static int snd_rme9652_info_sync_pref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 1218 { 1219 static const char * const texts[4] = { 1220 "IEC958 In", "ADAT1 In", "ADAT2 In", "ADAT3 In" 1221 }; 1222 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1223 1224 return snd_ctl_enum_info(uinfo, 1, 1225 rme9652->ss_channels == RME9652_NCHANNELS ? 4 : 3, 1226 texts); 1227 } 1228 1229 static int snd_rme9652_get_sync_pref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1230 { 1231 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1232 1233 spin_lock_irq(&rme9652->lock); 1234 ucontrol->value.enumerated.item[0] = rme9652_sync_pref(rme9652); 1235 spin_unlock_irq(&rme9652->lock); 1236 return 0; 1237 } 1238 1239 static int snd_rme9652_put_sync_pref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1240 { 1241 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1242 int change, max; 1243 unsigned int val; 1244 1245 if (!snd_rme9652_use_is_exclusive(rme9652)) 1246 return -EBUSY; 1247 max = rme9652->ss_channels == RME9652_NCHANNELS ? 4 : 3; 1248 val = ucontrol->value.enumerated.item[0] % max; 1249 spin_lock_irq(&rme9652->lock); 1250 change = (int)val != rme9652_sync_pref(rme9652); 1251 rme9652_set_sync_pref(rme9652, val); 1252 spin_unlock_irq(&rme9652->lock); 1253 return change; 1254 } 1255 1256 static int snd_rme9652_info_thru(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 1257 { 1258 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1259 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; 1260 uinfo->count = rme9652->ss_channels; 1261 uinfo->value.integer.min = 0; 1262 uinfo->value.integer.max = 1; 1263 return 0; 1264 } 1265 1266 static int snd_rme9652_get_thru(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1267 { 1268 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1269 unsigned int k; 1270 u32 thru_bits = rme9652->thru_bits; 1271 1272 for (k = 0; k < rme9652->ss_channels; ++k) { 1273 ucontrol->value.integer.value[k] = !!(thru_bits & (1 << k)); 1274 } 1275 return 0; 1276 } 1277 1278 static int snd_rme9652_put_thru(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1279 { 1280 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1281 int change; 1282 unsigned int chn; 1283 u32 thru_bits = 0; 1284 1285 if (!snd_rme9652_use_is_exclusive(rme9652)) 1286 return -EBUSY; 1287 1288 for (chn = 0; chn < rme9652->ss_channels; ++chn) { 1289 if (ucontrol->value.integer.value[chn]) 1290 thru_bits |= 1 << chn; 1291 } 1292 1293 spin_lock_irq(&rme9652->lock); 1294 change = thru_bits ^ rme9652->thru_bits; 1295 if (change) { 1296 for (chn = 0; chn < rme9652->ss_channels; ++chn) { 1297 if (!(change & (1 << chn))) 1298 continue; 1299 rme9652_set_thru(rme9652,chn,thru_bits&(1<<chn)); 1300 } 1301 } 1302 spin_unlock_irq(&rme9652->lock); 1303 return !!change; 1304 } 1305 1306 #define RME9652_PASSTHRU(xname, xindex) \ 1307 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1308 .info = snd_rme9652_info_passthru, \ 1309 .put = snd_rme9652_put_passthru, \ 1310 .get = snd_rme9652_get_passthru } 1311 1312 #define snd_rme9652_info_passthru snd_ctl_boolean_mono_info 1313 1314 static int snd_rme9652_get_passthru(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1315 { 1316 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1317 1318 spin_lock_irq(&rme9652->lock); 1319 ucontrol->value.integer.value[0] = rme9652->passthru; 1320 spin_unlock_irq(&rme9652->lock); 1321 return 0; 1322 } 1323 1324 static int snd_rme9652_put_passthru(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1325 { 1326 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1327 int change; 1328 unsigned int val; 1329 int err = 0; 1330 1331 if (!snd_rme9652_use_is_exclusive(rme9652)) 1332 return -EBUSY; 1333 1334 val = ucontrol->value.integer.value[0] & 1; 1335 spin_lock_irq(&rme9652->lock); 1336 change = (ucontrol->value.integer.value[0] != rme9652->passthru); 1337 if (change) 1338 err = rme9652_set_passthru(rme9652, val); 1339 spin_unlock_irq(&rme9652->lock); 1340 return err ? err : change; 1341 } 1342 1343 /* Read-only switches */ 1344 1345 #define RME9652_SPDIF_RATE(xname, xindex) \ 1346 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1347 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ 1348 .info = snd_rme9652_info_spdif_rate, \ 1349 .get = snd_rme9652_get_spdif_rate } 1350 1351 static int snd_rme9652_info_spdif_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 1352 { 1353 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; 1354 uinfo->count = 1; 1355 uinfo->value.integer.min = 0; 1356 uinfo->value.integer.max = 96000; 1357 return 0; 1358 } 1359 1360 static int snd_rme9652_get_spdif_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1361 { 1362 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1363 1364 spin_lock_irq(&rme9652->lock); 1365 ucontrol->value.integer.value[0] = rme9652_spdif_sample_rate(rme9652); 1366 spin_unlock_irq(&rme9652->lock); 1367 return 0; 1368 } 1369 1370 #define RME9652_ADAT_SYNC(xname, xindex, xidx) \ 1371 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1372 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ 1373 .info = snd_rme9652_info_adat_sync, \ 1374 .get = snd_rme9652_get_adat_sync, .private_value = xidx } 1375 1376 static int snd_rme9652_info_adat_sync(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) 1377 { 1378 static const char * const texts[4] = { 1379 "No Lock", "Lock", "No Lock Sync", "Lock Sync" 1380 }; 1381 1382 return snd_ctl_enum_info(uinfo, 1, 4, texts); 1383 } 1384 1385 static int snd_rme9652_get_adat_sync(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1386 { 1387 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1388 unsigned int mask1, mask2, val; 1389 1390 switch (kcontrol->private_value) { 1391 case 0: mask1 = RME9652_lock_0; mask2 = RME9652_sync_0; break; 1392 case 1: mask1 = RME9652_lock_1; mask2 = RME9652_sync_1; break; 1393 case 2: mask1 = RME9652_lock_2; mask2 = RME9652_sync_2; break; 1394 default: return -EINVAL; 1395 } 1396 val = rme9652_read(rme9652, RME9652_status_register); 1397 ucontrol->value.enumerated.item[0] = (val & mask1) ? 1 : 0; 1398 ucontrol->value.enumerated.item[0] |= (val & mask2) ? 2 : 0; 1399 return 0; 1400 } 1401 1402 #define RME9652_TC_VALID(xname, xindex) \ 1403 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1404 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ 1405 .info = snd_rme9652_info_tc_valid, \ 1406 .get = snd_rme9652_get_tc_valid } 1407 1408 #define snd_rme9652_info_tc_valid snd_ctl_boolean_mono_info 1409 1410 static int snd_rme9652_get_tc_valid(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) 1411 { 1412 struct snd_rme9652 *rme9652 = snd_kcontrol_chip(kcontrol); 1413 1414 ucontrol->value.integer.value[0] = 1415 (rme9652_read(rme9652, RME9652_status_register) & RME9652_tc_valid) ? 1 : 0; 1416 return 0; 1417 } 1418 1419 #ifdef ALSA_HAS_STANDARD_WAY_OF_RETURNING_TIMECODE 1420 1421 /* FIXME: this routine needs a port to the new control API --jk */ 1422 1423 static int snd_rme9652_get_tc_value(void *private_data, 1424 snd_kswitch_t *kswitch, 1425 snd_switch_t *uswitch) 1426 { 1427 struct snd_rme9652 *s = (struct snd_rme9652 *) private_data; 1428 u32 value; 1429 int i; 1430 1431 uswitch->type = SNDRV_SW_TYPE_DWORD; 1432 1433 if ((rme9652_read(s, RME9652_status_register) & 1434 RME9652_tc_valid) == 0) { 1435 uswitch->value.data32[0] = 0; 1436 return 0; 1437 } 1438 1439 /* timecode request */ 1440 1441 rme9652_write(s, RME9652_time_code, 0); 1442 1443 /* XXX bug alert: loop-based timing !!!! */ 1444 1445 for (i = 0; i < 50; i++) { 1446 if (!(rme9652_read(s, i * 4) & RME9652_tc_busy)) 1447 break; 1448 } 1449 1450 if (!(rme9652_read(s, i * 4) & RME9652_tc_busy)) { 1451 return -EIO; 1452 } 1453 1454 value = 0; 1455 1456 for (i = 0; i < 32; i++) { 1457 value >>= 1; 1458 1459 if (rme9652_read(s, i * 4) & RME9652_tc_out) 1460 value |= 0x80000000; 1461 } 1462 1463 if (value > 2 * 60 * 48000) { 1464 value -= 2 * 60 * 48000; 1465 } else { 1466 value = 0; 1467 } 1468 1469 uswitch->value.data32[0] = value; 1470 1471 return 0; 1472 } 1473 1474 #endif /* ALSA_HAS_STANDARD_WAY_OF_RETURNING_TIMECODE */ 1475 1476 static struct snd_kcontrol_new snd_rme9652_controls[] = { 1477 { 1478 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 1479 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT), 1480 .info = snd_rme9652_control_spdif_info, 1481 .get = snd_rme9652_control_spdif_get, 1482 .put = snd_rme9652_control_spdif_put, 1483 }, 1484 { 1485 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE, 1486 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 1487 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM), 1488 .info = snd_rme9652_control_spdif_stream_info, 1489 .get = snd_rme9652_control_spdif_stream_get, 1490 .put = snd_rme9652_control_spdif_stream_put, 1491 }, 1492 { 1493 .access = SNDRV_CTL_ELEM_ACCESS_READ, 1494 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 1495 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK), 1496 .info = snd_rme9652_control_spdif_mask_info, 1497 .get = snd_rme9652_control_spdif_mask_get, 1498 .private_value = IEC958_AES0_NONAUDIO | 1499 IEC958_AES0_PROFESSIONAL | 1500 IEC958_AES0_CON_EMPHASIS, 1501 }, 1502 { 1503 .access = SNDRV_CTL_ELEM_ACCESS_READ, 1504 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 1505 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK), 1506 .info = snd_rme9652_control_spdif_mask_info, 1507 .get = snd_rme9652_control_spdif_mask_get, 1508 .private_value = IEC958_AES0_NONAUDIO | 1509 IEC958_AES0_PROFESSIONAL | 1510 IEC958_AES0_PRO_EMPHASIS, 1511 }, 1512 RME9652_SPDIF_IN("IEC958 Input Connector", 0), 1513 RME9652_SPDIF_OUT("IEC958 Output also on ADAT1", 0), 1514 RME9652_SYNC_MODE("Sync Mode", 0), 1515 RME9652_SYNC_PREF("Preferred Sync Source", 0), 1516 { 1517 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1518 .name = "Channels Thru", 1519 .index = 0, 1520 .info = snd_rme9652_info_thru, 1521 .get = snd_rme9652_get_thru, 1522 .put = snd_rme9652_put_thru, 1523 }, 1524 RME9652_SPDIF_RATE("IEC958 Sample Rate", 0), 1525 RME9652_ADAT_SYNC("ADAT1 Sync Check", 0, 0), 1526 RME9652_ADAT_SYNC("ADAT2 Sync Check", 0, 1), 1527 RME9652_TC_VALID("Timecode Valid", 0), 1528 RME9652_PASSTHRU("Passthru", 0) 1529 }; 1530 1531 static struct snd_kcontrol_new snd_rme9652_adat3_check = 1532 RME9652_ADAT_SYNC("ADAT3 Sync Check", 0, 2); 1533 1534 static struct snd_kcontrol_new snd_rme9652_adat1_input = 1535 RME9652_ADAT1_IN("ADAT1 Input Source", 0); 1536 1537 static int snd_rme9652_create_controls(struct snd_card *card, struct snd_rme9652 *rme9652) 1538 { 1539 unsigned int idx; 1540 int err; 1541 struct snd_kcontrol *kctl; 1542 1543 for (idx = 0; idx < ARRAY_SIZE(snd_rme9652_controls); idx++) { 1544 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_rme9652_controls[idx], rme9652))) < 0) 1545 return err; 1546 if (idx == 1) /* IEC958 (S/PDIF) Stream */ 1547 rme9652->spdif_ctl = kctl; 1548 } 1549 1550 if (rme9652->ss_channels == RME9652_NCHANNELS) 1551 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_rme9652_adat3_check, rme9652))) < 0) 1552 return err; 1553 1554 if (rme9652->hw_rev >= 15) 1555 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_rme9652_adat1_input, rme9652))) < 0) 1556 return err; 1557 1558 return 0; 1559 } 1560 1561 /*------------------------------------------------------------ 1562 /proc interface 1563 ------------------------------------------------------------*/ 1564 1565 static void 1566 snd_rme9652_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) 1567 { 1568 struct snd_rme9652 *rme9652 = (struct snd_rme9652 *) entry->private_data; 1569 u32 thru_bits = rme9652->thru_bits; 1570 int show_auto_sync_source = 0; 1571 int i; 1572 unsigned int status; 1573 int x; 1574 1575 status = rme9652_read(rme9652, RME9652_status_register); 1576 1577 snd_iprintf(buffer, "%s (Card #%d)\n", rme9652->card_name, rme9652->card->number + 1); 1578 snd_iprintf(buffer, "Buffers: capture %p playback %p\n", 1579 rme9652->capture_buffer, rme9652->playback_buffer); 1580 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n", 1581 rme9652->irq, rme9652->port, (unsigned long)rme9652->iobase); 1582 snd_iprintf(buffer, "Control register: %x\n", rme9652->control_register); 1583 1584 snd_iprintf(buffer, "\n"); 1585 1586 x = 1 << (6 + rme9652_decode_latency(rme9652->control_register & 1587 RME9652_latency)); 1588 1589 snd_iprintf(buffer, "Latency: %d samples (2 periods of %lu bytes)\n", 1590 x, (unsigned long) rme9652->period_bytes); 1591 snd_iprintf(buffer, "Hardware pointer (frames): %ld\n", 1592 rme9652_hw_pointer(rme9652)); 1593 snd_iprintf(buffer, "Passthru: %s\n", 1594 rme9652->passthru ? "yes" : "no"); 1595 1596 if ((rme9652->control_register & (RME9652_Master | RME9652_wsel)) == 0) { 1597 snd_iprintf(buffer, "Clock mode: autosync\n"); 1598 show_auto_sync_source = 1; 1599 } else if (rme9652->control_register & RME9652_wsel) { 1600 if (status & RME9652_wsel_rd) { 1601 snd_iprintf(buffer, "Clock mode: word clock\n"); 1602 } else { 1603 snd_iprintf(buffer, "Clock mode: word clock (no signal)\n"); 1604 } 1605 } else { 1606 snd_iprintf(buffer, "Clock mode: master\n"); 1607 } 1608 1609 if (show_auto_sync_source) { 1610 switch (rme9652->control_register & RME9652_SyncPref_Mask) { 1611 case RME9652_SyncPref_ADAT1: 1612 snd_iprintf(buffer, "Pref. sync source: ADAT1\n"); 1613 break; 1614 case RME9652_SyncPref_ADAT2: 1615 snd_iprintf(buffer, "Pref. sync source: ADAT2\n"); 1616 break; 1617 case RME9652_SyncPref_ADAT3: 1618 snd_iprintf(buffer, "Pref. sync source: ADAT3\n"); 1619 break; 1620 case RME9652_SyncPref_SPDIF: 1621 snd_iprintf(buffer, "Pref. sync source: IEC958\n"); 1622 break; 1623 default: 1624 snd_iprintf(buffer, "Pref. sync source: ???\n"); 1625 } 1626 } 1627 1628 if (rme9652->hw_rev >= 15) 1629 snd_iprintf(buffer, "\nADAT1 Input source: %s\n", 1630 (rme9652->control_register & RME9652_ADAT1_INTERNAL) ? 1631 "Internal" : "ADAT1 optical"); 1632 1633 snd_iprintf(buffer, "\n"); 1634 1635 switch (rme9652_decode_spdif_in(rme9652->control_register & 1636 RME9652_inp)) { 1637 case RME9652_SPDIFIN_OPTICAL: 1638 snd_iprintf(buffer, "IEC958 input: ADAT1\n"); 1639 break; 1640 case RME9652_SPDIFIN_COAXIAL: 1641 snd_iprintf(buffer, "IEC958 input: Coaxial\n"); 1642 break; 1643 case RME9652_SPDIFIN_INTERN: 1644 snd_iprintf(buffer, "IEC958 input: Internal\n"); 1645 break; 1646 default: 1647 snd_iprintf(buffer, "IEC958 input: ???\n"); 1648 break; 1649 } 1650 1651 if (rme9652->control_register & RME9652_opt_out) { 1652 snd_iprintf(buffer, "IEC958 output: Coaxial & ADAT1\n"); 1653 } else { 1654 snd_iprintf(buffer, "IEC958 output: Coaxial only\n"); 1655 } 1656 1657 if (rme9652->control_register & RME9652_PRO) { 1658 snd_iprintf(buffer, "IEC958 quality: Professional\n"); 1659 } else { 1660 snd_iprintf(buffer, "IEC958 quality: Consumer\n"); 1661 } 1662 1663 if (rme9652->control_register & RME9652_EMP) { 1664 snd_iprintf(buffer, "IEC958 emphasis: on\n"); 1665 } else { 1666 snd_iprintf(buffer, "IEC958 emphasis: off\n"); 1667 } 1668 1669 if (rme9652->control_register & RME9652_Dolby) { 1670 snd_iprintf(buffer, "IEC958 Dolby: on\n"); 1671 } else { 1672 snd_iprintf(buffer, "IEC958 Dolby: off\n"); 1673 } 1674 1675 i = rme9652_spdif_sample_rate(rme9652); 1676 1677 if (i < 0) { 1678 snd_iprintf(buffer, 1679 "IEC958 sample rate: error flag set\n"); 1680 } else if (i == 0) { 1681 snd_iprintf(buffer, "IEC958 sample rate: undetermined\n"); 1682 } else { 1683 snd_iprintf(buffer, "IEC958 sample rate: %d\n", i); 1684 } 1685 1686 snd_iprintf(buffer, "\n"); 1687 1688 snd_iprintf(buffer, "ADAT Sample rate: %dHz\n", 1689 rme9652_adat_sample_rate(rme9652)); 1690 1691 /* Sync Check */ 1692 1693 x = status & RME9652_sync_0; 1694 if (status & RME9652_lock_0) { 1695 snd_iprintf(buffer, "ADAT1: %s\n", x ? "Sync" : "Lock"); 1696 } else { 1697 snd_iprintf(buffer, "ADAT1: No Lock\n"); 1698 } 1699 1700 x = status & RME9652_sync_1; 1701 if (status & RME9652_lock_1) { 1702 snd_iprintf(buffer, "ADAT2: %s\n", x ? "Sync" : "Lock"); 1703 } else { 1704 snd_iprintf(buffer, "ADAT2: No Lock\n"); 1705 } 1706 1707 x = status & RME9652_sync_2; 1708 if (status & RME9652_lock_2) { 1709 snd_iprintf(buffer, "ADAT3: %s\n", x ? "Sync" : "Lock"); 1710 } else { 1711 snd_iprintf(buffer, "ADAT3: No Lock\n"); 1712 } 1713 1714 snd_iprintf(buffer, "\n"); 1715 1716 snd_iprintf(buffer, "Timecode signal: %s\n", 1717 (status & RME9652_tc_valid) ? "yes" : "no"); 1718 1719 /* thru modes */ 1720 1721 snd_iprintf(buffer, "Punch Status:\n\n"); 1722 1723 for (i = 0; i < rme9652->ss_channels; i++) { 1724 if (thru_bits & (1 << i)) { 1725 snd_iprintf(buffer, "%2d: on ", i + 1); 1726 } else { 1727 snd_iprintf(buffer, "%2d: off ", i + 1); 1728 } 1729 1730 if (((i + 1) % 8) == 0) { 1731 snd_iprintf(buffer, "\n"); 1732 } 1733 } 1734 1735 snd_iprintf(buffer, "\n"); 1736 } 1737 1738 static void snd_rme9652_proc_init(struct snd_rme9652 *rme9652) 1739 { 1740 snd_card_ro_proc_new(rme9652->card, "rme9652", rme9652, 1741 snd_rme9652_proc_read); 1742 } 1743 1744 static void snd_rme9652_free_buffers(struct snd_rme9652 *rme9652) 1745 { 1746 snd_hammerfall_free_buffer(&rme9652->capture_dma_buf, rme9652->pci); 1747 snd_hammerfall_free_buffer(&rme9652->playback_dma_buf, rme9652->pci); 1748 } 1749 1750 static int snd_rme9652_free(struct snd_rme9652 *rme9652) 1751 { 1752 if (rme9652->irq >= 0) 1753 rme9652_stop(rme9652); 1754 snd_rme9652_free_buffers(rme9652); 1755 1756 if (rme9652->irq >= 0) 1757 free_irq(rme9652->irq, (void *)rme9652); 1758 iounmap(rme9652->iobase); 1759 if (rme9652->port) 1760 pci_release_regions(rme9652->pci); 1761 1762 pci_disable_device(rme9652->pci); 1763 return 0; 1764 } 1765 1766 static int snd_rme9652_initialize_memory(struct snd_rme9652 *rme9652) 1767 { 1768 unsigned long pb_bus, cb_bus; 1769 1770 if (snd_hammerfall_get_buffer(rme9652->pci, &rme9652->capture_dma_buf, RME9652_DMA_AREA_BYTES) < 0 || 1771 snd_hammerfall_get_buffer(rme9652->pci, &rme9652->playback_dma_buf, RME9652_DMA_AREA_BYTES) < 0) { 1772 if (rme9652->capture_dma_buf.area) 1773 snd_dma_free_pages(&rme9652->capture_dma_buf); 1774 dev_err(rme9652->card->dev, 1775 "%s: no buffers available\n", rme9652->card_name); 1776 return -ENOMEM; 1777 } 1778 1779 /* Align to bus-space 64K boundary */ 1780 1781 cb_bus = ALIGN(rme9652->capture_dma_buf.addr, 0x10000ul); 1782 pb_bus = ALIGN(rme9652->playback_dma_buf.addr, 0x10000ul); 1783 1784 /* Tell the card where it is */ 1785 1786 rme9652_write(rme9652, RME9652_rec_buffer, cb_bus); 1787 rme9652_write(rme9652, RME9652_play_buffer, pb_bus); 1788 1789 rme9652->capture_buffer = rme9652->capture_dma_buf.area + (cb_bus - rme9652->capture_dma_buf.addr); 1790 rme9652->playback_buffer = rme9652->playback_dma_buf.area + (pb_bus - rme9652->playback_dma_buf.addr); 1791 1792 return 0; 1793 } 1794 1795 static void snd_rme9652_set_defaults(struct snd_rme9652 *rme9652) 1796 { 1797 unsigned int k; 1798 1799 /* ASSUMPTION: rme9652->lock is either held, or 1800 there is no need to hold it (e.g. during module 1801 initialization). 1802 */ 1803 1804 /* set defaults: 1805 1806 SPDIF Input via Coax 1807 autosync clock mode 1808 maximum latency (7 = 8192 samples, 64Kbyte buffer, 1809 which implies 2 4096 sample, 32Kbyte periods). 1810 1811 if rev 1.5, initialize the S/PDIF receiver. 1812 1813 */ 1814 1815 rme9652->control_register = 1816 RME9652_inp_0 | rme9652_encode_latency(7); 1817 1818 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register); 1819 1820 rme9652_reset_hw_pointer(rme9652); 1821 rme9652_compute_period_size(rme9652); 1822 1823 /* default: thru off for all channels */ 1824 1825 for (k = 0; k < RME9652_NCHANNELS; ++k) 1826 rme9652_write(rme9652, RME9652_thru_base + k * 4, 0); 1827 1828 rme9652->thru_bits = 0; 1829 rme9652->passthru = 0; 1830 1831 /* set a default rate so that the channel map is set up */ 1832 1833 rme9652_set_rate(rme9652, 48000); 1834 } 1835 1836 static irqreturn_t snd_rme9652_interrupt(int irq, void *dev_id) 1837 { 1838 struct snd_rme9652 *rme9652 = (struct snd_rme9652 *) dev_id; 1839 1840 if (!(rme9652_read(rme9652, RME9652_status_register) & RME9652_IRQ)) { 1841 return IRQ_NONE; 1842 } 1843 1844 rme9652_write(rme9652, RME9652_irq_clear, 0); 1845 1846 if (rme9652->capture_substream) { 1847 snd_pcm_period_elapsed(rme9652->pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream); 1848 } 1849 1850 if (rme9652->playback_substream) { 1851 snd_pcm_period_elapsed(rme9652->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream); 1852 } 1853 return IRQ_HANDLED; 1854 } 1855 1856 static snd_pcm_uframes_t snd_rme9652_hw_pointer(struct snd_pcm_substream *substream) 1857 { 1858 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1859 return rme9652_hw_pointer(rme9652); 1860 } 1861 1862 static char *rme9652_channel_buffer_location(struct snd_rme9652 *rme9652, 1863 int stream, 1864 int channel) 1865 1866 { 1867 int mapped_channel; 1868 1869 if (snd_BUG_ON(channel < 0 || channel >= RME9652_NCHANNELS)) 1870 return NULL; 1871 1872 if ((mapped_channel = rme9652->channel_map[channel]) < 0) { 1873 return NULL; 1874 } 1875 1876 if (stream == SNDRV_PCM_STREAM_CAPTURE) { 1877 return rme9652->capture_buffer + 1878 (mapped_channel * RME9652_CHANNEL_BUFFER_BYTES); 1879 } else { 1880 return rme9652->playback_buffer + 1881 (mapped_channel * RME9652_CHANNEL_BUFFER_BYTES); 1882 } 1883 } 1884 1885 static int snd_rme9652_playback_copy(struct snd_pcm_substream *substream, 1886 int channel, unsigned long pos, 1887 void __user *src, unsigned long count) 1888 { 1889 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1890 char *channel_buf; 1891 1892 if (snd_BUG_ON(pos + count > RME9652_CHANNEL_BUFFER_BYTES)) 1893 return -EINVAL; 1894 1895 channel_buf = rme9652_channel_buffer_location (rme9652, 1896 substream->pstr->stream, 1897 channel); 1898 if (snd_BUG_ON(!channel_buf)) 1899 return -EIO; 1900 if (copy_from_user(channel_buf + pos, src, count)) 1901 return -EFAULT; 1902 return 0; 1903 } 1904 1905 static int snd_rme9652_playback_copy_kernel(struct snd_pcm_substream *substream, 1906 int channel, unsigned long pos, 1907 void *src, unsigned long count) 1908 { 1909 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1910 char *channel_buf; 1911 1912 channel_buf = rme9652_channel_buffer_location(rme9652, 1913 substream->pstr->stream, 1914 channel); 1915 if (snd_BUG_ON(!channel_buf)) 1916 return -EIO; 1917 memcpy(channel_buf + pos, src, count); 1918 return 0; 1919 } 1920 1921 static int snd_rme9652_capture_copy(struct snd_pcm_substream *substream, 1922 int channel, unsigned long pos, 1923 void __user *dst, unsigned long count) 1924 { 1925 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1926 char *channel_buf; 1927 1928 if (snd_BUG_ON(pos + count > RME9652_CHANNEL_BUFFER_BYTES)) 1929 return -EINVAL; 1930 1931 channel_buf = rme9652_channel_buffer_location (rme9652, 1932 substream->pstr->stream, 1933 channel); 1934 if (snd_BUG_ON(!channel_buf)) 1935 return -EIO; 1936 if (copy_to_user(dst, channel_buf + pos, count)) 1937 return -EFAULT; 1938 return 0; 1939 } 1940 1941 static int snd_rme9652_capture_copy_kernel(struct snd_pcm_substream *substream, 1942 int channel, unsigned long pos, 1943 void *dst, unsigned long count) 1944 { 1945 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1946 char *channel_buf; 1947 1948 channel_buf = rme9652_channel_buffer_location(rme9652, 1949 substream->pstr->stream, 1950 channel); 1951 if (snd_BUG_ON(!channel_buf)) 1952 return -EIO; 1953 memcpy(dst, channel_buf + pos, count); 1954 return 0; 1955 } 1956 1957 static int snd_rme9652_hw_silence(struct snd_pcm_substream *substream, 1958 int channel, unsigned long pos, 1959 unsigned long count) 1960 { 1961 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1962 char *channel_buf; 1963 1964 channel_buf = rme9652_channel_buffer_location (rme9652, 1965 substream->pstr->stream, 1966 channel); 1967 if (snd_BUG_ON(!channel_buf)) 1968 return -EIO; 1969 memset(channel_buf + pos, 0, count); 1970 return 0; 1971 } 1972 1973 static int snd_rme9652_reset(struct snd_pcm_substream *substream) 1974 { 1975 struct snd_pcm_runtime *runtime = substream->runtime; 1976 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 1977 struct snd_pcm_substream *other; 1978 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 1979 other = rme9652->capture_substream; 1980 else 1981 other = rme9652->playback_substream; 1982 if (rme9652->running) 1983 runtime->status->hw_ptr = rme9652_hw_pointer(rme9652); 1984 else 1985 runtime->status->hw_ptr = 0; 1986 if (other) { 1987 struct snd_pcm_substream *s; 1988 struct snd_pcm_runtime *oruntime = other->runtime; 1989 snd_pcm_group_for_each_entry(s, substream) { 1990 if (s == other) { 1991 oruntime->status->hw_ptr = runtime->status->hw_ptr; 1992 break; 1993 } 1994 } 1995 } 1996 return 0; 1997 } 1998 1999 static int snd_rme9652_hw_params(struct snd_pcm_substream *substream, 2000 struct snd_pcm_hw_params *params) 2001 { 2002 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2003 int err; 2004 pid_t this_pid; 2005 pid_t other_pid; 2006 2007 spin_lock_irq(&rme9652->lock); 2008 2009 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) { 2010 rme9652->control_register &= ~(RME9652_PRO | RME9652_Dolby | RME9652_EMP); 2011 rme9652_write(rme9652, RME9652_control_register, rme9652->control_register |= rme9652->creg_spdif_stream); 2012 this_pid = rme9652->playback_pid; 2013 other_pid = rme9652->capture_pid; 2014 } else { 2015 this_pid = rme9652->capture_pid; 2016 other_pid = rme9652->playback_pid; 2017 } 2018 2019 if ((other_pid > 0) && (this_pid != other_pid)) { 2020 2021 /* The other stream is open, and not by the same 2022 task as this one. Make sure that the parameters 2023 that matter are the same. 2024 */ 2025 2026 if ((int)params_rate(params) != 2027 rme9652_adat_sample_rate(rme9652)) { 2028 spin_unlock_irq(&rme9652->lock); 2029 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE); 2030 return -EBUSY; 2031 } 2032 2033 if (params_period_size(params) != rme9652->period_bytes / 4) { 2034 spin_unlock_irq(&rme9652->lock); 2035 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE); 2036 return -EBUSY; 2037 } 2038 2039 /* We're fine. */ 2040 2041 spin_unlock_irq(&rme9652->lock); 2042 return 0; 2043 2044 } else { 2045 spin_unlock_irq(&rme9652->lock); 2046 } 2047 2048 /* how to make sure that the rate matches an externally-set one ? 2049 */ 2050 2051 if ((err = rme9652_set_rate(rme9652, params_rate(params))) < 0) { 2052 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE); 2053 return err; 2054 } 2055 2056 if ((err = rme9652_set_interrupt_interval(rme9652, params_period_size(params))) < 0) { 2057 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE); 2058 return err; 2059 } 2060 2061 return 0; 2062 } 2063 2064 static int snd_rme9652_channel_info(struct snd_pcm_substream *substream, 2065 struct snd_pcm_channel_info *info) 2066 { 2067 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2068 int chn; 2069 2070 if (snd_BUG_ON(info->channel >= RME9652_NCHANNELS)) 2071 return -EINVAL; 2072 2073 chn = rme9652->channel_map[array_index_nospec(info->channel, 2074 RME9652_NCHANNELS)]; 2075 if (chn < 0) 2076 return -EINVAL; 2077 2078 info->offset = chn * RME9652_CHANNEL_BUFFER_BYTES; 2079 info->first = 0; 2080 info->step = 32; 2081 return 0; 2082 } 2083 2084 static int snd_rme9652_ioctl(struct snd_pcm_substream *substream, 2085 unsigned int cmd, void *arg) 2086 { 2087 switch (cmd) { 2088 case SNDRV_PCM_IOCTL1_RESET: 2089 { 2090 return snd_rme9652_reset(substream); 2091 } 2092 case SNDRV_PCM_IOCTL1_CHANNEL_INFO: 2093 { 2094 struct snd_pcm_channel_info *info = arg; 2095 return snd_rme9652_channel_info(substream, info); 2096 } 2097 default: 2098 break; 2099 } 2100 2101 return snd_pcm_lib_ioctl(substream, cmd, arg); 2102 } 2103 2104 static void rme9652_silence_playback(struct snd_rme9652 *rme9652) 2105 { 2106 memset(rme9652->playback_buffer, 0, RME9652_DMA_AREA_BYTES); 2107 } 2108 2109 static int snd_rme9652_trigger(struct snd_pcm_substream *substream, 2110 int cmd) 2111 { 2112 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2113 struct snd_pcm_substream *other; 2114 int running; 2115 spin_lock(&rme9652->lock); 2116 running = rme9652->running; 2117 switch (cmd) { 2118 case SNDRV_PCM_TRIGGER_START: 2119 running |= 1 << substream->stream; 2120 break; 2121 case SNDRV_PCM_TRIGGER_STOP: 2122 running &= ~(1 << substream->stream); 2123 break; 2124 default: 2125 snd_BUG(); 2126 spin_unlock(&rme9652->lock); 2127 return -EINVAL; 2128 } 2129 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 2130 other = rme9652->capture_substream; 2131 else 2132 other = rme9652->playback_substream; 2133 2134 if (other) { 2135 struct snd_pcm_substream *s; 2136 snd_pcm_group_for_each_entry(s, substream) { 2137 if (s == other) { 2138 snd_pcm_trigger_done(s, substream); 2139 if (cmd == SNDRV_PCM_TRIGGER_START) 2140 running |= 1 << s->stream; 2141 else 2142 running &= ~(1 << s->stream); 2143 goto _ok; 2144 } 2145 } 2146 if (cmd == SNDRV_PCM_TRIGGER_START) { 2147 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) && 2148 substream->stream == SNDRV_PCM_STREAM_CAPTURE) 2149 rme9652_silence_playback(rme9652); 2150 } else { 2151 if (running && 2152 substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 2153 rme9652_silence_playback(rme9652); 2154 } 2155 } else { 2156 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) 2157 rme9652_silence_playback(rme9652); 2158 } 2159 _ok: 2160 snd_pcm_trigger_done(substream, substream); 2161 if (!rme9652->running && running) 2162 rme9652_start(rme9652); 2163 else if (rme9652->running && !running) 2164 rme9652_stop(rme9652); 2165 rme9652->running = running; 2166 spin_unlock(&rme9652->lock); 2167 2168 return 0; 2169 } 2170 2171 static int snd_rme9652_prepare(struct snd_pcm_substream *substream) 2172 { 2173 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2174 unsigned long flags; 2175 int result = 0; 2176 2177 spin_lock_irqsave(&rme9652->lock, flags); 2178 if (!rme9652->running) 2179 rme9652_reset_hw_pointer(rme9652); 2180 spin_unlock_irqrestore(&rme9652->lock, flags); 2181 return result; 2182 } 2183 2184 static const struct snd_pcm_hardware snd_rme9652_playback_subinfo = 2185 { 2186 .info = (SNDRV_PCM_INFO_MMAP | 2187 SNDRV_PCM_INFO_MMAP_VALID | 2188 SNDRV_PCM_INFO_NONINTERLEAVED | 2189 SNDRV_PCM_INFO_SYNC_START | 2190 SNDRV_PCM_INFO_DOUBLE), 2191 .formats = SNDRV_PCM_FMTBIT_S32_LE, 2192 .rates = (SNDRV_PCM_RATE_44100 | 2193 SNDRV_PCM_RATE_48000 | 2194 SNDRV_PCM_RATE_88200 | 2195 SNDRV_PCM_RATE_96000), 2196 .rate_min = 44100, 2197 .rate_max = 96000, 2198 .channels_min = 10, 2199 .channels_max = 26, 2200 .buffer_bytes_max = RME9652_CHANNEL_BUFFER_BYTES * 26, 2201 .period_bytes_min = (64 * 4) * 10, 2202 .period_bytes_max = (8192 * 4) * 26, 2203 .periods_min = 2, 2204 .periods_max = 2, 2205 .fifo_size = 0, 2206 }; 2207 2208 static const struct snd_pcm_hardware snd_rme9652_capture_subinfo = 2209 { 2210 .info = (SNDRV_PCM_INFO_MMAP | 2211 SNDRV_PCM_INFO_MMAP_VALID | 2212 SNDRV_PCM_INFO_NONINTERLEAVED | 2213 SNDRV_PCM_INFO_SYNC_START), 2214 .formats = SNDRV_PCM_FMTBIT_S32_LE, 2215 .rates = (SNDRV_PCM_RATE_44100 | 2216 SNDRV_PCM_RATE_48000 | 2217 SNDRV_PCM_RATE_88200 | 2218 SNDRV_PCM_RATE_96000), 2219 .rate_min = 44100, 2220 .rate_max = 96000, 2221 .channels_min = 10, 2222 .channels_max = 26, 2223 .buffer_bytes_max = RME9652_CHANNEL_BUFFER_BYTES *26, 2224 .period_bytes_min = (64 * 4) * 10, 2225 .period_bytes_max = (8192 * 4) * 26, 2226 .periods_min = 2, 2227 .periods_max = 2, 2228 .fifo_size = 0, 2229 }; 2230 2231 static const unsigned int period_sizes[] = { 64, 128, 256, 512, 1024, 2048, 4096, 8192 }; 2232 2233 static const struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = { 2234 .count = ARRAY_SIZE(period_sizes), 2235 .list = period_sizes, 2236 .mask = 0 2237 }; 2238 2239 static int snd_rme9652_hw_rule_channels(struct snd_pcm_hw_params *params, 2240 struct snd_pcm_hw_rule *rule) 2241 { 2242 struct snd_rme9652 *rme9652 = rule->private; 2243 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); 2244 unsigned int list[2] = { rme9652->ds_channels, rme9652->ss_channels }; 2245 return snd_interval_list(c, 2, list, 0); 2246 } 2247 2248 static int snd_rme9652_hw_rule_channels_rate(struct snd_pcm_hw_params *params, 2249 struct snd_pcm_hw_rule *rule) 2250 { 2251 struct snd_rme9652 *rme9652 = rule->private; 2252 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); 2253 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); 2254 if (r->min > 48000) { 2255 struct snd_interval t = { 2256 .min = rme9652->ds_channels, 2257 .max = rme9652->ds_channels, 2258 .integer = 1, 2259 }; 2260 return snd_interval_refine(c, &t); 2261 } else if (r->max < 88200) { 2262 struct snd_interval t = { 2263 .min = rme9652->ss_channels, 2264 .max = rme9652->ss_channels, 2265 .integer = 1, 2266 }; 2267 return snd_interval_refine(c, &t); 2268 } 2269 return 0; 2270 } 2271 2272 static int snd_rme9652_hw_rule_rate_channels(struct snd_pcm_hw_params *params, 2273 struct snd_pcm_hw_rule *rule) 2274 { 2275 struct snd_rme9652 *rme9652 = rule->private; 2276 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); 2277 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); 2278 if (c->min >= rme9652->ss_channels) { 2279 struct snd_interval t = { 2280 .min = 44100, 2281 .max = 48000, 2282 .integer = 1, 2283 }; 2284 return snd_interval_refine(r, &t); 2285 } else if (c->max <= rme9652->ds_channels) { 2286 struct snd_interval t = { 2287 .min = 88200, 2288 .max = 96000, 2289 .integer = 1, 2290 }; 2291 return snd_interval_refine(r, &t); 2292 } 2293 return 0; 2294 } 2295 2296 static int snd_rme9652_playback_open(struct snd_pcm_substream *substream) 2297 { 2298 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2299 struct snd_pcm_runtime *runtime = substream->runtime; 2300 2301 spin_lock_irq(&rme9652->lock); 2302 2303 snd_pcm_set_sync(substream); 2304 2305 runtime->hw = snd_rme9652_playback_subinfo; 2306 runtime->dma_area = rme9652->playback_buffer; 2307 runtime->dma_bytes = RME9652_DMA_AREA_BYTES; 2308 2309 if (rme9652->capture_substream == NULL) { 2310 rme9652_stop(rme9652); 2311 rme9652_set_thru(rme9652, -1, 0); 2312 } 2313 2314 rme9652->playback_pid = current->pid; 2315 rme9652->playback_substream = substream; 2316 2317 spin_unlock_irq(&rme9652->lock); 2318 2319 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24); 2320 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hw_constraints_period_sizes); 2321 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2322 snd_rme9652_hw_rule_channels, rme9652, 2323 SNDRV_PCM_HW_PARAM_CHANNELS, -1); 2324 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2325 snd_rme9652_hw_rule_channels_rate, rme9652, 2326 SNDRV_PCM_HW_PARAM_RATE, -1); 2327 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, 2328 snd_rme9652_hw_rule_rate_channels, rme9652, 2329 SNDRV_PCM_HW_PARAM_CHANNELS, -1); 2330 2331 rme9652->creg_spdif_stream = rme9652->creg_spdif; 2332 rme9652->spdif_ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; 2333 snd_ctl_notify(rme9652->card, SNDRV_CTL_EVENT_MASK_VALUE | 2334 SNDRV_CTL_EVENT_MASK_INFO, &rme9652->spdif_ctl->id); 2335 return 0; 2336 } 2337 2338 static int snd_rme9652_playback_release(struct snd_pcm_substream *substream) 2339 { 2340 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2341 2342 spin_lock_irq(&rme9652->lock); 2343 2344 rme9652->playback_pid = -1; 2345 rme9652->playback_substream = NULL; 2346 2347 spin_unlock_irq(&rme9652->lock); 2348 2349 rme9652->spdif_ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE; 2350 snd_ctl_notify(rme9652->card, SNDRV_CTL_EVENT_MASK_VALUE | 2351 SNDRV_CTL_EVENT_MASK_INFO, &rme9652->spdif_ctl->id); 2352 return 0; 2353 } 2354 2355 2356 static int snd_rme9652_capture_open(struct snd_pcm_substream *substream) 2357 { 2358 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2359 struct snd_pcm_runtime *runtime = substream->runtime; 2360 2361 spin_lock_irq(&rme9652->lock); 2362 2363 snd_pcm_set_sync(substream); 2364 2365 runtime->hw = snd_rme9652_capture_subinfo; 2366 runtime->dma_area = rme9652->capture_buffer; 2367 runtime->dma_bytes = RME9652_DMA_AREA_BYTES; 2368 2369 if (rme9652->playback_substream == NULL) { 2370 rme9652_stop(rme9652); 2371 rme9652_set_thru(rme9652, -1, 0); 2372 } 2373 2374 rme9652->capture_pid = current->pid; 2375 rme9652->capture_substream = substream; 2376 2377 spin_unlock_irq(&rme9652->lock); 2378 2379 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24); 2380 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hw_constraints_period_sizes); 2381 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2382 snd_rme9652_hw_rule_channels, rme9652, 2383 SNDRV_PCM_HW_PARAM_CHANNELS, -1); 2384 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2385 snd_rme9652_hw_rule_channels_rate, rme9652, 2386 SNDRV_PCM_HW_PARAM_RATE, -1); 2387 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, 2388 snd_rme9652_hw_rule_rate_channels, rme9652, 2389 SNDRV_PCM_HW_PARAM_CHANNELS, -1); 2390 return 0; 2391 } 2392 2393 static int snd_rme9652_capture_release(struct snd_pcm_substream *substream) 2394 { 2395 struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream); 2396 2397 spin_lock_irq(&rme9652->lock); 2398 2399 rme9652->capture_pid = -1; 2400 rme9652->capture_substream = NULL; 2401 2402 spin_unlock_irq(&rme9652->lock); 2403 return 0; 2404 } 2405 2406 static const struct snd_pcm_ops snd_rme9652_playback_ops = { 2407 .open = snd_rme9652_playback_open, 2408 .close = snd_rme9652_playback_release, 2409 .ioctl = snd_rme9652_ioctl, 2410 .hw_params = snd_rme9652_hw_params, 2411 .prepare = snd_rme9652_prepare, 2412 .trigger = snd_rme9652_trigger, 2413 .pointer = snd_rme9652_hw_pointer, 2414 .copy_user = snd_rme9652_playback_copy, 2415 .copy_kernel = snd_rme9652_playback_copy_kernel, 2416 .fill_silence = snd_rme9652_hw_silence, 2417 }; 2418 2419 static const struct snd_pcm_ops snd_rme9652_capture_ops = { 2420 .open = snd_rme9652_capture_open, 2421 .close = snd_rme9652_capture_release, 2422 .ioctl = snd_rme9652_ioctl, 2423 .hw_params = snd_rme9652_hw_params, 2424 .prepare = snd_rme9652_prepare, 2425 .trigger = snd_rme9652_trigger, 2426 .pointer = snd_rme9652_hw_pointer, 2427 .copy_user = snd_rme9652_capture_copy, 2428 .copy_kernel = snd_rme9652_capture_copy_kernel, 2429 }; 2430 2431 static int snd_rme9652_create_pcm(struct snd_card *card, 2432 struct snd_rme9652 *rme9652) 2433 { 2434 struct snd_pcm *pcm; 2435 int err; 2436 2437 if ((err = snd_pcm_new(card, 2438 rme9652->card_name, 2439 0, 1, 1, &pcm)) < 0) { 2440 return err; 2441 } 2442 2443 rme9652->pcm = pcm; 2444 pcm->private_data = rme9652; 2445 strcpy(pcm->name, rme9652->card_name); 2446 2447 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_rme9652_playback_ops); 2448 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_rme9652_capture_ops); 2449 2450 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX; 2451 2452 return 0; 2453 } 2454 2455 static int snd_rme9652_create(struct snd_card *card, 2456 struct snd_rme9652 *rme9652, 2457 int precise_ptr) 2458 { 2459 struct pci_dev *pci = rme9652->pci; 2460 int err; 2461 int status; 2462 unsigned short rev; 2463 2464 rme9652->irq = -1; 2465 rme9652->card = card; 2466 2467 pci_read_config_word(rme9652->pci, PCI_CLASS_REVISION, &rev); 2468 2469 switch (rev & 0xff) { 2470 case 3: 2471 case 4: 2472 case 8: 2473 case 9: 2474 break; 2475 2476 default: 2477 /* who knows? */ 2478 return -ENODEV; 2479 } 2480 2481 if ((err = pci_enable_device(pci)) < 0) 2482 return err; 2483 2484 spin_lock_init(&rme9652->lock); 2485 2486 if ((err = pci_request_regions(pci, "rme9652")) < 0) 2487 return err; 2488 rme9652->port = pci_resource_start(pci, 0); 2489 rme9652->iobase = ioremap_nocache(rme9652->port, RME9652_IO_EXTENT); 2490 if (rme9652->iobase == NULL) { 2491 dev_err(card->dev, "unable to remap region 0x%lx-0x%lx\n", 2492 rme9652->port, rme9652->port + RME9652_IO_EXTENT - 1); 2493 return -EBUSY; 2494 } 2495 2496 if (request_irq(pci->irq, snd_rme9652_interrupt, IRQF_SHARED, 2497 KBUILD_MODNAME, rme9652)) { 2498 dev_err(card->dev, "unable to request IRQ %d\n", pci->irq); 2499 return -EBUSY; 2500 } 2501 rme9652->irq = pci->irq; 2502 rme9652->precise_ptr = precise_ptr; 2503 2504 /* Determine the h/w rev level of the card. This seems like 2505 a particularly kludgy way to encode it, but its what RME 2506 chose to do, so we follow them ... 2507 */ 2508 2509 status = rme9652_read(rme9652, RME9652_status_register); 2510 if (rme9652_decode_spdif_rate(status&RME9652_F) == 1) { 2511 rme9652->hw_rev = 15; 2512 } else { 2513 rme9652->hw_rev = 11; 2514 } 2515 2516 /* Differentiate between the standard Hammerfall, and the 2517 "Light", which does not have the expansion board. This 2518 method comes from information received from Mathhias 2519 Clausen at RME. Display the EEPROM and h/w revID where 2520 relevant. 2521 */ 2522 2523 switch (rev) { 2524 case 8: /* original eprom */ 2525 strcpy(card->driver, "RME9636"); 2526 if (rme9652->hw_rev == 15) { 2527 rme9652->card_name = "RME Digi9636 (Rev 1.5)"; 2528 } else { 2529 rme9652->card_name = "RME Digi9636"; 2530 } 2531 rme9652->ss_channels = RME9636_NCHANNELS; 2532 break; 2533 case 9: /* W36_G EPROM */ 2534 strcpy(card->driver, "RME9636"); 2535 rme9652->card_name = "RME Digi9636 (Rev G)"; 2536 rme9652->ss_channels = RME9636_NCHANNELS; 2537 break; 2538 case 4: /* W52_G EPROM */ 2539 strcpy(card->driver, "RME9652"); 2540 rme9652->card_name = "RME Digi9652 (Rev G)"; 2541 rme9652->ss_channels = RME9652_NCHANNELS; 2542 break; 2543 case 3: /* original eprom */ 2544 strcpy(card->driver, "RME9652"); 2545 if (rme9652->hw_rev == 15) { 2546 rme9652->card_name = "RME Digi9652 (Rev 1.5)"; 2547 } else { 2548 rme9652->card_name = "RME Digi9652"; 2549 } 2550 rme9652->ss_channels = RME9652_NCHANNELS; 2551 break; 2552 } 2553 2554 rme9652->ds_channels = (rme9652->ss_channels - 2) / 2 + 2; 2555 2556 pci_set_master(rme9652->pci); 2557 2558 if ((err = snd_rme9652_initialize_memory(rme9652)) < 0) { 2559 return err; 2560 } 2561 2562 if ((err = snd_rme9652_create_pcm(card, rme9652)) < 0) { 2563 return err; 2564 } 2565 2566 if ((err = snd_rme9652_create_controls(card, rme9652)) < 0) { 2567 return err; 2568 } 2569 2570 snd_rme9652_proc_init(rme9652); 2571 2572 rme9652->last_spdif_sample_rate = -1; 2573 rme9652->last_adat_sample_rate = -1; 2574 rme9652->playback_pid = -1; 2575 rme9652->capture_pid = -1; 2576 rme9652->capture_substream = NULL; 2577 rme9652->playback_substream = NULL; 2578 2579 snd_rme9652_set_defaults(rme9652); 2580 2581 if (rme9652->hw_rev == 15) { 2582 rme9652_initialize_spdif_receiver (rme9652); 2583 } 2584 2585 return 0; 2586 } 2587 2588 static void snd_rme9652_card_free(struct snd_card *card) 2589 { 2590 struct snd_rme9652 *rme9652 = (struct snd_rme9652 *) card->private_data; 2591 2592 if (rme9652) 2593 snd_rme9652_free(rme9652); 2594 } 2595 2596 static int snd_rme9652_probe(struct pci_dev *pci, 2597 const struct pci_device_id *pci_id) 2598 { 2599 static int dev; 2600 struct snd_rme9652 *rme9652; 2601 struct snd_card *card; 2602 int err; 2603 2604 if (dev >= SNDRV_CARDS) 2605 return -ENODEV; 2606 if (!enable[dev]) { 2607 dev++; 2608 return -ENOENT; 2609 } 2610 2611 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE, 2612 sizeof(struct snd_rme9652), &card); 2613 2614 if (err < 0) 2615 return err; 2616 2617 rme9652 = (struct snd_rme9652 *) card->private_data; 2618 card->private_free = snd_rme9652_card_free; 2619 rme9652->dev = dev; 2620 rme9652->pci = pci; 2621 err = snd_rme9652_create(card, rme9652, precise_ptr[dev]); 2622 if (err) 2623 goto free_card; 2624 2625 strcpy(card->shortname, rme9652->card_name); 2626 2627 sprintf(card->longname, "%s at 0x%lx, irq %d", 2628 card->shortname, rme9652->port, rme9652->irq); 2629 err = snd_card_register(card); 2630 if (err) { 2631 free_card: 2632 snd_card_free(card); 2633 return err; 2634 } 2635 pci_set_drvdata(pci, card); 2636 dev++; 2637 return 0; 2638 } 2639 2640 static void snd_rme9652_remove(struct pci_dev *pci) 2641 { 2642 snd_card_free(pci_get_drvdata(pci)); 2643 } 2644 2645 static struct pci_driver rme9652_driver = { 2646 .name = KBUILD_MODNAME, 2647 .id_table = snd_rme9652_ids, 2648 .probe = snd_rme9652_probe, 2649 .remove = snd_rme9652_remove, 2650 }; 2651 2652 module_pci_driver(rme9652_driver); 2653