2 * ALSA driver for RME Hammerfall DSP MADI audio interface(s)
4 * Copyright (c) 2003 Winfried Ritsch (IEM)
5 * code based on hdsp.c Paul Davis
8 * Modified 2006-06-01 for AES32 support by Remy Bruno
9 * <remy.bruno@trinnov.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/interrupt.h>
29 #include <linux/moduleparam.h>
30 #include <linux/slab.h>
31 #include <linux/pci.h>
34 #include <sound/core.h>
35 #include <sound/control.h>
36 #include <sound/pcm.h>
37 #include <sound/info.h>
38 #include <sound/asoundef.h>
39 #include <sound/rawmidi.h>
40 #include <sound/hwdep.h>
41 #include <sound/initval.h>
43 #include <sound/hdspm.h>
45 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
46 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
47 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
49 /* Disable precise pointer at start */
50 static int precise_ptr[SNDRV_CARDS];
52 /* Send all playback to line outs */
53 static int line_outs_monitor[SNDRV_CARDS];
55 /* Enable Analog Outs on Channel 63/64 by default */
56 static int enable_monitor[SNDRV_CARDS];
58 module_param_array(index, int, NULL, 0444);
59 MODULE_PARM_DESC(index, "Index value for RME HDSPM interface.");
61 module_param_array(id, charp, NULL, 0444);
62 MODULE_PARM_DESC(id, "ID string for RME HDSPM interface.");
64 module_param_array(enable, bool, NULL, 0444);
65 MODULE_PARM_DESC(enable, "Enable/disable specific HDSPM soundcards.");
67 module_param_array(precise_ptr, bool, NULL, 0444);
68 MODULE_PARM_DESC(precise_ptr, "Enable or disable precise pointer.");
70 module_param_array(line_outs_monitor, bool, NULL, 0444);
71 MODULE_PARM_DESC(line_outs_monitor,
72 "Send playback streams to analog outs by default.");
74 module_param_array(enable_monitor, bool, NULL, 0444);
75 MODULE_PARM_DESC(enable_monitor,
76 "Enable Analog Out on Channel 63/64 by default.");
79 ("Winfried Ritsch <ritsch_AT_iem.at>, "
80 "Paul Davis <paul@linuxaudiosystems.com>, "
81 "Marcus Andersson, Thomas Charbonnel <thomas@undata.org>, "
82 "Remy Bruno <remy.bruno@trinnov.com>");
83 MODULE_DESCRIPTION("RME HDSPM");
84 MODULE_LICENSE("GPL");
85 MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}");
87 /* --- Write registers. ---
88 These are defined as byte-offsets from the iobase value. */
90 #define HDSPM_controlRegister 64
91 #define HDSPM_interruptConfirmation 96
92 #define HDSPM_control2Reg 256 /* not in specs ???????? */
93 #define HDSPM_freqReg 256 /* for AES32 */
94 #define HDSPM_midiDataOut0 352 /* just believe in old code */
95 #define HDSPM_midiDataOut1 356
96 #define HDSPM_eeprom_wr 384 /* for AES32 */
98 /* DMA enable for 64 channels, only Bit 0 is relevant */
99 #define HDSPM_outputEnableBase 512 /* 512-767 input DMA */
100 #define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */
102 /* 16 page addresses for each of the 64 channels DMA buffer in and out
103 (each 64k=16*4k) Buffer must be 4k aligned (which is default i386 ????) */
104 #define HDSPM_pageAddressBufferOut 8192
105 #define HDSPM_pageAddressBufferIn (HDSPM_pageAddressBufferOut+64*16*4)
107 #define HDSPM_MADI_mixerBase 32768 /* 32768-65535 for 2x64x64 Fader */
109 #define HDSPM_MATRIX_MIXER_SIZE 8192 /* = 2*64*64 * 4 Byte => 32kB */
111 /* --- Read registers. ---
112 These are defined as byte-offsets from the iobase value */
113 #define HDSPM_statusRegister 0
114 /*#define HDSPM_statusRegister2 96 */
115 /* after RME Windows driver sources, status2 is 4-byte word # 48 = word at
116 * offset 192, for AES32 *and* MADI
117 * => need to check that offset 192 is working on MADI */
118 #define HDSPM_statusRegister2 192
119 #define HDSPM_timecodeRegister 128
121 #define HDSPM_midiDataIn0 360
122 #define HDSPM_midiDataIn1 364
124 /* status is data bytes in MIDI-FIFO (0-128) */
125 #define HDSPM_midiStatusOut0 384
126 #define HDSPM_midiStatusOut1 388
127 #define HDSPM_midiStatusIn0 392
128 #define HDSPM_midiStatusIn1 396
131 /* the meters are regular i/o-mapped registers, but offset
132 considerably from the rest. the peak registers are reset
133 when read; the least-significant 4 bits are full-scale counters;
134 the actual peak value is in the most-significant 24 bits.
136 #define HDSPM_MADI_peakrmsbase 4096 /* 4096-8191 2x64x32Bit Meters */
138 /* --- Control Register bits --------- */
139 #define HDSPM_Start (1<<0) /* start engine */
141 #define HDSPM_Latency0 (1<<1) /* buffer size = 2^n */
142 #define HDSPM_Latency1 (1<<2) /* where n is defined */
143 #define HDSPM_Latency2 (1<<3) /* by Latency{2,1,0} */
145 #define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
147 #define HDSPM_AudioInterruptEnable (1<<5) /* what do you think ? */
149 #define HDSPM_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz 1=48kHz/96kHz */
150 #define HDSPM_Frequency1 (1<<7) /* 0=32kHz/64kHz */
151 #define HDSPM_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
152 #define HDSPM_QuadSpeed (1<<31) /* quad speed bit */
154 #define HDSPM_Professional (1<<9) /* Professional */ /* AES32 ONLY */
155 #define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1,
156 56channelMODE=0 */ /* MADI ONLY*/
157 #define HDSPM_Emphasis (1<<10) /* Emphasis */ /* AES32 ONLY */
159 #define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode,
160 0=off, 1=on */ /* MADI ONLY */
161 #define HDSPM_Dolby (1<<11) /* Dolby = "NonAudio" ?? */ /* AES32 ONLY */
163 #define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax
166 #define HDSPM_InputSelect1 (1<<15) /* should be 0 */
168 #define HDSPM_SyncRef0 (1<<16) /* 0=WOrd, 1=MADI */
169 #define HDSPM_SyncRef1 (1<<17) /* for AES32: SyncRefN codes the AES # */
170 #define HDSPM_SyncRef2 (1<<13)
171 #define HDSPM_SyncRef3 (1<<25)
173 #define HDSPM_SMUX (1<<18) /* Frame ??? */ /* MADI ONY */
174 #define HDSPM_clr_tms (1<<19) /* clear track marker, do not use
175 AES additional bits in
176 lower 5 Audiodatabits ??? */
177 #define HDSPM_taxi_reset (1<<20) /* ??? */ /* MADI ONLY ? */
178 #define HDSPM_WCK48 (1<<20) /* Frame ??? = HDSPM_SMUX */ /* AES32 ONLY */
180 #define HDSPM_Midi0InterruptEnable (1<<22)
181 #define HDSPM_Midi1InterruptEnable (1<<23)
183 #define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */
185 #define HDSPM_DS_DoubleWire (1<<26) /* AES32 ONLY */
186 #define HDSPM_QS_DoubleWire (1<<27) /* AES32 ONLY */
187 #define HDSPM_QS_QuadWire (1<<28) /* AES32 ONLY */
189 #define HDSPM_wclk_sel (1<<30)
191 /* --- bit helper defines */
192 #define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2)
193 #define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1|\
194 HDSPM_DoubleSpeed|HDSPM_QuadSpeed)
195 #define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1)
196 #define HDSPM_InputOptical 0
197 #define HDSPM_InputCoaxial (HDSPM_InputSelect0)
198 #define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1|\
199 HDSPM_SyncRef2|HDSPM_SyncRef3)
200 #define HDSPM_SyncRef_Word 0
201 #define HDSPM_SyncRef_MADI (HDSPM_SyncRef0)
203 #define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */
204 #define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */
206 #define HDSPM_Frequency32KHz HDSPM_Frequency0
207 #define HDSPM_Frequency44_1KHz HDSPM_Frequency1
208 #define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0)
209 #define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0)
210 #define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1)
211 #define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|\
213 #define HDSPM_Frequency128KHz (HDSPM_QuadSpeed|HDSPM_Frequency0)
214 #define HDSPM_Frequency176_4KHz (HDSPM_QuadSpeed|HDSPM_Frequency1)
215 #define HDSPM_Frequency192KHz (HDSPM_QuadSpeed|HDSPM_Frequency1|\
218 /* --- for internal discrimination */
219 #define HDSPM_CLOCK_SOURCE_AUTOSYNC 0 /* Sample Clock Sources */
220 #define HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ 1
221 #define HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
222 #define HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ 3
223 #define HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ 4
224 #define HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
225 #define HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ 6
226 #define HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ 7
227 #define HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
228 #define HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ 9
230 /* Synccheck Status */
231 #define HDSPM_SYNC_CHECK_NO_LOCK 0
232 #define HDSPM_SYNC_CHECK_LOCK 1
233 #define HDSPM_SYNC_CHECK_SYNC 2
235 /* AutoSync References - used by "autosync_ref" control switch */
236 #define HDSPM_AUTOSYNC_FROM_WORD 0
237 #define HDSPM_AUTOSYNC_FROM_MADI 1
238 #define HDSPM_AUTOSYNC_FROM_NONE 2
240 /* Possible sources of MADI input */
241 #define HDSPM_OPTICAL 0 /* optical */
242 #define HDSPM_COAXIAL 1 /* BNC */
244 #define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask)
245 #define hdspm_decode_latency(x) (((x) & HDSPM_LatencyMask)>>1)
247 #define hdspm_encode_in(x) (((x)&0x3)<<14)
248 #define hdspm_decode_in(x) (((x)>>14)&0x3)
250 /* --- control2 register bits --- */
251 #define HDSPM_TMS (1<<0)
252 #define HDSPM_TCK (1<<1)
253 #define HDSPM_TDI (1<<2)
254 #define HDSPM_JTAG (1<<3)
255 #define HDSPM_PWDN (1<<4)
256 #define HDSPM_PROGRAM (1<<5)
257 #define HDSPM_CONFIG_MODE_0 (1<<6)
258 #define HDSPM_CONFIG_MODE_1 (1<<7)
259 /*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/
260 #define HDSPM_BIGENDIAN_MODE (1<<9)
261 #define HDSPM_RD_MULTIPLE (1<<10)
263 /* --- Status Register bits --- */ /* MADI ONLY */ /* Bits defined here and
264 that do not conflict with specific bits for AES32 seem to be valid also
267 #define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */
268 #define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn MODE=0 */
269 #define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1
272 #define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */
274 #define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
275 /* since 64byte accurate last 6 bits
278 #define HDSPM_madiSync (1<<18) /* MADI is in sync */
279 #define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */
281 #define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */
282 #define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */
283 #define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */
284 #define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */
286 #define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with
289 #define HDSPM_midi0IRQPending (1<<30) /* MIDI IRQ is pending */
290 #define HDSPM_midi1IRQPending (1<<31) /* and aktiv */
292 /* --- status bit helpers */
293 #define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|\
294 HDSPM_madiFreq2|HDSPM_madiFreq3)
295 #define HDSPM_madiFreq32 (HDSPM_madiFreq0)
296 #define HDSPM_madiFreq44_1 (HDSPM_madiFreq1)
297 #define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1)
298 #define HDSPM_madiFreq64 (HDSPM_madiFreq2)
299 #define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2)
300 #define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2)
301 #define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2)
302 #define HDSPM_madiFreq176_4 (HDSPM_madiFreq3)
303 #define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0)
305 /* Status2 Register bits */ /* MADI ONLY */
307 #define HDSPM_version0 (1<<0) /* not realy defined but I guess */
308 #define HDSPM_version1 (1<<1) /* in former cards it was ??? */
309 #define HDSPM_version2 (1<<2)
311 #define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */
312 #define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */
314 #define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */
315 #define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */
316 #define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, */
317 /* missing Bit for 111=128, 1000=176.4, 1001=192 */
319 #define HDSPM_SelSyncRef0 (1<<8) /* Sync Source in slave mode */
320 #define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */
321 #define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */
323 #define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync)
325 #define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2)
326 #define HDSPM_wcFreq32 (HDSPM_wc_freq0)
327 #define HDSPM_wcFreq44_1 (HDSPM_wc_freq1)
328 #define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1)
329 #define HDSPM_wcFreq64 (HDSPM_wc_freq2)
330 #define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2)
331 #define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2)
334 #define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
336 #define HDSPM_SelSyncRef_WORD 0
337 #define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0)
338 #define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
342 For AES32, bits for status, status2 and timecode are different
345 #define HDSPM_AES32_wcLock 0x0200000
346 #define HDSPM_AES32_wcFreq_bit 22
347 /* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function
349 #define HDSPM_AES32_syncref_bit 16
350 /* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */
352 #define HDSPM_AES32_AUTOSYNC_FROM_WORD 0
353 #define HDSPM_AES32_AUTOSYNC_FROM_AES1 1
354 #define HDSPM_AES32_AUTOSYNC_FROM_AES2 2
355 #define HDSPM_AES32_AUTOSYNC_FROM_AES3 3
356 #define HDSPM_AES32_AUTOSYNC_FROM_AES4 4
357 #define HDSPM_AES32_AUTOSYNC_FROM_AES5 5
358 #define HDSPM_AES32_AUTOSYNC_FROM_AES6 6
359 #define HDSPM_AES32_AUTOSYNC_FROM_AES7 7
360 #define HDSPM_AES32_AUTOSYNC_FROM_AES8 8
361 #define HDSPM_AES32_AUTOSYNC_FROM_NONE 9
364 /* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */
365 #define HDSPM_LockAES 0x80
366 #define HDSPM_LockAES1 0x80
367 #define HDSPM_LockAES2 0x40
368 #define HDSPM_LockAES3 0x20
369 #define HDSPM_LockAES4 0x10
370 #define HDSPM_LockAES5 0x8
371 #define HDSPM_LockAES6 0x4
372 #define HDSPM_LockAES7 0x2
373 #define HDSPM_LockAES8 0x1
376 After windows driver sources, bits 4*i to 4*i+3 give the input frequency on
388 NB: Timecode register doesn't seem to work on AES32 card revision 230
392 #define UNITY_GAIN 32768 /* = 65536/2 */
393 #define MINUS_INFINITY_GAIN 0
395 /* Number of channels for different Speed Modes */
396 #define MADI_SS_CHANNELS 64
397 #define MADI_DS_CHANNELS 32
398 #define MADI_QS_CHANNELS 16
400 /* the size of a substream (1 mono data stream) */
401 #define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
402 #define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
404 /* the size of the area we need to allocate for DMA transfers. the
405 size is the same regardless of the number of channels, and
406 also the latency to use.
407 for one direction !!!
409 #define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
410 #define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
412 /* revisions >= 230 indicate AES32 card */
413 #define HDSPM_AESREVISION 230
415 /* speed factor modes */
416 #define HDSPM_SPEED_SINGLE 0
417 #define HDSPM_SPEED_DOUBLE 1
418 #define HDSPM_SPEED_QUAD 2
419 /* names for speed modes */
420 static char *hdspm_speed_names[] = { "single", "double", "quad" };
425 struct snd_rawmidi *rmidi;
426 struct snd_rawmidi_substream *input;
427 struct snd_rawmidi_substream *output;
428 char istimer; /* timer in use */
429 struct timer_list timer;
436 /* only one playback and/or capture stream */
437 struct snd_pcm_substream *capture_substream;
438 struct snd_pcm_substream *playback_substream;
440 char *card_name; /* for procinfo */
441 unsigned short firmware_rev; /* dont know if relevant (yes if AES32)*/
443 unsigned char is_aes32; /* indicates if card is AES32 */
445 int precise_ptr; /* use precise pointers, to be tested */
446 int monitor_outs; /* set up monitoring outs init flag */
448 u32 control_register; /* cached value */
449 u32 control2_register; /* cached value */
451 struct hdspm_midi midi[2];
452 struct tasklet_struct midi_tasklet;
455 unsigned char ss_channels; /* channels of card in single speed */
456 unsigned char ds_channels; /* Double Speed */
457 unsigned char qs_channels; /* Quad Speed */
459 unsigned char *playback_buffer; /* suitably aligned address */
460 unsigned char *capture_buffer; /* suitably aligned address */
462 pid_t capture_pid; /* process id which uses capture */
463 pid_t playback_pid; /* process id which uses capture */
464 int running; /* running status */
466 int last_external_sample_rate; /* samplerate mystic ... */
467 int last_internal_sample_rate;
468 int system_sample_rate;
470 char *channel_map; /* channel map for DS and Quadspeed */
472 int dev; /* Hardware vars... */
475 void __iomem *iobase;
477 int irq_count; /* for debug */
479 struct snd_card *card; /* one card */
480 struct snd_pcm *pcm; /* has one pcm */
481 struct snd_hwdep *hwdep; /* and a hwdep for additional ioctl */
482 struct pci_dev *pci; /* and an pci info */
485 /* fast alsa mixer */
486 struct snd_kcontrol *playback_mixer_ctls[HDSPM_MAX_CHANNELS];
487 /* but input to much, so not used */
488 struct snd_kcontrol *input_mixer_ctls[HDSPM_MAX_CHANNELS];
489 /* full mixer accessable over mixer ioctl or hwdep-device */
490 struct hdspm_mixer *mixer;
494 /* These tables map the ALSA channels 1..N to the channels that we
495 need to use in order to find the relevant channel buffer. RME
496 refer to this kind of mapping as between "the ADAT channel and
497 the DMA channel." We index it using the logical audio channel,
498 and the value is the DMA channel (i.e. channel buffer number)
499 where the data for that channel can be read/written from/to.
502 static char channel_map_madi_ss[HDSPM_MAX_CHANNELS] = {
503 0, 1, 2, 3, 4, 5, 6, 7,
504 8, 9, 10, 11, 12, 13, 14, 15,
505 16, 17, 18, 19, 20, 21, 22, 23,
506 24, 25, 26, 27, 28, 29, 30, 31,
507 32, 33, 34, 35, 36, 37, 38, 39,
508 40, 41, 42, 43, 44, 45, 46, 47,
509 48, 49, 50, 51, 52, 53, 54, 55,
510 56, 57, 58, 59, 60, 61, 62, 63
514 static struct pci_device_id snd_hdspm_ids[] __devinitdata = {
516 .vendor = PCI_VENDOR_ID_XILINX,
517 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI,
518 .subvendor = PCI_ANY_ID,
519 .subdevice = PCI_ANY_ID,
526 MODULE_DEVICE_TABLE(pci, snd_hdspm_ids);
529 static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
530 struct hdspm * hdspm);
531 static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
532 struct hdspm * hdspm);
534 static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm);
535 static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm);
536 static int hdspm_autosync_ref(struct hdspm * hdspm);
537 static int snd_hdspm_set_defaults(struct hdspm * hdspm);
538 static void hdspm_set_sgbuf(struct hdspm * hdspm, struct snd_sg_buf *sgbuf,
539 unsigned int reg, int channels);
541 static inline int HDSPM_bit2freq(int n)
543 static const int bit2freq_tab[] = {
544 0, 32000, 44100, 48000, 64000, 88200,
545 96000, 128000, 176400, 192000 };
548 return bit2freq_tab[n];
551 /* Write/read to/from HDSPM with Adresses in Bytes
552 not words but only 32Bit writes are allowed */
554 static inline void hdspm_write(struct hdspm * hdspm, unsigned int reg,
557 writel(val, hdspm->iobase + reg);
560 static inline unsigned int hdspm_read(struct hdspm * hdspm, unsigned int reg)
562 return readl(hdspm->iobase + reg);
565 /* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
566 mixer is write only on hardware so we have to cache him for read
567 each fader is a u32, but uses only the first 16 bit */
569 static inline int hdspm_read_in_gain(struct hdspm * hdspm, unsigned int chan,
572 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
575 return hdspm->mixer->ch[chan].in[in];
578 static inline int hdspm_read_pb_gain(struct hdspm * hdspm, unsigned int chan,
581 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
583 return hdspm->mixer->ch[chan].pb[pb];
586 static int hdspm_write_in_gain(struct hdspm *hdspm, unsigned int chan,
587 unsigned int in, unsigned short data)
589 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
593 HDSPM_MADI_mixerBase +
594 ((in + 128 * chan) * sizeof(u32)),
595 (hdspm->mixer->ch[chan].in[in] = data & 0xFFFF));
599 static int hdspm_write_pb_gain(struct hdspm *hdspm, unsigned int chan,
600 unsigned int pb, unsigned short data)
602 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
606 HDSPM_MADI_mixerBase +
607 ((64 + pb + 128 * chan) * sizeof(u32)),
608 (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF));
613 /* enable DMA for specific channels, now available for DSP-MADI */
614 static inline void snd_hdspm_enable_in(struct hdspm * hdspm, int i, int v)
616 hdspm_write(hdspm, HDSPM_inputEnableBase + (4 * i), v);
619 static inline void snd_hdspm_enable_out(struct hdspm * hdspm, int i, int v)
621 hdspm_write(hdspm, HDSPM_outputEnableBase + (4 * i), v);
624 /* check if same process is writing and reading */
625 static int snd_hdspm_use_is_exclusive(struct hdspm *hdspm)
630 spin_lock_irqsave(&hdspm->lock, flags);
631 if ((hdspm->playback_pid != hdspm->capture_pid) &&
632 (hdspm->playback_pid >= 0) && (hdspm->capture_pid >= 0)) {
635 spin_unlock_irqrestore(&hdspm->lock, flags);
639 /* check for external sample rate */
640 static int hdspm_external_sample_rate(struct hdspm *hdspm)
642 if (hdspm->is_aes32) {
643 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
644 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
645 unsigned int timecode =
646 hdspm_read(hdspm, HDSPM_timecodeRegister);
648 int syncref = hdspm_autosync_ref(hdspm);
650 if (syncref == HDSPM_AES32_AUTOSYNC_FROM_WORD &&
651 status & HDSPM_AES32_wcLock)
652 return HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit)
654 if (syncref >= HDSPM_AES32_AUTOSYNC_FROM_AES1 &&
655 syncref <= HDSPM_AES32_AUTOSYNC_FROM_AES8 &&
656 status2 & (HDSPM_LockAES >>
657 (syncref - HDSPM_AES32_AUTOSYNC_FROM_AES1)))
658 return HDSPM_bit2freq((timecode >>
659 (4*(syncref-HDSPM_AES32_AUTOSYNC_FROM_AES1))) & 0xF);
662 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
663 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
664 unsigned int rate_bits;
667 /* if wordclock has synced freq and wordclock is valid */
668 if ((status2 & HDSPM_wcLock) != 0 &&
669 (status & HDSPM_SelSyncRef0) == 0) {
671 rate_bits = status2 & HDSPM_wcFreqMask;
677 case HDSPM_wcFreq44_1:
686 case HDSPM_wcFreq88_2:
692 /* Quadspeed Bit missing ???? */
699 /* if rate detected and Syncref is Word than have it,
700 * word has priority to MADI
703 (status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD)
706 /* maby a madi input (which is taken if sel sync is madi) */
707 if (status & HDSPM_madiLock) {
708 rate_bits = status & HDSPM_madiFreqMask;
711 case HDSPM_madiFreq32:
714 case HDSPM_madiFreq44_1:
717 case HDSPM_madiFreq48:
720 case HDSPM_madiFreq64:
723 case HDSPM_madiFreq88_2:
726 case HDSPM_madiFreq96:
729 case HDSPM_madiFreq128:
732 case HDSPM_madiFreq176_4:
735 case HDSPM_madiFreq192:
747 /* Latency function */
748 static inline void hdspm_compute_period_size(struct hdspm * hdspm)
750 hdspm->period_bytes =
751 1 << ((hdspm_decode_latency(hdspm->control_register) + 8));
754 static snd_pcm_uframes_t hdspm_hw_pointer(struct hdspm * hdspm)
758 position = hdspm_read(hdspm, HDSPM_statusRegister);
760 if (!hdspm->precise_ptr)
761 return (position & HDSPM_BufferID) ?
762 (hdspm->period_bytes / 4) : 0;
764 /* hwpointer comes in bytes and is 64Bytes accurate (by docu since
766 i have experimented that it is at most 64 Byte to much for playing
767 so substraction of 64 byte should be ok for ALSA, but use it only
768 for application where you know what you do since if you come to
769 near with record pointer it can be a disaster */
771 position &= HDSPM_BufferPositionMask;
772 position = ((position - 64) % (2 * hdspm->period_bytes)) / 4;
778 static inline void hdspm_start_audio(struct hdspm * s)
780 s->control_register |= (HDSPM_AudioInterruptEnable | HDSPM_Start);
781 hdspm_write(s, HDSPM_controlRegister, s->control_register);
784 static inline void hdspm_stop_audio(struct hdspm * s)
786 s->control_register &= ~(HDSPM_Start | HDSPM_AudioInterruptEnable);
787 hdspm_write(s, HDSPM_controlRegister, s->control_register);
790 /* should I silence all or only opened ones ? doit all for first even is 4MB*/
791 static void hdspm_silence_playback(struct hdspm *hdspm)
794 int n = hdspm->period_bytes;
795 void *buf = hdspm->playback_buffer;
800 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
802 buf += HDSPM_CHANNEL_BUFFER_BYTES;
806 static int hdspm_set_interrupt_interval(struct hdspm * s, unsigned int frames)
810 spin_lock_irq(&s->lock);
818 s->control_register &= ~HDSPM_LatencyMask;
819 s->control_register |= hdspm_encode_latency(n);
821 hdspm_write(s, HDSPM_controlRegister, s->control_register);
823 hdspm_compute_period_size(s);
825 spin_unlock_irq(&s->lock);
830 static void hdspm_set_dds_value(struct hdspm *hdspm, int rate)
837 else if (rate >= 56000)
840 /* RME says n = 104857600000000, but in the windows MADI driver, I see:
841 // return 104857600000000 / rate; // 100 MHz
842 return 110100480000000 / rate; // 105 MHz
844 /* n = 104857600000000ULL; */ /* = 2^20 * 10^8 */
845 n = 110100480000000ULL; /* Value checked for AES32 and MADI */
846 div64_32(&n, rate, &r);
847 /* n should be less than 2^32 for being written to FREQ register */
848 snd_assert((n >> 32) == 0);
849 hdspm_write(hdspm, HDSPM_freqReg, (u32)n);
852 /* dummy set rate lets see what happens */
853 static int hdspm_set_rate(struct hdspm * hdspm, int rate, int called_internally)
858 int current_speed, target_speed;
860 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
861 it (e.g. during module initialization).
864 if (!(hdspm->control_register & HDSPM_ClockModeMaster)) {
867 if (called_internally) {
869 /* request from ctl or card initialization
870 just make a warning an remember setting
871 for future master mode switching */
873 snd_printk(KERN_WARNING "HDSPM: "
874 "Warning: device is not running "
875 "as a clock master.\n");
879 /* hw_param request while in AutoSync mode */
881 hdspm_external_sample_rate(hdspm);
883 if (hdspm_autosync_ref(hdspm) ==
884 HDSPM_AUTOSYNC_FROM_NONE) {
886 snd_printk(KERN_WARNING "HDSPM: "
887 "Detected no Externel Sync \n");
890 } else if (rate != external_freq) {
892 snd_printk(KERN_WARNING "HDSPM: "
893 "Warning: No AutoSync source for "
900 current_rate = hdspm->system_sample_rate;
902 /* Changing between Singe, Double and Quad speed is not
903 allowed if any substreams are open. This is because such a change
904 causes a shift in the location of the DMA buffers and a reduction
905 in the number of available buffers.
907 Note that a similar but essentially insoluble problem exists for
908 externally-driven rate changes. All we can do is to flag rate
909 changes in the read/write routines.
912 if (current_rate <= 48000)
913 current_speed = HDSPM_SPEED_SINGLE;
914 else if (current_rate <= 96000)
915 current_speed = HDSPM_SPEED_DOUBLE;
917 current_speed = HDSPM_SPEED_QUAD;
920 target_speed = HDSPM_SPEED_SINGLE;
921 else if (rate <= 96000)
922 target_speed = HDSPM_SPEED_DOUBLE;
924 target_speed = HDSPM_SPEED_QUAD;
928 rate_bits = HDSPM_Frequency32KHz;
931 rate_bits = HDSPM_Frequency44_1KHz;
934 rate_bits = HDSPM_Frequency48KHz;
937 rate_bits = HDSPM_Frequency64KHz;
940 rate_bits = HDSPM_Frequency88_2KHz;
943 rate_bits = HDSPM_Frequency96KHz;
946 rate_bits = HDSPM_Frequency128KHz;
949 rate_bits = HDSPM_Frequency176_4KHz;
952 rate_bits = HDSPM_Frequency192KHz;
958 if (current_speed != target_speed
959 && (hdspm->capture_pid >= 0 || hdspm->playback_pid >= 0)) {
962 "cannot change from %s speed to %s speed mode "
963 "(capture PID = %d, playback PID = %d)\n",
964 hdspm_speed_names[current_speed],
965 hdspm_speed_names[target_speed],
966 hdspm->capture_pid, hdspm->playback_pid);
970 hdspm->control_register &= ~HDSPM_FrequencyMask;
971 hdspm->control_register |= rate_bits;
972 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
974 /* For AES32, need to set DDS value in FREQ register
975 For MADI, also apparently */
976 hdspm_set_dds_value(hdspm, rate);
978 if (hdspm->is_aes32 && rate != current_rate)
979 hdspm_write(hdspm, HDSPM_eeprom_wr, 0);
981 /* For AES32 and for MADI (at least rev 204), channel_map needs to
982 * always be channel_map_madi_ss, whatever the sample rate */
983 hdspm->channel_map = channel_map_madi_ss;
985 hdspm->system_sample_rate = rate;
993 /* mainly for init to 0 on load */
994 static void all_in_all_mixer(struct hdspm * hdspm, int sgain)
999 if (sgain > UNITY_GAIN)
1006 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++)
1007 for (j = 0; j < HDSPM_MIXER_CHANNELS; j++) {
1008 hdspm_write_in_gain(hdspm, i, j, gain);
1009 hdspm_write_pb_gain(hdspm, i, j, gain);
1013 /*----------------------------------------------------------------------------
1015 ----------------------------------------------------------------------------*/
1017 static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm *hdspm,
1020 /* the hardware already does the relevant bit-mask with 0xff */
1022 return hdspm_read(hdspm, HDSPM_midiDataIn1);
1024 return hdspm_read(hdspm, HDSPM_midiDataIn0);
1027 static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id,
1030 /* the hardware already does the relevant bit-mask with 0xff */
1032 hdspm_write(hdspm, HDSPM_midiDataOut1, val);
1034 hdspm_write(hdspm, HDSPM_midiDataOut0, val);
1037 static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id)
1040 return (hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xff);
1042 return (hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xff);
1045 static inline int snd_hdspm_midi_output_possible (struct hdspm *hdspm, int id)
1047 int fifo_bytes_used;
1050 fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut1);
1052 fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut0);
1053 fifo_bytes_used &= 0xff;
1055 if (fifo_bytes_used < 128)
1056 return 128 - fifo_bytes_used;
1061 static void snd_hdspm_flush_midi_input(struct hdspm *hdspm, int id)
1063 while (snd_hdspm_midi_input_available (hdspm, id))
1064 snd_hdspm_midi_read_byte (hdspm, id);
1067 static int snd_hdspm_midi_output_write (struct hdspm_midi *hmidi)
1069 unsigned long flags;
1073 unsigned char buf[128];
1075 /* Output is not interrupt driven */
1077 spin_lock_irqsave (&hmidi->lock, flags);
1078 if (hmidi->output &&
1079 !snd_rawmidi_transmit_empty (hmidi->output)) {
1080 n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm,
1082 if (n_pending > 0) {
1083 if (n_pending > (int)sizeof (buf))
1084 n_pending = sizeof (buf);
1086 to_write = snd_rawmidi_transmit (hmidi->output, buf,
1089 for (i = 0; i < to_write; ++i)
1090 snd_hdspm_midi_write_byte (hmidi->hdspm,
1096 spin_unlock_irqrestore (&hmidi->lock, flags);
1100 static int snd_hdspm_midi_input_read (struct hdspm_midi *hmidi)
1102 unsigned char buf[128]; /* this buffer is designed to match the MIDI
1105 unsigned long flags;
1109 spin_lock_irqsave (&hmidi->lock, flags);
1110 n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id);
1111 if (n_pending > 0) {
1113 if (n_pending > (int)sizeof (buf))
1114 n_pending = sizeof (buf);
1115 for (i = 0; i < n_pending; ++i)
1116 buf[i] = snd_hdspm_midi_read_byte (hmidi->hdspm,
1119 snd_rawmidi_receive (hmidi->input, buf,
1122 /* flush the MIDI input FIFO */
1124 snd_hdspm_midi_read_byte (hmidi->hdspm,
1130 hmidi->hdspm->control_register |= HDSPM_Midi1InterruptEnable;
1132 hmidi->hdspm->control_register |= HDSPM_Midi0InterruptEnable;
1133 hdspm_write(hmidi->hdspm, HDSPM_controlRegister,
1134 hmidi->hdspm->control_register);
1135 spin_unlock_irqrestore (&hmidi->lock, flags);
1136 return snd_hdspm_midi_output_write (hmidi);
1140 snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
1142 struct hdspm *hdspm;
1143 struct hdspm_midi *hmidi;
1144 unsigned long flags;
1147 hmidi = substream->rmidi->private_data;
1148 hdspm = hmidi->hdspm;
1150 HDSPM_Midi1InterruptEnable : HDSPM_Midi0InterruptEnable;
1151 spin_lock_irqsave (&hdspm->lock, flags);
1153 if (!(hdspm->control_register & ie)) {
1154 snd_hdspm_flush_midi_input (hdspm, hmidi->id);
1155 hdspm->control_register |= ie;
1158 hdspm->control_register &= ~ie;
1161 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1162 spin_unlock_irqrestore (&hdspm->lock, flags);
1165 static void snd_hdspm_midi_output_timer(unsigned long data)
1167 struct hdspm_midi *hmidi = (struct hdspm_midi *) data;
1168 unsigned long flags;
1170 snd_hdspm_midi_output_write(hmidi);
1171 spin_lock_irqsave (&hmidi->lock, flags);
1173 /* this does not bump hmidi->istimer, because the
1174 kernel automatically removed the timer when it
1175 expired, and we are now adding it back, thus
1176 leaving istimer wherever it was set before.
1179 if (hmidi->istimer) {
1180 hmidi->timer.expires = 1 + jiffies;
1181 add_timer(&hmidi->timer);
1184 spin_unlock_irqrestore (&hmidi->lock, flags);
1188 snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
1190 struct hdspm_midi *hmidi;
1191 unsigned long flags;
1193 hmidi = substream->rmidi->private_data;
1194 spin_lock_irqsave (&hmidi->lock, flags);
1196 if (!hmidi->istimer) {
1197 init_timer(&hmidi->timer);
1198 hmidi->timer.function = snd_hdspm_midi_output_timer;
1199 hmidi->timer.data = (unsigned long) hmidi;
1200 hmidi->timer.expires = 1 + jiffies;
1201 add_timer(&hmidi->timer);
1205 if (hmidi->istimer && --hmidi->istimer <= 0)
1206 del_timer (&hmidi->timer);
1208 spin_unlock_irqrestore (&hmidi->lock, flags);
1210 snd_hdspm_midi_output_write(hmidi);
1213 static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream *substream)
1215 struct hdspm_midi *hmidi;
1217 hmidi = substream->rmidi->private_data;
1218 spin_lock_irq (&hmidi->lock);
1219 snd_hdspm_flush_midi_input (hmidi->hdspm, hmidi->id);
1220 hmidi->input = substream;
1221 spin_unlock_irq (&hmidi->lock);
1226 static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream *substream)
1228 struct hdspm_midi *hmidi;
1230 hmidi = substream->rmidi->private_data;
1231 spin_lock_irq (&hmidi->lock);
1232 hmidi->output = substream;
1233 spin_unlock_irq (&hmidi->lock);
1238 static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream *substream)
1240 struct hdspm_midi *hmidi;
1242 snd_hdspm_midi_input_trigger (substream, 0);
1244 hmidi = substream->rmidi->private_data;
1245 spin_lock_irq (&hmidi->lock);
1246 hmidi->input = NULL;
1247 spin_unlock_irq (&hmidi->lock);
1252 static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream *substream)
1254 struct hdspm_midi *hmidi;
1256 snd_hdspm_midi_output_trigger (substream, 0);
1258 hmidi = substream->rmidi->private_data;
1259 spin_lock_irq (&hmidi->lock);
1260 hmidi->output = NULL;
1261 spin_unlock_irq (&hmidi->lock);
1266 static struct snd_rawmidi_ops snd_hdspm_midi_output =
1268 .open = snd_hdspm_midi_output_open,
1269 .close = snd_hdspm_midi_output_close,
1270 .trigger = snd_hdspm_midi_output_trigger,
1273 static struct snd_rawmidi_ops snd_hdspm_midi_input =
1275 .open = snd_hdspm_midi_input_open,
1276 .close = snd_hdspm_midi_input_close,
1277 .trigger = snd_hdspm_midi_input_trigger,
1280 static int __devinit snd_hdspm_create_midi (struct snd_card *card,
1281 struct hdspm *hdspm, int id)
1286 hdspm->midi[id].id = id;
1287 hdspm->midi[id].hdspm = hdspm;
1288 spin_lock_init (&hdspm->midi[id].lock);
1290 sprintf (buf, "%s MIDI %d", card->shortname, id+1);
1291 err = snd_rawmidi_new (card, buf, id, 1, 1, &hdspm->midi[id].rmidi);
1295 sprintf (hdspm->midi[id].rmidi->name, "%s MIDI %d", card->id, id+1);
1296 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
1298 snd_rawmidi_set_ops(hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
1299 &snd_hdspm_midi_output);
1300 snd_rawmidi_set_ops(hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
1301 &snd_hdspm_midi_input);
1303 hdspm->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT |
1304 SNDRV_RAWMIDI_INFO_INPUT |
1305 SNDRV_RAWMIDI_INFO_DUPLEX;
1311 static void hdspm_midi_tasklet(unsigned long arg)
1313 struct hdspm *hdspm = (struct hdspm *)arg;
1315 if (hdspm->midi[0].pending)
1316 snd_hdspm_midi_input_read (&hdspm->midi[0]);
1317 if (hdspm->midi[1].pending)
1318 snd_hdspm_midi_input_read (&hdspm->midi[1]);
1322 /*-----------------------------------------------------------------------------
1324 ----------------------------------------------------------------------------*/
1326 /* get the system sample rate which is set */
1328 #define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
1329 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1332 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1333 .info = snd_hdspm_info_system_sample_rate, \
1334 .get = snd_hdspm_get_system_sample_rate \
1337 static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol *kcontrol,
1338 struct snd_ctl_elem_info *uinfo)
1340 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1345 static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol *kcontrol,
1346 struct snd_ctl_elem_value *
1349 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1351 ucontrol->value.enumerated.item[0] = hdspm->system_sample_rate;
1355 #define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
1356 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1359 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1360 .info = snd_hdspm_info_autosync_sample_rate, \
1361 .get = snd_hdspm_get_autosync_sample_rate \
1364 static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol *kcontrol,
1365 struct snd_ctl_elem_info *uinfo)
1367 static char *texts[] = { "32000", "44100", "48000",
1368 "64000", "88200", "96000",
1369 "128000", "176400", "192000",
1372 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1374 uinfo->value.enumerated.items = 10;
1375 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1376 uinfo->value.enumerated.item =
1377 uinfo->value.enumerated.items - 1;
1378 strcpy(uinfo->value.enumerated.name,
1379 texts[uinfo->value.enumerated.item]);
1383 static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol,
1384 struct snd_ctl_elem_value *
1387 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1389 switch (hdspm_external_sample_rate(hdspm)) {
1391 ucontrol->value.enumerated.item[0] = 0;
1394 ucontrol->value.enumerated.item[0] = 1;
1397 ucontrol->value.enumerated.item[0] = 2;
1400 ucontrol->value.enumerated.item[0] = 3;
1403 ucontrol->value.enumerated.item[0] = 4;
1406 ucontrol->value.enumerated.item[0] = 5;
1409 ucontrol->value.enumerated.item[0] = 6;
1412 ucontrol->value.enumerated.item[0] = 7;
1415 ucontrol->value.enumerated.item[0] = 8;
1419 ucontrol->value.enumerated.item[0] = 9;
1424 #define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
1425 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1428 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1429 .info = snd_hdspm_info_system_clock_mode, \
1430 .get = snd_hdspm_get_system_clock_mode, \
1435 static int hdspm_system_clock_mode(struct hdspm * hdspm)
1437 /* Always reflect the hardware info, rme is never wrong !!!! */
1439 if (hdspm->control_register & HDSPM_ClockModeMaster)
1444 static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol *kcontrol,
1445 struct snd_ctl_elem_info *uinfo)
1447 static char *texts[] = { "Master", "Slave" };
1449 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1451 uinfo->value.enumerated.items = 2;
1452 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1453 uinfo->value.enumerated.item =
1454 uinfo->value.enumerated.items - 1;
1455 strcpy(uinfo->value.enumerated.name,
1456 texts[uinfo->value.enumerated.item]);
1460 static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol *kcontrol,
1461 struct snd_ctl_elem_value *ucontrol)
1463 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1465 ucontrol->value.enumerated.item[0] =
1466 hdspm_system_clock_mode(hdspm);
1470 #define HDSPM_CLOCK_SOURCE(xname, xindex) \
1471 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1474 .info = snd_hdspm_info_clock_source, \
1475 .get = snd_hdspm_get_clock_source, \
1476 .put = snd_hdspm_put_clock_source \
1479 static int hdspm_clock_source(struct hdspm * hdspm)
1481 if (hdspm->control_register & HDSPM_ClockModeMaster) {
1482 switch (hdspm->system_sample_rate) {
1509 static int hdspm_set_clock_source(struct hdspm * hdspm, int mode)
1514 case HDSPM_CLOCK_SOURCE_AUTOSYNC:
1515 if (hdspm_external_sample_rate(hdspm) != 0) {
1516 hdspm->control_register &= ~HDSPM_ClockModeMaster;
1517 hdspm_write(hdspm, HDSPM_controlRegister,
1518 hdspm->control_register);
1522 case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ:
1525 case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ:
1528 case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ:
1531 case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ:
1534 case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ:
1537 case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ:
1540 case HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ:
1543 case HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ:
1546 case HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ:
1553 hdspm->control_register |= HDSPM_ClockModeMaster;
1554 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1555 hdspm_set_rate(hdspm, rate, 1);
1559 static int snd_hdspm_info_clock_source(struct snd_kcontrol *kcontrol,
1560 struct snd_ctl_elem_info *uinfo)
1562 static char *texts[] = { "AutoSync",
1563 "Internal 32.0 kHz", "Internal 44.1 kHz",
1564 "Internal 48.0 kHz",
1565 "Internal 64.0 kHz", "Internal 88.2 kHz",
1566 "Internal 96.0 kHz",
1567 "Internal 128.0 kHz", "Internal 176.4 kHz",
1568 "Internal 192.0 kHz"
1571 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1573 uinfo->value.enumerated.items = 10;
1575 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1576 uinfo->value.enumerated.item =
1577 uinfo->value.enumerated.items - 1;
1579 strcpy(uinfo->value.enumerated.name,
1580 texts[uinfo->value.enumerated.item]);
1585 static int snd_hdspm_get_clock_source(struct snd_kcontrol *kcontrol,
1586 struct snd_ctl_elem_value *ucontrol)
1588 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1590 ucontrol->value.enumerated.item[0] = hdspm_clock_source(hdspm);
1594 static int snd_hdspm_put_clock_source(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_value *ucontrol)
1597 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1601 if (!snd_hdspm_use_is_exclusive(hdspm))
1603 val = ucontrol->value.enumerated.item[0];
1608 spin_lock_irq(&hdspm->lock);
1609 if (val != hdspm_clock_source(hdspm))
1610 change = (hdspm_set_clock_source(hdspm, val) == 0) ? 1 : 0;
1613 spin_unlock_irq(&hdspm->lock);
1617 #define HDSPM_PREF_SYNC_REF(xname, xindex) \
1618 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1621 .info = snd_hdspm_info_pref_sync_ref, \
1622 .get = snd_hdspm_get_pref_sync_ref, \
1623 .put = snd_hdspm_put_pref_sync_ref \
1626 static int hdspm_pref_sync_ref(struct hdspm * hdspm)
1628 /* Notice that this looks at the requested sync source,
1629 not the one actually in use.
1631 if (hdspm->is_aes32) {
1632 switch (hdspm->control_register & HDSPM_SyncRefMask) {
1633 /* number gives AES index, except for 0 which
1634 corresponds to WordClock */
1636 case HDSPM_SyncRef0: return 1;
1637 case HDSPM_SyncRef1: return 2;
1638 case HDSPM_SyncRef1+HDSPM_SyncRef0: return 3;
1639 case HDSPM_SyncRef2: return 4;
1640 case HDSPM_SyncRef2+HDSPM_SyncRef0: return 5;
1641 case HDSPM_SyncRef2+HDSPM_SyncRef1: return 6;
1642 case HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0: return 7;
1643 case HDSPM_SyncRef3: return 8;
1646 switch (hdspm->control_register & HDSPM_SyncRefMask) {
1647 case HDSPM_SyncRef_Word:
1648 return HDSPM_SYNC_FROM_WORD;
1649 case HDSPM_SyncRef_MADI:
1650 return HDSPM_SYNC_FROM_MADI;
1654 return HDSPM_SYNC_FROM_WORD;
1657 static int hdspm_set_pref_sync_ref(struct hdspm * hdspm, int pref)
1659 hdspm->control_register &= ~HDSPM_SyncRefMask;
1661 if (hdspm->is_aes32) {
1664 hdspm->control_register |= 0;
1667 hdspm->control_register |= HDSPM_SyncRef0;
1670 hdspm->control_register |= HDSPM_SyncRef1;
1673 hdspm->control_register |= HDSPM_SyncRef1+HDSPM_SyncRef0;
1676 hdspm->control_register |= HDSPM_SyncRef2;
1679 hdspm->control_register |= HDSPM_SyncRef2+HDSPM_SyncRef0;
1682 hdspm->control_register |= HDSPM_SyncRef2+HDSPM_SyncRef1;
1685 hdspm->control_register |=
1686 HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0;
1689 hdspm->control_register |= HDSPM_SyncRef3;
1696 case HDSPM_SYNC_FROM_MADI:
1697 hdspm->control_register |= HDSPM_SyncRef_MADI;
1699 case HDSPM_SYNC_FROM_WORD:
1700 hdspm->control_register |= HDSPM_SyncRef_Word;
1706 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1710 static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol *kcontrol,
1711 struct snd_ctl_elem_info *uinfo)
1713 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1715 if (hdspm->is_aes32) {
1716 static char *texts[] = { "Word", "AES1", "AES2", "AES3",
1717 "AES4", "AES5", "AES6", "AES7", "AES8" };
1719 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1722 uinfo->value.enumerated.items = 9;
1724 if (uinfo->value.enumerated.item >=
1725 uinfo->value.enumerated.items)
1726 uinfo->value.enumerated.item =
1727 uinfo->value.enumerated.items - 1;
1728 strcpy(uinfo->value.enumerated.name,
1729 texts[uinfo->value.enumerated.item]);
1731 static char *texts[] = { "Word", "MADI" };
1733 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1736 uinfo->value.enumerated.items = 2;
1738 if (uinfo->value.enumerated.item >=
1739 uinfo->value.enumerated.items)
1740 uinfo->value.enumerated.item =
1741 uinfo->value.enumerated.items - 1;
1742 strcpy(uinfo->value.enumerated.name,
1743 texts[uinfo->value.enumerated.item]);
1748 static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol *kcontrol,
1749 struct snd_ctl_elem_value *ucontrol)
1751 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1753 ucontrol->value.enumerated.item[0] = hdspm_pref_sync_ref(hdspm);
1757 static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol *kcontrol,
1758 struct snd_ctl_elem_value *ucontrol)
1760 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1764 max = hdspm->is_aes32 ? 9 : 2;
1766 if (!snd_hdspm_use_is_exclusive(hdspm))
1769 val = ucontrol->value.enumerated.item[0] % max;
1771 spin_lock_irq(&hdspm->lock);
1772 change = (int) val != hdspm_pref_sync_ref(hdspm);
1773 hdspm_set_pref_sync_ref(hdspm, val);
1774 spin_unlock_irq(&hdspm->lock);
1778 #define HDSPM_AUTOSYNC_REF(xname, xindex) \
1779 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1782 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1783 .info = snd_hdspm_info_autosync_ref, \
1784 .get = snd_hdspm_get_autosync_ref, \
1787 static int hdspm_autosync_ref(struct hdspm * hdspm)
1789 if (hdspm->is_aes32) {
1790 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
1791 unsigned int syncref = (status >> HDSPM_AES32_syncref_bit) &
1794 return HDSPM_AES32_AUTOSYNC_FROM_WORD;
1797 return HDSPM_AES32_AUTOSYNC_FROM_NONE;
1799 /* This looks at the autosync selected sync reference */
1800 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1802 switch (status2 & HDSPM_SelSyncRefMask) {
1803 case HDSPM_SelSyncRef_WORD:
1804 return HDSPM_AUTOSYNC_FROM_WORD;
1805 case HDSPM_SelSyncRef_MADI:
1806 return HDSPM_AUTOSYNC_FROM_MADI;
1807 case HDSPM_SelSyncRef_NVALID:
1808 return HDSPM_AUTOSYNC_FROM_NONE;
1817 static int snd_hdspm_info_autosync_ref(struct snd_kcontrol *kcontrol,
1818 struct snd_ctl_elem_info *uinfo)
1820 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1822 if (hdspm->is_aes32) {
1823 static char *texts[] = { "WordClock", "AES1", "AES2", "AES3",
1824 "AES4", "AES5", "AES6", "AES7", "AES8", "None"};
1826 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1828 uinfo->value.enumerated.items = 10;
1829 if (uinfo->value.enumerated.item >=
1830 uinfo->value.enumerated.items)
1831 uinfo->value.enumerated.item =
1832 uinfo->value.enumerated.items - 1;
1833 strcpy(uinfo->value.enumerated.name,
1834 texts[uinfo->value.enumerated.item]);
1836 static char *texts[] = { "WordClock", "MADI", "None" };
1838 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1840 uinfo->value.enumerated.items = 3;
1841 if (uinfo->value.enumerated.item >=
1842 uinfo->value.enumerated.items)
1843 uinfo->value.enumerated.item =
1844 uinfo->value.enumerated.items - 1;
1845 strcpy(uinfo->value.enumerated.name,
1846 texts[uinfo->value.enumerated.item]);
1851 static int snd_hdspm_get_autosync_ref(struct snd_kcontrol *kcontrol,
1852 struct snd_ctl_elem_value *ucontrol)
1854 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1856 ucontrol->value.enumerated.item[0] = hdspm_autosync_ref(hdspm);
1860 #define HDSPM_LINE_OUT(xname, xindex) \
1861 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1864 .info = snd_hdspm_info_line_out, \
1865 .get = snd_hdspm_get_line_out, \
1866 .put = snd_hdspm_put_line_out \
1869 static int hdspm_line_out(struct hdspm * hdspm)
1871 return (hdspm->control_register & HDSPM_LineOut) ? 1 : 0;
1875 static int hdspm_set_line_output(struct hdspm * hdspm, int out)
1878 hdspm->control_register |= HDSPM_LineOut;
1880 hdspm->control_register &= ~HDSPM_LineOut;
1881 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1886 #define snd_hdspm_info_line_out snd_ctl_boolean_mono_info
1888 static int snd_hdspm_get_line_out(struct snd_kcontrol *kcontrol,
1889 struct snd_ctl_elem_value *ucontrol)
1891 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1893 spin_lock_irq(&hdspm->lock);
1894 ucontrol->value.integer.value[0] = hdspm_line_out(hdspm);
1895 spin_unlock_irq(&hdspm->lock);
1899 static int snd_hdspm_put_line_out(struct snd_kcontrol *kcontrol,
1900 struct snd_ctl_elem_value *ucontrol)
1902 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1906 if (!snd_hdspm_use_is_exclusive(hdspm))
1908 val = ucontrol->value.integer.value[0] & 1;
1909 spin_lock_irq(&hdspm->lock);
1910 change = (int) val != hdspm_line_out(hdspm);
1911 hdspm_set_line_output(hdspm, val);
1912 spin_unlock_irq(&hdspm->lock);
1916 #define HDSPM_TX_64(xname, xindex) \
1917 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1920 .info = snd_hdspm_info_tx_64, \
1921 .get = snd_hdspm_get_tx_64, \
1922 .put = snd_hdspm_put_tx_64 \
1925 static int hdspm_tx_64(struct hdspm * hdspm)
1927 return (hdspm->control_register & HDSPM_TX_64ch) ? 1 : 0;
1930 static int hdspm_set_tx_64(struct hdspm * hdspm, int out)
1933 hdspm->control_register |= HDSPM_TX_64ch;
1935 hdspm->control_register &= ~HDSPM_TX_64ch;
1936 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1941 #define snd_hdspm_info_tx_64 snd_ctl_boolean_mono_info
1943 static int snd_hdspm_get_tx_64(struct snd_kcontrol *kcontrol,
1944 struct snd_ctl_elem_value *ucontrol)
1946 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1948 spin_lock_irq(&hdspm->lock);
1949 ucontrol->value.integer.value[0] = hdspm_tx_64(hdspm);
1950 spin_unlock_irq(&hdspm->lock);
1954 static int snd_hdspm_put_tx_64(struct snd_kcontrol *kcontrol,
1955 struct snd_ctl_elem_value *ucontrol)
1957 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1961 if (!snd_hdspm_use_is_exclusive(hdspm))
1963 val = ucontrol->value.integer.value[0] & 1;
1964 spin_lock_irq(&hdspm->lock);
1965 change = (int) val != hdspm_tx_64(hdspm);
1966 hdspm_set_tx_64(hdspm, val);
1967 spin_unlock_irq(&hdspm->lock);
1971 #define HDSPM_C_TMS(xname, xindex) \
1972 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1975 .info = snd_hdspm_info_c_tms, \
1976 .get = snd_hdspm_get_c_tms, \
1977 .put = snd_hdspm_put_c_tms \
1980 static int hdspm_c_tms(struct hdspm * hdspm)
1982 return (hdspm->control_register & HDSPM_clr_tms) ? 1 : 0;
1985 static int hdspm_set_c_tms(struct hdspm * hdspm, int out)
1988 hdspm->control_register |= HDSPM_clr_tms;
1990 hdspm->control_register &= ~HDSPM_clr_tms;
1991 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1996 #define snd_hdspm_info_c_tms snd_ctl_boolean_mono_info
1998 static int snd_hdspm_get_c_tms(struct snd_kcontrol *kcontrol,
1999 struct snd_ctl_elem_value *ucontrol)
2001 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2003 spin_lock_irq(&hdspm->lock);
2004 ucontrol->value.integer.value[0] = hdspm_c_tms(hdspm);
2005 spin_unlock_irq(&hdspm->lock);
2009 static int snd_hdspm_put_c_tms(struct snd_kcontrol *kcontrol,
2010 struct snd_ctl_elem_value *ucontrol)
2012 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2016 if (!snd_hdspm_use_is_exclusive(hdspm))
2018 val = ucontrol->value.integer.value[0] & 1;
2019 spin_lock_irq(&hdspm->lock);
2020 change = (int) val != hdspm_c_tms(hdspm);
2021 hdspm_set_c_tms(hdspm, val);
2022 spin_unlock_irq(&hdspm->lock);
2026 #define HDSPM_SAFE_MODE(xname, xindex) \
2027 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2030 .info = snd_hdspm_info_safe_mode, \
2031 .get = snd_hdspm_get_safe_mode, \
2032 .put = snd_hdspm_put_safe_mode \
2035 static int hdspm_safe_mode(struct hdspm * hdspm)
2037 return (hdspm->control_register & HDSPM_AutoInp) ? 1 : 0;
2040 static int hdspm_set_safe_mode(struct hdspm * hdspm, int out)
2043 hdspm->control_register |= HDSPM_AutoInp;
2045 hdspm->control_register &= ~HDSPM_AutoInp;
2046 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2051 #define snd_hdspm_info_safe_mode snd_ctl_boolean_mono_info
2053 static int snd_hdspm_get_safe_mode(struct snd_kcontrol *kcontrol,
2054 struct snd_ctl_elem_value *ucontrol)
2056 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2058 spin_lock_irq(&hdspm->lock);
2059 ucontrol->value.integer.value[0] = hdspm_safe_mode(hdspm);
2060 spin_unlock_irq(&hdspm->lock);
2064 static int snd_hdspm_put_safe_mode(struct snd_kcontrol *kcontrol,
2065 struct snd_ctl_elem_value *ucontrol)
2067 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2071 if (!snd_hdspm_use_is_exclusive(hdspm))
2073 val = ucontrol->value.integer.value[0] & 1;
2074 spin_lock_irq(&hdspm->lock);
2075 change = (int) val != hdspm_safe_mode(hdspm);
2076 hdspm_set_safe_mode(hdspm, val);
2077 spin_unlock_irq(&hdspm->lock);
2081 #define HDSPM_EMPHASIS(xname, xindex) \
2082 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2085 .info = snd_hdspm_info_emphasis, \
2086 .get = snd_hdspm_get_emphasis, \
2087 .put = snd_hdspm_put_emphasis \
2090 static int hdspm_emphasis(struct hdspm * hdspm)
2092 return (hdspm->control_register & HDSPM_Emphasis) ? 1 : 0;
2095 static int hdspm_set_emphasis(struct hdspm * hdspm, int emp)
2098 hdspm->control_register |= HDSPM_Emphasis;
2100 hdspm->control_register &= ~HDSPM_Emphasis;
2101 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2106 #define snd_hdspm_info_emphasis snd_ctl_boolean_mono_info
2108 static int snd_hdspm_get_emphasis(struct snd_kcontrol *kcontrol,
2109 struct snd_ctl_elem_value *ucontrol)
2111 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2113 spin_lock_irq(&hdspm->lock);
2114 ucontrol->value.enumerated.item[0] = hdspm_emphasis(hdspm);
2115 spin_unlock_irq(&hdspm->lock);
2119 static int snd_hdspm_put_emphasis(struct snd_kcontrol *kcontrol,
2120 struct snd_ctl_elem_value *ucontrol)
2122 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2126 if (!snd_hdspm_use_is_exclusive(hdspm))
2128 val = ucontrol->value.integer.value[0] & 1;
2129 spin_lock_irq(&hdspm->lock);
2130 change = (int) val != hdspm_emphasis(hdspm);
2131 hdspm_set_emphasis(hdspm, val);
2132 spin_unlock_irq(&hdspm->lock);
2136 #define HDSPM_DOLBY(xname, xindex) \
2137 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2140 .info = snd_hdspm_info_dolby, \
2141 .get = snd_hdspm_get_dolby, \
2142 .put = snd_hdspm_put_dolby \
2145 static int hdspm_dolby(struct hdspm * hdspm)
2147 return (hdspm->control_register & HDSPM_Dolby) ? 1 : 0;
2150 static int hdspm_set_dolby(struct hdspm * hdspm, int dol)
2153 hdspm->control_register |= HDSPM_Dolby;
2155 hdspm->control_register &= ~HDSPM_Dolby;
2156 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2161 #define snd_hdspm_info_dolby snd_ctl_boolean_mono_info
2163 static int snd_hdspm_get_dolby(struct snd_kcontrol *kcontrol,
2164 struct snd_ctl_elem_value *ucontrol)
2166 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2168 spin_lock_irq(&hdspm->lock);
2169 ucontrol->value.enumerated.item[0] = hdspm_dolby(hdspm);
2170 spin_unlock_irq(&hdspm->lock);
2174 static int snd_hdspm_put_dolby(struct snd_kcontrol *kcontrol,
2175 struct snd_ctl_elem_value *ucontrol)
2177 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2181 if (!snd_hdspm_use_is_exclusive(hdspm))
2183 val = ucontrol->value.integer.value[0] & 1;
2184 spin_lock_irq(&hdspm->lock);
2185 change = (int) val != hdspm_dolby(hdspm);
2186 hdspm_set_dolby(hdspm, val);
2187 spin_unlock_irq(&hdspm->lock);
2191 #define HDSPM_PROFESSIONAL(xname, xindex) \
2192 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2195 .info = snd_hdspm_info_professional, \
2196 .get = snd_hdspm_get_professional, \
2197 .put = snd_hdspm_put_professional \
2200 static int hdspm_professional(struct hdspm * hdspm)
2202 return (hdspm->control_register & HDSPM_Professional) ? 1 : 0;
2205 static int hdspm_set_professional(struct hdspm * hdspm, int dol)
2208 hdspm->control_register |= HDSPM_Professional;
2210 hdspm->control_register &= ~HDSPM_Professional;
2211 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2216 #define snd_hdspm_info_professional snd_ctl_boolean_mono_info
2218 static int snd_hdspm_get_professional(struct snd_kcontrol *kcontrol,
2219 struct snd_ctl_elem_value *ucontrol)
2221 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2223 spin_lock_irq(&hdspm->lock);
2224 ucontrol->value.enumerated.item[0] = hdspm_professional(hdspm);
2225 spin_unlock_irq(&hdspm->lock);
2229 static int snd_hdspm_put_professional(struct snd_kcontrol *kcontrol,
2230 struct snd_ctl_elem_value *ucontrol)
2232 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2236 if (!snd_hdspm_use_is_exclusive(hdspm))
2238 val = ucontrol->value.integer.value[0] & 1;
2239 spin_lock_irq(&hdspm->lock);
2240 change = (int) val != hdspm_professional(hdspm);
2241 hdspm_set_professional(hdspm, val);
2242 spin_unlock_irq(&hdspm->lock);
2246 #define HDSPM_INPUT_SELECT(xname, xindex) \
2247 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2250 .info = snd_hdspm_info_input_select, \
2251 .get = snd_hdspm_get_input_select, \
2252 .put = snd_hdspm_put_input_select \
2255 static int hdspm_input_select(struct hdspm * hdspm)
2257 return (hdspm->control_register & HDSPM_InputSelect0) ? 1 : 0;
2260 static int hdspm_set_input_select(struct hdspm * hdspm, int out)
2263 hdspm->control_register |= HDSPM_InputSelect0;
2265 hdspm->control_register &= ~HDSPM_InputSelect0;
2266 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2271 static int snd_hdspm_info_input_select(struct snd_kcontrol *kcontrol,
2272 struct snd_ctl_elem_info *uinfo)
2274 static char *texts[] = { "optical", "coaxial" };
2276 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2278 uinfo->value.enumerated.items = 2;
2280 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2281 uinfo->value.enumerated.item =
2282 uinfo->value.enumerated.items - 1;
2283 strcpy(uinfo->value.enumerated.name,
2284 texts[uinfo->value.enumerated.item]);
2289 static int snd_hdspm_get_input_select(struct snd_kcontrol *kcontrol,
2290 struct snd_ctl_elem_value *ucontrol)
2292 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2294 spin_lock_irq(&hdspm->lock);
2295 ucontrol->value.enumerated.item[0] = hdspm_input_select(hdspm);
2296 spin_unlock_irq(&hdspm->lock);
2300 static int snd_hdspm_put_input_select(struct snd_kcontrol *kcontrol,
2301 struct snd_ctl_elem_value *ucontrol)
2303 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2307 if (!snd_hdspm_use_is_exclusive(hdspm))
2309 val = ucontrol->value.integer.value[0] & 1;
2310 spin_lock_irq(&hdspm->lock);
2311 change = (int) val != hdspm_input_select(hdspm);
2312 hdspm_set_input_select(hdspm, val);
2313 spin_unlock_irq(&hdspm->lock);
2317 #define HDSPM_DS_WIRE(xname, xindex) \
2318 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2321 .info = snd_hdspm_info_ds_wire, \
2322 .get = snd_hdspm_get_ds_wire, \
2323 .put = snd_hdspm_put_ds_wire \
2326 static int hdspm_ds_wire(struct hdspm * hdspm)
2328 return (hdspm->control_register & HDSPM_DS_DoubleWire) ? 1 : 0;
2331 static int hdspm_set_ds_wire(struct hdspm * hdspm, int ds)
2334 hdspm->control_register |= HDSPM_DS_DoubleWire;
2336 hdspm->control_register &= ~HDSPM_DS_DoubleWire;
2337 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2342 static int snd_hdspm_info_ds_wire(struct snd_kcontrol *kcontrol,
2343 struct snd_ctl_elem_info *uinfo)
2345 static char *texts[] = { "Single", "Double" };
2347 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2349 uinfo->value.enumerated.items = 2;
2351 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2352 uinfo->value.enumerated.item =
2353 uinfo->value.enumerated.items - 1;
2354 strcpy(uinfo->value.enumerated.name,
2355 texts[uinfo->value.enumerated.item]);
2360 static int snd_hdspm_get_ds_wire(struct snd_kcontrol *kcontrol,
2361 struct snd_ctl_elem_value *ucontrol)
2363 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2365 spin_lock_irq(&hdspm->lock);
2366 ucontrol->value.enumerated.item[0] = hdspm_ds_wire(hdspm);
2367 spin_unlock_irq(&hdspm->lock);
2371 static int snd_hdspm_put_ds_wire(struct snd_kcontrol *kcontrol,
2372 struct snd_ctl_elem_value *ucontrol)
2374 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2378 if (!snd_hdspm_use_is_exclusive(hdspm))
2380 val = ucontrol->value.integer.value[0] & 1;
2381 spin_lock_irq(&hdspm->lock);
2382 change = (int) val != hdspm_ds_wire(hdspm);
2383 hdspm_set_ds_wire(hdspm, val);
2384 spin_unlock_irq(&hdspm->lock);
2388 #define HDSPM_QS_WIRE(xname, xindex) \
2389 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2392 .info = snd_hdspm_info_qs_wire, \
2393 .get = snd_hdspm_get_qs_wire, \
2394 .put = snd_hdspm_put_qs_wire \
2397 static int hdspm_qs_wire(struct hdspm * hdspm)
2399 if (hdspm->control_register & HDSPM_QS_DoubleWire)
2401 if (hdspm->control_register & HDSPM_QS_QuadWire)
2406 static int hdspm_set_qs_wire(struct hdspm * hdspm, int mode)
2408 hdspm->control_register &= ~(HDSPM_QS_DoubleWire | HDSPM_QS_QuadWire);
2413 hdspm->control_register |= HDSPM_QS_DoubleWire;
2416 hdspm->control_register |= HDSPM_QS_QuadWire;
2419 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2424 static int snd_hdspm_info_qs_wire(struct snd_kcontrol *kcontrol,
2425 struct snd_ctl_elem_info *uinfo)
2427 static char *texts[] = { "Single", "Double", "Quad" };
2429 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2431 uinfo->value.enumerated.items = 3;
2433 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2434 uinfo->value.enumerated.item =
2435 uinfo->value.enumerated.items - 1;
2436 strcpy(uinfo->value.enumerated.name,
2437 texts[uinfo->value.enumerated.item]);
2442 static int snd_hdspm_get_qs_wire(struct snd_kcontrol *kcontrol,
2443 struct snd_ctl_elem_value *ucontrol)
2445 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2447 spin_lock_irq(&hdspm->lock);
2448 ucontrol->value.enumerated.item[0] = hdspm_qs_wire(hdspm);
2449 spin_unlock_irq(&hdspm->lock);
2453 static int snd_hdspm_put_qs_wire(struct snd_kcontrol *kcontrol,
2454 struct snd_ctl_elem_value *ucontrol)
2456 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2460 if (!snd_hdspm_use_is_exclusive(hdspm))
2462 val = ucontrol->value.integer.value[0];
2467 spin_lock_irq(&hdspm->lock);
2468 change = val != hdspm_qs_wire(hdspm);
2469 hdspm_set_qs_wire(hdspm, val);
2470 spin_unlock_irq(&hdspm->lock);
2475 deprecated since to much faders ???
2476 MIXER interface says output (source, destination, value)
2477 where source > MAX_channels are playback channels
2479 - playback mixer matrix: [channelout+64] [output] [value]
2480 - input(thru) mixer matrix: [channelin] [output] [value]
2481 (better do 2 kontrols for seperation ?)
2484 #define HDSPM_MIXER(xname, xindex) \
2485 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
2489 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2490 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2491 .info = snd_hdspm_info_mixer, \
2492 .get = snd_hdspm_get_mixer, \
2493 .put = snd_hdspm_put_mixer \
2496 static int snd_hdspm_info_mixer(struct snd_kcontrol *kcontrol,
2497 struct snd_ctl_elem_info *uinfo)
2499 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2501 uinfo->value.integer.min = 0;
2502 uinfo->value.integer.max = 65535;
2503 uinfo->value.integer.step = 1;
2507 static int snd_hdspm_get_mixer(struct snd_kcontrol *kcontrol,
2508 struct snd_ctl_elem_value *ucontrol)
2510 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2514 source = ucontrol->value.integer.value[0];
2517 else if (source >= 2 * HDSPM_MAX_CHANNELS)
2518 source = 2 * HDSPM_MAX_CHANNELS - 1;
2520 destination = ucontrol->value.integer.value[1];
2521 if (destination < 0)
2523 else if (destination >= HDSPM_MAX_CHANNELS)
2524 destination = HDSPM_MAX_CHANNELS - 1;
2526 spin_lock_irq(&hdspm->lock);
2527 if (source >= HDSPM_MAX_CHANNELS)
2528 ucontrol->value.integer.value[2] =
2529 hdspm_read_pb_gain(hdspm, destination,
2530 source - HDSPM_MAX_CHANNELS);
2532 ucontrol->value.integer.value[2] =
2533 hdspm_read_in_gain(hdspm, destination, source);
2535 spin_unlock_irq(&hdspm->lock);
2540 static int snd_hdspm_put_mixer(struct snd_kcontrol *kcontrol,
2541 struct snd_ctl_elem_value *ucontrol)
2543 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2549 if (!snd_hdspm_use_is_exclusive(hdspm))
2552 source = ucontrol->value.integer.value[0];
2553 destination = ucontrol->value.integer.value[1];
2555 if (source < 0 || source >= 2 * HDSPM_MAX_CHANNELS)
2557 if (destination < 0 || destination >= HDSPM_MAX_CHANNELS)
2560 gain = ucontrol->value.integer.value[2];
2562 spin_lock_irq(&hdspm->lock);
2564 if (source >= HDSPM_MAX_CHANNELS)
2565 change = gain != hdspm_read_pb_gain(hdspm, destination,
2567 HDSPM_MAX_CHANNELS);
2569 change = gain != hdspm_read_in_gain(hdspm, destination,
2573 if (source >= HDSPM_MAX_CHANNELS)
2574 hdspm_write_pb_gain(hdspm, destination,
2575 source - HDSPM_MAX_CHANNELS,
2578 hdspm_write_in_gain(hdspm, destination, source,
2581 spin_unlock_irq(&hdspm->lock);
2586 /* The simple mixer control(s) provide gain control for the
2587 basic 1:1 mappings of playback streams to output
2591 #define HDSPM_PLAYBACK_MIXER \
2592 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2593 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
2594 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2595 .info = snd_hdspm_info_playback_mixer, \
2596 .get = snd_hdspm_get_playback_mixer, \
2597 .put = snd_hdspm_put_playback_mixer \
2600 static int snd_hdspm_info_playback_mixer(struct snd_kcontrol *kcontrol,
2601 struct snd_ctl_elem_info *uinfo)
2603 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2605 uinfo->value.integer.min = 0;
2606 uinfo->value.integer.max = 65536;
2607 uinfo->value.integer.step = 1;
2611 static int snd_hdspm_get_playback_mixer(struct snd_kcontrol *kcontrol,
2612 struct snd_ctl_elem_value *ucontrol)
2614 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2618 channel = ucontrol->id.index - 1;
2620 snd_assert(channel >= 0
2621 || channel < HDSPM_MAX_CHANNELS, return -EINVAL);
2623 mapped_channel = hdspm->channel_map[channel];
2624 if (mapped_channel < 0)
2627 spin_lock_irq(&hdspm->lock);
2628 ucontrol->value.integer.value[0] =
2629 hdspm_read_pb_gain(hdspm, mapped_channel, mapped_channel);
2630 spin_unlock_irq(&hdspm->lock);
2633 snd_printdd("get pb mixer index %d, channel %d, mapped_channel %d, "
2635 ucontrol->id.index, channel, mapped_channel,
2636 ucontrol->value.integer.value[0]);
2641 static int snd_hdspm_put_playback_mixer(struct snd_kcontrol *kcontrol,
2642 struct snd_ctl_elem_value *ucontrol)
2644 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2650 if (!snd_hdspm_use_is_exclusive(hdspm))
2653 channel = ucontrol->id.index - 1;
2655 snd_assert(channel >= 0
2656 || channel < HDSPM_MAX_CHANNELS, return -EINVAL);
2658 mapped_channel = hdspm->channel_map[channel];
2659 if (mapped_channel < 0)
2662 gain = ucontrol->value.integer.value[0];
2664 spin_lock_irq(&hdspm->lock);
2666 gain != hdspm_read_pb_gain(hdspm, mapped_channel,
2669 hdspm_write_pb_gain(hdspm, mapped_channel, mapped_channel,
2671 spin_unlock_irq(&hdspm->lock);
2675 #define HDSPM_WC_SYNC_CHECK(xname, xindex) \
2676 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2679 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2680 .info = snd_hdspm_info_sync_check, \
2681 .get = snd_hdspm_get_wc_sync_check \
2684 static int snd_hdspm_info_sync_check(struct snd_kcontrol *kcontrol,
2685 struct snd_ctl_elem_info *uinfo)
2687 static char *texts[] = { "No Lock", "Lock", "Sync" };
2688 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2690 uinfo->value.enumerated.items = 3;
2691 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2692 uinfo->value.enumerated.item =
2693 uinfo->value.enumerated.items - 1;
2694 strcpy(uinfo->value.enumerated.name,
2695 texts[uinfo->value.enumerated.item]);
2699 static int hdspm_wc_sync_check(struct hdspm * hdspm)
2701 if (hdspm->is_aes32) {
2702 int status = hdspm_read(hdspm, HDSPM_statusRegister);
2703 if (status & HDSPM_AES32_wcLock) {
2704 /* I don't know how to differenciate sync from lock.
2705 Doing as if sync for now */
2710 int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
2711 if (status2 & HDSPM_wcLock) {
2712 if (status2 & HDSPM_wcSync)
2721 static int snd_hdspm_get_wc_sync_check(struct snd_kcontrol *kcontrol,
2722 struct snd_ctl_elem_value *ucontrol)
2724 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2726 ucontrol->value.enumerated.item[0] = hdspm_wc_sync_check(hdspm);
2731 #define HDSPM_MADI_SYNC_CHECK(xname, xindex) \
2732 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2735 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2736 .info = snd_hdspm_info_sync_check, \
2737 .get = snd_hdspm_get_madisync_sync_check \
2740 static int hdspm_madisync_sync_check(struct hdspm * hdspm)
2742 int status = hdspm_read(hdspm, HDSPM_statusRegister);
2743 if (status & HDSPM_madiLock) {
2744 if (status & HDSPM_madiSync)
2752 static int snd_hdspm_get_madisync_sync_check(struct snd_kcontrol *kcontrol,
2753 struct snd_ctl_elem_value *
2756 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2758 ucontrol->value.enumerated.item[0] =
2759 hdspm_madisync_sync_check(hdspm);
2764 #define HDSPM_AES_SYNC_CHECK(xname, xindex) \
2765 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2768 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2769 .info = snd_hdspm_info_sync_check, \
2770 .get = snd_hdspm_get_aes_sync_check \
2773 static int hdspm_aes_sync_check(struct hdspm * hdspm, int idx)
2775 int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
2776 if (status2 & (HDSPM_LockAES >> idx)) {
2777 /* I don't know how to differenciate sync from lock.
2778 Doing as if sync for now */
2784 static int snd_hdspm_get_aes_sync_check(struct snd_kcontrol *kcontrol,
2785 struct snd_ctl_elem_value *ucontrol)
2788 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2790 offset = ucontrol->id.index - 1;
2791 if (offset < 0 || offset >= 8)
2794 ucontrol->value.enumerated.item[0] =
2795 hdspm_aes_sync_check(hdspm, offset);
2800 static struct snd_kcontrol_new snd_hdspm_controls_madi[] = {
2802 HDSPM_MIXER("Mixer", 0),
2803 /* 'Sample Clock Source' complies with the alsa control naming scheme */
2804 HDSPM_CLOCK_SOURCE("Sample Clock Source", 0),
2806 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2807 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
2808 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
2809 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2810 /* 'External Rate' complies with the alsa control naming scheme */
2811 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2812 HDSPM_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2813 HDSPM_MADI_SYNC_CHECK("MADI Sync Lock Status", 0),
2814 HDSPM_LINE_OUT("Line Out", 0),
2815 HDSPM_TX_64("TX 64 channels mode", 0),
2816 HDSPM_C_TMS("Clear Track Marker", 0),
2817 HDSPM_SAFE_MODE("Safe Mode", 0),
2818 HDSPM_INPUT_SELECT("Input Select", 0),
2821 static struct snd_kcontrol_new snd_hdspm_controls_aes32[] = {
2823 HDSPM_MIXER("Mixer", 0),
2824 /* 'Sample Clock Source' complies with the alsa control naming scheme */
2825 HDSPM_CLOCK_SOURCE("Sample Clock Source", 0),
2827 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2828 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
2829 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
2830 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2831 /* 'External Rate' complies with the alsa control naming scheme */
2832 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2833 HDSPM_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2834 /* HDSPM_AES_SYNC_CHECK("AES Lock Status", 0),*/ /* created in snd_hdspm_create_controls() */
2835 HDSPM_LINE_OUT("Line Out", 0),
2836 HDSPM_EMPHASIS("Emphasis", 0),
2837 HDSPM_DOLBY("Non Audio", 0),
2838 HDSPM_PROFESSIONAL("Professional", 0),
2839 HDSPM_C_TMS("Clear Track Marker", 0),
2840 HDSPM_DS_WIRE("Double Speed Wire Mode", 0),
2841 HDSPM_QS_WIRE("Quad Speed Wire Mode", 0),
2844 static struct snd_kcontrol_new snd_hdspm_playback_mixer = HDSPM_PLAYBACK_MIXER;
2847 static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm)
2851 for (i = hdspm->ds_channels; i < hdspm->ss_channels; ++i) {
2852 if (hdspm->system_sample_rate > 48000) {
2853 hdspm->playback_mixer_ctls[i]->vd[0].access =
2854 SNDRV_CTL_ELEM_ACCESS_INACTIVE |
2855 SNDRV_CTL_ELEM_ACCESS_READ |
2856 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
2858 hdspm->playback_mixer_ctls[i]->vd[0].access =
2859 SNDRV_CTL_ELEM_ACCESS_READWRITE |
2860 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
2862 snd_ctl_notify(hdspm->card, SNDRV_CTL_EVENT_MASK_VALUE |
2863 SNDRV_CTL_EVENT_MASK_INFO,
2864 &hdspm->playback_mixer_ctls[i]->id);
2871 static int snd_hdspm_create_controls(struct snd_card *card, struct hdspm * hdspm)
2873 unsigned int idx, limit;
2875 struct snd_kcontrol *kctl;
2877 /* add control list first */
2878 if (hdspm->is_aes32) {
2879 struct snd_kcontrol_new aes_sync_ctl =
2880 HDSPM_AES_SYNC_CHECK("AES Lock Status", 0);
2882 for (idx = 0; idx < ARRAY_SIZE(snd_hdspm_controls_aes32);
2884 err = snd_ctl_add(card,
2885 snd_ctl_new1(&snd_hdspm_controls_aes32[idx],
2890 for (idx = 1; idx <= 8; idx++) {
2891 aes_sync_ctl.index = idx;
2892 err = snd_ctl_add(card,
2893 snd_ctl_new1(&aes_sync_ctl, hdspm));
2898 for (idx = 0; idx < ARRAY_SIZE(snd_hdspm_controls_madi);
2900 err = snd_ctl_add(card,
2901 snd_ctl_new1(&snd_hdspm_controls_madi[idx],
2908 /* Channel playback mixer as default control
2909 Note: the whole matrix would be 128*HDSPM_MIXER_CHANNELS Faders,
2910 thats too * big for any alsamixer they are accesible via special
2911 IOCTL on hwdep and the mixer 2dimensional mixer control
2914 snd_hdspm_playback_mixer.name = "Chn";
2915 limit = HDSPM_MAX_CHANNELS;
2917 /* The index values are one greater than the channel ID so that
2918 * alsamixer will display them correctly. We want to use the index
2919 * for fast lookup of the relevant channel, but if we use it at all,
2920 * most ALSA software does the wrong thing with it ...
2923 for (idx = 0; idx < limit; ++idx) {
2924 snd_hdspm_playback_mixer.index = idx + 1;
2925 kctl = snd_ctl_new1(&snd_hdspm_playback_mixer, hdspm);
2926 err = snd_ctl_add(card, kctl);
2929 hdspm->playback_mixer_ctls[idx] = kctl;
2935 /*------------------------------------------------------------
2937 ------------------------------------------------------------*/
2940 snd_hdspm_proc_read_madi(struct snd_info_entry * entry,
2941 struct snd_info_buffer *buffer)
2943 struct hdspm *hdspm = entry->private_data;
2944 unsigned int status;
2945 unsigned int status2;
2946 char *pref_sync_ref;
2948 char *system_clock_mode;
2954 status = hdspm_read(hdspm, HDSPM_statusRegister);
2955 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
2957 snd_iprintf(buffer, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
2958 hdspm->card_name, hdspm->card->number + 1,
2959 hdspm->firmware_rev,
2960 (status2 & HDSPM_version0) |
2961 (status2 & HDSPM_version1) | (status2 &
2964 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
2965 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
2967 snd_iprintf(buffer, "--- System ---\n");
2970 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
2971 status & HDSPM_audioIRQPending,
2972 (status & HDSPM_midi0IRQPending) ? 1 : 0,
2973 (status & HDSPM_midi1IRQPending) ? 1 : 0,
2976 "HW pointer: id = %d, rawptr = %d (%d->%d) "
2977 "estimated= %ld (bytes)\n",
2978 ((status & HDSPM_BufferID) ? 1 : 0),
2979 (status & HDSPM_BufferPositionMask),
2980 (status & HDSPM_BufferPositionMask) %
2981 (2 * (int)hdspm->period_bytes),
2982 ((status & HDSPM_BufferPositionMask) - 64) %
2983 (2 * (int)hdspm->period_bytes),
2984 (long) hdspm_hw_pointer(hdspm) * 4);
2987 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
2988 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
2989 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
2990 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
2991 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
2993 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
2995 hdspm->control_register, hdspm->control2_register,
2998 snd_iprintf(buffer, "--- Settings ---\n");
3000 x = 1 << (6 + hdspm_decode_latency(hdspm->control_register &
3001 HDSPM_LatencyMask));
3004 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
3005 x, (unsigned long) hdspm->period_bytes);
3007 snd_iprintf(buffer, "Line out: %s, Precise Pointer: %s\n",
3008 (hdspm->control_register & HDSPM_LineOut) ? "on " : "off",
3009 (hdspm->precise_ptr) ? "on" : "off");
3011 switch (hdspm->control_register & HDSPM_InputMask) {
3012 case HDSPM_InputOptical:
3015 case HDSPM_InputCoaxial:
3022 switch (hdspm->control_register & HDSPM_SyncRefMask) {
3023 case HDSPM_SyncRef_Word:
3024 syncref = "WordClock";
3026 case HDSPM_SyncRef_MADI:
3032 snd_iprintf(buffer, "Inputsel = %s, SyncRef = %s\n", insel,
3036 "ClearTrackMarker = %s, Transmit in %s Channel Mode, "
3039 control_register & HDSPM_clr_tms) ? "on" : "off",
3041 control_register & HDSPM_TX_64ch) ? "64" : "56",
3043 control_register & HDSPM_AutoInp) ? "on" : "off");
3045 switch (hdspm_clock_source(hdspm)) {
3046 case HDSPM_CLOCK_SOURCE_AUTOSYNC:
3047 clock_source = "AutoSync";
3049 case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ:
3050 clock_source = "Internal 32 kHz";
3052 case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ:
3053 clock_source = "Internal 44.1 kHz";
3055 case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ:
3056 clock_source = "Internal 48 kHz";
3058 case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ:
3059 clock_source = "Internal 64 kHz";
3061 case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ:
3062 clock_source = "Internal 88.2 kHz";
3064 case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ:
3065 clock_source = "Internal 96 kHz";
3068 clock_source = "Error";
3070 snd_iprintf(buffer, "Sample Clock Source: %s\n", clock_source);
3071 if (!(hdspm->control_register & HDSPM_ClockModeMaster))
3072 system_clock_mode = "Slave";
3074 system_clock_mode = "Master";
3075 snd_iprintf(buffer, "System Clock Mode: %s\n", system_clock_mode);
3077 switch (hdspm_pref_sync_ref(hdspm)) {
3078 case HDSPM_SYNC_FROM_WORD:
3079 pref_sync_ref = "Word Clock";
3081 case HDSPM_SYNC_FROM_MADI:
3082 pref_sync_ref = "MADI Sync";
3085 pref_sync_ref = "XXXX Clock";
3088 snd_iprintf(buffer, "Preferred Sync Reference: %s\n",
3091 snd_iprintf(buffer, "System Clock Frequency: %d\n",
3092 hdspm->system_sample_rate);
3095 snd_iprintf(buffer, "--- Status:\n");
3097 x = status & HDSPM_madiSync;
3098 x2 = status2 & HDSPM_wcSync;
3100 snd_iprintf(buffer, "Inputs MADI=%s, WordClock=%s\n",
3101 (status & HDSPM_madiLock) ? (x ? "Sync" : "Lock") :
3103 (status2 & HDSPM_wcLock) ? (x2 ? "Sync" : "Lock") :
3106 switch (hdspm_autosync_ref(hdspm)) {
3107 case HDSPM_AUTOSYNC_FROM_WORD:
3108 autosync_ref = "Word Clock";
3110 case HDSPM_AUTOSYNC_FROM_MADI:
3111 autosync_ref = "MADI Sync";
3113 case HDSPM_AUTOSYNC_FROM_NONE:
3114 autosync_ref = "Input not valid";
3117 autosync_ref = "---";
3121 "AutoSync: Reference= %s, Freq=%d (MADI = %d, Word = %d)\n",
3122 autosync_ref, hdspm_external_sample_rate(hdspm),
3123 (status & HDSPM_madiFreqMask) >> 22,
3124 (status2 & HDSPM_wcFreqMask) >> 5);
3126 snd_iprintf(buffer, "Input: %s, Mode=%s\n",
3127 (status & HDSPM_AB_int) ? "Coax" : "Optical",
3128 (status & HDSPM_RX_64ch) ? "64 channels" :
3131 snd_iprintf(buffer, "\n");
3135 snd_hdspm_proc_read_aes32(struct snd_info_entry * entry,
3136 struct snd_info_buffer *buffer)
3138 struct hdspm *hdspm = entry->private_data;
3139 unsigned int status;
3140 unsigned int status2;
3141 unsigned int timecode;
3144 char *system_clock_mode;
3148 status = hdspm_read(hdspm, HDSPM_statusRegister);
3149 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
3150 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
3152 snd_iprintf(buffer, "%s (Card #%d) Rev.%x\n",
3153 hdspm->card_name, hdspm->card->number + 1,
3154 hdspm->firmware_rev);
3156 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
3157 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
3159 snd_iprintf(buffer, "--- System ---\n");
3162 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
3163 status & HDSPM_audioIRQPending,
3164 (status & HDSPM_midi0IRQPending) ? 1 : 0,
3165 (status & HDSPM_midi1IRQPending) ? 1 : 0,
3168 "HW pointer: id = %d, rawptr = %d (%d->%d) "
3169 "estimated= %ld (bytes)\n",
3170 ((status & HDSPM_BufferID) ? 1 : 0),
3171 (status & HDSPM_BufferPositionMask),
3172 (status & HDSPM_BufferPositionMask) %
3173 (2 * (int)hdspm->period_bytes),
3174 ((status & HDSPM_BufferPositionMask) - 64) %
3175 (2 * (int)hdspm->period_bytes),
3176 (long) hdspm_hw_pointer(hdspm) * 4);
3179 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
3180 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
3181 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
3182 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
3183 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
3185 "Register: ctrl1=0x%x, status1=0x%x, status2=0x%x, "
3187 hdspm->control_register,
3188 status, status2, timecode);
3190 snd_iprintf(buffer, "--- Settings ---\n");
3192 x = 1 << (6 + hdspm_decode_latency(hdspm->control_register &
3193 HDSPM_LatencyMask));
3196 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
3197 x, (unsigned long) hdspm->period_bytes);
3199 snd_iprintf(buffer, "Line out: %s, Precise Pointer: %s\n",
3201 control_register & HDSPM_LineOut) ? "on " : "off",
3202 (hdspm->precise_ptr) ? "on" : "off");
3205 "ClearTrackMarker %s, Emphasis %s, Dolby %s\n",
3207 control_register & HDSPM_clr_tms) ? "on" : "off",
3209 control_register & HDSPM_Emphasis) ? "on" : "off",
3211 control_register & HDSPM_Dolby) ? "on" : "off");
3213 switch (hdspm_clock_source(hdspm)) {
3214 case HDSPM_CLOCK_SOURCE_AUTOSYNC:
3215 clock_source = "AutoSync";
3217 case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ:
3218 clock_source = "Internal 32 kHz";
3220 case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ:
3221 clock_source = "Internal 44.1 kHz";
3223 case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ:
3224 clock_source = "Internal 48 kHz";
3226 case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ:
3227 clock_source = "Internal 64 kHz";
3229 case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ:
3230 clock_source = "Internal 88.2 kHz";
3232 case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ:
3233 clock_source = "Internal 96 kHz";
3235 case HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ:
3236 clock_source = "Internal 128 kHz";
3238 case HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ:
3239 clock_source = "Internal 176.4 kHz";
3241 case HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ:
3242 clock_source = "Internal 192 kHz";
3245 clock_source = "Error";
3247 snd_iprintf(buffer, "Sample Clock Source: %s\n", clock_source);
3248 if (!(hdspm->control_register & HDSPM_ClockModeMaster))
3249 system_clock_mode = "Slave";
3251 system_clock_mode = "Master";
3252 snd_iprintf(buffer, "System Clock Mode: %s\n", system_clock_mode);
3254 pref_syncref = hdspm_pref_sync_ref(hdspm);
3255 if (pref_syncref == 0)
3256 snd_iprintf(buffer, "Preferred Sync Reference: Word Clock\n");
3258 snd_iprintf(buffer, "Preferred Sync Reference: AES%d\n",
3261 snd_iprintf(buffer, "System Clock Frequency: %d\n",
3262 hdspm->system_sample_rate);
3264 snd_iprintf(buffer, "Double speed: %s\n",
3265 hdspm->control_register & HDSPM_DS_DoubleWire?
3266 "Double wire" : "Single wire");
3267 snd_iprintf(buffer, "Quad speed: %s\n",
3268 hdspm->control_register & HDSPM_QS_DoubleWire?
3270 hdspm->control_register & HDSPM_QS_QuadWire?
3271 "Quad wire" : "Single wire");
3273 snd_iprintf(buffer, "--- Status:\n");
3275 snd_iprintf(buffer, "Word: %s Frequency: %d\n",
3276 (status & HDSPM_AES32_wcLock)? "Sync " : "No Lock",
3277 HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit) & 0xF));
3279 for (x = 0; x < 8; x++) {
3280 snd_iprintf(buffer, "AES%d: %s Frequency: %d\n",
3282 (status2 & (HDSPM_LockAES >> x)) ?
3284 HDSPM_bit2freq((timecode >> (4*x)) & 0xF));
3287 switch (hdspm_autosync_ref(hdspm)) {
3288 case HDSPM_AES32_AUTOSYNC_FROM_NONE: autosync_ref="None"; break;
3289 case HDSPM_AES32_AUTOSYNC_FROM_WORD: autosync_ref="Word Clock"; break;
3290 case HDSPM_AES32_AUTOSYNC_FROM_AES1: autosync_ref="AES1"; break;
3291 case HDSPM_AES32_AUTOSYNC_FROM_AES2: autosync_ref="AES2"; break;
3292 case HDSPM_AES32_AUTOSYNC_FROM_AES3: autosync_ref="AES3"; break;
3293 case HDSPM_AES32_AUTOSYNC_FROM_AES4: autosync_ref="AES4"; break;
3294 case HDSPM_AES32_AUTOSYNC_FROM_AES5: autosync_ref="AES5"; break;
3295 case HDSPM_AES32_AUTOSYNC_FROM_AES6: autosync_ref="AES6"; break;
3296 case HDSPM_AES32_AUTOSYNC_FROM_AES7: autosync_ref="AES7"; break;
3297 case HDSPM_AES32_AUTOSYNC_FROM_AES8: autosync_ref="AES8"; break;
3298 default: autosync_ref = "---"; break;
3300 snd_iprintf(buffer, "AutoSync ref = %s\n", autosync_ref);
3302 snd_iprintf(buffer, "\n");
3305 #ifdef CONFIG_SND_DEBUG
3307 snd_hdspm_proc_read_debug(struct snd_info_entry * entry,
3308 struct snd_info_buffer *buffer)
3310 struct hdspm *hdspm = entry->private_data;
3314 for (i = 0; i < 256 /* 1024*64 */; i += j) {
3315 snd_iprintf(buffer, "0x%08X: ", i);
3316 for (j = 0; j < 16; j += 4)
3317 snd_iprintf(buffer, "%08X ", hdspm_read(hdspm, i + j));
3318 snd_iprintf(buffer, "\n");
3325 static void __devinit snd_hdspm_proc_init(struct hdspm * hdspm)
3327 struct snd_info_entry *entry;
3329 if (!snd_card_proc_new(hdspm->card, "hdspm", &entry))
3330 snd_info_set_text_ops(entry, hdspm,
3332 snd_hdspm_proc_read_aes32 :
3333 snd_hdspm_proc_read_madi);
3334 #ifdef CONFIG_SND_DEBUG
3335 /* debug file to read all hdspm registers */
3336 if (!snd_card_proc_new(hdspm->card, "debug", &entry))
3337 snd_info_set_text_ops(entry, hdspm,
3338 snd_hdspm_proc_read_debug);
3342 /*------------------------------------------------------------
3344 ------------------------------------------------------------*/
3346 static int snd_hdspm_set_defaults(struct hdspm * hdspm)
3350 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
3351 hold it (e.g. during module initialization).
3356 if (hdspm->is_aes32)
3357 hdspm->control_register =
3358 HDSPM_ClockModeMaster | /* Master Cloack Mode on */
3359 hdspm_encode_latency(7) | /* latency maximum =
3362 HDSPM_SyncRef0 | /* AES1 is syncclock */
3363 HDSPM_LineOut | /* Analog output in */
3364 HDSPM_Professional; /* Professional mode */
3366 hdspm->control_register =
3367 HDSPM_ClockModeMaster | /* Master Cloack Mode on */
3368 hdspm_encode_latency(7) | /* latency maximum =
3371 HDSPM_InputCoaxial | /* Input Coax not Optical */
3372 HDSPM_SyncRef_MADI | /* Madi is syncclock */
3373 HDSPM_LineOut | /* Analog output in */
3374 HDSPM_TX_64ch | /* transmit in 64ch mode */
3375 HDSPM_AutoInp; /* AutoInput chossing (takeover) */
3377 /* ! HDSPM_Frequency0|HDSPM_Frequency1 = 44.1khz */
3378 /* ! HDSPM_DoubleSpeed HDSPM_QuadSpeed = normal speed */
3379 /* ! HDSPM_clr_tms = do not clear bits in track marks */
3381 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3383 if (!hdspm->is_aes32) {
3384 /* No control2 register for AES32 */
3385 #ifdef SNDRV_BIG_ENDIAN
3386 hdspm->control2_register = HDSPM_BIGENDIAN_MODE;
3388 hdspm->control2_register = 0;
3391 hdspm_write(hdspm, HDSPM_control2Reg, hdspm->control2_register);
3393 hdspm_compute_period_size(hdspm);
3395 /* silence everything */
3397 all_in_all_mixer(hdspm, 0 * UNITY_GAIN);
3399 if (line_outs_monitor[hdspm->dev]) {
3401 snd_printk(KERN_INFO "HDSPM: "
3402 "sending all playback streams to line outs.\n");
3404 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++) {
3405 if (hdspm_write_pb_gain(hdspm, i, i, UNITY_GAIN))
3410 /* set a default rate so that the channel map is set up. */
3411 hdspm->channel_map = channel_map_madi_ss;
3412 hdspm_set_rate(hdspm, 44100, 1);
3418 /*------------------------------------------------------------
3420 ------------------------------------------------------------*/
3422 static irqreturn_t snd_hdspm_interrupt(int irq, void *dev_id)
3424 struct hdspm *hdspm = (struct hdspm *) dev_id;
3425 unsigned int status;
3429 unsigned int midi0status;
3430 unsigned int midi1status;
3433 status = hdspm_read(hdspm, HDSPM_statusRegister);
3435 audio = status & HDSPM_audioIRQPending;
3436 midi0 = status & HDSPM_midi0IRQPending;
3437 midi1 = status & HDSPM_midi1IRQPending;
3439 if (!audio && !midi0 && !midi1)
3442 hdspm_write(hdspm, HDSPM_interruptConfirmation, 0);
3445 midi0status = hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xff;
3446 midi1status = hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xff;
3450 if (hdspm->capture_substream)
3451 snd_pcm_period_elapsed(hdspm->capture_substream);
3453 if (hdspm->playback_substream)
3454 snd_pcm_period_elapsed(hdspm->playback_substream);
3457 if (midi0 && midi0status) {
3458 /* we disable interrupts for this input until processing
3461 hdspm->control_register &= ~HDSPM_Midi0InterruptEnable;
3462 hdspm_write(hdspm, HDSPM_controlRegister,
3463 hdspm->control_register);
3464 hdspm->midi[0].pending = 1;
3467 if (midi1 && midi1status) {
3468 /* we disable interrupts for this input until processing
3471 hdspm->control_register &= ~HDSPM_Midi1InterruptEnable;
3472 hdspm_write(hdspm, HDSPM_controlRegister,
3473 hdspm->control_register);
3474 hdspm->midi[1].pending = 1;
3478 tasklet_hi_schedule(&hdspm->midi_tasklet);
3482 /*------------------------------------------------------------
3484 ------------------------------------------------------------*/
3487 static snd_pcm_uframes_t snd_hdspm_hw_pointer(struct snd_pcm_substream *
3490 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3491 return hdspm_hw_pointer(hdspm);
3494 static char *hdspm_channel_buffer_location(struct hdspm * hdspm,
3495 int stream, int channel)
3499 snd_assert(channel >= 0
3500 || channel < HDSPM_MAX_CHANNELS, return NULL);
3502 mapped_channel = hdspm->channel_map[channel];
3503 if (mapped_channel < 0)
3506 if (stream == SNDRV_PCM_STREAM_CAPTURE)
3507 return hdspm->capture_buffer +
3508 mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
3510 return hdspm->playback_buffer +
3511 mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
3515 /* dont know why need it ??? */
3516 static int snd_hdspm_playback_copy(struct snd_pcm_substream *substream,
3517 int channel, snd_pcm_uframes_t pos,
3518 void __user *src, snd_pcm_uframes_t count)
3520 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3523 snd_assert(pos + count <= HDSPM_CHANNEL_BUFFER_BYTES / 4,
3527 hdspm_channel_buffer_location(hdspm, substream->pstr->stream,
3530 snd_assert(channel_buf != NULL, return -EIO);
3532 return copy_from_user(channel_buf + pos * 4, src, count * 4);
3535 static int snd_hdspm_capture_copy(struct snd_pcm_substream *substream,
3536 int channel, snd_pcm_uframes_t pos,
3537 void __user *dst, snd_pcm_uframes_t count)
3539 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3542 snd_assert(pos + count <= HDSPM_CHANNEL_BUFFER_BYTES / 4,
3546 hdspm_channel_buffer_location(hdspm, substream->pstr->stream,
3548 snd_assert(channel_buf != NULL, return -EIO);
3549 return copy_to_user(dst, channel_buf + pos * 4, count * 4);
3552 static int snd_hdspm_hw_silence(struct snd_pcm_substream *substream,
3553 int channel, snd_pcm_uframes_t pos,
3554 snd_pcm_uframes_t count)
3556 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3560 hdspm_channel_buffer_location(hdspm, substream->pstr->stream,
3562 snd_assert(channel_buf != NULL, return -EIO);
3563 memset(channel_buf + pos * 4, 0, count * 4);
3567 static int snd_hdspm_reset(struct snd_pcm_substream *substream)
3569 struct snd_pcm_runtime *runtime = substream->runtime;
3570 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3571 struct snd_pcm_substream *other;
3573 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
3574 other = hdspm->capture_substream;
3576 other = hdspm->playback_substream;
3579 runtime->status->hw_ptr = hdspm_hw_pointer(hdspm);
3581 runtime->status->hw_ptr = 0;
3583 struct snd_pcm_substream *s;
3584 struct snd_pcm_runtime *oruntime = other->runtime;
3585 snd_pcm_group_for_each_entry(s, substream) {
3587 oruntime->status->hw_ptr =
3588 runtime->status->hw_ptr;
3596 static int snd_hdspm_hw_params(struct snd_pcm_substream *substream,
3597 struct snd_pcm_hw_params *params)
3599 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3604 struct snd_sg_buf *sgbuf;
3607 spin_lock_irq(&hdspm->lock);
3609 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3610 this_pid = hdspm->playback_pid;
3611 other_pid = hdspm->capture_pid;
3613 this_pid = hdspm->capture_pid;
3614 other_pid = hdspm->playback_pid;
3617 if (other_pid > 0 && this_pid != other_pid) {
3619 /* The other stream is open, and not by the same
3620 task as this one. Make sure that the parameters
3621 that matter are the same.
3624 if (params_rate(params) != hdspm->system_sample_rate) {
3625 spin_unlock_irq(&hdspm->lock);
3626 _snd_pcm_hw_param_setempty(params,
3627 SNDRV_PCM_HW_PARAM_RATE);
3631 if (params_period_size(params) != hdspm->period_bytes / 4) {
3632 spin_unlock_irq(&hdspm->lock);
3633 _snd_pcm_hw_param_setempty(params,
3634 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
3640 spin_unlock_irq(&hdspm->lock);
3642 /* how to make sure that the rate matches an externally-set one ? */
3644 spin_lock_irq(&hdspm->lock);
3645 err = hdspm_set_rate(hdspm, params_rate(params), 0);
3647 spin_unlock_irq(&hdspm->lock);
3648 _snd_pcm_hw_param_setempty(params,
3649 SNDRV_PCM_HW_PARAM_RATE);
3652 spin_unlock_irq(&hdspm->lock);
3654 err = hdspm_set_interrupt_interval(hdspm,
3655 params_period_size(params));
3657 _snd_pcm_hw_param_setempty(params,
3658 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
3662 /* Memory allocation, takashi's method, dont know if we should
3665 /* malloc all buffer even if not enabled to get sure */
3666 /* Update for MADI rev 204: we need to allocate for all channels,
3667 * otherwise it doesn't work at 96kHz */
3669 snd_pcm_lib_malloc_pages(substream, HDSPM_DMA_AREA_BYTES);
3673 sgbuf = snd_pcm_substream_sgbuf(substream);
3675 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3677 hdspm_set_sgbuf(hdspm, sgbuf, HDSPM_pageAddressBufferOut,
3678 params_channels(params));
3680 for (i = 0; i < params_channels(params); ++i)
3681 snd_hdspm_enable_out(hdspm, i, 1);
3683 hdspm->playback_buffer =
3684 (unsigned char *) substream->runtime->dma_area;
3685 snd_printdd("Allocated sample buffer for playback at %p\n",
3686 hdspm->playback_buffer);
3688 hdspm_set_sgbuf(hdspm, sgbuf, HDSPM_pageAddressBufferIn,
3689 params_channels(params));
3691 for (i = 0; i < params_channels(params); ++i)
3692 snd_hdspm_enable_in(hdspm, i, 1);
3694 hdspm->capture_buffer =
3695 (unsigned char *) substream->runtime->dma_area;
3696 snd_printdd("Allocated sample buffer for capture at %p\n",
3697 hdspm->capture_buffer);
3700 snd_printdd("Allocated sample buffer for %s at 0x%08X\n",
3701 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
3702 "playback" : "capture",
3703 snd_pcm_sgbuf_get_addr(sgbuf, 0));
3706 snd_printdd("set_hwparams: %s %d Hz, %d channels, bs = %d\n",
3707 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
3708 "playback" : "capture",
3709 params_rate(params), params_channels(params),
3710 params_buffer_size(params));
3715 static int snd_hdspm_hw_free(struct snd_pcm_substream *substream)
3718 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3720 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3722 /* params_channels(params) should be enough,
3723 but to get sure in case of error */
3724 for (i = 0; i < HDSPM_MAX_CHANNELS; ++i)
3725 snd_hdspm_enable_out(hdspm, i, 0);
3727 hdspm->playback_buffer = NULL;
3729 for (i = 0; i < HDSPM_MAX_CHANNELS; ++i)
3730 snd_hdspm_enable_in(hdspm, i, 0);
3732 hdspm->capture_buffer = NULL;
3736 snd_pcm_lib_free_pages(substream);
3741 static int snd_hdspm_channel_info(struct snd_pcm_substream *substream,
3742 struct snd_pcm_channel_info * info)
3744 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3747 snd_assert(info->channel < HDSPM_MAX_CHANNELS, return -EINVAL);
3749 mapped_channel = hdspm->channel_map[info->channel];
3750 if (mapped_channel < 0)
3753 info->offset = mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
3759 static int snd_hdspm_ioctl(struct snd_pcm_substream *substream,
3760 unsigned int cmd, void *arg)
3763 case SNDRV_PCM_IOCTL1_RESET:
3764 return snd_hdspm_reset(substream);
3766 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
3768 struct snd_pcm_channel_info *info = arg;
3769 return snd_hdspm_channel_info(substream, info);
3775 return snd_pcm_lib_ioctl(substream, cmd, arg);
3778 static int snd_hdspm_trigger(struct snd_pcm_substream *substream, int cmd)
3780 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3781 struct snd_pcm_substream *other;
3784 spin_lock(&hdspm->lock);
3785 running = hdspm->running;
3787 case SNDRV_PCM_TRIGGER_START:
3788 running |= 1 << substream->stream;
3790 case SNDRV_PCM_TRIGGER_STOP:
3791 running &= ~(1 << substream->stream);
3795 spin_unlock(&hdspm->lock);
3798 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
3799 other = hdspm->capture_substream;
3801 other = hdspm->playback_substream;
3804 struct snd_pcm_substream *s;
3805 snd_pcm_group_for_each_entry(s, substream) {
3807 snd_pcm_trigger_done(s, substream);
3808 if (cmd == SNDRV_PCM_TRIGGER_START)
3809 running |= 1 << s->stream;
3811 running &= ~(1 << s->stream);
3815 if (cmd == SNDRV_PCM_TRIGGER_START) {
3816 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK))
3817 && substream->stream ==
3818 SNDRV_PCM_STREAM_CAPTURE)
3819 hdspm_silence_playback(hdspm);
3822 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
3823 hdspm_silence_playback(hdspm);
3826 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
3827 hdspm_silence_playback(hdspm);
3830 snd_pcm_trigger_done(substream, substream);
3831 if (!hdspm->running && running)
3832 hdspm_start_audio(hdspm);
3833 else if (hdspm->running && !running)
3834 hdspm_stop_audio(hdspm);
3835 hdspm->running = running;
3836 spin_unlock(&hdspm->lock);
3841 static int snd_hdspm_prepare(struct snd_pcm_substream *substream)
3846 static unsigned int period_sizes[] =
3847 { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
3849 static struct snd_pcm_hardware snd_hdspm_playback_subinfo = {
3850 .info = (SNDRV_PCM_INFO_MMAP |
3851 SNDRV_PCM_INFO_MMAP_VALID |
3852 SNDRV_PCM_INFO_NONINTERLEAVED |
3853 SNDRV_PCM_INFO_SYNC_START | SNDRV_PCM_INFO_DOUBLE),
3854 .formats = SNDRV_PCM_FMTBIT_S32_LE,
3855 .rates = (SNDRV_PCM_RATE_32000 |
3856 SNDRV_PCM_RATE_44100 |
3857 SNDRV_PCM_RATE_48000 |
3858 SNDRV_PCM_RATE_64000 |
3859 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
3860 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000 ),
3864 .channels_max = HDSPM_MAX_CHANNELS,
3866 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
3867 .period_bytes_min = (64 * 4),
3868 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
3874 static struct snd_pcm_hardware snd_hdspm_capture_subinfo = {
3875 .info = (SNDRV_PCM_INFO_MMAP |
3876 SNDRV_PCM_INFO_MMAP_VALID |
3877 SNDRV_PCM_INFO_NONINTERLEAVED |
3878 SNDRV_PCM_INFO_SYNC_START),
3879 .formats = SNDRV_PCM_FMTBIT_S32_LE,
3880 .rates = (SNDRV_PCM_RATE_32000 |
3881 SNDRV_PCM_RATE_44100 |
3882 SNDRV_PCM_RATE_48000 |
3883 SNDRV_PCM_RATE_64000 |
3884 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
3885 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000),
3889 .channels_max = HDSPM_MAX_CHANNELS,
3891 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
3892 .period_bytes_min = (64 * 4),
3893 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
3899 static struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = {
3900 .count = ARRAY_SIZE(period_sizes),
3901 .list = period_sizes,
3906 static int snd_hdspm_hw_rule_channels_rate(struct snd_pcm_hw_params *params,
3907 struct snd_pcm_hw_rule * rule)
3909 struct hdspm *hdspm = rule->private;
3910 struct snd_interval *c =
3911 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
3912 struct snd_interval *r =
3913 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
3915 if (r->min > 48000 && r->max <= 96000) {
3916 struct snd_interval t = {
3917 .min = hdspm->ds_channels,
3918 .max = hdspm->ds_channels,
3921 return snd_interval_refine(c, &t);
3922 } else if (r->max < 64000) {
3923 struct snd_interval t = {
3924 .min = hdspm->ss_channels,
3925 .max = hdspm->ss_channels,
3928 return snd_interval_refine(c, &t);
3933 static int snd_hdspm_hw_rule_rate_channels(struct snd_pcm_hw_params *params,
3934 struct snd_pcm_hw_rule * rule)
3936 struct hdspm *hdspm = rule->private;
3937 struct snd_interval *c =
3938 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
3939 struct snd_interval *r =
3940 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
3942 if (c->min >= hdspm->ss_channels) {
3943 struct snd_interval t = {
3948 return snd_interval_refine(r, &t);
3949 } else if (c->max <= hdspm->ds_channels) {
3950 struct snd_interval t = {
3956 return snd_interval_refine(r, &t);
3961 static int snd_hdspm_hw_rule_channels(struct snd_pcm_hw_params *params,
3962 struct snd_pcm_hw_rule *rule)
3964 unsigned int list[3];
3965 struct hdspm *hdspm = rule->private;
3966 struct snd_interval *c = hw_param_interval(params,
3967 SNDRV_PCM_HW_PARAM_CHANNELS);
3968 if (hdspm->is_aes32) {
3969 list[0] = hdspm->qs_channels;
3970 list[1] = hdspm->ds_channels;
3971 list[2] = hdspm->ss_channels;
3972 return snd_interval_list(c, 3, list, 0);
3974 list[0] = hdspm->ds_channels;
3975 list[1] = hdspm->ss_channels;
3976 return snd_interval_list(c, 2, list, 0);
3981 static unsigned int hdspm_aes32_sample_rates[] = {
3982 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000
3985 static struct snd_pcm_hw_constraint_list
3986 hdspm_hw_constraints_aes32_sample_rates = {
3987 .count = ARRAY_SIZE(hdspm_aes32_sample_rates),
3988 .list = hdspm_aes32_sample_rates,
3992 static int snd_hdspm_playback_open(struct snd_pcm_substream *substream)
3994 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3995 struct snd_pcm_runtime *runtime = substream->runtime;
3997 spin_lock_irq(&hdspm->lock);
3999 snd_pcm_set_sync(substream);
4001 runtime->hw = snd_hdspm_playback_subinfo;
4003 if (hdspm->capture_substream == NULL)
4004 hdspm_stop_audio(hdspm);
4006 hdspm->playback_pid = current->pid;
4007 hdspm->playback_substream = substream;
4009 spin_unlock_irq(&hdspm->lock);
4011 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4013 snd_pcm_hw_constraint_list(runtime, 0,
4014 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
4015 &hw_constraints_period_sizes);
4017 if (hdspm->is_aes32) {
4018 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4019 &hdspm_hw_constraints_aes32_sample_rates);
4021 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4022 snd_hdspm_hw_rule_channels, hdspm,
4023 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4024 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4025 snd_hdspm_hw_rule_channels_rate, hdspm,
4026 SNDRV_PCM_HW_PARAM_RATE, -1);
4028 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4029 snd_hdspm_hw_rule_rate_channels, hdspm,
4030 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4035 static int snd_hdspm_playback_release(struct snd_pcm_substream *substream)
4037 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
4039 spin_lock_irq(&hdspm->lock);
4041 hdspm->playback_pid = -1;
4042 hdspm->playback_substream = NULL;
4044 spin_unlock_irq(&hdspm->lock);
4050 static int snd_hdspm_capture_open(struct snd_pcm_substream *substream)
4052 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
4053 struct snd_pcm_runtime *runtime = substream->runtime;
4055 spin_lock_irq(&hdspm->lock);
4056 snd_pcm_set_sync(substream);
4057 runtime->hw = snd_hdspm_capture_subinfo;
4059 if (hdspm->playback_substream == NULL)
4060 hdspm_stop_audio(hdspm);
4062 hdspm->capture_pid = current->pid;
4063 hdspm->capture_substream = substream;
4065 spin_unlock_irq(&hdspm->lock);
4067 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4068 snd_pcm_hw_constraint_list(runtime, 0,
4069 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
4070 &hw_constraints_period_sizes);
4071 if (hdspm->is_aes32) {
4072 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4073 &hdspm_hw_constraints_aes32_sample_rates);
4075 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4076 snd_hdspm_hw_rule_channels, hdspm,
4077 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4078 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4079 snd_hdspm_hw_rule_channels_rate, hdspm,
4080 SNDRV_PCM_HW_PARAM_RATE, -1);
4082 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4083 snd_hdspm_hw_rule_rate_channels, hdspm,
4084 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4089 static int snd_hdspm_capture_release(struct snd_pcm_substream *substream)
4091 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
4093 spin_lock_irq(&hdspm->lock);
4095 hdspm->capture_pid = -1;
4096 hdspm->capture_substream = NULL;
4098 spin_unlock_irq(&hdspm->lock);
4102 static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep * hw, struct file *file)
4104 /* we have nothing to initialize but the call is required */
4109 static int snd_hdspm_hwdep_ioctl(struct snd_hwdep * hw, struct file *file,
4110 unsigned int cmd, unsigned long arg)
4112 struct hdspm *hdspm = hw->private_data;
4113 struct hdspm_mixer_ioctl mixer;
4114 struct hdspm_config_info info;
4115 struct hdspm_version hdspm_version;
4116 struct hdspm_peak_rms_ioctl rms;
4120 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS:
4121 if (copy_from_user(&rms, (void __user *)arg, sizeof(rms)))
4123 /* maybe there is a chance to memorymap in future
4124 * so dont touch just copy
4126 if(copy_to_user_fromio((void __user *)rms.peak,
4127 hdspm->iobase+HDSPM_MADI_peakrmsbase,
4128 sizeof(struct hdspm_peak_rms)) != 0 )
4134 case SNDRV_HDSPM_IOCTL_GET_CONFIG_INFO:
4136 spin_lock_irq(&hdspm->lock);
4137 info.pref_sync_ref = hdspm_pref_sync_ref(hdspm);
4138 info.wordclock_sync_check = hdspm_wc_sync_check(hdspm);
4140 info.system_sample_rate = hdspm->system_sample_rate;
4141 info.autosync_sample_rate =
4142 hdspm_external_sample_rate(hdspm);
4143 info.system_clock_mode = hdspm_system_clock_mode(hdspm);
4144 info.clock_source = hdspm_clock_source(hdspm);
4145 info.autosync_ref = hdspm_autosync_ref(hdspm);
4146 info.line_out = hdspm_line_out(hdspm);
4148 spin_unlock_irq(&hdspm->lock);
4149 if (copy_to_user((void __user *) arg, &info, sizeof(info)))
4153 case SNDRV_HDSPM_IOCTL_GET_VERSION:
4154 hdspm_version.firmware_rev = hdspm->firmware_rev;
4155 if (copy_to_user((void __user *) arg, &hdspm_version,
4156 sizeof(hdspm_version)))
4160 case SNDRV_HDSPM_IOCTL_GET_MIXER:
4161 if (copy_from_user(&mixer, (void __user *)arg, sizeof(mixer)))
4163 if (copy_to_user((void __user *)mixer.mixer, hdspm->mixer,
4164 sizeof(struct hdspm_mixer)))
4174 static struct snd_pcm_ops snd_hdspm_playback_ops = {
4175 .open = snd_hdspm_playback_open,
4176 .close = snd_hdspm_playback_release,
4177 .ioctl = snd_hdspm_ioctl,
4178 .hw_params = snd_hdspm_hw_params,
4179 .hw_free = snd_hdspm_hw_free,
4180 .prepare = snd_hdspm_prepare,
4181 .trigger = snd_hdspm_trigger,
4182 .pointer = snd_hdspm_hw_pointer,
4183 .copy = snd_hdspm_playback_copy,
4184 .silence = snd_hdspm_hw_silence,
4185 .page = snd_pcm_sgbuf_ops_page,
4188 static struct snd_pcm_ops snd_hdspm_capture_ops = {
4189 .open = snd_hdspm_capture_open,
4190 .close = snd_hdspm_capture_release,
4191 .ioctl = snd_hdspm_ioctl,
4192 .hw_params = snd_hdspm_hw_params,
4193 .hw_free = snd_hdspm_hw_free,
4194 .prepare = snd_hdspm_prepare,
4195 .trigger = snd_hdspm_trigger,
4196 .pointer = snd_hdspm_hw_pointer,
4197 .copy = snd_hdspm_capture_copy,
4198 .page = snd_pcm_sgbuf_ops_page,
4201 static int __devinit snd_hdspm_create_hwdep(struct snd_card *card,
4202 struct hdspm * hdspm)
4204 struct snd_hwdep *hw;
4207 err = snd_hwdep_new(card, "HDSPM hwdep", 0, &hw);
4212 hw->private_data = hdspm;
4213 strcpy(hw->name, "HDSPM hwdep interface");
4215 hw->ops.open = snd_hdspm_hwdep_dummy_op;
4216 hw->ops.ioctl = snd_hdspm_hwdep_ioctl;
4217 hw->ops.release = snd_hdspm_hwdep_dummy_op;
4223 /*------------------------------------------------------------
4225 ------------------------------------------------------------*/
4226 static int __devinit snd_hdspm_preallocate_memory(struct hdspm * hdspm)
4229 struct snd_pcm *pcm;
4234 wanted = HDSPM_DMA_AREA_BYTES;
4237 snd_pcm_lib_preallocate_pages_for_all(pcm,
4238 SNDRV_DMA_TYPE_DEV_SG,
4239 snd_dma_pci_data(hdspm->pci),
4243 snd_printdd("Could not preallocate %zd Bytes\n", wanted);
4247 snd_printdd(" Preallocated %zd Bytes\n", wanted);
4252 static void hdspm_set_sgbuf(struct hdspm * hdspm, struct snd_sg_buf *sgbuf,
4253 unsigned int reg, int channels)
4256 for (i = 0; i < (channels * 16); i++)
4257 hdspm_write(hdspm, reg + 4 * i,
4258 snd_pcm_sgbuf_get_addr(sgbuf, (size_t) 4096 * i));
4261 /* ------------- ALSA Devices ---------------------------- */
4262 static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
4263 struct hdspm * hdspm)
4265 struct snd_pcm *pcm;
4268 err = snd_pcm_new(card, hdspm->card_name, 0, 1, 1, &pcm);
4273 pcm->private_data = hdspm;
4274 strcpy(pcm->name, hdspm->card_name);
4276 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
4277 &snd_hdspm_playback_ops);
4278 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
4279 &snd_hdspm_capture_ops);
4281 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
4283 err = snd_hdspm_preallocate_memory(hdspm);
4290 static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm)
4292 snd_hdspm_flush_midi_input(hdspm, 0);
4293 snd_hdspm_flush_midi_input(hdspm, 1);
4296 static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
4297 struct hdspm * hdspm)
4301 snd_printdd("Create card...\n");
4302 err = snd_hdspm_create_pcm(card, hdspm);
4306 err = snd_hdspm_create_midi(card, hdspm, 0);
4310 err = snd_hdspm_create_midi(card, hdspm, 1);
4314 err = snd_hdspm_create_controls(card, hdspm);
4318 err = snd_hdspm_create_hwdep(card, hdspm);
4322 snd_printdd("proc init...\n");
4323 snd_hdspm_proc_init(hdspm);
4325 hdspm->system_sample_rate = -1;
4326 hdspm->last_external_sample_rate = -1;
4327 hdspm->last_internal_sample_rate = -1;
4328 hdspm->playback_pid = -1;
4329 hdspm->capture_pid = -1;
4330 hdspm->capture_substream = NULL;
4331 hdspm->playback_substream = NULL;
4333 snd_printdd("Set defaults...\n");
4334 err = snd_hdspm_set_defaults(hdspm);
4338 snd_printdd("Update mixer controls...\n");
4339 hdspm_update_simple_mixer_controls(hdspm);
4341 snd_printdd("Initializeing complete ???\n");
4343 err = snd_card_register(card);
4345 snd_printk(KERN_ERR "HDSPM: error registering card\n");
4349 snd_printdd("... yes now\n");
4354 static int __devinit snd_hdspm_create(struct snd_card *card,
4355 struct hdspm *hdspm,
4356 int precise_ptr, int enable_monitor)
4358 struct pci_dev *pci = hdspm->pci;
4360 unsigned long io_extent;
4364 spin_lock_init(&hdspm->midi[0].lock);
4365 spin_lock_init(&hdspm->midi[1].lock);
4369 spin_lock_init(&hdspm->lock);
4371 tasklet_init(&hdspm->midi_tasklet,
4372 hdspm_midi_tasklet, (unsigned long) hdspm);
4374 pci_read_config_word(hdspm->pci,
4375 PCI_CLASS_REVISION, &hdspm->firmware_rev);
4377 hdspm->is_aes32 = (hdspm->firmware_rev >= HDSPM_AESREVISION);
4379 strcpy(card->mixername, "Xilinx FPGA");
4380 if (hdspm->is_aes32) {
4381 strcpy(card->driver, "HDSPAES32");
4382 hdspm->card_name = "RME HDSPM AES32";
4384 strcpy(card->driver, "HDSPM");
4385 hdspm->card_name = "RME HDSPM MADI";
4388 err = pci_enable_device(pci);
4392 pci_set_master(hdspm->pci);
4394 err = pci_request_regions(pci, "hdspm");
4398 hdspm->port = pci_resource_start(pci, 0);
4399 io_extent = pci_resource_len(pci, 0);
4401 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
4402 hdspm->port, hdspm->port + io_extent - 1);
4405 hdspm->iobase = ioremap_nocache(hdspm->port, io_extent);
4406 if (!hdspm->iobase) {
4407 snd_printk(KERN_ERR "HDSPM: "
4408 "unable to remap region 0x%lx-0x%lx\n",
4409 hdspm->port, hdspm->port + io_extent - 1);
4412 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
4413 (unsigned long)hdspm->iobase, hdspm->port,
4414 hdspm->port + io_extent - 1);
4416 if (request_irq(pci->irq, snd_hdspm_interrupt,
4417 IRQF_SHARED, "hdspm", hdspm)) {
4418 snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq);
4422 snd_printdd("use IRQ %d\n", pci->irq);
4424 hdspm->irq = pci->irq;
4425 hdspm->precise_ptr = precise_ptr;
4427 hdspm->monitor_outs = enable_monitor;
4429 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
4430 sizeof(struct hdspm_mixer));
4431 hdspm->mixer = kzalloc(sizeof(struct hdspm_mixer), GFP_KERNEL);
4432 if (!hdspm->mixer) {
4433 snd_printk(KERN_ERR "HDSPM: "
4434 "unable to kmalloc Mixer memory of %d Bytes\n",
4435 (int)sizeof(struct hdspm_mixer));
4439 hdspm->ss_channels = MADI_SS_CHANNELS;
4440 hdspm->ds_channels = MADI_DS_CHANNELS;
4441 hdspm->qs_channels = MADI_QS_CHANNELS;
4443 snd_printdd("create alsa devices.\n");
4444 err = snd_hdspm_create_alsa_devices(card, hdspm);
4448 snd_hdspm_initialize_midi_flush(hdspm);
4453 static int snd_hdspm_free(struct hdspm * hdspm)
4458 /* stop th audio, and cancel all interrupts */
4459 hdspm->control_register &=
4460 ~(HDSPM_Start | HDSPM_AudioInterruptEnable |
4461 HDSPM_Midi0InterruptEnable | HDSPM_Midi1InterruptEnable);
4462 hdspm_write(hdspm, HDSPM_controlRegister,
4463 hdspm->control_register);
4466 if (hdspm->irq >= 0)
4467 free_irq(hdspm->irq, (void *) hdspm);
4469 kfree(hdspm->mixer);
4472 iounmap(hdspm->iobase);
4475 pci_release_regions(hdspm->pci);
4477 pci_disable_device(hdspm->pci);
4481 static void snd_hdspm_card_free(struct snd_card *card)
4483 struct hdspm *hdspm = card->private_data;
4486 snd_hdspm_free(hdspm);
4489 static int __devinit snd_hdspm_probe(struct pci_dev *pci,
4490 const struct pci_device_id *pci_id)
4493 struct hdspm *hdspm;
4494 struct snd_card *card;
4497 if (dev >= SNDRV_CARDS)
4504 card = snd_card_new(index[dev], id[dev],
4505 THIS_MODULE, sizeof(struct hdspm));
4509 hdspm = card->private_data;
4510 card->private_free = snd_hdspm_card_free;
4514 snd_card_set_dev(card, &pci->dev);
4516 err = snd_hdspm_create(card, hdspm, precise_ptr[dev],
4517 enable_monitor[dev]);
4519 snd_card_free(card);
4523 strcpy(card->shortname, "HDSPM MADI");
4524 sprintf(card->longname, "%s at 0x%lx, irq %d", hdspm->card_name,
4525 hdspm->port, hdspm->irq);
4527 err = snd_card_register(card);
4529 snd_card_free(card);
4533 pci_set_drvdata(pci, card);
4539 static void __devexit snd_hdspm_remove(struct pci_dev *pci)
4541 snd_card_free(pci_get_drvdata(pci));
4542 pci_set_drvdata(pci, NULL);
4545 static struct pci_driver driver = {
4546 .name = "RME Hammerfall DSP MADI",
4547 .id_table = snd_hdspm_ids,
4548 .probe = snd_hdspm_probe,
4549 .remove = __devexit_p(snd_hdspm_remove),
4553 static int __init alsa_card_hdspm_init(void)
4555 return pci_register_driver(&driver);
4558 static void __exit alsa_card_hdspm_exit(void)
4560 pci_unregister_driver(&driver);
4563 module_init(alsa_card_hdspm_init)
4564 module_exit(alsa_card_hdspm_exit)