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 * Modified 2009-04-13 for proper metering by Florian Faber
14 * Modified 2009-04-14 for native float support by Florian Faber
17 * Modified 2009-04-26 fixed bug in rms metering by Florian Faber
20 * Modified 2009-04-30 added hw serial number support by Florian Faber
22 * Modified 2011-01-14 added S/PDIF input on RayDATs by Adrian Knoth
24 * Modified 2011-01-25 variable period sizes on RayDAT/AIO by Adrian Knoth
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
41 #include <linux/init.h>
42 #include <linux/delay.h>
43 #include <linux/interrupt.h>
44 #include <linux/module.h>
45 #include <linux/slab.h>
46 #include <linux/pci.h>
47 #include <linux/math64.h>
50 #include <sound/core.h>
51 #include <sound/control.h>
52 #include <sound/pcm.h>
53 #include <sound/pcm_params.h>
54 #include <sound/info.h>
55 #include <sound/asoundef.h>
56 #include <sound/rawmidi.h>
57 #include <sound/hwdep.h>
58 #include <sound/initval.h>
60 #include <sound/hdspm.h>
62 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
63 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
64 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;/* Enable this card */
66 module_param_array(index
, int, NULL
, 0444);
67 MODULE_PARM_DESC(index
, "Index value for RME HDSPM interface.");
69 module_param_array(id
, charp
, NULL
, 0444);
70 MODULE_PARM_DESC(id
, "ID string for RME HDSPM interface.");
72 module_param_array(enable
, bool, NULL
, 0444);
73 MODULE_PARM_DESC(enable
, "Enable/disable specific HDSPM soundcards.");
78 "Winfried Ritsch <ritsch_AT_iem.at>, "
79 "Paul Davis <paul@linuxaudiosystems.com>, "
80 "Marcus Andersson, Thomas Charbonnel <thomas@undata.org>, "
81 "Remy Bruno <remy.bruno@trinnov.com>, "
82 "Florian Faber <faberman@linuxproaudio.org>, "
83 "Adrian Knoth <adi@drcomp.erfurt.thur.de>"
85 MODULE_DESCRIPTION("RME HDSPM");
86 MODULE_LICENSE("GPL");
87 MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}");
89 /* --- Write registers. ---
90 These are defined as byte-offsets from the iobase value. */
92 #define HDSPM_WR_SETTINGS 0
93 #define HDSPM_outputBufferAddress 32
94 #define HDSPM_inputBufferAddress 36
95 #define HDSPM_controlRegister 64
96 #define HDSPM_interruptConfirmation 96
97 #define HDSPM_control2Reg 256 /* not in specs ???????? */
98 #define HDSPM_freqReg 256 /* for AES32 */
99 #define HDSPM_midiDataOut0 352 /* just believe in old code */
100 #define HDSPM_midiDataOut1 356
101 #define HDSPM_eeprom_wr 384 /* for AES32 */
103 /* DMA enable for 64 channels, only Bit 0 is relevant */
104 #define HDSPM_outputEnableBase 512 /* 512-767 input DMA */
105 #define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */
107 /* 16 page addresses for each of the 64 channels DMA buffer in and out
108 (each 64k=16*4k) Buffer must be 4k aligned (which is default i386 ????) */
109 #define HDSPM_pageAddressBufferOut 8192
110 #define HDSPM_pageAddressBufferIn (HDSPM_pageAddressBufferOut+64*16*4)
112 #define HDSPM_MADI_mixerBase 32768 /* 32768-65535 for 2x64x64 Fader */
114 #define HDSPM_MATRIX_MIXER_SIZE 8192 /* = 2*64*64 * 4 Byte => 32kB */
116 /* --- Read registers. ---
117 These are defined as byte-offsets from the iobase value */
118 #define HDSPM_statusRegister 0
119 /*#define HDSPM_statusRegister2 96 */
120 /* after RME Windows driver sources, status2 is 4-byte word # 48 = word at
121 * offset 192, for AES32 *and* MADI
122 * => need to check that offset 192 is working on MADI */
123 #define HDSPM_statusRegister2 192
124 #define HDSPM_timecodeRegister 128
127 #define HDSPM_RD_STATUS_0 0
128 #define HDSPM_RD_STATUS_1 64
129 #define HDSPM_RD_STATUS_2 128
130 #define HDSPM_RD_STATUS_3 192
132 #define HDSPM_RD_TCO 256
133 #define HDSPM_RD_PLL_FREQ 512
134 #define HDSPM_WR_TCO 128
136 #define HDSPM_TCO1_TCO_lock 0x00000001
137 #define HDSPM_TCO1_WCK_Input_Range_LSB 0x00000002
138 #define HDSPM_TCO1_WCK_Input_Range_MSB 0x00000004
139 #define HDSPM_TCO1_LTC_Input_valid 0x00000008
140 #define HDSPM_TCO1_WCK_Input_valid 0x00000010
141 #define HDSPM_TCO1_Video_Input_Format_NTSC 0x00000020
142 #define HDSPM_TCO1_Video_Input_Format_PAL 0x00000040
144 #define HDSPM_TCO1_set_TC 0x00000100
145 #define HDSPM_TCO1_set_drop_frame_flag 0x00000200
146 #define HDSPM_TCO1_LTC_Format_LSB 0x00000400
147 #define HDSPM_TCO1_LTC_Format_MSB 0x00000800
149 #define HDSPM_TCO2_TC_run 0x00010000
150 #define HDSPM_TCO2_WCK_IO_ratio_LSB 0x00020000
151 #define HDSPM_TCO2_WCK_IO_ratio_MSB 0x00040000
152 #define HDSPM_TCO2_set_num_drop_frames_LSB 0x00080000
153 #define HDSPM_TCO2_set_num_drop_frames_MSB 0x00100000
154 #define HDSPM_TCO2_set_jam_sync 0x00200000
155 #define HDSPM_TCO2_set_flywheel 0x00400000
157 #define HDSPM_TCO2_set_01_4 0x01000000
158 #define HDSPM_TCO2_set_pull_down 0x02000000
159 #define HDSPM_TCO2_set_pull_up 0x04000000
160 #define HDSPM_TCO2_set_freq 0x08000000
161 #define HDSPM_TCO2_set_term_75R 0x10000000
162 #define HDSPM_TCO2_set_input_LSB 0x20000000
163 #define HDSPM_TCO2_set_input_MSB 0x40000000
164 #define HDSPM_TCO2_set_freq_from_app 0x80000000
167 #define HDSPM_midiDataOut0 352
168 #define HDSPM_midiDataOut1 356
169 #define HDSPM_midiDataOut2 368
171 #define HDSPM_midiDataIn0 360
172 #define HDSPM_midiDataIn1 364
173 #define HDSPM_midiDataIn2 372
174 #define HDSPM_midiDataIn3 376
176 /* status is data bytes in MIDI-FIFO (0-128) */
177 #define HDSPM_midiStatusOut0 384
178 #define HDSPM_midiStatusOut1 388
179 #define HDSPM_midiStatusOut2 400
181 #define HDSPM_midiStatusIn0 392
182 #define HDSPM_midiStatusIn1 396
183 #define HDSPM_midiStatusIn2 404
184 #define HDSPM_midiStatusIn3 408
187 /* the meters are regular i/o-mapped registers, but offset
188 considerably from the rest. the peak registers are reset
189 when read; the least-significant 4 bits are full-scale counters;
190 the actual peak value is in the most-significant 24 bits.
193 #define HDSPM_MADI_INPUT_PEAK 4096
194 #define HDSPM_MADI_PLAYBACK_PEAK 4352
195 #define HDSPM_MADI_OUTPUT_PEAK 4608
197 #define HDSPM_MADI_INPUT_RMS_L 6144
198 #define HDSPM_MADI_PLAYBACK_RMS_L 6400
199 #define HDSPM_MADI_OUTPUT_RMS_L 6656
201 #define HDSPM_MADI_INPUT_RMS_H 7168
202 #define HDSPM_MADI_PLAYBACK_RMS_H 7424
203 #define HDSPM_MADI_OUTPUT_RMS_H 7680
205 /* --- Control Register bits --------- */
206 #define HDSPM_Start (1<<0) /* start engine */
208 #define HDSPM_Latency0 (1<<1) /* buffer size = 2^n */
209 #define HDSPM_Latency1 (1<<2) /* where n is defined */
210 #define HDSPM_Latency2 (1<<3) /* by Latency{2,1,0} */
212 #define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Autosync */
213 #define HDSPM_c0Master 0x1 /* Master clock bit in settings
214 register [RayDAT, AIO] */
216 #define HDSPM_AudioInterruptEnable (1<<5) /* what do you think ? */
218 #define HDSPM_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz 1=48kHz/96kHz */
219 #define HDSPM_Frequency1 (1<<7) /* 0=32kHz/64kHz */
220 #define HDSPM_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
221 #define HDSPM_QuadSpeed (1<<31) /* quad speed bit */
223 #define HDSPM_Professional (1<<9) /* Professional */ /* AES32 ONLY */
224 #define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1,
225 56channelMODE=0 */ /* MADI ONLY*/
226 #define HDSPM_Emphasis (1<<10) /* Emphasis */ /* AES32 ONLY */
228 #define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode,
229 0=off, 1=on */ /* MADI ONLY */
230 #define HDSPM_Dolby (1<<11) /* Dolby = "NonAudio" ?? */ /* AES32 ONLY */
232 #define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax
235 #define HDSPM_InputSelect1 (1<<15) /* should be 0 */
237 #define HDSPM_SyncRef2 (1<<13)
238 #define HDSPM_SyncRef3 (1<<25)
240 #define HDSPM_SMUX (1<<18) /* Frame ??? */ /* MADI ONY */
241 #define HDSPM_clr_tms (1<<19) /* clear track marker, do not use
242 AES additional bits in
243 lower 5 Audiodatabits ??? */
244 #define HDSPM_taxi_reset (1<<20) /* ??? */ /* MADI ONLY ? */
245 #define HDSPM_WCK48 (1<<20) /* Frame ??? = HDSPM_SMUX */ /* AES32 ONLY */
247 #define HDSPM_Midi0InterruptEnable 0x0400000
248 #define HDSPM_Midi1InterruptEnable 0x0800000
249 #define HDSPM_Midi2InterruptEnable 0x0200000
250 #define HDSPM_Midi3InterruptEnable 0x4000000
252 #define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */
253 #define HDSPe_FLOAT_FORMAT 0x2000000
255 #define HDSPM_DS_DoubleWire (1<<26) /* AES32 ONLY */
256 #define HDSPM_QS_DoubleWire (1<<27) /* AES32 ONLY */
257 #define HDSPM_QS_QuadWire (1<<28) /* AES32 ONLY */
259 #define HDSPM_wclk_sel (1<<30)
261 /* --- bit helper defines */
262 #define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2)
263 #define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1|\
264 HDSPM_DoubleSpeed|HDSPM_QuadSpeed)
265 #define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1)
266 #define HDSPM_InputOptical 0
267 #define HDSPM_InputCoaxial (HDSPM_InputSelect0)
268 #define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1|\
269 HDSPM_SyncRef2|HDSPM_SyncRef3)
271 #define HDSPM_c0_SyncRef0 0x2
272 #define HDSPM_c0_SyncRef1 0x4
273 #define HDSPM_c0_SyncRef2 0x8
274 #define HDSPM_c0_SyncRef3 0x10
275 #define HDSPM_c0_SyncRefMask (HDSPM_c0_SyncRef0 | HDSPM_c0_SyncRef1 |\
276 HDSPM_c0_SyncRef2 | HDSPM_c0_SyncRef3)
278 #define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */
279 #define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */
280 #define HDSPM_SYNC_FROM_TCO 2
281 #define HDSPM_SYNC_FROM_SYNC_IN 3
283 #define HDSPM_Frequency32KHz HDSPM_Frequency0
284 #define HDSPM_Frequency44_1KHz HDSPM_Frequency1
285 #define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0)
286 #define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0)
287 #define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1)
288 #define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|\
290 #define HDSPM_Frequency128KHz (HDSPM_QuadSpeed|HDSPM_Frequency0)
291 #define HDSPM_Frequency176_4KHz (HDSPM_QuadSpeed|HDSPM_Frequency1)
292 #define HDSPM_Frequency192KHz (HDSPM_QuadSpeed|HDSPM_Frequency1|\
296 /* Synccheck Status */
297 #define HDSPM_SYNC_CHECK_NO_LOCK 0
298 #define HDSPM_SYNC_CHECK_LOCK 1
299 #define HDSPM_SYNC_CHECK_SYNC 2
301 /* AutoSync References - used by "autosync_ref" control switch */
302 #define HDSPM_AUTOSYNC_FROM_WORD 0
303 #define HDSPM_AUTOSYNC_FROM_MADI 1
304 #define HDSPM_AUTOSYNC_FROM_TCO 2
305 #define HDSPM_AUTOSYNC_FROM_SYNC_IN 3
306 #define HDSPM_AUTOSYNC_FROM_NONE 4
308 /* Possible sources of MADI input */
309 #define HDSPM_OPTICAL 0 /* optical */
310 #define HDSPM_COAXIAL 1 /* BNC */
312 #define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask)
313 #define hdspm_decode_latency(x) ((((x) & HDSPM_LatencyMask)>>1))
315 #define hdspm_encode_in(x) (((x)&0x3)<<14)
316 #define hdspm_decode_in(x) (((x)>>14)&0x3)
318 /* --- control2 register bits --- */
319 #define HDSPM_TMS (1<<0)
320 #define HDSPM_TCK (1<<1)
321 #define HDSPM_TDI (1<<2)
322 #define HDSPM_JTAG (1<<3)
323 #define HDSPM_PWDN (1<<4)
324 #define HDSPM_PROGRAM (1<<5)
325 #define HDSPM_CONFIG_MODE_0 (1<<6)
326 #define HDSPM_CONFIG_MODE_1 (1<<7)
327 /*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/
328 #define HDSPM_BIGENDIAN_MODE (1<<9)
329 #define HDSPM_RD_MULTIPLE (1<<10)
331 /* --- Status Register bits --- */ /* MADI ONLY */ /* Bits defined here and
332 that do not conflict with specific bits for AES32 seem to be valid also
335 #define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */
336 #define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn MODE=0 */
337 #define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1
341 #define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */
342 #define HDSPM_madiSync (1<<18) /* MADI is in sync */
344 #define HDSPM_tcoLock 0x00000020 /* Optional TCO locked status FOR HDSPe MADI! */
345 #define HDSPM_tcoSync 0x10000000 /* Optional TCO sync status */
347 #define HDSPM_syncInLock 0x00010000 /* Sync In lock status FOR HDSPe MADI! */
348 #define HDSPM_syncInSync 0x00020000 /* Sync In sync status FOR HDSPe MADI! */
350 #define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
351 /* since 64byte accurate, last 6 bits are not used */
355 #define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */
357 #define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */
358 #define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */
359 #define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */
360 #define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */
362 #define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with
365 #define HDSPM_tco_detect 0x08000000
366 #define HDSPM_tco_lock 0x20000000
368 #define HDSPM_s2_tco_detect 0x00000040
369 #define HDSPM_s2_AEBO_D 0x00000080
370 #define HDSPM_s2_AEBI_D 0x00000100
373 #define HDSPM_midi0IRQPending 0x40000000
374 #define HDSPM_midi1IRQPending 0x80000000
375 #define HDSPM_midi2IRQPending 0x20000000
376 #define HDSPM_midi2IRQPendingAES 0x00000020
377 #define HDSPM_midi3IRQPending 0x00200000
379 /* --- status bit helpers */
380 #define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|\
381 HDSPM_madiFreq2|HDSPM_madiFreq3)
382 #define HDSPM_madiFreq32 (HDSPM_madiFreq0)
383 #define HDSPM_madiFreq44_1 (HDSPM_madiFreq1)
384 #define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1)
385 #define HDSPM_madiFreq64 (HDSPM_madiFreq2)
386 #define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2)
387 #define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2)
388 #define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2)
389 #define HDSPM_madiFreq176_4 (HDSPM_madiFreq3)
390 #define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0)
392 /* Status2 Register bits */ /* MADI ONLY */
394 #define HDSPM_version0 (1<<0) /* not really defined but I guess */
395 #define HDSPM_version1 (1<<1) /* in former cards it was ??? */
396 #define HDSPM_version2 (1<<2)
398 #define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */
399 #define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */
401 #define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */
402 #define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */
403 #define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, */
404 /* missing Bit for 111=128, 1000=176.4, 1001=192 */
406 #define HDSPM_SyncRef0 0x10000 /* Sync Reference */
407 #define HDSPM_SyncRef1 0x20000
409 #define HDSPM_SelSyncRef0 (1<<8) /* AutoSync Source */
410 #define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */
411 #define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */
413 #define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync)
415 #define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2)
416 #define HDSPM_wcFreq32 (HDSPM_wc_freq0)
417 #define HDSPM_wcFreq44_1 (HDSPM_wc_freq1)
418 #define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1)
419 #define HDSPM_wcFreq64 (HDSPM_wc_freq2)
420 #define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2)
421 #define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2)
423 #define HDSPM_status1_F_0 0x0400000
424 #define HDSPM_status1_F_1 0x0800000
425 #define HDSPM_status1_F_2 0x1000000
426 #define HDSPM_status1_F_3 0x2000000
427 #define HDSPM_status1_freqMask (HDSPM_status1_F_0|HDSPM_status1_F_1|HDSPM_status1_F_2|HDSPM_status1_F_3)
430 #define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
432 #define HDSPM_SelSyncRef_WORD 0
433 #define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0)
434 #define HDSPM_SelSyncRef_TCO (HDSPM_SelSyncRef1)
435 #define HDSPM_SelSyncRef_SyncIn (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1)
436 #define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
440 For AES32, bits for status, status2 and timecode are different
443 #define HDSPM_AES32_wcLock 0x0200000
444 #define HDSPM_AES32_wcSync 0x0100000
445 #define HDSPM_AES32_wcFreq_bit 22
446 /* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function
448 #define HDSPM_AES32_syncref_bit 16
449 /* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */
451 #define HDSPM_AES32_AUTOSYNC_FROM_WORD 0
452 #define HDSPM_AES32_AUTOSYNC_FROM_AES1 1
453 #define HDSPM_AES32_AUTOSYNC_FROM_AES2 2
454 #define HDSPM_AES32_AUTOSYNC_FROM_AES3 3
455 #define HDSPM_AES32_AUTOSYNC_FROM_AES4 4
456 #define HDSPM_AES32_AUTOSYNC_FROM_AES5 5
457 #define HDSPM_AES32_AUTOSYNC_FROM_AES6 6
458 #define HDSPM_AES32_AUTOSYNC_FROM_AES7 7
459 #define HDSPM_AES32_AUTOSYNC_FROM_AES8 8
460 #define HDSPM_AES32_AUTOSYNC_FROM_NONE 9
463 /* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */
464 #define HDSPM_LockAES 0x80
465 #define HDSPM_LockAES1 0x80
466 #define HDSPM_LockAES2 0x40
467 #define HDSPM_LockAES3 0x20
468 #define HDSPM_LockAES4 0x10
469 #define HDSPM_LockAES5 0x8
470 #define HDSPM_LockAES6 0x4
471 #define HDSPM_LockAES7 0x2
472 #define HDSPM_LockAES8 0x1
475 After windows driver sources, bits 4*i to 4*i+3 give the input frequency on
487 NB: Timecode register doesn't seem to work on AES32 card revision 230
491 #define UNITY_GAIN 32768 /* = 65536/2 */
492 #define MINUS_INFINITY_GAIN 0
494 /* Number of channels for different Speed Modes */
495 #define MADI_SS_CHANNELS 64
496 #define MADI_DS_CHANNELS 32
497 #define MADI_QS_CHANNELS 16
499 #define RAYDAT_SS_CHANNELS 36
500 #define RAYDAT_DS_CHANNELS 20
501 #define RAYDAT_QS_CHANNELS 12
503 #define AIO_IN_SS_CHANNELS 14
504 #define AIO_IN_DS_CHANNELS 10
505 #define AIO_IN_QS_CHANNELS 8
506 #define AIO_OUT_SS_CHANNELS 16
507 #define AIO_OUT_DS_CHANNELS 12
508 #define AIO_OUT_QS_CHANNELS 10
510 #define AES32_CHANNELS 16
512 /* the size of a substream (1 mono data stream) */
513 #define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
514 #define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
516 /* the size of the area we need to allocate for DMA transfers. the
517 size is the same regardless of the number of channels, and
518 also the latency to use.
519 for one direction !!!
521 #define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
522 #define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
524 #define HDSPM_RAYDAT_REV 211
525 #define HDSPM_AIO_REV 212
526 #define HDSPM_MADIFACE_REV 213
528 /* speed factor modes */
529 #define HDSPM_SPEED_SINGLE 0
530 #define HDSPM_SPEED_DOUBLE 1
531 #define HDSPM_SPEED_QUAD 2
533 /* names for speed modes */
534 static char *hdspm_speed_names
[] = { "single", "double", "quad" };
536 static char *texts_autosync_aes_tco
[] = { "Word Clock",
537 "AES1", "AES2", "AES3", "AES4",
538 "AES5", "AES6", "AES7", "AES8",
540 static char *texts_autosync_aes
[] = { "Word Clock",
541 "AES1", "AES2", "AES3", "AES4",
542 "AES5", "AES6", "AES7", "AES8" };
543 static char *texts_autosync_madi_tco
[] = { "Word Clock",
544 "MADI", "TCO", "Sync In" };
545 static char *texts_autosync_madi
[] = { "Word Clock",
548 static char *texts_autosync_raydat_tco
[] = {
550 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
551 "AES", "SPDIF", "TCO", "Sync In"
553 static char *texts_autosync_raydat
[] = {
555 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
556 "AES", "SPDIF", "Sync In"
558 static char *texts_autosync_aio_tco
[] = {
560 "ADAT", "AES", "SPDIF", "TCO", "Sync In"
562 static char *texts_autosync_aio
[] = { "Word Clock",
563 "ADAT", "AES", "SPDIF", "Sync In" };
565 static char *texts_freq
[] = {
578 static char *texts_ports_madi
[] = {
579 "MADI.1", "MADI.2", "MADI.3", "MADI.4", "MADI.5", "MADI.6",
580 "MADI.7", "MADI.8", "MADI.9", "MADI.10", "MADI.11", "MADI.12",
581 "MADI.13", "MADI.14", "MADI.15", "MADI.16", "MADI.17", "MADI.18",
582 "MADI.19", "MADI.20", "MADI.21", "MADI.22", "MADI.23", "MADI.24",
583 "MADI.25", "MADI.26", "MADI.27", "MADI.28", "MADI.29", "MADI.30",
584 "MADI.31", "MADI.32", "MADI.33", "MADI.34", "MADI.35", "MADI.36",
585 "MADI.37", "MADI.38", "MADI.39", "MADI.40", "MADI.41", "MADI.42",
586 "MADI.43", "MADI.44", "MADI.45", "MADI.46", "MADI.47", "MADI.48",
587 "MADI.49", "MADI.50", "MADI.51", "MADI.52", "MADI.53", "MADI.54",
588 "MADI.55", "MADI.56", "MADI.57", "MADI.58", "MADI.59", "MADI.60",
589 "MADI.61", "MADI.62", "MADI.63", "MADI.64",
593 static char *texts_ports_raydat_ss
[] = {
594 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4", "ADAT1.5", "ADAT1.6",
595 "ADAT1.7", "ADAT1.8", "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
596 "ADAT2.5", "ADAT2.6", "ADAT2.7", "ADAT2.8", "ADAT3.1", "ADAT3.2",
597 "ADAT3.3", "ADAT3.4", "ADAT3.5", "ADAT3.6", "ADAT3.7", "ADAT3.8",
598 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4", "ADAT4.5", "ADAT4.6",
599 "ADAT4.7", "ADAT4.8",
604 static char *texts_ports_raydat_ds
[] = {
605 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4",
606 "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
607 "ADAT3.1", "ADAT3.2", "ADAT3.3", "ADAT3.4",
608 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4",
613 static char *texts_ports_raydat_qs
[] = {
614 "ADAT1.1", "ADAT1.2",
615 "ADAT2.1", "ADAT2.2",
616 "ADAT3.1", "ADAT3.2",
617 "ADAT4.1", "ADAT4.2",
623 static char *texts_ports_aio_in_ss
[] = {
624 "Analogue.L", "Analogue.R",
626 "SPDIF.L", "SPDIF.R",
627 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
631 static char *texts_ports_aio_out_ss
[] = {
632 "Analogue.L", "Analogue.R",
634 "SPDIF.L", "SPDIF.R",
635 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
640 static char *texts_ports_aio_in_ds
[] = {
641 "Analogue.L", "Analogue.R",
643 "SPDIF.L", "SPDIF.R",
644 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
647 static char *texts_ports_aio_out_ds
[] = {
648 "Analogue.L", "Analogue.R",
650 "SPDIF.L", "SPDIF.R",
651 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
655 static char *texts_ports_aio_in_qs
[] = {
656 "Analogue.L", "Analogue.R",
658 "SPDIF.L", "SPDIF.R",
659 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
662 static char *texts_ports_aio_out_qs
[] = {
663 "Analogue.L", "Analogue.R",
665 "SPDIF.L", "SPDIF.R",
666 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
670 static char *texts_ports_aes32
[] = {
671 "AES.1", "AES.2", "AES.3", "AES.4", "AES.5", "AES.6", "AES.7",
672 "AES.8", "AES.9.", "AES.10", "AES.11", "AES.12", "AES.13", "AES.14",
676 /* These tables map the ALSA channels 1..N to the channels that we
677 need to use in order to find the relevant channel buffer. RME
678 refers to this kind of mapping as between "the ADAT channel and
679 the DMA channel." We index it using the logical audio channel,
680 and the value is the DMA channel (i.e. channel buffer number)
681 where the data for that channel can be read/written from/to.
684 static char channel_map_unity_ss
[HDSPM_MAX_CHANNELS
] = {
685 0, 1, 2, 3, 4, 5, 6, 7,
686 8, 9, 10, 11, 12, 13, 14, 15,
687 16, 17, 18, 19, 20, 21, 22, 23,
688 24, 25, 26, 27, 28, 29, 30, 31,
689 32, 33, 34, 35, 36, 37, 38, 39,
690 40, 41, 42, 43, 44, 45, 46, 47,
691 48, 49, 50, 51, 52, 53, 54, 55,
692 56, 57, 58, 59, 60, 61, 62, 63
695 static char channel_map_raydat_ss
[HDSPM_MAX_CHANNELS
] = {
696 4, 5, 6, 7, 8, 9, 10, 11, /* ADAT 1 */
697 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT 2 */
698 20, 21, 22, 23, 24, 25, 26, 27, /* ADAT 3 */
699 28, 29, 30, 31, 32, 33, 34, 35, /* ADAT 4 */
703 -1, -1, -1, -1, -1, -1, -1, -1,
704 -1, -1, -1, -1, -1, -1, -1, -1,
705 -1, -1, -1, -1, -1, -1, -1, -1,
708 static char channel_map_raydat_ds
[HDSPM_MAX_CHANNELS
] = {
709 4, 5, 6, 7, /* ADAT 1 */
710 8, 9, 10, 11, /* ADAT 2 */
711 12, 13, 14, 15, /* ADAT 3 */
712 16, 17, 18, 19, /* ADAT 4 */
716 -1, -1, -1, -1, -1, -1, -1, -1,
717 -1, -1, -1, -1, -1, -1, -1, -1,
718 -1, -1, -1, -1, -1, -1, -1, -1,
719 -1, -1, -1, -1, -1, -1, -1, -1,
720 -1, -1, -1, -1, -1, -1, -1, -1,
723 static char channel_map_raydat_qs
[HDSPM_MAX_CHANNELS
] = {
731 -1, -1, -1, -1, -1, -1, -1, -1,
732 -1, -1, -1, -1, -1, -1, -1, -1,
733 -1, -1, -1, -1, -1, -1, -1, -1,
734 -1, -1, -1, -1, -1, -1, -1, -1,
735 -1, -1, -1, -1, -1, -1, -1, -1,
736 -1, -1, -1, -1, -1, -1, -1, -1,
739 static char channel_map_aio_in_ss
[HDSPM_MAX_CHANNELS
] = {
742 10, 11, /* spdif in */
743 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT in */
745 -1, -1, -1, -1, -1, -1, -1, -1,
746 -1, -1, -1, -1, -1, -1, -1, -1,
747 -1, -1, -1, -1, -1, -1, -1, -1,
748 -1, -1, -1, -1, -1, -1, -1, -1,
749 -1, -1, -1, -1, -1, -1, -1, -1,
750 -1, -1, -1, -1, -1, -1, -1, -1,
753 static char channel_map_aio_out_ss
[HDSPM_MAX_CHANNELS
] = {
756 10, 11, /* spdif out */
757 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT out */
758 6, 7, /* phone out */
759 -1, -1, -1, -1, -1, -1, -1, -1,
760 -1, -1, -1, -1, -1, -1, -1, -1,
761 -1, -1, -1, -1, -1, -1, -1, -1,
762 -1, -1, -1, -1, -1, -1, -1, -1,
763 -1, -1, -1, -1, -1, -1, -1, -1,
764 -1, -1, -1, -1, -1, -1, -1, -1,
767 static char channel_map_aio_in_ds
[HDSPM_MAX_CHANNELS
] = {
770 10, 11, /* spdif in */
771 12, 14, 16, 18, /* adat in */
772 -1, -1, -1, -1, -1, -1,
773 -1, -1, -1, -1, -1, -1, -1, -1,
774 -1, -1, -1, -1, -1, -1, -1, -1,
775 -1, -1, -1, -1, -1, -1, -1, -1,
776 -1, -1, -1, -1, -1, -1, -1, -1,
777 -1, -1, -1, -1, -1, -1, -1, -1,
778 -1, -1, -1, -1, -1, -1, -1, -1
781 static char channel_map_aio_out_ds
[HDSPM_MAX_CHANNELS
] = {
784 10, 11, /* spdif out */
785 12, 14, 16, 18, /* adat out */
786 6, 7, /* phone out */
788 -1, -1, -1, -1, -1, -1, -1, -1,
789 -1, -1, -1, -1, -1, -1, -1, -1,
790 -1, -1, -1, -1, -1, -1, -1, -1,
791 -1, -1, -1, -1, -1, -1, -1, -1,
792 -1, -1, -1, -1, -1, -1, -1, -1,
793 -1, -1, -1, -1, -1, -1, -1, -1
796 static char channel_map_aio_in_qs
[HDSPM_MAX_CHANNELS
] = {
799 10, 11, /* spdif in */
800 12, 16, /* adat in */
801 -1, -1, -1, -1, -1, -1, -1, -1,
802 -1, -1, -1, -1, -1, -1, -1, -1,
803 -1, -1, -1, -1, -1, -1, -1, -1,
804 -1, -1, -1, -1, -1, -1, -1, -1,
805 -1, -1, -1, -1, -1, -1, -1, -1,
806 -1, -1, -1, -1, -1, -1, -1, -1,
807 -1, -1, -1, -1, -1, -1, -1, -1
810 static char channel_map_aio_out_qs
[HDSPM_MAX_CHANNELS
] = {
813 10, 11, /* spdif out */
814 12, 16, /* adat out */
815 6, 7, /* phone out */
816 -1, -1, -1, -1, -1, -1,
817 -1, -1, -1, -1, -1, -1, -1, -1,
818 -1, -1, -1, -1, -1, -1, -1, -1,
819 -1, -1, -1, -1, -1, -1, -1, -1,
820 -1, -1, -1, -1, -1, -1, -1, -1,
821 -1, -1, -1, -1, -1, -1, -1, -1,
822 -1, -1, -1, -1, -1, -1, -1, -1
825 static char channel_map_aes32
[HDSPM_MAX_CHANNELS
] = {
826 0, 1, 2, 3, 4, 5, 6, 7,
827 8, 9, 10, 11, 12, 13, 14, 15,
828 -1, -1, -1, -1, -1, -1, -1, -1,
829 -1, -1, -1, -1, -1, -1, -1, -1,
830 -1, -1, -1, -1, -1, -1, -1, -1,
831 -1, -1, -1, -1, -1, -1, -1, -1,
832 -1, -1, -1, -1, -1, -1, -1, -1,
833 -1, -1, -1, -1, -1, -1, -1, -1
839 struct snd_rawmidi
*rmidi
;
840 struct snd_rawmidi_substream
*input
;
841 struct snd_rawmidi_substream
*output
;
842 char istimer
; /* timer in use */
843 struct timer_list timer
;
860 int term
; /* 0 = off, 1 = on */
865 /* only one playback and/or capture stream */
866 struct snd_pcm_substream
*capture_substream
;
867 struct snd_pcm_substream
*playback_substream
;
869 char *card_name
; /* for procinfo */
870 unsigned short firmware_rev
; /* dont know if relevant (yes if AES32)*/
874 int monitor_outs
; /* set up monitoring outs init flag */
876 u32 control_register
; /* cached value */
877 u32 control2_register
; /* cached value */
878 u32 settings_register
;
880 struct hdspm_midi midi
[4];
881 struct tasklet_struct midi_tasklet
;
884 unsigned char ss_in_channels
;
885 unsigned char ds_in_channels
;
886 unsigned char qs_in_channels
;
887 unsigned char ss_out_channels
;
888 unsigned char ds_out_channels
;
889 unsigned char qs_out_channels
;
891 unsigned char max_channels_in
;
892 unsigned char max_channels_out
;
894 signed char *channel_map_in
;
895 signed char *channel_map_out
;
897 signed char *channel_map_in_ss
, *channel_map_in_ds
, *channel_map_in_qs
;
898 signed char *channel_map_out_ss
, *channel_map_out_ds
, *channel_map_out_qs
;
900 char **port_names_in
;
901 char **port_names_out
;
903 char **port_names_in_ss
, **port_names_in_ds
, **port_names_in_qs
;
904 char **port_names_out_ss
, **port_names_out_ds
, **port_names_out_qs
;
906 unsigned char *playback_buffer
; /* suitably aligned address */
907 unsigned char *capture_buffer
; /* suitably aligned address */
909 pid_t capture_pid
; /* process id which uses capture */
910 pid_t playback_pid
; /* process id which uses capture */
911 int running
; /* running status */
913 int last_external_sample_rate
; /* samplerate mystic ... */
914 int last_internal_sample_rate
;
915 int system_sample_rate
;
917 int dev
; /* Hardware vars... */
920 void __iomem
*iobase
;
922 int irq_count
; /* for debug */
925 struct snd_card
*card
; /* one card */
926 struct snd_pcm
*pcm
; /* has one pcm */
927 struct snd_hwdep
*hwdep
; /* and a hwdep for additional ioctl */
928 struct pci_dev
*pci
; /* and an pci info */
931 /* fast alsa mixer */
932 struct snd_kcontrol
*playback_mixer_ctls
[HDSPM_MAX_CHANNELS
];
933 /* but input to much, so not used */
934 struct snd_kcontrol
*input_mixer_ctls
[HDSPM_MAX_CHANNELS
];
935 /* full mixer accessible over mixer ioctl or hwdep-device */
936 struct hdspm_mixer
*mixer
;
938 struct hdspm_tco
*tco
; /* NULL if no TCO detected */
940 char **texts_autosync
;
941 int texts_autosync_items
;
943 cycles_t last_interrupt
;
947 struct hdspm_peak_rms peak_rms
;
951 static DEFINE_PCI_DEVICE_TABLE(snd_hdspm_ids
) = {
953 .vendor
= PCI_VENDOR_ID_XILINX
,
954 .device
= PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI
,
955 .subvendor
= PCI_ANY_ID
,
956 .subdevice
= PCI_ANY_ID
,
963 MODULE_DEVICE_TABLE(pci
, snd_hdspm_ids
);
966 static int snd_hdspm_create_alsa_devices(struct snd_card
*card
,
967 struct hdspm
*hdspm
);
968 static int snd_hdspm_create_pcm(struct snd_card
*card
,
969 struct hdspm
*hdspm
);
971 static inline void snd_hdspm_initialize_midi_flush(struct hdspm
*hdspm
);
972 static int hdspm_update_simple_mixer_controls(struct hdspm
*hdspm
);
973 static int hdspm_autosync_ref(struct hdspm
*hdspm
);
974 static int snd_hdspm_set_defaults(struct hdspm
*hdspm
);
975 static int hdspm_system_clock_mode(struct hdspm
*hdspm
);
976 static void hdspm_set_sgbuf(struct hdspm
*hdspm
,
977 struct snd_pcm_substream
*substream
,
978 unsigned int reg
, int channels
);
980 static inline int HDSPM_bit2freq(int n
)
982 static const int bit2freq_tab
[] = {
983 0, 32000, 44100, 48000, 64000, 88200,
984 96000, 128000, 176400, 192000 };
987 return bit2freq_tab
[n
];
990 /* Write/read to/from HDSPM with Adresses in Bytes
991 not words but only 32Bit writes are allowed */
993 static inline void hdspm_write(struct hdspm
* hdspm
, unsigned int reg
,
996 writel(val
, hdspm
->iobase
+ reg
);
999 static inline unsigned int hdspm_read(struct hdspm
* hdspm
, unsigned int reg
)
1001 return readl(hdspm
->iobase
+ reg
);
1004 /* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
1005 mixer is write only on hardware so we have to cache him for read
1006 each fader is a u32, but uses only the first 16 bit */
1008 static inline int hdspm_read_in_gain(struct hdspm
* hdspm
, unsigned int chan
,
1011 if (chan
>= HDSPM_MIXER_CHANNELS
|| in
>= HDSPM_MIXER_CHANNELS
)
1014 return hdspm
->mixer
->ch
[chan
].in
[in
];
1017 static inline int hdspm_read_pb_gain(struct hdspm
* hdspm
, unsigned int chan
,
1020 if (chan
>= HDSPM_MIXER_CHANNELS
|| pb
>= HDSPM_MIXER_CHANNELS
)
1022 return hdspm
->mixer
->ch
[chan
].pb
[pb
];
1025 static int hdspm_write_in_gain(struct hdspm
*hdspm
, unsigned int chan
,
1026 unsigned int in
, unsigned short data
)
1028 if (chan
>= HDSPM_MIXER_CHANNELS
|| in
>= HDSPM_MIXER_CHANNELS
)
1032 HDSPM_MADI_mixerBase
+
1033 ((in
+ 128 * chan
) * sizeof(u32
)),
1034 (hdspm
->mixer
->ch
[chan
].in
[in
] = data
& 0xFFFF));
1038 static int hdspm_write_pb_gain(struct hdspm
*hdspm
, unsigned int chan
,
1039 unsigned int pb
, unsigned short data
)
1041 if (chan
>= HDSPM_MIXER_CHANNELS
|| pb
>= HDSPM_MIXER_CHANNELS
)
1045 HDSPM_MADI_mixerBase
+
1046 ((64 + pb
+ 128 * chan
) * sizeof(u32
)),
1047 (hdspm
->mixer
->ch
[chan
].pb
[pb
] = data
& 0xFFFF));
1052 /* enable DMA for specific channels, now available for DSP-MADI */
1053 static inline void snd_hdspm_enable_in(struct hdspm
* hdspm
, int i
, int v
)
1055 hdspm_write(hdspm
, HDSPM_inputEnableBase
+ (4 * i
), v
);
1058 static inline void snd_hdspm_enable_out(struct hdspm
* hdspm
, int i
, int v
)
1060 hdspm_write(hdspm
, HDSPM_outputEnableBase
+ (4 * i
), v
);
1063 /* check if same process is writing and reading */
1064 static int snd_hdspm_use_is_exclusive(struct hdspm
*hdspm
)
1066 unsigned long flags
;
1069 spin_lock_irqsave(&hdspm
->lock
, flags
);
1070 if ((hdspm
->playback_pid
!= hdspm
->capture_pid
) &&
1071 (hdspm
->playback_pid
>= 0) && (hdspm
->capture_pid
>= 0)) {
1074 spin_unlock_irqrestore(&hdspm
->lock
, flags
);
1078 /* check for external sample rate */
1079 static int hdspm_external_sample_rate(struct hdspm
*hdspm
)
1081 unsigned int status
, status2
, timecode
;
1082 int syncref
, rate
= 0, rate_bits
;
1084 switch (hdspm
->io_type
) {
1086 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
1087 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1088 timecode
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
1090 syncref
= hdspm_autosync_ref(hdspm
);
1092 if (syncref
== HDSPM_AES32_AUTOSYNC_FROM_WORD
&&
1093 status
& HDSPM_AES32_wcLock
)
1094 return HDSPM_bit2freq((status
>> HDSPM_AES32_wcFreq_bit
) & 0xF);
1096 if (syncref
>= HDSPM_AES32_AUTOSYNC_FROM_AES1
&&
1097 syncref
<= HDSPM_AES32_AUTOSYNC_FROM_AES8
&&
1098 status2
& (HDSPM_LockAES
>>
1099 (syncref
- HDSPM_AES32_AUTOSYNC_FROM_AES1
)))
1100 return HDSPM_bit2freq((timecode
>> (4*(syncref
-HDSPM_AES32_AUTOSYNC_FROM_AES1
))) & 0xF);
1105 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1107 if (!(status
& HDSPM_madiLock
)) {
1108 rate
= 0; /* no lock */
1110 switch (status
& (HDSPM_status1_freqMask
)) {
1111 case HDSPM_status1_F_0
*1:
1112 rate
= 32000; break;
1113 case HDSPM_status1_F_0
*2:
1114 rate
= 44100; break;
1115 case HDSPM_status1_F_0
*3:
1116 rate
= 48000; break;
1117 case HDSPM_status1_F_0
*4:
1118 rate
= 64000; break;
1119 case HDSPM_status1_F_0
*5:
1120 rate
= 88200; break;
1121 case HDSPM_status1_F_0
*6:
1122 rate
= 96000; break;
1123 case HDSPM_status1_F_0
*7:
1124 rate
= 128000; break;
1125 case HDSPM_status1_F_0
*8:
1126 rate
= 176400; break;
1127 case HDSPM_status1_F_0
*9:
1128 rate
= 192000; break;
1139 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
1140 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1143 /* if wordclock has synced freq and wordclock is valid */
1144 if ((status2
& HDSPM_wcLock
) != 0 &&
1145 (status2
& HDSPM_SelSyncRef0
) == 0) {
1147 rate_bits
= status2
& HDSPM_wcFreqMask
;
1150 switch (rate_bits
) {
1151 case HDSPM_wcFreq32
:
1154 case HDSPM_wcFreq44_1
:
1157 case HDSPM_wcFreq48
:
1160 case HDSPM_wcFreq64
:
1163 case HDSPM_wcFreq88_2
:
1166 case HDSPM_wcFreq96
:
1175 /* if rate detected and Syncref is Word than have it,
1176 * word has priority to MADI
1179 (status2
& HDSPM_SelSyncRefMask
) == HDSPM_SelSyncRef_WORD
)
1182 /* maybe a madi input (which is taken if sel sync is madi) */
1183 if (status
& HDSPM_madiLock
) {
1184 rate_bits
= status
& HDSPM_madiFreqMask
;
1186 switch (rate_bits
) {
1187 case HDSPM_madiFreq32
:
1190 case HDSPM_madiFreq44_1
:
1193 case HDSPM_madiFreq48
:
1196 case HDSPM_madiFreq64
:
1199 case HDSPM_madiFreq88_2
:
1202 case HDSPM_madiFreq96
:
1205 case HDSPM_madiFreq128
:
1208 case HDSPM_madiFreq176_4
:
1211 case HDSPM_madiFreq192
:
1219 /* QS and DS rates normally can not be detected
1220 * automatically by the card. Only exception is MADI
1221 * in 96k frame mode.
1223 * So if we read SS values (32 .. 48k), check for
1224 * user-provided DS/QS bits in the control register
1225 * and multiply the base frequency accordingly.
1227 if (rate
<= 48000) {
1228 if (hdspm
->control_register
& HDSPM_QuadSpeed
)
1230 else if (hdspm
->control_register
&
1241 /* return latency in samples per period */
1242 static int hdspm_get_latency(struct hdspm
*hdspm
)
1246 n
= hdspm_decode_latency(hdspm
->control_register
);
1248 /* Special case for new RME cards with 32 samples period size.
1249 * The three latency bits in the control register
1250 * (HDSP_LatencyMask) encode latency values of 64 samples as
1251 * 0, 128 samples as 1 ... 4096 samples as 6. For old cards, 7
1252 * denotes 8192 samples, but on new cards like RayDAT or AIO,
1253 * it corresponds to 32 samples.
1255 if ((7 == n
) && (RayDAT
== hdspm
->io_type
|| AIO
== hdspm
->io_type
))
1258 return 1 << (n
+ 6);
1261 /* Latency function */
1262 static inline void hdspm_compute_period_size(struct hdspm
*hdspm
)
1264 hdspm
->period_bytes
= 4 * hdspm_get_latency(hdspm
);
1268 static snd_pcm_uframes_t
hdspm_hw_pointer(struct hdspm
*hdspm
)
1272 position
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1274 switch (hdspm
->io_type
) {
1277 position
&= HDSPM_BufferPositionMask
;
1278 position
/= 4; /* Bytes per sample */
1281 position
= (position
& HDSPM_BufferID
) ?
1282 (hdspm
->period_bytes
/ 4) : 0;
1289 static inline void hdspm_start_audio(struct hdspm
* s
)
1291 s
->control_register
|= (HDSPM_AudioInterruptEnable
| HDSPM_Start
);
1292 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1295 static inline void hdspm_stop_audio(struct hdspm
* s
)
1297 s
->control_register
&= ~(HDSPM_Start
| HDSPM_AudioInterruptEnable
);
1298 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1301 /* should I silence all or only opened ones ? doit all for first even is 4MB*/
1302 static void hdspm_silence_playback(struct hdspm
*hdspm
)
1305 int n
= hdspm
->period_bytes
;
1306 void *buf
= hdspm
->playback_buffer
;
1311 for (i
= 0; i
< HDSPM_MAX_CHANNELS
; i
++) {
1313 buf
+= HDSPM_CHANNEL_BUFFER_BYTES
;
1317 static int hdspm_set_interrupt_interval(struct hdspm
*s
, unsigned int frames
)
1321 spin_lock_irq(&s
->lock
);
1324 /* Special case for new RME cards like RayDAT/AIO which
1325 * support period sizes of 32 samples. Since latency is
1326 * encoded in the three bits of HDSP_LatencyMask, we can only
1327 * have values from 0 .. 7. While 0 still means 64 samples and
1328 * 6 represents 4096 samples on all cards, 7 represents 8192
1329 * on older cards and 32 samples on new cards.
1331 * In other words, period size in samples is calculated by
1332 * 2^(n+6) with n ranging from 0 .. 7.
1344 s
->control_register
&= ~HDSPM_LatencyMask
;
1345 s
->control_register
|= hdspm_encode_latency(n
);
1347 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1349 hdspm_compute_period_size(s
);
1351 spin_unlock_irq(&s
->lock
);
1356 static u64
hdspm_calc_dds_value(struct hdspm
*hdspm
, u64 period
)
1363 switch (hdspm
->io_type
) {
1366 freq_const
= 110069313433624ULL;
1370 freq_const
= 104857600000000ULL;
1373 freq_const
= 131072000000000ULL;
1380 return div_u64(freq_const
, period
);
1384 static void hdspm_set_dds_value(struct hdspm
*hdspm
, int rate
)
1390 else if (rate
>= 56000)
1393 switch (hdspm
->io_type
) {
1395 n
= 131072000000000ULL; /* 125 MHz */
1399 n
= 110069313433624ULL; /* 105 MHz */
1403 n
= 104857600000000ULL; /* 100 MHz */
1410 n
= div_u64(n
, rate
);
1411 /* n should be less than 2^32 for being written to FREQ register */
1412 snd_BUG_ON(n
>> 32);
1413 hdspm_write(hdspm
, HDSPM_freqReg
, (u32
)n
);
1416 /* dummy set rate lets see what happens */
1417 static int hdspm_set_rate(struct hdspm
* hdspm
, int rate
, int called_internally
)
1422 int current_speed
, target_speed
;
1424 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
1425 it (e.g. during module initialization).
1428 if (!(hdspm
->control_register
& HDSPM_ClockModeMaster
)) {
1431 if (called_internally
) {
1433 /* request from ctl or card initialization
1434 just make a warning an remember setting
1435 for future master mode switching */
1437 snd_printk(KERN_WARNING
"HDSPM: "
1438 "Warning: device is not running "
1439 "as a clock master.\n");
1443 /* hw_param request while in AutoSync mode */
1445 hdspm_external_sample_rate(hdspm
);
1447 if (hdspm_autosync_ref(hdspm
) ==
1448 HDSPM_AUTOSYNC_FROM_NONE
) {
1450 snd_printk(KERN_WARNING
"HDSPM: "
1451 "Detected no Externel Sync \n");
1454 } else if (rate
!= external_freq
) {
1456 snd_printk(KERN_WARNING
"HDSPM: "
1457 "Warning: No AutoSync source for "
1458 "requested rate\n");
1464 current_rate
= hdspm
->system_sample_rate
;
1466 /* Changing between Singe, Double and Quad speed is not
1467 allowed if any substreams are open. This is because such a change
1468 causes a shift in the location of the DMA buffers and a reduction
1469 in the number of available buffers.
1471 Note that a similar but essentially insoluble problem exists for
1472 externally-driven rate changes. All we can do is to flag rate
1473 changes in the read/write routines.
1476 if (current_rate
<= 48000)
1477 current_speed
= HDSPM_SPEED_SINGLE
;
1478 else if (current_rate
<= 96000)
1479 current_speed
= HDSPM_SPEED_DOUBLE
;
1481 current_speed
= HDSPM_SPEED_QUAD
;
1484 target_speed
= HDSPM_SPEED_SINGLE
;
1485 else if (rate
<= 96000)
1486 target_speed
= HDSPM_SPEED_DOUBLE
;
1488 target_speed
= HDSPM_SPEED_QUAD
;
1492 rate_bits
= HDSPM_Frequency32KHz
;
1495 rate_bits
= HDSPM_Frequency44_1KHz
;
1498 rate_bits
= HDSPM_Frequency48KHz
;
1501 rate_bits
= HDSPM_Frequency64KHz
;
1504 rate_bits
= HDSPM_Frequency88_2KHz
;
1507 rate_bits
= HDSPM_Frequency96KHz
;
1510 rate_bits
= HDSPM_Frequency128KHz
;
1513 rate_bits
= HDSPM_Frequency176_4KHz
;
1516 rate_bits
= HDSPM_Frequency192KHz
;
1522 if (current_speed
!= target_speed
1523 && (hdspm
->capture_pid
>= 0 || hdspm
->playback_pid
>= 0)) {
1526 "cannot change from %s speed to %s speed mode "
1527 "(capture PID = %d, playback PID = %d)\n",
1528 hdspm_speed_names
[current_speed
],
1529 hdspm_speed_names
[target_speed
],
1530 hdspm
->capture_pid
, hdspm
->playback_pid
);
1534 hdspm
->control_register
&= ~HDSPM_FrequencyMask
;
1535 hdspm
->control_register
|= rate_bits
;
1536 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
1538 /* For AES32, need to set DDS value in FREQ register
1539 For MADI, also apparently */
1540 hdspm_set_dds_value(hdspm
, rate
);
1542 if (AES32
== hdspm
->io_type
&& rate
!= current_rate
)
1543 hdspm_write(hdspm
, HDSPM_eeprom_wr
, 0);
1545 hdspm
->system_sample_rate
= rate
;
1547 if (rate
<= 48000) {
1548 hdspm
->channel_map_in
= hdspm
->channel_map_in_ss
;
1549 hdspm
->channel_map_out
= hdspm
->channel_map_out_ss
;
1550 hdspm
->max_channels_in
= hdspm
->ss_in_channels
;
1551 hdspm
->max_channels_out
= hdspm
->ss_out_channels
;
1552 hdspm
->port_names_in
= hdspm
->port_names_in_ss
;
1553 hdspm
->port_names_out
= hdspm
->port_names_out_ss
;
1554 } else if (rate
<= 96000) {
1555 hdspm
->channel_map_in
= hdspm
->channel_map_in_ds
;
1556 hdspm
->channel_map_out
= hdspm
->channel_map_out_ds
;
1557 hdspm
->max_channels_in
= hdspm
->ds_in_channels
;
1558 hdspm
->max_channels_out
= hdspm
->ds_out_channels
;
1559 hdspm
->port_names_in
= hdspm
->port_names_in_ds
;
1560 hdspm
->port_names_out
= hdspm
->port_names_out_ds
;
1562 hdspm
->channel_map_in
= hdspm
->channel_map_in_qs
;
1563 hdspm
->channel_map_out
= hdspm
->channel_map_out_qs
;
1564 hdspm
->max_channels_in
= hdspm
->qs_in_channels
;
1565 hdspm
->max_channels_out
= hdspm
->qs_out_channels
;
1566 hdspm
->port_names_in
= hdspm
->port_names_in_qs
;
1567 hdspm
->port_names_out
= hdspm
->port_names_out_qs
;
1576 /* mainly for init to 0 on load */
1577 static void all_in_all_mixer(struct hdspm
* hdspm
, int sgain
)
1582 if (sgain
> UNITY_GAIN
)
1589 for (i
= 0; i
< HDSPM_MIXER_CHANNELS
; i
++)
1590 for (j
= 0; j
< HDSPM_MIXER_CHANNELS
; j
++) {
1591 hdspm_write_in_gain(hdspm
, i
, j
, gain
);
1592 hdspm_write_pb_gain(hdspm
, i
, j
, gain
);
1596 /*----------------------------------------------------------------------------
1598 ----------------------------------------------------------------------------*/
1600 static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm
*hdspm
,
1603 /* the hardware already does the relevant bit-mask with 0xff */
1604 return hdspm_read(hdspm
, hdspm
->midi
[id
].dataIn
);
1607 static inline void snd_hdspm_midi_write_byte (struct hdspm
*hdspm
, int id
,
1610 /* the hardware already does the relevant bit-mask with 0xff */
1611 return hdspm_write(hdspm
, hdspm
->midi
[id
].dataOut
, val
);
1614 static inline int snd_hdspm_midi_input_available (struct hdspm
*hdspm
, int id
)
1616 return hdspm_read(hdspm
, hdspm
->midi
[id
].statusIn
) & 0xFF;
1619 static inline int snd_hdspm_midi_output_possible (struct hdspm
*hdspm
, int id
)
1621 int fifo_bytes_used
;
1623 fifo_bytes_used
= hdspm_read(hdspm
, hdspm
->midi
[id
].statusOut
) & 0xFF;
1625 if (fifo_bytes_used
< 128)
1626 return 128 - fifo_bytes_used
;
1631 static void snd_hdspm_flush_midi_input(struct hdspm
*hdspm
, int id
)
1633 while (snd_hdspm_midi_input_available (hdspm
, id
))
1634 snd_hdspm_midi_read_byte (hdspm
, id
);
1637 static int snd_hdspm_midi_output_write (struct hdspm_midi
*hmidi
)
1639 unsigned long flags
;
1643 unsigned char buf
[128];
1645 /* Output is not interrupt driven */
1647 spin_lock_irqsave (&hmidi
->lock
, flags
);
1648 if (hmidi
->output
&&
1649 !snd_rawmidi_transmit_empty (hmidi
->output
)) {
1650 n_pending
= snd_hdspm_midi_output_possible (hmidi
->hdspm
,
1652 if (n_pending
> 0) {
1653 if (n_pending
> (int)sizeof (buf
))
1654 n_pending
= sizeof (buf
);
1656 to_write
= snd_rawmidi_transmit (hmidi
->output
, buf
,
1659 for (i
= 0; i
< to_write
; ++i
)
1660 snd_hdspm_midi_write_byte (hmidi
->hdspm
,
1666 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1670 static int snd_hdspm_midi_input_read (struct hdspm_midi
*hmidi
)
1672 unsigned char buf
[128]; /* this buffer is designed to match the MIDI
1675 unsigned long flags
;
1679 spin_lock_irqsave (&hmidi
->lock
, flags
);
1680 n_pending
= snd_hdspm_midi_input_available (hmidi
->hdspm
, hmidi
->id
);
1681 if (n_pending
> 0) {
1683 if (n_pending
> (int)sizeof (buf
))
1684 n_pending
= sizeof (buf
);
1685 for (i
= 0; i
< n_pending
; ++i
)
1686 buf
[i
] = snd_hdspm_midi_read_byte (hmidi
->hdspm
,
1689 snd_rawmidi_receive (hmidi
->input
, buf
,
1692 /* flush the MIDI input FIFO */
1694 snd_hdspm_midi_read_byte (hmidi
->hdspm
,
1699 spin_unlock_irqrestore(&hmidi
->lock
, flags
);
1701 spin_lock_irqsave(&hmidi
->hdspm
->lock
, flags
);
1702 hmidi
->hdspm
->control_register
|= hmidi
->ie
;
1703 hdspm_write(hmidi
->hdspm
, HDSPM_controlRegister
,
1704 hmidi
->hdspm
->control_register
);
1705 spin_unlock_irqrestore(&hmidi
->hdspm
->lock
, flags
);
1707 return snd_hdspm_midi_output_write (hmidi
);
1711 snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1713 struct hdspm
*hdspm
;
1714 struct hdspm_midi
*hmidi
;
1715 unsigned long flags
;
1717 hmidi
= substream
->rmidi
->private_data
;
1718 hdspm
= hmidi
->hdspm
;
1720 spin_lock_irqsave (&hdspm
->lock
, flags
);
1722 if (!(hdspm
->control_register
& hmidi
->ie
)) {
1723 snd_hdspm_flush_midi_input (hdspm
, hmidi
->id
);
1724 hdspm
->control_register
|= hmidi
->ie
;
1727 hdspm
->control_register
&= ~hmidi
->ie
;
1730 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
1731 spin_unlock_irqrestore (&hdspm
->lock
, flags
);
1734 static void snd_hdspm_midi_output_timer(unsigned long data
)
1736 struct hdspm_midi
*hmidi
= (struct hdspm_midi
*) data
;
1737 unsigned long flags
;
1739 snd_hdspm_midi_output_write(hmidi
);
1740 spin_lock_irqsave (&hmidi
->lock
, flags
);
1742 /* this does not bump hmidi->istimer, because the
1743 kernel automatically removed the timer when it
1744 expired, and we are now adding it back, thus
1745 leaving istimer wherever it was set before.
1748 if (hmidi
->istimer
) {
1749 hmidi
->timer
.expires
= 1 + jiffies
;
1750 add_timer(&hmidi
->timer
);
1753 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1757 snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1759 struct hdspm_midi
*hmidi
;
1760 unsigned long flags
;
1762 hmidi
= substream
->rmidi
->private_data
;
1763 spin_lock_irqsave (&hmidi
->lock
, flags
);
1765 if (!hmidi
->istimer
) {
1766 init_timer(&hmidi
->timer
);
1767 hmidi
->timer
.function
= snd_hdspm_midi_output_timer
;
1768 hmidi
->timer
.data
= (unsigned long) hmidi
;
1769 hmidi
->timer
.expires
= 1 + jiffies
;
1770 add_timer(&hmidi
->timer
);
1774 if (hmidi
->istimer
&& --hmidi
->istimer
<= 0)
1775 del_timer (&hmidi
->timer
);
1777 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1779 snd_hdspm_midi_output_write(hmidi
);
1782 static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream
*substream
)
1784 struct hdspm_midi
*hmidi
;
1786 hmidi
= substream
->rmidi
->private_data
;
1787 spin_lock_irq (&hmidi
->lock
);
1788 snd_hdspm_flush_midi_input (hmidi
->hdspm
, hmidi
->id
);
1789 hmidi
->input
= substream
;
1790 spin_unlock_irq (&hmidi
->lock
);
1795 static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream
*substream
)
1797 struct hdspm_midi
*hmidi
;
1799 hmidi
= substream
->rmidi
->private_data
;
1800 spin_lock_irq (&hmidi
->lock
);
1801 hmidi
->output
= substream
;
1802 spin_unlock_irq (&hmidi
->lock
);
1807 static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream
*substream
)
1809 struct hdspm_midi
*hmidi
;
1811 snd_hdspm_midi_input_trigger (substream
, 0);
1813 hmidi
= substream
->rmidi
->private_data
;
1814 spin_lock_irq (&hmidi
->lock
);
1815 hmidi
->input
= NULL
;
1816 spin_unlock_irq (&hmidi
->lock
);
1821 static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream
*substream
)
1823 struct hdspm_midi
*hmidi
;
1825 snd_hdspm_midi_output_trigger (substream
, 0);
1827 hmidi
= substream
->rmidi
->private_data
;
1828 spin_lock_irq (&hmidi
->lock
);
1829 hmidi
->output
= NULL
;
1830 spin_unlock_irq (&hmidi
->lock
);
1835 static struct snd_rawmidi_ops snd_hdspm_midi_output
=
1837 .open
= snd_hdspm_midi_output_open
,
1838 .close
= snd_hdspm_midi_output_close
,
1839 .trigger
= snd_hdspm_midi_output_trigger
,
1842 static struct snd_rawmidi_ops snd_hdspm_midi_input
=
1844 .open
= snd_hdspm_midi_input_open
,
1845 .close
= snd_hdspm_midi_input_close
,
1846 .trigger
= snd_hdspm_midi_input_trigger
,
1849 static int snd_hdspm_create_midi(struct snd_card
*card
,
1850 struct hdspm
*hdspm
, int id
)
1855 hdspm
->midi
[id
].id
= id
;
1856 hdspm
->midi
[id
].hdspm
= hdspm
;
1857 spin_lock_init (&hdspm
->midi
[id
].lock
);
1860 if (MADIface
== hdspm
->io_type
) {
1861 /* MIDI-over-MADI on HDSPe MADIface */
1862 hdspm
->midi
[0].dataIn
= HDSPM_midiDataIn2
;
1863 hdspm
->midi
[0].statusIn
= HDSPM_midiStatusIn2
;
1864 hdspm
->midi
[0].dataOut
= HDSPM_midiDataOut2
;
1865 hdspm
->midi
[0].statusOut
= HDSPM_midiStatusOut2
;
1866 hdspm
->midi
[0].ie
= HDSPM_Midi2InterruptEnable
;
1867 hdspm
->midi
[0].irq
= HDSPM_midi2IRQPending
;
1869 hdspm
->midi
[0].dataIn
= HDSPM_midiDataIn0
;
1870 hdspm
->midi
[0].statusIn
= HDSPM_midiStatusIn0
;
1871 hdspm
->midi
[0].dataOut
= HDSPM_midiDataOut0
;
1872 hdspm
->midi
[0].statusOut
= HDSPM_midiStatusOut0
;
1873 hdspm
->midi
[0].ie
= HDSPM_Midi0InterruptEnable
;
1874 hdspm
->midi
[0].irq
= HDSPM_midi0IRQPending
;
1876 } else if (1 == id
) {
1877 hdspm
->midi
[1].dataIn
= HDSPM_midiDataIn1
;
1878 hdspm
->midi
[1].statusIn
= HDSPM_midiStatusIn1
;
1879 hdspm
->midi
[1].dataOut
= HDSPM_midiDataOut1
;
1880 hdspm
->midi
[1].statusOut
= HDSPM_midiStatusOut1
;
1881 hdspm
->midi
[1].ie
= HDSPM_Midi1InterruptEnable
;
1882 hdspm
->midi
[1].irq
= HDSPM_midi1IRQPending
;
1883 } else if ((2 == id
) && (MADI
== hdspm
->io_type
)) {
1884 /* MIDI-over-MADI on HDSPe MADI */
1885 hdspm
->midi
[2].dataIn
= HDSPM_midiDataIn2
;
1886 hdspm
->midi
[2].statusIn
= HDSPM_midiStatusIn2
;
1887 hdspm
->midi
[2].dataOut
= HDSPM_midiDataOut2
;
1888 hdspm
->midi
[2].statusOut
= HDSPM_midiStatusOut2
;
1889 hdspm
->midi
[2].ie
= HDSPM_Midi2InterruptEnable
;
1890 hdspm
->midi
[2].irq
= HDSPM_midi2IRQPending
;
1891 } else if (2 == id
) {
1892 /* TCO MTC, read only */
1893 hdspm
->midi
[2].dataIn
= HDSPM_midiDataIn2
;
1894 hdspm
->midi
[2].statusIn
= HDSPM_midiStatusIn2
;
1895 hdspm
->midi
[2].dataOut
= -1;
1896 hdspm
->midi
[2].statusOut
= -1;
1897 hdspm
->midi
[2].ie
= HDSPM_Midi2InterruptEnable
;
1898 hdspm
->midi
[2].irq
= HDSPM_midi2IRQPendingAES
;
1899 } else if (3 == id
) {
1900 /* TCO MTC on HDSPe MADI */
1901 hdspm
->midi
[3].dataIn
= HDSPM_midiDataIn3
;
1902 hdspm
->midi
[3].statusIn
= HDSPM_midiStatusIn3
;
1903 hdspm
->midi
[3].dataOut
= -1;
1904 hdspm
->midi
[3].statusOut
= -1;
1905 hdspm
->midi
[3].ie
= HDSPM_Midi3InterruptEnable
;
1906 hdspm
->midi
[3].irq
= HDSPM_midi3IRQPending
;
1909 if ((id
< 2) || ((2 == id
) && ((MADI
== hdspm
->io_type
) ||
1910 (MADIface
== hdspm
->io_type
)))) {
1911 if ((id
== 0) && (MADIface
== hdspm
->io_type
)) {
1912 sprintf(buf
, "%s MIDIoverMADI", card
->shortname
);
1913 } else if ((id
== 2) && (MADI
== hdspm
->io_type
)) {
1914 sprintf(buf
, "%s MIDIoverMADI", card
->shortname
);
1916 sprintf(buf
, "%s MIDI %d", card
->shortname
, id
+1);
1918 err
= snd_rawmidi_new(card
, buf
, id
, 1, 1,
1919 &hdspm
->midi
[id
].rmidi
);
1923 sprintf(hdspm
->midi
[id
].rmidi
->name
, "%s MIDI %d",
1925 hdspm
->midi
[id
].rmidi
->private_data
= &hdspm
->midi
[id
];
1927 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1928 SNDRV_RAWMIDI_STREAM_OUTPUT
,
1929 &snd_hdspm_midi_output
);
1930 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1931 SNDRV_RAWMIDI_STREAM_INPUT
,
1932 &snd_hdspm_midi_input
);
1934 hdspm
->midi
[id
].rmidi
->info_flags
|=
1935 SNDRV_RAWMIDI_INFO_OUTPUT
|
1936 SNDRV_RAWMIDI_INFO_INPUT
|
1937 SNDRV_RAWMIDI_INFO_DUPLEX
;
1939 /* TCO MTC, read only */
1940 sprintf(buf
, "%s MTC %d", card
->shortname
, id
+1);
1941 err
= snd_rawmidi_new(card
, buf
, id
, 1, 1,
1942 &hdspm
->midi
[id
].rmidi
);
1946 sprintf(hdspm
->midi
[id
].rmidi
->name
,
1947 "%s MTC %d", card
->id
, id
+1);
1948 hdspm
->midi
[id
].rmidi
->private_data
= &hdspm
->midi
[id
];
1950 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1951 SNDRV_RAWMIDI_STREAM_INPUT
,
1952 &snd_hdspm_midi_input
);
1954 hdspm
->midi
[id
].rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_INPUT
;
1961 static void hdspm_midi_tasklet(unsigned long arg
)
1963 struct hdspm
*hdspm
= (struct hdspm
*)arg
;
1966 while (i
< hdspm
->midiPorts
) {
1967 if (hdspm
->midi
[i
].pending
)
1968 snd_hdspm_midi_input_read(&hdspm
->midi
[i
]);
1975 /*-----------------------------------------------------------------------------
1977 ----------------------------------------------------------------------------*/
1979 /* get the system sample rate which is set */
1983 * Calculate the real sample rate from the
1984 * current DDS value.
1986 static int hdspm_get_system_sample_rate(struct hdspm
*hdspm
)
1988 unsigned int period
, rate
;
1990 period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
1991 rate
= hdspm_calc_dds_value(hdspm
, period
);
1993 if (rate
> 207000) {
1994 /* Unreasonable high sample rate as seen on PCI MADI cards. */
1995 if (0 == hdspm_system_clock_mode(hdspm
)) {
1996 /* master mode, return internal sample rate */
1997 rate
= hdspm
->system_sample_rate
;
1999 /* slave mode, return external sample rate */
2000 rate
= hdspm_external_sample_rate(hdspm
);
2008 #define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
2009 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2012 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2013 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2014 .info = snd_hdspm_info_system_sample_rate, \
2015 .put = snd_hdspm_put_system_sample_rate, \
2016 .get = snd_hdspm_get_system_sample_rate \
2019 static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol
*kcontrol
,
2020 struct snd_ctl_elem_info
*uinfo
)
2022 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2024 uinfo
->value
.integer
.min
= 27000;
2025 uinfo
->value
.integer
.max
= 207000;
2026 uinfo
->value
.integer
.step
= 1;
2031 static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol
*kcontrol
,
2032 struct snd_ctl_elem_value
*
2035 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2037 ucontrol
->value
.integer
.value
[0] = hdspm_get_system_sample_rate(hdspm
);
2041 static int snd_hdspm_put_system_sample_rate(struct snd_kcontrol
*kcontrol
,
2042 struct snd_ctl_elem_value
*
2045 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2047 hdspm_set_dds_value(hdspm
, ucontrol
->value
.enumerated
.item
[0]);
2053 * Returns the WordClock sample rate class for the given card.
2055 static int hdspm_get_wc_sample_rate(struct hdspm
*hdspm
)
2059 switch (hdspm
->io_type
) {
2062 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
2063 return (status
>> 16) & 0xF;
2075 * Returns the TCO sample rate class for the given card.
2077 static int hdspm_get_tco_sample_rate(struct hdspm
*hdspm
)
2082 switch (hdspm
->io_type
) {
2085 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
2086 return (status
>> 20) & 0xF;
2098 * Returns the SYNC_IN sample rate class for the given card.
2100 static int hdspm_get_sync_in_sample_rate(struct hdspm
*hdspm
)
2105 switch (hdspm
->io_type
) {
2108 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
);
2109 return (status
>> 12) & 0xF;
2121 * Returns the sample rate class for input source <idx> for
2122 * 'new style' cards like the AIO and RayDAT.
2124 static int hdspm_get_s1_sample_rate(struct hdspm
*hdspm
, unsigned int idx
)
2126 int status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
);
2128 return (status
>> (idx
*4)) & 0xF;
2133 #define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
2134 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2136 .private_value = xindex, \
2137 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2138 .info = snd_hdspm_info_autosync_sample_rate, \
2139 .get = snd_hdspm_get_autosync_sample_rate \
2143 static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol
*kcontrol
,
2144 struct snd_ctl_elem_info
*uinfo
)
2146 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2148 uinfo
->value
.enumerated
.items
= 10;
2150 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2151 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2152 strcpy(uinfo
->value
.enumerated
.name
,
2153 texts_freq
[uinfo
->value
.enumerated
.item
]);
2158 static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol
*kcontrol
,
2159 struct snd_ctl_elem_value
*
2162 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2164 switch (hdspm
->io_type
) {
2166 switch (kcontrol
->private_value
) {
2168 ucontrol
->value
.enumerated
.item
[0] =
2169 hdspm_get_wc_sample_rate(hdspm
);
2172 ucontrol
->value
.enumerated
.item
[0] =
2173 hdspm_get_tco_sample_rate(hdspm
);
2176 ucontrol
->value
.enumerated
.item
[0] =
2177 hdspm_get_sync_in_sample_rate(hdspm
);
2180 ucontrol
->value
.enumerated
.item
[0] =
2181 hdspm_get_s1_sample_rate(hdspm
,
2182 kcontrol
->private_value
-1);
2187 switch (kcontrol
->private_value
) {
2189 ucontrol
->value
.enumerated
.item
[0] =
2190 hdspm_get_wc_sample_rate(hdspm
);
2193 ucontrol
->value
.enumerated
.item
[0] =
2194 hdspm_get_tco_sample_rate(hdspm
);
2196 case 5: /* SYNC_IN */
2197 ucontrol
->value
.enumerated
.item
[0] =
2198 hdspm_get_sync_in_sample_rate(hdspm
);
2201 ucontrol
->value
.enumerated
.item
[0] =
2202 hdspm_get_s1_sample_rate(hdspm
,
2203 ucontrol
->id
.index
-1);
2209 switch (kcontrol
->private_value
) {
2211 ucontrol
->value
.enumerated
.item
[0] =
2212 hdspm_get_wc_sample_rate(hdspm
);
2215 ucontrol
->value
.enumerated
.item
[0] =
2216 hdspm_get_tco_sample_rate(hdspm
);
2218 case 10: /* SYNC_IN */
2219 ucontrol
->value
.enumerated
.item
[0] =
2220 hdspm_get_sync_in_sample_rate(hdspm
);
2222 default: /* AES1 to AES8 */
2223 ucontrol
->value
.enumerated
.item
[0] =
2224 hdspm_get_s1_sample_rate(hdspm
,
2225 kcontrol
->private_value
-1);
2233 int rate
= hdspm_external_sample_rate(hdspm
);
2234 int i
, selected_rate
= 0;
2235 for (i
= 1; i
< 10; i
++)
2236 if (HDSPM_bit2freq(i
) == rate
) {
2240 ucontrol
->value
.enumerated
.item
[0] = selected_rate
;
2252 #define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
2253 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2256 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2257 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2258 .info = snd_hdspm_info_system_clock_mode, \
2259 .get = snd_hdspm_get_system_clock_mode, \
2260 .put = snd_hdspm_put_system_clock_mode, \
2265 * Returns the system clock mode for the given card.
2266 * @returns 0 - master, 1 - slave
2268 static int hdspm_system_clock_mode(struct hdspm
*hdspm
)
2270 switch (hdspm
->io_type
) {
2273 if (hdspm
->settings_register
& HDSPM_c0Master
)
2278 if (hdspm
->control_register
& HDSPM_ClockModeMaster
)
2287 * Sets the system clock mode.
2288 * @param mode 0 - master, 1 - slave
2290 static void hdspm_set_system_clock_mode(struct hdspm
*hdspm
, int mode
)
2292 switch (hdspm
->io_type
) {
2296 hdspm
->settings_register
|= HDSPM_c0Master
;
2298 hdspm
->settings_register
&= ~HDSPM_c0Master
;
2300 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
2305 hdspm
->control_register
|= HDSPM_ClockModeMaster
;
2307 hdspm
->control_register
&= ~HDSPM_ClockModeMaster
;
2309 hdspm_write(hdspm
, HDSPM_controlRegister
,
2310 hdspm
->control_register
);
2315 static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2316 struct snd_ctl_elem_info
*uinfo
)
2318 static char *texts
[] = { "Master", "AutoSync" };
2320 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2322 uinfo
->value
.enumerated
.items
= 2;
2323 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2324 uinfo
->value
.enumerated
.item
=
2325 uinfo
->value
.enumerated
.items
- 1;
2326 strcpy(uinfo
->value
.enumerated
.name
,
2327 texts
[uinfo
->value
.enumerated
.item
]);
2331 static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2332 struct snd_ctl_elem_value
*ucontrol
)
2334 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2336 ucontrol
->value
.enumerated
.item
[0] = hdspm_system_clock_mode(hdspm
);
2340 static int snd_hdspm_put_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2341 struct snd_ctl_elem_value
*ucontrol
)
2343 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2346 if (!snd_hdspm_use_is_exclusive(hdspm
))
2349 val
= ucontrol
->value
.enumerated
.item
[0];
2355 hdspm_set_system_clock_mode(hdspm
, val
);
2361 #define HDSPM_INTERNAL_CLOCK(xname, xindex) \
2362 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2365 .info = snd_hdspm_info_clock_source, \
2366 .get = snd_hdspm_get_clock_source, \
2367 .put = snd_hdspm_put_clock_source \
2371 static int hdspm_clock_source(struct hdspm
* hdspm
)
2373 switch (hdspm
->system_sample_rate
) {
2374 case 32000: return 0;
2375 case 44100: return 1;
2376 case 48000: return 2;
2377 case 64000: return 3;
2378 case 88200: return 4;
2379 case 96000: return 5;
2380 case 128000: return 6;
2381 case 176400: return 7;
2382 case 192000: return 8;
2388 static int hdspm_set_clock_source(struct hdspm
* hdspm
, int mode
)
2393 rate
= 32000; break;
2395 rate
= 44100; break;
2397 rate
= 48000; break;
2399 rate
= 64000; break;
2401 rate
= 88200; break;
2403 rate
= 96000; break;
2405 rate
= 128000; break;
2407 rate
= 176400; break;
2409 rate
= 192000; break;
2413 hdspm_set_rate(hdspm
, rate
, 1);
2417 static int snd_hdspm_info_clock_source(struct snd_kcontrol
*kcontrol
,
2418 struct snd_ctl_elem_info
*uinfo
)
2420 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2422 uinfo
->value
.enumerated
.items
= 9;
2424 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2425 uinfo
->value
.enumerated
.item
=
2426 uinfo
->value
.enumerated
.items
- 1;
2428 strcpy(uinfo
->value
.enumerated
.name
,
2429 texts_freq
[uinfo
->value
.enumerated
.item
+1]);
2434 static int snd_hdspm_get_clock_source(struct snd_kcontrol
*kcontrol
,
2435 struct snd_ctl_elem_value
*ucontrol
)
2437 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2439 ucontrol
->value
.enumerated
.item
[0] = hdspm_clock_source(hdspm
);
2443 static int snd_hdspm_put_clock_source(struct snd_kcontrol
*kcontrol
,
2444 struct snd_ctl_elem_value
*ucontrol
)
2446 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2450 if (!snd_hdspm_use_is_exclusive(hdspm
))
2452 val
= ucontrol
->value
.enumerated
.item
[0];
2457 spin_lock_irq(&hdspm
->lock
);
2458 if (val
!= hdspm_clock_source(hdspm
))
2459 change
= (hdspm_set_clock_source(hdspm
, val
) == 0) ? 1 : 0;
2462 spin_unlock_irq(&hdspm
->lock
);
2467 #define HDSPM_PREF_SYNC_REF(xname, xindex) \
2468 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2471 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2472 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2473 .info = snd_hdspm_info_pref_sync_ref, \
2474 .get = snd_hdspm_get_pref_sync_ref, \
2475 .put = snd_hdspm_put_pref_sync_ref \
2480 * Returns the current preferred sync reference setting.
2481 * The semantics of the return value are depending on the
2482 * card, please see the comments for clarification.
2484 static int hdspm_pref_sync_ref(struct hdspm
* hdspm
)
2486 switch (hdspm
->io_type
) {
2488 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2489 case 0: return 0; /* WC */
2490 case HDSPM_SyncRef0
: return 1; /* AES 1 */
2491 case HDSPM_SyncRef1
: return 2; /* AES 2 */
2492 case HDSPM_SyncRef1
+HDSPM_SyncRef0
: return 3; /* AES 3 */
2493 case HDSPM_SyncRef2
: return 4; /* AES 4 */
2494 case HDSPM_SyncRef2
+HDSPM_SyncRef0
: return 5; /* AES 5 */
2495 case HDSPM_SyncRef2
+HDSPM_SyncRef1
: return 6; /* AES 6 */
2496 case HDSPM_SyncRef2
+HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2497 return 7; /* AES 7 */
2498 case HDSPM_SyncRef3
: return 8; /* AES 8 */
2499 case HDSPM_SyncRef3
+HDSPM_SyncRef0
: return 9; /* TCO */
2506 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2507 case 0: return 0; /* WC */
2508 case HDSPM_SyncRef0
: return 1; /* MADI */
2509 case HDSPM_SyncRef1
: return 2; /* TCO */
2510 case HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2511 return 3; /* SYNC_IN */
2514 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2515 case 0: return 0; /* WC */
2516 case HDSPM_SyncRef0
: return 1; /* MADI */
2517 case HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2518 return 2; /* SYNC_IN */
2525 switch ((hdspm
->settings_register
&
2526 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2527 case 0: return 0; /* WC */
2528 case 3: return 1; /* ADAT 1 */
2529 case 4: return 2; /* ADAT 2 */
2530 case 5: return 3; /* ADAT 3 */
2531 case 6: return 4; /* ADAT 4 */
2532 case 1: return 5; /* AES */
2533 case 2: return 6; /* SPDIF */
2534 case 9: return 7; /* TCO */
2535 case 10: return 8; /* SYNC_IN */
2538 switch ((hdspm
->settings_register
&
2539 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2540 case 0: return 0; /* WC */
2541 case 3: return 1; /* ADAT 1 */
2542 case 4: return 2; /* ADAT 2 */
2543 case 5: return 3; /* ADAT 3 */
2544 case 6: return 4; /* ADAT 4 */
2545 case 1: return 5; /* AES */
2546 case 2: return 6; /* SPDIF */
2547 case 10: return 7; /* SYNC_IN */
2555 switch ((hdspm
->settings_register
&
2556 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2557 case 0: return 0; /* WC */
2558 case 3: return 1; /* ADAT */
2559 case 1: return 2; /* AES */
2560 case 2: return 3; /* SPDIF */
2561 case 9: return 4; /* TCO */
2562 case 10: return 5; /* SYNC_IN */
2565 switch ((hdspm
->settings_register
&
2566 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2567 case 0: return 0; /* WC */
2568 case 3: return 1; /* ADAT */
2569 case 1: return 2; /* AES */
2570 case 2: return 3; /* SPDIF */
2571 case 10: return 4; /* SYNC_IN */
2583 * Set the preferred sync reference to <pref>. The semantics
2584 * of <pref> are depending on the card type, see the comments
2585 * for clarification.
2587 static int hdspm_set_pref_sync_ref(struct hdspm
* hdspm
, int pref
)
2591 switch (hdspm
->io_type
) {
2593 hdspm
->control_register
&= ~HDSPM_SyncRefMask
;
2598 hdspm
->control_register
|= HDSPM_SyncRef0
;
2601 hdspm
->control_register
|= HDSPM_SyncRef1
;
2604 hdspm
->control_register
|=
2605 HDSPM_SyncRef1
+HDSPM_SyncRef0
;
2608 hdspm
->control_register
|= HDSPM_SyncRef2
;
2611 hdspm
->control_register
|=
2612 HDSPM_SyncRef2
+HDSPM_SyncRef0
;
2615 hdspm
->control_register
|=
2616 HDSPM_SyncRef2
+HDSPM_SyncRef1
;
2619 hdspm
->control_register
|=
2620 HDSPM_SyncRef2
+HDSPM_SyncRef1
+HDSPM_SyncRef0
;
2623 hdspm
->control_register
|= HDSPM_SyncRef3
;
2626 hdspm
->control_register
|=
2627 HDSPM_SyncRef3
+HDSPM_SyncRef0
;
2637 hdspm
->control_register
&= ~HDSPM_SyncRefMask
;
2643 hdspm
->control_register
|= HDSPM_SyncRef0
;
2646 hdspm
->control_register
|= HDSPM_SyncRef1
;
2648 case 3: /* SYNC_IN */
2649 hdspm
->control_register
|=
2650 HDSPM_SyncRef0
+HDSPM_SyncRef1
;
2660 hdspm
->control_register
|= HDSPM_SyncRef0
;
2662 case 2: /* SYNC_IN */
2663 hdspm
->control_register
|=
2664 HDSPM_SyncRef0
+HDSPM_SyncRef1
;
2676 case 0: p
= 0; break; /* WC */
2677 case 1: p
= 3; break; /* ADAT 1 */
2678 case 2: p
= 4; break; /* ADAT 2 */
2679 case 3: p
= 5; break; /* ADAT 3 */
2680 case 4: p
= 6; break; /* ADAT 4 */
2681 case 5: p
= 1; break; /* AES */
2682 case 6: p
= 2; break; /* SPDIF */
2683 case 7: p
= 9; break; /* TCO */
2684 case 8: p
= 10; break; /* SYNC_IN */
2689 case 0: p
= 0; break; /* WC */
2690 case 1: p
= 3; break; /* ADAT 1 */
2691 case 2: p
= 4; break; /* ADAT 2 */
2692 case 3: p
= 5; break; /* ADAT 3 */
2693 case 4: p
= 6; break; /* ADAT 4 */
2694 case 5: p
= 1; break; /* AES */
2695 case 6: p
= 2; break; /* SPDIF */
2696 case 7: p
= 10; break; /* SYNC_IN */
2705 case 0: p
= 0; break; /* WC */
2706 case 1: p
= 3; break; /* ADAT */
2707 case 2: p
= 1; break; /* AES */
2708 case 3: p
= 2; break; /* SPDIF */
2709 case 4: p
= 9; break; /* TCO */
2710 case 5: p
= 10; break; /* SYNC_IN */
2715 case 0: p
= 0; break; /* WC */
2716 case 1: p
= 3; break; /* ADAT */
2717 case 2: p
= 1; break; /* AES */
2718 case 3: p
= 2; break; /* SPDIF */
2719 case 4: p
= 10; break; /* SYNC_IN */
2726 switch (hdspm
->io_type
) {
2729 hdspm
->settings_register
&= ~HDSPM_c0_SyncRefMask
;
2730 hdspm
->settings_register
|= HDSPM_c0_SyncRef0
* p
;
2731 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
2737 hdspm_write(hdspm
, HDSPM_controlRegister
,
2738 hdspm
->control_register
);
2745 static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2746 struct snd_ctl_elem_info
*uinfo
)
2748 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2750 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2752 uinfo
->value
.enumerated
.items
= hdspm
->texts_autosync_items
;
2754 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2755 uinfo
->value
.enumerated
.item
=
2756 uinfo
->value
.enumerated
.items
- 1;
2758 strcpy(uinfo
->value
.enumerated
.name
,
2759 hdspm
->texts_autosync
[uinfo
->value
.enumerated
.item
]);
2764 static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2765 struct snd_ctl_elem_value
*ucontrol
)
2767 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2768 int psf
= hdspm_pref_sync_ref(hdspm
);
2771 ucontrol
->value
.enumerated
.item
[0] = psf
;
2778 static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2779 struct snd_ctl_elem_value
*ucontrol
)
2781 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2782 int val
, change
= 0;
2784 if (!snd_hdspm_use_is_exclusive(hdspm
))
2787 val
= ucontrol
->value
.enumerated
.item
[0];
2791 else if (val
>= hdspm
->texts_autosync_items
)
2792 val
= hdspm
->texts_autosync_items
-1;
2794 spin_lock_irq(&hdspm
->lock
);
2795 if (val
!= hdspm_pref_sync_ref(hdspm
))
2796 change
= (0 == hdspm_set_pref_sync_ref(hdspm
, val
)) ? 1 : 0;
2798 spin_unlock_irq(&hdspm
->lock
);
2803 #define HDSPM_AUTOSYNC_REF(xname, xindex) \
2804 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2807 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2808 .info = snd_hdspm_info_autosync_ref, \
2809 .get = snd_hdspm_get_autosync_ref, \
2812 static int hdspm_autosync_ref(struct hdspm
*hdspm
)
2814 if (AES32
== hdspm
->io_type
) {
2815 unsigned int status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
2816 unsigned int syncref
=
2817 (status
>> HDSPM_AES32_syncref_bit
) & 0xF;
2819 return HDSPM_AES32_AUTOSYNC_FROM_WORD
;
2822 return HDSPM_AES32_AUTOSYNC_FROM_NONE
;
2823 } else if (MADI
== hdspm
->io_type
) {
2824 /* This looks at the autosync selected sync reference */
2825 unsigned int status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
2827 switch (status2
& HDSPM_SelSyncRefMask
) {
2828 case HDSPM_SelSyncRef_WORD
:
2829 return HDSPM_AUTOSYNC_FROM_WORD
;
2830 case HDSPM_SelSyncRef_MADI
:
2831 return HDSPM_AUTOSYNC_FROM_MADI
;
2832 case HDSPM_SelSyncRef_TCO
:
2833 return HDSPM_AUTOSYNC_FROM_TCO
;
2834 case HDSPM_SelSyncRef_SyncIn
:
2835 return HDSPM_AUTOSYNC_FROM_SYNC_IN
;
2836 case HDSPM_SelSyncRef_NVALID
:
2837 return HDSPM_AUTOSYNC_FROM_NONE
;
2847 static int snd_hdspm_info_autosync_ref(struct snd_kcontrol
*kcontrol
,
2848 struct snd_ctl_elem_info
*uinfo
)
2850 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2852 if (AES32
== hdspm
->io_type
) {
2853 static char *texts
[] = { "WordClock", "AES1", "AES2", "AES3",
2854 "AES4", "AES5", "AES6", "AES7", "AES8", "None"};
2856 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2858 uinfo
->value
.enumerated
.items
= 10;
2859 if (uinfo
->value
.enumerated
.item
>=
2860 uinfo
->value
.enumerated
.items
)
2861 uinfo
->value
.enumerated
.item
=
2862 uinfo
->value
.enumerated
.items
- 1;
2863 strcpy(uinfo
->value
.enumerated
.name
,
2864 texts
[uinfo
->value
.enumerated
.item
]);
2865 } else if (MADI
== hdspm
->io_type
) {
2866 static char *texts
[] = {"Word Clock", "MADI", "TCO",
2867 "Sync In", "None" };
2869 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2871 uinfo
->value
.enumerated
.items
= 5;
2872 if (uinfo
->value
.enumerated
.item
>=
2873 uinfo
->value
.enumerated
.items
)
2874 uinfo
->value
.enumerated
.item
=
2875 uinfo
->value
.enumerated
.items
- 1;
2876 strcpy(uinfo
->value
.enumerated
.name
,
2877 texts
[uinfo
->value
.enumerated
.item
]);
2882 static int snd_hdspm_get_autosync_ref(struct snd_kcontrol
*kcontrol
,
2883 struct snd_ctl_elem_value
*ucontrol
)
2885 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2887 ucontrol
->value
.enumerated
.item
[0] = hdspm_autosync_ref(hdspm
);
2891 #define HDSPM_TOGGLE_SETTING(xname, xindex) \
2892 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2894 .private_value = xindex, \
2895 .info = snd_hdspm_info_toggle_setting, \
2896 .get = snd_hdspm_get_toggle_setting, \
2897 .put = snd_hdspm_put_toggle_setting \
2900 static int hdspm_toggle_setting(struct hdspm
*hdspm
, u32 regmask
)
2902 return (hdspm
->control_register
& regmask
) ? 1 : 0;
2905 static int hdspm_set_toggle_setting(struct hdspm
*hdspm
, u32 regmask
, int out
)
2908 hdspm
->control_register
|= regmask
;
2910 hdspm
->control_register
&= ~regmask
;
2911 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
2916 #define snd_hdspm_info_toggle_setting snd_ctl_boolean_mono_info
2918 static int snd_hdspm_get_toggle_setting(struct snd_kcontrol
*kcontrol
,
2919 struct snd_ctl_elem_value
*ucontrol
)
2921 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2922 u32 regmask
= kcontrol
->private_value
;
2924 spin_lock_irq(&hdspm
->lock
);
2925 ucontrol
->value
.integer
.value
[0] = hdspm_toggle_setting(hdspm
, regmask
);
2926 spin_unlock_irq(&hdspm
->lock
);
2930 static int snd_hdspm_put_toggle_setting(struct snd_kcontrol
*kcontrol
,
2931 struct snd_ctl_elem_value
*ucontrol
)
2933 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2934 u32 regmask
= kcontrol
->private_value
;
2938 if (!snd_hdspm_use_is_exclusive(hdspm
))
2940 val
= ucontrol
->value
.integer
.value
[0] & 1;
2941 spin_lock_irq(&hdspm
->lock
);
2942 change
= (int) val
!= hdspm_toggle_setting(hdspm
, regmask
);
2943 hdspm_set_toggle_setting(hdspm
, regmask
, val
);
2944 spin_unlock_irq(&hdspm
->lock
);
2948 #define HDSPM_INPUT_SELECT(xname, xindex) \
2949 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2952 .info = snd_hdspm_info_input_select, \
2953 .get = snd_hdspm_get_input_select, \
2954 .put = snd_hdspm_put_input_select \
2957 static int hdspm_input_select(struct hdspm
* hdspm
)
2959 return (hdspm
->control_register
& HDSPM_InputSelect0
) ? 1 : 0;
2962 static int hdspm_set_input_select(struct hdspm
* hdspm
, int out
)
2965 hdspm
->control_register
|= HDSPM_InputSelect0
;
2967 hdspm
->control_register
&= ~HDSPM_InputSelect0
;
2968 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
2973 static int snd_hdspm_info_input_select(struct snd_kcontrol
*kcontrol
,
2974 struct snd_ctl_elem_info
*uinfo
)
2976 static char *texts
[] = { "optical", "coaxial" };
2978 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2980 uinfo
->value
.enumerated
.items
= 2;
2982 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2983 uinfo
->value
.enumerated
.item
=
2984 uinfo
->value
.enumerated
.items
- 1;
2985 strcpy(uinfo
->value
.enumerated
.name
,
2986 texts
[uinfo
->value
.enumerated
.item
]);
2991 static int snd_hdspm_get_input_select(struct snd_kcontrol
*kcontrol
,
2992 struct snd_ctl_elem_value
*ucontrol
)
2994 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2996 spin_lock_irq(&hdspm
->lock
);
2997 ucontrol
->value
.enumerated
.item
[0] = hdspm_input_select(hdspm
);
2998 spin_unlock_irq(&hdspm
->lock
);
3002 static int snd_hdspm_put_input_select(struct snd_kcontrol
*kcontrol
,
3003 struct snd_ctl_elem_value
*ucontrol
)
3005 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3009 if (!snd_hdspm_use_is_exclusive(hdspm
))
3011 val
= ucontrol
->value
.integer
.value
[0] & 1;
3012 spin_lock_irq(&hdspm
->lock
);
3013 change
= (int) val
!= hdspm_input_select(hdspm
);
3014 hdspm_set_input_select(hdspm
, val
);
3015 spin_unlock_irq(&hdspm
->lock
);
3020 #define HDSPM_DS_WIRE(xname, xindex) \
3021 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3024 .info = snd_hdspm_info_ds_wire, \
3025 .get = snd_hdspm_get_ds_wire, \
3026 .put = snd_hdspm_put_ds_wire \
3029 static int hdspm_ds_wire(struct hdspm
* hdspm
)
3031 return (hdspm
->control_register
& HDSPM_DS_DoubleWire
) ? 1 : 0;
3034 static int hdspm_set_ds_wire(struct hdspm
* hdspm
, int ds
)
3037 hdspm
->control_register
|= HDSPM_DS_DoubleWire
;
3039 hdspm
->control_register
&= ~HDSPM_DS_DoubleWire
;
3040 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3045 static int snd_hdspm_info_ds_wire(struct snd_kcontrol
*kcontrol
,
3046 struct snd_ctl_elem_info
*uinfo
)
3048 static char *texts
[] = { "Single", "Double" };
3050 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3052 uinfo
->value
.enumerated
.items
= 2;
3054 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3055 uinfo
->value
.enumerated
.item
=
3056 uinfo
->value
.enumerated
.items
- 1;
3057 strcpy(uinfo
->value
.enumerated
.name
,
3058 texts
[uinfo
->value
.enumerated
.item
]);
3063 static int snd_hdspm_get_ds_wire(struct snd_kcontrol
*kcontrol
,
3064 struct snd_ctl_elem_value
*ucontrol
)
3066 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3068 spin_lock_irq(&hdspm
->lock
);
3069 ucontrol
->value
.enumerated
.item
[0] = hdspm_ds_wire(hdspm
);
3070 spin_unlock_irq(&hdspm
->lock
);
3074 static int snd_hdspm_put_ds_wire(struct snd_kcontrol
*kcontrol
,
3075 struct snd_ctl_elem_value
*ucontrol
)
3077 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3081 if (!snd_hdspm_use_is_exclusive(hdspm
))
3083 val
= ucontrol
->value
.integer
.value
[0] & 1;
3084 spin_lock_irq(&hdspm
->lock
);
3085 change
= (int) val
!= hdspm_ds_wire(hdspm
);
3086 hdspm_set_ds_wire(hdspm
, val
);
3087 spin_unlock_irq(&hdspm
->lock
);
3092 #define HDSPM_QS_WIRE(xname, xindex) \
3093 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3096 .info = snd_hdspm_info_qs_wire, \
3097 .get = snd_hdspm_get_qs_wire, \
3098 .put = snd_hdspm_put_qs_wire \
3101 static int hdspm_qs_wire(struct hdspm
* hdspm
)
3103 if (hdspm
->control_register
& HDSPM_QS_DoubleWire
)
3105 if (hdspm
->control_register
& HDSPM_QS_QuadWire
)
3110 static int hdspm_set_qs_wire(struct hdspm
* hdspm
, int mode
)
3112 hdspm
->control_register
&= ~(HDSPM_QS_DoubleWire
| HDSPM_QS_QuadWire
);
3117 hdspm
->control_register
|= HDSPM_QS_DoubleWire
;
3120 hdspm
->control_register
|= HDSPM_QS_QuadWire
;
3123 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3128 static int snd_hdspm_info_qs_wire(struct snd_kcontrol
*kcontrol
,
3129 struct snd_ctl_elem_info
*uinfo
)
3131 static char *texts
[] = { "Single", "Double", "Quad" };
3133 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3135 uinfo
->value
.enumerated
.items
= 3;
3137 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3138 uinfo
->value
.enumerated
.item
=
3139 uinfo
->value
.enumerated
.items
- 1;
3140 strcpy(uinfo
->value
.enumerated
.name
,
3141 texts
[uinfo
->value
.enumerated
.item
]);
3146 static int snd_hdspm_get_qs_wire(struct snd_kcontrol
*kcontrol
,
3147 struct snd_ctl_elem_value
*ucontrol
)
3149 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3151 spin_lock_irq(&hdspm
->lock
);
3152 ucontrol
->value
.enumerated
.item
[0] = hdspm_qs_wire(hdspm
);
3153 spin_unlock_irq(&hdspm
->lock
);
3157 static int snd_hdspm_put_qs_wire(struct snd_kcontrol
*kcontrol
,
3158 struct snd_ctl_elem_value
*ucontrol
)
3160 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3164 if (!snd_hdspm_use_is_exclusive(hdspm
))
3166 val
= ucontrol
->value
.integer
.value
[0];
3171 spin_lock_irq(&hdspm
->lock
);
3172 change
= val
!= hdspm_qs_wire(hdspm
);
3173 hdspm_set_qs_wire(hdspm
, val
);
3174 spin_unlock_irq(&hdspm
->lock
);
3178 #define HDSPM_MADI_SPEEDMODE(xname, xindex) \
3179 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3182 .info = snd_hdspm_info_madi_speedmode, \
3183 .get = snd_hdspm_get_madi_speedmode, \
3184 .put = snd_hdspm_put_madi_speedmode \
3187 static int hdspm_madi_speedmode(struct hdspm
*hdspm
)
3189 if (hdspm
->control_register
& HDSPM_QuadSpeed
)
3191 if (hdspm
->control_register
& HDSPM_DoubleSpeed
)
3196 static int hdspm_set_madi_speedmode(struct hdspm
*hdspm
, int mode
)
3198 hdspm
->control_register
&= ~(HDSPM_DoubleSpeed
| HDSPM_QuadSpeed
);
3203 hdspm
->control_register
|= HDSPM_DoubleSpeed
;
3206 hdspm
->control_register
|= HDSPM_QuadSpeed
;
3209 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3214 static int snd_hdspm_info_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3215 struct snd_ctl_elem_info
*uinfo
)
3217 static char *texts
[] = { "Single", "Double", "Quad" };
3219 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3221 uinfo
->value
.enumerated
.items
= 3;
3223 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3224 uinfo
->value
.enumerated
.item
=
3225 uinfo
->value
.enumerated
.items
- 1;
3226 strcpy(uinfo
->value
.enumerated
.name
,
3227 texts
[uinfo
->value
.enumerated
.item
]);
3232 static int snd_hdspm_get_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3233 struct snd_ctl_elem_value
*ucontrol
)
3235 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3237 spin_lock_irq(&hdspm
->lock
);
3238 ucontrol
->value
.enumerated
.item
[0] = hdspm_madi_speedmode(hdspm
);
3239 spin_unlock_irq(&hdspm
->lock
);
3243 static int snd_hdspm_put_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3244 struct snd_ctl_elem_value
*ucontrol
)
3246 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3250 if (!snd_hdspm_use_is_exclusive(hdspm
))
3252 val
= ucontrol
->value
.integer
.value
[0];
3257 spin_lock_irq(&hdspm
->lock
);
3258 change
= val
!= hdspm_madi_speedmode(hdspm
);
3259 hdspm_set_madi_speedmode(hdspm
, val
);
3260 spin_unlock_irq(&hdspm
->lock
);
3264 #define HDSPM_MIXER(xname, xindex) \
3265 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
3269 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3270 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3271 .info = snd_hdspm_info_mixer, \
3272 .get = snd_hdspm_get_mixer, \
3273 .put = snd_hdspm_put_mixer \
3276 static int snd_hdspm_info_mixer(struct snd_kcontrol
*kcontrol
,
3277 struct snd_ctl_elem_info
*uinfo
)
3279 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3281 uinfo
->value
.integer
.min
= 0;
3282 uinfo
->value
.integer
.max
= 65535;
3283 uinfo
->value
.integer
.step
= 1;
3287 static int snd_hdspm_get_mixer(struct snd_kcontrol
*kcontrol
,
3288 struct snd_ctl_elem_value
*ucontrol
)
3290 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3294 source
= ucontrol
->value
.integer
.value
[0];
3297 else if (source
>= 2 * HDSPM_MAX_CHANNELS
)
3298 source
= 2 * HDSPM_MAX_CHANNELS
- 1;
3300 destination
= ucontrol
->value
.integer
.value
[1];
3301 if (destination
< 0)
3303 else if (destination
>= HDSPM_MAX_CHANNELS
)
3304 destination
= HDSPM_MAX_CHANNELS
- 1;
3306 spin_lock_irq(&hdspm
->lock
);
3307 if (source
>= HDSPM_MAX_CHANNELS
)
3308 ucontrol
->value
.integer
.value
[2] =
3309 hdspm_read_pb_gain(hdspm
, destination
,
3310 source
- HDSPM_MAX_CHANNELS
);
3312 ucontrol
->value
.integer
.value
[2] =
3313 hdspm_read_in_gain(hdspm
, destination
, source
);
3315 spin_unlock_irq(&hdspm
->lock
);
3320 static int snd_hdspm_put_mixer(struct snd_kcontrol
*kcontrol
,
3321 struct snd_ctl_elem_value
*ucontrol
)
3323 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3329 if (!snd_hdspm_use_is_exclusive(hdspm
))
3332 source
= ucontrol
->value
.integer
.value
[0];
3333 destination
= ucontrol
->value
.integer
.value
[1];
3335 if (source
< 0 || source
>= 2 * HDSPM_MAX_CHANNELS
)
3337 if (destination
< 0 || destination
>= HDSPM_MAX_CHANNELS
)
3340 gain
= ucontrol
->value
.integer
.value
[2];
3342 spin_lock_irq(&hdspm
->lock
);
3344 if (source
>= HDSPM_MAX_CHANNELS
)
3345 change
= gain
!= hdspm_read_pb_gain(hdspm
, destination
,
3347 HDSPM_MAX_CHANNELS
);
3349 change
= gain
!= hdspm_read_in_gain(hdspm
, destination
,
3353 if (source
>= HDSPM_MAX_CHANNELS
)
3354 hdspm_write_pb_gain(hdspm
, destination
,
3355 source
- HDSPM_MAX_CHANNELS
,
3358 hdspm_write_in_gain(hdspm
, destination
, source
,
3361 spin_unlock_irq(&hdspm
->lock
);
3366 /* The simple mixer control(s) provide gain control for the
3367 basic 1:1 mappings of playback streams to output
3371 #define HDSPM_PLAYBACK_MIXER \
3372 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3373 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
3374 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3375 .info = snd_hdspm_info_playback_mixer, \
3376 .get = snd_hdspm_get_playback_mixer, \
3377 .put = snd_hdspm_put_playback_mixer \
3380 static int snd_hdspm_info_playback_mixer(struct snd_kcontrol
*kcontrol
,
3381 struct snd_ctl_elem_info
*uinfo
)
3383 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3385 uinfo
->value
.integer
.min
= 0;
3386 uinfo
->value
.integer
.max
= 64;
3387 uinfo
->value
.integer
.step
= 1;
3391 static int snd_hdspm_get_playback_mixer(struct snd_kcontrol
*kcontrol
,
3392 struct snd_ctl_elem_value
*ucontrol
)
3394 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3397 channel
= ucontrol
->id
.index
- 1;
3399 if (snd_BUG_ON(channel
< 0 || channel
>= HDSPM_MAX_CHANNELS
))
3402 spin_lock_irq(&hdspm
->lock
);
3403 ucontrol
->value
.integer
.value
[0] =
3404 (hdspm_read_pb_gain(hdspm
, channel
, channel
)*64)/UNITY_GAIN
;
3405 spin_unlock_irq(&hdspm
->lock
);
3410 static int snd_hdspm_put_playback_mixer(struct snd_kcontrol
*kcontrol
,
3411 struct snd_ctl_elem_value
*ucontrol
)
3413 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3418 if (!snd_hdspm_use_is_exclusive(hdspm
))
3421 channel
= ucontrol
->id
.index
- 1;
3423 if (snd_BUG_ON(channel
< 0 || channel
>= HDSPM_MAX_CHANNELS
))
3426 gain
= ucontrol
->value
.integer
.value
[0]*UNITY_GAIN
/64;
3428 spin_lock_irq(&hdspm
->lock
);
3430 gain
!= hdspm_read_pb_gain(hdspm
, channel
,
3433 hdspm_write_pb_gain(hdspm
, channel
, channel
,
3435 spin_unlock_irq(&hdspm
->lock
);
3439 #define HDSPM_SYNC_CHECK(xname, xindex) \
3440 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3442 .private_value = xindex, \
3443 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3444 .info = snd_hdspm_info_sync_check, \
3445 .get = snd_hdspm_get_sync_check \
3449 static int snd_hdspm_info_sync_check(struct snd_kcontrol
*kcontrol
,
3450 struct snd_ctl_elem_info
*uinfo
)
3452 static char *texts
[] = { "No Lock", "Lock", "Sync", "N/A" };
3453 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3455 uinfo
->value
.enumerated
.items
= 4;
3456 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3457 uinfo
->value
.enumerated
.item
=
3458 uinfo
->value
.enumerated
.items
- 1;
3459 strcpy(uinfo
->value
.enumerated
.name
,
3460 texts
[uinfo
->value
.enumerated
.item
]);
3464 static int hdspm_wc_sync_check(struct hdspm
*hdspm
)
3466 int status
, status2
;
3468 switch (hdspm
->io_type
) {
3470 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3471 if (status
& HDSPM_AES32_wcLock
) {
3472 if (status
& HDSPM_AES32_wcSync
)
3481 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3482 if (status2
& HDSPM_wcLock
) {
3483 if (status2
& HDSPM_wcSync
)
3493 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3495 if (status
& 0x2000000)
3497 else if (status
& 0x1000000)
3512 static int hdspm_madi_sync_check(struct hdspm
*hdspm
)
3514 int status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3515 if (status
& HDSPM_madiLock
) {
3516 if (status
& HDSPM_madiSync
)
3525 static int hdspm_s1_sync_check(struct hdspm
*hdspm
, int idx
)
3527 int status
, lock
, sync
;
3529 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
3531 lock
= (status
& (0x1<<idx
)) ? 1 : 0;
3532 sync
= (status
& (0x100<<idx
)) ? 1 : 0;
3542 static int hdspm_sync_in_sync_check(struct hdspm
*hdspm
)
3544 int status
, lock
= 0, sync
= 0;
3546 switch (hdspm
->io_type
) {
3549 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_3
);
3550 lock
= (status
& 0x400) ? 1 : 0;
3551 sync
= (status
& 0x800) ? 1 : 0;
3555 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3556 lock
= (status
& HDSPM_syncInLock
) ? 1 : 0;
3557 sync
= (status
& HDSPM_syncInSync
) ? 1 : 0;
3561 status
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3562 lock
= (status
& 0x100000) ? 1 : 0;
3563 sync
= (status
& 0x200000) ? 1 : 0;
3578 static int hdspm_aes_sync_check(struct hdspm
*hdspm
, int idx
)
3580 int status2
, lock
, sync
;
3581 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3583 lock
= (status2
& (0x0080 >> idx
)) ? 1 : 0;
3584 sync
= (status2
& (0x8000 >> idx
)) ? 1 : 0;
3594 static int hdspm_tco_sync_check(struct hdspm
*hdspm
)
3599 switch (hdspm
->io_type
) {
3602 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3603 if (status
& HDSPM_tcoLock
) {
3604 if (status
& HDSPM_tcoSync
)
3615 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
3617 if (status
& 0x8000000)
3618 return 2; /* Sync */
3619 if (status
& 0x4000000)
3620 return 1; /* Lock */
3621 return 0; /* No signal */
3633 static int snd_hdspm_get_sync_check(struct snd_kcontrol
*kcontrol
,
3634 struct snd_ctl_elem_value
*ucontrol
)
3636 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3639 switch (hdspm
->io_type
) {
3641 switch (kcontrol
->private_value
) {
3643 val
= hdspm_wc_sync_check(hdspm
); break;
3645 val
= hdspm_tco_sync_check(hdspm
); break;
3646 case 8: /* SYNC IN */
3647 val
= hdspm_sync_in_sync_check(hdspm
); break;
3649 val
= hdspm_s1_sync_check(hdspm
,
3650 kcontrol
->private_value
-1);
3655 switch (kcontrol
->private_value
) {
3657 val
= hdspm_wc_sync_check(hdspm
); break;
3659 val
= hdspm_tco_sync_check(hdspm
); break;
3660 case 5: /* SYNC IN */
3661 val
= hdspm_sync_in_sync_check(hdspm
); break;
3663 val
= hdspm_s1_sync_check(hdspm
, ucontrol
->id
.index
-1);
3668 switch (kcontrol
->private_value
) {
3670 val
= hdspm_wc_sync_check(hdspm
); break;
3672 val
= hdspm_madi_sync_check(hdspm
); break;
3674 val
= hdspm_tco_sync_check(hdspm
); break;
3675 case 3: /* SYNC_IN */
3676 val
= hdspm_sync_in_sync_check(hdspm
); break;
3681 val
= hdspm_madi_sync_check(hdspm
); /* MADI */
3685 switch (kcontrol
->private_value
) {
3687 val
= hdspm_wc_sync_check(hdspm
); break;
3689 val
= hdspm_tco_sync_check(hdspm
); break;
3690 case 10 /* SYNC IN */:
3691 val
= hdspm_sync_in_sync_check(hdspm
); break;
3692 default: /* AES1 to AES8 */
3693 val
= hdspm_aes_sync_check(hdspm
,
3694 kcontrol
->private_value
-1);
3703 ucontrol
->value
.enumerated
.item
[0] = val
;
3712 static void hdspm_tco_write(struct hdspm
*hdspm
)
3714 unsigned int tc
[4] = { 0, 0, 0, 0};
3716 switch (hdspm
->tco
->input
) {
3718 tc
[2] |= HDSPM_TCO2_set_input_MSB
;
3721 tc
[2] |= HDSPM_TCO2_set_input_LSB
;
3727 switch (hdspm
->tco
->framerate
) {
3729 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
;
3732 tc
[1] |= HDSPM_TCO1_LTC_Format_MSB
;
3735 tc
[1] |= HDSPM_TCO1_LTC_Format_MSB
+
3736 HDSPM_TCO1_set_drop_frame_flag
;
3739 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
+
3740 HDSPM_TCO1_LTC_Format_MSB
;
3743 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
+
3744 HDSPM_TCO1_LTC_Format_MSB
+
3745 HDSPM_TCO1_set_drop_frame_flag
;
3751 switch (hdspm
->tco
->wordclock
) {
3753 tc
[2] |= HDSPM_TCO2_WCK_IO_ratio_LSB
;
3756 tc
[2] |= HDSPM_TCO2_WCK_IO_ratio_MSB
;
3762 switch (hdspm
->tco
->samplerate
) {
3764 tc
[2] |= HDSPM_TCO2_set_freq
;
3767 tc
[2] |= HDSPM_TCO2_set_freq_from_app
;
3773 switch (hdspm
->tco
->pull
) {
3775 tc
[2] |= HDSPM_TCO2_set_pull_up
;
3778 tc
[2] |= HDSPM_TCO2_set_pull_down
;
3781 tc
[2] |= HDSPM_TCO2_set_pull_up
+ HDSPM_TCO2_set_01_4
;
3784 tc
[2] |= HDSPM_TCO2_set_pull_down
+ HDSPM_TCO2_set_01_4
;
3790 if (1 == hdspm
->tco
->term
) {
3791 tc
[2] |= HDSPM_TCO2_set_term_75R
;
3794 hdspm_write(hdspm
, HDSPM_WR_TCO
, tc
[0]);
3795 hdspm_write(hdspm
, HDSPM_WR_TCO
+4, tc
[1]);
3796 hdspm_write(hdspm
, HDSPM_WR_TCO
+8, tc
[2]);
3797 hdspm_write(hdspm
, HDSPM_WR_TCO
+12, tc
[3]);
3801 #define HDSPM_TCO_SAMPLE_RATE(xname, xindex) \
3802 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3805 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
3806 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3807 .info = snd_hdspm_info_tco_sample_rate, \
3808 .get = snd_hdspm_get_tco_sample_rate, \
3809 .put = snd_hdspm_put_tco_sample_rate \
3812 static int snd_hdspm_info_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
3813 struct snd_ctl_elem_info
*uinfo
)
3815 static char *texts
[] = { "44.1 kHz", "48 kHz" };
3816 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3818 uinfo
->value
.enumerated
.items
= 2;
3820 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3821 uinfo
->value
.enumerated
.item
=
3822 uinfo
->value
.enumerated
.items
- 1;
3824 strcpy(uinfo
->value
.enumerated
.name
,
3825 texts
[uinfo
->value
.enumerated
.item
]);
3830 static int snd_hdspm_get_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
3831 struct snd_ctl_elem_value
*ucontrol
)
3833 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3835 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->samplerate
;
3840 static int snd_hdspm_put_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
3841 struct snd_ctl_elem_value
*ucontrol
)
3843 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3845 if (hdspm
->tco
->samplerate
!= ucontrol
->value
.enumerated
.item
[0]) {
3846 hdspm
->tco
->samplerate
= ucontrol
->value
.enumerated
.item
[0];
3848 hdspm_tco_write(hdspm
);
3857 #define HDSPM_TCO_PULL(xname, xindex) \
3858 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3861 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
3862 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3863 .info = snd_hdspm_info_tco_pull, \
3864 .get = snd_hdspm_get_tco_pull, \
3865 .put = snd_hdspm_put_tco_pull \
3868 static int snd_hdspm_info_tco_pull(struct snd_kcontrol
*kcontrol
,
3869 struct snd_ctl_elem_info
*uinfo
)
3871 static char *texts
[] = { "0", "+ 0.1 %", "- 0.1 %", "+ 4 %", "- 4 %" };
3872 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3874 uinfo
->value
.enumerated
.items
= 5;
3876 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3877 uinfo
->value
.enumerated
.item
=
3878 uinfo
->value
.enumerated
.items
- 1;
3880 strcpy(uinfo
->value
.enumerated
.name
,
3881 texts
[uinfo
->value
.enumerated
.item
]);
3886 static int snd_hdspm_get_tco_pull(struct snd_kcontrol
*kcontrol
,
3887 struct snd_ctl_elem_value
*ucontrol
)
3889 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3891 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->pull
;
3896 static int snd_hdspm_put_tco_pull(struct snd_kcontrol
*kcontrol
,
3897 struct snd_ctl_elem_value
*ucontrol
)
3899 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3901 if (hdspm
->tco
->pull
!= ucontrol
->value
.enumerated
.item
[0]) {
3902 hdspm
->tco
->pull
= ucontrol
->value
.enumerated
.item
[0];
3904 hdspm_tco_write(hdspm
);
3912 #define HDSPM_TCO_WCK_CONVERSION(xname, xindex) \
3913 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3916 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
3917 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3918 .info = snd_hdspm_info_tco_wck_conversion, \
3919 .get = snd_hdspm_get_tco_wck_conversion, \
3920 .put = snd_hdspm_put_tco_wck_conversion \
3923 static int snd_hdspm_info_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
3924 struct snd_ctl_elem_info
*uinfo
)
3926 static char *texts
[] = { "1:1", "44.1 -> 48", "48 -> 44.1" };
3927 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3929 uinfo
->value
.enumerated
.items
= 3;
3931 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3932 uinfo
->value
.enumerated
.item
=
3933 uinfo
->value
.enumerated
.items
- 1;
3935 strcpy(uinfo
->value
.enumerated
.name
,
3936 texts
[uinfo
->value
.enumerated
.item
]);
3941 static int snd_hdspm_get_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
3942 struct snd_ctl_elem_value
*ucontrol
)
3944 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3946 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->wordclock
;
3951 static int snd_hdspm_put_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
3952 struct snd_ctl_elem_value
*ucontrol
)
3954 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3956 if (hdspm
->tco
->wordclock
!= ucontrol
->value
.enumerated
.item
[0]) {
3957 hdspm
->tco
->wordclock
= ucontrol
->value
.enumerated
.item
[0];
3959 hdspm_tco_write(hdspm
);
3968 #define HDSPM_TCO_FRAME_RATE(xname, xindex) \
3969 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3972 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
3973 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3974 .info = snd_hdspm_info_tco_frame_rate, \
3975 .get = snd_hdspm_get_tco_frame_rate, \
3976 .put = snd_hdspm_put_tco_frame_rate \
3979 static int snd_hdspm_info_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
3980 struct snd_ctl_elem_info
*uinfo
)
3982 static char *texts
[] = { "24 fps", "25 fps", "29.97fps",
3983 "29.97 dfps", "30 fps", "30 dfps" };
3984 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3986 uinfo
->value
.enumerated
.items
= 6;
3988 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3989 uinfo
->value
.enumerated
.item
=
3990 uinfo
->value
.enumerated
.items
- 1;
3992 strcpy(uinfo
->value
.enumerated
.name
,
3993 texts
[uinfo
->value
.enumerated
.item
]);
3998 static int snd_hdspm_get_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
3999 struct snd_ctl_elem_value
*ucontrol
)
4001 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4003 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->framerate
;
4008 static int snd_hdspm_put_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
4009 struct snd_ctl_elem_value
*ucontrol
)
4011 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4013 if (hdspm
->tco
->framerate
!= ucontrol
->value
.enumerated
.item
[0]) {
4014 hdspm
->tco
->framerate
= ucontrol
->value
.enumerated
.item
[0];
4016 hdspm_tco_write(hdspm
);
4025 #define HDSPM_TCO_SYNC_SOURCE(xname, xindex) \
4026 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4029 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4030 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4031 .info = snd_hdspm_info_tco_sync_source, \
4032 .get = snd_hdspm_get_tco_sync_source, \
4033 .put = snd_hdspm_put_tco_sync_source \
4036 static int snd_hdspm_info_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4037 struct snd_ctl_elem_info
*uinfo
)
4039 static char *texts
[] = { "LTC", "Video", "WCK" };
4040 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4042 uinfo
->value
.enumerated
.items
= 3;
4044 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4045 uinfo
->value
.enumerated
.item
=
4046 uinfo
->value
.enumerated
.items
- 1;
4048 strcpy(uinfo
->value
.enumerated
.name
,
4049 texts
[uinfo
->value
.enumerated
.item
]);
4054 static int snd_hdspm_get_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4055 struct snd_ctl_elem_value
*ucontrol
)
4057 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4059 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->input
;
4064 static int snd_hdspm_put_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4065 struct snd_ctl_elem_value
*ucontrol
)
4067 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4069 if (hdspm
->tco
->input
!= ucontrol
->value
.enumerated
.item
[0]) {
4070 hdspm
->tco
->input
= ucontrol
->value
.enumerated
.item
[0];
4072 hdspm_tco_write(hdspm
);
4081 #define HDSPM_TCO_WORD_TERM(xname, xindex) \
4082 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4085 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4086 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4087 .info = snd_hdspm_info_tco_word_term, \
4088 .get = snd_hdspm_get_tco_word_term, \
4089 .put = snd_hdspm_put_tco_word_term \
4092 static int snd_hdspm_info_tco_word_term(struct snd_kcontrol
*kcontrol
,
4093 struct snd_ctl_elem_info
*uinfo
)
4095 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
4097 uinfo
->value
.integer
.min
= 0;
4098 uinfo
->value
.integer
.max
= 1;
4104 static int snd_hdspm_get_tco_word_term(struct snd_kcontrol
*kcontrol
,
4105 struct snd_ctl_elem_value
*ucontrol
)
4107 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4109 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->term
;
4115 static int snd_hdspm_put_tco_word_term(struct snd_kcontrol
*kcontrol
,
4116 struct snd_ctl_elem_value
*ucontrol
)
4118 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4120 if (hdspm
->tco
->term
!= ucontrol
->value
.enumerated
.item
[0]) {
4121 hdspm
->tco
->term
= ucontrol
->value
.enumerated
.item
[0];
4123 hdspm_tco_write(hdspm
);
4134 static struct snd_kcontrol_new snd_hdspm_controls_madi
[] = {
4135 HDSPM_MIXER("Mixer", 0),
4136 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4137 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4138 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4139 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4140 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4141 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4142 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4143 HDSPM_SYNC_CHECK("MADI SyncCheck", 1),
4144 HDSPM_SYNC_CHECK("TCO SyncCheck", 2),
4145 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 3),
4146 HDSPM_TOGGLE_SETTING("Line Out", HDSPM_LineOut
),
4147 HDSPM_TOGGLE_SETTING("TX 64 channels mode", HDSPM_TX_64ch
),
4148 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms
),
4149 HDSPM_TOGGLE_SETTING("Safe Mode", HDSPM_AutoInp
),
4150 HDSPM_INPUT_SELECT("Input Select", 0),
4151 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
4155 static struct snd_kcontrol_new snd_hdspm_controls_madiface
[] = {
4156 HDSPM_MIXER("Mixer", 0),
4157 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4158 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4159 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4160 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4161 HDSPM_SYNC_CHECK("MADI SyncCheck", 0),
4162 HDSPM_TOGGLE_SETTING("TX 64 channels mode", HDSPM_TX_64ch
),
4163 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms
),
4164 HDSPM_TOGGLE_SETTING("Safe Mode", HDSPM_AutoInp
),
4165 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
4168 static struct snd_kcontrol_new snd_hdspm_controls_aio
[] = {
4169 HDSPM_MIXER("Mixer", 0),
4170 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4171 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4172 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4173 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4174 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4175 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4176 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4177 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4178 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4179 HDSPM_SYNC_CHECK("ADAT SyncCheck", 3),
4180 HDSPM_SYNC_CHECK("TCO SyncCheck", 4),
4181 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 5),
4182 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4183 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4184 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4185 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT Frequency", 3),
4186 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 4),
4187 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 5)
4190 HDSPM_INPUT_SELECT("Input Select", 0),
4191 HDSPM_SPDIF_OPTICAL("SPDIF Out Optical", 0),
4192 HDSPM_PROFESSIONAL("SPDIF Out Professional", 0);
4193 HDSPM_SPDIF_IN("SPDIF In", 0);
4194 HDSPM_BREAKOUT_CABLE("Breakout Cable", 0);
4195 HDSPM_INPUT_LEVEL("Input Level", 0);
4196 HDSPM_OUTPUT_LEVEL("Output Level", 0);
4197 HDSPM_PHONES("Phones", 0);
4201 static struct snd_kcontrol_new snd_hdspm_controls_raydat
[] = {
4202 HDSPM_MIXER("Mixer", 0),
4203 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4204 HDSPM_SYSTEM_CLOCK_MODE("Clock Mode", 0),
4205 HDSPM_PREF_SYNC_REF("Pref Sync Ref", 0),
4206 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4207 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4208 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4209 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4210 HDSPM_SYNC_CHECK("ADAT1 SyncCheck", 3),
4211 HDSPM_SYNC_CHECK("ADAT2 SyncCheck", 4),
4212 HDSPM_SYNC_CHECK("ADAT3 SyncCheck", 5),
4213 HDSPM_SYNC_CHECK("ADAT4 SyncCheck", 6),
4214 HDSPM_SYNC_CHECK("TCO SyncCheck", 7),
4215 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 8),
4216 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4217 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4218 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4219 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT1 Frequency", 3),
4220 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT2 Frequency", 4),
4221 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT3 Frequency", 5),
4222 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT4 Frequency", 6),
4223 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 7),
4224 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 8)
4227 static struct snd_kcontrol_new snd_hdspm_controls_aes32
[] = {
4228 HDSPM_MIXER("Mixer", 0),
4229 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4230 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4231 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4232 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4233 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4234 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4235 HDSPM_SYNC_CHECK("WC Sync Check", 0),
4236 HDSPM_SYNC_CHECK("AES1 Sync Check", 1),
4237 HDSPM_SYNC_CHECK("AES2 Sync Check", 2),
4238 HDSPM_SYNC_CHECK("AES3 Sync Check", 3),
4239 HDSPM_SYNC_CHECK("AES4 Sync Check", 4),
4240 HDSPM_SYNC_CHECK("AES5 Sync Check", 5),
4241 HDSPM_SYNC_CHECK("AES6 Sync Check", 6),
4242 HDSPM_SYNC_CHECK("AES7 Sync Check", 7),
4243 HDSPM_SYNC_CHECK("AES8 Sync Check", 8),
4244 HDSPM_SYNC_CHECK("TCO Sync Check", 9),
4245 HDSPM_SYNC_CHECK("SYNC IN Sync Check", 10),
4246 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4247 HDSPM_AUTOSYNC_SAMPLE_RATE("AES1 Frequency", 1),
4248 HDSPM_AUTOSYNC_SAMPLE_RATE("AES2 Frequency", 2),
4249 HDSPM_AUTOSYNC_SAMPLE_RATE("AES3 Frequency", 3),
4250 HDSPM_AUTOSYNC_SAMPLE_RATE("AES4 Frequency", 4),
4251 HDSPM_AUTOSYNC_SAMPLE_RATE("AES5 Frequency", 5),
4252 HDSPM_AUTOSYNC_SAMPLE_RATE("AES6 Frequency", 6),
4253 HDSPM_AUTOSYNC_SAMPLE_RATE("AES7 Frequency", 7),
4254 HDSPM_AUTOSYNC_SAMPLE_RATE("AES8 Frequency", 8),
4255 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 9),
4256 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 10),
4257 HDSPM_TOGGLE_SETTING("Line Out", HDSPM_LineOut
),
4258 HDSPM_TOGGLE_SETTING("Emphasis", HDSPM_Emphasis
),
4259 HDSPM_TOGGLE_SETTING("Non Audio", HDSPM_Dolby
),
4260 HDSPM_TOGGLE_SETTING("Professional", HDSPM_Professional
),
4261 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms
),
4262 HDSPM_DS_WIRE("Double Speed Wire Mode", 0),
4263 HDSPM_QS_WIRE("Quad Speed Wire Mode", 0),
4268 /* Control elements for the optional TCO module */
4269 static struct snd_kcontrol_new snd_hdspm_controls_tco
[] = {
4270 HDSPM_TCO_SAMPLE_RATE("TCO Sample Rate", 0),
4271 HDSPM_TCO_PULL("TCO Pull", 0),
4272 HDSPM_TCO_WCK_CONVERSION("TCO WCK Conversion", 0),
4273 HDSPM_TCO_FRAME_RATE("TCO Frame Rate", 0),
4274 HDSPM_TCO_SYNC_SOURCE("TCO Sync Source", 0),
4275 HDSPM_TCO_WORD_TERM("TCO Word Term", 0)
4279 static struct snd_kcontrol_new snd_hdspm_playback_mixer
= HDSPM_PLAYBACK_MIXER
;
4282 static int hdspm_update_simple_mixer_controls(struct hdspm
* hdspm
)
4286 for (i
= hdspm
->ds_out_channels
; i
< hdspm
->ss_out_channels
; ++i
) {
4287 if (hdspm
->system_sample_rate
> 48000) {
4288 hdspm
->playback_mixer_ctls
[i
]->vd
[0].access
=
4289 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
4290 SNDRV_CTL_ELEM_ACCESS_READ
|
4291 SNDRV_CTL_ELEM_ACCESS_VOLATILE
;
4293 hdspm
->playback_mixer_ctls
[i
]->vd
[0].access
=
4294 SNDRV_CTL_ELEM_ACCESS_READWRITE
|
4295 SNDRV_CTL_ELEM_ACCESS_VOLATILE
;
4297 snd_ctl_notify(hdspm
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4298 SNDRV_CTL_EVENT_MASK_INFO
,
4299 &hdspm
->playback_mixer_ctls
[i
]->id
);
4306 static int snd_hdspm_create_controls(struct snd_card
*card
,
4307 struct hdspm
*hdspm
)
4309 unsigned int idx
, limit
;
4311 struct snd_kcontrol
*kctl
;
4312 struct snd_kcontrol_new
*list
= NULL
;
4314 switch (hdspm
->io_type
) {
4316 list
= snd_hdspm_controls_madi
;
4317 limit
= ARRAY_SIZE(snd_hdspm_controls_madi
);
4320 list
= snd_hdspm_controls_madiface
;
4321 limit
= ARRAY_SIZE(snd_hdspm_controls_madiface
);
4324 list
= snd_hdspm_controls_aio
;
4325 limit
= ARRAY_SIZE(snd_hdspm_controls_aio
);
4328 list
= snd_hdspm_controls_raydat
;
4329 limit
= ARRAY_SIZE(snd_hdspm_controls_raydat
);
4332 list
= snd_hdspm_controls_aes32
;
4333 limit
= ARRAY_SIZE(snd_hdspm_controls_aes32
);
4338 for (idx
= 0; idx
< limit
; idx
++) {
4339 err
= snd_ctl_add(card
,
4340 snd_ctl_new1(&list
[idx
], hdspm
));
4347 /* create simple 1:1 playback mixer controls */
4348 snd_hdspm_playback_mixer
.name
= "Chn";
4349 if (hdspm
->system_sample_rate
>= 128000) {
4350 limit
= hdspm
->qs_out_channels
;
4351 } else if (hdspm
->system_sample_rate
>= 64000) {
4352 limit
= hdspm
->ds_out_channels
;
4354 limit
= hdspm
->ss_out_channels
;
4356 for (idx
= 0; idx
< limit
; ++idx
) {
4357 snd_hdspm_playback_mixer
.index
= idx
+ 1;
4358 kctl
= snd_ctl_new1(&snd_hdspm_playback_mixer
, hdspm
);
4359 err
= snd_ctl_add(card
, kctl
);
4362 hdspm
->playback_mixer_ctls
[idx
] = kctl
;
4367 /* add tco control elements */
4368 list
= snd_hdspm_controls_tco
;
4369 limit
= ARRAY_SIZE(snd_hdspm_controls_tco
);
4370 for (idx
= 0; idx
< limit
; idx
++) {
4371 err
= snd_ctl_add(card
,
4372 snd_ctl_new1(&list
[idx
], hdspm
));
4381 /*------------------------------------------------------------
4383 ------------------------------------------------------------*/
4386 snd_hdspm_proc_read_madi(struct snd_info_entry
* entry
,
4387 struct snd_info_buffer
*buffer
)
4389 struct hdspm
*hdspm
= entry
->private_data
;
4390 unsigned int status
, status2
, control
, freq
;
4392 char *pref_sync_ref
;
4394 char *system_clock_mode
;
4399 int a
, ltc
, frames
, seconds
, minutes
, hours
;
4400 unsigned int period
;
4404 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
4405 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
4406 control
= hdspm
->control_register
;
4407 freq
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
4409 snd_iprintf(buffer
, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
4410 hdspm
->card_name
, hdspm
->card
->number
+ 1,
4411 hdspm
->firmware_rev
,
4412 (status2
& HDSPM_version0
) |
4413 (status2
& HDSPM_version1
) | (status2
&
4416 snd_iprintf(buffer
, "HW Serial: 0x%06x%06x\n",
4417 (hdspm_read(hdspm
, HDSPM_midiStatusIn1
)>>8) & 0xFFFFFF,
4420 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4421 hdspm
->irq
, hdspm
->port
, (unsigned long)hdspm
->iobase
);
4423 snd_iprintf(buffer
, "--- System ---\n");
4426 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4427 status
& HDSPM_audioIRQPending
,
4428 (status
& HDSPM_midi0IRQPending
) ? 1 : 0,
4429 (status
& HDSPM_midi1IRQPending
) ? 1 : 0,
4432 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4433 "estimated= %ld (bytes)\n",
4434 ((status
& HDSPM_BufferID
) ? 1 : 0),
4435 (status
& HDSPM_BufferPositionMask
),
4436 (status
& HDSPM_BufferPositionMask
) %
4437 (2 * (int)hdspm
->period_bytes
),
4438 ((status
& HDSPM_BufferPositionMask
) - 64) %
4439 (2 * (int)hdspm
->period_bytes
),
4440 (long) hdspm_hw_pointer(hdspm
) * 4);
4443 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4444 hdspm_read(hdspm
, HDSPM_midiStatusOut0
) & 0xFF,
4445 hdspm_read(hdspm
, HDSPM_midiStatusOut1
) & 0xFF,
4446 hdspm_read(hdspm
, HDSPM_midiStatusIn0
) & 0xFF,
4447 hdspm_read(hdspm
, HDSPM_midiStatusIn1
) & 0xFF);
4449 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4450 hdspm_read(hdspm
, HDSPM_midiStatusIn2
) & 0xFF,
4451 hdspm_read(hdspm
, HDSPM_midiStatusOut2
) & 0xFF);
4453 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4455 hdspm
->control_register
, hdspm
->control2_register
,
4457 if (status
& HDSPM_tco_detect
) {
4458 snd_iprintf(buffer
, "TCO module detected.\n");
4459 a
= hdspm_read(hdspm
, HDSPM_RD_TCO
+4);
4460 if (a
& HDSPM_TCO1_LTC_Input_valid
) {
4461 snd_iprintf(buffer
, " LTC valid, ");
4462 switch (a
& (HDSPM_TCO1_LTC_Format_LSB
|
4463 HDSPM_TCO1_LTC_Format_MSB
)) {
4465 snd_iprintf(buffer
, "24 fps, ");
4467 case HDSPM_TCO1_LTC_Format_LSB
:
4468 snd_iprintf(buffer
, "25 fps, ");
4470 case HDSPM_TCO1_LTC_Format_MSB
:
4471 snd_iprintf(buffer
, "29.97 fps, ");
4474 snd_iprintf(buffer
, "30 fps, ");
4477 if (a
& HDSPM_TCO1_set_drop_frame_flag
) {
4478 snd_iprintf(buffer
, "drop frame\n");
4480 snd_iprintf(buffer
, "full frame\n");
4483 snd_iprintf(buffer
, " no LTC\n");
4485 if (a
& HDSPM_TCO1_Video_Input_Format_NTSC
) {
4486 snd_iprintf(buffer
, " Video: NTSC\n");
4487 } else if (a
& HDSPM_TCO1_Video_Input_Format_PAL
) {
4488 snd_iprintf(buffer
, " Video: PAL\n");
4490 snd_iprintf(buffer
, " No video\n");
4492 if (a
& HDSPM_TCO1_TCO_lock
) {
4493 snd_iprintf(buffer
, " Sync: lock\n");
4495 snd_iprintf(buffer
, " Sync: no lock\n");
4498 switch (hdspm
->io_type
) {
4501 freq_const
= 110069313433624ULL;
4505 freq_const
= 104857600000000ULL;
4508 break; /* no TCO possible */
4511 period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
4512 snd_iprintf(buffer
, " period: %u\n", period
);
4515 /* rate = freq_const/period; */
4516 rate
= div_u64(freq_const
, period
);
4518 if (control
& HDSPM_QuadSpeed
) {
4520 } else if (control
& HDSPM_DoubleSpeed
) {
4524 snd_iprintf(buffer
, " Frequency: %u Hz\n",
4525 (unsigned int) rate
);
4527 ltc
= hdspm_read(hdspm
, HDSPM_RD_TCO
);
4530 frames
+= (ltc
& 0x3) * 10;
4532 seconds
= ltc
& 0xF;
4534 seconds
+= (ltc
& 0x7) * 10;
4536 minutes
= ltc
& 0xF;
4538 minutes
+= (ltc
& 0x7) * 10;
4542 hours
+= (ltc
& 0x3) * 10;
4544 " LTC In: %02d:%02d:%02d:%02d\n",
4545 hours
, minutes
, seconds
, frames
);
4548 snd_iprintf(buffer
, "No TCO module detected.\n");
4551 snd_iprintf(buffer
, "--- Settings ---\n");
4553 x
= hdspm_get_latency(hdspm
);
4556 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
4557 x
, (unsigned long) hdspm
->period_bytes
);
4559 snd_iprintf(buffer
, "Line out: %s\n",
4560 (hdspm
->control_register
& HDSPM_LineOut
) ? "on " : "off");
4562 switch (hdspm
->control_register
& HDSPM_InputMask
) {
4563 case HDSPM_InputOptical
:
4566 case HDSPM_InputCoaxial
:
4574 "ClearTrackMarker = %s, Transmit in %s Channel Mode, "
4576 (hdspm
->control_register
& HDSPM_clr_tms
) ? "on" : "off",
4577 (hdspm
->control_register
& HDSPM_TX_64ch
) ? "64" : "56",
4578 (hdspm
->control_register
& HDSPM_AutoInp
) ? "on" : "off");
4581 if (!(hdspm
->control_register
& HDSPM_ClockModeMaster
))
4582 system_clock_mode
= "AutoSync";
4584 system_clock_mode
= "Master";
4585 snd_iprintf(buffer
, "AutoSync Reference: %s\n", system_clock_mode
);
4587 switch (hdspm_pref_sync_ref(hdspm
)) {
4588 case HDSPM_SYNC_FROM_WORD
:
4589 pref_sync_ref
= "Word Clock";
4591 case HDSPM_SYNC_FROM_MADI
:
4592 pref_sync_ref
= "MADI Sync";
4594 case HDSPM_SYNC_FROM_TCO
:
4595 pref_sync_ref
= "TCO";
4597 case HDSPM_SYNC_FROM_SYNC_IN
:
4598 pref_sync_ref
= "Sync In";
4601 pref_sync_ref
= "XXXX Clock";
4604 snd_iprintf(buffer
, "Preferred Sync Reference: %s\n",
4607 snd_iprintf(buffer
, "System Clock Frequency: %d\n",
4608 hdspm
->system_sample_rate
);
4611 snd_iprintf(buffer
, "--- Status:\n");
4613 x
= status
& HDSPM_madiSync
;
4614 x2
= status2
& HDSPM_wcSync
;
4616 snd_iprintf(buffer
, "Inputs MADI=%s, WordClock=%s\n",
4617 (status
& HDSPM_madiLock
) ? (x
? "Sync" : "Lock") :
4619 (status2
& HDSPM_wcLock
) ? (x2
? "Sync" : "Lock") :
4622 switch (hdspm_autosync_ref(hdspm
)) {
4623 case HDSPM_AUTOSYNC_FROM_SYNC_IN
:
4624 autosync_ref
= "Sync In";
4626 case HDSPM_AUTOSYNC_FROM_TCO
:
4627 autosync_ref
= "TCO";
4629 case HDSPM_AUTOSYNC_FROM_WORD
:
4630 autosync_ref
= "Word Clock";
4632 case HDSPM_AUTOSYNC_FROM_MADI
:
4633 autosync_ref
= "MADI Sync";
4635 case HDSPM_AUTOSYNC_FROM_NONE
:
4636 autosync_ref
= "Input not valid";
4639 autosync_ref
= "---";
4643 "AutoSync: Reference= %s, Freq=%d (MADI = %d, Word = %d)\n",
4644 autosync_ref
, hdspm_external_sample_rate(hdspm
),
4645 (status
& HDSPM_madiFreqMask
) >> 22,
4646 (status2
& HDSPM_wcFreqMask
) >> 5);
4648 snd_iprintf(buffer
, "Input: %s, Mode=%s\n",
4649 (status
& HDSPM_AB_int
) ? "Coax" : "Optical",
4650 (status
& HDSPM_RX_64ch
) ? "64 channels" :
4653 snd_iprintf(buffer
, "\n");
4657 snd_hdspm_proc_read_aes32(struct snd_info_entry
* entry
,
4658 struct snd_info_buffer
*buffer
)
4660 struct hdspm
*hdspm
= entry
->private_data
;
4661 unsigned int status
;
4662 unsigned int status2
;
4663 unsigned int timecode
;
4664 unsigned int wcLock
, wcSync
;
4669 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
4670 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
4671 timecode
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
4673 snd_iprintf(buffer
, "%s (Card #%d) Rev.%x\n",
4674 hdspm
->card_name
, hdspm
->card
->number
+ 1,
4675 hdspm
->firmware_rev
);
4677 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4678 hdspm
->irq
, hdspm
->port
, (unsigned long)hdspm
->iobase
);
4680 snd_iprintf(buffer
, "--- System ---\n");
4683 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4684 status
& HDSPM_audioIRQPending
,
4685 (status
& HDSPM_midi0IRQPending
) ? 1 : 0,
4686 (status
& HDSPM_midi1IRQPending
) ? 1 : 0,
4689 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4690 "estimated= %ld (bytes)\n",
4691 ((status
& HDSPM_BufferID
) ? 1 : 0),
4692 (status
& HDSPM_BufferPositionMask
),
4693 (status
& HDSPM_BufferPositionMask
) %
4694 (2 * (int)hdspm
->period_bytes
),
4695 ((status
& HDSPM_BufferPositionMask
) - 64) %
4696 (2 * (int)hdspm
->period_bytes
),
4697 (long) hdspm_hw_pointer(hdspm
) * 4);
4700 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4701 hdspm_read(hdspm
, HDSPM_midiStatusOut0
) & 0xFF,
4702 hdspm_read(hdspm
, HDSPM_midiStatusOut1
) & 0xFF,
4703 hdspm_read(hdspm
, HDSPM_midiStatusIn0
) & 0xFF,
4704 hdspm_read(hdspm
, HDSPM_midiStatusIn1
) & 0xFF);
4706 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4707 hdspm_read(hdspm
, HDSPM_midiStatusIn2
) & 0xFF,
4708 hdspm_read(hdspm
, HDSPM_midiStatusOut2
) & 0xFF);
4710 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4712 hdspm
->control_register
, hdspm
->control2_register
,
4715 snd_iprintf(buffer
, "--- Settings ---\n");
4717 x
= hdspm_get_latency(hdspm
);
4720 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
4721 x
, (unsigned long) hdspm
->period_bytes
);
4723 snd_iprintf(buffer
, "Line out: %s\n",
4725 control_register
& HDSPM_LineOut
) ? "on " : "off");
4728 "ClearTrackMarker %s, Emphasis %s, Dolby %s\n",
4730 control_register
& HDSPM_clr_tms
) ? "on" : "off",
4732 control_register
& HDSPM_Emphasis
) ? "on" : "off",
4734 control_register
& HDSPM_Dolby
) ? "on" : "off");
4737 pref_syncref
= hdspm_pref_sync_ref(hdspm
);
4738 if (pref_syncref
== 0)
4739 snd_iprintf(buffer
, "Preferred Sync Reference: Word Clock\n");
4741 snd_iprintf(buffer
, "Preferred Sync Reference: AES%d\n",
4744 snd_iprintf(buffer
, "System Clock Frequency: %d\n",
4745 hdspm
->system_sample_rate
);
4747 snd_iprintf(buffer
, "Double speed: %s\n",
4748 hdspm
->control_register
& HDSPM_DS_DoubleWire
?
4749 "Double wire" : "Single wire");
4750 snd_iprintf(buffer
, "Quad speed: %s\n",
4751 hdspm
->control_register
& HDSPM_QS_DoubleWire
?
4753 hdspm
->control_register
& HDSPM_QS_QuadWire
?
4754 "Quad wire" : "Single wire");
4756 snd_iprintf(buffer
, "--- Status:\n");
4758 wcLock
= status
& HDSPM_AES32_wcLock
;
4759 wcSync
= wcLock
&& (status
& HDSPM_AES32_wcSync
);
4761 snd_iprintf(buffer
, "Word: %s Frequency: %d\n",
4762 (wcLock
) ? (wcSync
? "Sync " : "Lock ") : "No Lock",
4763 HDSPM_bit2freq((status
>> HDSPM_AES32_wcFreq_bit
) & 0xF));
4765 for (x
= 0; x
< 8; x
++) {
4766 snd_iprintf(buffer
, "AES%d: %s Frequency: %d\n",
4768 (status2
& (HDSPM_LockAES
>> x
)) ?
4769 "Sync " : "No Lock",
4770 HDSPM_bit2freq((timecode
>> (4*x
)) & 0xF));
4773 switch (hdspm_autosync_ref(hdspm
)) {
4774 case HDSPM_AES32_AUTOSYNC_FROM_NONE
:
4775 autosync_ref
= "None"; break;
4776 case HDSPM_AES32_AUTOSYNC_FROM_WORD
:
4777 autosync_ref
= "Word Clock"; break;
4778 case HDSPM_AES32_AUTOSYNC_FROM_AES1
:
4779 autosync_ref
= "AES1"; break;
4780 case HDSPM_AES32_AUTOSYNC_FROM_AES2
:
4781 autosync_ref
= "AES2"; break;
4782 case HDSPM_AES32_AUTOSYNC_FROM_AES3
:
4783 autosync_ref
= "AES3"; break;
4784 case HDSPM_AES32_AUTOSYNC_FROM_AES4
:
4785 autosync_ref
= "AES4"; break;
4786 case HDSPM_AES32_AUTOSYNC_FROM_AES5
:
4787 autosync_ref
= "AES5"; break;
4788 case HDSPM_AES32_AUTOSYNC_FROM_AES6
:
4789 autosync_ref
= "AES6"; break;
4790 case HDSPM_AES32_AUTOSYNC_FROM_AES7
:
4791 autosync_ref
= "AES7"; break;
4792 case HDSPM_AES32_AUTOSYNC_FROM_AES8
:
4793 autosync_ref
= "AES8"; break;
4795 autosync_ref
= "---"; break;
4797 snd_iprintf(buffer
, "AutoSync ref = %s\n", autosync_ref
);
4799 snd_iprintf(buffer
, "\n");
4803 snd_hdspm_proc_read_raydat(struct snd_info_entry
*entry
,
4804 struct snd_info_buffer
*buffer
)
4806 struct hdspm
*hdspm
= entry
->private_data
;
4807 unsigned int status1
, status2
, status3
, control
, i
;
4808 unsigned int lock
, sync
;
4810 status1
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
); /* s1 */
4811 status2
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
); /* freq */
4812 status3
= hdspm_read(hdspm
, HDSPM_RD_STATUS_3
); /* s2 */
4814 control
= hdspm
->control_register
;
4816 snd_iprintf(buffer
, "STATUS1: 0x%08x\n", status1
);
4817 snd_iprintf(buffer
, "STATUS2: 0x%08x\n", status2
);
4818 snd_iprintf(buffer
, "STATUS3: 0x%08x\n", status3
);
4821 snd_iprintf(buffer
, "\n*** CLOCK MODE\n\n");
4823 snd_iprintf(buffer
, "Clock mode : %s\n",
4824 (hdspm_system_clock_mode(hdspm
) == 0) ? "master" : "slave");
4825 snd_iprintf(buffer
, "System frequency: %d Hz\n",
4826 hdspm_get_system_sample_rate(hdspm
));
4828 snd_iprintf(buffer
, "\n*** INPUT STATUS\n\n");
4833 for (i
= 0; i
< 8; i
++) {
4834 snd_iprintf(buffer
, "s1_input %d: Lock %d, Sync %d, Freq %s\n",
4836 (status1
& lock
) ? 1 : 0,
4837 (status1
& sync
) ? 1 : 0,
4838 texts_freq
[(status2
>> (i
* 4)) & 0xF]);
4844 snd_iprintf(buffer
, "WC input: Lock %d, Sync %d, Freq %s\n",
4845 (status1
& 0x1000000) ? 1 : 0,
4846 (status1
& 0x2000000) ? 1 : 0,
4847 texts_freq
[(status1
>> 16) & 0xF]);
4849 snd_iprintf(buffer
, "TCO input: Lock %d, Sync %d, Freq %s\n",
4850 (status1
& 0x4000000) ? 1 : 0,
4851 (status1
& 0x8000000) ? 1 : 0,
4852 texts_freq
[(status1
>> 20) & 0xF]);
4854 snd_iprintf(buffer
, "SYNC IN: Lock %d, Sync %d, Freq %s\n",
4855 (status3
& 0x400) ? 1 : 0,
4856 (status3
& 0x800) ? 1 : 0,
4857 texts_freq
[(status2
>> 12) & 0xF]);
4861 #ifdef CONFIG_SND_DEBUG
4863 snd_hdspm_proc_read_debug(struct snd_info_entry
*entry
,
4864 struct snd_info_buffer
*buffer
)
4866 struct hdspm
*hdspm
= entry
->private_data
;
4870 for (i
= 0; i
< 256 /* 1024*64 */; i
+= j
) {
4871 snd_iprintf(buffer
, "0x%08X: ", i
);
4872 for (j
= 0; j
< 16; j
+= 4)
4873 snd_iprintf(buffer
, "%08X ", hdspm_read(hdspm
, i
+ j
));
4874 snd_iprintf(buffer
, "\n");
4880 static void snd_hdspm_proc_ports_in(struct snd_info_entry
*entry
,
4881 struct snd_info_buffer
*buffer
)
4883 struct hdspm
*hdspm
= entry
->private_data
;
4886 snd_iprintf(buffer
, "# generated by hdspm\n");
4888 for (i
= 0; i
< hdspm
->max_channels_in
; i
++) {
4889 snd_iprintf(buffer
, "%d=%s\n", i
+1, hdspm
->port_names_in
[i
]);
4893 static void snd_hdspm_proc_ports_out(struct snd_info_entry
*entry
,
4894 struct snd_info_buffer
*buffer
)
4896 struct hdspm
*hdspm
= entry
->private_data
;
4899 snd_iprintf(buffer
, "# generated by hdspm\n");
4901 for (i
= 0; i
< hdspm
->max_channels_out
; i
++) {
4902 snd_iprintf(buffer
, "%d=%s\n", i
+1, hdspm
->port_names_out
[i
]);
4907 static void snd_hdspm_proc_init(struct hdspm
*hdspm
)
4909 struct snd_info_entry
*entry
;
4911 if (!snd_card_proc_new(hdspm
->card
, "hdspm", &entry
)) {
4912 switch (hdspm
->io_type
) {
4914 snd_info_set_text_ops(entry
, hdspm
,
4915 snd_hdspm_proc_read_aes32
);
4918 snd_info_set_text_ops(entry
, hdspm
,
4919 snd_hdspm_proc_read_madi
);
4922 /* snd_info_set_text_ops(entry, hdspm,
4923 snd_hdspm_proc_read_madiface); */
4926 snd_info_set_text_ops(entry
, hdspm
,
4927 snd_hdspm_proc_read_raydat
);
4934 if (!snd_card_proc_new(hdspm
->card
, "ports.in", &entry
)) {
4935 snd_info_set_text_ops(entry
, hdspm
, snd_hdspm_proc_ports_in
);
4938 if (!snd_card_proc_new(hdspm
->card
, "ports.out", &entry
)) {
4939 snd_info_set_text_ops(entry
, hdspm
, snd_hdspm_proc_ports_out
);
4942 #ifdef CONFIG_SND_DEBUG
4943 /* debug file to read all hdspm registers */
4944 if (!snd_card_proc_new(hdspm
->card
, "debug", &entry
))
4945 snd_info_set_text_ops(entry
, hdspm
,
4946 snd_hdspm_proc_read_debug
);
4950 /*------------------------------------------------------------
4952 ------------------------------------------------------------*/
4954 static int snd_hdspm_set_defaults(struct hdspm
* hdspm
)
4956 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
4957 hold it (e.g. during module initialization).
4962 hdspm
->settings_register
= 0;
4964 switch (hdspm
->io_type
) {
4967 hdspm
->control_register
=
4968 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
4973 hdspm
->settings_register
= 0x1 + 0x1000;
4974 /* Magic values are: LAT_0, LAT_2, Master, freq1, tx64ch, inp_0,
4976 hdspm
->control_register
=
4977 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
4981 hdspm
->control_register
=
4982 HDSPM_ClockModeMaster
| /* Master Cloack Mode on */
4983 hdspm_encode_latency(7) | /* latency max=8192samples */
4984 HDSPM_SyncRef0
| /* AES1 is syncclock */
4985 HDSPM_LineOut
| /* Analog output in */
4986 HDSPM_Professional
; /* Professional mode */
4990 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
4992 if (AES32
== hdspm
->io_type
) {
4993 /* No control2 register for AES32 */
4994 #ifdef SNDRV_BIG_ENDIAN
4995 hdspm
->control2_register
= HDSPM_BIGENDIAN_MODE
;
4997 hdspm
->control2_register
= 0;
5000 hdspm_write(hdspm
, HDSPM_control2Reg
, hdspm
->control2_register
);
5002 hdspm_compute_period_size(hdspm
);
5004 /* silence everything */
5006 all_in_all_mixer(hdspm
, 0 * UNITY_GAIN
);
5008 if (hdspm
->io_type
== AIO
|| hdspm
->io_type
== RayDAT
) {
5009 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
5012 /* set a default rate so that the channel map is set up. */
5013 hdspm_set_rate(hdspm
, 48000, 1);
5019 /*------------------------------------------------------------
5021 ------------------------------------------------------------*/
5023 static irqreturn_t
snd_hdspm_interrupt(int irq
, void *dev_id
)
5025 struct hdspm
*hdspm
= (struct hdspm
*) dev_id
;
5026 unsigned int status
;
5027 int i
, audio
, midi
, schedule
= 0;
5030 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
5032 audio
= status
& HDSPM_audioIRQPending
;
5033 midi
= status
& (HDSPM_midi0IRQPending
| HDSPM_midi1IRQPending
|
5034 HDSPM_midi2IRQPending
| HDSPM_midi3IRQPending
);
5036 /* now = get_cycles(); */
5038 * LAT_2..LAT_0 period counter (win) counter (mac)
5039 * 6 4096 ~256053425 ~514672358
5040 * 5 2048 ~128024983 ~257373821
5041 * 4 1024 ~64023706 ~128718089
5042 * 3 512 ~32005945 ~64385999
5043 * 2 256 ~16003039 ~32260176
5044 * 1 128 ~7998738 ~16194507
5045 * 0 64 ~3998231 ~8191558
5048 snd_printk(KERN_INFO "snd_hdspm_interrupt %llu @ %llx\n",
5049 now-hdspm->last_interrupt, status & 0xFFC0);
5050 hdspm->last_interrupt = now;
5053 if (!audio
&& !midi
)
5056 hdspm_write(hdspm
, HDSPM_interruptConfirmation
, 0);
5061 if (hdspm
->capture_substream
)
5062 snd_pcm_period_elapsed(hdspm
->capture_substream
);
5064 if (hdspm
->playback_substream
)
5065 snd_pcm_period_elapsed(hdspm
->playback_substream
);
5070 while (i
< hdspm
->midiPorts
) {
5071 if ((hdspm_read(hdspm
,
5072 hdspm
->midi
[i
].statusIn
) & 0xff) &&
5073 (status
& hdspm
->midi
[i
].irq
)) {
5074 /* we disable interrupts for this input until
5075 * processing is done
5077 hdspm
->control_register
&= ~hdspm
->midi
[i
].ie
;
5078 hdspm_write(hdspm
, HDSPM_controlRegister
,
5079 hdspm
->control_register
);
5080 hdspm
->midi
[i
].pending
= 1;
5088 tasklet_hi_schedule(&hdspm
->midi_tasklet
);
5094 /*------------------------------------------------------------
5096 ------------------------------------------------------------*/
5099 static snd_pcm_uframes_t
snd_hdspm_hw_pointer(struct snd_pcm_substream
5102 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5103 return hdspm_hw_pointer(hdspm
);
5107 static int snd_hdspm_reset(struct snd_pcm_substream
*substream
)
5109 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
5110 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5111 struct snd_pcm_substream
*other
;
5113 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5114 other
= hdspm
->capture_substream
;
5116 other
= hdspm
->playback_substream
;
5119 runtime
->status
->hw_ptr
= hdspm_hw_pointer(hdspm
);
5121 runtime
->status
->hw_ptr
= 0;
5123 struct snd_pcm_substream
*s
;
5124 struct snd_pcm_runtime
*oruntime
= other
->runtime
;
5125 snd_pcm_group_for_each_entry(s
, substream
) {
5127 oruntime
->status
->hw_ptr
=
5128 runtime
->status
->hw_ptr
;
5136 static int snd_hdspm_hw_params(struct snd_pcm_substream
*substream
,
5137 struct snd_pcm_hw_params
*params
)
5139 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5145 spin_lock_irq(&hdspm
->lock
);
5147 if (substream
->pstr
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5148 this_pid
= hdspm
->playback_pid
;
5149 other_pid
= hdspm
->capture_pid
;
5151 this_pid
= hdspm
->capture_pid
;
5152 other_pid
= hdspm
->playback_pid
;
5155 if (other_pid
> 0 && this_pid
!= other_pid
) {
5157 /* The other stream is open, and not by the same
5158 task as this one. Make sure that the parameters
5159 that matter are the same.
5162 if (params_rate(params
) != hdspm
->system_sample_rate
) {
5163 spin_unlock_irq(&hdspm
->lock
);
5164 _snd_pcm_hw_param_setempty(params
,
5165 SNDRV_PCM_HW_PARAM_RATE
);
5169 if (params_period_size(params
) != hdspm
->period_bytes
/ 4) {
5170 spin_unlock_irq(&hdspm
->lock
);
5171 _snd_pcm_hw_param_setempty(params
,
5172 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5178 spin_unlock_irq(&hdspm
->lock
);
5180 /* how to make sure that the rate matches an externally-set one ? */
5182 spin_lock_irq(&hdspm
->lock
);
5183 err
= hdspm_set_rate(hdspm
, params_rate(params
), 0);
5185 snd_printk(KERN_INFO
"err on hdspm_set_rate: %d\n", err
);
5186 spin_unlock_irq(&hdspm
->lock
);
5187 _snd_pcm_hw_param_setempty(params
,
5188 SNDRV_PCM_HW_PARAM_RATE
);
5191 spin_unlock_irq(&hdspm
->lock
);
5193 err
= hdspm_set_interrupt_interval(hdspm
,
5194 params_period_size(params
));
5196 snd_printk(KERN_INFO
"err on hdspm_set_interrupt_interval: %d\n", err
);
5197 _snd_pcm_hw_param_setempty(params
,
5198 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5202 /* Memory allocation, takashi's method, dont know if we should
5205 /* malloc all buffer even if not enabled to get sure */
5206 /* Update for MADI rev 204: we need to allocate for all channels,
5207 * otherwise it doesn't work at 96kHz */
5210 snd_pcm_lib_malloc_pages(substream
, HDSPM_DMA_AREA_BYTES
);
5212 snd_printk(KERN_INFO
"err on snd_pcm_lib_malloc_pages: %d\n", err
);
5216 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5218 hdspm_set_sgbuf(hdspm
, substream
, HDSPM_pageAddressBufferOut
,
5219 params_channels(params
));
5221 for (i
= 0; i
< params_channels(params
); ++i
)
5222 snd_hdspm_enable_out(hdspm
, i
, 1);
5224 hdspm
->playback_buffer
=
5225 (unsigned char *) substream
->runtime
->dma_area
;
5226 snd_printdd("Allocated sample buffer for playback at %p\n",
5227 hdspm
->playback_buffer
);
5229 hdspm_set_sgbuf(hdspm
, substream
, HDSPM_pageAddressBufferIn
,
5230 params_channels(params
));
5232 for (i
= 0; i
< params_channels(params
); ++i
)
5233 snd_hdspm_enable_in(hdspm
, i
, 1);
5235 hdspm
->capture_buffer
=
5236 (unsigned char *) substream
->runtime
->dma_area
;
5237 snd_printdd("Allocated sample buffer for capture at %p\n",
5238 hdspm
->capture_buffer
);
5242 snd_printdd("Allocated sample buffer for %s at 0x%08X\n",
5243 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5244 "playback" : "capture",
5245 snd_pcm_sgbuf_get_addr(substream, 0));
5248 snd_printdd("set_hwparams: %s %d Hz, %d channels, bs = %d\n",
5249 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5250 "playback" : "capture",
5251 params_rate(params), params_channels(params),
5252 params_buffer_size(params));
5256 /* Switch to native float format if requested */
5257 if (SNDRV_PCM_FORMAT_FLOAT_LE
== params_format(params
)) {
5258 if (!(hdspm
->control_register
& HDSPe_FLOAT_FORMAT
))
5259 snd_printk(KERN_INFO
"hdspm: Switching to native 32bit LE float format.\n");
5261 hdspm
->control_register
|= HDSPe_FLOAT_FORMAT
;
5262 } else if (SNDRV_PCM_FORMAT_S32_LE
== params_format(params
)) {
5263 if (hdspm
->control_register
& HDSPe_FLOAT_FORMAT
)
5264 snd_printk(KERN_INFO
"hdspm: Switching to native 32bit LE integer format.\n");
5266 hdspm
->control_register
&= ~HDSPe_FLOAT_FORMAT
;
5268 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
5273 static int snd_hdspm_hw_free(struct snd_pcm_substream
*substream
)
5276 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5278 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5280 /* params_channels(params) should be enough,
5281 but to get sure in case of error */
5282 for (i
= 0; i
< hdspm
->max_channels_out
; ++i
)
5283 snd_hdspm_enable_out(hdspm
, i
, 0);
5285 hdspm
->playback_buffer
= NULL
;
5287 for (i
= 0; i
< hdspm
->max_channels_in
; ++i
)
5288 snd_hdspm_enable_in(hdspm
, i
, 0);
5290 hdspm
->capture_buffer
= NULL
;
5294 snd_pcm_lib_free_pages(substream
);
5300 static int snd_hdspm_channel_info(struct snd_pcm_substream
*substream
,
5301 struct snd_pcm_channel_info
*info
)
5303 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5305 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5306 if (snd_BUG_ON(info
->channel
>= hdspm
->max_channels_out
)) {
5307 snd_printk(KERN_INFO
"snd_hdspm_channel_info: output channel out of range (%d)\n", info
->channel
);
5311 if (hdspm
->channel_map_out
[info
->channel
] < 0) {
5312 snd_printk(KERN_INFO
"snd_hdspm_channel_info: output channel %d mapped out\n", info
->channel
);
5316 info
->offset
= hdspm
->channel_map_out
[info
->channel
] *
5317 HDSPM_CHANNEL_BUFFER_BYTES
;
5319 if (snd_BUG_ON(info
->channel
>= hdspm
->max_channels_in
)) {
5320 snd_printk(KERN_INFO
"snd_hdspm_channel_info: input channel out of range (%d)\n", info
->channel
);
5324 if (hdspm
->channel_map_in
[info
->channel
] < 0) {
5325 snd_printk(KERN_INFO
"snd_hdspm_channel_info: input channel %d mapped out\n", info
->channel
);
5329 info
->offset
= hdspm
->channel_map_in
[info
->channel
] *
5330 HDSPM_CHANNEL_BUFFER_BYTES
;
5339 static int snd_hdspm_ioctl(struct snd_pcm_substream
*substream
,
5340 unsigned int cmd
, void *arg
)
5343 case SNDRV_PCM_IOCTL1_RESET
:
5344 return snd_hdspm_reset(substream
);
5346 case SNDRV_PCM_IOCTL1_CHANNEL_INFO
:
5348 struct snd_pcm_channel_info
*info
= arg
;
5349 return snd_hdspm_channel_info(substream
, info
);
5355 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
5358 static int snd_hdspm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
5360 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5361 struct snd_pcm_substream
*other
;
5364 spin_lock(&hdspm
->lock
);
5365 running
= hdspm
->running
;
5367 case SNDRV_PCM_TRIGGER_START
:
5368 running
|= 1 << substream
->stream
;
5370 case SNDRV_PCM_TRIGGER_STOP
:
5371 running
&= ~(1 << substream
->stream
);
5375 spin_unlock(&hdspm
->lock
);
5378 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5379 other
= hdspm
->capture_substream
;
5381 other
= hdspm
->playback_substream
;
5384 struct snd_pcm_substream
*s
;
5385 snd_pcm_group_for_each_entry(s
, substream
) {
5387 snd_pcm_trigger_done(s
, substream
);
5388 if (cmd
== SNDRV_PCM_TRIGGER_START
)
5389 running
|= 1 << s
->stream
;
5391 running
&= ~(1 << s
->stream
);
5395 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
5396 if (!(running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
))
5397 && substream
->stream
==
5398 SNDRV_PCM_STREAM_CAPTURE
)
5399 hdspm_silence_playback(hdspm
);
5402 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5403 hdspm_silence_playback(hdspm
);
5406 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
5407 hdspm_silence_playback(hdspm
);
5410 snd_pcm_trigger_done(substream
, substream
);
5411 if (!hdspm
->running
&& running
)
5412 hdspm_start_audio(hdspm
);
5413 else if (hdspm
->running
&& !running
)
5414 hdspm_stop_audio(hdspm
);
5415 hdspm
->running
= running
;
5416 spin_unlock(&hdspm
->lock
);
5421 static int snd_hdspm_prepare(struct snd_pcm_substream
*substream
)
5426 static struct snd_pcm_hardware snd_hdspm_playback_subinfo
= {
5427 .info
= (SNDRV_PCM_INFO_MMAP
|
5428 SNDRV_PCM_INFO_MMAP_VALID
|
5429 SNDRV_PCM_INFO_NONINTERLEAVED
|
5430 SNDRV_PCM_INFO_SYNC_START
| SNDRV_PCM_INFO_DOUBLE
),
5431 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
5432 .rates
= (SNDRV_PCM_RATE_32000
|
5433 SNDRV_PCM_RATE_44100
|
5434 SNDRV_PCM_RATE_48000
|
5435 SNDRV_PCM_RATE_64000
|
5436 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
5437 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
),
5441 .channels_max
= HDSPM_MAX_CHANNELS
,
5443 HDSPM_CHANNEL_BUFFER_BYTES
* HDSPM_MAX_CHANNELS
,
5444 .period_bytes_min
= (32 * 4),
5445 .period_bytes_max
= (8192 * 4) * HDSPM_MAX_CHANNELS
,
5451 static struct snd_pcm_hardware snd_hdspm_capture_subinfo
= {
5452 .info
= (SNDRV_PCM_INFO_MMAP
|
5453 SNDRV_PCM_INFO_MMAP_VALID
|
5454 SNDRV_PCM_INFO_NONINTERLEAVED
|
5455 SNDRV_PCM_INFO_SYNC_START
),
5456 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
5457 .rates
= (SNDRV_PCM_RATE_32000
|
5458 SNDRV_PCM_RATE_44100
|
5459 SNDRV_PCM_RATE_48000
|
5460 SNDRV_PCM_RATE_64000
|
5461 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
5462 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
),
5466 .channels_max
= HDSPM_MAX_CHANNELS
,
5468 HDSPM_CHANNEL_BUFFER_BYTES
* HDSPM_MAX_CHANNELS
,
5469 .period_bytes_min
= (32 * 4),
5470 .period_bytes_max
= (8192 * 4) * HDSPM_MAX_CHANNELS
,
5476 static int snd_hdspm_hw_rule_in_channels_rate(struct snd_pcm_hw_params
*params
,
5477 struct snd_pcm_hw_rule
*rule
)
5479 struct hdspm
*hdspm
= rule
->private;
5480 struct snd_interval
*c
=
5481 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5482 struct snd_interval
*r
=
5483 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5485 if (r
->min
> 96000 && r
->max
<= 192000) {
5486 struct snd_interval t
= {
5487 .min
= hdspm
->qs_in_channels
,
5488 .max
= hdspm
->qs_in_channels
,
5491 return snd_interval_refine(c
, &t
);
5492 } else if (r
->min
> 48000 && r
->max
<= 96000) {
5493 struct snd_interval t
= {
5494 .min
= hdspm
->ds_in_channels
,
5495 .max
= hdspm
->ds_in_channels
,
5498 return snd_interval_refine(c
, &t
);
5499 } else if (r
->max
< 64000) {
5500 struct snd_interval t
= {
5501 .min
= hdspm
->ss_in_channels
,
5502 .max
= hdspm
->ss_in_channels
,
5505 return snd_interval_refine(c
, &t
);
5511 static int snd_hdspm_hw_rule_out_channels_rate(struct snd_pcm_hw_params
*params
,
5512 struct snd_pcm_hw_rule
* rule
)
5514 struct hdspm
*hdspm
= rule
->private;
5515 struct snd_interval
*c
=
5516 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5517 struct snd_interval
*r
=
5518 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5520 if (r
->min
> 96000 && r
->max
<= 192000) {
5521 struct snd_interval t
= {
5522 .min
= hdspm
->qs_out_channels
,
5523 .max
= hdspm
->qs_out_channels
,
5526 return snd_interval_refine(c
, &t
);
5527 } else if (r
->min
> 48000 && r
->max
<= 96000) {
5528 struct snd_interval t
= {
5529 .min
= hdspm
->ds_out_channels
,
5530 .max
= hdspm
->ds_out_channels
,
5533 return snd_interval_refine(c
, &t
);
5534 } else if (r
->max
< 64000) {
5535 struct snd_interval t
= {
5536 .min
= hdspm
->ss_out_channels
,
5537 .max
= hdspm
->ss_out_channels
,
5540 return snd_interval_refine(c
, &t
);
5546 static int snd_hdspm_hw_rule_rate_in_channels(struct snd_pcm_hw_params
*params
,
5547 struct snd_pcm_hw_rule
* rule
)
5549 struct hdspm
*hdspm
= rule
->private;
5550 struct snd_interval
*c
=
5551 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5552 struct snd_interval
*r
=
5553 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5555 if (c
->min
>= hdspm
->ss_in_channels
) {
5556 struct snd_interval t
= {
5561 return snd_interval_refine(r
, &t
);
5562 } else if (c
->max
<= hdspm
->qs_in_channels
) {
5563 struct snd_interval t
= {
5568 return snd_interval_refine(r
, &t
);
5569 } else if (c
->max
<= hdspm
->ds_in_channels
) {
5570 struct snd_interval t
= {
5575 return snd_interval_refine(r
, &t
);
5580 static int snd_hdspm_hw_rule_rate_out_channels(struct snd_pcm_hw_params
*params
,
5581 struct snd_pcm_hw_rule
*rule
)
5583 struct hdspm
*hdspm
= rule
->private;
5584 struct snd_interval
*c
=
5585 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5586 struct snd_interval
*r
=
5587 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5589 if (c
->min
>= hdspm
->ss_out_channels
) {
5590 struct snd_interval t
= {
5595 return snd_interval_refine(r
, &t
);
5596 } else if (c
->max
<= hdspm
->qs_out_channels
) {
5597 struct snd_interval t
= {
5602 return snd_interval_refine(r
, &t
);
5603 } else if (c
->max
<= hdspm
->ds_out_channels
) {
5604 struct snd_interval t
= {
5609 return snd_interval_refine(r
, &t
);
5615 static int snd_hdspm_hw_rule_in_channels(struct snd_pcm_hw_params
*params
,
5616 struct snd_pcm_hw_rule
*rule
)
5618 unsigned int list
[3];
5619 struct hdspm
*hdspm
= rule
->private;
5620 struct snd_interval
*c
= hw_param_interval(params
,
5621 SNDRV_PCM_HW_PARAM_CHANNELS
);
5623 list
[0] = hdspm
->qs_in_channels
;
5624 list
[1] = hdspm
->ds_in_channels
;
5625 list
[2] = hdspm
->ss_in_channels
;
5626 return snd_interval_list(c
, 3, list
, 0);
5629 static int snd_hdspm_hw_rule_out_channels(struct snd_pcm_hw_params
*params
,
5630 struct snd_pcm_hw_rule
*rule
)
5632 unsigned int list
[3];
5633 struct hdspm
*hdspm
= rule
->private;
5634 struct snd_interval
*c
= hw_param_interval(params
,
5635 SNDRV_PCM_HW_PARAM_CHANNELS
);
5637 list
[0] = hdspm
->qs_out_channels
;
5638 list
[1] = hdspm
->ds_out_channels
;
5639 list
[2] = hdspm
->ss_out_channels
;
5640 return snd_interval_list(c
, 3, list
, 0);
5644 static unsigned int hdspm_aes32_sample_rates
[] = {
5645 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000
5648 static struct snd_pcm_hw_constraint_list
5649 hdspm_hw_constraints_aes32_sample_rates
= {
5650 .count
= ARRAY_SIZE(hdspm_aes32_sample_rates
),
5651 .list
= hdspm_aes32_sample_rates
,
5655 static int snd_hdspm_playback_open(struct snd_pcm_substream
*substream
)
5657 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5658 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
5660 spin_lock_irq(&hdspm
->lock
);
5662 snd_pcm_set_sync(substream
);
5665 runtime
->hw
= snd_hdspm_playback_subinfo
;
5667 if (hdspm
->capture_substream
== NULL
)
5668 hdspm_stop_audio(hdspm
);
5670 hdspm
->playback_pid
= current
->pid
;
5671 hdspm
->playback_substream
= substream
;
5673 spin_unlock_irq(&hdspm
->lock
);
5675 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
5676 snd_pcm_hw_constraint_pow2(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5678 switch (hdspm
->io_type
) {
5681 snd_pcm_hw_constraint_minmax(runtime
,
5682 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5684 /* RayDAT & AIO have a fixed buffer of 16384 samples per channel */
5685 snd_pcm_hw_constraint_minmax(runtime
,
5686 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
5691 snd_pcm_hw_constraint_minmax(runtime
,
5692 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5697 if (AES32
== hdspm
->io_type
) {
5698 runtime
->hw
.rates
|= SNDRV_PCM_RATE_KNOT
;
5699 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5700 &hdspm_hw_constraints_aes32_sample_rates
);
5702 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5703 snd_hdspm_hw_rule_rate_out_channels
, hdspm
,
5704 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5707 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5708 snd_hdspm_hw_rule_out_channels
, hdspm
,
5709 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5711 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5712 snd_hdspm_hw_rule_out_channels_rate
, hdspm
,
5713 SNDRV_PCM_HW_PARAM_RATE
, -1);
5718 static int snd_hdspm_playback_release(struct snd_pcm_substream
*substream
)
5720 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5722 spin_lock_irq(&hdspm
->lock
);
5724 hdspm
->playback_pid
= -1;
5725 hdspm
->playback_substream
= NULL
;
5727 spin_unlock_irq(&hdspm
->lock
);
5733 static int snd_hdspm_capture_open(struct snd_pcm_substream
*substream
)
5735 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5736 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
5738 spin_lock_irq(&hdspm
->lock
);
5739 snd_pcm_set_sync(substream
);
5740 runtime
->hw
= snd_hdspm_capture_subinfo
;
5742 if (hdspm
->playback_substream
== NULL
)
5743 hdspm_stop_audio(hdspm
);
5745 hdspm
->capture_pid
= current
->pid
;
5746 hdspm
->capture_substream
= substream
;
5748 spin_unlock_irq(&hdspm
->lock
);
5750 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
5751 snd_pcm_hw_constraint_pow2(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5753 switch (hdspm
->io_type
) {
5756 snd_pcm_hw_constraint_minmax(runtime
,
5757 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5759 snd_pcm_hw_constraint_minmax(runtime
,
5760 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
5765 snd_pcm_hw_constraint_minmax(runtime
,
5766 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5771 if (AES32
== hdspm
->io_type
) {
5772 runtime
->hw
.rates
|= SNDRV_PCM_RATE_KNOT
;
5773 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5774 &hdspm_hw_constraints_aes32_sample_rates
);
5776 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5777 snd_hdspm_hw_rule_rate_in_channels
, hdspm
,
5778 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5781 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5782 snd_hdspm_hw_rule_in_channels
, hdspm
,
5783 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5785 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5786 snd_hdspm_hw_rule_in_channels_rate
, hdspm
,
5787 SNDRV_PCM_HW_PARAM_RATE
, -1);
5792 static int snd_hdspm_capture_release(struct snd_pcm_substream
*substream
)
5794 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5796 spin_lock_irq(&hdspm
->lock
);
5798 hdspm
->capture_pid
= -1;
5799 hdspm
->capture_substream
= NULL
;
5801 spin_unlock_irq(&hdspm
->lock
);
5805 static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep
*hw
, struct file
*file
)
5807 /* we have nothing to initialize but the call is required */
5811 static inline int copy_u32_le(void __user
*dest
, void __iomem
*src
)
5813 u32 val
= readl(src
);
5814 return copy_to_user(dest
, &val
, 4);
5817 static int snd_hdspm_hwdep_ioctl(struct snd_hwdep
*hw
, struct file
*file
,
5818 unsigned int cmd
, unsigned long arg
)
5820 void __user
*argp
= (void __user
*)arg
;
5821 struct hdspm
*hdspm
= hw
->private_data
;
5822 struct hdspm_mixer_ioctl mixer
;
5823 struct hdspm_config info
;
5824 struct hdspm_status status
;
5825 struct hdspm_version hdspm_version
;
5826 struct hdspm_peak_rms
*levels
;
5827 struct hdspm_ltc ltc
;
5828 unsigned int statusregister
;
5829 long unsigned int s
;
5834 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS
:
5835 levels
= &hdspm
->peak_rms
;
5836 for (i
= 0; i
< HDSPM_MAX_CHANNELS
; i
++) {
5837 levels
->input_peaks
[i
] =
5838 readl(hdspm
->iobase
+
5839 HDSPM_MADI_INPUT_PEAK
+ i
*4);
5840 levels
->playback_peaks
[i
] =
5841 readl(hdspm
->iobase
+
5842 HDSPM_MADI_PLAYBACK_PEAK
+ i
*4);
5843 levels
->output_peaks
[i
] =
5844 readl(hdspm
->iobase
+
5845 HDSPM_MADI_OUTPUT_PEAK
+ i
*4);
5847 levels
->input_rms
[i
] =
5848 ((uint64_t) readl(hdspm
->iobase
+
5849 HDSPM_MADI_INPUT_RMS_H
+ i
*4) << 32) |
5850 (uint64_t) readl(hdspm
->iobase
+
5851 HDSPM_MADI_INPUT_RMS_L
+ i
*4);
5852 levels
->playback_rms
[i
] =
5853 ((uint64_t)readl(hdspm
->iobase
+
5854 HDSPM_MADI_PLAYBACK_RMS_H
+i
*4) << 32) |
5855 (uint64_t)readl(hdspm
->iobase
+
5856 HDSPM_MADI_PLAYBACK_RMS_L
+ i
*4);
5857 levels
->output_rms
[i
] =
5858 ((uint64_t)readl(hdspm
->iobase
+
5859 HDSPM_MADI_OUTPUT_RMS_H
+ i
*4) << 32) |
5860 (uint64_t)readl(hdspm
->iobase
+
5861 HDSPM_MADI_OUTPUT_RMS_L
+ i
*4);
5864 if (hdspm
->system_sample_rate
> 96000) {
5866 } else if (hdspm
->system_sample_rate
> 48000) {
5871 levels
->status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
5873 s
= copy_to_user(argp
, levels
, sizeof(struct hdspm_peak_rms
));
5875 /* snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu
5876 [Levels]\n", sizeof(struct hdspm_peak_rms), s);
5882 case SNDRV_HDSPM_IOCTL_GET_LTC
:
5883 ltc
.ltc
= hdspm_read(hdspm
, HDSPM_RD_TCO
);
5884 i
= hdspm_read(hdspm
, HDSPM_RD_TCO
+ 4);
5885 if (i
& HDSPM_TCO1_LTC_Input_valid
) {
5886 switch (i
& (HDSPM_TCO1_LTC_Format_LSB
|
5887 HDSPM_TCO1_LTC_Format_MSB
)) {
5889 ltc
.format
= fps_24
;
5891 case HDSPM_TCO1_LTC_Format_LSB
:
5892 ltc
.format
= fps_25
;
5894 case HDSPM_TCO1_LTC_Format_MSB
:
5895 ltc
.format
= fps_2997
;
5901 if (i
& HDSPM_TCO1_set_drop_frame_flag
) {
5902 ltc
.frame
= drop_frame
;
5904 ltc
.frame
= full_frame
;
5907 ltc
.format
= format_invalid
;
5908 ltc
.frame
= frame_invalid
;
5910 if (i
& HDSPM_TCO1_Video_Input_Format_NTSC
) {
5911 ltc
.input_format
= ntsc
;
5912 } else if (i
& HDSPM_TCO1_Video_Input_Format_PAL
) {
5913 ltc
.input_format
= pal
;
5915 ltc
.input_format
= no_video
;
5918 s
= copy_to_user(argp
, <c
, sizeof(struct hdspm_ltc
));
5921 snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu [LTC]\n", sizeof(struct hdspm_ltc), s); */
5927 case SNDRV_HDSPM_IOCTL_GET_CONFIG
:
5929 memset(&info
, 0, sizeof(info
));
5930 spin_lock_irq(&hdspm
->lock
);
5931 info
.pref_sync_ref
= hdspm_pref_sync_ref(hdspm
);
5932 info
.wordclock_sync_check
= hdspm_wc_sync_check(hdspm
);
5934 info
.system_sample_rate
= hdspm
->system_sample_rate
;
5935 info
.autosync_sample_rate
=
5936 hdspm_external_sample_rate(hdspm
);
5937 info
.system_clock_mode
= hdspm_system_clock_mode(hdspm
);
5938 info
.clock_source
= hdspm_clock_source(hdspm
);
5939 info
.autosync_ref
= hdspm_autosync_ref(hdspm
);
5940 info
.line_out
= hdspm_toggle_setting(hdspm
, HDSPM_LineOut
);
5942 spin_unlock_irq(&hdspm
->lock
);
5943 if (copy_to_user(argp
, &info
, sizeof(info
)))
5947 case SNDRV_HDSPM_IOCTL_GET_STATUS
:
5948 memset(&status
, 0, sizeof(status
));
5950 status
.card_type
= hdspm
->io_type
;
5952 status
.autosync_source
= hdspm_autosync_ref(hdspm
);
5954 status
.card_clock
= 110069313433624ULL;
5955 status
.master_period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
5957 switch (hdspm
->io_type
) {
5960 status
.card_specific
.madi
.sync_wc
=
5961 hdspm_wc_sync_check(hdspm
);
5962 status
.card_specific
.madi
.sync_madi
=
5963 hdspm_madi_sync_check(hdspm
);
5964 status
.card_specific
.madi
.sync_tco
=
5965 hdspm_tco_sync_check(hdspm
);
5966 status
.card_specific
.madi
.sync_in
=
5967 hdspm_sync_in_sync_check(hdspm
);
5970 hdspm_read(hdspm
, HDSPM_statusRegister
);
5971 status
.card_specific
.madi
.madi_input
=
5972 (statusregister
& HDSPM_AB_int
) ? 1 : 0;
5973 status
.card_specific
.madi
.channel_format
=
5974 (statusregister
& HDSPM_RX_64ch
) ? 1 : 0;
5975 /* TODO: Mac driver sets it when f_s>48kHz */
5976 status
.card_specific
.madi
.frame_format
= 0;
5982 if (copy_to_user(argp
, &status
, sizeof(status
)))
5988 case SNDRV_HDSPM_IOCTL_GET_VERSION
:
5989 memset(&hdspm_version
, 0, sizeof(hdspm_version
));
5991 hdspm_version
.card_type
= hdspm
->io_type
;
5992 strncpy(hdspm_version
.cardname
, hdspm
->card_name
,
5993 sizeof(hdspm_version
.cardname
));
5994 hdspm_version
.serial
= hdspm
->serial
;
5995 hdspm_version
.firmware_rev
= hdspm
->firmware_rev
;
5996 hdspm_version
.addons
= 0;
5998 hdspm_version
.addons
|= HDSPM_ADDON_TCO
;
6000 if (copy_to_user(argp
, &hdspm_version
,
6001 sizeof(hdspm_version
)))
6005 case SNDRV_HDSPM_IOCTL_GET_MIXER
:
6006 if (copy_from_user(&mixer
, argp
, sizeof(mixer
)))
6008 if (copy_to_user((void __user
*)mixer
.mixer
, hdspm
->mixer
,
6009 sizeof(struct hdspm_mixer
)))
6019 static struct snd_pcm_ops snd_hdspm_playback_ops
= {
6020 .open
= snd_hdspm_playback_open
,
6021 .close
= snd_hdspm_playback_release
,
6022 .ioctl
= snd_hdspm_ioctl
,
6023 .hw_params
= snd_hdspm_hw_params
,
6024 .hw_free
= snd_hdspm_hw_free
,
6025 .prepare
= snd_hdspm_prepare
,
6026 .trigger
= snd_hdspm_trigger
,
6027 .pointer
= snd_hdspm_hw_pointer
,
6028 .page
= snd_pcm_sgbuf_ops_page
,
6031 static struct snd_pcm_ops snd_hdspm_capture_ops
= {
6032 .open
= snd_hdspm_capture_open
,
6033 .close
= snd_hdspm_capture_release
,
6034 .ioctl
= snd_hdspm_ioctl
,
6035 .hw_params
= snd_hdspm_hw_params
,
6036 .hw_free
= snd_hdspm_hw_free
,
6037 .prepare
= snd_hdspm_prepare
,
6038 .trigger
= snd_hdspm_trigger
,
6039 .pointer
= snd_hdspm_hw_pointer
,
6040 .page
= snd_pcm_sgbuf_ops_page
,
6043 static int snd_hdspm_create_hwdep(struct snd_card
*card
,
6044 struct hdspm
*hdspm
)
6046 struct snd_hwdep
*hw
;
6049 err
= snd_hwdep_new(card
, "HDSPM hwdep", 0, &hw
);
6054 hw
->private_data
= hdspm
;
6055 strcpy(hw
->name
, "HDSPM hwdep interface");
6057 hw
->ops
.open
= snd_hdspm_hwdep_dummy_op
;
6058 hw
->ops
.ioctl
= snd_hdspm_hwdep_ioctl
;
6059 hw
->ops
.ioctl_compat
= snd_hdspm_hwdep_ioctl
;
6060 hw
->ops
.release
= snd_hdspm_hwdep_dummy_op
;
6066 /*------------------------------------------------------------
6068 ------------------------------------------------------------*/
6069 static int snd_hdspm_preallocate_memory(struct hdspm
*hdspm
)
6072 struct snd_pcm
*pcm
;
6077 wanted
= HDSPM_DMA_AREA_BYTES
;
6080 snd_pcm_lib_preallocate_pages_for_all(pcm
,
6081 SNDRV_DMA_TYPE_DEV_SG
,
6082 snd_dma_pci_data(hdspm
->pci
),
6086 snd_printdd("Could not preallocate %zd Bytes\n", wanted
);
6090 snd_printdd(" Preallocated %zd Bytes\n", wanted
);
6096 static void hdspm_set_sgbuf(struct hdspm
*hdspm
,
6097 struct snd_pcm_substream
*substream
,
6098 unsigned int reg
, int channels
)
6102 /* continuous memory segment */
6103 for (i
= 0; i
< (channels
* 16); i
++)
6104 hdspm_write(hdspm
, reg
+ 4 * i
,
6105 snd_pcm_sgbuf_get_addr(substream
, 4096 * i
));
6109 /* ------------- ALSA Devices ---------------------------- */
6110 static int snd_hdspm_create_pcm(struct snd_card
*card
,
6111 struct hdspm
*hdspm
)
6113 struct snd_pcm
*pcm
;
6116 err
= snd_pcm_new(card
, hdspm
->card_name
, 0, 1, 1, &pcm
);
6121 pcm
->private_data
= hdspm
;
6122 strcpy(pcm
->name
, hdspm
->card_name
);
6124 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
6125 &snd_hdspm_playback_ops
);
6126 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
,
6127 &snd_hdspm_capture_ops
);
6129 pcm
->info_flags
= SNDRV_PCM_INFO_JOINT_DUPLEX
;
6131 err
= snd_hdspm_preallocate_memory(hdspm
);
6138 static inline void snd_hdspm_initialize_midi_flush(struct hdspm
* hdspm
)
6142 for (i
= 0; i
< hdspm
->midiPorts
; i
++)
6143 snd_hdspm_flush_midi_input(hdspm
, i
);
6146 static int snd_hdspm_create_alsa_devices(struct snd_card
*card
,
6147 struct hdspm
*hdspm
)
6151 snd_printdd("Create card...\n");
6152 err
= snd_hdspm_create_pcm(card
, hdspm
);
6157 while (i
< hdspm
->midiPorts
) {
6158 err
= snd_hdspm_create_midi(card
, hdspm
, i
);
6165 err
= snd_hdspm_create_controls(card
, hdspm
);
6169 err
= snd_hdspm_create_hwdep(card
, hdspm
);
6173 snd_printdd("proc init...\n");
6174 snd_hdspm_proc_init(hdspm
);
6176 hdspm
->system_sample_rate
= -1;
6177 hdspm
->last_external_sample_rate
= -1;
6178 hdspm
->last_internal_sample_rate
= -1;
6179 hdspm
->playback_pid
= -1;
6180 hdspm
->capture_pid
= -1;
6181 hdspm
->capture_substream
= NULL
;
6182 hdspm
->playback_substream
= NULL
;
6184 snd_printdd("Set defaults...\n");
6185 err
= snd_hdspm_set_defaults(hdspm
);
6189 snd_printdd("Update mixer controls...\n");
6190 hdspm_update_simple_mixer_controls(hdspm
);
6192 snd_printdd("Initializeing complete ???\n");
6194 err
= snd_card_register(card
);
6196 snd_printk(KERN_ERR
"HDSPM: error registering card\n");
6200 snd_printdd("... yes now\n");
6205 static int snd_hdspm_create(struct snd_card
*card
,
6206 struct hdspm
*hdspm
)
6209 struct pci_dev
*pci
= hdspm
->pci
;
6211 unsigned long io_extent
;
6216 spin_lock_init(&hdspm
->lock
);
6218 pci_read_config_word(hdspm
->pci
,
6219 PCI_CLASS_REVISION
, &hdspm
->firmware_rev
);
6221 strcpy(card
->mixername
, "Xilinx FPGA");
6222 strcpy(card
->driver
, "HDSPM");
6224 switch (hdspm
->firmware_rev
) {
6225 case HDSPM_RAYDAT_REV
:
6226 hdspm
->io_type
= RayDAT
;
6227 hdspm
->card_name
= "RME RayDAT";
6228 hdspm
->midiPorts
= 2;
6231 hdspm
->io_type
= AIO
;
6232 hdspm
->card_name
= "RME AIO";
6233 hdspm
->midiPorts
= 1;
6235 case HDSPM_MADIFACE_REV
:
6236 hdspm
->io_type
= MADIface
;
6237 hdspm
->card_name
= "RME MADIface";
6238 hdspm
->midiPorts
= 1;
6241 if ((hdspm
->firmware_rev
== 0xf0) ||
6242 ((hdspm
->firmware_rev
>= 0xe6) &&
6243 (hdspm
->firmware_rev
<= 0xea))) {
6244 hdspm
->io_type
= AES32
;
6245 hdspm
->card_name
= "RME AES32";
6246 hdspm
->midiPorts
= 2;
6247 } else if ((hdspm
->firmware_rev
== 0xd2) ||
6248 ((hdspm
->firmware_rev
>= 0xc8) &&
6249 (hdspm
->firmware_rev
<= 0xcf))) {
6250 hdspm
->io_type
= MADI
;
6251 hdspm
->card_name
= "RME MADI";
6252 hdspm
->midiPorts
= 3;
6255 "HDSPM: unknown firmware revision %x\n",
6256 hdspm
->firmware_rev
);
6261 err
= pci_enable_device(pci
);
6265 pci_set_master(hdspm
->pci
);
6267 err
= pci_request_regions(pci
, "hdspm");
6271 hdspm
->port
= pci_resource_start(pci
, 0);
6272 io_extent
= pci_resource_len(pci
, 0);
6274 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
6275 hdspm
->port
, hdspm
->port
+ io_extent
- 1);
6277 hdspm
->iobase
= ioremap_nocache(hdspm
->port
, io_extent
);
6278 if (!hdspm
->iobase
) {
6279 snd_printk(KERN_ERR
"HDSPM: "
6280 "unable to remap region 0x%lx-0x%lx\n",
6281 hdspm
->port
, hdspm
->port
+ io_extent
- 1);
6284 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
6285 (unsigned long)hdspm
->iobase
, hdspm
->port
,
6286 hdspm
->port
+ io_extent
- 1);
6288 if (request_irq(pci
->irq
, snd_hdspm_interrupt
,
6289 IRQF_SHARED
, KBUILD_MODNAME
, hdspm
)) {
6290 snd_printk(KERN_ERR
"HDSPM: unable to use IRQ %d\n", pci
->irq
);
6294 snd_printdd("use IRQ %d\n", pci
->irq
);
6296 hdspm
->irq
= pci
->irq
;
6298 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
6299 sizeof(struct hdspm_mixer
));
6300 hdspm
->mixer
= kzalloc(sizeof(struct hdspm_mixer
), GFP_KERNEL
);
6301 if (!hdspm
->mixer
) {
6302 snd_printk(KERN_ERR
"HDSPM: "
6303 "unable to kmalloc Mixer memory of %d Bytes\n",
6304 (int)sizeof(struct hdspm_mixer
));
6308 hdspm
->port_names_in
= NULL
;
6309 hdspm
->port_names_out
= NULL
;
6311 switch (hdspm
->io_type
) {
6313 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
= AES32_CHANNELS
;
6314 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
= AES32_CHANNELS
;
6315 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
= AES32_CHANNELS
;
6317 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6319 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6321 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6323 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6325 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6327 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6330 hdspm
->max_channels_out
= hdspm
->max_channels_in
=
6332 hdspm
->port_names_in
= hdspm
->port_names_out
=
6334 hdspm
->channel_map_in
= hdspm
->channel_map_out
=
6341 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
=
6343 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
=
6345 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
=
6348 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6349 channel_map_unity_ss
;
6350 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6351 channel_map_unity_ss
;
6352 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6353 channel_map_unity_ss
;
6355 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6357 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6359 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6364 if (0 == (hdspm_read(hdspm
, HDSPM_statusRegister2
) & HDSPM_s2_AEBI_D
)) {
6365 snd_printk(KERN_INFO
"HDSPM: AEB input board found, but not supported\n");
6368 hdspm
->ss_in_channels
= AIO_IN_SS_CHANNELS
;
6369 hdspm
->ds_in_channels
= AIO_IN_DS_CHANNELS
;
6370 hdspm
->qs_in_channels
= AIO_IN_QS_CHANNELS
;
6371 hdspm
->ss_out_channels
= AIO_OUT_SS_CHANNELS
;
6372 hdspm
->ds_out_channels
= AIO_OUT_DS_CHANNELS
;
6373 hdspm
->qs_out_channels
= AIO_OUT_QS_CHANNELS
;
6375 hdspm
->channel_map_out_ss
= channel_map_aio_out_ss
;
6376 hdspm
->channel_map_out_ds
= channel_map_aio_out_ds
;
6377 hdspm
->channel_map_out_qs
= channel_map_aio_out_qs
;
6379 hdspm
->channel_map_in_ss
= channel_map_aio_in_ss
;
6380 hdspm
->channel_map_in_ds
= channel_map_aio_in_ds
;
6381 hdspm
->channel_map_in_qs
= channel_map_aio_in_qs
;
6383 hdspm
->port_names_in_ss
= texts_ports_aio_in_ss
;
6384 hdspm
->port_names_out_ss
= texts_ports_aio_out_ss
;
6385 hdspm
->port_names_in_ds
= texts_ports_aio_in_ds
;
6386 hdspm
->port_names_out_ds
= texts_ports_aio_out_ds
;
6387 hdspm
->port_names_in_qs
= texts_ports_aio_in_qs
;
6388 hdspm
->port_names_out_qs
= texts_ports_aio_out_qs
;
6393 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
=
6395 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
=
6397 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
=
6400 hdspm
->max_channels_in
= RAYDAT_SS_CHANNELS
;
6401 hdspm
->max_channels_out
= RAYDAT_SS_CHANNELS
;
6403 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6404 channel_map_raydat_ss
;
6405 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6406 channel_map_raydat_ds
;
6407 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6408 channel_map_raydat_qs
;
6409 hdspm
->channel_map_in
= hdspm
->channel_map_out
=
6410 channel_map_raydat_ss
;
6412 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6413 texts_ports_raydat_ss
;
6414 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6415 texts_ports_raydat_ds
;
6416 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6417 texts_ports_raydat_qs
;
6425 switch (hdspm
->io_type
) {
6428 if (hdspm_read(hdspm
, HDSPM_statusRegister2
) &
6429 HDSPM_s2_tco_detect
) {
6431 hdspm
->tco
= kzalloc(sizeof(struct hdspm_tco
),
6433 if (NULL
!= hdspm
->tco
) {
6434 hdspm_tco_write(hdspm
);
6436 snd_printk(KERN_INFO
"HDSPM: AIO/RayDAT TCO module found\n");
6443 if (hdspm_read(hdspm
, HDSPM_statusRegister
) & HDSPM_tco_detect
) {
6445 hdspm
->tco
= kzalloc(sizeof(struct hdspm_tco
),
6447 if (NULL
!= hdspm
->tco
) {
6448 hdspm_tco_write(hdspm
);
6450 snd_printk(KERN_INFO
"HDSPM: MADI TCO module found\n");
6461 switch (hdspm
->io_type
) {
6464 hdspm
->texts_autosync
= texts_autosync_aes_tco
;
6465 hdspm
->texts_autosync_items
= 10;
6467 hdspm
->texts_autosync
= texts_autosync_aes
;
6468 hdspm
->texts_autosync_items
= 9;
6474 hdspm
->texts_autosync
= texts_autosync_madi_tco
;
6475 hdspm
->texts_autosync_items
= 4;
6477 hdspm
->texts_autosync
= texts_autosync_madi
;
6478 hdspm
->texts_autosync_items
= 3;
6488 hdspm
->texts_autosync
= texts_autosync_raydat_tco
;
6489 hdspm
->texts_autosync_items
= 9;
6491 hdspm
->texts_autosync
= texts_autosync_raydat
;
6492 hdspm
->texts_autosync_items
= 8;
6498 hdspm
->texts_autosync
= texts_autosync_aio_tco
;
6499 hdspm
->texts_autosync_items
= 6;
6501 hdspm
->texts_autosync
= texts_autosync_aio
;
6502 hdspm
->texts_autosync_items
= 5;
6508 tasklet_init(&hdspm
->midi_tasklet
,
6509 hdspm_midi_tasklet
, (unsigned long) hdspm
);
6512 if (hdspm
->io_type
!= MADIface
) {
6513 hdspm
->serial
= (hdspm_read(hdspm
,
6514 HDSPM_midiStatusIn0
)>>8) & 0xFFFFFF;
6515 /* id contains either a user-provided value or the default
6516 * NULL. If it's the default, we're safe to
6517 * fill card->id with the serial number.
6519 * If the serial number is 0xFFFFFF, then we're dealing with
6520 * an old PCI revision that comes without a sane number. In
6521 * this case, we don't set card->id to avoid collisions
6522 * when running with multiple cards.
6524 if (NULL
== id
[hdspm
->dev
] && hdspm
->serial
!= 0xFFFFFF) {
6525 sprintf(card
->id
, "HDSPMx%06x", hdspm
->serial
);
6526 snd_card_set_id(card
, card
->id
);
6530 snd_printdd("create alsa devices.\n");
6531 err
= snd_hdspm_create_alsa_devices(card
, hdspm
);
6535 snd_hdspm_initialize_midi_flush(hdspm
);
6541 static int snd_hdspm_free(struct hdspm
* hdspm
)
6546 /* stop th audio, and cancel all interrupts */
6547 hdspm
->control_register
&=
6548 ~(HDSPM_Start
| HDSPM_AudioInterruptEnable
|
6549 HDSPM_Midi0InterruptEnable
| HDSPM_Midi1InterruptEnable
|
6550 HDSPM_Midi2InterruptEnable
| HDSPM_Midi3InterruptEnable
);
6551 hdspm_write(hdspm
, HDSPM_controlRegister
,
6552 hdspm
->control_register
);
6555 if (hdspm
->irq
>= 0)
6556 free_irq(hdspm
->irq
, (void *) hdspm
);
6558 kfree(hdspm
->mixer
);
6561 iounmap(hdspm
->iobase
);
6564 pci_release_regions(hdspm
->pci
);
6566 pci_disable_device(hdspm
->pci
);
6571 static void snd_hdspm_card_free(struct snd_card
*card
)
6573 struct hdspm
*hdspm
= card
->private_data
;
6576 snd_hdspm_free(hdspm
);
6580 static int snd_hdspm_probe(struct pci_dev
*pci
,
6581 const struct pci_device_id
*pci_id
)
6584 struct hdspm
*hdspm
;
6585 struct snd_card
*card
;
6588 if (dev
>= SNDRV_CARDS
)
6595 err
= snd_card_create(index
[dev
], id
[dev
],
6596 THIS_MODULE
, sizeof(struct hdspm
), &card
);
6600 hdspm
= card
->private_data
;
6601 card
->private_free
= snd_hdspm_card_free
;
6605 snd_card_set_dev(card
, &pci
->dev
);
6607 err
= snd_hdspm_create(card
, hdspm
);
6609 snd_card_free(card
);
6613 if (hdspm
->io_type
!= MADIface
) {
6614 sprintf(card
->shortname
, "%s_%x",
6617 sprintf(card
->longname
, "%s S/N 0x%x at 0x%lx, irq %d",
6620 hdspm
->port
, hdspm
->irq
);
6622 sprintf(card
->shortname
, "%s", hdspm
->card_name
);
6623 sprintf(card
->longname
, "%s at 0x%lx, irq %d",
6624 hdspm
->card_name
, hdspm
->port
, hdspm
->irq
);
6627 err
= snd_card_register(card
);
6629 snd_card_free(card
);
6633 pci_set_drvdata(pci
, card
);
6639 static void snd_hdspm_remove(struct pci_dev
*pci
)
6641 snd_card_free(pci_get_drvdata(pci
));
6642 pci_set_drvdata(pci
, NULL
);
6645 static struct pci_driver hdspm_driver
= {
6646 .name
= KBUILD_MODNAME
,
6647 .id_table
= snd_hdspm_ids
,
6648 .probe
= snd_hdspm_probe
,
6649 .remove
= snd_hdspm_remove
,
6652 module_pci_driver(hdspm_driver
);