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_wcFreq_bit 22
445 /* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function
447 #define HDSPM_AES32_syncref_bit 16
448 /* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */
450 #define HDSPM_AES32_AUTOSYNC_FROM_WORD 0
451 #define HDSPM_AES32_AUTOSYNC_FROM_AES1 1
452 #define HDSPM_AES32_AUTOSYNC_FROM_AES2 2
453 #define HDSPM_AES32_AUTOSYNC_FROM_AES3 3
454 #define HDSPM_AES32_AUTOSYNC_FROM_AES4 4
455 #define HDSPM_AES32_AUTOSYNC_FROM_AES5 5
456 #define HDSPM_AES32_AUTOSYNC_FROM_AES6 6
457 #define HDSPM_AES32_AUTOSYNC_FROM_AES7 7
458 #define HDSPM_AES32_AUTOSYNC_FROM_AES8 8
459 #define HDSPM_AES32_AUTOSYNC_FROM_NONE 9
462 /* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */
463 #define HDSPM_LockAES 0x80
464 #define HDSPM_LockAES1 0x80
465 #define HDSPM_LockAES2 0x40
466 #define HDSPM_LockAES3 0x20
467 #define HDSPM_LockAES4 0x10
468 #define HDSPM_LockAES5 0x8
469 #define HDSPM_LockAES6 0x4
470 #define HDSPM_LockAES7 0x2
471 #define HDSPM_LockAES8 0x1
474 After windows driver sources, bits 4*i to 4*i+3 give the input frequency on
486 NB: Timecode register doesn't seem to work on AES32 card revision 230
490 #define UNITY_GAIN 32768 /* = 65536/2 */
491 #define MINUS_INFINITY_GAIN 0
493 /* Number of channels for different Speed Modes */
494 #define MADI_SS_CHANNELS 64
495 #define MADI_DS_CHANNELS 32
496 #define MADI_QS_CHANNELS 16
498 #define RAYDAT_SS_CHANNELS 36
499 #define RAYDAT_DS_CHANNELS 20
500 #define RAYDAT_QS_CHANNELS 12
502 #define AIO_IN_SS_CHANNELS 14
503 #define AIO_IN_DS_CHANNELS 10
504 #define AIO_IN_QS_CHANNELS 8
505 #define AIO_OUT_SS_CHANNELS 16
506 #define AIO_OUT_DS_CHANNELS 12
507 #define AIO_OUT_QS_CHANNELS 10
509 #define AES32_CHANNELS 16
511 /* the size of a substream (1 mono data stream) */
512 #define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
513 #define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
515 /* the size of the area we need to allocate for DMA transfers. the
516 size is the same regardless of the number of channels, and
517 also the latency to use.
518 for one direction !!!
520 #define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
521 #define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
523 #define HDSPM_RAYDAT_REV 211
524 #define HDSPM_AIO_REV 212
525 #define HDSPM_MADIFACE_REV 213
527 /* speed factor modes */
528 #define HDSPM_SPEED_SINGLE 0
529 #define HDSPM_SPEED_DOUBLE 1
530 #define HDSPM_SPEED_QUAD 2
532 /* names for speed modes */
533 static char *hdspm_speed_names
[] = { "single", "double", "quad" };
535 static char *texts_autosync_aes_tco
[] = { "Word Clock",
536 "AES1", "AES2", "AES3", "AES4",
537 "AES5", "AES6", "AES7", "AES8",
539 static char *texts_autosync_aes
[] = { "Word Clock",
540 "AES1", "AES2", "AES3", "AES4",
541 "AES5", "AES6", "AES7", "AES8" };
542 static char *texts_autosync_madi_tco
[] = { "Word Clock",
543 "MADI", "TCO", "Sync In" };
544 static char *texts_autosync_madi
[] = { "Word Clock",
547 static char *texts_autosync_raydat_tco
[] = {
549 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
550 "AES", "SPDIF", "TCO", "Sync In"
552 static char *texts_autosync_raydat
[] = {
554 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
555 "AES", "SPDIF", "Sync In"
557 static char *texts_autosync_aio_tco
[] = {
559 "ADAT", "AES", "SPDIF", "TCO", "Sync In"
561 static char *texts_autosync_aio
[] = { "Word Clock",
562 "ADAT", "AES", "SPDIF", "Sync In" };
564 static char *texts_freq
[] = {
577 static char *texts_ports_madi
[] = {
578 "MADI.1", "MADI.2", "MADI.3", "MADI.4", "MADI.5", "MADI.6",
579 "MADI.7", "MADI.8", "MADI.9", "MADI.10", "MADI.11", "MADI.12",
580 "MADI.13", "MADI.14", "MADI.15", "MADI.16", "MADI.17", "MADI.18",
581 "MADI.19", "MADI.20", "MADI.21", "MADI.22", "MADI.23", "MADI.24",
582 "MADI.25", "MADI.26", "MADI.27", "MADI.28", "MADI.29", "MADI.30",
583 "MADI.31", "MADI.32", "MADI.33", "MADI.34", "MADI.35", "MADI.36",
584 "MADI.37", "MADI.38", "MADI.39", "MADI.40", "MADI.41", "MADI.42",
585 "MADI.43", "MADI.44", "MADI.45", "MADI.46", "MADI.47", "MADI.48",
586 "MADI.49", "MADI.50", "MADI.51", "MADI.52", "MADI.53", "MADI.54",
587 "MADI.55", "MADI.56", "MADI.57", "MADI.58", "MADI.59", "MADI.60",
588 "MADI.61", "MADI.62", "MADI.63", "MADI.64",
592 static char *texts_ports_raydat_ss
[] = {
593 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4", "ADAT1.5", "ADAT1.6",
594 "ADAT1.7", "ADAT1.8", "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
595 "ADAT2.5", "ADAT2.6", "ADAT2.7", "ADAT2.8", "ADAT3.1", "ADAT3.2",
596 "ADAT3.3", "ADAT3.4", "ADAT3.5", "ADAT3.6", "ADAT3.7", "ADAT3.8",
597 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4", "ADAT4.5", "ADAT4.6",
598 "ADAT4.7", "ADAT4.8",
603 static char *texts_ports_raydat_ds
[] = {
604 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4",
605 "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
606 "ADAT3.1", "ADAT3.2", "ADAT3.3", "ADAT3.4",
607 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4",
612 static char *texts_ports_raydat_qs
[] = {
613 "ADAT1.1", "ADAT1.2",
614 "ADAT2.1", "ADAT2.2",
615 "ADAT3.1", "ADAT3.2",
616 "ADAT4.1", "ADAT4.2",
622 static char *texts_ports_aio_in_ss
[] = {
623 "Analogue.L", "Analogue.R",
625 "SPDIF.L", "SPDIF.R",
626 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
630 static char *texts_ports_aio_out_ss
[] = {
631 "Analogue.L", "Analogue.R",
633 "SPDIF.L", "SPDIF.R",
634 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
639 static char *texts_ports_aio_in_ds
[] = {
640 "Analogue.L", "Analogue.R",
642 "SPDIF.L", "SPDIF.R",
643 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
646 static char *texts_ports_aio_out_ds
[] = {
647 "Analogue.L", "Analogue.R",
649 "SPDIF.L", "SPDIF.R",
650 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
654 static char *texts_ports_aio_in_qs
[] = {
655 "Analogue.L", "Analogue.R",
657 "SPDIF.L", "SPDIF.R",
658 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
661 static char *texts_ports_aio_out_qs
[] = {
662 "Analogue.L", "Analogue.R",
664 "SPDIF.L", "SPDIF.R",
665 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
669 static char *texts_ports_aes32
[] = {
670 "AES.1", "AES.2", "AES.3", "AES.4", "AES.5", "AES.6", "AES.7",
671 "AES.8", "AES.9.", "AES.10", "AES.11", "AES.12", "AES.13", "AES.14",
675 /* These tables map the ALSA channels 1..N to the channels that we
676 need to use in order to find the relevant channel buffer. RME
677 refers to this kind of mapping as between "the ADAT channel and
678 the DMA channel." We index it using the logical audio channel,
679 and the value is the DMA channel (i.e. channel buffer number)
680 where the data for that channel can be read/written from/to.
683 static char channel_map_unity_ss
[HDSPM_MAX_CHANNELS
] = {
684 0, 1, 2, 3, 4, 5, 6, 7,
685 8, 9, 10, 11, 12, 13, 14, 15,
686 16, 17, 18, 19, 20, 21, 22, 23,
687 24, 25, 26, 27, 28, 29, 30, 31,
688 32, 33, 34, 35, 36, 37, 38, 39,
689 40, 41, 42, 43, 44, 45, 46, 47,
690 48, 49, 50, 51, 52, 53, 54, 55,
691 56, 57, 58, 59, 60, 61, 62, 63
694 static char channel_map_raydat_ss
[HDSPM_MAX_CHANNELS
] = {
695 4, 5, 6, 7, 8, 9, 10, 11, /* ADAT 1 */
696 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT 2 */
697 20, 21, 22, 23, 24, 25, 26, 27, /* ADAT 3 */
698 28, 29, 30, 31, 32, 33, 34, 35, /* ADAT 4 */
702 -1, -1, -1, -1, -1, -1, -1, -1,
703 -1, -1, -1, -1, -1, -1, -1, -1,
704 -1, -1, -1, -1, -1, -1, -1, -1,
707 static char channel_map_raydat_ds
[HDSPM_MAX_CHANNELS
] = {
708 4, 5, 6, 7, /* ADAT 1 */
709 8, 9, 10, 11, /* ADAT 2 */
710 12, 13, 14, 15, /* ADAT 3 */
711 16, 17, 18, 19, /* ADAT 4 */
715 -1, -1, -1, -1, -1, -1, -1, -1,
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,
722 static char channel_map_raydat_qs
[HDSPM_MAX_CHANNELS
] = {
730 -1, -1, -1, -1, -1, -1, -1, -1,
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,
738 static char channel_map_aio_in_ss
[HDSPM_MAX_CHANNELS
] = {
741 10, 11, /* spdif in */
742 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT in */
744 -1, -1, -1, -1, -1, -1, -1, -1,
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,
752 static char channel_map_aio_out_ss
[HDSPM_MAX_CHANNELS
] = {
755 10, 11, /* spdif out */
756 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT out */
757 6, 7, /* phone out */
758 -1, -1, -1, -1, -1, -1, -1, -1,
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,
766 static char channel_map_aio_in_ds
[HDSPM_MAX_CHANNELS
] = {
769 10, 11, /* spdif in */
770 12, 14, 16, 18, /* adat in */
771 -1, -1, -1, -1, -1, -1,
772 -1, -1, -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
780 static char channel_map_aio_out_ds
[HDSPM_MAX_CHANNELS
] = {
783 10, 11, /* spdif out */
784 12, 14, 16, 18, /* adat out */
785 6, 7, /* phone out */
787 -1, -1, -1, -1, -1, -1, -1, -1,
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
795 static char channel_map_aio_in_qs
[HDSPM_MAX_CHANNELS
] = {
798 10, 11, /* spdif in */
799 12, 16, /* adat in */
800 -1, -1, -1, -1, -1, -1, -1, -1,
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
809 static char channel_map_aio_out_qs
[HDSPM_MAX_CHANNELS
] = {
812 10, 11, /* spdif out */
813 12, 16, /* adat out */
814 6, 7, /* phone out */
815 -1, -1, -1, -1, -1, -1,
816 -1, -1, -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
824 static char channel_map_aes32
[HDSPM_MAX_CHANNELS
] = {
825 0, 1, 2, 3, 4, 5, 6, 7,
826 8, 9, 10, 11, 12, 13, 14, 15,
827 -1, -1, -1, -1, -1, -1, -1, -1,
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
838 struct snd_rawmidi
*rmidi
;
839 struct snd_rawmidi_substream
*input
;
840 struct snd_rawmidi_substream
*output
;
841 char istimer
; /* timer in use */
842 struct timer_list timer
;
859 int term
; /* 0 = off, 1 = on */
864 /* only one playback and/or capture stream */
865 struct snd_pcm_substream
*capture_substream
;
866 struct snd_pcm_substream
*playback_substream
;
868 char *card_name
; /* for procinfo */
869 unsigned short firmware_rev
; /* dont know if relevant (yes if AES32)*/
873 int monitor_outs
; /* set up monitoring outs init flag */
875 u32 control_register
; /* cached value */
876 u32 control2_register
; /* cached value */
877 u32 settings_register
;
879 struct hdspm_midi midi
[4];
880 struct tasklet_struct midi_tasklet
;
883 unsigned char ss_in_channels
;
884 unsigned char ds_in_channels
;
885 unsigned char qs_in_channels
;
886 unsigned char ss_out_channels
;
887 unsigned char ds_out_channels
;
888 unsigned char qs_out_channels
;
890 unsigned char max_channels_in
;
891 unsigned char max_channels_out
;
893 signed char *channel_map_in
;
894 signed char *channel_map_out
;
896 signed char *channel_map_in_ss
, *channel_map_in_ds
, *channel_map_in_qs
;
897 signed char *channel_map_out_ss
, *channel_map_out_ds
, *channel_map_out_qs
;
899 char **port_names_in
;
900 char **port_names_out
;
902 char **port_names_in_ss
, **port_names_in_ds
, **port_names_in_qs
;
903 char **port_names_out_ss
, **port_names_out_ds
, **port_names_out_qs
;
905 unsigned char *playback_buffer
; /* suitably aligned address */
906 unsigned char *capture_buffer
; /* suitably aligned address */
908 pid_t capture_pid
; /* process id which uses capture */
909 pid_t playback_pid
; /* process id which uses capture */
910 int running
; /* running status */
912 int last_external_sample_rate
; /* samplerate mystic ... */
913 int last_internal_sample_rate
;
914 int system_sample_rate
;
916 int dev
; /* Hardware vars... */
919 void __iomem
*iobase
;
921 int irq_count
; /* for debug */
924 struct snd_card
*card
; /* one card */
925 struct snd_pcm
*pcm
; /* has one pcm */
926 struct snd_hwdep
*hwdep
; /* and a hwdep for additional ioctl */
927 struct pci_dev
*pci
; /* and an pci info */
930 /* fast alsa mixer */
931 struct snd_kcontrol
*playback_mixer_ctls
[HDSPM_MAX_CHANNELS
];
932 /* but input to much, so not used */
933 struct snd_kcontrol
*input_mixer_ctls
[HDSPM_MAX_CHANNELS
];
934 /* full mixer accessible over mixer ioctl or hwdep-device */
935 struct hdspm_mixer
*mixer
;
937 struct hdspm_tco
*tco
; /* NULL if no TCO detected */
939 char **texts_autosync
;
940 int texts_autosync_items
;
942 cycles_t last_interrupt
;
946 struct hdspm_peak_rms peak_rms
;
950 static DEFINE_PCI_DEVICE_TABLE(snd_hdspm_ids
) = {
952 .vendor
= PCI_VENDOR_ID_XILINX
,
953 .device
= PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI
,
954 .subvendor
= PCI_ANY_ID
,
955 .subdevice
= PCI_ANY_ID
,
962 MODULE_DEVICE_TABLE(pci
, snd_hdspm_ids
);
965 static int __devinit
snd_hdspm_create_alsa_devices(struct snd_card
*card
,
966 struct hdspm
* hdspm
);
967 static int __devinit
snd_hdspm_create_pcm(struct snd_card
*card
,
968 struct hdspm
* hdspm
);
970 static inline void snd_hdspm_initialize_midi_flush(struct hdspm
*hdspm
);
971 static int hdspm_update_simple_mixer_controls(struct hdspm
*hdspm
);
972 static int hdspm_autosync_ref(struct hdspm
*hdspm
);
973 static int snd_hdspm_set_defaults(struct hdspm
*hdspm
);
974 static void hdspm_set_sgbuf(struct hdspm
*hdspm
,
975 struct snd_pcm_substream
*substream
,
976 unsigned int reg
, int channels
);
978 static inline int HDSPM_bit2freq(int n
)
980 static const int bit2freq_tab
[] = {
981 0, 32000, 44100, 48000, 64000, 88200,
982 96000, 128000, 176400, 192000 };
985 return bit2freq_tab
[n
];
988 /* Write/read to/from HDSPM with Adresses in Bytes
989 not words but only 32Bit writes are allowed */
991 static inline void hdspm_write(struct hdspm
* hdspm
, unsigned int reg
,
994 writel(val
, hdspm
->iobase
+ reg
);
997 static inline unsigned int hdspm_read(struct hdspm
* hdspm
, unsigned int reg
)
999 return readl(hdspm
->iobase
+ reg
);
1002 /* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
1003 mixer is write only on hardware so we have to cache him for read
1004 each fader is a u32, but uses only the first 16 bit */
1006 static inline int hdspm_read_in_gain(struct hdspm
* hdspm
, unsigned int chan
,
1009 if (chan
>= HDSPM_MIXER_CHANNELS
|| in
>= HDSPM_MIXER_CHANNELS
)
1012 return hdspm
->mixer
->ch
[chan
].in
[in
];
1015 static inline int hdspm_read_pb_gain(struct hdspm
* hdspm
, unsigned int chan
,
1018 if (chan
>= HDSPM_MIXER_CHANNELS
|| pb
>= HDSPM_MIXER_CHANNELS
)
1020 return hdspm
->mixer
->ch
[chan
].pb
[pb
];
1023 static int hdspm_write_in_gain(struct hdspm
*hdspm
, unsigned int chan
,
1024 unsigned int in
, unsigned short data
)
1026 if (chan
>= HDSPM_MIXER_CHANNELS
|| in
>= HDSPM_MIXER_CHANNELS
)
1030 HDSPM_MADI_mixerBase
+
1031 ((in
+ 128 * chan
) * sizeof(u32
)),
1032 (hdspm
->mixer
->ch
[chan
].in
[in
] = data
& 0xFFFF));
1036 static int hdspm_write_pb_gain(struct hdspm
*hdspm
, unsigned int chan
,
1037 unsigned int pb
, unsigned short data
)
1039 if (chan
>= HDSPM_MIXER_CHANNELS
|| pb
>= HDSPM_MIXER_CHANNELS
)
1043 HDSPM_MADI_mixerBase
+
1044 ((64 + pb
+ 128 * chan
) * sizeof(u32
)),
1045 (hdspm
->mixer
->ch
[chan
].pb
[pb
] = data
& 0xFFFF));
1050 /* enable DMA for specific channels, now available for DSP-MADI */
1051 static inline void snd_hdspm_enable_in(struct hdspm
* hdspm
, int i
, int v
)
1053 hdspm_write(hdspm
, HDSPM_inputEnableBase
+ (4 * i
), v
);
1056 static inline void snd_hdspm_enable_out(struct hdspm
* hdspm
, int i
, int v
)
1058 hdspm_write(hdspm
, HDSPM_outputEnableBase
+ (4 * i
), v
);
1061 /* check if same process is writing and reading */
1062 static int snd_hdspm_use_is_exclusive(struct hdspm
*hdspm
)
1064 unsigned long flags
;
1067 spin_lock_irqsave(&hdspm
->lock
, flags
);
1068 if ((hdspm
->playback_pid
!= hdspm
->capture_pid
) &&
1069 (hdspm
->playback_pid
>= 0) && (hdspm
->capture_pid
>= 0)) {
1072 spin_unlock_irqrestore(&hdspm
->lock
, flags
);
1076 /* check for external sample rate */
1077 static int hdspm_external_sample_rate(struct hdspm
*hdspm
)
1079 unsigned int status
, status2
, timecode
;
1080 int syncref
, rate
= 0, rate_bits
;
1082 switch (hdspm
->io_type
) {
1084 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
1085 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1086 timecode
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
1088 syncref
= hdspm_autosync_ref(hdspm
);
1090 if (syncref
== HDSPM_AES32_AUTOSYNC_FROM_WORD
&&
1091 status
& HDSPM_AES32_wcLock
)
1092 return HDSPM_bit2freq((status
>> HDSPM_AES32_wcFreq_bit
) & 0xF);
1094 if (syncref
>= HDSPM_AES32_AUTOSYNC_FROM_AES1
&&
1095 syncref
<= HDSPM_AES32_AUTOSYNC_FROM_AES8
&&
1096 status2
& (HDSPM_LockAES
>>
1097 (syncref
- HDSPM_AES32_AUTOSYNC_FROM_AES1
)))
1098 return HDSPM_bit2freq((timecode
>> (4*(syncref
-HDSPM_AES32_AUTOSYNC_FROM_AES1
))) & 0xF);
1103 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1105 if (!(status
& HDSPM_madiLock
)) {
1106 rate
= 0; /* no lock */
1108 switch (status
& (HDSPM_status1_freqMask
)) {
1109 case HDSPM_status1_F_0
*1:
1110 rate
= 32000; break;
1111 case HDSPM_status1_F_0
*2:
1112 rate
= 44100; break;
1113 case HDSPM_status1_F_0
*3:
1114 rate
= 48000; break;
1115 case HDSPM_status1_F_0
*4:
1116 rate
= 64000; break;
1117 case HDSPM_status1_F_0
*5:
1118 rate
= 88200; break;
1119 case HDSPM_status1_F_0
*6:
1120 rate
= 96000; break;
1121 case HDSPM_status1_F_0
*7:
1122 rate
= 128000; break;
1123 case HDSPM_status1_F_0
*8:
1124 rate
= 176400; break;
1125 case HDSPM_status1_F_0
*9:
1126 rate
= 192000; break;
1137 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
1138 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1141 /* if wordclock has synced freq and wordclock is valid */
1142 if ((status2
& HDSPM_wcLock
) != 0 &&
1143 (status2
& HDSPM_SelSyncRef0
) == 0) {
1145 rate_bits
= status2
& HDSPM_wcFreqMask
;
1148 switch (rate_bits
) {
1149 case HDSPM_wcFreq32
:
1152 case HDSPM_wcFreq44_1
:
1155 case HDSPM_wcFreq48
:
1158 case HDSPM_wcFreq64
:
1161 case HDSPM_wcFreq88_2
:
1164 case HDSPM_wcFreq96
:
1173 /* if rate detected and Syncref is Word than have it,
1174 * word has priority to MADI
1177 (status2
& HDSPM_SelSyncRefMask
) == HDSPM_SelSyncRef_WORD
)
1180 /* maybe a madi input (which is taken if sel sync is madi) */
1181 if (status
& HDSPM_madiLock
) {
1182 rate_bits
= status
& HDSPM_madiFreqMask
;
1184 switch (rate_bits
) {
1185 case HDSPM_madiFreq32
:
1188 case HDSPM_madiFreq44_1
:
1191 case HDSPM_madiFreq48
:
1194 case HDSPM_madiFreq64
:
1197 case HDSPM_madiFreq88_2
:
1200 case HDSPM_madiFreq96
:
1203 case HDSPM_madiFreq128
:
1206 case HDSPM_madiFreq176_4
:
1209 case HDSPM_madiFreq192
:
1217 /* QS and DS rates normally can not be detected
1218 * automatically by the card. Only exception is MADI
1219 * in 96k frame mode.
1221 * So if we read SS values (32 .. 48k), check for
1222 * user-provided DS/QS bits in the control register
1223 * and multiply the base frequency accordingly.
1225 if (rate
<= 48000) {
1226 if (hdspm
->control_register
& HDSPM_QuadSpeed
)
1228 else if (hdspm
->control_register
&
1239 /* return latency in samples per period */
1240 static int hdspm_get_latency(struct hdspm
*hdspm
)
1244 n
= hdspm_decode_latency(hdspm
->control_register
);
1246 /* Special case for new RME cards with 32 samples period size.
1247 * The three latency bits in the control register
1248 * (HDSP_LatencyMask) encode latency values of 64 samples as
1249 * 0, 128 samples as 1 ... 4096 samples as 6. For old cards, 7
1250 * denotes 8192 samples, but on new cards like RayDAT or AIO,
1251 * it corresponds to 32 samples.
1253 if ((7 == n
) && (RayDAT
== hdspm
->io_type
|| AIO
== hdspm
->io_type
))
1256 return 1 << (n
+ 6);
1259 /* Latency function */
1260 static inline void hdspm_compute_period_size(struct hdspm
*hdspm
)
1262 hdspm
->period_bytes
= 4 * hdspm_get_latency(hdspm
);
1266 static snd_pcm_uframes_t
hdspm_hw_pointer(struct hdspm
*hdspm
)
1270 position
= hdspm_read(hdspm
, HDSPM_statusRegister
);
1272 switch (hdspm
->io_type
) {
1275 position
&= HDSPM_BufferPositionMask
;
1276 position
/= 4; /* Bytes per sample */
1279 position
= (position
& HDSPM_BufferID
) ?
1280 (hdspm
->period_bytes
/ 4) : 0;
1287 static inline void hdspm_start_audio(struct hdspm
* s
)
1289 s
->control_register
|= (HDSPM_AudioInterruptEnable
| HDSPM_Start
);
1290 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1293 static inline void hdspm_stop_audio(struct hdspm
* s
)
1295 s
->control_register
&= ~(HDSPM_Start
| HDSPM_AudioInterruptEnable
);
1296 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1299 /* should I silence all or only opened ones ? doit all for first even is 4MB*/
1300 static void hdspm_silence_playback(struct hdspm
*hdspm
)
1303 int n
= hdspm
->period_bytes
;
1304 void *buf
= hdspm
->playback_buffer
;
1309 for (i
= 0; i
< HDSPM_MAX_CHANNELS
; i
++) {
1311 buf
+= HDSPM_CHANNEL_BUFFER_BYTES
;
1315 static int hdspm_set_interrupt_interval(struct hdspm
*s
, unsigned int frames
)
1319 spin_lock_irq(&s
->lock
);
1322 /* Special case for new RME cards like RayDAT/AIO which
1323 * support period sizes of 32 samples. Since latency is
1324 * encoded in the three bits of HDSP_LatencyMask, we can only
1325 * have values from 0 .. 7. While 0 still means 64 samples and
1326 * 6 represents 4096 samples on all cards, 7 represents 8192
1327 * on older cards and 32 samples on new cards.
1329 * In other words, period size in samples is calculated by
1330 * 2^(n+6) with n ranging from 0 .. 7.
1342 s
->control_register
&= ~HDSPM_LatencyMask
;
1343 s
->control_register
|= hdspm_encode_latency(n
);
1345 hdspm_write(s
, HDSPM_controlRegister
, s
->control_register
);
1347 hdspm_compute_period_size(s
);
1349 spin_unlock_irq(&s
->lock
);
1354 static u64
hdspm_calc_dds_value(struct hdspm
*hdspm
, u64 period
)
1361 switch (hdspm
->io_type
) {
1364 freq_const
= 110069313433624ULL;
1368 freq_const
= 104857600000000ULL;
1371 freq_const
= 131072000000000ULL;
1378 return div_u64(freq_const
, period
);
1382 static void hdspm_set_dds_value(struct hdspm
*hdspm
, int rate
)
1388 else if (rate
>= 56000)
1391 switch (hdspm
->io_type
) {
1393 n
= 131072000000000ULL; /* 125 MHz */
1397 n
= 110069313433624ULL; /* 105 MHz */
1401 n
= 104857600000000ULL; /* 100 MHz */
1408 n
= div_u64(n
, rate
);
1409 /* n should be less than 2^32 for being written to FREQ register */
1410 snd_BUG_ON(n
>> 32);
1411 hdspm_write(hdspm
, HDSPM_freqReg
, (u32
)n
);
1414 /* dummy set rate lets see what happens */
1415 static int hdspm_set_rate(struct hdspm
* hdspm
, int rate
, int called_internally
)
1420 int current_speed
, target_speed
;
1422 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
1423 it (e.g. during module initialization).
1426 if (!(hdspm
->control_register
& HDSPM_ClockModeMaster
)) {
1429 if (called_internally
) {
1431 /* request from ctl or card initialization
1432 just make a warning an remember setting
1433 for future master mode switching */
1435 snd_printk(KERN_WARNING
"HDSPM: "
1436 "Warning: device is not running "
1437 "as a clock master.\n");
1441 /* hw_param request while in AutoSync mode */
1443 hdspm_external_sample_rate(hdspm
);
1445 if (hdspm_autosync_ref(hdspm
) ==
1446 HDSPM_AUTOSYNC_FROM_NONE
) {
1448 snd_printk(KERN_WARNING
"HDSPM: "
1449 "Detected no Externel Sync \n");
1452 } else if (rate
!= external_freq
) {
1454 snd_printk(KERN_WARNING
"HDSPM: "
1455 "Warning: No AutoSync source for "
1456 "requested rate\n");
1462 current_rate
= hdspm
->system_sample_rate
;
1464 /* Changing between Singe, Double and Quad speed is not
1465 allowed if any substreams are open. This is because such a change
1466 causes a shift in the location of the DMA buffers and a reduction
1467 in the number of available buffers.
1469 Note that a similar but essentially insoluble problem exists for
1470 externally-driven rate changes. All we can do is to flag rate
1471 changes in the read/write routines.
1474 if (current_rate
<= 48000)
1475 current_speed
= HDSPM_SPEED_SINGLE
;
1476 else if (current_rate
<= 96000)
1477 current_speed
= HDSPM_SPEED_DOUBLE
;
1479 current_speed
= HDSPM_SPEED_QUAD
;
1482 target_speed
= HDSPM_SPEED_SINGLE
;
1483 else if (rate
<= 96000)
1484 target_speed
= HDSPM_SPEED_DOUBLE
;
1486 target_speed
= HDSPM_SPEED_QUAD
;
1490 rate_bits
= HDSPM_Frequency32KHz
;
1493 rate_bits
= HDSPM_Frequency44_1KHz
;
1496 rate_bits
= HDSPM_Frequency48KHz
;
1499 rate_bits
= HDSPM_Frequency64KHz
;
1502 rate_bits
= HDSPM_Frequency88_2KHz
;
1505 rate_bits
= HDSPM_Frequency96KHz
;
1508 rate_bits
= HDSPM_Frequency128KHz
;
1511 rate_bits
= HDSPM_Frequency176_4KHz
;
1514 rate_bits
= HDSPM_Frequency192KHz
;
1520 if (current_speed
!= target_speed
1521 && (hdspm
->capture_pid
>= 0 || hdspm
->playback_pid
>= 0)) {
1524 "cannot change from %s speed to %s speed mode "
1525 "(capture PID = %d, playback PID = %d)\n",
1526 hdspm_speed_names
[current_speed
],
1527 hdspm_speed_names
[target_speed
],
1528 hdspm
->capture_pid
, hdspm
->playback_pid
);
1532 hdspm
->control_register
&= ~HDSPM_FrequencyMask
;
1533 hdspm
->control_register
|= rate_bits
;
1534 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
1536 /* For AES32, need to set DDS value in FREQ register
1537 For MADI, also apparently */
1538 hdspm_set_dds_value(hdspm
, rate
);
1540 if (AES32
== hdspm
->io_type
&& rate
!= current_rate
)
1541 hdspm_write(hdspm
, HDSPM_eeprom_wr
, 0);
1543 hdspm
->system_sample_rate
= rate
;
1545 if (rate
<= 48000) {
1546 hdspm
->channel_map_in
= hdspm
->channel_map_in_ss
;
1547 hdspm
->channel_map_out
= hdspm
->channel_map_out_ss
;
1548 hdspm
->max_channels_in
= hdspm
->ss_in_channels
;
1549 hdspm
->max_channels_out
= hdspm
->ss_out_channels
;
1550 hdspm
->port_names_in
= hdspm
->port_names_in_ss
;
1551 hdspm
->port_names_out
= hdspm
->port_names_out_ss
;
1552 } else if (rate
<= 96000) {
1553 hdspm
->channel_map_in
= hdspm
->channel_map_in_ds
;
1554 hdspm
->channel_map_out
= hdspm
->channel_map_out_ds
;
1555 hdspm
->max_channels_in
= hdspm
->ds_in_channels
;
1556 hdspm
->max_channels_out
= hdspm
->ds_out_channels
;
1557 hdspm
->port_names_in
= hdspm
->port_names_in_ds
;
1558 hdspm
->port_names_out
= hdspm
->port_names_out_ds
;
1560 hdspm
->channel_map_in
= hdspm
->channel_map_in_qs
;
1561 hdspm
->channel_map_out
= hdspm
->channel_map_out_qs
;
1562 hdspm
->max_channels_in
= hdspm
->qs_in_channels
;
1563 hdspm
->max_channels_out
= hdspm
->qs_out_channels
;
1564 hdspm
->port_names_in
= hdspm
->port_names_in_qs
;
1565 hdspm
->port_names_out
= hdspm
->port_names_out_qs
;
1574 /* mainly for init to 0 on load */
1575 static void all_in_all_mixer(struct hdspm
* hdspm
, int sgain
)
1580 if (sgain
> UNITY_GAIN
)
1587 for (i
= 0; i
< HDSPM_MIXER_CHANNELS
; i
++)
1588 for (j
= 0; j
< HDSPM_MIXER_CHANNELS
; j
++) {
1589 hdspm_write_in_gain(hdspm
, i
, j
, gain
);
1590 hdspm_write_pb_gain(hdspm
, i
, j
, gain
);
1594 /*----------------------------------------------------------------------------
1596 ----------------------------------------------------------------------------*/
1598 static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm
*hdspm
,
1601 /* the hardware already does the relevant bit-mask with 0xff */
1602 return hdspm_read(hdspm
, hdspm
->midi
[id
].dataIn
);
1605 static inline void snd_hdspm_midi_write_byte (struct hdspm
*hdspm
, int id
,
1608 /* the hardware already does the relevant bit-mask with 0xff */
1609 return hdspm_write(hdspm
, hdspm
->midi
[id
].dataOut
, val
);
1612 static inline int snd_hdspm_midi_input_available (struct hdspm
*hdspm
, int id
)
1614 return hdspm_read(hdspm
, hdspm
->midi
[id
].statusIn
) & 0xFF;
1617 static inline int snd_hdspm_midi_output_possible (struct hdspm
*hdspm
, int id
)
1619 int fifo_bytes_used
;
1621 fifo_bytes_used
= hdspm_read(hdspm
, hdspm
->midi
[id
].statusOut
) & 0xFF;
1623 if (fifo_bytes_used
< 128)
1624 return 128 - fifo_bytes_used
;
1629 static void snd_hdspm_flush_midi_input(struct hdspm
*hdspm
, int id
)
1631 while (snd_hdspm_midi_input_available (hdspm
, id
))
1632 snd_hdspm_midi_read_byte (hdspm
, id
);
1635 static int snd_hdspm_midi_output_write (struct hdspm_midi
*hmidi
)
1637 unsigned long flags
;
1641 unsigned char buf
[128];
1643 /* Output is not interrupt driven */
1645 spin_lock_irqsave (&hmidi
->lock
, flags
);
1646 if (hmidi
->output
&&
1647 !snd_rawmidi_transmit_empty (hmidi
->output
)) {
1648 n_pending
= snd_hdspm_midi_output_possible (hmidi
->hdspm
,
1650 if (n_pending
> 0) {
1651 if (n_pending
> (int)sizeof (buf
))
1652 n_pending
= sizeof (buf
);
1654 to_write
= snd_rawmidi_transmit (hmidi
->output
, buf
,
1657 for (i
= 0; i
< to_write
; ++i
)
1658 snd_hdspm_midi_write_byte (hmidi
->hdspm
,
1664 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1668 static int snd_hdspm_midi_input_read (struct hdspm_midi
*hmidi
)
1670 unsigned char buf
[128]; /* this buffer is designed to match the MIDI
1673 unsigned long flags
;
1677 spin_lock_irqsave (&hmidi
->lock
, flags
);
1678 n_pending
= snd_hdspm_midi_input_available (hmidi
->hdspm
, hmidi
->id
);
1679 if (n_pending
> 0) {
1681 if (n_pending
> (int)sizeof (buf
))
1682 n_pending
= sizeof (buf
);
1683 for (i
= 0; i
< n_pending
; ++i
)
1684 buf
[i
] = snd_hdspm_midi_read_byte (hmidi
->hdspm
,
1687 snd_rawmidi_receive (hmidi
->input
, buf
,
1690 /* flush the MIDI input FIFO */
1692 snd_hdspm_midi_read_byte (hmidi
->hdspm
,
1697 spin_unlock_irqrestore(&hmidi
->lock
, flags
);
1699 spin_lock_irqsave(&hmidi
->hdspm
->lock
, flags
);
1700 hmidi
->hdspm
->control_register
|= hmidi
->ie
;
1701 hdspm_write(hmidi
->hdspm
, HDSPM_controlRegister
,
1702 hmidi
->hdspm
->control_register
);
1703 spin_unlock_irqrestore(&hmidi
->hdspm
->lock
, flags
);
1705 return snd_hdspm_midi_output_write (hmidi
);
1709 snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1711 struct hdspm
*hdspm
;
1712 struct hdspm_midi
*hmidi
;
1713 unsigned long flags
;
1715 hmidi
= substream
->rmidi
->private_data
;
1716 hdspm
= hmidi
->hdspm
;
1718 spin_lock_irqsave (&hdspm
->lock
, flags
);
1720 if (!(hdspm
->control_register
& hmidi
->ie
)) {
1721 snd_hdspm_flush_midi_input (hdspm
, hmidi
->id
);
1722 hdspm
->control_register
|= hmidi
->ie
;
1725 hdspm
->control_register
&= ~hmidi
->ie
;
1728 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
1729 spin_unlock_irqrestore (&hdspm
->lock
, flags
);
1732 static void snd_hdspm_midi_output_timer(unsigned long data
)
1734 struct hdspm_midi
*hmidi
= (struct hdspm_midi
*) data
;
1735 unsigned long flags
;
1737 snd_hdspm_midi_output_write(hmidi
);
1738 spin_lock_irqsave (&hmidi
->lock
, flags
);
1740 /* this does not bump hmidi->istimer, because the
1741 kernel automatically removed the timer when it
1742 expired, and we are now adding it back, thus
1743 leaving istimer wherever it was set before.
1746 if (hmidi
->istimer
) {
1747 hmidi
->timer
.expires
= 1 + jiffies
;
1748 add_timer(&hmidi
->timer
);
1751 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1755 snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1757 struct hdspm_midi
*hmidi
;
1758 unsigned long flags
;
1760 hmidi
= substream
->rmidi
->private_data
;
1761 spin_lock_irqsave (&hmidi
->lock
, flags
);
1763 if (!hmidi
->istimer
) {
1764 init_timer(&hmidi
->timer
);
1765 hmidi
->timer
.function
= snd_hdspm_midi_output_timer
;
1766 hmidi
->timer
.data
= (unsigned long) hmidi
;
1767 hmidi
->timer
.expires
= 1 + jiffies
;
1768 add_timer(&hmidi
->timer
);
1772 if (hmidi
->istimer
&& --hmidi
->istimer
<= 0)
1773 del_timer (&hmidi
->timer
);
1775 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1777 snd_hdspm_midi_output_write(hmidi
);
1780 static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream
*substream
)
1782 struct hdspm_midi
*hmidi
;
1784 hmidi
= substream
->rmidi
->private_data
;
1785 spin_lock_irq (&hmidi
->lock
);
1786 snd_hdspm_flush_midi_input (hmidi
->hdspm
, hmidi
->id
);
1787 hmidi
->input
= substream
;
1788 spin_unlock_irq (&hmidi
->lock
);
1793 static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream
*substream
)
1795 struct hdspm_midi
*hmidi
;
1797 hmidi
= substream
->rmidi
->private_data
;
1798 spin_lock_irq (&hmidi
->lock
);
1799 hmidi
->output
= substream
;
1800 spin_unlock_irq (&hmidi
->lock
);
1805 static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream
*substream
)
1807 struct hdspm_midi
*hmidi
;
1809 snd_hdspm_midi_input_trigger (substream
, 0);
1811 hmidi
= substream
->rmidi
->private_data
;
1812 spin_lock_irq (&hmidi
->lock
);
1813 hmidi
->input
= NULL
;
1814 spin_unlock_irq (&hmidi
->lock
);
1819 static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream
*substream
)
1821 struct hdspm_midi
*hmidi
;
1823 snd_hdspm_midi_output_trigger (substream
, 0);
1825 hmidi
= substream
->rmidi
->private_data
;
1826 spin_lock_irq (&hmidi
->lock
);
1827 hmidi
->output
= NULL
;
1828 spin_unlock_irq (&hmidi
->lock
);
1833 static struct snd_rawmidi_ops snd_hdspm_midi_output
=
1835 .open
= snd_hdspm_midi_output_open
,
1836 .close
= snd_hdspm_midi_output_close
,
1837 .trigger
= snd_hdspm_midi_output_trigger
,
1840 static struct snd_rawmidi_ops snd_hdspm_midi_input
=
1842 .open
= snd_hdspm_midi_input_open
,
1843 .close
= snd_hdspm_midi_input_close
,
1844 .trigger
= snd_hdspm_midi_input_trigger
,
1847 static int __devinit
snd_hdspm_create_midi (struct snd_card
*card
,
1848 struct hdspm
*hdspm
, int id
)
1853 hdspm
->midi
[id
].id
= id
;
1854 hdspm
->midi
[id
].hdspm
= hdspm
;
1855 spin_lock_init (&hdspm
->midi
[id
].lock
);
1858 if (MADIface
== hdspm
->io_type
) {
1859 /* MIDI-over-MADI on HDSPe MADIface */
1860 hdspm
->midi
[0].dataIn
= HDSPM_midiDataIn2
;
1861 hdspm
->midi
[0].statusIn
= HDSPM_midiStatusIn2
;
1862 hdspm
->midi
[0].dataOut
= HDSPM_midiDataOut2
;
1863 hdspm
->midi
[0].statusOut
= HDSPM_midiStatusOut2
;
1864 hdspm
->midi
[0].ie
= HDSPM_Midi2InterruptEnable
;
1865 hdspm
->midi
[0].irq
= HDSPM_midi2IRQPending
;
1867 hdspm
->midi
[0].dataIn
= HDSPM_midiDataIn0
;
1868 hdspm
->midi
[0].statusIn
= HDSPM_midiStatusIn0
;
1869 hdspm
->midi
[0].dataOut
= HDSPM_midiDataOut0
;
1870 hdspm
->midi
[0].statusOut
= HDSPM_midiStatusOut0
;
1871 hdspm
->midi
[0].ie
= HDSPM_Midi0InterruptEnable
;
1872 hdspm
->midi
[0].irq
= HDSPM_midi0IRQPending
;
1874 } else if (1 == id
) {
1875 hdspm
->midi
[1].dataIn
= HDSPM_midiDataIn1
;
1876 hdspm
->midi
[1].statusIn
= HDSPM_midiStatusIn1
;
1877 hdspm
->midi
[1].dataOut
= HDSPM_midiDataOut1
;
1878 hdspm
->midi
[1].statusOut
= HDSPM_midiStatusOut1
;
1879 hdspm
->midi
[1].ie
= HDSPM_Midi1InterruptEnable
;
1880 hdspm
->midi
[1].irq
= HDSPM_midi1IRQPending
;
1881 } else if ((2 == id
) && (MADI
== hdspm
->io_type
)) {
1882 /* MIDI-over-MADI on HDSPe MADI */
1883 hdspm
->midi
[2].dataIn
= HDSPM_midiDataIn2
;
1884 hdspm
->midi
[2].statusIn
= HDSPM_midiStatusIn2
;
1885 hdspm
->midi
[2].dataOut
= HDSPM_midiDataOut2
;
1886 hdspm
->midi
[2].statusOut
= HDSPM_midiStatusOut2
;
1887 hdspm
->midi
[2].ie
= HDSPM_Midi2InterruptEnable
;
1888 hdspm
->midi
[2].irq
= HDSPM_midi2IRQPending
;
1889 } else if (2 == id
) {
1890 /* TCO MTC, read only */
1891 hdspm
->midi
[2].dataIn
= HDSPM_midiDataIn2
;
1892 hdspm
->midi
[2].statusIn
= HDSPM_midiStatusIn2
;
1893 hdspm
->midi
[2].dataOut
= -1;
1894 hdspm
->midi
[2].statusOut
= -1;
1895 hdspm
->midi
[2].ie
= HDSPM_Midi2InterruptEnable
;
1896 hdspm
->midi
[2].irq
= HDSPM_midi2IRQPendingAES
;
1897 } else if (3 == id
) {
1898 /* TCO MTC on HDSPe MADI */
1899 hdspm
->midi
[3].dataIn
= HDSPM_midiDataIn3
;
1900 hdspm
->midi
[3].statusIn
= HDSPM_midiStatusIn3
;
1901 hdspm
->midi
[3].dataOut
= -1;
1902 hdspm
->midi
[3].statusOut
= -1;
1903 hdspm
->midi
[3].ie
= HDSPM_Midi3InterruptEnable
;
1904 hdspm
->midi
[3].irq
= HDSPM_midi3IRQPending
;
1907 if ((id
< 2) || ((2 == id
) && ((MADI
== hdspm
->io_type
) ||
1908 (MADIface
== hdspm
->io_type
)))) {
1909 if ((id
== 0) && (MADIface
== hdspm
->io_type
)) {
1910 sprintf(buf
, "%s MIDIoverMADI", card
->shortname
);
1911 } else if ((id
== 2) && (MADI
== hdspm
->io_type
)) {
1912 sprintf(buf
, "%s MIDIoverMADI", card
->shortname
);
1914 sprintf(buf
, "%s MIDI %d", card
->shortname
, id
+1);
1916 err
= snd_rawmidi_new(card
, buf
, id
, 1, 1,
1917 &hdspm
->midi
[id
].rmidi
);
1921 sprintf(hdspm
->midi
[id
].rmidi
->name
, "%s MIDI %d",
1923 hdspm
->midi
[id
].rmidi
->private_data
= &hdspm
->midi
[id
];
1925 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1926 SNDRV_RAWMIDI_STREAM_OUTPUT
,
1927 &snd_hdspm_midi_output
);
1928 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1929 SNDRV_RAWMIDI_STREAM_INPUT
,
1930 &snd_hdspm_midi_input
);
1932 hdspm
->midi
[id
].rmidi
->info_flags
|=
1933 SNDRV_RAWMIDI_INFO_OUTPUT
|
1934 SNDRV_RAWMIDI_INFO_INPUT
|
1935 SNDRV_RAWMIDI_INFO_DUPLEX
;
1937 /* TCO MTC, read only */
1938 sprintf(buf
, "%s MTC %d", card
->shortname
, id
+1);
1939 err
= snd_rawmidi_new(card
, buf
, id
, 1, 1,
1940 &hdspm
->midi
[id
].rmidi
);
1944 sprintf(hdspm
->midi
[id
].rmidi
->name
,
1945 "%s MTC %d", card
->id
, id
+1);
1946 hdspm
->midi
[id
].rmidi
->private_data
= &hdspm
->midi
[id
];
1948 snd_rawmidi_set_ops(hdspm
->midi
[id
].rmidi
,
1949 SNDRV_RAWMIDI_STREAM_INPUT
,
1950 &snd_hdspm_midi_input
);
1952 hdspm
->midi
[id
].rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_INPUT
;
1959 static void hdspm_midi_tasklet(unsigned long arg
)
1961 struct hdspm
*hdspm
= (struct hdspm
*)arg
;
1964 while (i
< hdspm
->midiPorts
) {
1965 if (hdspm
->midi
[i
].pending
)
1966 snd_hdspm_midi_input_read(&hdspm
->midi
[i
]);
1973 /*-----------------------------------------------------------------------------
1975 ----------------------------------------------------------------------------*/
1977 /* get the system sample rate which is set */
1981 * Calculate the real sample rate from the
1982 * current DDS value.
1984 static int hdspm_get_system_sample_rate(struct hdspm
*hdspm
)
1986 unsigned int period
, rate
;
1988 period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
1989 rate
= hdspm_calc_dds_value(hdspm
, period
);
1995 #define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
1996 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1999 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2000 .info = snd_hdspm_info_system_sample_rate, \
2001 .get = snd_hdspm_get_system_sample_rate \
2004 static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol
*kcontrol
,
2005 struct snd_ctl_elem_info
*uinfo
)
2007 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2009 uinfo
->value
.integer
.min
= 27000;
2010 uinfo
->value
.integer
.max
= 207000;
2011 uinfo
->value
.integer
.step
= 1;
2016 static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol
*kcontrol
,
2017 struct snd_ctl_elem_value
*
2020 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2022 ucontrol
->value
.integer
.value
[0] = hdspm_get_system_sample_rate(hdspm
);
2028 * Returns the WordClock sample rate class for the given card.
2030 static int hdspm_get_wc_sample_rate(struct hdspm
*hdspm
)
2034 switch (hdspm
->io_type
) {
2037 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
2038 return (status
>> 16) & 0xF;
2050 * Returns the TCO sample rate class for the given card.
2052 static int hdspm_get_tco_sample_rate(struct hdspm
*hdspm
)
2057 switch (hdspm
->io_type
) {
2060 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
2061 return (status
>> 20) & 0xF;
2073 * Returns the SYNC_IN sample rate class for the given card.
2075 static int hdspm_get_sync_in_sample_rate(struct hdspm
*hdspm
)
2080 switch (hdspm
->io_type
) {
2083 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
);
2084 return (status
>> 12) & 0xF;
2096 * Returns the sample rate class for input source <idx> for
2097 * 'new style' cards like the AIO and RayDAT.
2099 static int hdspm_get_s1_sample_rate(struct hdspm
*hdspm
, unsigned int idx
)
2101 int status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
);
2103 return (status
>> (idx
*4)) & 0xF;
2108 #define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
2109 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2111 .private_value = xindex, \
2112 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2113 .info = snd_hdspm_info_autosync_sample_rate, \
2114 .get = snd_hdspm_get_autosync_sample_rate \
2118 static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol
*kcontrol
,
2119 struct snd_ctl_elem_info
*uinfo
)
2121 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2123 uinfo
->value
.enumerated
.items
= 10;
2125 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2126 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2127 strcpy(uinfo
->value
.enumerated
.name
,
2128 texts_freq
[uinfo
->value
.enumerated
.item
]);
2133 static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol
*kcontrol
,
2134 struct snd_ctl_elem_value
*
2137 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2139 switch (hdspm
->io_type
) {
2141 switch (kcontrol
->private_value
) {
2143 ucontrol
->value
.enumerated
.item
[0] =
2144 hdspm_get_wc_sample_rate(hdspm
);
2147 ucontrol
->value
.enumerated
.item
[0] =
2148 hdspm_get_tco_sample_rate(hdspm
);
2151 ucontrol
->value
.enumerated
.item
[0] =
2152 hdspm_get_sync_in_sample_rate(hdspm
);
2155 ucontrol
->value
.enumerated
.item
[0] =
2156 hdspm_get_s1_sample_rate(hdspm
,
2157 kcontrol
->private_value
-1);
2161 switch (kcontrol
->private_value
) {
2163 ucontrol
->value
.enumerated
.item
[0] =
2164 hdspm_get_wc_sample_rate(hdspm
);
2167 ucontrol
->value
.enumerated
.item
[0] =
2168 hdspm_get_tco_sample_rate(hdspm
);
2170 case 5: /* SYNC_IN */
2171 ucontrol
->value
.enumerated
.item
[0] =
2172 hdspm_get_sync_in_sample_rate(hdspm
);
2175 ucontrol
->value
.enumerated
.item
[0] =
2176 hdspm_get_s1_sample_rate(hdspm
,
2177 ucontrol
->id
.index
-1);
2182 switch (kcontrol
->private_value
) {
2184 ucontrol
->value
.enumerated
.item
[0] =
2185 hdspm_get_wc_sample_rate(hdspm
);
2188 ucontrol
->value
.enumerated
.item
[0] =
2189 hdspm_get_tco_sample_rate(hdspm
);
2191 case 10: /* SYNC_IN */
2192 ucontrol
->value
.enumerated
.item
[0] =
2193 hdspm_get_sync_in_sample_rate(hdspm
);
2195 default: /* AES1 to AES8 */
2196 ucontrol
->value
.enumerated
.item
[0] =
2197 hdspm_get_s1_sample_rate(hdspm
,
2198 kcontrol
->private_value
-1);
2210 #define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
2211 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2214 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2215 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2216 .info = snd_hdspm_info_system_clock_mode, \
2217 .get = snd_hdspm_get_system_clock_mode, \
2218 .put = snd_hdspm_put_system_clock_mode, \
2223 * Returns the system clock mode for the given card.
2224 * @returns 0 - master, 1 - slave
2226 static int hdspm_system_clock_mode(struct hdspm
*hdspm
)
2228 switch (hdspm
->io_type
) {
2231 if (hdspm
->settings_register
& HDSPM_c0Master
)
2236 if (hdspm
->control_register
& HDSPM_ClockModeMaster
)
2245 * Sets the system clock mode.
2246 * @param mode 0 - master, 1 - slave
2248 static void hdspm_set_system_clock_mode(struct hdspm
*hdspm
, int mode
)
2250 switch (hdspm
->io_type
) {
2254 hdspm
->settings_register
|= HDSPM_c0Master
;
2256 hdspm
->settings_register
&= ~HDSPM_c0Master
;
2258 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
2263 hdspm
->control_register
|= HDSPM_ClockModeMaster
;
2265 hdspm
->control_register
&= ~HDSPM_ClockModeMaster
;
2267 hdspm_write(hdspm
, HDSPM_controlRegister
,
2268 hdspm
->control_register
);
2273 static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2274 struct snd_ctl_elem_info
*uinfo
)
2276 static char *texts
[] = { "Master", "AutoSync" };
2278 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2280 uinfo
->value
.enumerated
.items
= 2;
2281 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2282 uinfo
->value
.enumerated
.item
=
2283 uinfo
->value
.enumerated
.items
- 1;
2284 strcpy(uinfo
->value
.enumerated
.name
,
2285 texts
[uinfo
->value
.enumerated
.item
]);
2289 static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2290 struct snd_ctl_elem_value
*ucontrol
)
2292 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2294 ucontrol
->value
.enumerated
.item
[0] = hdspm_system_clock_mode(hdspm
);
2298 static int snd_hdspm_put_system_clock_mode(struct snd_kcontrol
*kcontrol
,
2299 struct snd_ctl_elem_value
*ucontrol
)
2301 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2304 if (!snd_hdspm_use_is_exclusive(hdspm
))
2307 val
= ucontrol
->value
.enumerated
.item
[0];
2313 hdspm_set_system_clock_mode(hdspm
, val
);
2319 #define HDSPM_INTERNAL_CLOCK(xname, xindex) \
2320 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2323 .info = snd_hdspm_info_clock_source, \
2324 .get = snd_hdspm_get_clock_source, \
2325 .put = snd_hdspm_put_clock_source \
2329 static int hdspm_clock_source(struct hdspm
* hdspm
)
2331 switch (hdspm
->system_sample_rate
) {
2332 case 32000: return 0;
2333 case 44100: return 1;
2334 case 48000: return 2;
2335 case 64000: return 3;
2336 case 88200: return 4;
2337 case 96000: return 5;
2338 case 128000: return 6;
2339 case 176400: return 7;
2340 case 192000: return 8;
2346 static int hdspm_set_clock_source(struct hdspm
* hdspm
, int mode
)
2351 rate
= 32000; break;
2353 rate
= 44100; break;
2355 rate
= 48000; break;
2357 rate
= 64000; break;
2359 rate
= 88200; break;
2361 rate
= 96000; break;
2363 rate
= 128000; break;
2365 rate
= 176400; break;
2367 rate
= 192000; break;
2371 hdspm_set_rate(hdspm
, rate
, 1);
2375 static int snd_hdspm_info_clock_source(struct snd_kcontrol
*kcontrol
,
2376 struct snd_ctl_elem_info
*uinfo
)
2378 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2380 uinfo
->value
.enumerated
.items
= 9;
2382 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2383 uinfo
->value
.enumerated
.item
=
2384 uinfo
->value
.enumerated
.items
- 1;
2386 strcpy(uinfo
->value
.enumerated
.name
,
2387 texts_freq
[uinfo
->value
.enumerated
.item
+1]);
2392 static int snd_hdspm_get_clock_source(struct snd_kcontrol
*kcontrol
,
2393 struct snd_ctl_elem_value
*ucontrol
)
2395 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2397 ucontrol
->value
.enumerated
.item
[0] = hdspm_clock_source(hdspm
);
2401 static int snd_hdspm_put_clock_source(struct snd_kcontrol
*kcontrol
,
2402 struct snd_ctl_elem_value
*ucontrol
)
2404 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2408 if (!snd_hdspm_use_is_exclusive(hdspm
))
2410 val
= ucontrol
->value
.enumerated
.item
[0];
2415 spin_lock_irq(&hdspm
->lock
);
2416 if (val
!= hdspm_clock_source(hdspm
))
2417 change
= (hdspm_set_clock_source(hdspm
, val
) == 0) ? 1 : 0;
2420 spin_unlock_irq(&hdspm
->lock
);
2425 #define HDSPM_PREF_SYNC_REF(xname, xindex) \
2426 {.iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2429 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2430 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2431 .info = snd_hdspm_info_pref_sync_ref, \
2432 .get = snd_hdspm_get_pref_sync_ref, \
2433 .put = snd_hdspm_put_pref_sync_ref \
2438 * Returns the current preferred sync reference setting.
2439 * The semantics of the return value are depending on the
2440 * card, please see the comments for clarification.
2442 static int hdspm_pref_sync_ref(struct hdspm
* hdspm
)
2444 switch (hdspm
->io_type
) {
2446 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2447 case 0: return 0; /* WC */
2448 case HDSPM_SyncRef0
: return 1; /* AES 1 */
2449 case HDSPM_SyncRef1
: return 2; /* AES 2 */
2450 case HDSPM_SyncRef1
+HDSPM_SyncRef0
: return 3; /* AES 3 */
2451 case HDSPM_SyncRef2
: return 4; /* AES 4 */
2452 case HDSPM_SyncRef2
+HDSPM_SyncRef0
: return 5; /* AES 5 */
2453 case HDSPM_SyncRef2
+HDSPM_SyncRef1
: return 6; /* AES 6 */
2454 case HDSPM_SyncRef2
+HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2455 return 7; /* AES 7 */
2456 case HDSPM_SyncRef3
: return 8; /* AES 8 */
2457 case HDSPM_SyncRef3
+HDSPM_SyncRef0
: return 9; /* TCO */
2464 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2465 case 0: return 0; /* WC */
2466 case HDSPM_SyncRef0
: return 1; /* MADI */
2467 case HDSPM_SyncRef1
: return 2; /* TCO */
2468 case HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2469 return 3; /* SYNC_IN */
2472 switch (hdspm
->control_register
& HDSPM_SyncRefMask
) {
2473 case 0: return 0; /* WC */
2474 case HDSPM_SyncRef0
: return 1; /* MADI */
2475 case HDSPM_SyncRef1
+HDSPM_SyncRef0
:
2476 return 2; /* SYNC_IN */
2483 switch ((hdspm
->settings_register
&
2484 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2485 case 0: return 0; /* WC */
2486 case 3: return 1; /* ADAT 1 */
2487 case 4: return 2; /* ADAT 2 */
2488 case 5: return 3; /* ADAT 3 */
2489 case 6: return 4; /* ADAT 4 */
2490 case 1: return 5; /* AES */
2491 case 2: return 6; /* SPDIF */
2492 case 9: return 7; /* TCO */
2493 case 10: return 8; /* SYNC_IN */
2496 switch ((hdspm
->settings_register
&
2497 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2498 case 0: return 0; /* WC */
2499 case 3: return 1; /* ADAT 1 */
2500 case 4: return 2; /* ADAT 2 */
2501 case 5: return 3; /* ADAT 3 */
2502 case 6: return 4; /* ADAT 4 */
2503 case 1: return 5; /* AES */
2504 case 2: return 6; /* SPDIF */
2505 case 10: return 7; /* SYNC_IN */
2513 switch ((hdspm
->settings_register
&
2514 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2515 case 0: return 0; /* WC */
2516 case 3: return 1; /* ADAT */
2517 case 1: return 2; /* AES */
2518 case 2: return 3; /* SPDIF */
2519 case 9: return 4; /* TCO */
2520 case 10: return 5; /* SYNC_IN */
2523 switch ((hdspm
->settings_register
&
2524 HDSPM_c0_SyncRefMask
) / HDSPM_c0_SyncRef0
) {
2525 case 0: return 0; /* WC */
2526 case 3: return 1; /* ADAT */
2527 case 1: return 2; /* AES */
2528 case 2: return 3; /* SPDIF */
2529 case 10: return 4; /* SYNC_IN */
2541 * Set the preferred sync reference to <pref>. The semantics
2542 * of <pref> are depending on the card type, see the comments
2543 * for clarification.
2545 static int hdspm_set_pref_sync_ref(struct hdspm
* hdspm
, int pref
)
2549 switch (hdspm
->io_type
) {
2551 hdspm
->control_register
&= ~HDSPM_SyncRefMask
;
2556 hdspm
->control_register
|= HDSPM_SyncRef0
;
2559 hdspm
->control_register
|= HDSPM_SyncRef1
;
2562 hdspm
->control_register
|=
2563 HDSPM_SyncRef1
+HDSPM_SyncRef0
;
2566 hdspm
->control_register
|= HDSPM_SyncRef2
;
2569 hdspm
->control_register
|=
2570 HDSPM_SyncRef2
+HDSPM_SyncRef0
;
2573 hdspm
->control_register
|=
2574 HDSPM_SyncRef2
+HDSPM_SyncRef1
;
2577 hdspm
->control_register
|=
2578 HDSPM_SyncRef2
+HDSPM_SyncRef1
+HDSPM_SyncRef0
;
2581 hdspm
->control_register
|= HDSPM_SyncRef3
;
2584 hdspm
->control_register
|=
2585 HDSPM_SyncRef3
+HDSPM_SyncRef0
;
2595 hdspm
->control_register
&= ~HDSPM_SyncRefMask
;
2601 hdspm
->control_register
|= HDSPM_SyncRef0
;
2604 hdspm
->control_register
|= HDSPM_SyncRef1
;
2606 case 3: /* SYNC_IN */
2607 hdspm
->control_register
|=
2608 HDSPM_SyncRef0
+HDSPM_SyncRef1
;
2618 hdspm
->control_register
|= HDSPM_SyncRef0
;
2620 case 2: /* SYNC_IN */
2621 hdspm
->control_register
|=
2622 HDSPM_SyncRef0
+HDSPM_SyncRef1
;
2634 case 0: p
= 0; break; /* WC */
2635 case 1: p
= 3; break; /* ADAT 1 */
2636 case 2: p
= 4; break; /* ADAT 2 */
2637 case 3: p
= 5; break; /* ADAT 3 */
2638 case 4: p
= 6; break; /* ADAT 4 */
2639 case 5: p
= 1; break; /* AES */
2640 case 6: p
= 2; break; /* SPDIF */
2641 case 7: p
= 9; break; /* TCO */
2642 case 8: p
= 10; break; /* SYNC_IN */
2647 case 0: p
= 0; break; /* WC */
2648 case 1: p
= 3; break; /* ADAT 1 */
2649 case 2: p
= 4; break; /* ADAT 2 */
2650 case 3: p
= 5; break; /* ADAT 3 */
2651 case 4: p
= 6; break; /* ADAT 4 */
2652 case 5: p
= 1; break; /* AES */
2653 case 6: p
= 2; break; /* SPDIF */
2654 case 7: p
= 10; break; /* SYNC_IN */
2663 case 0: p
= 0; break; /* WC */
2664 case 1: p
= 3; break; /* ADAT */
2665 case 2: p
= 1; break; /* AES */
2666 case 3: p
= 2; break; /* SPDIF */
2667 case 4: p
= 9; break; /* TCO */
2668 case 5: p
= 10; break; /* SYNC_IN */
2673 case 0: p
= 0; break; /* WC */
2674 case 1: p
= 3; break; /* ADAT */
2675 case 2: p
= 1; break; /* AES */
2676 case 3: p
= 2; break; /* SPDIF */
2677 case 4: p
= 10; break; /* SYNC_IN */
2684 switch (hdspm
->io_type
) {
2687 hdspm
->settings_register
&= ~HDSPM_c0_SyncRefMask
;
2688 hdspm
->settings_register
|= HDSPM_c0_SyncRef0
* p
;
2689 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
2695 hdspm_write(hdspm
, HDSPM_controlRegister
,
2696 hdspm
->control_register
);
2703 static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2704 struct snd_ctl_elem_info
*uinfo
)
2706 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2708 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2710 uinfo
->value
.enumerated
.items
= hdspm
->texts_autosync_items
;
2712 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2713 uinfo
->value
.enumerated
.item
=
2714 uinfo
->value
.enumerated
.items
- 1;
2716 strcpy(uinfo
->value
.enumerated
.name
,
2717 hdspm
->texts_autosync
[uinfo
->value
.enumerated
.item
]);
2722 static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2723 struct snd_ctl_elem_value
*ucontrol
)
2725 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2726 int psf
= hdspm_pref_sync_ref(hdspm
);
2729 ucontrol
->value
.enumerated
.item
[0] = psf
;
2736 static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol
*kcontrol
,
2737 struct snd_ctl_elem_value
*ucontrol
)
2739 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2740 int val
, change
= 0;
2742 if (!snd_hdspm_use_is_exclusive(hdspm
))
2745 val
= ucontrol
->value
.enumerated
.item
[0];
2749 else if (val
>= hdspm
->texts_autosync_items
)
2750 val
= hdspm
->texts_autosync_items
-1;
2752 spin_lock_irq(&hdspm
->lock
);
2753 if (val
!= hdspm_pref_sync_ref(hdspm
))
2754 change
= (0 == hdspm_set_pref_sync_ref(hdspm
, val
)) ? 1 : 0;
2756 spin_unlock_irq(&hdspm
->lock
);
2761 #define HDSPM_AUTOSYNC_REF(xname, xindex) \
2762 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2765 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2766 .info = snd_hdspm_info_autosync_ref, \
2767 .get = snd_hdspm_get_autosync_ref, \
2770 static int hdspm_autosync_ref(struct hdspm
*hdspm
)
2772 if (AES32
== hdspm
->io_type
) {
2773 unsigned int status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
2774 unsigned int syncref
=
2775 (status
>> HDSPM_AES32_syncref_bit
) & 0xF;
2777 return HDSPM_AES32_AUTOSYNC_FROM_WORD
;
2780 return HDSPM_AES32_AUTOSYNC_FROM_NONE
;
2781 } else if (MADI
== hdspm
->io_type
) {
2782 /* This looks at the autosync selected sync reference */
2783 unsigned int status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
2785 switch (status2
& HDSPM_SelSyncRefMask
) {
2786 case HDSPM_SelSyncRef_WORD
:
2787 return HDSPM_AUTOSYNC_FROM_WORD
;
2788 case HDSPM_SelSyncRef_MADI
:
2789 return HDSPM_AUTOSYNC_FROM_MADI
;
2790 case HDSPM_SelSyncRef_TCO
:
2791 return HDSPM_AUTOSYNC_FROM_TCO
;
2792 case HDSPM_SelSyncRef_SyncIn
:
2793 return HDSPM_AUTOSYNC_FROM_SYNC_IN
;
2794 case HDSPM_SelSyncRef_NVALID
:
2795 return HDSPM_AUTOSYNC_FROM_NONE
;
2805 static int snd_hdspm_info_autosync_ref(struct snd_kcontrol
*kcontrol
,
2806 struct snd_ctl_elem_info
*uinfo
)
2808 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2810 if (AES32
== hdspm
->io_type
) {
2811 static char *texts
[] = { "WordClock", "AES1", "AES2", "AES3",
2812 "AES4", "AES5", "AES6", "AES7", "AES8", "None"};
2814 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2816 uinfo
->value
.enumerated
.items
= 10;
2817 if (uinfo
->value
.enumerated
.item
>=
2818 uinfo
->value
.enumerated
.items
)
2819 uinfo
->value
.enumerated
.item
=
2820 uinfo
->value
.enumerated
.items
- 1;
2821 strcpy(uinfo
->value
.enumerated
.name
,
2822 texts
[uinfo
->value
.enumerated
.item
]);
2823 } else if (MADI
== hdspm
->io_type
) {
2824 static char *texts
[] = {"Word Clock", "MADI", "TCO",
2825 "Sync In", "None" };
2827 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2829 uinfo
->value
.enumerated
.items
= 5;
2830 if (uinfo
->value
.enumerated
.item
>=
2831 uinfo
->value
.enumerated
.items
)
2832 uinfo
->value
.enumerated
.item
=
2833 uinfo
->value
.enumerated
.items
- 1;
2834 strcpy(uinfo
->value
.enumerated
.name
,
2835 texts
[uinfo
->value
.enumerated
.item
]);
2840 static int snd_hdspm_get_autosync_ref(struct snd_kcontrol
*kcontrol
,
2841 struct snd_ctl_elem_value
*ucontrol
)
2843 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2845 ucontrol
->value
.enumerated
.item
[0] = hdspm_autosync_ref(hdspm
);
2850 #define HDSPM_LINE_OUT(xname, xindex) \
2851 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2854 .info = snd_hdspm_info_line_out, \
2855 .get = snd_hdspm_get_line_out, \
2856 .put = snd_hdspm_put_line_out \
2859 static int hdspm_line_out(struct hdspm
* hdspm
)
2861 return (hdspm
->control_register
& HDSPM_LineOut
) ? 1 : 0;
2865 static int hdspm_set_line_output(struct hdspm
* hdspm
, int out
)
2868 hdspm
->control_register
|= HDSPM_LineOut
;
2870 hdspm
->control_register
&= ~HDSPM_LineOut
;
2871 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
2876 #define snd_hdspm_info_line_out snd_ctl_boolean_mono_info
2878 static int snd_hdspm_get_line_out(struct snd_kcontrol
*kcontrol
,
2879 struct snd_ctl_elem_value
*ucontrol
)
2881 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2883 spin_lock_irq(&hdspm
->lock
);
2884 ucontrol
->value
.integer
.value
[0] = hdspm_line_out(hdspm
);
2885 spin_unlock_irq(&hdspm
->lock
);
2889 static int snd_hdspm_put_line_out(struct snd_kcontrol
*kcontrol
,
2890 struct snd_ctl_elem_value
*ucontrol
)
2892 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2896 if (!snd_hdspm_use_is_exclusive(hdspm
))
2898 val
= ucontrol
->value
.integer
.value
[0] & 1;
2899 spin_lock_irq(&hdspm
->lock
);
2900 change
= (int) val
!= hdspm_line_out(hdspm
);
2901 hdspm_set_line_output(hdspm
, val
);
2902 spin_unlock_irq(&hdspm
->lock
);
2907 #define HDSPM_TX_64(xname, xindex) \
2908 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2911 .info = snd_hdspm_info_tx_64, \
2912 .get = snd_hdspm_get_tx_64, \
2913 .put = snd_hdspm_put_tx_64 \
2916 static int hdspm_tx_64(struct hdspm
* hdspm
)
2918 return (hdspm
->control_register
& HDSPM_TX_64ch
) ? 1 : 0;
2921 static int hdspm_set_tx_64(struct hdspm
* hdspm
, int out
)
2924 hdspm
->control_register
|= HDSPM_TX_64ch
;
2926 hdspm
->control_register
&= ~HDSPM_TX_64ch
;
2927 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
2932 #define snd_hdspm_info_tx_64 snd_ctl_boolean_mono_info
2934 static int snd_hdspm_get_tx_64(struct snd_kcontrol
*kcontrol
,
2935 struct snd_ctl_elem_value
*ucontrol
)
2937 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2939 spin_lock_irq(&hdspm
->lock
);
2940 ucontrol
->value
.integer
.value
[0] = hdspm_tx_64(hdspm
);
2941 spin_unlock_irq(&hdspm
->lock
);
2945 static int snd_hdspm_put_tx_64(struct snd_kcontrol
*kcontrol
,
2946 struct snd_ctl_elem_value
*ucontrol
)
2948 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2952 if (!snd_hdspm_use_is_exclusive(hdspm
))
2954 val
= ucontrol
->value
.integer
.value
[0] & 1;
2955 spin_lock_irq(&hdspm
->lock
);
2956 change
= (int) val
!= hdspm_tx_64(hdspm
);
2957 hdspm_set_tx_64(hdspm
, val
);
2958 spin_unlock_irq(&hdspm
->lock
);
2963 #define HDSPM_C_TMS(xname, xindex) \
2964 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2967 .info = snd_hdspm_info_c_tms, \
2968 .get = snd_hdspm_get_c_tms, \
2969 .put = snd_hdspm_put_c_tms \
2972 static int hdspm_c_tms(struct hdspm
* hdspm
)
2974 return (hdspm
->control_register
& HDSPM_clr_tms
) ? 1 : 0;
2977 static int hdspm_set_c_tms(struct hdspm
* hdspm
, int out
)
2980 hdspm
->control_register
|= HDSPM_clr_tms
;
2982 hdspm
->control_register
&= ~HDSPM_clr_tms
;
2983 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
2988 #define snd_hdspm_info_c_tms snd_ctl_boolean_mono_info
2990 static int snd_hdspm_get_c_tms(struct snd_kcontrol
*kcontrol
,
2991 struct snd_ctl_elem_value
*ucontrol
)
2993 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
2995 spin_lock_irq(&hdspm
->lock
);
2996 ucontrol
->value
.integer
.value
[0] = hdspm_c_tms(hdspm
);
2997 spin_unlock_irq(&hdspm
->lock
);
3001 static int snd_hdspm_put_c_tms(struct snd_kcontrol
*kcontrol
,
3002 struct snd_ctl_elem_value
*ucontrol
)
3004 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3008 if (!snd_hdspm_use_is_exclusive(hdspm
))
3010 val
= ucontrol
->value
.integer
.value
[0] & 1;
3011 spin_lock_irq(&hdspm
->lock
);
3012 change
= (int) val
!= hdspm_c_tms(hdspm
);
3013 hdspm_set_c_tms(hdspm
, val
);
3014 spin_unlock_irq(&hdspm
->lock
);
3019 #define HDSPM_SAFE_MODE(xname, xindex) \
3020 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3023 .info = snd_hdspm_info_safe_mode, \
3024 .get = snd_hdspm_get_safe_mode, \
3025 .put = snd_hdspm_put_safe_mode \
3028 static int hdspm_safe_mode(struct hdspm
* hdspm
)
3030 return (hdspm
->control_register
& HDSPM_AutoInp
) ? 1 : 0;
3033 static int hdspm_set_safe_mode(struct hdspm
* hdspm
, int out
)
3036 hdspm
->control_register
|= HDSPM_AutoInp
;
3038 hdspm
->control_register
&= ~HDSPM_AutoInp
;
3039 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3044 #define snd_hdspm_info_safe_mode snd_ctl_boolean_mono_info
3046 static int snd_hdspm_get_safe_mode(struct snd_kcontrol
*kcontrol
,
3047 struct snd_ctl_elem_value
*ucontrol
)
3049 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3051 spin_lock_irq(&hdspm
->lock
);
3052 ucontrol
->value
.integer
.value
[0] = hdspm_safe_mode(hdspm
);
3053 spin_unlock_irq(&hdspm
->lock
);
3057 static int snd_hdspm_put_safe_mode(struct snd_kcontrol
*kcontrol
,
3058 struct snd_ctl_elem_value
*ucontrol
)
3060 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3064 if (!snd_hdspm_use_is_exclusive(hdspm
))
3066 val
= ucontrol
->value
.integer
.value
[0] & 1;
3067 spin_lock_irq(&hdspm
->lock
);
3068 change
= (int) val
!= hdspm_safe_mode(hdspm
);
3069 hdspm_set_safe_mode(hdspm
, val
);
3070 spin_unlock_irq(&hdspm
->lock
);
3075 #define HDSPM_EMPHASIS(xname, xindex) \
3076 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3079 .info = snd_hdspm_info_emphasis, \
3080 .get = snd_hdspm_get_emphasis, \
3081 .put = snd_hdspm_put_emphasis \
3084 static int hdspm_emphasis(struct hdspm
* hdspm
)
3086 return (hdspm
->control_register
& HDSPM_Emphasis
) ? 1 : 0;
3089 static int hdspm_set_emphasis(struct hdspm
* hdspm
, int emp
)
3092 hdspm
->control_register
|= HDSPM_Emphasis
;
3094 hdspm
->control_register
&= ~HDSPM_Emphasis
;
3095 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3100 #define snd_hdspm_info_emphasis snd_ctl_boolean_mono_info
3102 static int snd_hdspm_get_emphasis(struct snd_kcontrol
*kcontrol
,
3103 struct snd_ctl_elem_value
*ucontrol
)
3105 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3107 spin_lock_irq(&hdspm
->lock
);
3108 ucontrol
->value
.enumerated
.item
[0] = hdspm_emphasis(hdspm
);
3109 spin_unlock_irq(&hdspm
->lock
);
3113 static int snd_hdspm_put_emphasis(struct snd_kcontrol
*kcontrol
,
3114 struct snd_ctl_elem_value
*ucontrol
)
3116 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3120 if (!snd_hdspm_use_is_exclusive(hdspm
))
3122 val
= ucontrol
->value
.integer
.value
[0] & 1;
3123 spin_lock_irq(&hdspm
->lock
);
3124 change
= (int) val
!= hdspm_emphasis(hdspm
);
3125 hdspm_set_emphasis(hdspm
, val
);
3126 spin_unlock_irq(&hdspm
->lock
);
3131 #define HDSPM_DOLBY(xname, xindex) \
3132 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3135 .info = snd_hdspm_info_dolby, \
3136 .get = snd_hdspm_get_dolby, \
3137 .put = snd_hdspm_put_dolby \
3140 static int hdspm_dolby(struct hdspm
* hdspm
)
3142 return (hdspm
->control_register
& HDSPM_Dolby
) ? 1 : 0;
3145 static int hdspm_set_dolby(struct hdspm
* hdspm
, int dol
)
3148 hdspm
->control_register
|= HDSPM_Dolby
;
3150 hdspm
->control_register
&= ~HDSPM_Dolby
;
3151 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3156 #define snd_hdspm_info_dolby snd_ctl_boolean_mono_info
3158 static int snd_hdspm_get_dolby(struct snd_kcontrol
*kcontrol
,
3159 struct snd_ctl_elem_value
*ucontrol
)
3161 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3163 spin_lock_irq(&hdspm
->lock
);
3164 ucontrol
->value
.enumerated
.item
[0] = hdspm_dolby(hdspm
);
3165 spin_unlock_irq(&hdspm
->lock
);
3169 static int snd_hdspm_put_dolby(struct snd_kcontrol
*kcontrol
,
3170 struct snd_ctl_elem_value
*ucontrol
)
3172 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3176 if (!snd_hdspm_use_is_exclusive(hdspm
))
3178 val
= ucontrol
->value
.integer
.value
[0] & 1;
3179 spin_lock_irq(&hdspm
->lock
);
3180 change
= (int) val
!= hdspm_dolby(hdspm
);
3181 hdspm_set_dolby(hdspm
, val
);
3182 spin_unlock_irq(&hdspm
->lock
);
3187 #define HDSPM_PROFESSIONAL(xname, xindex) \
3188 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3191 .info = snd_hdspm_info_professional, \
3192 .get = snd_hdspm_get_professional, \
3193 .put = snd_hdspm_put_professional \
3196 static int hdspm_professional(struct hdspm
* hdspm
)
3198 return (hdspm
->control_register
& HDSPM_Professional
) ? 1 : 0;
3201 static int hdspm_set_professional(struct hdspm
* hdspm
, int dol
)
3204 hdspm
->control_register
|= HDSPM_Professional
;
3206 hdspm
->control_register
&= ~HDSPM_Professional
;
3207 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3212 #define snd_hdspm_info_professional snd_ctl_boolean_mono_info
3214 static int snd_hdspm_get_professional(struct snd_kcontrol
*kcontrol
,
3215 struct snd_ctl_elem_value
*ucontrol
)
3217 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3219 spin_lock_irq(&hdspm
->lock
);
3220 ucontrol
->value
.enumerated
.item
[0] = hdspm_professional(hdspm
);
3221 spin_unlock_irq(&hdspm
->lock
);
3225 static int snd_hdspm_put_professional(struct snd_kcontrol
*kcontrol
,
3226 struct snd_ctl_elem_value
*ucontrol
)
3228 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3232 if (!snd_hdspm_use_is_exclusive(hdspm
))
3234 val
= ucontrol
->value
.integer
.value
[0] & 1;
3235 spin_lock_irq(&hdspm
->lock
);
3236 change
= (int) val
!= hdspm_professional(hdspm
);
3237 hdspm_set_professional(hdspm
, val
);
3238 spin_unlock_irq(&hdspm
->lock
);
3242 #define HDSPM_INPUT_SELECT(xname, xindex) \
3243 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3246 .info = snd_hdspm_info_input_select, \
3247 .get = snd_hdspm_get_input_select, \
3248 .put = snd_hdspm_put_input_select \
3251 static int hdspm_input_select(struct hdspm
* hdspm
)
3253 return (hdspm
->control_register
& HDSPM_InputSelect0
) ? 1 : 0;
3256 static int hdspm_set_input_select(struct hdspm
* hdspm
, int out
)
3259 hdspm
->control_register
|= HDSPM_InputSelect0
;
3261 hdspm
->control_register
&= ~HDSPM_InputSelect0
;
3262 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3267 static int snd_hdspm_info_input_select(struct snd_kcontrol
*kcontrol
,
3268 struct snd_ctl_elem_info
*uinfo
)
3270 static char *texts
[] = { "optical", "coaxial" };
3272 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3274 uinfo
->value
.enumerated
.items
= 2;
3276 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3277 uinfo
->value
.enumerated
.item
=
3278 uinfo
->value
.enumerated
.items
- 1;
3279 strcpy(uinfo
->value
.enumerated
.name
,
3280 texts
[uinfo
->value
.enumerated
.item
]);
3285 static int snd_hdspm_get_input_select(struct snd_kcontrol
*kcontrol
,
3286 struct snd_ctl_elem_value
*ucontrol
)
3288 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3290 spin_lock_irq(&hdspm
->lock
);
3291 ucontrol
->value
.enumerated
.item
[0] = hdspm_input_select(hdspm
);
3292 spin_unlock_irq(&hdspm
->lock
);
3296 static int snd_hdspm_put_input_select(struct snd_kcontrol
*kcontrol
,
3297 struct snd_ctl_elem_value
*ucontrol
)
3299 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3303 if (!snd_hdspm_use_is_exclusive(hdspm
))
3305 val
= ucontrol
->value
.integer
.value
[0] & 1;
3306 spin_lock_irq(&hdspm
->lock
);
3307 change
= (int) val
!= hdspm_input_select(hdspm
);
3308 hdspm_set_input_select(hdspm
, val
);
3309 spin_unlock_irq(&hdspm
->lock
);
3314 #define HDSPM_DS_WIRE(xname, xindex) \
3315 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3318 .info = snd_hdspm_info_ds_wire, \
3319 .get = snd_hdspm_get_ds_wire, \
3320 .put = snd_hdspm_put_ds_wire \
3323 static int hdspm_ds_wire(struct hdspm
* hdspm
)
3325 return (hdspm
->control_register
& HDSPM_DS_DoubleWire
) ? 1 : 0;
3328 static int hdspm_set_ds_wire(struct hdspm
* hdspm
, int ds
)
3331 hdspm
->control_register
|= HDSPM_DS_DoubleWire
;
3333 hdspm
->control_register
&= ~HDSPM_DS_DoubleWire
;
3334 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3339 static int snd_hdspm_info_ds_wire(struct snd_kcontrol
*kcontrol
,
3340 struct snd_ctl_elem_info
*uinfo
)
3342 static char *texts
[] = { "Single", "Double" };
3344 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3346 uinfo
->value
.enumerated
.items
= 2;
3348 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3349 uinfo
->value
.enumerated
.item
=
3350 uinfo
->value
.enumerated
.items
- 1;
3351 strcpy(uinfo
->value
.enumerated
.name
,
3352 texts
[uinfo
->value
.enumerated
.item
]);
3357 static int snd_hdspm_get_ds_wire(struct snd_kcontrol
*kcontrol
,
3358 struct snd_ctl_elem_value
*ucontrol
)
3360 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3362 spin_lock_irq(&hdspm
->lock
);
3363 ucontrol
->value
.enumerated
.item
[0] = hdspm_ds_wire(hdspm
);
3364 spin_unlock_irq(&hdspm
->lock
);
3368 static int snd_hdspm_put_ds_wire(struct snd_kcontrol
*kcontrol
,
3369 struct snd_ctl_elem_value
*ucontrol
)
3371 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3375 if (!snd_hdspm_use_is_exclusive(hdspm
))
3377 val
= ucontrol
->value
.integer
.value
[0] & 1;
3378 spin_lock_irq(&hdspm
->lock
);
3379 change
= (int) val
!= hdspm_ds_wire(hdspm
);
3380 hdspm_set_ds_wire(hdspm
, val
);
3381 spin_unlock_irq(&hdspm
->lock
);
3386 #define HDSPM_QS_WIRE(xname, xindex) \
3387 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3390 .info = snd_hdspm_info_qs_wire, \
3391 .get = snd_hdspm_get_qs_wire, \
3392 .put = snd_hdspm_put_qs_wire \
3395 static int hdspm_qs_wire(struct hdspm
* hdspm
)
3397 if (hdspm
->control_register
& HDSPM_QS_DoubleWire
)
3399 if (hdspm
->control_register
& HDSPM_QS_QuadWire
)
3404 static int hdspm_set_qs_wire(struct hdspm
* hdspm
, int mode
)
3406 hdspm
->control_register
&= ~(HDSPM_QS_DoubleWire
| HDSPM_QS_QuadWire
);
3411 hdspm
->control_register
|= HDSPM_QS_DoubleWire
;
3414 hdspm
->control_register
|= HDSPM_QS_QuadWire
;
3417 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3422 static int snd_hdspm_info_qs_wire(struct snd_kcontrol
*kcontrol
,
3423 struct snd_ctl_elem_info
*uinfo
)
3425 static char *texts
[] = { "Single", "Double", "Quad" };
3427 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3429 uinfo
->value
.enumerated
.items
= 3;
3431 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3432 uinfo
->value
.enumerated
.item
=
3433 uinfo
->value
.enumerated
.items
- 1;
3434 strcpy(uinfo
->value
.enumerated
.name
,
3435 texts
[uinfo
->value
.enumerated
.item
]);
3440 static int snd_hdspm_get_qs_wire(struct snd_kcontrol
*kcontrol
,
3441 struct snd_ctl_elem_value
*ucontrol
)
3443 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3445 spin_lock_irq(&hdspm
->lock
);
3446 ucontrol
->value
.enumerated
.item
[0] = hdspm_qs_wire(hdspm
);
3447 spin_unlock_irq(&hdspm
->lock
);
3451 static int snd_hdspm_put_qs_wire(struct snd_kcontrol
*kcontrol
,
3452 struct snd_ctl_elem_value
*ucontrol
)
3454 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3458 if (!snd_hdspm_use_is_exclusive(hdspm
))
3460 val
= ucontrol
->value
.integer
.value
[0];
3465 spin_lock_irq(&hdspm
->lock
);
3466 change
= val
!= hdspm_qs_wire(hdspm
);
3467 hdspm_set_qs_wire(hdspm
, val
);
3468 spin_unlock_irq(&hdspm
->lock
);
3472 #define HDSPM_MADI_SPEEDMODE(xname, xindex) \
3473 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3476 .info = snd_hdspm_info_madi_speedmode, \
3477 .get = snd_hdspm_get_madi_speedmode, \
3478 .put = snd_hdspm_put_madi_speedmode \
3481 static int hdspm_madi_speedmode(struct hdspm
*hdspm
)
3483 if (hdspm
->control_register
& HDSPM_QuadSpeed
)
3485 if (hdspm
->control_register
& HDSPM_DoubleSpeed
)
3490 static int hdspm_set_madi_speedmode(struct hdspm
*hdspm
, int mode
)
3492 hdspm
->control_register
&= ~(HDSPM_DoubleSpeed
| HDSPM_QuadSpeed
);
3497 hdspm
->control_register
|= HDSPM_DoubleSpeed
;
3500 hdspm
->control_register
|= HDSPM_QuadSpeed
;
3503 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
3508 static int snd_hdspm_info_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3509 struct snd_ctl_elem_info
*uinfo
)
3511 static char *texts
[] = { "Single", "Double", "Quad" };
3513 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3515 uinfo
->value
.enumerated
.items
= 3;
3517 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3518 uinfo
->value
.enumerated
.item
=
3519 uinfo
->value
.enumerated
.items
- 1;
3520 strcpy(uinfo
->value
.enumerated
.name
,
3521 texts
[uinfo
->value
.enumerated
.item
]);
3526 static int snd_hdspm_get_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3527 struct snd_ctl_elem_value
*ucontrol
)
3529 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3531 spin_lock_irq(&hdspm
->lock
);
3532 ucontrol
->value
.enumerated
.item
[0] = hdspm_madi_speedmode(hdspm
);
3533 spin_unlock_irq(&hdspm
->lock
);
3537 static int snd_hdspm_put_madi_speedmode(struct snd_kcontrol
*kcontrol
,
3538 struct snd_ctl_elem_value
*ucontrol
)
3540 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3544 if (!snd_hdspm_use_is_exclusive(hdspm
))
3546 val
= ucontrol
->value
.integer
.value
[0];
3551 spin_lock_irq(&hdspm
->lock
);
3552 change
= val
!= hdspm_madi_speedmode(hdspm
);
3553 hdspm_set_madi_speedmode(hdspm
, val
);
3554 spin_unlock_irq(&hdspm
->lock
);
3558 #define HDSPM_MIXER(xname, xindex) \
3559 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
3563 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3564 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3565 .info = snd_hdspm_info_mixer, \
3566 .get = snd_hdspm_get_mixer, \
3567 .put = snd_hdspm_put_mixer \
3570 static int snd_hdspm_info_mixer(struct snd_kcontrol
*kcontrol
,
3571 struct snd_ctl_elem_info
*uinfo
)
3573 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3575 uinfo
->value
.integer
.min
= 0;
3576 uinfo
->value
.integer
.max
= 65535;
3577 uinfo
->value
.integer
.step
= 1;
3581 static int snd_hdspm_get_mixer(struct snd_kcontrol
*kcontrol
,
3582 struct snd_ctl_elem_value
*ucontrol
)
3584 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3588 source
= ucontrol
->value
.integer
.value
[0];
3591 else if (source
>= 2 * HDSPM_MAX_CHANNELS
)
3592 source
= 2 * HDSPM_MAX_CHANNELS
- 1;
3594 destination
= ucontrol
->value
.integer
.value
[1];
3595 if (destination
< 0)
3597 else if (destination
>= HDSPM_MAX_CHANNELS
)
3598 destination
= HDSPM_MAX_CHANNELS
- 1;
3600 spin_lock_irq(&hdspm
->lock
);
3601 if (source
>= HDSPM_MAX_CHANNELS
)
3602 ucontrol
->value
.integer
.value
[2] =
3603 hdspm_read_pb_gain(hdspm
, destination
,
3604 source
- HDSPM_MAX_CHANNELS
);
3606 ucontrol
->value
.integer
.value
[2] =
3607 hdspm_read_in_gain(hdspm
, destination
, source
);
3609 spin_unlock_irq(&hdspm
->lock
);
3614 static int snd_hdspm_put_mixer(struct snd_kcontrol
*kcontrol
,
3615 struct snd_ctl_elem_value
*ucontrol
)
3617 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3623 if (!snd_hdspm_use_is_exclusive(hdspm
))
3626 source
= ucontrol
->value
.integer
.value
[0];
3627 destination
= ucontrol
->value
.integer
.value
[1];
3629 if (source
< 0 || source
>= 2 * HDSPM_MAX_CHANNELS
)
3631 if (destination
< 0 || destination
>= HDSPM_MAX_CHANNELS
)
3634 gain
= ucontrol
->value
.integer
.value
[2];
3636 spin_lock_irq(&hdspm
->lock
);
3638 if (source
>= HDSPM_MAX_CHANNELS
)
3639 change
= gain
!= hdspm_read_pb_gain(hdspm
, destination
,
3641 HDSPM_MAX_CHANNELS
);
3643 change
= gain
!= hdspm_read_in_gain(hdspm
, destination
,
3647 if (source
>= HDSPM_MAX_CHANNELS
)
3648 hdspm_write_pb_gain(hdspm
, destination
,
3649 source
- HDSPM_MAX_CHANNELS
,
3652 hdspm_write_in_gain(hdspm
, destination
, source
,
3655 spin_unlock_irq(&hdspm
->lock
);
3660 /* The simple mixer control(s) provide gain control for the
3661 basic 1:1 mappings of playback streams to output
3665 #define HDSPM_PLAYBACK_MIXER \
3666 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3667 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
3668 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3669 .info = snd_hdspm_info_playback_mixer, \
3670 .get = snd_hdspm_get_playback_mixer, \
3671 .put = snd_hdspm_put_playback_mixer \
3674 static int snd_hdspm_info_playback_mixer(struct snd_kcontrol
*kcontrol
,
3675 struct snd_ctl_elem_info
*uinfo
)
3677 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3679 uinfo
->value
.integer
.min
= 0;
3680 uinfo
->value
.integer
.max
= 64;
3681 uinfo
->value
.integer
.step
= 1;
3685 static int snd_hdspm_get_playback_mixer(struct snd_kcontrol
*kcontrol
,
3686 struct snd_ctl_elem_value
*ucontrol
)
3688 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3691 channel
= ucontrol
->id
.index
- 1;
3693 if (snd_BUG_ON(channel
< 0 || channel
>= HDSPM_MAX_CHANNELS
))
3696 spin_lock_irq(&hdspm
->lock
);
3697 ucontrol
->value
.integer
.value
[0] =
3698 (hdspm_read_pb_gain(hdspm
, channel
, channel
)*64)/UNITY_GAIN
;
3699 spin_unlock_irq(&hdspm
->lock
);
3704 static int snd_hdspm_put_playback_mixer(struct snd_kcontrol
*kcontrol
,
3705 struct snd_ctl_elem_value
*ucontrol
)
3707 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3712 if (!snd_hdspm_use_is_exclusive(hdspm
))
3715 channel
= ucontrol
->id
.index
- 1;
3717 if (snd_BUG_ON(channel
< 0 || channel
>= HDSPM_MAX_CHANNELS
))
3720 gain
= ucontrol
->value
.integer
.value
[0]*UNITY_GAIN
/64;
3722 spin_lock_irq(&hdspm
->lock
);
3724 gain
!= hdspm_read_pb_gain(hdspm
, channel
,
3727 hdspm_write_pb_gain(hdspm
, channel
, channel
,
3729 spin_unlock_irq(&hdspm
->lock
);
3733 #define HDSPM_SYNC_CHECK(xname, xindex) \
3734 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3736 .private_value = xindex, \
3737 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3738 .info = snd_hdspm_info_sync_check, \
3739 .get = snd_hdspm_get_sync_check \
3743 static int snd_hdspm_info_sync_check(struct snd_kcontrol
*kcontrol
,
3744 struct snd_ctl_elem_info
*uinfo
)
3746 static char *texts
[] = { "No Lock", "Lock", "Sync", "N/A" };
3747 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3749 uinfo
->value
.enumerated
.items
= 4;
3750 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
3751 uinfo
->value
.enumerated
.item
=
3752 uinfo
->value
.enumerated
.items
- 1;
3753 strcpy(uinfo
->value
.enumerated
.name
,
3754 texts
[uinfo
->value
.enumerated
.item
]);
3758 static int hdspm_wc_sync_check(struct hdspm
*hdspm
)
3760 int status
, status2
;
3762 switch (hdspm
->io_type
) {
3764 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3765 if (status
& HDSPM_wcSync
)
3767 else if (status
& HDSPM_wcLock
)
3773 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3774 if (status2
& HDSPM_wcLock
) {
3775 if (status2
& HDSPM_wcSync
)
3785 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3787 if (status
& 0x2000000)
3789 else if (status
& 0x1000000)
3804 static int hdspm_madi_sync_check(struct hdspm
*hdspm
)
3806 int status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3807 if (status
& HDSPM_madiLock
) {
3808 if (status
& HDSPM_madiSync
)
3817 static int hdspm_s1_sync_check(struct hdspm
*hdspm
, int idx
)
3819 int status
, lock
, sync
;
3821 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
3823 lock
= (status
& (0x1<<idx
)) ? 1 : 0;
3824 sync
= (status
& (0x100<<idx
)) ? 1 : 0;
3834 static int hdspm_sync_in_sync_check(struct hdspm
*hdspm
)
3836 int status
, lock
= 0, sync
= 0;
3838 switch (hdspm
->io_type
) {
3841 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_3
);
3842 lock
= (status
& 0x400) ? 1 : 0;
3843 sync
= (status
& 0x800) ? 1 : 0;
3848 status
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3849 lock
= (status
& HDSPM_syncInLock
) ? 1 : 0;
3850 sync
= (status
& HDSPM_syncInSync
) ? 1 : 0;
3865 static int hdspm_aes_sync_check(struct hdspm
*hdspm
, int idx
)
3867 int status2
, lock
, sync
;
3868 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
3870 lock
= (status2
& (0x0080 >> idx
)) ? 1 : 0;
3871 sync
= (status2
& (0x8000 >> idx
)) ? 1 : 0;
3881 static int hdspm_tco_sync_check(struct hdspm
*hdspm
)
3886 switch (hdspm
->io_type
) {
3889 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
3890 if (status
& HDSPM_tcoLock
) {
3891 if (status
& HDSPM_tcoSync
)
3902 status
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
);
3904 if (status
& 0x8000000)
3905 return 2; /* Sync */
3906 if (status
& 0x4000000)
3907 return 1; /* Lock */
3908 return 0; /* No signal */
3920 static int snd_hdspm_get_sync_check(struct snd_kcontrol
*kcontrol
,
3921 struct snd_ctl_elem_value
*ucontrol
)
3923 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
3926 switch (hdspm
->io_type
) {
3928 switch (kcontrol
->private_value
) {
3930 val
= hdspm_wc_sync_check(hdspm
); break;
3932 val
= hdspm_tco_sync_check(hdspm
); break;
3933 case 8: /* SYNC IN */
3934 val
= hdspm_sync_in_sync_check(hdspm
); break;
3936 val
= hdspm_s1_sync_check(hdspm
, ucontrol
->id
.index
-1);
3940 switch (kcontrol
->private_value
) {
3942 val
= hdspm_wc_sync_check(hdspm
); break;
3944 val
= hdspm_tco_sync_check(hdspm
); break;
3945 case 5: /* SYNC IN */
3946 val
= hdspm_sync_in_sync_check(hdspm
); break;
3948 val
= hdspm_s1_sync_check(hdspm
, ucontrol
->id
.index
-1);
3952 switch (kcontrol
->private_value
) {
3954 val
= hdspm_wc_sync_check(hdspm
); break;
3956 val
= hdspm_madi_sync_check(hdspm
); break;
3958 val
= hdspm_tco_sync_check(hdspm
); break;
3959 case 3: /* SYNC_IN */
3960 val
= hdspm_sync_in_sync_check(hdspm
); break;
3964 val
= hdspm_madi_sync_check(hdspm
); /* MADI */
3968 switch (kcontrol
->private_value
) {
3970 val
= hdspm_wc_sync_check(hdspm
); break;
3972 val
= hdspm_tco_sync_check(hdspm
); break;
3973 case 10 /* SYNC IN */:
3974 val
= hdspm_sync_in_sync_check(hdspm
); break;
3975 default: /* AES1 to AES8 */
3976 val
= hdspm_aes_sync_check(hdspm
,
3977 kcontrol
->private_value
-1);
3985 ucontrol
->value
.enumerated
.item
[0] = val
;
3994 static void hdspm_tco_write(struct hdspm
*hdspm
)
3996 unsigned int tc
[4] = { 0, 0, 0, 0};
3998 switch (hdspm
->tco
->input
) {
4000 tc
[2] |= HDSPM_TCO2_set_input_MSB
;
4003 tc
[2] |= HDSPM_TCO2_set_input_LSB
;
4009 switch (hdspm
->tco
->framerate
) {
4011 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
;
4014 tc
[1] |= HDSPM_TCO1_LTC_Format_MSB
;
4017 tc
[1] |= HDSPM_TCO1_LTC_Format_MSB
+
4018 HDSPM_TCO1_set_drop_frame_flag
;
4021 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
+
4022 HDSPM_TCO1_LTC_Format_MSB
;
4025 tc
[1] |= HDSPM_TCO1_LTC_Format_LSB
+
4026 HDSPM_TCO1_LTC_Format_MSB
+
4027 HDSPM_TCO1_set_drop_frame_flag
;
4033 switch (hdspm
->tco
->wordclock
) {
4035 tc
[2] |= HDSPM_TCO2_WCK_IO_ratio_LSB
;
4038 tc
[2] |= HDSPM_TCO2_WCK_IO_ratio_MSB
;
4044 switch (hdspm
->tco
->samplerate
) {
4046 tc
[2] |= HDSPM_TCO2_set_freq
;
4049 tc
[2] |= HDSPM_TCO2_set_freq_from_app
;
4055 switch (hdspm
->tco
->pull
) {
4057 tc
[2] |= HDSPM_TCO2_set_pull_up
;
4060 tc
[2] |= HDSPM_TCO2_set_pull_down
;
4063 tc
[2] |= HDSPM_TCO2_set_pull_up
+ HDSPM_TCO2_set_01_4
;
4066 tc
[2] |= HDSPM_TCO2_set_pull_down
+ HDSPM_TCO2_set_01_4
;
4072 if (1 == hdspm
->tco
->term
) {
4073 tc
[2] |= HDSPM_TCO2_set_term_75R
;
4076 hdspm_write(hdspm
, HDSPM_WR_TCO
, tc
[0]);
4077 hdspm_write(hdspm
, HDSPM_WR_TCO
+4, tc
[1]);
4078 hdspm_write(hdspm
, HDSPM_WR_TCO
+8, tc
[2]);
4079 hdspm_write(hdspm
, HDSPM_WR_TCO
+12, tc
[3]);
4083 #define HDSPM_TCO_SAMPLE_RATE(xname, xindex) \
4084 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4087 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4088 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4089 .info = snd_hdspm_info_tco_sample_rate, \
4090 .get = snd_hdspm_get_tco_sample_rate, \
4091 .put = snd_hdspm_put_tco_sample_rate \
4094 static int snd_hdspm_info_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
4095 struct snd_ctl_elem_info
*uinfo
)
4097 static char *texts
[] = { "44.1 kHz", "48 kHz" };
4098 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4100 uinfo
->value
.enumerated
.items
= 2;
4102 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4103 uinfo
->value
.enumerated
.item
=
4104 uinfo
->value
.enumerated
.items
- 1;
4106 strcpy(uinfo
->value
.enumerated
.name
,
4107 texts
[uinfo
->value
.enumerated
.item
]);
4112 static int snd_hdspm_get_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
4113 struct snd_ctl_elem_value
*ucontrol
)
4115 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4117 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->samplerate
;
4122 static int snd_hdspm_put_tco_sample_rate(struct snd_kcontrol
*kcontrol
,
4123 struct snd_ctl_elem_value
*ucontrol
)
4125 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4127 if (hdspm
->tco
->samplerate
!= ucontrol
->value
.enumerated
.item
[0]) {
4128 hdspm
->tco
->samplerate
= ucontrol
->value
.enumerated
.item
[0];
4130 hdspm_tco_write(hdspm
);
4139 #define HDSPM_TCO_PULL(xname, xindex) \
4140 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4143 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4144 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4145 .info = snd_hdspm_info_tco_pull, \
4146 .get = snd_hdspm_get_tco_pull, \
4147 .put = snd_hdspm_put_tco_pull \
4150 static int snd_hdspm_info_tco_pull(struct snd_kcontrol
*kcontrol
,
4151 struct snd_ctl_elem_info
*uinfo
)
4153 static char *texts
[] = { "0", "+ 0.1 %", "- 0.1 %", "+ 4 %", "- 4 %" };
4154 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4156 uinfo
->value
.enumerated
.items
= 5;
4158 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4159 uinfo
->value
.enumerated
.item
=
4160 uinfo
->value
.enumerated
.items
- 1;
4162 strcpy(uinfo
->value
.enumerated
.name
,
4163 texts
[uinfo
->value
.enumerated
.item
]);
4168 static int snd_hdspm_get_tco_pull(struct snd_kcontrol
*kcontrol
,
4169 struct snd_ctl_elem_value
*ucontrol
)
4171 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4173 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->pull
;
4178 static int snd_hdspm_put_tco_pull(struct snd_kcontrol
*kcontrol
,
4179 struct snd_ctl_elem_value
*ucontrol
)
4181 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4183 if (hdspm
->tco
->pull
!= ucontrol
->value
.enumerated
.item
[0]) {
4184 hdspm
->tco
->pull
= ucontrol
->value
.enumerated
.item
[0];
4186 hdspm_tco_write(hdspm
);
4194 #define HDSPM_TCO_WCK_CONVERSION(xname, xindex) \
4195 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4198 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4199 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4200 .info = snd_hdspm_info_tco_wck_conversion, \
4201 .get = snd_hdspm_get_tco_wck_conversion, \
4202 .put = snd_hdspm_put_tco_wck_conversion \
4205 static int snd_hdspm_info_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
4206 struct snd_ctl_elem_info
*uinfo
)
4208 static char *texts
[] = { "1:1", "44.1 -> 48", "48 -> 44.1" };
4209 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4211 uinfo
->value
.enumerated
.items
= 3;
4213 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4214 uinfo
->value
.enumerated
.item
=
4215 uinfo
->value
.enumerated
.items
- 1;
4217 strcpy(uinfo
->value
.enumerated
.name
,
4218 texts
[uinfo
->value
.enumerated
.item
]);
4223 static int snd_hdspm_get_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
4224 struct snd_ctl_elem_value
*ucontrol
)
4226 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4228 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->wordclock
;
4233 static int snd_hdspm_put_tco_wck_conversion(struct snd_kcontrol
*kcontrol
,
4234 struct snd_ctl_elem_value
*ucontrol
)
4236 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4238 if (hdspm
->tco
->wordclock
!= ucontrol
->value
.enumerated
.item
[0]) {
4239 hdspm
->tco
->wordclock
= ucontrol
->value
.enumerated
.item
[0];
4241 hdspm_tco_write(hdspm
);
4250 #define HDSPM_TCO_FRAME_RATE(xname, xindex) \
4251 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4254 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4255 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4256 .info = snd_hdspm_info_tco_frame_rate, \
4257 .get = snd_hdspm_get_tco_frame_rate, \
4258 .put = snd_hdspm_put_tco_frame_rate \
4261 static int snd_hdspm_info_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
4262 struct snd_ctl_elem_info
*uinfo
)
4264 static char *texts
[] = { "24 fps", "25 fps", "29.97fps",
4265 "29.97 dfps", "30 fps", "30 dfps" };
4266 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4268 uinfo
->value
.enumerated
.items
= 6;
4270 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4271 uinfo
->value
.enumerated
.item
=
4272 uinfo
->value
.enumerated
.items
- 1;
4274 strcpy(uinfo
->value
.enumerated
.name
,
4275 texts
[uinfo
->value
.enumerated
.item
]);
4280 static int snd_hdspm_get_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
4281 struct snd_ctl_elem_value
*ucontrol
)
4283 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4285 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->framerate
;
4290 static int snd_hdspm_put_tco_frame_rate(struct snd_kcontrol
*kcontrol
,
4291 struct snd_ctl_elem_value
*ucontrol
)
4293 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4295 if (hdspm
->tco
->framerate
!= ucontrol
->value
.enumerated
.item
[0]) {
4296 hdspm
->tco
->framerate
= ucontrol
->value
.enumerated
.item
[0];
4298 hdspm_tco_write(hdspm
);
4307 #define HDSPM_TCO_SYNC_SOURCE(xname, xindex) \
4308 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4311 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4312 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4313 .info = snd_hdspm_info_tco_sync_source, \
4314 .get = snd_hdspm_get_tco_sync_source, \
4315 .put = snd_hdspm_put_tco_sync_source \
4318 static int snd_hdspm_info_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4319 struct snd_ctl_elem_info
*uinfo
)
4321 static char *texts
[] = { "LTC", "Video", "WCK" };
4322 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4324 uinfo
->value
.enumerated
.items
= 3;
4326 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
4327 uinfo
->value
.enumerated
.item
=
4328 uinfo
->value
.enumerated
.items
- 1;
4330 strcpy(uinfo
->value
.enumerated
.name
,
4331 texts
[uinfo
->value
.enumerated
.item
]);
4336 static int snd_hdspm_get_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4337 struct snd_ctl_elem_value
*ucontrol
)
4339 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4341 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->input
;
4346 static int snd_hdspm_put_tco_sync_source(struct snd_kcontrol
*kcontrol
,
4347 struct snd_ctl_elem_value
*ucontrol
)
4349 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4351 if (hdspm
->tco
->input
!= ucontrol
->value
.enumerated
.item
[0]) {
4352 hdspm
->tco
->input
= ucontrol
->value
.enumerated
.item
[0];
4354 hdspm_tco_write(hdspm
);
4363 #define HDSPM_TCO_WORD_TERM(xname, xindex) \
4364 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4367 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4368 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4369 .info = snd_hdspm_info_tco_word_term, \
4370 .get = snd_hdspm_get_tco_word_term, \
4371 .put = snd_hdspm_put_tco_word_term \
4374 static int snd_hdspm_info_tco_word_term(struct snd_kcontrol
*kcontrol
,
4375 struct snd_ctl_elem_info
*uinfo
)
4377 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
4379 uinfo
->value
.integer
.min
= 0;
4380 uinfo
->value
.integer
.max
= 1;
4386 static int snd_hdspm_get_tco_word_term(struct snd_kcontrol
*kcontrol
,
4387 struct snd_ctl_elem_value
*ucontrol
)
4389 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4391 ucontrol
->value
.enumerated
.item
[0] = hdspm
->tco
->term
;
4397 static int snd_hdspm_put_tco_word_term(struct snd_kcontrol
*kcontrol
,
4398 struct snd_ctl_elem_value
*ucontrol
)
4400 struct hdspm
*hdspm
= snd_kcontrol_chip(kcontrol
);
4402 if (hdspm
->tco
->term
!= ucontrol
->value
.enumerated
.item
[0]) {
4403 hdspm
->tco
->term
= ucontrol
->value
.enumerated
.item
[0];
4405 hdspm_tco_write(hdspm
);
4416 static struct snd_kcontrol_new snd_hdspm_controls_madi
[] = {
4417 HDSPM_MIXER("Mixer", 0),
4418 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4419 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4420 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4421 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4422 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4423 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4424 HDSPM_SYNC_CHECK("MADI SyncCheck", 1),
4425 HDSPM_SYNC_CHECK("TCO SyncCHeck", 2),
4426 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 3),
4427 HDSPM_LINE_OUT("Line Out", 0),
4428 HDSPM_TX_64("TX 64 channels mode", 0),
4429 HDSPM_C_TMS("Clear Track Marker", 0),
4430 HDSPM_SAFE_MODE("Safe Mode", 0),
4431 HDSPM_INPUT_SELECT("Input Select", 0),
4432 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
4436 static struct snd_kcontrol_new snd_hdspm_controls_madiface
[] = {
4437 HDSPM_MIXER("Mixer", 0),
4438 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4439 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4440 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4441 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4442 HDSPM_SYNC_CHECK("MADI SyncCheck", 0),
4443 HDSPM_TX_64("TX 64 channels mode", 0),
4444 HDSPM_C_TMS("Clear Track Marker", 0),
4445 HDSPM_SAFE_MODE("Safe Mode", 0),
4446 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
4449 static struct snd_kcontrol_new snd_hdspm_controls_aio
[] = {
4450 HDSPM_MIXER("Mixer", 0),
4451 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4452 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4453 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4454 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4455 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4456 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4457 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4458 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4459 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4460 HDSPM_SYNC_CHECK("ADAT SyncCheck", 3),
4461 HDSPM_SYNC_CHECK("TCO SyncCheck", 4),
4462 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 5),
4463 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4464 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4465 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4466 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT Frequency", 3),
4467 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 4),
4468 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 5)
4471 HDSPM_INPUT_SELECT("Input Select", 0),
4472 HDSPM_SPDIF_OPTICAL("SPDIF Out Optical", 0),
4473 HDSPM_PROFESSIONAL("SPDIF Out Professional", 0);
4474 HDSPM_SPDIF_IN("SPDIF In", 0);
4475 HDSPM_BREAKOUT_CABLE("Breakout Cable", 0);
4476 HDSPM_INPUT_LEVEL("Input Level", 0);
4477 HDSPM_OUTPUT_LEVEL("Output Level", 0);
4478 HDSPM_PHONES("Phones", 0);
4482 static struct snd_kcontrol_new snd_hdspm_controls_raydat
[] = {
4483 HDSPM_MIXER("Mixer", 0),
4484 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4485 HDSPM_SYSTEM_CLOCK_MODE("Clock Mode", 0),
4486 HDSPM_PREF_SYNC_REF("Pref Sync Ref", 0),
4487 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4488 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4489 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4490 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4491 HDSPM_SYNC_CHECK("ADAT1 SyncCheck", 3),
4492 HDSPM_SYNC_CHECK("ADAT2 SyncCheck", 4),
4493 HDSPM_SYNC_CHECK("ADAT3 SyncCheck", 5),
4494 HDSPM_SYNC_CHECK("ADAT4 SyncCheck", 6),
4495 HDSPM_SYNC_CHECK("TCO SyncCheck", 7),
4496 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 8),
4497 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4498 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4499 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4500 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT1 Frequency", 3),
4501 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT2 Frequency", 4),
4502 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT3 Frequency", 5),
4503 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT4 Frequency", 6),
4504 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 7),
4505 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 8)
4508 static struct snd_kcontrol_new snd_hdspm_controls_aes32
[] = {
4509 HDSPM_MIXER("Mixer", 0),
4510 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4511 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4512 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4513 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4514 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4515 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4516 HDSPM_SYNC_CHECK("WC Sync Check", 0),
4517 HDSPM_SYNC_CHECK("AES1 Sync Check", 1),
4518 HDSPM_SYNC_CHECK("AES2 Sync Check", 2),
4519 HDSPM_SYNC_CHECK("AES3 Sync Check", 3),
4520 HDSPM_SYNC_CHECK("AES4 Sync Check", 4),
4521 HDSPM_SYNC_CHECK("AES5 Sync Check", 5),
4522 HDSPM_SYNC_CHECK("AES6 Sync Check", 6),
4523 HDSPM_SYNC_CHECK("AES7 Sync Check", 7),
4524 HDSPM_SYNC_CHECK("AES8 Sync Check", 8),
4525 HDSPM_SYNC_CHECK("TCO Sync Check", 9),
4526 HDSPM_SYNC_CHECK("SYNC IN Sync Check", 10),
4527 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4528 HDSPM_AUTOSYNC_SAMPLE_RATE("AES1 Frequency", 1),
4529 HDSPM_AUTOSYNC_SAMPLE_RATE("AES2 Frequency", 2),
4530 HDSPM_AUTOSYNC_SAMPLE_RATE("AES3 Frequency", 3),
4531 HDSPM_AUTOSYNC_SAMPLE_RATE("AES4 Frequency", 4),
4532 HDSPM_AUTOSYNC_SAMPLE_RATE("AES5 Frequency", 5),
4533 HDSPM_AUTOSYNC_SAMPLE_RATE("AES6 Frequency", 6),
4534 HDSPM_AUTOSYNC_SAMPLE_RATE("AES7 Frequency", 7),
4535 HDSPM_AUTOSYNC_SAMPLE_RATE("AES8 Frequency", 8),
4536 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 9),
4537 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 10),
4538 HDSPM_LINE_OUT("Line Out", 0),
4539 HDSPM_EMPHASIS("Emphasis", 0),
4540 HDSPM_DOLBY("Non Audio", 0),
4541 HDSPM_PROFESSIONAL("Professional", 0),
4542 HDSPM_C_TMS("Clear Track Marker", 0),
4543 HDSPM_DS_WIRE("Double Speed Wire Mode", 0),
4544 HDSPM_QS_WIRE("Quad Speed Wire Mode", 0),
4549 /* Control elements for the optional TCO module */
4550 static struct snd_kcontrol_new snd_hdspm_controls_tco
[] = {
4551 HDSPM_TCO_SAMPLE_RATE("TCO Sample Rate", 0),
4552 HDSPM_TCO_PULL("TCO Pull", 0),
4553 HDSPM_TCO_WCK_CONVERSION("TCO WCK Conversion", 0),
4554 HDSPM_TCO_FRAME_RATE("TCO Frame Rate", 0),
4555 HDSPM_TCO_SYNC_SOURCE("TCO Sync Source", 0),
4556 HDSPM_TCO_WORD_TERM("TCO Word Term", 0)
4560 static struct snd_kcontrol_new snd_hdspm_playback_mixer
= HDSPM_PLAYBACK_MIXER
;
4563 static int hdspm_update_simple_mixer_controls(struct hdspm
* hdspm
)
4567 for (i
= hdspm
->ds_out_channels
; i
< hdspm
->ss_out_channels
; ++i
) {
4568 if (hdspm
->system_sample_rate
> 48000) {
4569 hdspm
->playback_mixer_ctls
[i
]->vd
[0].access
=
4570 SNDRV_CTL_ELEM_ACCESS_INACTIVE
|
4571 SNDRV_CTL_ELEM_ACCESS_READ
|
4572 SNDRV_CTL_ELEM_ACCESS_VOLATILE
;
4574 hdspm
->playback_mixer_ctls
[i
]->vd
[0].access
=
4575 SNDRV_CTL_ELEM_ACCESS_READWRITE
|
4576 SNDRV_CTL_ELEM_ACCESS_VOLATILE
;
4578 snd_ctl_notify(hdspm
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4579 SNDRV_CTL_EVENT_MASK_INFO
,
4580 &hdspm
->playback_mixer_ctls
[i
]->id
);
4587 static int snd_hdspm_create_controls(struct snd_card
*card
,
4588 struct hdspm
*hdspm
)
4590 unsigned int idx
, limit
;
4592 struct snd_kcontrol
*kctl
;
4593 struct snd_kcontrol_new
*list
= NULL
;
4595 switch (hdspm
->io_type
) {
4597 list
= snd_hdspm_controls_madi
;
4598 limit
= ARRAY_SIZE(snd_hdspm_controls_madi
);
4601 list
= snd_hdspm_controls_madiface
;
4602 limit
= ARRAY_SIZE(snd_hdspm_controls_madiface
);
4605 list
= snd_hdspm_controls_aio
;
4606 limit
= ARRAY_SIZE(snd_hdspm_controls_aio
);
4609 list
= snd_hdspm_controls_raydat
;
4610 limit
= ARRAY_SIZE(snd_hdspm_controls_raydat
);
4613 list
= snd_hdspm_controls_aes32
;
4614 limit
= ARRAY_SIZE(snd_hdspm_controls_aes32
);
4619 for (idx
= 0; idx
< limit
; idx
++) {
4620 err
= snd_ctl_add(card
,
4621 snd_ctl_new1(&list
[idx
], hdspm
));
4628 /* create simple 1:1 playback mixer controls */
4629 snd_hdspm_playback_mixer
.name
= "Chn";
4630 if (hdspm
->system_sample_rate
>= 128000) {
4631 limit
= hdspm
->qs_out_channels
;
4632 } else if (hdspm
->system_sample_rate
>= 64000) {
4633 limit
= hdspm
->ds_out_channels
;
4635 limit
= hdspm
->ss_out_channels
;
4637 for (idx
= 0; idx
< limit
; ++idx
) {
4638 snd_hdspm_playback_mixer
.index
= idx
+ 1;
4639 kctl
= snd_ctl_new1(&snd_hdspm_playback_mixer
, hdspm
);
4640 err
= snd_ctl_add(card
, kctl
);
4643 hdspm
->playback_mixer_ctls
[idx
] = kctl
;
4648 /* add tco control elements */
4649 list
= snd_hdspm_controls_tco
;
4650 limit
= ARRAY_SIZE(snd_hdspm_controls_tco
);
4651 for (idx
= 0; idx
< limit
; idx
++) {
4652 err
= snd_ctl_add(card
,
4653 snd_ctl_new1(&list
[idx
], hdspm
));
4662 /*------------------------------------------------------------
4664 ------------------------------------------------------------*/
4667 snd_hdspm_proc_read_madi(struct snd_info_entry
* entry
,
4668 struct snd_info_buffer
*buffer
)
4670 struct hdspm
*hdspm
= entry
->private_data
;
4671 unsigned int status
, status2
, control
, freq
;
4673 char *pref_sync_ref
;
4675 char *system_clock_mode
;
4680 int a
, ltc
, frames
, seconds
, minutes
, hours
;
4681 unsigned int period
;
4685 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
4686 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
4687 control
= hdspm
->control_register
;
4688 freq
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
4690 snd_iprintf(buffer
, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
4691 hdspm
->card_name
, hdspm
->card
->number
+ 1,
4692 hdspm
->firmware_rev
,
4693 (status2
& HDSPM_version0
) |
4694 (status2
& HDSPM_version1
) | (status2
&
4697 snd_iprintf(buffer
, "HW Serial: 0x%06x%06x\n",
4698 (hdspm_read(hdspm
, HDSPM_midiStatusIn1
)>>8) & 0xFFFFFF,
4701 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4702 hdspm
->irq
, hdspm
->port
, (unsigned long)hdspm
->iobase
);
4704 snd_iprintf(buffer
, "--- System ---\n");
4707 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4708 status
& HDSPM_audioIRQPending
,
4709 (status
& HDSPM_midi0IRQPending
) ? 1 : 0,
4710 (status
& HDSPM_midi1IRQPending
) ? 1 : 0,
4713 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4714 "estimated= %ld (bytes)\n",
4715 ((status
& HDSPM_BufferID
) ? 1 : 0),
4716 (status
& HDSPM_BufferPositionMask
),
4717 (status
& HDSPM_BufferPositionMask
) %
4718 (2 * (int)hdspm
->period_bytes
),
4719 ((status
& HDSPM_BufferPositionMask
) - 64) %
4720 (2 * (int)hdspm
->period_bytes
),
4721 (long) hdspm_hw_pointer(hdspm
) * 4);
4724 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4725 hdspm_read(hdspm
, HDSPM_midiStatusOut0
) & 0xFF,
4726 hdspm_read(hdspm
, HDSPM_midiStatusOut1
) & 0xFF,
4727 hdspm_read(hdspm
, HDSPM_midiStatusIn0
) & 0xFF,
4728 hdspm_read(hdspm
, HDSPM_midiStatusIn1
) & 0xFF);
4730 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4731 hdspm_read(hdspm
, HDSPM_midiStatusIn2
) & 0xFF,
4732 hdspm_read(hdspm
, HDSPM_midiStatusOut2
) & 0xFF);
4734 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4736 hdspm
->control_register
, hdspm
->control2_register
,
4738 if (status
& HDSPM_tco_detect
) {
4739 snd_iprintf(buffer
, "TCO module detected.\n");
4740 a
= hdspm_read(hdspm
, HDSPM_RD_TCO
+4);
4741 if (a
& HDSPM_TCO1_LTC_Input_valid
) {
4742 snd_iprintf(buffer
, " LTC valid, ");
4743 switch (a
& (HDSPM_TCO1_LTC_Format_LSB
|
4744 HDSPM_TCO1_LTC_Format_MSB
)) {
4746 snd_iprintf(buffer
, "24 fps, ");
4748 case HDSPM_TCO1_LTC_Format_LSB
:
4749 snd_iprintf(buffer
, "25 fps, ");
4751 case HDSPM_TCO1_LTC_Format_MSB
:
4752 snd_iprintf(buffer
, "29.97 fps, ");
4755 snd_iprintf(buffer
, "30 fps, ");
4758 if (a
& HDSPM_TCO1_set_drop_frame_flag
) {
4759 snd_iprintf(buffer
, "drop frame\n");
4761 snd_iprintf(buffer
, "full frame\n");
4764 snd_iprintf(buffer
, " no LTC\n");
4766 if (a
& HDSPM_TCO1_Video_Input_Format_NTSC
) {
4767 snd_iprintf(buffer
, " Video: NTSC\n");
4768 } else if (a
& HDSPM_TCO1_Video_Input_Format_PAL
) {
4769 snd_iprintf(buffer
, " Video: PAL\n");
4771 snd_iprintf(buffer
, " No video\n");
4773 if (a
& HDSPM_TCO1_TCO_lock
) {
4774 snd_iprintf(buffer
, " Sync: lock\n");
4776 snd_iprintf(buffer
, " Sync: no lock\n");
4779 switch (hdspm
->io_type
) {
4782 freq_const
= 110069313433624ULL;
4786 freq_const
= 104857600000000ULL;
4789 break; /* no TCO possible */
4792 period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
4793 snd_iprintf(buffer
, " period: %u\n", period
);
4796 /* rate = freq_const/period; */
4797 rate
= div_u64(freq_const
, period
);
4799 if (control
& HDSPM_QuadSpeed
) {
4801 } else if (control
& HDSPM_DoubleSpeed
) {
4805 snd_iprintf(buffer
, " Frequency: %u Hz\n",
4806 (unsigned int) rate
);
4808 ltc
= hdspm_read(hdspm
, HDSPM_RD_TCO
);
4811 frames
+= (ltc
& 0x3) * 10;
4813 seconds
= ltc
& 0xF;
4815 seconds
+= (ltc
& 0x7) * 10;
4817 minutes
= ltc
& 0xF;
4819 minutes
+= (ltc
& 0x7) * 10;
4823 hours
+= (ltc
& 0x3) * 10;
4825 " LTC In: %02d:%02d:%02d:%02d\n",
4826 hours
, minutes
, seconds
, frames
);
4829 snd_iprintf(buffer
, "No TCO module detected.\n");
4832 snd_iprintf(buffer
, "--- Settings ---\n");
4834 x
= hdspm_get_latency(hdspm
);
4837 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
4838 x
, (unsigned long) hdspm
->period_bytes
);
4840 snd_iprintf(buffer
, "Line out: %s\n",
4841 (hdspm
->control_register
& HDSPM_LineOut
) ? "on " : "off");
4843 switch (hdspm
->control_register
& HDSPM_InputMask
) {
4844 case HDSPM_InputOptical
:
4847 case HDSPM_InputCoaxial
:
4855 "ClearTrackMarker = %s, Transmit in %s Channel Mode, "
4857 (hdspm
->control_register
& HDSPM_clr_tms
) ? "on" : "off",
4858 (hdspm
->control_register
& HDSPM_TX_64ch
) ? "64" : "56",
4859 (hdspm
->control_register
& HDSPM_AutoInp
) ? "on" : "off");
4862 if (!(hdspm
->control_register
& HDSPM_ClockModeMaster
))
4863 system_clock_mode
= "AutoSync";
4865 system_clock_mode
= "Master";
4866 snd_iprintf(buffer
, "AutoSync Reference: %s\n", system_clock_mode
);
4868 switch (hdspm_pref_sync_ref(hdspm
)) {
4869 case HDSPM_SYNC_FROM_WORD
:
4870 pref_sync_ref
= "Word Clock";
4872 case HDSPM_SYNC_FROM_MADI
:
4873 pref_sync_ref
= "MADI Sync";
4875 case HDSPM_SYNC_FROM_TCO
:
4876 pref_sync_ref
= "TCO";
4878 case HDSPM_SYNC_FROM_SYNC_IN
:
4879 pref_sync_ref
= "Sync In";
4882 pref_sync_ref
= "XXXX Clock";
4885 snd_iprintf(buffer
, "Preferred Sync Reference: %s\n",
4888 snd_iprintf(buffer
, "System Clock Frequency: %d\n",
4889 hdspm
->system_sample_rate
);
4892 snd_iprintf(buffer
, "--- Status:\n");
4894 x
= status
& HDSPM_madiSync
;
4895 x2
= status2
& HDSPM_wcSync
;
4897 snd_iprintf(buffer
, "Inputs MADI=%s, WordClock=%s\n",
4898 (status
& HDSPM_madiLock
) ? (x
? "Sync" : "Lock") :
4900 (status2
& HDSPM_wcLock
) ? (x2
? "Sync" : "Lock") :
4903 switch (hdspm_autosync_ref(hdspm
)) {
4904 case HDSPM_AUTOSYNC_FROM_SYNC_IN
:
4905 autosync_ref
= "Sync In";
4907 case HDSPM_AUTOSYNC_FROM_TCO
:
4908 autosync_ref
= "TCO";
4910 case HDSPM_AUTOSYNC_FROM_WORD
:
4911 autosync_ref
= "Word Clock";
4913 case HDSPM_AUTOSYNC_FROM_MADI
:
4914 autosync_ref
= "MADI Sync";
4916 case HDSPM_AUTOSYNC_FROM_NONE
:
4917 autosync_ref
= "Input not valid";
4920 autosync_ref
= "---";
4924 "AutoSync: Reference= %s, Freq=%d (MADI = %d, Word = %d)\n",
4925 autosync_ref
, hdspm_external_sample_rate(hdspm
),
4926 (status
& HDSPM_madiFreqMask
) >> 22,
4927 (status2
& HDSPM_wcFreqMask
) >> 5);
4929 snd_iprintf(buffer
, "Input: %s, Mode=%s\n",
4930 (status
& HDSPM_AB_int
) ? "Coax" : "Optical",
4931 (status
& HDSPM_RX_64ch
) ? "64 channels" :
4934 snd_iprintf(buffer
, "\n");
4938 snd_hdspm_proc_read_aes32(struct snd_info_entry
* entry
,
4939 struct snd_info_buffer
*buffer
)
4941 struct hdspm
*hdspm
= entry
->private_data
;
4942 unsigned int status
;
4943 unsigned int status2
;
4944 unsigned int timecode
;
4949 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
4950 status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
4951 timecode
= hdspm_read(hdspm
, HDSPM_timecodeRegister
);
4953 snd_iprintf(buffer
, "%s (Card #%d) Rev.%x\n",
4954 hdspm
->card_name
, hdspm
->card
->number
+ 1,
4955 hdspm
->firmware_rev
);
4957 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4958 hdspm
->irq
, hdspm
->port
, (unsigned long)hdspm
->iobase
);
4960 snd_iprintf(buffer
, "--- System ---\n");
4963 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4964 status
& HDSPM_audioIRQPending
,
4965 (status
& HDSPM_midi0IRQPending
) ? 1 : 0,
4966 (status
& HDSPM_midi1IRQPending
) ? 1 : 0,
4969 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4970 "estimated= %ld (bytes)\n",
4971 ((status
& HDSPM_BufferID
) ? 1 : 0),
4972 (status
& HDSPM_BufferPositionMask
),
4973 (status
& HDSPM_BufferPositionMask
) %
4974 (2 * (int)hdspm
->period_bytes
),
4975 ((status
& HDSPM_BufferPositionMask
) - 64) %
4976 (2 * (int)hdspm
->period_bytes
),
4977 (long) hdspm_hw_pointer(hdspm
) * 4);
4980 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4981 hdspm_read(hdspm
, HDSPM_midiStatusOut0
) & 0xFF,
4982 hdspm_read(hdspm
, HDSPM_midiStatusOut1
) & 0xFF,
4983 hdspm_read(hdspm
, HDSPM_midiStatusIn0
) & 0xFF,
4984 hdspm_read(hdspm
, HDSPM_midiStatusIn1
) & 0xFF);
4986 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4987 hdspm_read(hdspm
, HDSPM_midiStatusIn2
) & 0xFF,
4988 hdspm_read(hdspm
, HDSPM_midiStatusOut2
) & 0xFF);
4990 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4992 hdspm
->control_register
, hdspm
->control2_register
,
4995 snd_iprintf(buffer
, "--- Settings ---\n");
4997 x
= hdspm_get_latency(hdspm
);
5000 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
5001 x
, (unsigned long) hdspm
->period_bytes
);
5003 snd_iprintf(buffer
, "Line out: %s\n",
5005 control_register
& HDSPM_LineOut
) ? "on " : "off");
5008 "ClearTrackMarker %s, Emphasis %s, Dolby %s\n",
5010 control_register
& HDSPM_clr_tms
) ? "on" : "off",
5012 control_register
& HDSPM_Emphasis
) ? "on" : "off",
5014 control_register
& HDSPM_Dolby
) ? "on" : "off");
5017 pref_syncref
= hdspm_pref_sync_ref(hdspm
);
5018 if (pref_syncref
== 0)
5019 snd_iprintf(buffer
, "Preferred Sync Reference: Word Clock\n");
5021 snd_iprintf(buffer
, "Preferred Sync Reference: AES%d\n",
5024 snd_iprintf(buffer
, "System Clock Frequency: %d\n",
5025 hdspm
->system_sample_rate
);
5027 snd_iprintf(buffer
, "Double speed: %s\n",
5028 hdspm
->control_register
& HDSPM_DS_DoubleWire
?
5029 "Double wire" : "Single wire");
5030 snd_iprintf(buffer
, "Quad speed: %s\n",
5031 hdspm
->control_register
& HDSPM_QS_DoubleWire
?
5033 hdspm
->control_register
& HDSPM_QS_QuadWire
?
5034 "Quad wire" : "Single wire");
5036 snd_iprintf(buffer
, "--- Status:\n");
5038 snd_iprintf(buffer
, "Word: %s Frequency: %d\n",
5039 (status
& HDSPM_AES32_wcLock
) ? "Sync " : "No Lock",
5040 HDSPM_bit2freq((status
>> HDSPM_AES32_wcFreq_bit
) & 0xF));
5042 for (x
= 0; x
< 8; x
++) {
5043 snd_iprintf(buffer
, "AES%d: %s Frequency: %d\n",
5045 (status2
& (HDSPM_LockAES
>> x
)) ?
5046 "Sync " : "No Lock",
5047 HDSPM_bit2freq((timecode
>> (4*x
)) & 0xF));
5050 switch (hdspm_autosync_ref(hdspm
)) {
5051 case HDSPM_AES32_AUTOSYNC_FROM_NONE
:
5052 autosync_ref
= "None"; break;
5053 case HDSPM_AES32_AUTOSYNC_FROM_WORD
:
5054 autosync_ref
= "Word Clock"; break;
5055 case HDSPM_AES32_AUTOSYNC_FROM_AES1
:
5056 autosync_ref
= "AES1"; break;
5057 case HDSPM_AES32_AUTOSYNC_FROM_AES2
:
5058 autosync_ref
= "AES2"; break;
5059 case HDSPM_AES32_AUTOSYNC_FROM_AES3
:
5060 autosync_ref
= "AES3"; break;
5061 case HDSPM_AES32_AUTOSYNC_FROM_AES4
:
5062 autosync_ref
= "AES4"; break;
5063 case HDSPM_AES32_AUTOSYNC_FROM_AES5
:
5064 autosync_ref
= "AES5"; break;
5065 case HDSPM_AES32_AUTOSYNC_FROM_AES6
:
5066 autosync_ref
= "AES6"; break;
5067 case HDSPM_AES32_AUTOSYNC_FROM_AES7
:
5068 autosync_ref
= "AES7"; break;
5069 case HDSPM_AES32_AUTOSYNC_FROM_AES8
:
5070 autosync_ref
= "AES8"; break;
5072 autosync_ref
= "---"; break;
5074 snd_iprintf(buffer
, "AutoSync ref = %s\n", autosync_ref
);
5076 snd_iprintf(buffer
, "\n");
5080 snd_hdspm_proc_read_raydat(struct snd_info_entry
*entry
,
5081 struct snd_info_buffer
*buffer
)
5083 struct hdspm
*hdspm
= entry
->private_data
;
5084 unsigned int status1
, status2
, status3
, control
, i
;
5085 unsigned int lock
, sync
;
5087 status1
= hdspm_read(hdspm
, HDSPM_RD_STATUS_1
); /* s1 */
5088 status2
= hdspm_read(hdspm
, HDSPM_RD_STATUS_2
); /* freq */
5089 status3
= hdspm_read(hdspm
, HDSPM_RD_STATUS_3
); /* s2 */
5091 control
= hdspm
->control_register
;
5093 snd_iprintf(buffer
, "STATUS1: 0x%08x\n", status1
);
5094 snd_iprintf(buffer
, "STATUS2: 0x%08x\n", status2
);
5095 snd_iprintf(buffer
, "STATUS3: 0x%08x\n", status3
);
5098 snd_iprintf(buffer
, "\n*** CLOCK MODE\n\n");
5100 snd_iprintf(buffer
, "Clock mode : %s\n",
5101 (hdspm_system_clock_mode(hdspm
) == 0) ? "master" : "slave");
5102 snd_iprintf(buffer
, "System frequency: %d Hz\n",
5103 hdspm_get_system_sample_rate(hdspm
));
5105 snd_iprintf(buffer
, "\n*** INPUT STATUS\n\n");
5110 for (i
= 0; i
< 8; i
++) {
5111 snd_iprintf(buffer
, "s1_input %d: Lock %d, Sync %d, Freq %s\n",
5113 (status1
& lock
) ? 1 : 0,
5114 (status1
& sync
) ? 1 : 0,
5115 texts_freq
[(status2
>> (i
* 4)) & 0xF]);
5121 snd_iprintf(buffer
, "WC input: Lock %d, Sync %d, Freq %s\n",
5122 (status1
& 0x1000000) ? 1 : 0,
5123 (status1
& 0x2000000) ? 1 : 0,
5124 texts_freq
[(status1
>> 16) & 0xF]);
5126 snd_iprintf(buffer
, "TCO input: Lock %d, Sync %d, Freq %s\n",
5127 (status1
& 0x4000000) ? 1 : 0,
5128 (status1
& 0x8000000) ? 1 : 0,
5129 texts_freq
[(status1
>> 20) & 0xF]);
5131 snd_iprintf(buffer
, "SYNC IN: Lock %d, Sync %d, Freq %s\n",
5132 (status3
& 0x400) ? 1 : 0,
5133 (status3
& 0x800) ? 1 : 0,
5134 texts_freq
[(status2
>> 12) & 0xF]);
5138 #ifdef CONFIG_SND_DEBUG
5140 snd_hdspm_proc_read_debug(struct snd_info_entry
*entry
,
5141 struct snd_info_buffer
*buffer
)
5143 struct hdspm
*hdspm
= entry
->private_data
;
5147 for (i
= 0; i
< 256 /* 1024*64 */; i
+= j
) {
5148 snd_iprintf(buffer
, "0x%08X: ", i
);
5149 for (j
= 0; j
< 16; j
+= 4)
5150 snd_iprintf(buffer
, "%08X ", hdspm_read(hdspm
, i
+ j
));
5151 snd_iprintf(buffer
, "\n");
5157 static void snd_hdspm_proc_ports_in(struct snd_info_entry
*entry
,
5158 struct snd_info_buffer
*buffer
)
5160 struct hdspm
*hdspm
= entry
->private_data
;
5163 snd_iprintf(buffer
, "# generated by hdspm\n");
5165 for (i
= 0; i
< hdspm
->max_channels_in
; i
++) {
5166 snd_iprintf(buffer
, "%d=%s\n", i
+1, hdspm
->port_names_in
[i
]);
5170 static void snd_hdspm_proc_ports_out(struct snd_info_entry
*entry
,
5171 struct snd_info_buffer
*buffer
)
5173 struct hdspm
*hdspm
= entry
->private_data
;
5176 snd_iprintf(buffer
, "# generated by hdspm\n");
5178 for (i
= 0; i
< hdspm
->max_channels_out
; i
++) {
5179 snd_iprintf(buffer
, "%d=%s\n", i
+1, hdspm
->port_names_out
[i
]);
5184 static void __devinit
snd_hdspm_proc_init(struct hdspm
*hdspm
)
5186 struct snd_info_entry
*entry
;
5188 if (!snd_card_proc_new(hdspm
->card
, "hdspm", &entry
)) {
5189 switch (hdspm
->io_type
) {
5191 snd_info_set_text_ops(entry
, hdspm
,
5192 snd_hdspm_proc_read_aes32
);
5195 snd_info_set_text_ops(entry
, hdspm
,
5196 snd_hdspm_proc_read_madi
);
5199 /* snd_info_set_text_ops(entry, hdspm,
5200 snd_hdspm_proc_read_madiface); */
5203 snd_info_set_text_ops(entry
, hdspm
,
5204 snd_hdspm_proc_read_raydat
);
5211 if (!snd_card_proc_new(hdspm
->card
, "ports.in", &entry
)) {
5212 snd_info_set_text_ops(entry
, hdspm
, snd_hdspm_proc_ports_in
);
5215 if (!snd_card_proc_new(hdspm
->card
, "ports.out", &entry
)) {
5216 snd_info_set_text_ops(entry
, hdspm
, snd_hdspm_proc_ports_out
);
5219 #ifdef CONFIG_SND_DEBUG
5220 /* debug file to read all hdspm registers */
5221 if (!snd_card_proc_new(hdspm
->card
, "debug", &entry
))
5222 snd_info_set_text_ops(entry
, hdspm
,
5223 snd_hdspm_proc_read_debug
);
5227 /*------------------------------------------------------------
5229 ------------------------------------------------------------*/
5231 static int snd_hdspm_set_defaults(struct hdspm
* hdspm
)
5233 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
5234 hold it (e.g. during module initialization).
5239 hdspm
->settings_register
= 0;
5241 switch (hdspm
->io_type
) {
5244 hdspm
->control_register
=
5245 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5250 hdspm
->settings_register
= 0x1 + 0x1000;
5251 /* Magic values are: LAT_0, LAT_2, Master, freq1, tx64ch, inp_0,
5253 hdspm
->control_register
=
5254 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5258 hdspm
->control_register
=
5259 HDSPM_ClockModeMaster
| /* Master Cloack Mode on */
5260 hdspm_encode_latency(7) | /* latency max=8192samples */
5261 HDSPM_SyncRef0
| /* AES1 is syncclock */
5262 HDSPM_LineOut
| /* Analog output in */
5263 HDSPM_Professional
; /* Professional mode */
5267 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
5269 if (AES32
== hdspm
->io_type
) {
5270 /* No control2 register for AES32 */
5271 #ifdef SNDRV_BIG_ENDIAN
5272 hdspm
->control2_register
= HDSPM_BIGENDIAN_MODE
;
5274 hdspm
->control2_register
= 0;
5277 hdspm_write(hdspm
, HDSPM_control2Reg
, hdspm
->control2_register
);
5279 hdspm_compute_period_size(hdspm
);
5281 /* silence everything */
5283 all_in_all_mixer(hdspm
, 0 * UNITY_GAIN
);
5285 if (hdspm
->io_type
== AIO
|| hdspm
->io_type
== RayDAT
) {
5286 hdspm_write(hdspm
, HDSPM_WR_SETTINGS
, hdspm
->settings_register
);
5289 /* set a default rate so that the channel map is set up. */
5290 hdspm_set_rate(hdspm
, 48000, 1);
5296 /*------------------------------------------------------------
5298 ------------------------------------------------------------*/
5300 static irqreturn_t
snd_hdspm_interrupt(int irq
, void *dev_id
)
5302 struct hdspm
*hdspm
= (struct hdspm
*) dev_id
;
5303 unsigned int status
;
5304 int i
, audio
, midi
, schedule
= 0;
5307 status
= hdspm_read(hdspm
, HDSPM_statusRegister
);
5309 audio
= status
& HDSPM_audioIRQPending
;
5310 midi
= status
& (HDSPM_midi0IRQPending
| HDSPM_midi1IRQPending
|
5311 HDSPM_midi2IRQPending
| HDSPM_midi3IRQPending
);
5313 /* now = get_cycles(); */
5315 * LAT_2..LAT_0 period counter (win) counter (mac)
5316 * 6 4096 ~256053425 ~514672358
5317 * 5 2048 ~128024983 ~257373821
5318 * 4 1024 ~64023706 ~128718089
5319 * 3 512 ~32005945 ~64385999
5320 * 2 256 ~16003039 ~32260176
5321 * 1 128 ~7998738 ~16194507
5322 * 0 64 ~3998231 ~8191558
5325 snd_printk(KERN_INFO "snd_hdspm_interrupt %llu @ %llx\n",
5326 now-hdspm->last_interrupt, status & 0xFFC0);
5327 hdspm->last_interrupt = now;
5330 if (!audio
&& !midi
)
5333 hdspm_write(hdspm
, HDSPM_interruptConfirmation
, 0);
5338 if (hdspm
->capture_substream
)
5339 snd_pcm_period_elapsed(hdspm
->capture_substream
);
5341 if (hdspm
->playback_substream
)
5342 snd_pcm_period_elapsed(hdspm
->playback_substream
);
5347 while (i
< hdspm
->midiPorts
) {
5348 if ((hdspm_read(hdspm
,
5349 hdspm
->midi
[i
].statusIn
) & 0xff) &&
5350 (status
& hdspm
->midi
[i
].irq
)) {
5351 /* we disable interrupts for this input until
5352 * processing is done
5354 hdspm
->control_register
&= ~hdspm
->midi
[i
].ie
;
5355 hdspm_write(hdspm
, HDSPM_controlRegister
,
5356 hdspm
->control_register
);
5357 hdspm
->midi
[i
].pending
= 1;
5365 tasklet_hi_schedule(&hdspm
->midi_tasklet
);
5371 /*------------------------------------------------------------
5373 ------------------------------------------------------------*/
5376 static snd_pcm_uframes_t
snd_hdspm_hw_pointer(struct snd_pcm_substream
5379 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5380 return hdspm_hw_pointer(hdspm
);
5384 static int snd_hdspm_reset(struct snd_pcm_substream
*substream
)
5386 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
5387 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5388 struct snd_pcm_substream
*other
;
5390 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5391 other
= hdspm
->capture_substream
;
5393 other
= hdspm
->playback_substream
;
5396 runtime
->status
->hw_ptr
= hdspm_hw_pointer(hdspm
);
5398 runtime
->status
->hw_ptr
= 0;
5400 struct snd_pcm_substream
*s
;
5401 struct snd_pcm_runtime
*oruntime
= other
->runtime
;
5402 snd_pcm_group_for_each_entry(s
, substream
) {
5404 oruntime
->status
->hw_ptr
=
5405 runtime
->status
->hw_ptr
;
5413 static int snd_hdspm_hw_params(struct snd_pcm_substream
*substream
,
5414 struct snd_pcm_hw_params
*params
)
5416 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5422 spin_lock_irq(&hdspm
->lock
);
5424 if (substream
->pstr
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5425 this_pid
= hdspm
->playback_pid
;
5426 other_pid
= hdspm
->capture_pid
;
5428 this_pid
= hdspm
->capture_pid
;
5429 other_pid
= hdspm
->playback_pid
;
5432 if (other_pid
> 0 && this_pid
!= other_pid
) {
5434 /* The other stream is open, and not by the same
5435 task as this one. Make sure that the parameters
5436 that matter are the same.
5439 if (params_rate(params
) != hdspm
->system_sample_rate
) {
5440 spin_unlock_irq(&hdspm
->lock
);
5441 _snd_pcm_hw_param_setempty(params
,
5442 SNDRV_PCM_HW_PARAM_RATE
);
5446 if (params_period_size(params
) != hdspm
->period_bytes
/ 4) {
5447 spin_unlock_irq(&hdspm
->lock
);
5448 _snd_pcm_hw_param_setempty(params
,
5449 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5455 spin_unlock_irq(&hdspm
->lock
);
5457 /* how to make sure that the rate matches an externally-set one ? */
5459 spin_lock_irq(&hdspm
->lock
);
5460 err
= hdspm_set_rate(hdspm
, params_rate(params
), 0);
5462 snd_printk(KERN_INFO
"err on hdspm_set_rate: %d\n", err
);
5463 spin_unlock_irq(&hdspm
->lock
);
5464 _snd_pcm_hw_param_setempty(params
,
5465 SNDRV_PCM_HW_PARAM_RATE
);
5468 spin_unlock_irq(&hdspm
->lock
);
5470 err
= hdspm_set_interrupt_interval(hdspm
,
5471 params_period_size(params
));
5473 snd_printk(KERN_INFO
"err on hdspm_set_interrupt_interval: %d\n", err
);
5474 _snd_pcm_hw_param_setempty(params
,
5475 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5479 /* Memory allocation, takashi's method, dont know if we should
5482 /* malloc all buffer even if not enabled to get sure */
5483 /* Update for MADI rev 204: we need to allocate for all channels,
5484 * otherwise it doesn't work at 96kHz */
5487 snd_pcm_lib_malloc_pages(substream
, HDSPM_DMA_AREA_BYTES
);
5489 snd_printk(KERN_INFO
"err on snd_pcm_lib_malloc_pages: %d\n", err
);
5493 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5495 hdspm_set_sgbuf(hdspm
, substream
, HDSPM_pageAddressBufferOut
,
5496 params_channels(params
));
5498 for (i
= 0; i
< params_channels(params
); ++i
)
5499 snd_hdspm_enable_out(hdspm
, i
, 1);
5501 hdspm
->playback_buffer
=
5502 (unsigned char *) substream
->runtime
->dma_area
;
5503 snd_printdd("Allocated sample buffer for playback at %p\n",
5504 hdspm
->playback_buffer
);
5506 hdspm_set_sgbuf(hdspm
, substream
, HDSPM_pageAddressBufferIn
,
5507 params_channels(params
));
5509 for (i
= 0; i
< params_channels(params
); ++i
)
5510 snd_hdspm_enable_in(hdspm
, i
, 1);
5512 hdspm
->capture_buffer
=
5513 (unsigned char *) substream
->runtime
->dma_area
;
5514 snd_printdd("Allocated sample buffer for capture at %p\n",
5515 hdspm
->capture_buffer
);
5519 snd_printdd("Allocated sample buffer for %s at 0x%08X\n",
5520 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5521 "playback" : "capture",
5522 snd_pcm_sgbuf_get_addr(substream, 0));
5525 snd_printdd("set_hwparams: %s %d Hz, %d channels, bs = %d\n",
5526 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5527 "playback" : "capture",
5528 params_rate(params), params_channels(params),
5529 params_buffer_size(params));
5533 /* Switch to native float format if requested */
5534 if (SNDRV_PCM_FORMAT_FLOAT_LE
== params_format(params
)) {
5535 if (!(hdspm
->control_register
& HDSPe_FLOAT_FORMAT
))
5536 snd_printk(KERN_INFO
"hdspm: Switching to native 32bit LE float format.\n");
5538 hdspm
->control_register
|= HDSPe_FLOAT_FORMAT
;
5539 } else if (SNDRV_PCM_FORMAT_S32_LE
== params_format(params
)) {
5540 if (hdspm
->control_register
& HDSPe_FLOAT_FORMAT
)
5541 snd_printk(KERN_INFO
"hdspm: Switching to native 32bit LE integer format.\n");
5543 hdspm
->control_register
&= ~HDSPe_FLOAT_FORMAT
;
5545 hdspm_write(hdspm
, HDSPM_controlRegister
, hdspm
->control_register
);
5550 static int snd_hdspm_hw_free(struct snd_pcm_substream
*substream
)
5553 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5555 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5557 /* params_channels(params) should be enough,
5558 but to get sure in case of error */
5559 for (i
= 0; i
< hdspm
->max_channels_out
; ++i
)
5560 snd_hdspm_enable_out(hdspm
, i
, 0);
5562 hdspm
->playback_buffer
= NULL
;
5564 for (i
= 0; i
< hdspm
->max_channels_in
; ++i
)
5565 snd_hdspm_enable_in(hdspm
, i
, 0);
5567 hdspm
->capture_buffer
= NULL
;
5571 snd_pcm_lib_free_pages(substream
);
5577 static int snd_hdspm_channel_info(struct snd_pcm_substream
*substream
,
5578 struct snd_pcm_channel_info
*info
)
5580 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5582 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
5583 if (snd_BUG_ON(info
->channel
>= hdspm
->max_channels_out
)) {
5584 snd_printk(KERN_INFO
"snd_hdspm_channel_info: output channel out of range (%d)\n", info
->channel
);
5588 if (hdspm
->channel_map_out
[info
->channel
] < 0) {
5589 snd_printk(KERN_INFO
"snd_hdspm_channel_info: output channel %d mapped out\n", info
->channel
);
5593 info
->offset
= hdspm
->channel_map_out
[info
->channel
] *
5594 HDSPM_CHANNEL_BUFFER_BYTES
;
5596 if (snd_BUG_ON(info
->channel
>= hdspm
->max_channels_in
)) {
5597 snd_printk(KERN_INFO
"snd_hdspm_channel_info: input channel out of range (%d)\n", info
->channel
);
5601 if (hdspm
->channel_map_in
[info
->channel
] < 0) {
5602 snd_printk(KERN_INFO
"snd_hdspm_channel_info: input channel %d mapped out\n", info
->channel
);
5606 info
->offset
= hdspm
->channel_map_in
[info
->channel
] *
5607 HDSPM_CHANNEL_BUFFER_BYTES
;
5616 static int snd_hdspm_ioctl(struct snd_pcm_substream
*substream
,
5617 unsigned int cmd
, void *arg
)
5620 case SNDRV_PCM_IOCTL1_RESET
:
5621 return snd_hdspm_reset(substream
);
5623 case SNDRV_PCM_IOCTL1_CHANNEL_INFO
:
5625 struct snd_pcm_channel_info
*info
= arg
;
5626 return snd_hdspm_channel_info(substream
, info
);
5632 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
5635 static int snd_hdspm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
5637 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5638 struct snd_pcm_substream
*other
;
5641 spin_lock(&hdspm
->lock
);
5642 running
= hdspm
->running
;
5644 case SNDRV_PCM_TRIGGER_START
:
5645 running
|= 1 << substream
->stream
;
5647 case SNDRV_PCM_TRIGGER_STOP
:
5648 running
&= ~(1 << substream
->stream
);
5652 spin_unlock(&hdspm
->lock
);
5655 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5656 other
= hdspm
->capture_substream
;
5658 other
= hdspm
->playback_substream
;
5661 struct snd_pcm_substream
*s
;
5662 snd_pcm_group_for_each_entry(s
, substream
) {
5664 snd_pcm_trigger_done(s
, substream
);
5665 if (cmd
== SNDRV_PCM_TRIGGER_START
)
5666 running
|= 1 << s
->stream
;
5668 running
&= ~(1 << s
->stream
);
5672 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
5673 if (!(running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
))
5674 && substream
->stream
==
5675 SNDRV_PCM_STREAM_CAPTURE
)
5676 hdspm_silence_playback(hdspm
);
5679 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
5680 hdspm_silence_playback(hdspm
);
5683 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
5684 hdspm_silence_playback(hdspm
);
5687 snd_pcm_trigger_done(substream
, substream
);
5688 if (!hdspm
->running
&& running
)
5689 hdspm_start_audio(hdspm
);
5690 else if (hdspm
->running
&& !running
)
5691 hdspm_stop_audio(hdspm
);
5692 hdspm
->running
= running
;
5693 spin_unlock(&hdspm
->lock
);
5698 static int snd_hdspm_prepare(struct snd_pcm_substream
*substream
)
5703 static struct snd_pcm_hardware snd_hdspm_playback_subinfo
= {
5704 .info
= (SNDRV_PCM_INFO_MMAP
|
5705 SNDRV_PCM_INFO_MMAP_VALID
|
5706 SNDRV_PCM_INFO_NONINTERLEAVED
|
5707 SNDRV_PCM_INFO_SYNC_START
| SNDRV_PCM_INFO_DOUBLE
),
5708 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
5709 .rates
= (SNDRV_PCM_RATE_32000
|
5710 SNDRV_PCM_RATE_44100
|
5711 SNDRV_PCM_RATE_48000
|
5712 SNDRV_PCM_RATE_64000
|
5713 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
5714 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
),
5718 .channels_max
= HDSPM_MAX_CHANNELS
,
5720 HDSPM_CHANNEL_BUFFER_BYTES
* HDSPM_MAX_CHANNELS
,
5721 .period_bytes_min
= (32 * 4),
5722 .period_bytes_max
= (8192 * 4) * HDSPM_MAX_CHANNELS
,
5728 static struct snd_pcm_hardware snd_hdspm_capture_subinfo
= {
5729 .info
= (SNDRV_PCM_INFO_MMAP
|
5730 SNDRV_PCM_INFO_MMAP_VALID
|
5731 SNDRV_PCM_INFO_NONINTERLEAVED
|
5732 SNDRV_PCM_INFO_SYNC_START
),
5733 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
5734 .rates
= (SNDRV_PCM_RATE_32000
|
5735 SNDRV_PCM_RATE_44100
|
5736 SNDRV_PCM_RATE_48000
|
5737 SNDRV_PCM_RATE_64000
|
5738 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
5739 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
),
5743 .channels_max
= HDSPM_MAX_CHANNELS
,
5745 HDSPM_CHANNEL_BUFFER_BYTES
* HDSPM_MAX_CHANNELS
,
5746 .period_bytes_min
= (32 * 4),
5747 .period_bytes_max
= (8192 * 4) * HDSPM_MAX_CHANNELS
,
5753 static int snd_hdspm_hw_rule_in_channels_rate(struct snd_pcm_hw_params
*params
,
5754 struct snd_pcm_hw_rule
*rule
)
5756 struct hdspm
*hdspm
= rule
->private;
5757 struct snd_interval
*c
=
5758 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5759 struct snd_interval
*r
=
5760 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5762 if (r
->min
> 96000 && r
->max
<= 192000) {
5763 struct snd_interval t
= {
5764 .min
= hdspm
->qs_in_channels
,
5765 .max
= hdspm
->qs_in_channels
,
5768 return snd_interval_refine(c
, &t
);
5769 } else if (r
->min
> 48000 && r
->max
<= 96000) {
5770 struct snd_interval t
= {
5771 .min
= hdspm
->ds_in_channels
,
5772 .max
= hdspm
->ds_in_channels
,
5775 return snd_interval_refine(c
, &t
);
5776 } else if (r
->max
< 64000) {
5777 struct snd_interval t
= {
5778 .min
= hdspm
->ss_in_channels
,
5779 .max
= hdspm
->ss_in_channels
,
5782 return snd_interval_refine(c
, &t
);
5788 static int snd_hdspm_hw_rule_out_channels_rate(struct snd_pcm_hw_params
*params
,
5789 struct snd_pcm_hw_rule
* rule
)
5791 struct hdspm
*hdspm
= rule
->private;
5792 struct snd_interval
*c
=
5793 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5794 struct snd_interval
*r
=
5795 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5797 if (r
->min
> 96000 && r
->max
<= 192000) {
5798 struct snd_interval t
= {
5799 .min
= hdspm
->qs_out_channels
,
5800 .max
= hdspm
->qs_out_channels
,
5803 return snd_interval_refine(c
, &t
);
5804 } else if (r
->min
> 48000 && r
->max
<= 96000) {
5805 struct snd_interval t
= {
5806 .min
= hdspm
->ds_out_channels
,
5807 .max
= hdspm
->ds_out_channels
,
5810 return snd_interval_refine(c
, &t
);
5811 } else if (r
->max
< 64000) {
5812 struct snd_interval t
= {
5813 .min
= hdspm
->ss_out_channels
,
5814 .max
= hdspm
->ss_out_channels
,
5817 return snd_interval_refine(c
, &t
);
5823 static int snd_hdspm_hw_rule_rate_in_channels(struct snd_pcm_hw_params
*params
,
5824 struct snd_pcm_hw_rule
* rule
)
5826 struct hdspm
*hdspm
= rule
->private;
5827 struct snd_interval
*c
=
5828 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5829 struct snd_interval
*r
=
5830 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5832 if (c
->min
>= hdspm
->ss_in_channels
) {
5833 struct snd_interval t
= {
5838 return snd_interval_refine(r
, &t
);
5839 } else if (c
->max
<= hdspm
->qs_in_channels
) {
5840 struct snd_interval t
= {
5845 return snd_interval_refine(r
, &t
);
5846 } else if (c
->max
<= hdspm
->ds_in_channels
) {
5847 struct snd_interval t
= {
5852 return snd_interval_refine(r
, &t
);
5857 static int snd_hdspm_hw_rule_rate_out_channels(struct snd_pcm_hw_params
*params
,
5858 struct snd_pcm_hw_rule
*rule
)
5860 struct hdspm
*hdspm
= rule
->private;
5861 struct snd_interval
*c
=
5862 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
5863 struct snd_interval
*r
=
5864 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
5866 if (c
->min
>= hdspm
->ss_out_channels
) {
5867 struct snd_interval t
= {
5872 return snd_interval_refine(r
, &t
);
5873 } else if (c
->max
<= hdspm
->qs_out_channels
) {
5874 struct snd_interval t
= {
5879 return snd_interval_refine(r
, &t
);
5880 } else if (c
->max
<= hdspm
->ds_out_channels
) {
5881 struct snd_interval t
= {
5886 return snd_interval_refine(r
, &t
);
5892 static int snd_hdspm_hw_rule_in_channels(struct snd_pcm_hw_params
*params
,
5893 struct snd_pcm_hw_rule
*rule
)
5895 unsigned int list
[3];
5896 struct hdspm
*hdspm
= rule
->private;
5897 struct snd_interval
*c
= hw_param_interval(params
,
5898 SNDRV_PCM_HW_PARAM_CHANNELS
);
5900 list
[0] = hdspm
->qs_in_channels
;
5901 list
[1] = hdspm
->ds_in_channels
;
5902 list
[2] = hdspm
->ss_in_channels
;
5903 return snd_interval_list(c
, 3, list
, 0);
5906 static int snd_hdspm_hw_rule_out_channels(struct snd_pcm_hw_params
*params
,
5907 struct snd_pcm_hw_rule
*rule
)
5909 unsigned int list
[3];
5910 struct hdspm
*hdspm
= rule
->private;
5911 struct snd_interval
*c
= hw_param_interval(params
,
5912 SNDRV_PCM_HW_PARAM_CHANNELS
);
5914 list
[0] = hdspm
->qs_out_channels
;
5915 list
[1] = hdspm
->ds_out_channels
;
5916 list
[2] = hdspm
->ss_out_channels
;
5917 return snd_interval_list(c
, 3, list
, 0);
5921 static unsigned int hdspm_aes32_sample_rates
[] = {
5922 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000
5925 static struct snd_pcm_hw_constraint_list
5926 hdspm_hw_constraints_aes32_sample_rates
= {
5927 .count
= ARRAY_SIZE(hdspm_aes32_sample_rates
),
5928 .list
= hdspm_aes32_sample_rates
,
5932 static int snd_hdspm_playback_open(struct snd_pcm_substream
*substream
)
5934 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5935 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
5937 spin_lock_irq(&hdspm
->lock
);
5939 snd_pcm_set_sync(substream
);
5942 runtime
->hw
= snd_hdspm_playback_subinfo
;
5944 if (hdspm
->capture_substream
== NULL
)
5945 hdspm_stop_audio(hdspm
);
5947 hdspm
->playback_pid
= current
->pid
;
5948 hdspm
->playback_substream
= substream
;
5950 spin_unlock_irq(&hdspm
->lock
);
5952 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
5953 snd_pcm_hw_constraint_pow2(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
5955 switch (hdspm
->io_type
) {
5958 snd_pcm_hw_constraint_minmax(runtime
,
5959 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5961 /* RayDAT & AIO have a fixed buffer of 16384 samples per channel */
5962 snd_pcm_hw_constraint_minmax(runtime
,
5963 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
5968 snd_pcm_hw_constraint_minmax(runtime
,
5969 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
5974 if (AES32
== hdspm
->io_type
) {
5975 runtime
->hw
.rates
|= SNDRV_PCM_RATE_KNOT
;
5976 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5977 &hdspm_hw_constraints_aes32_sample_rates
);
5979 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
5980 snd_hdspm_hw_rule_rate_out_channels
, hdspm
,
5981 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5984 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5985 snd_hdspm_hw_rule_out_channels
, hdspm
,
5986 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
5988 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
5989 snd_hdspm_hw_rule_out_channels_rate
, hdspm
,
5990 SNDRV_PCM_HW_PARAM_RATE
, -1);
5995 static int snd_hdspm_playback_release(struct snd_pcm_substream
*substream
)
5997 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
5999 spin_lock_irq(&hdspm
->lock
);
6001 hdspm
->playback_pid
= -1;
6002 hdspm
->playback_substream
= NULL
;
6004 spin_unlock_irq(&hdspm
->lock
);
6010 static int snd_hdspm_capture_open(struct snd_pcm_substream
*substream
)
6012 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
6013 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
6015 spin_lock_irq(&hdspm
->lock
);
6016 snd_pcm_set_sync(substream
);
6017 runtime
->hw
= snd_hdspm_capture_subinfo
;
6019 if (hdspm
->playback_substream
== NULL
)
6020 hdspm_stop_audio(hdspm
);
6022 hdspm
->capture_pid
= current
->pid
;
6023 hdspm
->capture_substream
= substream
;
6025 spin_unlock_irq(&hdspm
->lock
);
6027 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
6028 snd_pcm_hw_constraint_pow2(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
6030 switch (hdspm
->io_type
) {
6033 snd_pcm_hw_constraint_minmax(runtime
,
6034 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
6036 snd_pcm_hw_constraint_minmax(runtime
,
6037 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
6042 snd_pcm_hw_constraint_minmax(runtime
,
6043 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
6048 if (AES32
== hdspm
->io_type
) {
6049 runtime
->hw
.rates
|= SNDRV_PCM_RATE_KNOT
;
6050 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
6051 &hdspm_hw_constraints_aes32_sample_rates
);
6053 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
6054 snd_hdspm_hw_rule_rate_in_channels
, hdspm
,
6055 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
6058 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
6059 snd_hdspm_hw_rule_in_channels
, hdspm
,
6060 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
6062 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
6063 snd_hdspm_hw_rule_in_channels_rate
, hdspm
,
6064 SNDRV_PCM_HW_PARAM_RATE
, -1);
6069 static int snd_hdspm_capture_release(struct snd_pcm_substream
*substream
)
6071 struct hdspm
*hdspm
= snd_pcm_substream_chip(substream
);
6073 spin_lock_irq(&hdspm
->lock
);
6075 hdspm
->capture_pid
= -1;
6076 hdspm
->capture_substream
= NULL
;
6078 spin_unlock_irq(&hdspm
->lock
);
6082 static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep
*hw
, struct file
*file
)
6084 /* we have nothing to initialize but the call is required */
6088 static inline int copy_u32_le(void __user
*dest
, void __iomem
*src
)
6090 u32 val
= readl(src
);
6091 return copy_to_user(dest
, &val
, 4);
6094 static int snd_hdspm_hwdep_ioctl(struct snd_hwdep
*hw
, struct file
*file
,
6095 unsigned int cmd
, unsigned long arg
)
6097 void __user
*argp
= (void __user
*)arg
;
6098 struct hdspm
*hdspm
= hw
->private_data
;
6099 struct hdspm_mixer_ioctl mixer
;
6100 struct hdspm_config info
;
6101 struct hdspm_status status
;
6102 struct hdspm_version hdspm_version
;
6103 struct hdspm_peak_rms
*levels
;
6104 struct hdspm_ltc ltc
;
6105 unsigned int statusregister
;
6106 long unsigned int s
;
6111 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS
:
6112 levels
= &hdspm
->peak_rms
;
6113 for (i
= 0; i
< HDSPM_MAX_CHANNELS
; i
++) {
6114 levels
->input_peaks
[i
] =
6115 readl(hdspm
->iobase
+
6116 HDSPM_MADI_INPUT_PEAK
+ i
*4);
6117 levels
->playback_peaks
[i
] =
6118 readl(hdspm
->iobase
+
6119 HDSPM_MADI_PLAYBACK_PEAK
+ i
*4);
6120 levels
->output_peaks
[i
] =
6121 readl(hdspm
->iobase
+
6122 HDSPM_MADI_OUTPUT_PEAK
+ i
*4);
6124 levels
->input_rms
[i
] =
6125 ((uint64_t) readl(hdspm
->iobase
+
6126 HDSPM_MADI_INPUT_RMS_H
+ i
*4) << 32) |
6127 (uint64_t) readl(hdspm
->iobase
+
6128 HDSPM_MADI_INPUT_RMS_L
+ i
*4);
6129 levels
->playback_rms
[i
] =
6130 ((uint64_t)readl(hdspm
->iobase
+
6131 HDSPM_MADI_PLAYBACK_RMS_H
+i
*4) << 32) |
6132 (uint64_t)readl(hdspm
->iobase
+
6133 HDSPM_MADI_PLAYBACK_RMS_L
+ i
*4);
6134 levels
->output_rms
[i
] =
6135 ((uint64_t)readl(hdspm
->iobase
+
6136 HDSPM_MADI_OUTPUT_RMS_H
+ i
*4) << 32) |
6137 (uint64_t)readl(hdspm
->iobase
+
6138 HDSPM_MADI_OUTPUT_RMS_L
+ i
*4);
6141 if (hdspm
->system_sample_rate
> 96000) {
6143 } else if (hdspm
->system_sample_rate
> 48000) {
6148 levels
->status2
= hdspm_read(hdspm
, HDSPM_statusRegister2
);
6150 s
= copy_to_user(argp
, levels
, sizeof(struct hdspm_peak_rms
));
6152 /* snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu
6153 [Levels]\n", sizeof(struct hdspm_peak_rms), s);
6159 case SNDRV_HDSPM_IOCTL_GET_LTC
:
6160 ltc
.ltc
= hdspm_read(hdspm
, HDSPM_RD_TCO
);
6161 i
= hdspm_read(hdspm
, HDSPM_RD_TCO
+ 4);
6162 if (i
& HDSPM_TCO1_LTC_Input_valid
) {
6163 switch (i
& (HDSPM_TCO1_LTC_Format_LSB
|
6164 HDSPM_TCO1_LTC_Format_MSB
)) {
6166 ltc
.format
= fps_24
;
6168 case HDSPM_TCO1_LTC_Format_LSB
:
6169 ltc
.format
= fps_25
;
6171 case HDSPM_TCO1_LTC_Format_MSB
:
6172 ltc
.format
= fps_2997
;
6178 if (i
& HDSPM_TCO1_set_drop_frame_flag
) {
6179 ltc
.frame
= drop_frame
;
6181 ltc
.frame
= full_frame
;
6184 ltc
.format
= format_invalid
;
6185 ltc
.frame
= frame_invalid
;
6187 if (i
& HDSPM_TCO1_Video_Input_Format_NTSC
) {
6188 ltc
.input_format
= ntsc
;
6189 } else if (i
& HDSPM_TCO1_Video_Input_Format_PAL
) {
6190 ltc
.input_format
= pal
;
6192 ltc
.input_format
= no_video
;
6195 s
= copy_to_user(argp
, <c
, sizeof(struct hdspm_ltc
));
6198 snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu [LTC]\n", sizeof(struct hdspm_ltc), s); */
6204 case SNDRV_HDSPM_IOCTL_GET_CONFIG
:
6206 memset(&info
, 0, sizeof(info
));
6207 spin_lock_irq(&hdspm
->lock
);
6208 info
.pref_sync_ref
= hdspm_pref_sync_ref(hdspm
);
6209 info
.wordclock_sync_check
= hdspm_wc_sync_check(hdspm
);
6211 info
.system_sample_rate
= hdspm
->system_sample_rate
;
6212 info
.autosync_sample_rate
=
6213 hdspm_external_sample_rate(hdspm
);
6214 info
.system_clock_mode
= hdspm_system_clock_mode(hdspm
);
6215 info
.clock_source
= hdspm_clock_source(hdspm
);
6216 info
.autosync_ref
= hdspm_autosync_ref(hdspm
);
6217 info
.line_out
= hdspm_line_out(hdspm
);
6219 spin_unlock_irq(&hdspm
->lock
);
6220 if (copy_to_user(argp
, &info
, sizeof(info
)))
6224 case SNDRV_HDSPM_IOCTL_GET_STATUS
:
6225 memset(&status
, 0, sizeof(status
));
6227 status
.card_type
= hdspm
->io_type
;
6229 status
.autosync_source
= hdspm_autosync_ref(hdspm
);
6231 status
.card_clock
= 110069313433624ULL;
6232 status
.master_period
= hdspm_read(hdspm
, HDSPM_RD_PLL_FREQ
);
6234 switch (hdspm
->io_type
) {
6237 status
.card_specific
.madi
.sync_wc
=
6238 hdspm_wc_sync_check(hdspm
);
6239 status
.card_specific
.madi
.sync_madi
=
6240 hdspm_madi_sync_check(hdspm
);
6241 status
.card_specific
.madi
.sync_tco
=
6242 hdspm_tco_sync_check(hdspm
);
6243 status
.card_specific
.madi
.sync_in
=
6244 hdspm_sync_in_sync_check(hdspm
);
6247 hdspm_read(hdspm
, HDSPM_statusRegister
);
6248 status
.card_specific
.madi
.madi_input
=
6249 (statusregister
& HDSPM_AB_int
) ? 1 : 0;
6250 status
.card_specific
.madi
.channel_format
=
6251 (statusregister
& HDSPM_RX_64ch
) ? 1 : 0;
6252 /* TODO: Mac driver sets it when f_s>48kHz */
6253 status
.card_specific
.madi
.frame_format
= 0;
6259 if (copy_to_user(argp
, &status
, sizeof(status
)))
6265 case SNDRV_HDSPM_IOCTL_GET_VERSION
:
6266 memset(&hdspm_version
, 0, sizeof(hdspm_version
));
6268 hdspm_version
.card_type
= hdspm
->io_type
;
6269 strncpy(hdspm_version
.cardname
, hdspm
->card_name
,
6270 sizeof(hdspm_version
.cardname
));
6271 hdspm_version
.serial
= hdspm
->serial
;
6272 hdspm_version
.firmware_rev
= hdspm
->firmware_rev
;
6273 hdspm_version
.addons
= 0;
6275 hdspm_version
.addons
|= HDSPM_ADDON_TCO
;
6277 if (copy_to_user(argp
, &hdspm_version
,
6278 sizeof(hdspm_version
)))
6282 case SNDRV_HDSPM_IOCTL_GET_MIXER
:
6283 if (copy_from_user(&mixer
, argp
, sizeof(mixer
)))
6285 if (copy_to_user((void __user
*)mixer
.mixer
, hdspm
->mixer
,
6286 sizeof(struct hdspm_mixer
)))
6296 static struct snd_pcm_ops snd_hdspm_playback_ops
= {
6297 .open
= snd_hdspm_playback_open
,
6298 .close
= snd_hdspm_playback_release
,
6299 .ioctl
= snd_hdspm_ioctl
,
6300 .hw_params
= snd_hdspm_hw_params
,
6301 .hw_free
= snd_hdspm_hw_free
,
6302 .prepare
= snd_hdspm_prepare
,
6303 .trigger
= snd_hdspm_trigger
,
6304 .pointer
= snd_hdspm_hw_pointer
,
6305 .page
= snd_pcm_sgbuf_ops_page
,
6308 static struct snd_pcm_ops snd_hdspm_capture_ops
= {
6309 .open
= snd_hdspm_capture_open
,
6310 .close
= snd_hdspm_capture_release
,
6311 .ioctl
= snd_hdspm_ioctl
,
6312 .hw_params
= snd_hdspm_hw_params
,
6313 .hw_free
= snd_hdspm_hw_free
,
6314 .prepare
= snd_hdspm_prepare
,
6315 .trigger
= snd_hdspm_trigger
,
6316 .pointer
= snd_hdspm_hw_pointer
,
6317 .page
= snd_pcm_sgbuf_ops_page
,
6320 static int __devinit
snd_hdspm_create_hwdep(struct snd_card
*card
,
6321 struct hdspm
* hdspm
)
6323 struct snd_hwdep
*hw
;
6326 err
= snd_hwdep_new(card
, "HDSPM hwdep", 0, &hw
);
6331 hw
->private_data
= hdspm
;
6332 strcpy(hw
->name
, "HDSPM hwdep interface");
6334 hw
->ops
.open
= snd_hdspm_hwdep_dummy_op
;
6335 hw
->ops
.ioctl
= snd_hdspm_hwdep_ioctl
;
6336 hw
->ops
.ioctl_compat
= snd_hdspm_hwdep_ioctl
;
6337 hw
->ops
.release
= snd_hdspm_hwdep_dummy_op
;
6343 /*------------------------------------------------------------
6345 ------------------------------------------------------------*/
6346 static int __devinit
snd_hdspm_preallocate_memory(struct hdspm
*hdspm
)
6349 struct snd_pcm
*pcm
;
6354 wanted
= HDSPM_DMA_AREA_BYTES
;
6357 snd_pcm_lib_preallocate_pages_for_all(pcm
,
6358 SNDRV_DMA_TYPE_DEV_SG
,
6359 snd_dma_pci_data(hdspm
->pci
),
6363 snd_printdd("Could not preallocate %zd Bytes\n", wanted
);
6367 snd_printdd(" Preallocated %zd Bytes\n", wanted
);
6373 static void hdspm_set_sgbuf(struct hdspm
*hdspm
,
6374 struct snd_pcm_substream
*substream
,
6375 unsigned int reg
, int channels
)
6379 /* continuous memory segment */
6380 for (i
= 0; i
< (channels
* 16); i
++)
6381 hdspm_write(hdspm
, reg
+ 4 * i
,
6382 snd_pcm_sgbuf_get_addr(substream
, 4096 * i
));
6386 /* ------------- ALSA Devices ---------------------------- */
6387 static int __devinit
snd_hdspm_create_pcm(struct snd_card
*card
,
6388 struct hdspm
*hdspm
)
6390 struct snd_pcm
*pcm
;
6393 err
= snd_pcm_new(card
, hdspm
->card_name
, 0, 1, 1, &pcm
);
6398 pcm
->private_data
= hdspm
;
6399 strcpy(pcm
->name
, hdspm
->card_name
);
6401 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
6402 &snd_hdspm_playback_ops
);
6403 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
,
6404 &snd_hdspm_capture_ops
);
6406 pcm
->info_flags
= SNDRV_PCM_INFO_JOINT_DUPLEX
;
6408 err
= snd_hdspm_preallocate_memory(hdspm
);
6415 static inline void snd_hdspm_initialize_midi_flush(struct hdspm
* hdspm
)
6419 for (i
= 0; i
< hdspm
->midiPorts
; i
++)
6420 snd_hdspm_flush_midi_input(hdspm
, i
);
6423 static int __devinit
snd_hdspm_create_alsa_devices(struct snd_card
*card
,
6424 struct hdspm
* hdspm
)
6428 snd_printdd("Create card...\n");
6429 err
= snd_hdspm_create_pcm(card
, hdspm
);
6434 while (i
< hdspm
->midiPorts
) {
6435 err
= snd_hdspm_create_midi(card
, hdspm
, i
);
6442 err
= snd_hdspm_create_controls(card
, hdspm
);
6446 err
= snd_hdspm_create_hwdep(card
, hdspm
);
6450 snd_printdd("proc init...\n");
6451 snd_hdspm_proc_init(hdspm
);
6453 hdspm
->system_sample_rate
= -1;
6454 hdspm
->last_external_sample_rate
= -1;
6455 hdspm
->last_internal_sample_rate
= -1;
6456 hdspm
->playback_pid
= -1;
6457 hdspm
->capture_pid
= -1;
6458 hdspm
->capture_substream
= NULL
;
6459 hdspm
->playback_substream
= NULL
;
6461 snd_printdd("Set defaults...\n");
6462 err
= snd_hdspm_set_defaults(hdspm
);
6466 snd_printdd("Update mixer controls...\n");
6467 hdspm_update_simple_mixer_controls(hdspm
);
6469 snd_printdd("Initializeing complete ???\n");
6471 err
= snd_card_register(card
);
6473 snd_printk(KERN_ERR
"HDSPM: error registering card\n");
6477 snd_printdd("... yes now\n");
6482 static int __devinit
snd_hdspm_create(struct snd_card
*card
,
6483 struct hdspm
*hdspm
) {
6485 struct pci_dev
*pci
= hdspm
->pci
;
6487 unsigned long io_extent
;
6492 spin_lock_init(&hdspm
->lock
);
6494 pci_read_config_word(hdspm
->pci
,
6495 PCI_CLASS_REVISION
, &hdspm
->firmware_rev
);
6497 strcpy(card
->mixername
, "Xilinx FPGA");
6498 strcpy(card
->driver
, "HDSPM");
6500 switch (hdspm
->firmware_rev
) {
6501 case HDSPM_RAYDAT_REV
:
6502 hdspm
->io_type
= RayDAT
;
6503 hdspm
->card_name
= "RME RayDAT";
6504 hdspm
->midiPorts
= 2;
6507 hdspm
->io_type
= AIO
;
6508 hdspm
->card_name
= "RME AIO";
6509 hdspm
->midiPorts
= 1;
6511 case HDSPM_MADIFACE_REV
:
6512 hdspm
->io_type
= MADIface
;
6513 hdspm
->card_name
= "RME MADIface";
6514 hdspm
->midiPorts
= 1;
6517 if ((hdspm
->firmware_rev
== 0xf0) ||
6518 ((hdspm
->firmware_rev
>= 0xe6) &&
6519 (hdspm
->firmware_rev
<= 0xea))) {
6520 hdspm
->io_type
= AES32
;
6521 hdspm
->card_name
= "RME AES32";
6522 hdspm
->midiPorts
= 2;
6523 } else if ((hdspm
->firmware_rev
== 0xd2) ||
6524 ((hdspm
->firmware_rev
>= 0xc8) &&
6525 (hdspm
->firmware_rev
<= 0xcf))) {
6526 hdspm
->io_type
= MADI
;
6527 hdspm
->card_name
= "RME MADI";
6528 hdspm
->midiPorts
= 3;
6531 "HDSPM: unknown firmware revision %x\n",
6532 hdspm
->firmware_rev
);
6537 err
= pci_enable_device(pci
);
6541 pci_set_master(hdspm
->pci
);
6543 err
= pci_request_regions(pci
, "hdspm");
6547 hdspm
->port
= pci_resource_start(pci
, 0);
6548 io_extent
= pci_resource_len(pci
, 0);
6550 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
6551 hdspm
->port
, hdspm
->port
+ io_extent
- 1);
6553 hdspm
->iobase
= ioremap_nocache(hdspm
->port
, io_extent
);
6554 if (!hdspm
->iobase
) {
6555 snd_printk(KERN_ERR
"HDSPM: "
6556 "unable to remap region 0x%lx-0x%lx\n",
6557 hdspm
->port
, hdspm
->port
+ io_extent
- 1);
6560 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
6561 (unsigned long)hdspm
->iobase
, hdspm
->port
,
6562 hdspm
->port
+ io_extent
- 1);
6564 if (request_irq(pci
->irq
, snd_hdspm_interrupt
,
6565 IRQF_SHARED
, KBUILD_MODNAME
, hdspm
)) {
6566 snd_printk(KERN_ERR
"HDSPM: unable to use IRQ %d\n", pci
->irq
);
6570 snd_printdd("use IRQ %d\n", pci
->irq
);
6572 hdspm
->irq
= pci
->irq
;
6574 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
6575 sizeof(struct hdspm_mixer
));
6576 hdspm
->mixer
= kzalloc(sizeof(struct hdspm_mixer
), GFP_KERNEL
);
6577 if (!hdspm
->mixer
) {
6578 snd_printk(KERN_ERR
"HDSPM: "
6579 "unable to kmalloc Mixer memory of %d Bytes\n",
6580 (int)sizeof(struct hdspm_mixer
));
6584 hdspm
->port_names_in
= NULL
;
6585 hdspm
->port_names_out
= NULL
;
6587 switch (hdspm
->io_type
) {
6589 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
= AES32_CHANNELS
;
6590 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
= AES32_CHANNELS
;
6591 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
= AES32_CHANNELS
;
6593 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6595 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6597 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6599 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6601 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6603 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6606 hdspm
->max_channels_out
= hdspm
->max_channels_in
=
6608 hdspm
->port_names_in
= hdspm
->port_names_out
=
6610 hdspm
->channel_map_in
= hdspm
->channel_map_out
=
6617 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
=
6619 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
=
6621 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
=
6624 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6625 channel_map_unity_ss
;
6626 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6627 channel_map_unity_ss
;
6628 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6629 channel_map_unity_ss
;
6631 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6633 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6635 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6640 if (0 == (hdspm_read(hdspm
, HDSPM_statusRegister2
) & HDSPM_s2_AEBI_D
)) {
6641 snd_printk(KERN_INFO
"HDSPM: AEB input board found, but not supported\n");
6644 hdspm
->ss_in_channels
= AIO_IN_SS_CHANNELS
;
6645 hdspm
->ds_in_channels
= AIO_IN_DS_CHANNELS
;
6646 hdspm
->qs_in_channels
= AIO_IN_QS_CHANNELS
;
6647 hdspm
->ss_out_channels
= AIO_OUT_SS_CHANNELS
;
6648 hdspm
->ds_out_channels
= AIO_OUT_DS_CHANNELS
;
6649 hdspm
->qs_out_channels
= AIO_OUT_QS_CHANNELS
;
6651 hdspm
->channel_map_out_ss
= channel_map_aio_out_ss
;
6652 hdspm
->channel_map_out_ds
= channel_map_aio_out_ds
;
6653 hdspm
->channel_map_out_qs
= channel_map_aio_out_qs
;
6655 hdspm
->channel_map_in_ss
= channel_map_aio_in_ss
;
6656 hdspm
->channel_map_in_ds
= channel_map_aio_in_ds
;
6657 hdspm
->channel_map_in_qs
= channel_map_aio_in_qs
;
6659 hdspm
->port_names_in_ss
= texts_ports_aio_in_ss
;
6660 hdspm
->port_names_out_ss
= texts_ports_aio_out_ss
;
6661 hdspm
->port_names_in_ds
= texts_ports_aio_in_ds
;
6662 hdspm
->port_names_out_ds
= texts_ports_aio_out_ds
;
6663 hdspm
->port_names_in_qs
= texts_ports_aio_in_qs
;
6664 hdspm
->port_names_out_qs
= texts_ports_aio_out_qs
;
6669 hdspm
->ss_in_channels
= hdspm
->ss_out_channels
=
6671 hdspm
->ds_in_channels
= hdspm
->ds_out_channels
=
6673 hdspm
->qs_in_channels
= hdspm
->qs_out_channels
=
6676 hdspm
->max_channels_in
= RAYDAT_SS_CHANNELS
;
6677 hdspm
->max_channels_out
= RAYDAT_SS_CHANNELS
;
6679 hdspm
->channel_map_in_ss
= hdspm
->channel_map_out_ss
=
6680 channel_map_raydat_ss
;
6681 hdspm
->channel_map_in_ds
= hdspm
->channel_map_out_ds
=
6682 channel_map_raydat_ds
;
6683 hdspm
->channel_map_in_qs
= hdspm
->channel_map_out_qs
=
6684 channel_map_raydat_qs
;
6685 hdspm
->channel_map_in
= hdspm
->channel_map_out
=
6686 channel_map_raydat_ss
;
6688 hdspm
->port_names_in_ss
= hdspm
->port_names_out_ss
=
6689 texts_ports_raydat_ss
;
6690 hdspm
->port_names_in_ds
= hdspm
->port_names_out_ds
=
6691 texts_ports_raydat_ds
;
6692 hdspm
->port_names_in_qs
= hdspm
->port_names_out_qs
=
6693 texts_ports_raydat_qs
;
6701 switch (hdspm
->io_type
) {
6704 if (hdspm_read(hdspm
, HDSPM_statusRegister2
) &
6705 HDSPM_s2_tco_detect
) {
6707 hdspm
->tco
= kzalloc(sizeof(struct hdspm_tco
),
6709 if (NULL
!= hdspm
->tco
) {
6710 hdspm_tco_write(hdspm
);
6712 snd_printk(KERN_INFO
"HDSPM: AIO/RayDAT TCO module found\n");
6719 if (hdspm_read(hdspm
, HDSPM_statusRegister
) & HDSPM_tco_detect
) {
6721 hdspm
->tco
= kzalloc(sizeof(struct hdspm_tco
),
6723 if (NULL
!= hdspm
->tco
) {
6724 hdspm_tco_write(hdspm
);
6726 snd_printk(KERN_INFO
"HDSPM: MADI TCO module found\n");
6737 switch (hdspm
->io_type
) {
6740 hdspm
->texts_autosync
= texts_autosync_aes_tco
;
6741 hdspm
->texts_autosync_items
= 10;
6743 hdspm
->texts_autosync
= texts_autosync_aes
;
6744 hdspm
->texts_autosync_items
= 9;
6750 hdspm
->texts_autosync
= texts_autosync_madi_tco
;
6751 hdspm
->texts_autosync_items
= 4;
6753 hdspm
->texts_autosync
= texts_autosync_madi
;
6754 hdspm
->texts_autosync_items
= 3;
6764 hdspm
->texts_autosync
= texts_autosync_raydat_tco
;
6765 hdspm
->texts_autosync_items
= 9;
6767 hdspm
->texts_autosync
= texts_autosync_raydat
;
6768 hdspm
->texts_autosync_items
= 8;
6774 hdspm
->texts_autosync
= texts_autosync_aio_tco
;
6775 hdspm
->texts_autosync_items
= 6;
6777 hdspm
->texts_autosync
= texts_autosync_aio
;
6778 hdspm
->texts_autosync_items
= 5;
6784 tasklet_init(&hdspm
->midi_tasklet
,
6785 hdspm_midi_tasklet
, (unsigned long) hdspm
);
6788 if (hdspm
->io_type
!= MADIface
) {
6789 hdspm
->serial
= (hdspm_read(hdspm
,
6790 HDSPM_midiStatusIn0
)>>8) & 0xFFFFFF;
6791 /* id contains either a user-provided value or the default
6792 * NULL. If it's the default, we're safe to
6793 * fill card->id with the serial number.
6795 * If the serial number is 0xFFFFFF, then we're dealing with
6796 * an old PCI revision that comes without a sane number. In
6797 * this case, we don't set card->id to avoid collisions
6798 * when running with multiple cards.
6800 if (NULL
== id
[hdspm
->dev
] && hdspm
->serial
!= 0xFFFFFF) {
6801 sprintf(card
->id
, "HDSPMx%06x", hdspm
->serial
);
6802 snd_card_set_id(card
, card
->id
);
6806 snd_printdd("create alsa devices.\n");
6807 err
= snd_hdspm_create_alsa_devices(card
, hdspm
);
6811 snd_hdspm_initialize_midi_flush(hdspm
);
6817 static int snd_hdspm_free(struct hdspm
* hdspm
)
6822 /* stop th audio, and cancel all interrupts */
6823 hdspm
->control_register
&=
6824 ~(HDSPM_Start
| HDSPM_AudioInterruptEnable
|
6825 HDSPM_Midi0InterruptEnable
| HDSPM_Midi1InterruptEnable
|
6826 HDSPM_Midi2InterruptEnable
| HDSPM_Midi3InterruptEnable
);
6827 hdspm_write(hdspm
, HDSPM_controlRegister
,
6828 hdspm
->control_register
);
6831 if (hdspm
->irq
>= 0)
6832 free_irq(hdspm
->irq
, (void *) hdspm
);
6834 kfree(hdspm
->mixer
);
6837 iounmap(hdspm
->iobase
);
6840 pci_release_regions(hdspm
->pci
);
6842 pci_disable_device(hdspm
->pci
);
6847 static void snd_hdspm_card_free(struct snd_card
*card
)
6849 struct hdspm
*hdspm
= card
->private_data
;
6852 snd_hdspm_free(hdspm
);
6856 static int __devinit
snd_hdspm_probe(struct pci_dev
*pci
,
6857 const struct pci_device_id
*pci_id
)
6860 struct hdspm
*hdspm
;
6861 struct snd_card
*card
;
6864 if (dev
>= SNDRV_CARDS
)
6871 err
= snd_card_create(index
[dev
], id
[dev
],
6872 THIS_MODULE
, sizeof(struct hdspm
), &card
);
6876 hdspm
= card
->private_data
;
6877 card
->private_free
= snd_hdspm_card_free
;
6881 snd_card_set_dev(card
, &pci
->dev
);
6883 err
= snd_hdspm_create(card
, hdspm
);
6885 snd_card_free(card
);
6889 if (hdspm
->io_type
!= MADIface
) {
6890 sprintf(card
->shortname
, "%s_%x",
6893 sprintf(card
->longname
, "%s S/N 0x%x at 0x%lx, irq %d",
6896 hdspm
->port
, hdspm
->irq
);
6898 sprintf(card
->shortname
, "%s", hdspm
->card_name
);
6899 sprintf(card
->longname
, "%s at 0x%lx, irq %d",
6900 hdspm
->card_name
, hdspm
->port
, hdspm
->irq
);
6903 err
= snd_card_register(card
);
6905 snd_card_free(card
);
6909 pci_set_drvdata(pci
, card
);
6915 static void __devexit
snd_hdspm_remove(struct pci_dev
*pci
)
6917 snd_card_free(pci_get_drvdata(pci
));
6918 pci_set_drvdata(pci
, NULL
);
6921 static struct pci_driver driver
= {
6922 .name
= KBUILD_MODNAME
,
6923 .id_table
= snd_hdspm_ids
,
6924 .probe
= snd_hdspm_probe
,
6925 .remove
= __devexit_p(snd_hdspm_remove
),
6929 static int __init
alsa_card_hdspm_init(void)
6931 return pci_register_driver(&driver
);
6934 static void __exit
alsa_card_hdspm_exit(void)
6936 pci_unregister_driver(&driver
);
6939 module_init(alsa_card_hdspm_init
)
6940 module_exit(alsa_card_hdspm_exit
)