ALSA: hdspm - Use snd_ctl_enum_info for most text arrays
[deliverable/linux.git] / sound / pci / rme9652 / hdspm.c
CommitLineData
ef5fa1a4 1/*
763f356c
TI
2 * ALSA driver for RME Hammerfall DSP MADI audio interface(s)
3 *
4 * Copyright (c) 2003 Winfried Ritsch (IEM)
5 * code based on hdsp.c Paul Davis
6 * Marcus Andersson
7 * Thomas Charbonnel
3cee5a60
RB
8 * Modified 2006-06-01 for AES32 support by Remy Bruno
9 * <remy.bruno@trinnov.com>
763f356c 10 *
0dca1793
AK
11 * Modified 2009-04-13 for proper metering by Florian Faber
12 * <faber@faberman.de>
13 *
14 * Modified 2009-04-14 for native float support by Florian Faber
15 * <faber@faberman.de>
16 *
17 * Modified 2009-04-26 fixed bug in rms metering by Florian Faber
18 * <faber@faberman.de>
19 *
20 * Modified 2009-04-30 added hw serial number support by Florian Faber
21 *
22 * Modified 2011-01-14 added S/PDIF input on RayDATs by Adrian Knoth
23 *
24 * Modified 2011-01-25 variable period sizes on RayDAT/AIO by Adrian Knoth
25 *
763f356c
TI
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.
30 *
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.
35 *
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
39 *
40 */
763f356c
TI
41#include <linux/init.h>
42#include <linux/delay.h>
43#include <linux/interrupt.h>
65a77217 44#include <linux/module.h>
763f356c
TI
45#include <linux/slab.h>
46#include <linux/pci.h>
3f7440a6 47#include <linux/math64.h>
763f356c
TI
48#include <asm/io.h>
49
50#include <sound/core.h>
51#include <sound/control.h>
52#include <sound/pcm.h>
0dca1793 53#include <sound/pcm_params.h>
763f356c
TI
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>
59
60#include <sound/hdspm.h>
61
62static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
63static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
a67ff6a5 64static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
763f356c 65
763f356c
TI
66module_param_array(index, int, NULL, 0444);
67MODULE_PARM_DESC(index, "Index value for RME HDSPM interface.");
68
69module_param_array(id, charp, NULL, 0444);
70MODULE_PARM_DESC(id, "ID string for RME HDSPM interface.");
71
72module_param_array(enable, bool, NULL, 0444);
73MODULE_PARM_DESC(enable, "Enable/disable specific HDSPM soundcards.");
74
763f356c
TI
75
76MODULE_AUTHOR
0dca1793
AK
77(
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>"
84);
763f356c
TI
85MODULE_DESCRIPTION("RME HDSPM");
86MODULE_LICENSE("GPL");
87MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}");
88
0dca1793 89/* --- Write registers. ---
763f356c
TI
90 These are defined as byte-offsets from the iobase value. */
91
0dca1793
AK
92#define HDSPM_WR_SETTINGS 0
93#define HDSPM_outputBufferAddress 32
94#define HDSPM_inputBufferAddress 36
763f356c
TI
95#define HDSPM_controlRegister 64
96#define HDSPM_interruptConfirmation 96
97#define HDSPM_control2Reg 256 /* not in specs ???????? */
ffb2c3c0 98#define HDSPM_freqReg 256 /* for AES32 */
0dca1793
AK
99#define HDSPM_midiDataOut0 352 /* just believe in old code */
100#define HDSPM_midiDataOut1 356
ffb2c3c0 101#define HDSPM_eeprom_wr 384 /* for AES32 */
763f356c
TI
102
103/* DMA enable for 64 channels, only Bit 0 is relevant */
0dca1793 104#define HDSPM_outputEnableBase 512 /* 512-767 input DMA */
763f356c
TI
105#define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */
106
0dca1793 107/* 16 page addresses for each of the 64 channels DMA buffer in and out
763f356c
TI
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)
111
112#define HDSPM_MADI_mixerBase 32768 /* 32768-65535 for 2x64x64 Fader */
113
114#define HDSPM_MATRIX_MIXER_SIZE 8192 /* = 2*64*64 * 4 Byte => 32kB */
115
116/* --- Read registers. ---
117 These are defined as byte-offsets from the iobase value */
118#define HDSPM_statusRegister 0
3cee5a60
RB
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
763f356c 125
0dca1793
AK
126/* AIO, RayDAT */
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
131
132#define HDSPM_RD_TCO 256
133#define HDSPM_RD_PLL_FREQ 512
134#define HDSPM_WR_TCO 128
135
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
143
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
148
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
156
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
165
166
167#define HDSPM_midiDataOut0 352
168#define HDSPM_midiDataOut1 356
169#define HDSPM_midiDataOut2 368
170
763f356c
TI
171#define HDSPM_midiDataIn0 360
172#define HDSPM_midiDataIn1 364
0dca1793
AK
173#define HDSPM_midiDataIn2 372
174#define HDSPM_midiDataIn3 376
763f356c
TI
175
176/* status is data bytes in MIDI-FIFO (0-128) */
0dca1793
AK
177#define HDSPM_midiStatusOut0 384
178#define HDSPM_midiStatusOut1 388
179#define HDSPM_midiStatusOut2 400
180
181#define HDSPM_midiStatusIn0 392
182#define HDSPM_midiStatusIn1 396
183#define HDSPM_midiStatusIn2 404
184#define HDSPM_midiStatusIn3 408
763f356c
TI
185
186
187/* the meters are regular i/o-mapped registers, but offset
188 considerably from the rest. the peak registers are reset
0dca1793 189 when read; the least-significant 4 bits are full-scale counters;
763f356c
TI
190 the actual peak value is in the most-significant 24 bits.
191*/
0dca1793
AK
192
193#define HDSPM_MADI_INPUT_PEAK 4096
194#define HDSPM_MADI_PLAYBACK_PEAK 4352
195#define HDSPM_MADI_OUTPUT_PEAK 4608
196
197#define HDSPM_MADI_INPUT_RMS_L 6144
198#define HDSPM_MADI_PLAYBACK_RMS_L 6400
199#define HDSPM_MADI_OUTPUT_RMS_L 6656
200
201#define HDSPM_MADI_INPUT_RMS_H 7168
202#define HDSPM_MADI_PLAYBACK_RMS_H 7424
203#define HDSPM_MADI_OUTPUT_RMS_H 7680
763f356c
TI
204
205/* --- Control Register bits --------- */
206#define HDSPM_Start (1<<0) /* start engine */
207
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} */
211
0dca1793
AK
212#define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Autosync */
213#define HDSPM_c0Master 0x1 /* Master clock bit in settings
214 register [RayDAT, AIO] */
763f356c
TI
215
216#define HDSPM_AudioInterruptEnable (1<<5) /* what do you think ? */
217
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 */
3cee5a60 221#define HDSPM_QuadSpeed (1<<31) /* quad speed bit */
763f356c 222
3cee5a60 223#define HDSPM_Professional (1<<9) /* Professional */ /* AES32 ONLY */
763f356c 224#define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1,
3cee5a60
RB
225 56channelMODE=0 */ /* MADI ONLY*/
226#define HDSPM_Emphasis (1<<10) /* Emphasis */ /* AES32 ONLY */
763f356c 227
0dca1793 228#define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode,
3cee5a60
RB
229 0=off, 1=on */ /* MADI ONLY */
230#define HDSPM_Dolby (1<<11) /* Dolby = "NonAudio" ?? */ /* AES32 ONLY */
763f356c 231
ef5fa1a4
TI
232#define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax
233 * -- MADI ONLY
234 */
763f356c
TI
235#define HDSPM_InputSelect1 (1<<15) /* should be 0 */
236
3cee5a60
RB
237#define HDSPM_SyncRef2 (1<<13)
238#define HDSPM_SyncRef3 (1<<25)
763f356c 239
3cee5a60 240#define HDSPM_SMUX (1<<18) /* Frame ??? */ /* MADI ONY */
0dca1793 241#define HDSPM_clr_tms (1<<19) /* clear track marker, do not use
763f356c
TI
242 AES additional bits in
243 lower 5 Audiodatabits ??? */
3cee5a60
RB
244#define HDSPM_taxi_reset (1<<20) /* ??? */ /* MADI ONLY ? */
245#define HDSPM_WCK48 (1<<20) /* Frame ??? = HDSPM_SMUX */ /* AES32 ONLY */
763f356c 246
0dca1793
AK
247#define HDSPM_Midi0InterruptEnable 0x0400000
248#define HDSPM_Midi1InterruptEnable 0x0800000
249#define HDSPM_Midi2InterruptEnable 0x0200000
250#define HDSPM_Midi3InterruptEnable 0x4000000
763f356c
TI
251
252#define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */
0dca1793 253#define HDSPe_FLOAT_FORMAT 0x2000000
763f356c 254
3cee5a60
RB
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 */
258
259#define HDSPM_wclk_sel (1<<30)
763f356c 260
384f778f
AK
261/* additional control register bits for AIO*/
262#define HDSPM_c0_Wck48 0x20 /* also RayDAT */
263#define HDSPM_c0_Input0 0x1000
264#define HDSPM_c0_Input1 0x2000
265#define HDSPM_c0_Spdif_Opt 0x4000
266#define HDSPM_c0_Pro 0x8000
267#define HDSPM_c0_clr_tms 0x10000
268#define HDSPM_c0_AEB1 0x20000
269#define HDSPM_c0_AEB2 0x40000
270#define HDSPM_c0_LineOut 0x80000
271#define HDSPM_c0_AD_GAIN0 0x100000
272#define HDSPM_c0_AD_GAIN1 0x200000
273#define HDSPM_c0_DA_GAIN0 0x400000
274#define HDSPM_c0_DA_GAIN1 0x800000
275#define HDSPM_c0_PH_GAIN0 0x1000000
276#define HDSPM_c0_PH_GAIN1 0x2000000
277#define HDSPM_c0_Sym6db 0x4000000
278
279
763f356c
TI
280/* --- bit helper defines */
281#define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2)
ef5fa1a4
TI
282#define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1|\
283 HDSPM_DoubleSpeed|HDSPM_QuadSpeed)
763f356c
TI
284#define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1)
285#define HDSPM_InputOptical 0
286#define HDSPM_InputCoaxial (HDSPM_InputSelect0)
ef5fa1a4
TI
287#define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1|\
288 HDSPM_SyncRef2|HDSPM_SyncRef3)
763f356c 289
0dca1793
AK
290#define HDSPM_c0_SyncRef0 0x2
291#define HDSPM_c0_SyncRef1 0x4
292#define HDSPM_c0_SyncRef2 0x8
293#define HDSPM_c0_SyncRef3 0x10
294#define HDSPM_c0_SyncRefMask (HDSPM_c0_SyncRef0 | HDSPM_c0_SyncRef1 |\
295 HDSPM_c0_SyncRef2 | HDSPM_c0_SyncRef3)
296
297#define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */
298#define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */
299#define HDSPM_SYNC_FROM_TCO 2
300#define HDSPM_SYNC_FROM_SYNC_IN 3
763f356c
TI
301
302#define HDSPM_Frequency32KHz HDSPM_Frequency0
303#define HDSPM_Frequency44_1KHz HDSPM_Frequency1
304#define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0)
305#define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0)
306#define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1)
ef5fa1a4
TI
307#define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|\
308 HDSPM_Frequency0)
3cee5a60
RB
309#define HDSPM_Frequency128KHz (HDSPM_QuadSpeed|HDSPM_Frequency0)
310#define HDSPM_Frequency176_4KHz (HDSPM_QuadSpeed|HDSPM_Frequency1)
ef5fa1a4
TI
311#define HDSPM_Frequency192KHz (HDSPM_QuadSpeed|HDSPM_Frequency1|\
312 HDSPM_Frequency0)
763f356c 313
763f356c
TI
314
315/* Synccheck Status */
316#define HDSPM_SYNC_CHECK_NO_LOCK 0
317#define HDSPM_SYNC_CHECK_LOCK 1
318#define HDSPM_SYNC_CHECK_SYNC 2
319
320/* AutoSync References - used by "autosync_ref" control switch */
321#define HDSPM_AUTOSYNC_FROM_WORD 0
322#define HDSPM_AUTOSYNC_FROM_MADI 1
0dca1793
AK
323#define HDSPM_AUTOSYNC_FROM_TCO 2
324#define HDSPM_AUTOSYNC_FROM_SYNC_IN 3
325#define HDSPM_AUTOSYNC_FROM_NONE 4
763f356c
TI
326
327/* Possible sources of MADI input */
328#define HDSPM_OPTICAL 0 /* optical */
329#define HDSPM_COAXIAL 1 /* BNC */
330
331#define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask)
0dca1793 332#define hdspm_decode_latency(x) ((((x) & HDSPM_LatencyMask)>>1))
763f356c
TI
333
334#define hdspm_encode_in(x) (((x)&0x3)<<14)
335#define hdspm_decode_in(x) (((x)>>14)&0x3)
336
337/* --- control2 register bits --- */
338#define HDSPM_TMS (1<<0)
339#define HDSPM_TCK (1<<1)
340#define HDSPM_TDI (1<<2)
341#define HDSPM_JTAG (1<<3)
342#define HDSPM_PWDN (1<<4)
343#define HDSPM_PROGRAM (1<<5)
344#define HDSPM_CONFIG_MODE_0 (1<<6)
345#define HDSPM_CONFIG_MODE_1 (1<<7)
346/*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/
347#define HDSPM_BIGENDIAN_MODE (1<<9)
348#define HDSPM_RD_MULTIPLE (1<<10)
349
3cee5a60 350/* --- Status Register bits --- */ /* MADI ONLY */ /* Bits defined here and
ef5fa1a4
TI
351 that do not conflict with specific bits for AES32 seem to be valid also
352 for the AES32
353 */
763f356c 354#define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */
ef5fa1a4
TI
355#define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn MODE=0 */
356#define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1
357 * (like inp0)
358 */
0dca1793 359
763f356c 360#define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */
0dca1793
AK
361#define HDSPM_madiSync (1<<18) /* MADI is in sync */
362
b0bf5504
AK
363#define HDSPM_tcoLockMadi 0x00000020 /* Optional TCO locked status for HDSPe MADI*/
364#define HDSPM_tcoSync 0x10000000 /* Optional TCO sync status for HDSPe MADI and AES32!*/
0dca1793 365
b0bf5504
AK
366#define HDSPM_syncInLock 0x00010000 /* Sync In lock status for HDSPe MADI! */
367#define HDSPM_syncInSync 0x00020000 /* Sync In sync status for HDSPe MADI! */
763f356c
TI
368
369#define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
0dca1793
AK
370 /* since 64byte accurate, last 6 bits are not used */
371
372
763f356c 373
763f356c
TI
374#define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */
375
376#define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */
377#define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */
378#define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */
379#define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */
380
ef5fa1a4
TI
381#define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with
382 * Interrupt
383 */
0dca1793 384#define HDSPM_tco_detect 0x08000000
b0bf5504 385#define HDSPM_tcoLockAes 0x20000000 /* Optional TCO locked status for HDSPe AES */
0dca1793
AK
386
387#define HDSPM_s2_tco_detect 0x00000040
388#define HDSPM_s2_AEBO_D 0x00000080
389#define HDSPM_s2_AEBI_D 0x00000100
390
391
392#define HDSPM_midi0IRQPending 0x40000000
393#define HDSPM_midi1IRQPending 0x80000000
394#define HDSPM_midi2IRQPending 0x20000000
395#define HDSPM_midi2IRQPendingAES 0x00000020
396#define HDSPM_midi3IRQPending 0x00200000
763f356c
TI
397
398/* --- status bit helpers */
ef5fa1a4
TI
399#define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|\
400 HDSPM_madiFreq2|HDSPM_madiFreq3)
763f356c
TI
401#define HDSPM_madiFreq32 (HDSPM_madiFreq0)
402#define HDSPM_madiFreq44_1 (HDSPM_madiFreq1)
403#define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1)
404#define HDSPM_madiFreq64 (HDSPM_madiFreq2)
405#define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2)
406#define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2)
407#define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2)
408#define HDSPM_madiFreq176_4 (HDSPM_madiFreq3)
409#define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0)
410
3cee5a60 411/* Status2 Register bits */ /* MADI ONLY */
763f356c 412
25985edc 413#define HDSPM_version0 (1<<0) /* not really defined but I guess */
763f356c
TI
414#define HDSPM_version1 (1<<1) /* in former cards it was ??? */
415#define HDSPM_version2 (1<<2)
416
417#define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */
418#define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */
419
420#define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */
421#define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */
a8cd7148
AK
422#define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, 111=128 */
423#define HDSPM_wc_freq3 0x800 /* 1000=176.4, 1001=192 */
763f356c 424
0dca1793
AK
425#define HDSPM_SyncRef0 0x10000 /* Sync Reference */
426#define HDSPM_SyncRef1 0x20000
427
428#define HDSPM_SelSyncRef0 (1<<8) /* AutoSync Source */
763f356c
TI
429#define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */
430#define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */
431
432#define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync)
433
a8cd7148
AK
434#define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2|\
435 HDSPM_wc_freq3)
763f356c
TI
436#define HDSPM_wcFreq32 (HDSPM_wc_freq0)
437#define HDSPM_wcFreq44_1 (HDSPM_wc_freq1)
438#define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1)
439#define HDSPM_wcFreq64 (HDSPM_wc_freq2)
440#define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2)
441#define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2)
a8cd7148
AK
442#define HDSPM_wcFreq128 (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2)
443#define HDSPM_wcFreq176_4 (HDSPM_wc_freq3)
444#define HDSPM_wcFreq192 (HDSPM_wc_freq0|HDSPM_wc_freq3)
763f356c 445
0dca1793
AK
446#define HDSPM_status1_F_0 0x0400000
447#define HDSPM_status1_F_1 0x0800000
448#define HDSPM_status1_F_2 0x1000000
449#define HDSPM_status1_F_3 0x2000000
450#define HDSPM_status1_freqMask (HDSPM_status1_F_0|HDSPM_status1_F_1|HDSPM_status1_F_2|HDSPM_status1_F_3)
451
763f356c 452
ef5fa1a4
TI
453#define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
454 HDSPM_SelSyncRef2)
763f356c
TI
455#define HDSPM_SelSyncRef_WORD 0
456#define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0)
0dca1793
AK
457#define HDSPM_SelSyncRef_TCO (HDSPM_SelSyncRef1)
458#define HDSPM_SelSyncRef_SyncIn (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1)
ef5fa1a4
TI
459#define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
460 HDSPM_SelSyncRef2)
763f356c 461
3cee5a60
RB
462/*
463 For AES32, bits for status, status2 and timecode are different
464*/
465/* status */
466#define HDSPM_AES32_wcLock 0x0200000
56bde0f3 467#define HDSPM_AES32_wcSync 0x0100000
3cee5a60 468#define HDSPM_AES32_wcFreq_bit 22
0dca1793 469/* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function
3cee5a60
RB
470 HDSPM_bit2freq */
471#define HDSPM_AES32_syncref_bit 16
472/* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */
473
474#define HDSPM_AES32_AUTOSYNC_FROM_WORD 0
475#define HDSPM_AES32_AUTOSYNC_FROM_AES1 1
476#define HDSPM_AES32_AUTOSYNC_FROM_AES2 2
477#define HDSPM_AES32_AUTOSYNC_FROM_AES3 3
478#define HDSPM_AES32_AUTOSYNC_FROM_AES4 4
479#define HDSPM_AES32_AUTOSYNC_FROM_AES5 5
480#define HDSPM_AES32_AUTOSYNC_FROM_AES6 6
481#define HDSPM_AES32_AUTOSYNC_FROM_AES7 7
482#define HDSPM_AES32_AUTOSYNC_FROM_AES8 8
b0bf5504
AK
483#define HDSPM_AES32_AUTOSYNC_FROM_TCO 9
484#define HDSPM_AES32_AUTOSYNC_FROM_SYNC_IN 10
485#define HDSPM_AES32_AUTOSYNC_FROM_NONE 11
3cee5a60
RB
486
487/* status2 */
488/* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */
489#define HDSPM_LockAES 0x80
490#define HDSPM_LockAES1 0x80
491#define HDSPM_LockAES2 0x40
492#define HDSPM_LockAES3 0x20
493#define HDSPM_LockAES4 0x10
494#define HDSPM_LockAES5 0x8
495#define HDSPM_LockAES6 0x4
496#define HDSPM_LockAES7 0x2
497#define HDSPM_LockAES8 0x1
498/*
499 Timecode
500 After windows driver sources, bits 4*i to 4*i+3 give the input frequency on
501 AES i+1
502 bits 3210
503 0001 32kHz
504 0010 44.1kHz
505 0011 48kHz
506 0100 64kHz
507 0101 88.2kHz
508 0110 96kHz
509 0111 128kHz
510 1000 176.4kHz
511 1001 192kHz
512 NB: Timecode register doesn't seem to work on AES32 card revision 230
513*/
514
763f356c
TI
515/* Mixer Values */
516#define UNITY_GAIN 32768 /* = 65536/2 */
517#define MINUS_INFINITY_GAIN 0
518
763f356c
TI
519/* Number of channels for different Speed Modes */
520#define MADI_SS_CHANNELS 64
521#define MADI_DS_CHANNELS 32
522#define MADI_QS_CHANNELS 16
523
0dca1793
AK
524#define RAYDAT_SS_CHANNELS 36
525#define RAYDAT_DS_CHANNELS 20
526#define RAYDAT_QS_CHANNELS 12
527
528#define AIO_IN_SS_CHANNELS 14
529#define AIO_IN_DS_CHANNELS 10
530#define AIO_IN_QS_CHANNELS 8
531#define AIO_OUT_SS_CHANNELS 16
532#define AIO_OUT_DS_CHANNELS 12
533#define AIO_OUT_QS_CHANNELS 10
534
d2d10a21
AK
535#define AES32_CHANNELS 16
536
763f356c
TI
537/* the size of a substream (1 mono data stream) */
538#define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
539#define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
540
541/* the size of the area we need to allocate for DMA transfers. the
542 size is the same regardless of the number of channels, and
0dca1793 543 also the latency to use.
763f356c
TI
544 for one direction !!!
545*/
ffb2c3c0 546#define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
763f356c
TI
547#define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
548
0dca1793
AK
549#define HDSPM_RAYDAT_REV 211
550#define HDSPM_AIO_REV 212
551#define HDSPM_MADIFACE_REV 213
3cee5a60 552
6534599d
RB
553/* speed factor modes */
554#define HDSPM_SPEED_SINGLE 0
555#define HDSPM_SPEED_DOUBLE 1
556#define HDSPM_SPEED_QUAD 2
0dca1793 557
6534599d
RB
558/* names for speed modes */
559static char *hdspm_speed_names[] = { "single", "double", "quad" };
560
0dca1793
AK
561static char *texts_autosync_aes_tco[] = { "Word Clock",
562 "AES1", "AES2", "AES3", "AES4",
563 "AES5", "AES6", "AES7", "AES8",
db2d1a91
AK
564 "TCO", "Sync In"
565};
0dca1793
AK
566static char *texts_autosync_aes[] = { "Word Clock",
567 "AES1", "AES2", "AES3", "AES4",
db2d1a91
AK
568 "AES5", "AES6", "AES7", "AES8",
569 "Sync In"
570};
0dca1793
AK
571static char *texts_autosync_madi_tco[] = { "Word Clock",
572 "MADI", "TCO", "Sync In" };
573static char *texts_autosync_madi[] = { "Word Clock",
574 "MADI", "Sync In" };
575
576static char *texts_autosync_raydat_tco[] = {
577 "Word Clock",
578 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
579 "AES", "SPDIF", "TCO", "Sync In"
580};
581static char *texts_autosync_raydat[] = {
582 "Word Clock",
583 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
584 "AES", "SPDIF", "Sync In"
585};
586static char *texts_autosync_aio_tco[] = {
587 "Word Clock",
588 "ADAT", "AES", "SPDIF", "TCO", "Sync In"
589};
590static char *texts_autosync_aio[] = { "Word Clock",
591 "ADAT", "AES", "SPDIF", "Sync In" };
592
38816545 593static const char *const texts_freq[] = {
0dca1793
AK
594 "No Lock",
595 "32 kHz",
596 "44.1 kHz",
597 "48 kHz",
598 "64 kHz",
599 "88.2 kHz",
600 "96 kHz",
601 "128 kHz",
602 "176.4 kHz",
603 "192 kHz"
604};
605
0dca1793
AK
606static char *texts_ports_madi[] = {
607 "MADI.1", "MADI.2", "MADI.3", "MADI.4", "MADI.5", "MADI.6",
608 "MADI.7", "MADI.8", "MADI.9", "MADI.10", "MADI.11", "MADI.12",
609 "MADI.13", "MADI.14", "MADI.15", "MADI.16", "MADI.17", "MADI.18",
610 "MADI.19", "MADI.20", "MADI.21", "MADI.22", "MADI.23", "MADI.24",
611 "MADI.25", "MADI.26", "MADI.27", "MADI.28", "MADI.29", "MADI.30",
612 "MADI.31", "MADI.32", "MADI.33", "MADI.34", "MADI.35", "MADI.36",
613 "MADI.37", "MADI.38", "MADI.39", "MADI.40", "MADI.41", "MADI.42",
614 "MADI.43", "MADI.44", "MADI.45", "MADI.46", "MADI.47", "MADI.48",
615 "MADI.49", "MADI.50", "MADI.51", "MADI.52", "MADI.53", "MADI.54",
616 "MADI.55", "MADI.56", "MADI.57", "MADI.58", "MADI.59", "MADI.60",
617 "MADI.61", "MADI.62", "MADI.63", "MADI.64",
618};
619
620
621static char *texts_ports_raydat_ss[] = {
622 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4", "ADAT1.5", "ADAT1.6",
623 "ADAT1.7", "ADAT1.8", "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
624 "ADAT2.5", "ADAT2.6", "ADAT2.7", "ADAT2.8", "ADAT3.1", "ADAT3.2",
625 "ADAT3.3", "ADAT3.4", "ADAT3.5", "ADAT3.6", "ADAT3.7", "ADAT3.8",
626 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4", "ADAT4.5", "ADAT4.6",
627 "ADAT4.7", "ADAT4.8",
628 "AES.L", "AES.R",
629 "SPDIF.L", "SPDIF.R"
630};
631
632static char *texts_ports_raydat_ds[] = {
633 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4",
634 "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
635 "ADAT3.1", "ADAT3.2", "ADAT3.3", "ADAT3.4",
636 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4",
637 "AES.L", "AES.R",
638 "SPDIF.L", "SPDIF.R"
639};
640
641static char *texts_ports_raydat_qs[] = {
642 "ADAT1.1", "ADAT1.2",
643 "ADAT2.1", "ADAT2.2",
644 "ADAT3.1", "ADAT3.2",
645 "ADAT4.1", "ADAT4.2",
646 "AES.L", "AES.R",
647 "SPDIF.L", "SPDIF.R"
648};
649
650
651static char *texts_ports_aio_in_ss[] = {
652 "Analogue.L", "Analogue.R",
653 "AES.L", "AES.R",
654 "SPDIF.L", "SPDIF.R",
655 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
3de9db26
AK
656 "ADAT.7", "ADAT.8",
657 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
658};
659
660static char *texts_ports_aio_out_ss[] = {
661 "Analogue.L", "Analogue.R",
662 "AES.L", "AES.R",
663 "SPDIF.L", "SPDIF.R",
664 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
665 "ADAT.7", "ADAT.8",
3de9db26
AK
666 "Phone.L", "Phone.R",
667 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
668};
669
670static char *texts_ports_aio_in_ds[] = {
671 "Analogue.L", "Analogue.R",
672 "AES.L", "AES.R",
673 "SPDIF.L", "SPDIF.R",
3de9db26
AK
674 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
675 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
676};
677
678static char *texts_ports_aio_out_ds[] = {
679 "Analogue.L", "Analogue.R",
680 "AES.L", "AES.R",
681 "SPDIF.L", "SPDIF.R",
682 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
3de9db26
AK
683 "Phone.L", "Phone.R",
684 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
685};
686
687static char *texts_ports_aio_in_qs[] = {
688 "Analogue.L", "Analogue.R",
689 "AES.L", "AES.R",
690 "SPDIF.L", "SPDIF.R",
3de9db26
AK
691 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
692 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
693};
694
695static char *texts_ports_aio_out_qs[] = {
696 "Analogue.L", "Analogue.R",
697 "AES.L", "AES.R",
698 "SPDIF.L", "SPDIF.R",
699 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
3de9db26
AK
700 "Phone.L", "Phone.R",
701 "AEB.1", "AEB.2", "AEB.3", "AEB.4"
0dca1793
AK
702};
703
432d2500
AK
704static char *texts_ports_aes32[] = {
705 "AES.1", "AES.2", "AES.3", "AES.4", "AES.5", "AES.6", "AES.7",
706 "AES.8", "AES.9.", "AES.10", "AES.11", "AES.12", "AES.13", "AES.14",
707 "AES.15", "AES.16"
708};
709
55a57606
AK
710/* These tables map the ALSA channels 1..N to the channels that we
711 need to use in order to find the relevant channel buffer. RME
712 refers to this kind of mapping as between "the ADAT channel and
713 the DMA channel." We index it using the logical audio channel,
714 and the value is the DMA channel (i.e. channel buffer number)
715 where the data for that channel can be read/written from/to.
716*/
717
718static char channel_map_unity_ss[HDSPM_MAX_CHANNELS] = {
719 0, 1, 2, 3, 4, 5, 6, 7,
720 8, 9, 10, 11, 12, 13, 14, 15,
721 16, 17, 18, 19, 20, 21, 22, 23,
722 24, 25, 26, 27, 28, 29, 30, 31,
723 32, 33, 34, 35, 36, 37, 38, 39,
724 40, 41, 42, 43, 44, 45, 46, 47,
725 48, 49, 50, 51, 52, 53, 54, 55,
726 56, 57, 58, 59, 60, 61, 62, 63
727};
728
55a57606
AK
729static char channel_map_raydat_ss[HDSPM_MAX_CHANNELS] = {
730 4, 5, 6, 7, 8, 9, 10, 11, /* ADAT 1 */
731 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT 2 */
732 20, 21, 22, 23, 24, 25, 26, 27, /* ADAT 3 */
733 28, 29, 30, 31, 32, 33, 34, 35, /* ADAT 4 */
734 0, 1, /* AES */
735 2, 3, /* SPDIF */
736 -1, -1, -1, -1,
737 -1, -1, -1, -1, -1, -1, -1, -1,
738 -1, -1, -1, -1, -1, -1, -1, -1,
739 -1, -1, -1, -1, -1, -1, -1, -1,
740};
741
742static char channel_map_raydat_ds[HDSPM_MAX_CHANNELS] = {
743 4, 5, 6, 7, /* ADAT 1 */
744 8, 9, 10, 11, /* ADAT 2 */
745 12, 13, 14, 15, /* ADAT 3 */
746 16, 17, 18, 19, /* ADAT 4 */
747 0, 1, /* AES */
748 2, 3, /* SPDIF */
749 -1, -1, -1, -1,
750 -1, -1, -1, -1, -1, -1, -1, -1,
751 -1, -1, -1, -1, -1, -1, -1, -1,
752 -1, -1, -1, -1, -1, -1, -1, -1,
753 -1, -1, -1, -1, -1, -1, -1, -1,
754 -1, -1, -1, -1, -1, -1, -1, -1,
755};
756
757static char channel_map_raydat_qs[HDSPM_MAX_CHANNELS] = {
758 4, 5, /* ADAT 1 */
759 6, 7, /* ADAT 2 */
760 8, 9, /* ADAT 3 */
761 10, 11, /* ADAT 4 */
762 0, 1, /* AES */
763 2, 3, /* SPDIF */
764 -1, -1, -1, -1,
765 -1, -1, -1, -1, -1, -1, -1, -1,
766 -1, -1, -1, -1, -1, -1, -1, -1,
767 -1, -1, -1, -1, -1, -1, -1, -1,
768 -1, -1, -1, -1, -1, -1, -1, -1,
769 -1, -1, -1, -1, -1, -1, -1, -1,
770 -1, -1, -1, -1, -1, -1, -1, -1,
771};
772
773static char channel_map_aio_in_ss[HDSPM_MAX_CHANNELS] = {
774 0, 1, /* line in */
775 8, 9, /* aes in, */
776 10, 11, /* spdif in */
777 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT in */
3de9db26
AK
778 2, 3, 4, 5, /* AEB */
779 -1, -1, -1, -1, -1, -1,
55a57606
AK
780 -1, -1, -1, -1, -1, -1, -1, -1,
781 -1, -1, -1, -1, -1, -1, -1, -1,
782 -1, -1, -1, -1, -1, -1, -1, -1,
783 -1, -1, -1, -1, -1, -1, -1, -1,
784 -1, -1, -1, -1, -1, -1, -1, -1,
785};
786
787static char channel_map_aio_out_ss[HDSPM_MAX_CHANNELS] = {
788 0, 1, /* line out */
789 8, 9, /* aes out */
790 10, 11, /* spdif out */
791 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT out */
792 6, 7, /* phone out */
3de9db26
AK
793 2, 3, 4, 5, /* AEB */
794 -1, -1, -1, -1,
55a57606
AK
795 -1, -1, -1, -1, -1, -1, -1, -1,
796 -1, -1, -1, -1, -1, -1, -1, -1,
797 -1, -1, -1, -1, -1, -1, -1, -1,
798 -1, -1, -1, -1, -1, -1, -1, -1,
799 -1, -1, -1, -1, -1, -1, -1, -1,
800};
801
802static char channel_map_aio_in_ds[HDSPM_MAX_CHANNELS] = {
803 0, 1, /* line in */
804 8, 9, /* aes in */
805 10, 11, /* spdif in */
806 12, 14, 16, 18, /* adat in */
3de9db26
AK
807 2, 3, 4, 5, /* AEB */
808 -1, -1,
55a57606
AK
809 -1, -1, -1, -1, -1, -1, -1, -1,
810 -1, -1, -1, -1, -1, -1, -1, -1,
811 -1, -1, -1, -1, -1, -1, -1, -1,
812 -1, -1, -1, -1, -1, -1, -1, -1,
813 -1, -1, -1, -1, -1, -1, -1, -1,
814 -1, -1, -1, -1, -1, -1, -1, -1
815};
816
817static char channel_map_aio_out_ds[HDSPM_MAX_CHANNELS] = {
818 0, 1, /* line out */
819 8, 9, /* aes out */
820 10, 11, /* spdif out */
821 12, 14, 16, 18, /* adat out */
822 6, 7, /* phone out */
3de9db26 823 2, 3, 4, 5, /* AEB */
55a57606
AK
824 -1, -1, -1, -1, -1, -1, -1, -1,
825 -1, -1, -1, -1, -1, -1, -1, -1,
826 -1, -1, -1, -1, -1, -1, -1, -1,
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};
831
832static char channel_map_aio_in_qs[HDSPM_MAX_CHANNELS] = {
833 0, 1, /* line in */
834 8, 9, /* aes in */
835 10, 11, /* spdif in */
836 12, 16, /* adat in */
3de9db26
AK
837 2, 3, 4, 5, /* AEB */
838 -1, -1, -1, -1,
55a57606
AK
839 -1, -1, -1, -1, -1, -1, -1, -1,
840 -1, -1, -1, -1, -1, -1, -1, -1,
841 -1, -1, -1, -1, -1, -1, -1, -1,
842 -1, -1, -1, -1, -1, -1, -1, -1,
843 -1, -1, -1, -1, -1, -1, -1, -1,
844 -1, -1, -1, -1, -1, -1, -1, -1
845};
846
847static char channel_map_aio_out_qs[HDSPM_MAX_CHANNELS] = {
848 0, 1, /* line out */
849 8, 9, /* aes out */
850 10, 11, /* spdif out */
851 12, 16, /* adat out */
852 6, 7, /* phone out */
3de9db26
AK
853 2, 3, 4, 5, /* AEB */
854 -1, -1,
55a57606
AK
855 -1, -1, -1, -1, -1, -1, -1, -1,
856 -1, -1, -1, -1, -1, -1, -1, -1,
857 -1, -1, -1, -1, -1, -1, -1, -1,
858 -1, -1, -1, -1, -1, -1, -1, -1,
859 -1, -1, -1, -1, -1, -1, -1, -1,
860 -1, -1, -1, -1, -1, -1, -1, -1
861};
862
432d2500
AK
863static char channel_map_aes32[HDSPM_MAX_CHANNELS] = {
864 0, 1, 2, 3, 4, 5, 6, 7,
865 8, 9, 10, 11, 12, 13, 14, 15,
866 -1, -1, -1, -1, -1, -1, -1, -1,
867 -1, -1, -1, -1, -1, -1, -1, -1,
868 -1, -1, -1, -1, -1, -1, -1, -1,
869 -1, -1, -1, -1, -1, -1, -1, -1,
870 -1, -1, -1, -1, -1, -1, -1, -1,
871 -1, -1, -1, -1, -1, -1, -1, -1
872};
873
98274f07
TI
874struct hdspm_midi {
875 struct hdspm *hdspm;
763f356c 876 int id;
98274f07
TI
877 struct snd_rawmidi *rmidi;
878 struct snd_rawmidi_substream *input;
879 struct snd_rawmidi_substream *output;
763f356c
TI
880 char istimer; /* timer in use */
881 struct timer_list timer;
882 spinlock_t lock;
883 int pending;
0dca1793
AK
884 int dataIn;
885 int statusIn;
886 int dataOut;
887 int statusOut;
888 int ie;
889 int irq;
890};
891
892struct hdspm_tco {
893 int input;
894 int framerate;
895 int wordclock;
896 int samplerate;
897 int pull;
898 int term; /* 0 = off, 1 = on */
763f356c
TI
899};
900
98274f07 901struct hdspm {
763f356c 902 spinlock_t lock;
ef5fa1a4
TI
903 /* only one playback and/or capture stream */
904 struct snd_pcm_substream *capture_substream;
905 struct snd_pcm_substream *playback_substream;
763f356c
TI
906
907 char *card_name; /* for procinfo */
3cee5a60
RB
908 unsigned short firmware_rev; /* dont know if relevant (yes if AES32)*/
909
0dca1793 910 uint8_t io_type;
763f356c 911
763f356c
TI
912 int monitor_outs; /* set up monitoring outs init flag */
913
914 u32 control_register; /* cached value */
915 u32 control2_register; /* cached value */
0dca1793 916 u32 settings_register;
763f356c 917
0dca1793 918 struct hdspm_midi midi[4];
763f356c
TI
919 struct tasklet_struct midi_tasklet;
920
921 size_t period_bytes;
0dca1793
AK
922 unsigned char ss_in_channels;
923 unsigned char ds_in_channels;
924 unsigned char qs_in_channels;
925 unsigned char ss_out_channels;
926 unsigned char ds_out_channels;
927 unsigned char qs_out_channels;
928
929 unsigned char max_channels_in;
930 unsigned char max_channels_out;
931
286bed0f
TI
932 signed char *channel_map_in;
933 signed char *channel_map_out;
0dca1793 934
286bed0f
TI
935 signed char *channel_map_in_ss, *channel_map_in_ds, *channel_map_in_qs;
936 signed char *channel_map_out_ss, *channel_map_out_ds, *channel_map_out_qs;
0dca1793
AK
937
938 char **port_names_in;
939 char **port_names_out;
940
941 char **port_names_in_ss, **port_names_in_ds, **port_names_in_qs;
942 char **port_names_out_ss, **port_names_out_ds, **port_names_out_qs;
763f356c
TI
943
944 unsigned char *playback_buffer; /* suitably aligned address */
945 unsigned char *capture_buffer; /* suitably aligned address */
946
947 pid_t capture_pid; /* process id which uses capture */
948 pid_t playback_pid; /* process id which uses capture */
949 int running; /* running status */
950
951 int last_external_sample_rate; /* samplerate mystic ... */
952 int last_internal_sample_rate;
953 int system_sample_rate;
954
763f356c
TI
955 int dev; /* Hardware vars... */
956 int irq;
957 unsigned long port;
958 void __iomem *iobase;
959
960 int irq_count; /* for debug */
0dca1793 961 int midiPorts;
763f356c 962
98274f07
TI
963 struct snd_card *card; /* one card */
964 struct snd_pcm *pcm; /* has one pcm */
965 struct snd_hwdep *hwdep; /* and a hwdep for additional ioctl */
763f356c
TI
966 struct pci_dev *pci; /* and an pci info */
967
968 /* Mixer vars */
ef5fa1a4
TI
969 /* fast alsa mixer */
970 struct snd_kcontrol *playback_mixer_ctls[HDSPM_MAX_CHANNELS];
971 /* but input to much, so not used */
972 struct snd_kcontrol *input_mixer_ctls[HDSPM_MAX_CHANNELS];
25985edc 973 /* full mixer accessible over mixer ioctl or hwdep-device */
ef5fa1a4 974 struct hdspm_mixer *mixer;
763f356c 975
0dca1793 976 struct hdspm_tco *tco; /* NULL if no TCO detected */
763f356c 977
0dca1793
AK
978 char **texts_autosync;
979 int texts_autosync_items;
763f356c 980
0dca1793 981 cycles_t last_interrupt;
730a5865 982
7d53a631
AK
983 unsigned int serial;
984
730a5865 985 struct hdspm_peak_rms peak_rms;
763f356c
TI
986};
987
763f356c 988
cebe41d4 989static DEFINE_PCI_DEVICE_TABLE(snd_hdspm_ids) = {
763f356c
TI
990 {
991 .vendor = PCI_VENDOR_ID_XILINX,
992 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI,
993 .subvendor = PCI_ANY_ID,
994 .subdevice = PCI_ANY_ID,
995 .class = 0,
996 .class_mask = 0,
997 .driver_data = 0},
998 {0,}
999};
1000
1001MODULE_DEVICE_TABLE(pci, snd_hdspm_ids);
1002
1003/* prototypes */
e23e7a14
BP
1004static int snd_hdspm_create_alsa_devices(struct snd_card *card,
1005 struct hdspm *hdspm);
1006static int snd_hdspm_create_pcm(struct snd_card *card,
1007 struct hdspm *hdspm);
98274f07 1008
0dca1793 1009static inline void snd_hdspm_initialize_midi_flush(struct hdspm *hdspm);
3f7bf918 1010static inline int hdspm_get_pll_freq(struct hdspm *hdspm);
0dca1793
AK
1011static int hdspm_update_simple_mixer_controls(struct hdspm *hdspm);
1012static int hdspm_autosync_ref(struct hdspm *hdspm);
34be7ebb 1013static int hdspm_set_toggle_setting(struct hdspm *hdspm, u32 regmask, int out);
0dca1793 1014static int snd_hdspm_set_defaults(struct hdspm *hdspm);
21a164df 1015static int hdspm_system_clock_mode(struct hdspm *hdspm);
0dca1793 1016static void hdspm_set_sgbuf(struct hdspm *hdspm,
77a23f26 1017 struct snd_pcm_substream *substream,
763f356c
TI
1018 unsigned int reg, int channels);
1019
5b266354
AK
1020static int hdspm_aes_sync_check(struct hdspm *hdspm, int idx);
1021static int hdspm_wc_sync_check(struct hdspm *hdspm);
1022static int hdspm_tco_sync_check(struct hdspm *hdspm);
1023static int hdspm_sync_in_sync_check(struct hdspm *hdspm);
1024
1025static int hdspm_get_aes_sample_rate(struct hdspm *hdspm, int index);
1026static int hdspm_get_tco_sample_rate(struct hdspm *hdspm);
1027static int hdspm_get_wc_sample_rate(struct hdspm *hdspm);
1028
1029
1030
3cee5a60
RB
1031static inline int HDSPM_bit2freq(int n)
1032{
62cef821
DV
1033 static const int bit2freq_tab[] = {
1034 0, 32000, 44100, 48000, 64000, 88200,
3cee5a60
RB
1035 96000, 128000, 176400, 192000 };
1036 if (n < 1 || n > 9)
1037 return 0;
1038 return bit2freq_tab[n];
1039}
1040
b2ed6326
AK
1041static bool hdspm_is_raydat_or_aio(struct hdspm *hdspm)
1042{
1043 return ((AIO == hdspm->io_type) || (RayDAT == hdspm->io_type));
1044}
1045
1046
0dca1793 1047/* Write/read to/from HDSPM with Adresses in Bytes
763f356c
TI
1048 not words but only 32Bit writes are allowed */
1049
98274f07 1050static inline void hdspm_write(struct hdspm * hdspm, unsigned int reg,
763f356c
TI
1051 unsigned int val)
1052{
1053 writel(val, hdspm->iobase + reg);
1054}
1055
98274f07 1056static inline unsigned int hdspm_read(struct hdspm * hdspm, unsigned int reg)
763f356c
TI
1057{
1058 return readl(hdspm->iobase + reg);
1059}
1060
0dca1793
AK
1061/* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
1062 mixer is write only on hardware so we have to cache him for read
763f356c
TI
1063 each fader is a u32, but uses only the first 16 bit */
1064
98274f07 1065static inline int hdspm_read_in_gain(struct hdspm * hdspm, unsigned int chan,
763f356c
TI
1066 unsigned int in)
1067{
5bab2482 1068 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
763f356c
TI
1069 return 0;
1070
1071 return hdspm->mixer->ch[chan].in[in];
1072}
1073
98274f07 1074static inline int hdspm_read_pb_gain(struct hdspm * hdspm, unsigned int chan,
763f356c
TI
1075 unsigned int pb)
1076{
5bab2482 1077 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
763f356c
TI
1078 return 0;
1079 return hdspm->mixer->ch[chan].pb[pb];
1080}
1081
62cef821 1082static int hdspm_write_in_gain(struct hdspm *hdspm, unsigned int chan,
763f356c
TI
1083 unsigned int in, unsigned short data)
1084{
1085 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
1086 return -1;
1087
1088 hdspm_write(hdspm,
1089 HDSPM_MADI_mixerBase +
1090 ((in + 128 * chan) * sizeof(u32)),
1091 (hdspm->mixer->ch[chan].in[in] = data & 0xFFFF));
1092 return 0;
1093}
1094
62cef821 1095static int hdspm_write_pb_gain(struct hdspm *hdspm, unsigned int chan,
763f356c
TI
1096 unsigned int pb, unsigned short data)
1097{
1098 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
1099 return -1;
1100
1101 hdspm_write(hdspm,
1102 HDSPM_MADI_mixerBase +
1103 ((64 + pb + 128 * chan) * sizeof(u32)),
1104 (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF));
1105 return 0;
1106}
1107
1108
1109/* enable DMA for specific channels, now available for DSP-MADI */
98274f07 1110static inline void snd_hdspm_enable_in(struct hdspm * hdspm, int i, int v)
763f356c
TI
1111{
1112 hdspm_write(hdspm, HDSPM_inputEnableBase + (4 * i), v);
1113}
1114
98274f07 1115static inline void snd_hdspm_enable_out(struct hdspm * hdspm, int i, int v)
763f356c
TI
1116{
1117 hdspm_write(hdspm, HDSPM_outputEnableBase + (4 * i), v);
1118}
1119
1120/* check if same process is writing and reading */
62cef821 1121static int snd_hdspm_use_is_exclusive(struct hdspm *hdspm)
763f356c
TI
1122{
1123 unsigned long flags;
1124 int ret = 1;
1125
1126 spin_lock_irqsave(&hdspm->lock, flags);
1127 if ((hdspm->playback_pid != hdspm->capture_pid) &&
1128 (hdspm->playback_pid >= 0) && (hdspm->capture_pid >= 0)) {
1129 ret = 0;
1130 }
1131 spin_unlock_irqrestore(&hdspm->lock, flags);
1132 return ret;
1133}
1134
fcdc4ba1
AK
1135/* round arbitary sample rates to commonly known rates */
1136static int hdspm_round_frequency(int rate)
1137{
1138 if (rate < 38050)
1139 return 32000;
1140 if (rate < 46008)
1141 return 44100;
1142 else
1143 return 48000;
1144}
1145
a8a729fa
AK
1146/* QS and DS rates normally can not be detected
1147 * automatically by the card. Only exception is MADI
1148 * in 96k frame mode.
1149 *
1150 * So if we read SS values (32 .. 48k), check for
1151 * user-provided DS/QS bits in the control register
1152 * and multiply the base frequency accordingly.
1153 */
1154static int hdspm_rate_multiplier(struct hdspm *hdspm, int rate)
1155{
1156 if (rate <= 48000) {
1157 if (hdspm->control_register & HDSPM_QuadSpeed)
1158 return rate * 4;
1159 else if (hdspm->control_register &
1160 HDSPM_DoubleSpeed)
1161 return rate * 2;
1162 };
1163 return rate;
1164}
1165
5b266354 1166/* check for external sample rate, returns the sample rate in Hz*/
62cef821 1167static int hdspm_external_sample_rate(struct hdspm *hdspm)
763f356c 1168{
0dca1793
AK
1169 unsigned int status, status2, timecode;
1170 int syncref, rate = 0, rate_bits;
3cee5a60 1171
0dca1793
AK
1172 switch (hdspm->io_type) {
1173 case AES32:
1174 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1175 status = hdspm_read(hdspm, HDSPM_statusRegister);
7c4a95b5 1176 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
0dca1793
AK
1177
1178 syncref = hdspm_autosync_ref(hdspm);
dbae4a0c
AK
1179 switch (syncref) {
1180 case HDSPM_AES32_AUTOSYNC_FROM_WORD:
1181 /* Check WC sync and get sample rate */
1182 if (hdspm_wc_sync_check(hdspm))
1183 return HDSPM_bit2freq(hdspm_get_wc_sample_rate(hdspm));
1184 break;
1185
1186 case HDSPM_AES32_AUTOSYNC_FROM_AES1:
1187 case HDSPM_AES32_AUTOSYNC_FROM_AES2:
1188 case HDSPM_AES32_AUTOSYNC_FROM_AES3:
1189 case HDSPM_AES32_AUTOSYNC_FROM_AES4:
1190 case HDSPM_AES32_AUTOSYNC_FROM_AES5:
1191 case HDSPM_AES32_AUTOSYNC_FROM_AES6:
1192 case HDSPM_AES32_AUTOSYNC_FROM_AES7:
1193 case HDSPM_AES32_AUTOSYNC_FROM_AES8:
1194 /* Check AES sync and get sample rate */
1195 if (hdspm_aes_sync_check(hdspm, syncref - HDSPM_AES32_AUTOSYNC_FROM_AES1))
1196 return HDSPM_bit2freq(hdspm_get_aes_sample_rate(hdspm,
1197 syncref - HDSPM_AES32_AUTOSYNC_FROM_AES1));
1198 break;
1199
1200
1201 case HDSPM_AES32_AUTOSYNC_FROM_TCO:
1202 /* Check TCO sync and get sample rate */
1203 if (hdspm_tco_sync_check(hdspm))
1204 return HDSPM_bit2freq(hdspm_get_tco_sample_rate(hdspm));
1205 break;
1206 default:
1207 return 0;
1208 } /* end switch(syncref) */
0dca1793
AK
1209 break;
1210
1211 case MADIface:
1212 status = hdspm_read(hdspm, HDSPM_statusRegister);
1213
1214 if (!(status & HDSPM_madiLock)) {
1215 rate = 0; /* no lock */
1216 } else {
1217 switch (status & (HDSPM_status1_freqMask)) {
1218 case HDSPM_status1_F_0*1:
1219 rate = 32000; break;
1220 case HDSPM_status1_F_0*2:
1221 rate = 44100; break;
1222 case HDSPM_status1_F_0*3:
1223 rate = 48000; break;
1224 case HDSPM_status1_F_0*4:
1225 rate = 64000; break;
1226 case HDSPM_status1_F_0*5:
1227 rate = 88200; break;
1228 case HDSPM_status1_F_0*6:
1229 rate = 96000; break;
1230 case HDSPM_status1_F_0*7:
1231 rate = 128000; break;
1232 case HDSPM_status1_F_0*8:
1233 rate = 176400; break;
1234 case HDSPM_status1_F_0*9:
1235 rate = 192000; break;
1236 default:
1237 rate = 0; break;
1238 }
1239 }
1240
1241 break;
1242
1243 case MADI:
1244 case AIO:
1245 case RayDAT:
1246 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1247 status = hdspm_read(hdspm, HDSPM_statusRegister);
1248 rate = 0;
763f356c 1249
3cee5a60
RB
1250 /* if wordclock has synced freq and wordclock is valid */
1251 if ((status2 & HDSPM_wcLock) != 0 &&
fedf1535 1252 (status2 & HDSPM_SelSyncRef0) == 0) {
763f356c 1253
3cee5a60 1254 rate_bits = status2 & HDSPM_wcFreqMask;
763f356c 1255
0dca1793 1256
3cee5a60
RB
1257 switch (rate_bits) {
1258 case HDSPM_wcFreq32:
1259 rate = 32000;
1260 break;
1261 case HDSPM_wcFreq44_1:
1262 rate = 44100;
1263 break;
1264 case HDSPM_wcFreq48:
1265 rate = 48000;
1266 break;
1267 case HDSPM_wcFreq64:
1268 rate = 64000;
1269 break;
1270 case HDSPM_wcFreq88_2:
1271 rate = 88200;
1272 break;
1273 case HDSPM_wcFreq96:
1274 rate = 96000;
1275 break;
a8cd7148
AK
1276 case HDSPM_wcFreq128:
1277 rate = 128000;
1278 break;
1279 case HDSPM_wcFreq176_4:
1280 rate = 176400;
1281 break;
1282 case HDSPM_wcFreq192:
1283 rate = 192000;
1284 break;
3cee5a60
RB
1285 default:
1286 rate = 0;
1287 break;
1288 }
763f356c 1289 }
763f356c 1290
ef5fa1a4
TI
1291 /* if rate detected and Syncref is Word than have it,
1292 * word has priority to MADI
1293 */
3cee5a60 1294 if (rate != 0 &&
0dca1793 1295 (status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD)
7b559397 1296 return hdspm_rate_multiplier(hdspm, rate);
763f356c 1297
0dca1793 1298 /* maybe a madi input (which is taken if sel sync is madi) */
3cee5a60
RB
1299 if (status & HDSPM_madiLock) {
1300 rate_bits = status & HDSPM_madiFreqMask;
763f356c 1301
3cee5a60
RB
1302 switch (rate_bits) {
1303 case HDSPM_madiFreq32:
1304 rate = 32000;
1305 break;
1306 case HDSPM_madiFreq44_1:
1307 rate = 44100;
1308 break;
1309 case HDSPM_madiFreq48:
1310 rate = 48000;
1311 break;
1312 case HDSPM_madiFreq64:
1313 rate = 64000;
1314 break;
1315 case HDSPM_madiFreq88_2:
1316 rate = 88200;
1317 break;
1318 case HDSPM_madiFreq96:
1319 rate = 96000;
1320 break;
1321 case HDSPM_madiFreq128:
1322 rate = 128000;
1323 break;
1324 case HDSPM_madiFreq176_4:
1325 rate = 176400;
1326 break;
1327 case HDSPM_madiFreq192:
1328 rate = 192000;
1329 break;
1330 default:
1331 rate = 0;
1332 break;
1333 }
d12c51d8 1334
fcdc4ba1
AK
1335 } /* endif HDSPM_madiLock */
1336
1337 /* check sample rate from TCO or SYNC_IN */
1338 {
1339 bool is_valid_input = 0;
1340 bool has_sync = 0;
1341
1342 syncref = hdspm_autosync_ref(hdspm);
1343 if (HDSPM_AUTOSYNC_FROM_TCO == syncref) {
1344 is_valid_input = 1;
1345 has_sync = (HDSPM_SYNC_CHECK_SYNC ==
1346 hdspm_tco_sync_check(hdspm));
1347 } else if (HDSPM_AUTOSYNC_FROM_SYNC_IN == syncref) {
1348 is_valid_input = 1;
1349 has_sync = (HDSPM_SYNC_CHECK_SYNC ==
1350 hdspm_sync_in_sync_check(hdspm));
d12c51d8 1351 }
fcdc4ba1
AK
1352
1353 if (is_valid_input && has_sync) {
1354 rate = hdspm_round_frequency(
1355 hdspm_get_pll_freq(hdspm));
1356 }
1357 }
1358
a8a729fa
AK
1359 rate = hdspm_rate_multiplier(hdspm, rate);
1360
0dca1793 1361 break;
763f356c 1362 }
0dca1793
AK
1363
1364 return rate;
763f356c
TI
1365}
1366
7cb155ff
AK
1367/* return latency in samples per period */
1368static int hdspm_get_latency(struct hdspm *hdspm)
1369{
1370 int n;
1371
1372 n = hdspm_decode_latency(hdspm->control_register);
1373
1374 /* Special case for new RME cards with 32 samples period size.
1375 * The three latency bits in the control register
1376 * (HDSP_LatencyMask) encode latency values of 64 samples as
1377 * 0, 128 samples as 1 ... 4096 samples as 6. For old cards, 7
1378 * denotes 8192 samples, but on new cards like RayDAT or AIO,
1379 * it corresponds to 32 samples.
1380 */
1381 if ((7 == n) && (RayDAT == hdspm->io_type || AIO == hdspm->io_type))
1382 n = -1;
1383
1384 return 1 << (n + 6);
1385}
1386
763f356c 1387/* Latency function */
0dca1793 1388static inline void hdspm_compute_period_size(struct hdspm *hdspm)
763f356c 1389{
7cb155ff 1390 hdspm->period_bytes = 4 * hdspm_get_latency(hdspm);
763f356c
TI
1391}
1392
0dca1793
AK
1393
1394static snd_pcm_uframes_t hdspm_hw_pointer(struct hdspm *hdspm)
763f356c
TI
1395{
1396 int position;
1397
1398 position = hdspm_read(hdspm, HDSPM_statusRegister);
483cee77
AK
1399
1400 switch (hdspm->io_type) {
1401 case RayDAT:
1402 case AIO:
1403 position &= HDSPM_BufferPositionMask;
1404 position /= 4; /* Bytes per sample */
1405 break;
1406 default:
1407 position = (position & HDSPM_BufferID) ?
1408 (hdspm->period_bytes / 4) : 0;
1409 }
763f356c
TI
1410
1411 return position;
1412}
1413
1414
98274f07 1415static inline void hdspm_start_audio(struct hdspm * s)
763f356c
TI
1416{
1417 s->control_register |= (HDSPM_AudioInterruptEnable | HDSPM_Start);
1418 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1419}
1420
98274f07 1421static inline void hdspm_stop_audio(struct hdspm * s)
763f356c
TI
1422{
1423 s->control_register &= ~(HDSPM_Start | HDSPM_AudioInterruptEnable);
1424 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1425}
1426
1427/* should I silence all or only opened ones ? doit all for first even is 4MB*/
62cef821 1428static void hdspm_silence_playback(struct hdspm *hdspm)
763f356c
TI
1429{
1430 int i;
1431 int n = hdspm->period_bytes;
1432 void *buf = hdspm->playback_buffer;
1433
3cee5a60
RB
1434 if (buf == NULL)
1435 return;
763f356c
TI
1436
1437 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
1438 memset(buf, 0, n);
1439 buf += HDSPM_CHANNEL_BUFFER_BYTES;
1440 }
1441}
1442
0dca1793 1443static int hdspm_set_interrupt_interval(struct hdspm *s, unsigned int frames)
763f356c
TI
1444{
1445 int n;
1446
1447 spin_lock_irq(&s->lock);
1448
2e610270
AK
1449 if (32 == frames) {
1450 /* Special case for new RME cards like RayDAT/AIO which
1451 * support period sizes of 32 samples. Since latency is
1452 * encoded in the three bits of HDSP_LatencyMask, we can only
1453 * have values from 0 .. 7. While 0 still means 64 samples and
1454 * 6 represents 4096 samples on all cards, 7 represents 8192
1455 * on older cards and 32 samples on new cards.
1456 *
1457 * In other words, period size in samples is calculated by
1458 * 2^(n+6) with n ranging from 0 .. 7.
1459 */
1460 n = 7;
1461 } else {
1462 frames >>= 7;
1463 n = 0;
1464 while (frames) {
1465 n++;
1466 frames >>= 1;
1467 }
763f356c 1468 }
2e610270 1469
763f356c
TI
1470 s->control_register &= ~HDSPM_LatencyMask;
1471 s->control_register |= hdspm_encode_latency(n);
1472
1473 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1474
1475 hdspm_compute_period_size(s);
1476
1477 spin_unlock_irq(&s->lock);
1478
1479 return 0;
1480}
1481
0dca1793
AK
1482static u64 hdspm_calc_dds_value(struct hdspm *hdspm, u64 period)
1483{
1484 u64 freq_const;
1485
1486 if (period == 0)
1487 return 0;
1488
1489 switch (hdspm->io_type) {
1490 case MADI:
1491 case AES32:
1492 freq_const = 110069313433624ULL;
1493 break;
1494 case RayDAT:
1495 case AIO:
1496 freq_const = 104857600000000ULL;
1497 break;
1498 case MADIface:
1499 freq_const = 131072000000000ULL;
3d56c8e6
TI
1500 break;
1501 default:
1502 snd_BUG();
1503 return 0;
0dca1793
AK
1504 }
1505
1506 return div_u64(freq_const, period);
1507}
1508
1509
ffb2c3c0
RB
1510static void hdspm_set_dds_value(struct hdspm *hdspm, int rate)
1511{
1512 u64 n;
0dca1793 1513
ffb2c3c0
RB
1514 if (rate >= 112000)
1515 rate /= 4;
1516 else if (rate >= 56000)
1517 rate /= 2;
1518
0dca1793
AK
1519 switch (hdspm->io_type) {
1520 case MADIface:
3d56c8e6
TI
1521 n = 131072000000000ULL; /* 125 MHz */
1522 break;
0dca1793
AK
1523 case MADI:
1524 case AES32:
3d56c8e6
TI
1525 n = 110069313433624ULL; /* 105 MHz */
1526 break;
0dca1793
AK
1527 case RayDAT:
1528 case AIO:
3d56c8e6
TI
1529 n = 104857600000000ULL; /* 100 MHz */
1530 break;
1531 default:
1532 snd_BUG();
1533 return;
0dca1793
AK
1534 }
1535
3f7440a6 1536 n = div_u64(n, rate);
ffb2c3c0 1537 /* n should be less than 2^32 for being written to FREQ register */
da3cec35 1538 snd_BUG_ON(n >> 32);
ffb2c3c0
RB
1539 hdspm_write(hdspm, HDSPM_freqReg, (u32)n);
1540}
763f356c
TI
1541
1542/* dummy set rate lets see what happens */
98274f07 1543static int hdspm_set_rate(struct hdspm * hdspm, int rate, int called_internally)
763f356c 1544{
763f356c
TI
1545 int current_rate;
1546 int rate_bits;
1547 int not_set = 0;
6534599d 1548 int current_speed, target_speed;
763f356c
TI
1549
1550 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
1551 it (e.g. during module initialization).
1552 */
1553
1554 if (!(hdspm->control_register & HDSPM_ClockModeMaster)) {
1555
0dca1793 1556 /* SLAVE --- */
763f356c
TI
1557 if (called_internally) {
1558
0dca1793
AK
1559 /* request from ctl or card initialization
1560 just make a warning an remember setting
1561 for future master mode switching */
1562
ef5fa1a4
TI
1563 snd_printk(KERN_WARNING "HDSPM: "
1564 "Warning: device is not running "
1565 "as a clock master.\n");
763f356c
TI
1566 not_set = 1;
1567 } else {
1568
1569 /* hw_param request while in AutoSync mode */
1570 int external_freq =
1571 hdspm_external_sample_rate(hdspm);
1572
ef5fa1a4
TI
1573 if (hdspm_autosync_ref(hdspm) ==
1574 HDSPM_AUTOSYNC_FROM_NONE) {
763f356c 1575
ef5fa1a4
TI
1576 snd_printk(KERN_WARNING "HDSPM: "
1577 "Detected no Externel Sync \n");
763f356c
TI
1578 not_set = 1;
1579
1580 } else if (rate != external_freq) {
1581
ef5fa1a4
TI
1582 snd_printk(KERN_WARNING "HDSPM: "
1583 "Warning: No AutoSync source for "
1584 "requested rate\n");
763f356c
TI
1585 not_set = 1;
1586 }
1587 }
1588 }
1589
1590 current_rate = hdspm->system_sample_rate;
1591
1592 /* Changing between Singe, Double and Quad speed is not
1593 allowed if any substreams are open. This is because such a change
1594 causes a shift in the location of the DMA buffers and a reduction
1595 in the number of available buffers.
1596
1597 Note that a similar but essentially insoluble problem exists for
1598 externally-driven rate changes. All we can do is to flag rate
0dca1793 1599 changes in the read/write routines.
763f356c
TI
1600 */
1601
6534599d
RB
1602 if (current_rate <= 48000)
1603 current_speed = HDSPM_SPEED_SINGLE;
1604 else if (current_rate <= 96000)
1605 current_speed = HDSPM_SPEED_DOUBLE;
1606 else
1607 current_speed = HDSPM_SPEED_QUAD;
1608
1609 if (rate <= 48000)
1610 target_speed = HDSPM_SPEED_SINGLE;
1611 else if (rate <= 96000)
1612 target_speed = HDSPM_SPEED_DOUBLE;
1613 else
1614 target_speed = HDSPM_SPEED_QUAD;
3cee5a60 1615
763f356c
TI
1616 switch (rate) {
1617 case 32000:
763f356c
TI
1618 rate_bits = HDSPM_Frequency32KHz;
1619 break;
1620 case 44100:
763f356c
TI
1621 rate_bits = HDSPM_Frequency44_1KHz;
1622 break;
1623 case 48000:
763f356c
TI
1624 rate_bits = HDSPM_Frequency48KHz;
1625 break;
1626 case 64000:
763f356c
TI
1627 rate_bits = HDSPM_Frequency64KHz;
1628 break;
1629 case 88200:
763f356c
TI
1630 rate_bits = HDSPM_Frequency88_2KHz;
1631 break;
1632 case 96000:
763f356c
TI
1633 rate_bits = HDSPM_Frequency96KHz;
1634 break;
3cee5a60 1635 case 128000:
3cee5a60
RB
1636 rate_bits = HDSPM_Frequency128KHz;
1637 break;
1638 case 176400:
3cee5a60
RB
1639 rate_bits = HDSPM_Frequency176_4KHz;
1640 break;
1641 case 192000:
3cee5a60
RB
1642 rate_bits = HDSPM_Frequency192KHz;
1643 break;
763f356c
TI
1644 default:
1645 return -EINVAL;
1646 }
1647
6534599d 1648 if (current_speed != target_speed
763f356c
TI
1649 && (hdspm->capture_pid >= 0 || hdspm->playback_pid >= 0)) {
1650 snd_printk
ef5fa1a4 1651 (KERN_ERR "HDSPM: "
6534599d 1652 "cannot change from %s speed to %s speed mode "
ef5fa1a4 1653 "(capture PID = %d, playback PID = %d)\n",
6534599d
RB
1654 hdspm_speed_names[current_speed],
1655 hdspm_speed_names[target_speed],
763f356c
TI
1656 hdspm->capture_pid, hdspm->playback_pid);
1657 return -EBUSY;
1658 }
1659
1660 hdspm->control_register &= ~HDSPM_FrequencyMask;
1661 hdspm->control_register |= rate_bits;
1662 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1663
ffb2c3c0
RB
1664 /* For AES32, need to set DDS value in FREQ register
1665 For MADI, also apparently */
1666 hdspm_set_dds_value(hdspm, rate);
0dca1793
AK
1667
1668 if (AES32 == hdspm->io_type && rate != current_rate)
ffb2c3c0 1669 hdspm_write(hdspm, HDSPM_eeprom_wr, 0);
763f356c
TI
1670
1671 hdspm->system_sample_rate = rate;
1672
0dca1793
AK
1673 if (rate <= 48000) {
1674 hdspm->channel_map_in = hdspm->channel_map_in_ss;
1675 hdspm->channel_map_out = hdspm->channel_map_out_ss;
1676 hdspm->max_channels_in = hdspm->ss_in_channels;
1677 hdspm->max_channels_out = hdspm->ss_out_channels;
1678 hdspm->port_names_in = hdspm->port_names_in_ss;
1679 hdspm->port_names_out = hdspm->port_names_out_ss;
1680 } else if (rate <= 96000) {
1681 hdspm->channel_map_in = hdspm->channel_map_in_ds;
1682 hdspm->channel_map_out = hdspm->channel_map_out_ds;
1683 hdspm->max_channels_in = hdspm->ds_in_channels;
1684 hdspm->max_channels_out = hdspm->ds_out_channels;
1685 hdspm->port_names_in = hdspm->port_names_in_ds;
1686 hdspm->port_names_out = hdspm->port_names_out_ds;
1687 } else {
1688 hdspm->channel_map_in = hdspm->channel_map_in_qs;
1689 hdspm->channel_map_out = hdspm->channel_map_out_qs;
1690 hdspm->max_channels_in = hdspm->qs_in_channels;
1691 hdspm->max_channels_out = hdspm->qs_out_channels;
1692 hdspm->port_names_in = hdspm->port_names_in_qs;
1693 hdspm->port_names_out = hdspm->port_names_out_qs;
1694 }
1695
763f356c
TI
1696 if (not_set != 0)
1697 return -1;
1698
1699 return 0;
1700}
1701
1702/* mainly for init to 0 on load */
98274f07 1703static void all_in_all_mixer(struct hdspm * hdspm, int sgain)
763f356c
TI
1704{
1705 int i, j;
ef5fa1a4
TI
1706 unsigned int gain;
1707
1708 if (sgain > UNITY_GAIN)
1709 gain = UNITY_GAIN;
1710 else if (sgain < 0)
1711 gain = 0;
1712 else
1713 gain = sgain;
763f356c
TI
1714
1715 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++)
1716 for (j = 0; j < HDSPM_MIXER_CHANNELS; j++) {
1717 hdspm_write_in_gain(hdspm, i, j, gain);
1718 hdspm_write_pb_gain(hdspm, i, j, gain);
1719 }
1720}
1721
1722/*----------------------------------------------------------------------------
1723 MIDI
1724 ----------------------------------------------------------------------------*/
1725
ef5fa1a4
TI
1726static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm *hdspm,
1727 int id)
763f356c
TI
1728{
1729 /* the hardware already does the relevant bit-mask with 0xff */
0dca1793 1730 return hdspm_read(hdspm, hdspm->midi[id].dataIn);
763f356c
TI
1731}
1732
ef5fa1a4
TI
1733static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id,
1734 int val)
763f356c
TI
1735{
1736 /* the hardware already does the relevant bit-mask with 0xff */
0dca1793 1737 return hdspm_write(hdspm, hdspm->midi[id].dataOut, val);
763f356c
TI
1738}
1739
98274f07 1740static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id)
763f356c 1741{
0dca1793 1742 return hdspm_read(hdspm, hdspm->midi[id].statusIn) & 0xFF;
763f356c
TI
1743}
1744
98274f07 1745static inline int snd_hdspm_midi_output_possible (struct hdspm *hdspm, int id)
763f356c
TI
1746{
1747 int fifo_bytes_used;
1748
0dca1793 1749 fifo_bytes_used = hdspm_read(hdspm, hdspm->midi[id].statusOut) & 0xFF;
763f356c
TI
1750
1751 if (fifo_bytes_used < 128)
1752 return 128 - fifo_bytes_used;
1753 else
1754 return 0;
1755}
1756
62cef821 1757static void snd_hdspm_flush_midi_input(struct hdspm *hdspm, int id)
763f356c
TI
1758{
1759 while (snd_hdspm_midi_input_available (hdspm, id))
1760 snd_hdspm_midi_read_byte (hdspm, id);
1761}
1762
98274f07 1763static int snd_hdspm_midi_output_write (struct hdspm_midi *hmidi)
763f356c
TI
1764{
1765 unsigned long flags;
1766 int n_pending;
1767 int to_write;
1768 int i;
1769 unsigned char buf[128];
1770
1771 /* Output is not interrupt driven */
0dca1793 1772
763f356c 1773 spin_lock_irqsave (&hmidi->lock, flags);
ef5fa1a4
TI
1774 if (hmidi->output &&
1775 !snd_rawmidi_transmit_empty (hmidi->output)) {
1776 n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm,
1777 hmidi->id);
1778 if (n_pending > 0) {
1779 if (n_pending > (int)sizeof (buf))
1780 n_pending = sizeof (buf);
0dca1793 1781
ef5fa1a4
TI
1782 to_write = snd_rawmidi_transmit (hmidi->output, buf,
1783 n_pending);
1784 if (to_write > 0) {
0dca1793 1785 for (i = 0; i < to_write; ++i)
ef5fa1a4
TI
1786 snd_hdspm_midi_write_byte (hmidi->hdspm,
1787 hmidi->id,
1788 buf[i]);
763f356c
TI
1789 }
1790 }
1791 }
1792 spin_unlock_irqrestore (&hmidi->lock, flags);
1793 return 0;
1794}
1795
98274f07 1796static int snd_hdspm_midi_input_read (struct hdspm_midi *hmidi)
763f356c 1797{
ef5fa1a4
TI
1798 unsigned char buf[128]; /* this buffer is designed to match the MIDI
1799 * input FIFO size
1800 */
763f356c
TI
1801 unsigned long flags;
1802 int n_pending;
1803 int i;
1804
1805 spin_lock_irqsave (&hmidi->lock, flags);
ef5fa1a4
TI
1806 n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id);
1807 if (n_pending > 0) {
763f356c 1808 if (hmidi->input) {
ef5fa1a4 1809 if (n_pending > (int)sizeof (buf))
763f356c 1810 n_pending = sizeof (buf);
ef5fa1a4
TI
1811 for (i = 0; i < n_pending; ++i)
1812 buf[i] = snd_hdspm_midi_read_byte (hmidi->hdspm,
1813 hmidi->id);
1814 if (n_pending)
1815 snd_rawmidi_receive (hmidi->input, buf,
1816 n_pending);
763f356c
TI
1817 } else {
1818 /* flush the MIDI input FIFO */
ef5fa1a4
TI
1819 while (n_pending--)
1820 snd_hdspm_midi_read_byte (hmidi->hdspm,
1821 hmidi->id);
763f356c
TI
1822 }
1823 }
1824 hmidi->pending = 0;
c0da0014 1825 spin_unlock_irqrestore(&hmidi->lock, flags);
0dca1793 1826
c0da0014 1827 spin_lock_irqsave(&hmidi->hdspm->lock, flags);
0dca1793 1828 hmidi->hdspm->control_register |= hmidi->ie;
ef5fa1a4
TI
1829 hdspm_write(hmidi->hdspm, HDSPM_controlRegister,
1830 hmidi->hdspm->control_register);
c0da0014 1831 spin_unlock_irqrestore(&hmidi->hdspm->lock, flags);
0dca1793 1832
763f356c
TI
1833 return snd_hdspm_midi_output_write (hmidi);
1834}
1835
ef5fa1a4
TI
1836static void
1837snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
763f356c 1838{
98274f07
TI
1839 struct hdspm *hdspm;
1840 struct hdspm_midi *hmidi;
763f356c 1841 unsigned long flags;
763f356c 1842
ef5fa1a4 1843 hmidi = substream->rmidi->private_data;
763f356c 1844 hdspm = hmidi->hdspm;
0dca1793 1845
763f356c
TI
1846 spin_lock_irqsave (&hdspm->lock, flags);
1847 if (up) {
0dca1793 1848 if (!(hdspm->control_register & hmidi->ie)) {
763f356c 1849 snd_hdspm_flush_midi_input (hdspm, hmidi->id);
0dca1793 1850 hdspm->control_register |= hmidi->ie;
763f356c
TI
1851 }
1852 } else {
0dca1793 1853 hdspm->control_register &= ~hmidi->ie;
763f356c
TI
1854 }
1855
1856 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1857 spin_unlock_irqrestore (&hdspm->lock, flags);
1858}
1859
1860static void snd_hdspm_midi_output_timer(unsigned long data)
1861{
98274f07 1862 struct hdspm_midi *hmidi = (struct hdspm_midi *) data;
763f356c 1863 unsigned long flags;
0dca1793 1864
763f356c
TI
1865 snd_hdspm_midi_output_write(hmidi);
1866 spin_lock_irqsave (&hmidi->lock, flags);
1867
1868 /* this does not bump hmidi->istimer, because the
1869 kernel automatically removed the timer when it
1870 expired, and we are now adding it back, thus
0dca1793 1871 leaving istimer wherever it was set before.
763f356c
TI
1872 */
1873
1874 if (hmidi->istimer) {
1875 hmidi->timer.expires = 1 + jiffies;
1876 add_timer(&hmidi->timer);
1877 }
1878
1879 spin_unlock_irqrestore (&hmidi->lock, flags);
1880}
1881
ef5fa1a4
TI
1882static void
1883snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
763f356c 1884{
98274f07 1885 struct hdspm_midi *hmidi;
763f356c
TI
1886 unsigned long flags;
1887
ef5fa1a4 1888 hmidi = substream->rmidi->private_data;
763f356c
TI
1889 spin_lock_irqsave (&hmidi->lock, flags);
1890 if (up) {
1891 if (!hmidi->istimer) {
1892 init_timer(&hmidi->timer);
1893 hmidi->timer.function = snd_hdspm_midi_output_timer;
1894 hmidi->timer.data = (unsigned long) hmidi;
1895 hmidi->timer.expires = 1 + jiffies;
1896 add_timer(&hmidi->timer);
1897 hmidi->istimer++;
1898 }
1899 } else {
ef5fa1a4 1900 if (hmidi->istimer && --hmidi->istimer <= 0)
763f356c 1901 del_timer (&hmidi->timer);
763f356c
TI
1902 }
1903 spin_unlock_irqrestore (&hmidi->lock, flags);
1904 if (up)
1905 snd_hdspm_midi_output_write(hmidi);
1906}
1907
98274f07 1908static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream *substream)
763f356c 1909{
98274f07 1910 struct hdspm_midi *hmidi;
763f356c 1911
ef5fa1a4 1912 hmidi = substream->rmidi->private_data;
763f356c
TI
1913 spin_lock_irq (&hmidi->lock);
1914 snd_hdspm_flush_midi_input (hmidi->hdspm, hmidi->id);
1915 hmidi->input = substream;
1916 spin_unlock_irq (&hmidi->lock);
1917
1918 return 0;
1919}
1920
98274f07 1921static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream *substream)
763f356c 1922{
98274f07 1923 struct hdspm_midi *hmidi;
763f356c 1924
ef5fa1a4 1925 hmidi = substream->rmidi->private_data;
763f356c
TI
1926 spin_lock_irq (&hmidi->lock);
1927 hmidi->output = substream;
1928 spin_unlock_irq (&hmidi->lock);
1929
1930 return 0;
1931}
1932
98274f07 1933static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream *substream)
763f356c 1934{
98274f07 1935 struct hdspm_midi *hmidi;
763f356c
TI
1936
1937 snd_hdspm_midi_input_trigger (substream, 0);
1938
ef5fa1a4 1939 hmidi = substream->rmidi->private_data;
763f356c
TI
1940 spin_lock_irq (&hmidi->lock);
1941 hmidi->input = NULL;
1942 spin_unlock_irq (&hmidi->lock);
1943
1944 return 0;
1945}
1946
98274f07 1947static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream *substream)
763f356c 1948{
98274f07 1949 struct hdspm_midi *hmidi;
763f356c
TI
1950
1951 snd_hdspm_midi_output_trigger (substream, 0);
1952
ef5fa1a4 1953 hmidi = substream->rmidi->private_data;
763f356c
TI
1954 spin_lock_irq (&hmidi->lock);
1955 hmidi->output = NULL;
1956 spin_unlock_irq (&hmidi->lock);
1957
1958 return 0;
1959}
1960
98274f07 1961static struct snd_rawmidi_ops snd_hdspm_midi_output =
763f356c
TI
1962{
1963 .open = snd_hdspm_midi_output_open,
1964 .close = snd_hdspm_midi_output_close,
1965 .trigger = snd_hdspm_midi_output_trigger,
1966};
1967
98274f07 1968static struct snd_rawmidi_ops snd_hdspm_midi_input =
763f356c
TI
1969{
1970 .open = snd_hdspm_midi_input_open,
1971 .close = snd_hdspm_midi_input_close,
1972 .trigger = snd_hdspm_midi_input_trigger,
1973};
1974
e23e7a14
BP
1975static int snd_hdspm_create_midi(struct snd_card *card,
1976 struct hdspm *hdspm, int id)
763f356c
TI
1977{
1978 int err;
1979 char buf[32];
1980
1981 hdspm->midi[id].id = id;
763f356c 1982 hdspm->midi[id].hdspm = hdspm;
763f356c
TI
1983 spin_lock_init (&hdspm->midi[id].lock);
1984
0dca1793
AK
1985 if (0 == id) {
1986 if (MADIface == hdspm->io_type) {
1987 /* MIDI-over-MADI on HDSPe MADIface */
1988 hdspm->midi[0].dataIn = HDSPM_midiDataIn2;
1989 hdspm->midi[0].statusIn = HDSPM_midiStatusIn2;
1990 hdspm->midi[0].dataOut = HDSPM_midiDataOut2;
1991 hdspm->midi[0].statusOut = HDSPM_midiStatusOut2;
1992 hdspm->midi[0].ie = HDSPM_Midi2InterruptEnable;
1993 hdspm->midi[0].irq = HDSPM_midi2IRQPending;
1994 } else {
1995 hdspm->midi[0].dataIn = HDSPM_midiDataIn0;
1996 hdspm->midi[0].statusIn = HDSPM_midiStatusIn0;
1997 hdspm->midi[0].dataOut = HDSPM_midiDataOut0;
1998 hdspm->midi[0].statusOut = HDSPM_midiStatusOut0;
1999 hdspm->midi[0].ie = HDSPM_Midi0InterruptEnable;
2000 hdspm->midi[0].irq = HDSPM_midi0IRQPending;
2001 }
2002 } else if (1 == id) {
2003 hdspm->midi[1].dataIn = HDSPM_midiDataIn1;
2004 hdspm->midi[1].statusIn = HDSPM_midiStatusIn1;
2005 hdspm->midi[1].dataOut = HDSPM_midiDataOut1;
2006 hdspm->midi[1].statusOut = HDSPM_midiStatusOut1;
2007 hdspm->midi[1].ie = HDSPM_Midi1InterruptEnable;
2008 hdspm->midi[1].irq = HDSPM_midi1IRQPending;
2009 } else if ((2 == id) && (MADI == hdspm->io_type)) {
2010 /* MIDI-over-MADI on HDSPe MADI */
2011 hdspm->midi[2].dataIn = HDSPM_midiDataIn2;
2012 hdspm->midi[2].statusIn = HDSPM_midiStatusIn2;
2013 hdspm->midi[2].dataOut = HDSPM_midiDataOut2;
2014 hdspm->midi[2].statusOut = HDSPM_midiStatusOut2;
2015 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable;
2016 hdspm->midi[2].irq = HDSPM_midi2IRQPending;
2017 } else if (2 == id) {
2018 /* TCO MTC, read only */
2019 hdspm->midi[2].dataIn = HDSPM_midiDataIn2;
2020 hdspm->midi[2].statusIn = HDSPM_midiStatusIn2;
2021 hdspm->midi[2].dataOut = -1;
2022 hdspm->midi[2].statusOut = -1;
2023 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable;
2024 hdspm->midi[2].irq = HDSPM_midi2IRQPendingAES;
2025 } else if (3 == id) {
2026 /* TCO MTC on HDSPe MADI */
2027 hdspm->midi[3].dataIn = HDSPM_midiDataIn3;
2028 hdspm->midi[3].statusIn = HDSPM_midiStatusIn3;
2029 hdspm->midi[3].dataOut = -1;
2030 hdspm->midi[3].statusOut = -1;
2031 hdspm->midi[3].ie = HDSPM_Midi3InterruptEnable;
2032 hdspm->midi[3].irq = HDSPM_midi3IRQPending;
2033 }
2034
2035 if ((id < 2) || ((2 == id) && ((MADI == hdspm->io_type) ||
2036 (MADIface == hdspm->io_type)))) {
2037 if ((id == 0) && (MADIface == hdspm->io_type)) {
2038 sprintf(buf, "%s MIDIoverMADI", card->shortname);
2039 } else if ((id == 2) && (MADI == hdspm->io_type)) {
2040 sprintf(buf, "%s MIDIoverMADI", card->shortname);
2041 } else {
2042 sprintf(buf, "%s MIDI %d", card->shortname, id+1);
2043 }
2044 err = snd_rawmidi_new(card, buf, id, 1, 1,
2045 &hdspm->midi[id].rmidi);
2046 if (err < 0)
2047 return err;
763f356c 2048
0dca1793
AK
2049 sprintf(hdspm->midi[id].rmidi->name, "%s MIDI %d",
2050 card->id, id+1);
2051 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
2052
2053 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
2054 SNDRV_RAWMIDI_STREAM_OUTPUT,
2055 &snd_hdspm_midi_output);
2056 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
2057 SNDRV_RAWMIDI_STREAM_INPUT,
2058 &snd_hdspm_midi_input);
2059
2060 hdspm->midi[id].rmidi->info_flags |=
2061 SNDRV_RAWMIDI_INFO_OUTPUT |
2062 SNDRV_RAWMIDI_INFO_INPUT |
2063 SNDRV_RAWMIDI_INFO_DUPLEX;
2064 } else {
2065 /* TCO MTC, read only */
2066 sprintf(buf, "%s MTC %d", card->shortname, id+1);
2067 err = snd_rawmidi_new(card, buf, id, 1, 1,
2068 &hdspm->midi[id].rmidi);
2069 if (err < 0)
2070 return err;
2071
2072 sprintf(hdspm->midi[id].rmidi->name,
2073 "%s MTC %d", card->id, id+1);
2074 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
763f356c 2075
0dca1793
AK
2076 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
2077 SNDRV_RAWMIDI_STREAM_INPUT,
2078 &snd_hdspm_midi_input);
763f356c 2079
0dca1793
AK
2080 hdspm->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT;
2081 }
763f356c
TI
2082
2083 return 0;
2084}
2085
2086
2087static void hdspm_midi_tasklet(unsigned long arg)
2088{
98274f07 2089 struct hdspm *hdspm = (struct hdspm *)arg;
0dca1793
AK
2090 int i = 0;
2091
2092 while (i < hdspm->midiPorts) {
2093 if (hdspm->midi[i].pending)
2094 snd_hdspm_midi_input_read(&hdspm->midi[i]);
2095
2096 i++;
2097 }
2098}
763f356c
TI
2099
2100
2101/*-----------------------------------------------------------------------------
2102 Status Interface
2103 ----------------------------------------------------------------------------*/
2104
2105/* get the system sample rate which is set */
2106
0dca1793 2107
3f7bf918
AK
2108static inline int hdspm_get_pll_freq(struct hdspm *hdspm)
2109{
2110 unsigned int period, rate;
2111
2112 period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
2113 rate = hdspm_calc_dds_value(hdspm, period);
2114
2115 return rate;
2116}
2117
0dca1793
AK
2118/**
2119 * Calculate the real sample rate from the
2120 * current DDS value.
2121 **/
2122static int hdspm_get_system_sample_rate(struct hdspm *hdspm)
2123{
3f7bf918 2124 unsigned int rate;
0dca1793 2125
3f7bf918 2126 rate = hdspm_get_pll_freq(hdspm);
0dca1793 2127
a97bda7d 2128 if (rate > 207000) {
21a164df
AK
2129 /* Unreasonable high sample rate as seen on PCI MADI cards. */
2130 if (0 == hdspm_system_clock_mode(hdspm)) {
2131 /* master mode, return internal sample rate */
2132 rate = hdspm->system_sample_rate;
2133 } else {
2134 /* slave mode, return external sample rate */
2135 rate = hdspm_external_sample_rate(hdspm);
2136 }
a97bda7d
AK
2137 }
2138
0dca1793
AK
2139 return rate;
2140}
2141
2142
763f356c 2143#define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
f27a64f9
AK
2144{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2145 .name = xname, \
2146 .index = xindex, \
2147 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2148 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2149 .info = snd_hdspm_info_system_sample_rate, \
2150 .put = snd_hdspm_put_system_sample_rate, \
2151 .get = snd_hdspm_get_system_sample_rate \
763f356c
TI
2152}
2153
98274f07
TI
2154static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol *kcontrol,
2155 struct snd_ctl_elem_info *uinfo)
763f356c
TI
2156{
2157 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2158 uinfo->count = 1;
0dca1793
AK
2159 uinfo->value.integer.min = 27000;
2160 uinfo->value.integer.max = 207000;
2161 uinfo->value.integer.step = 1;
763f356c
TI
2162 return 0;
2163}
2164
0dca1793 2165
98274f07
TI
2166static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol *kcontrol,
2167 struct snd_ctl_elem_value *
763f356c
TI
2168 ucontrol)
2169{
98274f07 2170 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 2171
0dca1793
AK
2172 ucontrol->value.integer.value[0] = hdspm_get_system_sample_rate(hdspm);
2173 return 0;
2174}
2175
41285a98
AK
2176static int snd_hdspm_put_system_sample_rate(struct snd_kcontrol *kcontrol,
2177 struct snd_ctl_elem_value *
2178 ucontrol)
2179{
2180 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2181
2182 hdspm_set_dds_value(hdspm, ucontrol->value.enumerated.item[0]);
2183 return 0;
2184}
2185
0dca1793
AK
2186
2187/**
2188 * Returns the WordClock sample rate class for the given card.
2189 **/
2190static int hdspm_get_wc_sample_rate(struct hdspm *hdspm)
2191{
2192 int status;
2193
2194 switch (hdspm->io_type) {
2195 case RayDAT:
2196 case AIO:
2197 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
2198 return (status >> 16) & 0xF;
2199 break;
a57fea8e
AK
2200 case AES32:
2201 status = hdspm_read(hdspm, HDSPM_statusRegister);
2202 return (status >> HDSPM_AES32_wcFreq_bit) & 0xF;
0dca1793
AK
2203 default:
2204 break;
2205 }
2206
2207
2208 return 0;
2209}
2210
2211
2212/**
2213 * Returns the TCO sample rate class for the given card.
2214 **/
2215static int hdspm_get_tco_sample_rate(struct hdspm *hdspm)
2216{
2217 int status;
2218
2219 if (hdspm->tco) {
2220 switch (hdspm->io_type) {
2221 case RayDAT:
2222 case AIO:
2223 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
2224 return (status >> 20) & 0xF;
2225 break;
051c44fe
AK
2226 case AES32:
2227 status = hdspm_read(hdspm, HDSPM_statusRegister);
2228 return (status >> 1) & 0xF;
0dca1793
AK
2229 default:
2230 break;
2231 }
2232 }
2233
2234 return 0;
2235}
2236
2237
2238/**
2239 * Returns the SYNC_IN sample rate class for the given card.
2240 **/
2241static int hdspm_get_sync_in_sample_rate(struct hdspm *hdspm)
2242{
2243 int status;
2244
2245 if (hdspm->tco) {
2246 switch (hdspm->io_type) {
2247 case RayDAT:
2248 case AIO:
2249 status = hdspm_read(hdspm, HDSPM_RD_STATUS_2);
2250 return (status >> 12) & 0xF;
2251 break;
2252 default:
2253 break;
2254 }
2255 }
2256
763f356c
TI
2257 return 0;
2258}
2259
d3c36ed8
AK
2260/**
2261 * Returns the AES sample rate class for the given card.
2262 **/
2263static int hdspm_get_aes_sample_rate(struct hdspm *hdspm, int index)
2264{
2265 int timecode;
2266
2267 switch (hdspm->io_type) {
2268 case AES32:
2269 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
2270 return (timecode >> (4*index)) & 0xF;
2271 break;
2272 default:
2273 break;
2274 }
2275 return 0;
2276}
0dca1793
AK
2277
2278/**
2279 * Returns the sample rate class for input source <idx> for
2280 * 'new style' cards like the AIO and RayDAT.
2281 **/
2282static int hdspm_get_s1_sample_rate(struct hdspm *hdspm, unsigned int idx)
2283{
2284 int status = hdspm_read(hdspm, HDSPM_RD_STATUS_2);
2285
2286 return (status >> (idx*4)) & 0xF;
2287}
2288
8cea5710 2289#define ENUMERATED_CTL_INFO(info, texts) \
38816545 2290 snd_ctl_enum_info(info, 1, ARRAY_SIZE(texts), texts)
8cea5710 2291
0dca1793 2292
2336142f
AK
2293/* Helper function to query the external sample rate and return the
2294 * corresponding enum to be returned to userspace.
2295 */
2296static int hdspm_external_rate_to_enum(struct hdspm *hdspm)
2297{
2298 int rate = hdspm_external_sample_rate(hdspm);
2299 int i, selected_rate = 0;
2300 for (i = 1; i < 10; i++)
2301 if (HDSPM_bit2freq(i) == rate) {
2302 selected_rate = i;
2303 break;
2304 }
2305 return selected_rate;
2306}
2307
0dca1793 2308
763f356c 2309#define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
0dca1793
AK
2310{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2311 .name = xname, \
2312 .private_value = xindex, \
2313 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2314 .info = snd_hdspm_info_autosync_sample_rate, \
2315 .get = snd_hdspm_get_autosync_sample_rate \
763f356c
TI
2316}
2317
0dca1793 2318
98274f07
TI
2319static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol *kcontrol,
2320 struct snd_ctl_elem_info *uinfo)
763f356c 2321{
e5b7b1fe 2322 ENUMERATED_CTL_INFO(uinfo, texts_freq);
763f356c
TI
2323 return 0;
2324}
2325
0dca1793 2326
98274f07
TI
2327static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol,
2328 struct snd_ctl_elem_value *
763f356c
TI
2329 ucontrol)
2330{
98274f07 2331 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 2332
0dca1793
AK
2333 switch (hdspm->io_type) {
2334 case RayDAT:
2335 switch (kcontrol->private_value) {
2336 case 0:
2337 ucontrol->value.enumerated.item[0] =
2338 hdspm_get_wc_sample_rate(hdspm);
2339 break;
2340 case 7:
2341 ucontrol->value.enumerated.item[0] =
2342 hdspm_get_tco_sample_rate(hdspm);
2343 break;
2344 case 8:
2345 ucontrol->value.enumerated.item[0] =
2346 hdspm_get_sync_in_sample_rate(hdspm);
2347 break;
2348 default:
2349 ucontrol->value.enumerated.item[0] =
2350 hdspm_get_s1_sample_rate(hdspm,
2351 kcontrol->private_value-1);
2352 }
d681deaa 2353 break;
763f356c 2354
0dca1793
AK
2355 case AIO:
2356 switch (kcontrol->private_value) {
2357 case 0: /* WC */
2358 ucontrol->value.enumerated.item[0] =
2359 hdspm_get_wc_sample_rate(hdspm);
2360 break;
2361 case 4: /* TCO */
2362 ucontrol->value.enumerated.item[0] =
2363 hdspm_get_tco_sample_rate(hdspm);
2364 break;
2365 case 5: /* SYNC_IN */
2366 ucontrol->value.enumerated.item[0] =
2367 hdspm_get_sync_in_sample_rate(hdspm);
2368 break;
2369 default:
2370 ucontrol->value.enumerated.item[0] =
2371 hdspm_get_s1_sample_rate(hdspm,
1cb7dbf4 2372 kcontrol->private_value-1);
0dca1793 2373 }
d681deaa 2374 break;
7c4a95b5
AK
2375
2376 case AES32:
2377
2378 switch (kcontrol->private_value) {
2379 case 0: /* WC */
2380 ucontrol->value.enumerated.item[0] =
2381 hdspm_get_wc_sample_rate(hdspm);
2382 break;
2383 case 9: /* TCO */
2384 ucontrol->value.enumerated.item[0] =
2385 hdspm_get_tco_sample_rate(hdspm);
2386 break;
2387 case 10: /* SYNC_IN */
2388 ucontrol->value.enumerated.item[0] =
2389 hdspm_get_sync_in_sample_rate(hdspm);
2390 break;
2d63ec38
AK
2391 case 11: /* External Rate */
2392 ucontrol->value.enumerated.item[0] =
2393 hdspm_external_rate_to_enum(hdspm);
2394 break;
7c4a95b5
AK
2395 default: /* AES1 to AES8 */
2396 ucontrol->value.enumerated.item[0] =
2d63ec38
AK
2397 hdspm_get_aes_sample_rate(hdspm,
2398 kcontrol->private_value -
2399 HDSPM_AES32_AUTOSYNC_FROM_AES1);
7c4a95b5 2400 break;
7c4a95b5 2401 }
d681deaa 2402 break;
b8812c55
AK
2403
2404 case MADI:
2405 case MADIface:
2336142f
AK
2406 ucontrol->value.enumerated.item[0] =
2407 hdspm_external_rate_to_enum(hdspm);
b8812c55 2408 break;
763f356c 2409 default:
0dca1793 2410 break;
763f356c 2411 }
763f356c 2412
0dca1793 2413 return 0;
763f356c
TI
2414}
2415
2416
0dca1793
AK
2417#define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
2418{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2419 .name = xname, \
2420 .index = xindex, \
2421 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2422 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2423 .info = snd_hdspm_info_system_clock_mode, \
2424 .get = snd_hdspm_get_system_clock_mode, \
2425 .put = snd_hdspm_put_system_clock_mode, \
2426}
2427
2428
2429/**
2430 * Returns the system clock mode for the given card.
2431 * @returns 0 - master, 1 - slave
2432 **/
2433static int hdspm_system_clock_mode(struct hdspm *hdspm)
2434{
2435 switch (hdspm->io_type) {
2436 case AIO:
2437 case RayDAT:
2438 if (hdspm->settings_register & HDSPM_c0Master)
2439 return 0;
2440 break;
763f356c 2441
0dca1793
AK
2442 default:
2443 if (hdspm->control_register & HDSPM_ClockModeMaster)
2444 return 0;
2445 }
763f356c 2446
763f356c
TI
2447 return 1;
2448}
2449
0dca1793
AK
2450
2451/**
2452 * Sets the system clock mode.
2453 * @param mode 0 - master, 1 - slave
2454 **/
2455static void hdspm_set_system_clock_mode(struct hdspm *hdspm, int mode)
2456{
34be7ebb
AK
2457 hdspm_set_toggle_setting(hdspm,
2458 (hdspm_is_raydat_or_aio(hdspm)) ?
2459 HDSPM_c0Master : HDSPM_ClockModeMaster,
2460 (0 == mode));
0dca1793
AK
2461}
2462
2463
2464static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol *kcontrol,
98274f07 2465 struct snd_ctl_elem_info *uinfo)
763f356c 2466{
38816545 2467 static const char *const texts[] = { "Master", "AutoSync" };
e5b7b1fe 2468 ENUMERATED_CTL_INFO(uinfo, texts);
763f356c
TI
2469 return 0;
2470}
2471
98274f07
TI
2472static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol *kcontrol,
2473 struct snd_ctl_elem_value *ucontrol)
763f356c 2474{
98274f07 2475 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 2476
0dca1793 2477 ucontrol->value.enumerated.item[0] = hdspm_system_clock_mode(hdspm);
763f356c
TI
2478 return 0;
2479}
2480
0dca1793
AK
2481static int snd_hdspm_put_system_clock_mode(struct snd_kcontrol *kcontrol,
2482 struct snd_ctl_elem_value *ucontrol)
2483{
2484 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2485 int val;
2486
2487 if (!snd_hdspm_use_is_exclusive(hdspm))
2488 return -EBUSY;
2489
2490 val = ucontrol->value.enumerated.item[0];
2491 if (val < 0)
2492 val = 0;
2493 else if (val > 1)
2494 val = 1;
2495
2496 hdspm_set_system_clock_mode(hdspm, val);
2497
2498 return 0;
2499}
2500
2501
2502#define HDSPM_INTERNAL_CLOCK(xname, xindex) \
2503{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2504 .name = xname, \
2505 .index = xindex, \
2506 .info = snd_hdspm_info_clock_source, \
2507 .get = snd_hdspm_get_clock_source, \
2508 .put = snd_hdspm_put_clock_source \
763f356c
TI
2509}
2510
0dca1793 2511
98274f07 2512static int hdspm_clock_source(struct hdspm * hdspm)
763f356c 2513{
0dca1793
AK
2514 switch (hdspm->system_sample_rate) {
2515 case 32000: return 0;
2516 case 44100: return 1;
2517 case 48000: return 2;
2518 case 64000: return 3;
2519 case 88200: return 4;
2520 case 96000: return 5;
2521 case 128000: return 6;
2522 case 176400: return 7;
2523 case 192000: return 8;
763f356c 2524 }
0dca1793
AK
2525
2526 return -1;
763f356c
TI
2527}
2528
98274f07 2529static int hdspm_set_clock_source(struct hdspm * hdspm, int mode)
763f356c
TI
2530{
2531 int rate;
2532 switch (mode) {
0dca1793
AK
2533 case 0:
2534 rate = 32000; break;
2535 case 1:
2536 rate = 44100; break;
2537 case 2:
2538 rate = 48000; break;
2539 case 3:
2540 rate = 64000; break;
2541 case 4:
2542 rate = 88200; break;
2543 case 5:
2544 rate = 96000; break;
2545 case 6:
2546 rate = 128000; break;
2547 case 7:
2548 rate = 176400; break;
2549 case 8:
2550 rate = 192000; break;
763f356c 2551 default:
0dca1793 2552 rate = 48000;
763f356c 2553 }
763f356c
TI
2554 hdspm_set_rate(hdspm, rate, 1);
2555 return 0;
2556}
2557
98274f07
TI
2558static int snd_hdspm_info_clock_source(struct snd_kcontrol *kcontrol,
2559 struct snd_ctl_elem_info *uinfo)
763f356c 2560{
763f356c
TI
2561 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2562 uinfo->count = 1;
0dca1793 2563 uinfo->value.enumerated.items = 9;
763f356c
TI
2564
2565 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2566 uinfo->value.enumerated.item =
2567 uinfo->value.enumerated.items - 1;
2568
2569 strcpy(uinfo->value.enumerated.name,
0dca1793 2570 texts_freq[uinfo->value.enumerated.item+1]);
763f356c
TI
2571
2572 return 0;
2573}
2574
98274f07
TI
2575static int snd_hdspm_get_clock_source(struct snd_kcontrol *kcontrol,
2576 struct snd_ctl_elem_value *ucontrol)
763f356c 2577{
98274f07 2578 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
2579
2580 ucontrol->value.enumerated.item[0] = hdspm_clock_source(hdspm);
2581 return 0;
2582}
2583
98274f07
TI
2584static int snd_hdspm_put_clock_source(struct snd_kcontrol *kcontrol,
2585 struct snd_ctl_elem_value *ucontrol)
763f356c 2586{
98274f07 2587 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
2588 int change;
2589 int val;
2590
2591 if (!snd_hdspm_use_is_exclusive(hdspm))
2592 return -EBUSY;
2593 val = ucontrol->value.enumerated.item[0];
2594 if (val < 0)
2595 val = 0;
6534599d
RB
2596 if (val > 9)
2597 val = 9;
763f356c
TI
2598 spin_lock_irq(&hdspm->lock);
2599 if (val != hdspm_clock_source(hdspm))
2600 change = (hdspm_set_clock_source(hdspm, val) == 0) ? 1 : 0;
2601 else
2602 change = 0;
2603 spin_unlock_irq(&hdspm->lock);
2604 return change;
2605}
2606
763f356c 2607
0dca1793 2608#define HDSPM_PREF_SYNC_REF(xname, xindex) \
f27a64f9 2609{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
0dca1793
AK
2610 .name = xname, \
2611 .index = xindex, \
2612 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2613 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2614 .info = snd_hdspm_info_pref_sync_ref, \
2615 .get = snd_hdspm_get_pref_sync_ref, \
2616 .put = snd_hdspm_put_pref_sync_ref \
2617}
2618
2619
2620/**
2621 * Returns the current preferred sync reference setting.
2622 * The semantics of the return value are depending on the
2623 * card, please see the comments for clarification.
2624 **/
98274f07 2625static int hdspm_pref_sync_ref(struct hdspm * hdspm)
763f356c 2626{
0dca1793
AK
2627 switch (hdspm->io_type) {
2628 case AES32:
3cee5a60 2629 switch (hdspm->control_register & HDSPM_SyncRefMask) {
0dca1793
AK
2630 case 0: return 0; /* WC */
2631 case HDSPM_SyncRef0: return 1; /* AES 1 */
2632 case HDSPM_SyncRef1: return 2; /* AES 2 */
2633 case HDSPM_SyncRef1+HDSPM_SyncRef0: return 3; /* AES 3 */
2634 case HDSPM_SyncRef2: return 4; /* AES 4 */
2635 case HDSPM_SyncRef2+HDSPM_SyncRef0: return 5; /* AES 5 */
2636 case HDSPM_SyncRef2+HDSPM_SyncRef1: return 6; /* AES 6 */
2637 case HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0:
2638 return 7; /* AES 7 */
2639 case HDSPM_SyncRef3: return 8; /* AES 8 */
2640 case HDSPM_SyncRef3+HDSPM_SyncRef0: return 9; /* TCO */
3cee5a60 2641 }
0dca1793
AK
2642 break;
2643
2644 case MADI:
2645 case MADIface:
2646 if (hdspm->tco) {
2647 switch (hdspm->control_register & HDSPM_SyncRefMask) {
2648 case 0: return 0; /* WC */
2649 case HDSPM_SyncRef0: return 1; /* MADI */
2650 case HDSPM_SyncRef1: return 2; /* TCO */
2651 case HDSPM_SyncRef1+HDSPM_SyncRef0:
2652 return 3; /* SYNC_IN */
2653 }
2654 } else {
2655 switch (hdspm->control_register & HDSPM_SyncRefMask) {
2656 case 0: return 0; /* WC */
2657 case HDSPM_SyncRef0: return 1; /* MADI */
2658 case HDSPM_SyncRef1+HDSPM_SyncRef0:
2659 return 2; /* SYNC_IN */
2660 }
2661 }
2662 break;
2663
2664 case RayDAT:
2665 if (hdspm->tco) {
2666 switch ((hdspm->settings_register &
2667 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2668 case 0: return 0; /* WC */
2669 case 3: return 1; /* ADAT 1 */
2670 case 4: return 2; /* ADAT 2 */
2671 case 5: return 3; /* ADAT 3 */
2672 case 6: return 4; /* ADAT 4 */
2673 case 1: return 5; /* AES */
2674 case 2: return 6; /* SPDIF */
2675 case 9: return 7; /* TCO */
2676 case 10: return 8; /* SYNC_IN */
2677 }
2678 } else {
2679 switch ((hdspm->settings_register &
2680 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2681 case 0: return 0; /* WC */
2682 case 3: return 1; /* ADAT 1 */
2683 case 4: return 2; /* ADAT 2 */
2684 case 5: return 3; /* ADAT 3 */
2685 case 6: return 4; /* ADAT 4 */
2686 case 1: return 5; /* AES */
2687 case 2: return 6; /* SPDIF */
2688 case 10: return 7; /* SYNC_IN */
2689 }
3cee5a60 2690 }
0dca1793
AK
2691
2692 break;
2693
2694 case AIO:
2695 if (hdspm->tco) {
2696 switch ((hdspm->settings_register &
2697 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2698 case 0: return 0; /* WC */
2699 case 3: return 1; /* ADAT */
2700 case 1: return 2; /* AES */
2701 case 2: return 3; /* SPDIF */
2702 case 9: return 4; /* TCO */
2703 case 10: return 5; /* SYNC_IN */
2704 }
2705 } else {
2706 switch ((hdspm->settings_register &
2707 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2708 case 0: return 0; /* WC */
2709 case 3: return 1; /* ADAT */
2710 case 1: return 2; /* AES */
2711 case 2: return 3; /* SPDIF */
2712 case 10: return 4; /* SYNC_IN */
2713 }
2714 }
2715
2716 break;
763f356c
TI
2717 }
2718
0dca1793 2719 return -1;
763f356c
TI
2720}
2721
0dca1793
AK
2722
2723/**
2724 * Set the preferred sync reference to <pref>. The semantics
2725 * of <pref> are depending on the card type, see the comments
2726 * for clarification.
2727 **/
98274f07 2728static int hdspm_set_pref_sync_ref(struct hdspm * hdspm, int pref)
763f356c 2729{
0dca1793 2730 int p = 0;
763f356c 2731
0dca1793
AK
2732 switch (hdspm->io_type) {
2733 case AES32:
2734 hdspm->control_register &= ~HDSPM_SyncRefMask;
3cee5a60 2735 switch (pref) {
0dca1793
AK
2736 case 0: /* WC */
2737 break;
2738 case 1: /* AES 1 */
2739 hdspm->control_register |= HDSPM_SyncRef0;
2740 break;
2741 case 2: /* AES 2 */
2742 hdspm->control_register |= HDSPM_SyncRef1;
2743 break;
2744 case 3: /* AES 3 */
2745 hdspm->control_register |=
2746 HDSPM_SyncRef1+HDSPM_SyncRef0;
2747 break;
2748 case 4: /* AES 4 */
2749 hdspm->control_register |= HDSPM_SyncRef2;
2750 break;
2751 case 5: /* AES 5 */
2752 hdspm->control_register |=
2753 HDSPM_SyncRef2+HDSPM_SyncRef0;
2754 break;
2755 case 6: /* AES 6 */
2756 hdspm->control_register |=
2757 HDSPM_SyncRef2+HDSPM_SyncRef1;
2758 break;
2759 case 7: /* AES 7 */
2760 hdspm->control_register |=
2761 HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0;
3cee5a60 2762 break;
0dca1793
AK
2763 case 8: /* AES 8 */
2764 hdspm->control_register |= HDSPM_SyncRef3;
2765 break;
2766 case 9: /* TCO */
2767 hdspm->control_register |=
2768 HDSPM_SyncRef3+HDSPM_SyncRef0;
3cee5a60
RB
2769 break;
2770 default:
2771 return -1;
2772 }
0dca1793
AK
2773
2774 break;
2775
2776 case MADI:
2777 case MADIface:
2778 hdspm->control_register &= ~HDSPM_SyncRefMask;
2779 if (hdspm->tco) {
2780 switch (pref) {
2781 case 0: /* WC */
2782 break;
2783 case 1: /* MADI */
2784 hdspm->control_register |= HDSPM_SyncRef0;
2785 break;
2786 case 2: /* TCO */
2787 hdspm->control_register |= HDSPM_SyncRef1;
2788 break;
2789 case 3: /* SYNC_IN */
2790 hdspm->control_register |=
2791 HDSPM_SyncRef0+HDSPM_SyncRef1;
2792 break;
2793 default:
2794 return -1;
2795 }
2796 } else {
2797 switch (pref) {
2798 case 0: /* WC */
2799 break;
2800 case 1: /* MADI */
2801 hdspm->control_register |= HDSPM_SyncRef0;
2802 break;
2803 case 2: /* SYNC_IN */
2804 hdspm->control_register |=
2805 HDSPM_SyncRef0+HDSPM_SyncRef1;
2806 break;
2807 default:
2808 return -1;
2809 }
2810 }
2811
2812 break;
2813
2814 case RayDAT:
2815 if (hdspm->tco) {
2816 switch (pref) {
2817 case 0: p = 0; break; /* WC */
2818 case 1: p = 3; break; /* ADAT 1 */
2819 case 2: p = 4; break; /* ADAT 2 */
2820 case 3: p = 5; break; /* ADAT 3 */
2821 case 4: p = 6; break; /* ADAT 4 */
2822 case 5: p = 1; break; /* AES */
2823 case 6: p = 2; break; /* SPDIF */
2824 case 7: p = 9; break; /* TCO */
2825 case 8: p = 10; break; /* SYNC_IN */
2826 default: return -1;
2827 }
2828 } else {
2829 switch (pref) {
2830 case 0: p = 0; break; /* WC */
2831 case 1: p = 3; break; /* ADAT 1 */
2832 case 2: p = 4; break; /* ADAT 2 */
2833 case 3: p = 5; break; /* ADAT 3 */
2834 case 4: p = 6; break; /* ADAT 4 */
2835 case 5: p = 1; break; /* AES */
2836 case 6: p = 2; break; /* SPDIF */
2837 case 7: p = 10; break; /* SYNC_IN */
2838 default: return -1;
2839 }
2840 }
2841 break;
2842
2843 case AIO:
2844 if (hdspm->tco) {
2845 switch (pref) {
2846 case 0: p = 0; break; /* WC */
2847 case 1: p = 3; break; /* ADAT */
2848 case 2: p = 1; break; /* AES */
2849 case 3: p = 2; break; /* SPDIF */
2850 case 4: p = 9; break; /* TCO */
2851 case 5: p = 10; break; /* SYNC_IN */
2852 default: return -1;
2853 }
2854 } else {
2855 switch (pref) {
2856 case 0: p = 0; break; /* WC */
2857 case 1: p = 3; break; /* ADAT */
2858 case 2: p = 1; break; /* AES */
2859 case 3: p = 2; break; /* SPDIF */
2860 case 4: p = 10; break; /* SYNC_IN */
2861 default: return -1;
2862 }
2863 }
2864 break;
763f356c 2865 }
0dca1793
AK
2866
2867 switch (hdspm->io_type) {
2868 case RayDAT:
2869 case AIO:
2870 hdspm->settings_register &= ~HDSPM_c0_SyncRefMask;
2871 hdspm->settings_register |= HDSPM_c0_SyncRef0 * p;
2872 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
2873 break;
2874
2875 case MADI:
2876 case MADIface:
2877 case AES32:
2878 hdspm_write(hdspm, HDSPM_controlRegister,
2879 hdspm->control_register);
2880 }
2881
763f356c
TI
2882 return 0;
2883}
2884
0dca1793 2885
98274f07
TI
2886static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol *kcontrol,
2887 struct snd_ctl_elem_info *uinfo)
763f356c 2888{
3cee5a60 2889 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 2890
0dca1793
AK
2891 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2892 uinfo->count = 1;
2893 uinfo->value.enumerated.items = hdspm->texts_autosync_items;
3cee5a60 2894
0dca1793
AK
2895 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2896 uinfo->value.enumerated.item =
2897 uinfo->value.enumerated.items - 1;
3cee5a60 2898
0dca1793
AK
2899 strcpy(uinfo->value.enumerated.name,
2900 hdspm->texts_autosync[uinfo->value.enumerated.item]);
3cee5a60 2901
763f356c
TI
2902 return 0;
2903}
2904
98274f07
TI
2905static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol *kcontrol,
2906 struct snd_ctl_elem_value *ucontrol)
763f356c 2907{
98274f07 2908 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
0dca1793 2909 int psf = hdspm_pref_sync_ref(hdspm);
763f356c 2910
0dca1793
AK
2911 if (psf >= 0) {
2912 ucontrol->value.enumerated.item[0] = psf;
2913 return 0;
2914 }
2915
2916 return -1;
763f356c
TI
2917}
2918
98274f07
TI
2919static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol *kcontrol,
2920 struct snd_ctl_elem_value *ucontrol)
763f356c 2921{
98274f07 2922 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
0dca1793 2923 int val, change = 0;
763f356c
TI
2924
2925 if (!snd_hdspm_use_is_exclusive(hdspm))
2926 return -EBUSY;
2927
0dca1793
AK
2928 val = ucontrol->value.enumerated.item[0];
2929
2930 if (val < 0)
2931 val = 0;
2932 else if (val >= hdspm->texts_autosync_items)
2933 val = hdspm->texts_autosync_items-1;
763f356c
TI
2934
2935 spin_lock_irq(&hdspm->lock);
0dca1793
AK
2936 if (val != hdspm_pref_sync_ref(hdspm))
2937 change = (0 == hdspm_set_pref_sync_ref(hdspm, val)) ? 1 : 0;
2938
763f356c
TI
2939 spin_unlock_irq(&hdspm->lock);
2940 return change;
2941}
2942
0dca1793 2943
763f356c 2944#define HDSPM_AUTOSYNC_REF(xname, xindex) \
f27a64f9
AK
2945{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2946 .name = xname, \
2947 .index = xindex, \
2948 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2949 .info = snd_hdspm_info_autosync_ref, \
2950 .get = snd_hdspm_get_autosync_ref, \
763f356c
TI
2951}
2952
0dca1793 2953static int hdspm_autosync_ref(struct hdspm *hdspm)
763f356c 2954{
2d60fc7f 2955 /* This looks at the autosync selected sync reference */
0dca1793 2956 if (AES32 == hdspm->io_type) {
2d60fc7f 2957
3cee5a60 2958 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
2d60fc7f
AK
2959 unsigned int syncref = (status >> HDSPM_AES32_syncref_bit) & 0xF;
2960 if ((syncref >= HDSPM_AES32_AUTOSYNC_FROM_WORD) &&
2961 (syncref <= HDSPM_AES32_AUTOSYNC_FROM_SYNC_IN)) {
3cee5a60 2962 return syncref;
2d60fc7f 2963 }
3cee5a60 2964 return HDSPM_AES32_AUTOSYNC_FROM_NONE;
2d60fc7f 2965
0dca1793 2966 } else if (MADI == hdspm->io_type) {
3cee5a60 2967
2d60fc7f 2968 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
3cee5a60
RB
2969 switch (status2 & HDSPM_SelSyncRefMask) {
2970 case HDSPM_SelSyncRef_WORD:
2971 return HDSPM_AUTOSYNC_FROM_WORD;
2972 case HDSPM_SelSyncRef_MADI:
2973 return HDSPM_AUTOSYNC_FROM_MADI;
0dca1793
AK
2974 case HDSPM_SelSyncRef_TCO:
2975 return HDSPM_AUTOSYNC_FROM_TCO;
2976 case HDSPM_SelSyncRef_SyncIn:
2977 return HDSPM_AUTOSYNC_FROM_SYNC_IN;
3cee5a60
RB
2978 case HDSPM_SelSyncRef_NVALID:
2979 return HDSPM_AUTOSYNC_FROM_NONE;
2980 default:
e71b95ad 2981 return HDSPM_AUTOSYNC_FROM_NONE;
3cee5a60 2982 }
763f356c 2983
763f356c 2984 }
0dca1793 2985 return 0;
763f356c
TI
2986}
2987
0dca1793 2988
98274f07
TI
2989static int snd_hdspm_info_autosync_ref(struct snd_kcontrol *kcontrol,
2990 struct snd_ctl_elem_info *uinfo)
763f356c 2991{
3cee5a60 2992 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 2993
0dca1793 2994 if (AES32 == hdspm->io_type) {
3cee5a60 2995 static char *texts[] = { "WordClock", "AES1", "AES2", "AES3",
db2d1a91 2996 "AES4", "AES5", "AES6", "AES7", "AES8", "TCO", "Sync In", "None"};
3cee5a60
RB
2997
2998 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2999 uinfo->count = 1;
db2d1a91 3000 uinfo->value.enumerated.items = ARRAY_SIZE(texts);
ef5fa1a4
TI
3001 if (uinfo->value.enumerated.item >=
3002 uinfo->value.enumerated.items)
3cee5a60
RB
3003 uinfo->value.enumerated.item =
3004 uinfo->value.enumerated.items - 1;
3005 strcpy(uinfo->value.enumerated.name,
3006 texts[uinfo->value.enumerated.item]);
0dca1793
AK
3007 } else if (MADI == hdspm->io_type) {
3008 static char *texts[] = {"Word Clock", "MADI", "TCO",
3009 "Sync In", "None" };
3cee5a60
RB
3010
3011 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3012 uinfo->count = 1;
0dca1793 3013 uinfo->value.enumerated.items = 5;
ef5fa1a4 3014 if (uinfo->value.enumerated.item >=
0dca1793 3015 uinfo->value.enumerated.items)
3cee5a60
RB
3016 uinfo->value.enumerated.item =
3017 uinfo->value.enumerated.items - 1;
3018 strcpy(uinfo->value.enumerated.name,
3019 texts[uinfo->value.enumerated.item]);
3020 }
763f356c
TI
3021 return 0;
3022}
3023
98274f07
TI
3024static int snd_hdspm_get_autosync_ref(struct snd_kcontrol *kcontrol,
3025 struct snd_ctl_elem_value *ucontrol)
763f356c 3026{
98274f07 3027 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 3028
6534599d 3029 ucontrol->value.enumerated.item[0] = hdspm_autosync_ref(hdspm);
763f356c
TI
3030 return 0;
3031}
3032
f99c7881
AK
3033
3034
3035#define HDSPM_TCO_VIDEO_INPUT_FORMAT(xname, xindex) \
3036{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3037 .name = xname, \
3038 .access = SNDRV_CTL_ELEM_ACCESS_READ |\
3039 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3040 .info = snd_hdspm_info_tco_video_input_format, \
3041 .get = snd_hdspm_get_tco_video_input_format, \
3042}
3043
3044static int snd_hdspm_info_tco_video_input_format(struct snd_kcontrol *kcontrol,
3045 struct snd_ctl_elem_info *uinfo)
3046{
38816545 3047 static const char *const texts[] = {"No video", "NTSC", "PAL"};
f99c7881
AK
3048 ENUMERATED_CTL_INFO(uinfo, texts);
3049 return 0;
3050}
3051
3052static int snd_hdspm_get_tco_video_input_format(struct snd_kcontrol *kcontrol,
3053 struct snd_ctl_elem_value *ucontrol)
3054{
3055 u32 status;
3056 int ret = 0;
3057
3058 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3059 status = hdspm_read(hdspm, HDSPM_RD_TCO + 4);
3060 switch (status & (HDSPM_TCO1_Video_Input_Format_NTSC |
3061 HDSPM_TCO1_Video_Input_Format_PAL)) {
3062 case HDSPM_TCO1_Video_Input_Format_NTSC:
3063 /* ntsc */
3064 ret = 1;
3065 break;
3066 case HDSPM_TCO1_Video_Input_Format_PAL:
3067 /* pal */
3068 ret = 2;
3069 break;
3070 default:
3071 /* no video */
3072 ret = 0;
3073 break;
3074 }
3075 ucontrol->value.enumerated.item[0] = ret;
3076 return 0;
3077}
3078
3079
3080
3081#define HDSPM_TCO_LTC_FRAMES(xname, xindex) \
3082{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3083 .name = xname, \
3084 .access = SNDRV_CTL_ELEM_ACCESS_READ |\
3085 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3086 .info = snd_hdspm_info_tco_ltc_frames, \
3087 .get = snd_hdspm_get_tco_ltc_frames, \
3088}
3089
3090static int snd_hdspm_info_tco_ltc_frames(struct snd_kcontrol *kcontrol,
3091 struct snd_ctl_elem_info *uinfo)
3092{
38816545 3093 static const char *const texts[] = {"No lock", "24 fps", "25 fps", "29.97 fps",
f99c7881
AK
3094 "30 fps"};
3095 ENUMERATED_CTL_INFO(uinfo, texts);
3096 return 0;
3097}
3098
3099static int hdspm_tco_ltc_frames(struct hdspm *hdspm)
3100{
3101 u32 status;
3102 int ret = 0;
3103
3104 status = hdspm_read(hdspm, HDSPM_RD_TCO + 4);
3105 if (status & HDSPM_TCO1_LTC_Input_valid) {
3106 switch (status & (HDSPM_TCO1_LTC_Format_LSB |
3107 HDSPM_TCO1_LTC_Format_MSB)) {
3108 case 0:
3109 /* 24 fps */
3110 ret = 1;
3111 break;
3112 case HDSPM_TCO1_LTC_Format_LSB:
3113 /* 25 fps */
3114 ret = 2;
3115 break;
3116 case HDSPM_TCO1_LTC_Format_MSB:
3117 /* 25 fps */
3118 ret = 3;
3119 break;
3120 default:
3121 /* 30 fps */
3122 ret = 4;
3123 break;
3124 }
3125 }
3126
3127 return ret;
3128}
3129
3130static int snd_hdspm_get_tco_ltc_frames(struct snd_kcontrol *kcontrol,
3131 struct snd_ctl_elem_value *ucontrol)
3132{
3133 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3134
3135 ucontrol->value.enumerated.item[0] = hdspm_tco_ltc_frames(hdspm);
3136 return 0;
3137}
3138
bf0ff87b
AK
3139#define HDSPM_TOGGLE_SETTING(xname, xindex) \
3140{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3141 .name = xname, \
3142 .private_value = xindex, \
3143 .info = snd_hdspm_info_toggle_setting, \
3144 .get = snd_hdspm_get_toggle_setting, \
3145 .put = snd_hdspm_put_toggle_setting \
3146}
3147
3148static int hdspm_toggle_setting(struct hdspm *hdspm, u32 regmask)
3149{
ce13f3f3
AK
3150 u32 reg;
3151
3152 if (hdspm_is_raydat_or_aio(hdspm))
3153 reg = hdspm->settings_register;
3154 else
3155 reg = hdspm->control_register;
3156
3157 return (reg & regmask) ? 1 : 0;
bf0ff87b
AK
3158}
3159
3160static int hdspm_set_toggle_setting(struct hdspm *hdspm, u32 regmask, int out)
3161{
ce13f3f3
AK
3162 u32 *reg;
3163 u32 target_reg;
3164
3165 if (hdspm_is_raydat_or_aio(hdspm)) {
3166 reg = &(hdspm->settings_register);
3167 target_reg = HDSPM_WR_SETTINGS;
3168 } else {
3169 reg = &(hdspm->control_register);
3170 target_reg = HDSPM_controlRegister;
3171 }
3172
bf0ff87b 3173 if (out)
ce13f3f3 3174 *reg |= regmask;
bf0ff87b 3175 else
ce13f3f3
AK
3176 *reg &= ~regmask;
3177
3178 hdspm_write(hdspm, target_reg, *reg);
bf0ff87b
AK
3179
3180 return 0;
3181}
3182
3183#define snd_hdspm_info_toggle_setting snd_ctl_boolean_mono_info
3184
3185static int snd_hdspm_get_toggle_setting(struct snd_kcontrol *kcontrol,
3186 struct snd_ctl_elem_value *ucontrol)
3187{
3188 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3189 u32 regmask = kcontrol->private_value;
3190
3191 spin_lock_irq(&hdspm->lock);
3192 ucontrol->value.integer.value[0] = hdspm_toggle_setting(hdspm, regmask);
3193 spin_unlock_irq(&hdspm->lock);
3194 return 0;
3195}
3196
3197static int snd_hdspm_put_toggle_setting(struct snd_kcontrol *kcontrol,
3198 struct snd_ctl_elem_value *ucontrol)
3199{
3200 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3201 u32 regmask = kcontrol->private_value;
3202 int change;
3203 unsigned int val;
3204
3205 if (!snd_hdspm_use_is_exclusive(hdspm))
3206 return -EBUSY;
3207 val = ucontrol->value.integer.value[0] & 1;
3208 spin_lock_irq(&hdspm->lock);
3209 change = (int) val != hdspm_toggle_setting(hdspm, regmask);
3210 hdspm_set_toggle_setting(hdspm, regmask, val);
3211 spin_unlock_irq(&hdspm->lock);
3212 return change;
3213}
3214
3cee5a60 3215#define HDSPM_INPUT_SELECT(xname, xindex) \
f27a64f9
AK
3216{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3217 .name = xname, \
3218 .index = xindex, \
3219 .info = snd_hdspm_info_input_select, \
3220 .get = snd_hdspm_get_input_select, \
3221 .put = snd_hdspm_put_input_select \
3cee5a60
RB
3222}
3223
3224static int hdspm_input_select(struct hdspm * hdspm)
3225{
3226 return (hdspm->control_register & HDSPM_InputSelect0) ? 1 : 0;
3227}
3228
3229static int hdspm_set_input_select(struct hdspm * hdspm, int out)
3230{
3231 if (out)
3232 hdspm->control_register |= HDSPM_InputSelect0;
3233 else
3234 hdspm->control_register &= ~HDSPM_InputSelect0;
3235 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3236
3237 return 0;
3238}
3239
3240static int snd_hdspm_info_input_select(struct snd_kcontrol *kcontrol,
3241 struct snd_ctl_elem_info *uinfo)
3242{
38816545 3243 static const char *const texts[] = { "optical", "coaxial" };
e5b7b1fe 3244 ENUMERATED_CTL_INFO(uinfo, texts);
3cee5a60
RB
3245 return 0;
3246}
3247
3248static int snd_hdspm_get_input_select(struct snd_kcontrol *kcontrol,
3249 struct snd_ctl_elem_value *ucontrol)
3250{
3251 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3252
3253 spin_lock_irq(&hdspm->lock);
3254 ucontrol->value.enumerated.item[0] = hdspm_input_select(hdspm);
3255 spin_unlock_irq(&hdspm->lock);
3256 return 0;
3257}
3258
3259static int snd_hdspm_put_input_select(struct snd_kcontrol *kcontrol,
3260 struct snd_ctl_elem_value *ucontrol)
3261{
3262 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3263 int change;
3264 unsigned int val;
3265
3266 if (!snd_hdspm_use_is_exclusive(hdspm))
3267 return -EBUSY;
3268 val = ucontrol->value.integer.value[0] & 1;
3269 spin_lock_irq(&hdspm->lock);
3270 change = (int) val != hdspm_input_select(hdspm);
3271 hdspm_set_input_select(hdspm, val);
3272 spin_unlock_irq(&hdspm->lock);
3273 return change;
3274}
3275
0dca1793 3276
3cee5a60 3277#define HDSPM_DS_WIRE(xname, xindex) \
f27a64f9
AK
3278{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3279 .name = xname, \
3280 .index = xindex, \
3281 .info = snd_hdspm_info_ds_wire, \
3282 .get = snd_hdspm_get_ds_wire, \
3283 .put = snd_hdspm_put_ds_wire \
3cee5a60
RB
3284}
3285
3286static int hdspm_ds_wire(struct hdspm * hdspm)
763f356c 3287{
3cee5a60 3288 return (hdspm->control_register & HDSPM_DS_DoubleWire) ? 1 : 0;
763f356c
TI
3289}
3290
3cee5a60 3291static int hdspm_set_ds_wire(struct hdspm * hdspm, int ds)
763f356c 3292{
3cee5a60
RB
3293 if (ds)
3294 hdspm->control_register |= HDSPM_DS_DoubleWire;
763f356c 3295 else
3cee5a60 3296 hdspm->control_register &= ~HDSPM_DS_DoubleWire;
763f356c
TI
3297 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3298
3299 return 0;
3300}
3301
3cee5a60
RB
3302static int snd_hdspm_info_ds_wire(struct snd_kcontrol *kcontrol,
3303 struct snd_ctl_elem_info *uinfo)
763f356c 3304{
38816545 3305 static const char *const texts[] = { "Single", "Double" };
e5b7b1fe 3306 ENUMERATED_CTL_INFO(uinfo, texts);
763f356c
TI
3307 return 0;
3308}
3309
3cee5a60
RB
3310static int snd_hdspm_get_ds_wire(struct snd_kcontrol *kcontrol,
3311 struct snd_ctl_elem_value *ucontrol)
763f356c 3312{
98274f07 3313 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3314
3315 spin_lock_irq(&hdspm->lock);
3cee5a60 3316 ucontrol->value.enumerated.item[0] = hdspm_ds_wire(hdspm);
763f356c
TI
3317 spin_unlock_irq(&hdspm->lock);
3318 return 0;
3319}
3320
3cee5a60
RB
3321static int snd_hdspm_put_ds_wire(struct snd_kcontrol *kcontrol,
3322 struct snd_ctl_elem_value *ucontrol)
763f356c 3323{
98274f07 3324 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3325 int change;
3326 unsigned int val;
3327
3328 if (!snd_hdspm_use_is_exclusive(hdspm))
3329 return -EBUSY;
3330 val = ucontrol->value.integer.value[0] & 1;
3331 spin_lock_irq(&hdspm->lock);
3cee5a60
RB
3332 change = (int) val != hdspm_ds_wire(hdspm);
3333 hdspm_set_ds_wire(hdspm, val);
763f356c
TI
3334 spin_unlock_irq(&hdspm->lock);
3335 return change;
3336}
3337
0dca1793 3338
3cee5a60 3339#define HDSPM_QS_WIRE(xname, xindex) \
f27a64f9
AK
3340{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3341 .name = xname, \
3342 .index = xindex, \
3343 .info = snd_hdspm_info_qs_wire, \
3344 .get = snd_hdspm_get_qs_wire, \
3345 .put = snd_hdspm_put_qs_wire \
763f356c
TI
3346}
3347
3cee5a60 3348static int hdspm_qs_wire(struct hdspm * hdspm)
763f356c 3349{
3cee5a60
RB
3350 if (hdspm->control_register & HDSPM_QS_DoubleWire)
3351 return 1;
3352 if (hdspm->control_register & HDSPM_QS_QuadWire)
3353 return 2;
3354 return 0;
763f356c
TI
3355}
3356
3cee5a60 3357static int hdspm_set_qs_wire(struct hdspm * hdspm, int mode)
763f356c 3358{
3cee5a60
RB
3359 hdspm->control_register &= ~(HDSPM_QS_DoubleWire | HDSPM_QS_QuadWire);
3360 switch (mode) {
3361 case 0:
3362 break;
3363 case 1:
3364 hdspm->control_register |= HDSPM_QS_DoubleWire;
3365 break;
3366 case 2:
3367 hdspm->control_register |= HDSPM_QS_QuadWire;
3368 break;
3369 }
763f356c
TI
3370 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3371
3372 return 0;
3373}
3374
3cee5a60 3375static int snd_hdspm_info_qs_wire(struct snd_kcontrol *kcontrol,
98274f07 3376 struct snd_ctl_elem_info *uinfo)
763f356c 3377{
38816545 3378 static const char *const texts[] = { "Single", "Double", "Quad" };
e5b7b1fe 3379 ENUMERATED_CTL_INFO(uinfo, texts);
763f356c
TI
3380 return 0;
3381}
3382
3cee5a60 3383static int snd_hdspm_get_qs_wire(struct snd_kcontrol *kcontrol,
98274f07 3384 struct snd_ctl_elem_value *ucontrol)
763f356c 3385{
98274f07 3386 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3387
3388 spin_lock_irq(&hdspm->lock);
3cee5a60 3389 ucontrol->value.enumerated.item[0] = hdspm_qs_wire(hdspm);
763f356c
TI
3390 spin_unlock_irq(&hdspm->lock);
3391 return 0;
3392}
3393
3cee5a60 3394static int snd_hdspm_put_qs_wire(struct snd_kcontrol *kcontrol,
98274f07 3395 struct snd_ctl_elem_value *ucontrol)
763f356c 3396{
98274f07 3397 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 3398 int change;
3cee5a60 3399 int val;
763f356c
TI
3400
3401 if (!snd_hdspm_use_is_exclusive(hdspm))
3402 return -EBUSY;
3cee5a60
RB
3403 val = ucontrol->value.integer.value[0];
3404 if (val < 0)
3405 val = 0;
3406 if (val > 2)
3407 val = 2;
763f356c 3408 spin_lock_irq(&hdspm->lock);
ef5fa1a4 3409 change = val != hdspm_qs_wire(hdspm);
3cee5a60 3410 hdspm_set_qs_wire(hdspm, val);
763f356c
TI
3411 spin_unlock_irq(&hdspm->lock);
3412 return change;
3413}
3414
acf14767
AK
3415#define HDSPM_CONTROL_TRISTATE(xname, xindex) \
3416{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3417 .name = xname, \
3418 .private_value = xindex, \
3419 .info = snd_hdspm_info_tristate, \
3420 .get = snd_hdspm_get_tristate, \
3421 .put = snd_hdspm_put_tristate \
3422}
3423
3424static int hdspm_tristate(struct hdspm *hdspm, u32 regmask)
3425{
3426 u32 reg = hdspm->settings_register & (regmask * 3);
3427 return reg / regmask;
3428}
3429
3430static int hdspm_set_tristate(struct hdspm *hdspm, int mode, u32 regmask)
3431{
3432 hdspm->settings_register &= ~(regmask * 3);
3433 hdspm->settings_register |= (regmask * mode);
3434 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
3435
3436 return 0;
3437}
3438
3439static int snd_hdspm_info_tristate(struct snd_kcontrol *kcontrol,
3440 struct snd_ctl_elem_info *uinfo)
3441{
3442 u32 regmask = kcontrol->private_value;
3443
38816545
AK
3444 static const char *const texts_spdif[] = { "Optical", "Coaxial", "Internal" };
3445 static const char *const texts_levels[] = { "Hi Gain", "+4 dBu", "-10 dBV" };
acf14767
AK
3446
3447 switch (regmask) {
3448 case HDSPM_c0_Input0:
3449 ENUMERATED_CTL_INFO(uinfo, texts_spdif);
3450 break;
3451 default:
3452 ENUMERATED_CTL_INFO(uinfo, texts_levels);
3453 break;
3454 }
3455 return 0;
3456}
3457
3458static int snd_hdspm_get_tristate(struct snd_kcontrol *kcontrol,
3459 struct snd_ctl_elem_value *ucontrol)
3460{
3461 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3462 u32 regmask = kcontrol->private_value;
3463
3464 spin_lock_irq(&hdspm->lock);
3465 ucontrol->value.enumerated.item[0] = hdspm_tristate(hdspm, regmask);
3466 spin_unlock_irq(&hdspm->lock);
3467 return 0;
3468}
3469
3470static int snd_hdspm_put_tristate(struct snd_kcontrol *kcontrol,
3471 struct snd_ctl_elem_value *ucontrol)
3472{
3473 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3474 u32 regmask = kcontrol->private_value;
3475 int change;
3476 int val;
3477
3478 if (!snd_hdspm_use_is_exclusive(hdspm))
3479 return -EBUSY;
3480 val = ucontrol->value.integer.value[0];
3481 if (val < 0)
3482 val = 0;
3483 if (val > 2)
3484 val = 2;
3485
3486 spin_lock_irq(&hdspm->lock);
3487 change = val != hdspm_tristate(hdspm, regmask);
3488 hdspm_set_tristate(hdspm, val, regmask);
3489 spin_unlock_irq(&hdspm->lock);
3490 return change;
3491}
3492
700d1ef3
AK
3493#define HDSPM_MADI_SPEEDMODE(xname, xindex) \
3494{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3495 .name = xname, \
3496 .index = xindex, \
3497 .info = snd_hdspm_info_madi_speedmode, \
3498 .get = snd_hdspm_get_madi_speedmode, \
3499 .put = snd_hdspm_put_madi_speedmode \
3500}
3501
3502static int hdspm_madi_speedmode(struct hdspm *hdspm)
3503{
3504 if (hdspm->control_register & HDSPM_QuadSpeed)
3505 return 2;
3506 if (hdspm->control_register & HDSPM_DoubleSpeed)
3507 return 1;
3508 return 0;
3509}
3510
3511static int hdspm_set_madi_speedmode(struct hdspm *hdspm, int mode)
3512{
3513 hdspm->control_register &= ~(HDSPM_DoubleSpeed | HDSPM_QuadSpeed);
3514 switch (mode) {
3515 case 0:
3516 break;
3517 case 1:
3518 hdspm->control_register |= HDSPM_DoubleSpeed;
3519 break;
3520 case 2:
3521 hdspm->control_register |= HDSPM_QuadSpeed;
3522 break;
3523 }
3524 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3525
3526 return 0;
3527}
3528
3529static int snd_hdspm_info_madi_speedmode(struct snd_kcontrol *kcontrol,
3530 struct snd_ctl_elem_info *uinfo)
3531{
38816545 3532 static const char *const texts[] = { "Single", "Double", "Quad" };
e5b7b1fe 3533 ENUMERATED_CTL_INFO(uinfo, texts);
700d1ef3
AK
3534 return 0;
3535}
3536
3537static int snd_hdspm_get_madi_speedmode(struct snd_kcontrol *kcontrol,
3538 struct snd_ctl_elem_value *ucontrol)
3539{
3540 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3541
3542 spin_lock_irq(&hdspm->lock);
3543 ucontrol->value.enumerated.item[0] = hdspm_madi_speedmode(hdspm);
3544 spin_unlock_irq(&hdspm->lock);
3545 return 0;
3546}
3547
3548static int snd_hdspm_put_madi_speedmode(struct snd_kcontrol *kcontrol,
3549 struct snd_ctl_elem_value *ucontrol)
3550{
3551 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3552 int change;
3553 int val;
3554
3555 if (!snd_hdspm_use_is_exclusive(hdspm))
3556 return -EBUSY;
3557 val = ucontrol->value.integer.value[0];
3558 if (val < 0)
3559 val = 0;
3560 if (val > 2)
3561 val = 2;
3562 spin_lock_irq(&hdspm->lock);
3563 change = val != hdspm_madi_speedmode(hdspm);
3564 hdspm_set_madi_speedmode(hdspm, val);
3565 spin_unlock_irq(&hdspm->lock);
3566 return change;
3567}
763f356c
TI
3568
3569#define HDSPM_MIXER(xname, xindex) \
f27a64f9
AK
3570{ .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
3571 .name = xname, \
3572 .index = xindex, \
3573 .device = 0, \
3574 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3575 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3576 .info = snd_hdspm_info_mixer, \
3577 .get = snd_hdspm_get_mixer, \
3578 .put = snd_hdspm_put_mixer \
763f356c
TI
3579}
3580
98274f07
TI
3581static int snd_hdspm_info_mixer(struct snd_kcontrol *kcontrol,
3582 struct snd_ctl_elem_info *uinfo)
763f356c
TI
3583{
3584 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3585 uinfo->count = 3;
3586 uinfo->value.integer.min = 0;
3587 uinfo->value.integer.max = 65535;
3588 uinfo->value.integer.step = 1;
3589 return 0;
3590}
3591
98274f07
TI
3592static int snd_hdspm_get_mixer(struct snd_kcontrol *kcontrol,
3593 struct snd_ctl_elem_value *ucontrol)
763f356c 3594{
98274f07 3595 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3596 int source;
3597 int destination;
3598
3599 source = ucontrol->value.integer.value[0];
3600 if (source < 0)
3601 source = 0;
3602 else if (source >= 2 * HDSPM_MAX_CHANNELS)
3603 source = 2 * HDSPM_MAX_CHANNELS - 1;
3604
3605 destination = ucontrol->value.integer.value[1];
3606 if (destination < 0)
3607 destination = 0;
3608 else if (destination >= HDSPM_MAX_CHANNELS)
3609 destination = HDSPM_MAX_CHANNELS - 1;
3610
3611 spin_lock_irq(&hdspm->lock);
3612 if (source >= HDSPM_MAX_CHANNELS)
3613 ucontrol->value.integer.value[2] =
3614 hdspm_read_pb_gain(hdspm, destination,
3615 source - HDSPM_MAX_CHANNELS);
3616 else
3617 ucontrol->value.integer.value[2] =
3618 hdspm_read_in_gain(hdspm, destination, source);
3619
3620 spin_unlock_irq(&hdspm->lock);
3621
3622 return 0;
3623}
3624
98274f07
TI
3625static int snd_hdspm_put_mixer(struct snd_kcontrol *kcontrol,
3626 struct snd_ctl_elem_value *ucontrol)
763f356c 3627{
98274f07 3628 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3629 int change;
3630 int source;
3631 int destination;
3632 int gain;
3633
3634 if (!snd_hdspm_use_is_exclusive(hdspm))
3635 return -EBUSY;
3636
3637 source = ucontrol->value.integer.value[0];
3638 destination = ucontrol->value.integer.value[1];
3639
3640 if (source < 0 || source >= 2 * HDSPM_MAX_CHANNELS)
3641 return -1;
3642 if (destination < 0 || destination >= HDSPM_MAX_CHANNELS)
3643 return -1;
3644
3645 gain = ucontrol->value.integer.value[2];
3646
3647 spin_lock_irq(&hdspm->lock);
3648
3649 if (source >= HDSPM_MAX_CHANNELS)
3650 change = gain != hdspm_read_pb_gain(hdspm, destination,
3651 source -
3652 HDSPM_MAX_CHANNELS);
3653 else
ef5fa1a4
TI
3654 change = gain != hdspm_read_in_gain(hdspm, destination,
3655 source);
763f356c
TI
3656
3657 if (change) {
3658 if (source >= HDSPM_MAX_CHANNELS)
3659 hdspm_write_pb_gain(hdspm, destination,
3660 source - HDSPM_MAX_CHANNELS,
3661 gain);
3662 else
3663 hdspm_write_in_gain(hdspm, destination, source,
3664 gain);
3665 }
3666 spin_unlock_irq(&hdspm->lock);
3667
3668 return change;
3669}
3670
3671/* The simple mixer control(s) provide gain control for the
3672 basic 1:1 mappings of playback streams to output
0dca1793 3673 streams.
763f356c
TI
3674*/
3675
3676#define HDSPM_PLAYBACK_MIXER \
f27a64f9
AK
3677{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3678 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
3679 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3680 .info = snd_hdspm_info_playback_mixer, \
3681 .get = snd_hdspm_get_playback_mixer, \
3682 .put = snd_hdspm_put_playback_mixer \
763f356c
TI
3683}
3684
98274f07
TI
3685static int snd_hdspm_info_playback_mixer(struct snd_kcontrol *kcontrol,
3686 struct snd_ctl_elem_info *uinfo)
763f356c
TI
3687{
3688 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3689 uinfo->count = 1;
3690 uinfo->value.integer.min = 0;
0dca1793 3691 uinfo->value.integer.max = 64;
763f356c
TI
3692 uinfo->value.integer.step = 1;
3693 return 0;
3694}
3695
98274f07
TI
3696static int snd_hdspm_get_playback_mixer(struct snd_kcontrol *kcontrol,
3697 struct snd_ctl_elem_value *ucontrol)
763f356c 3698{
98274f07 3699 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 3700 int channel;
763f356c
TI
3701
3702 channel = ucontrol->id.index - 1;
3703
da3cec35
TI
3704 if (snd_BUG_ON(channel < 0 || channel >= HDSPM_MAX_CHANNELS))
3705 return -EINVAL;
763f356c 3706
763f356c
TI
3707 spin_lock_irq(&hdspm->lock);
3708 ucontrol->value.integer.value[0] =
0dca1793 3709 (hdspm_read_pb_gain(hdspm, channel, channel)*64)/UNITY_GAIN;
763f356c
TI
3710 spin_unlock_irq(&hdspm->lock);
3711
763f356c
TI
3712 return 0;
3713}
3714
98274f07
TI
3715static int snd_hdspm_put_playback_mixer(struct snd_kcontrol *kcontrol,
3716 struct snd_ctl_elem_value *ucontrol)
763f356c 3717{
98274f07 3718 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c
TI
3719 int change;
3720 int channel;
763f356c
TI
3721 int gain;
3722
3723 if (!snd_hdspm_use_is_exclusive(hdspm))
3724 return -EBUSY;
3725
3726 channel = ucontrol->id.index - 1;
3727
da3cec35
TI
3728 if (snd_BUG_ON(channel < 0 || channel >= HDSPM_MAX_CHANNELS))
3729 return -EINVAL;
763f356c 3730
0dca1793 3731 gain = ucontrol->value.integer.value[0]*UNITY_GAIN/64;
763f356c
TI
3732
3733 spin_lock_irq(&hdspm->lock);
3734 change =
0dca1793
AK
3735 gain != hdspm_read_pb_gain(hdspm, channel,
3736 channel);
763f356c 3737 if (change)
0dca1793 3738 hdspm_write_pb_gain(hdspm, channel, channel,
763f356c
TI
3739 gain);
3740 spin_unlock_irq(&hdspm->lock);
3741 return change;
3742}
3743
0dca1793
AK
3744#define HDSPM_SYNC_CHECK(xname, xindex) \
3745{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3746 .name = xname, \
3747 .private_value = xindex, \
3748 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3749 .info = snd_hdspm_info_sync_check, \
3750 .get = snd_hdspm_get_sync_check \
763f356c
TI
3751}
3752
34542213
AK
3753#define HDSPM_TCO_LOCK_CHECK(xname, xindex) \
3754{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3755 .name = xname, \
3756 .private_value = xindex, \
3757 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3758 .info = snd_hdspm_tco_info_lock_check, \
3759 .get = snd_hdspm_get_sync_check \
3760}
3761
3762
0dca1793 3763
98274f07
TI
3764static int snd_hdspm_info_sync_check(struct snd_kcontrol *kcontrol,
3765 struct snd_ctl_elem_info *uinfo)
763f356c 3766{
38816545 3767 static const char *const texts[] = { "No Lock", "Lock", "Sync", "N/A" };
e5b7b1fe 3768 ENUMERATED_CTL_INFO(uinfo, texts);
763f356c
TI
3769 return 0;
3770}
3771
34542213
AK
3772static int snd_hdspm_tco_info_lock_check(struct snd_kcontrol *kcontrol,
3773 struct snd_ctl_elem_info *uinfo)
3774{
38816545 3775 static const char *const texts[] = { "No Lock", "Lock" };
34542213
AK
3776 ENUMERATED_CTL_INFO(uinfo, texts);
3777 return 0;
3778}
3779
0dca1793 3780static int hdspm_wc_sync_check(struct hdspm *hdspm)
763f356c 3781{
0dca1793
AK
3782 int status, status2;
3783
3784 switch (hdspm->io_type) {
3785 case AES32:
3786 status = hdspm_read(hdspm, HDSPM_statusRegister);
56bde0f3
AS
3787 if (status & HDSPM_AES32_wcLock) {
3788 if (status & HDSPM_AES32_wcSync)
3789 return 2;
3790 else
3791 return 1;
3792 }
3cee5a60 3793 return 0;
0dca1793
AK
3794 break;
3795
3796 case MADI:
3797 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
3cee5a60
RB
3798 if (status2 & HDSPM_wcLock) {
3799 if (status2 & HDSPM_wcSync)
3800 return 2;
3801 else
3802 return 1;
3803 }
3804 return 0;
0dca1793 3805 break;
763f356c 3806
0dca1793
AK
3807 case RayDAT:
3808 case AIO:
3809 status = hdspm_read(hdspm, HDSPM_statusRegister);
763f356c 3810
0dca1793
AK
3811 if (status & 0x2000000)
3812 return 2;
3813 else if (status & 0x1000000)
3814 return 1;
3815 return 0;
763f356c 3816
0dca1793 3817 break;
763f356c 3818
0dca1793
AK
3819 case MADIface:
3820 break;
3821 }
3822
3823
3824 return 3;
763f356c
TI
3825}
3826
0dca1793
AK
3827
3828static int hdspm_madi_sync_check(struct hdspm *hdspm)
763f356c
TI
3829{
3830 int status = hdspm_read(hdspm, HDSPM_statusRegister);
3831 if (status & HDSPM_madiLock) {
3832 if (status & HDSPM_madiSync)
3833 return 2;
3834 else
3835 return 1;
3836 }
3837 return 0;
3838}
3839
763f356c 3840
0dca1793
AK
3841static int hdspm_s1_sync_check(struct hdspm *hdspm, int idx)
3842{
3843 int status, lock, sync;
763f356c 3844
0dca1793 3845 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
763f356c 3846
0dca1793
AK
3847 lock = (status & (0x1<<idx)) ? 1 : 0;
3848 sync = (status & (0x100<<idx)) ? 1 : 0;
3cee5a60 3849
0dca1793 3850 if (lock && sync)
3cee5a60 3851 return 2;
0dca1793
AK
3852 else if (lock)
3853 return 1;
3cee5a60
RB
3854 return 0;
3855}
3856
0dca1793
AK
3857
3858static int hdspm_sync_in_sync_check(struct hdspm *hdspm)
3859{
3860 int status, lock = 0, sync = 0;
3861
3862 switch (hdspm->io_type) {
3863 case RayDAT:
3864 case AIO:
3865 status = hdspm_read(hdspm, HDSPM_RD_STATUS_3);
3866 lock = (status & 0x400) ? 1 : 0;
3867 sync = (status & 0x800) ? 1 : 0;
3868 break;
3869
3870 case MADI:
2e0452f5
AK
3871 status = hdspm_read(hdspm, HDSPM_statusRegister);
3872 lock = (status & HDSPM_syncInLock) ? 1 : 0;
3873 sync = (status & HDSPM_syncInSync) ? 1 : 0;
3874 break;
3875
0dca1793
AK
3876 case AES32:
3877 status = hdspm_read(hdspm, HDSPM_statusRegister2);
9a215f47
AK
3878 lock = (status & 0x100000) ? 1 : 0;
3879 sync = (status & 0x200000) ? 1 : 0;
0dca1793
AK
3880 break;
3881
3882 case MADIface:
3883 break;
3884 }
3885
3886 if (lock && sync)
3887 return 2;
3888 else if (lock)
3889 return 1;
3890
3891 return 0;
3892}
3893
3894static int hdspm_aes_sync_check(struct hdspm *hdspm, int idx)
3895{
3896 int status2, lock, sync;
3897 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
3898
3899 lock = (status2 & (0x0080 >> idx)) ? 1 : 0;
3900 sync = (status2 & (0x8000 >> idx)) ? 1 : 0;
3901
3902 if (sync)
3903 return 2;
3904 else if (lock)
3905 return 1;
3906 return 0;
3907}
3908
34542213
AK
3909static int hdspm_tco_input_check(struct hdspm *hdspm, u32 mask)
3910{
3911 u32 status;
3912 status = hdspm_read(hdspm, HDSPM_RD_TCO + 4);
3913
3914 return (status & mask) ? 1 : 0;
3915}
3916
0dca1793
AK
3917
3918static int hdspm_tco_sync_check(struct hdspm *hdspm)
3919{
3920 int status;
3921
3922 if (hdspm->tco) {
3923 switch (hdspm->io_type) {
3924 case MADI:
b0bf5504
AK
3925 status = hdspm_read(hdspm, HDSPM_statusRegister);
3926 if (status & HDSPM_tcoLockMadi) {
3927 if (status & HDSPM_tcoSync)
3928 return 2;
3929 else
3930 return 1;
3931 }
3932 return 0;
3933 break;
0dca1793
AK
3934 case AES32:
3935 status = hdspm_read(hdspm, HDSPM_statusRegister);
b0bf5504 3936 if (status & HDSPM_tcoLockAes) {
0dca1793
AK
3937 if (status & HDSPM_tcoSync)
3938 return 2;
3939 else
3940 return 1;
3941 }
3942 return 0;
3943
3944 break;
3945
3946 case RayDAT:
3947 case AIO:
3948 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
3949
3950 if (status & 0x8000000)
3951 return 2; /* Sync */
3952 if (status & 0x4000000)
3953 return 1; /* Lock */
3954 return 0; /* No signal */
3955 break;
3956
3957 default:
3958 break;
3959 }
3960 }
3961
3962 return 3; /* N/A */
3963}
3964
3965
3966static int snd_hdspm_get_sync_check(struct snd_kcontrol *kcontrol,
3967 struct snd_ctl_elem_value *ucontrol)
3968{
3969 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3970 int val = -1;
3971
3972 switch (hdspm->io_type) {
3973 case RayDAT:
3974 switch (kcontrol->private_value) {
3975 case 0: /* WC */
3976 val = hdspm_wc_sync_check(hdspm); break;
3977 case 7: /* TCO */
3978 val = hdspm_tco_sync_check(hdspm); break;
3979 case 8: /* SYNC IN */
3980 val = hdspm_sync_in_sync_check(hdspm); break;
3981 default:
d1a3c98d
AK
3982 val = hdspm_s1_sync_check(hdspm,
3983 kcontrol->private_value-1);
0dca1793 3984 }
fba30fd3 3985 break;
0dca1793
AK
3986
3987 case AIO:
3988 switch (kcontrol->private_value) {
3989 case 0: /* WC */
3990 val = hdspm_wc_sync_check(hdspm); break;
3991 case 4: /* TCO */
3992 val = hdspm_tco_sync_check(hdspm); break;
3993 case 5: /* SYNC IN */
3994 val = hdspm_sync_in_sync_check(hdspm); break;
3995 default:
1cb7dbf4
AK
3996 val = hdspm_s1_sync_check(hdspm,
3997 kcontrol->private_value-1);
0dca1793 3998 }
fba30fd3 3999 break;
0dca1793
AK
4000
4001 case MADI:
4002 switch (kcontrol->private_value) {
4003 case 0: /* WC */
4004 val = hdspm_wc_sync_check(hdspm); break;
4005 case 1: /* MADI */
4006 val = hdspm_madi_sync_check(hdspm); break;
4007 case 2: /* TCO */
4008 val = hdspm_tco_sync_check(hdspm); break;
4009 case 3: /* SYNC_IN */
4010 val = hdspm_sync_in_sync_check(hdspm); break;
4011 }
fba30fd3 4012 break;
0dca1793
AK
4013
4014 case MADIface:
4015 val = hdspm_madi_sync_check(hdspm); /* MADI */
4016 break;
4017
4018 case AES32:
4019 switch (kcontrol->private_value) {
4020 case 0: /* WC */
4021 val = hdspm_wc_sync_check(hdspm); break;
4022 case 9: /* TCO */
4023 val = hdspm_tco_sync_check(hdspm); break;
4024 case 10 /* SYNC IN */:
4025 val = hdspm_sync_in_sync_check(hdspm); break;
7c4a95b5 4026 default: /* AES1 to AES8 */
0dca1793 4027 val = hdspm_aes_sync_check(hdspm,
7c4a95b5 4028 kcontrol->private_value-1);
0dca1793 4029 }
fba30fd3 4030 break;
0dca1793
AK
4031
4032 }
4033
34542213
AK
4034 if (hdspm->tco) {
4035 switch (kcontrol->private_value) {
4036 case 11:
4037 /* Check TCO for lock state of its current input */
4038 val = hdspm_tco_input_check(hdspm, HDSPM_TCO1_TCO_lock);
4039 break;
4040 case 12:
4041 /* Check TCO for valid time code on LTC input. */
4042 val = hdspm_tco_input_check(hdspm,
4043 HDSPM_TCO1_LTC_Input_valid);
4044 break;
4045 default:
4046 break;
4047 }
4048 }
4049
0dca1793
AK
4050 if (-1 == val)
4051 val = 3;
4052
4053 ucontrol->value.enumerated.item[0] = val;
4054 return 0;
4055}
4056
4057
4058
4059/**
4060 * TCO controls
4061 **/
4062static void hdspm_tco_write(struct hdspm *hdspm)
4063{
4064 unsigned int tc[4] = { 0, 0, 0, 0};
4065
4066 switch (hdspm->tco->input) {
4067 case 0:
4068 tc[2] |= HDSPM_TCO2_set_input_MSB;
4069 break;
4070 case 1:
4071 tc[2] |= HDSPM_TCO2_set_input_LSB;
4072 break;
4073 default:
4074 break;
4075 }
4076
4077 switch (hdspm->tco->framerate) {
4078 case 1:
4079 tc[1] |= HDSPM_TCO1_LTC_Format_LSB;
4080 break;
4081 case 2:
4082 tc[1] |= HDSPM_TCO1_LTC_Format_MSB;
4083 break;
4084 case 3:
4085 tc[1] |= HDSPM_TCO1_LTC_Format_MSB +
4086 HDSPM_TCO1_set_drop_frame_flag;
4087 break;
4088 case 4:
4089 tc[1] |= HDSPM_TCO1_LTC_Format_LSB +
4090 HDSPM_TCO1_LTC_Format_MSB;
4091 break;
4092 case 5:
4093 tc[1] |= HDSPM_TCO1_LTC_Format_LSB +
4094 HDSPM_TCO1_LTC_Format_MSB +
4095 HDSPM_TCO1_set_drop_frame_flag;
4096 break;
4097 default:
4098 break;
4099 }
4100
4101 switch (hdspm->tco->wordclock) {
4102 case 1:
4103 tc[2] |= HDSPM_TCO2_WCK_IO_ratio_LSB;
4104 break;
4105 case 2:
4106 tc[2] |= HDSPM_TCO2_WCK_IO_ratio_MSB;
4107 break;
4108 default:
4109 break;
4110 }
4111
4112 switch (hdspm->tco->samplerate) {
4113 case 1:
4114 tc[2] |= HDSPM_TCO2_set_freq;
4115 break;
4116 case 2:
4117 tc[2] |= HDSPM_TCO2_set_freq_from_app;
4118 break;
4119 default:
4120 break;
4121 }
4122
4123 switch (hdspm->tco->pull) {
4124 case 1:
4125 tc[2] |= HDSPM_TCO2_set_pull_up;
4126 break;
4127 case 2:
4128 tc[2] |= HDSPM_TCO2_set_pull_down;
4129 break;
4130 case 3:
4131 tc[2] |= HDSPM_TCO2_set_pull_up + HDSPM_TCO2_set_01_4;
4132 break;
4133 case 4:
4134 tc[2] |= HDSPM_TCO2_set_pull_down + HDSPM_TCO2_set_01_4;
4135 break;
4136 default:
4137 break;
4138 }
4139
4140 if (1 == hdspm->tco->term) {
4141 tc[2] |= HDSPM_TCO2_set_term_75R;
4142 }
4143
4144 hdspm_write(hdspm, HDSPM_WR_TCO, tc[0]);
4145 hdspm_write(hdspm, HDSPM_WR_TCO+4, tc[1]);
4146 hdspm_write(hdspm, HDSPM_WR_TCO+8, tc[2]);
4147 hdspm_write(hdspm, HDSPM_WR_TCO+12, tc[3]);
4148}
4149
4150
4151#define HDSPM_TCO_SAMPLE_RATE(xname, xindex) \
4152{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4153 .name = xname, \
4154 .index = xindex, \
4155 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4156 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4157 .info = snd_hdspm_info_tco_sample_rate, \
4158 .get = snd_hdspm_get_tco_sample_rate, \
4159 .put = snd_hdspm_put_tco_sample_rate \
4160}
4161
4162static int snd_hdspm_info_tco_sample_rate(struct snd_kcontrol *kcontrol,
4163 struct snd_ctl_elem_info *uinfo)
4164{
38816545 4165 static const char *const texts[] = { "44.1 kHz", "48 kHz" };
e5b7b1fe 4166 ENUMERATED_CTL_INFO(uinfo, texts);
0dca1793
AK
4167 return 0;
4168}
4169
4170static int snd_hdspm_get_tco_sample_rate(struct snd_kcontrol *kcontrol,
4171 struct snd_ctl_elem_value *ucontrol)
4172{
4173 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4174
4175 ucontrol->value.enumerated.item[0] = hdspm->tco->samplerate;
4176
4177 return 0;
4178}
4179
4180static int snd_hdspm_put_tco_sample_rate(struct snd_kcontrol *kcontrol,
4181 struct snd_ctl_elem_value *ucontrol)
4182{
4183 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4184
4185 if (hdspm->tco->samplerate != ucontrol->value.enumerated.item[0]) {
4186 hdspm->tco->samplerate = ucontrol->value.enumerated.item[0];
4187
4188 hdspm_tco_write(hdspm);
4189
4190 return 1;
4191 }
4192
4193 return 0;
4194}
4195
4196
4197#define HDSPM_TCO_PULL(xname, xindex) \
4198{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4199 .name = xname, \
4200 .index = xindex, \
4201 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4202 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4203 .info = snd_hdspm_info_tco_pull, \
4204 .get = snd_hdspm_get_tco_pull, \
4205 .put = snd_hdspm_put_tco_pull \
4206}
4207
4208static int snd_hdspm_info_tco_pull(struct snd_kcontrol *kcontrol,
4209 struct snd_ctl_elem_info *uinfo)
4210{
38816545
AK
4211 static const char *const texts[] = { "0", "+ 0.1 %", "- 0.1 %",
4212 "+ 4 %", "- 4 %" };
e5b7b1fe 4213 ENUMERATED_CTL_INFO(uinfo, texts);
0dca1793
AK
4214 return 0;
4215}
4216
4217static int snd_hdspm_get_tco_pull(struct snd_kcontrol *kcontrol,
4218 struct snd_ctl_elem_value *ucontrol)
4219{
4220 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4221
4222 ucontrol->value.enumerated.item[0] = hdspm->tco->pull;
4223
4224 return 0;
4225}
4226
4227static int snd_hdspm_put_tco_pull(struct snd_kcontrol *kcontrol,
4228 struct snd_ctl_elem_value *ucontrol)
4229{
4230 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4231
4232 if (hdspm->tco->pull != ucontrol->value.enumerated.item[0]) {
4233 hdspm->tco->pull = ucontrol->value.enumerated.item[0];
4234
4235 hdspm_tco_write(hdspm);
4236
4237 return 1;
4238 }
4239
4240 return 0;
4241}
4242
4243#define HDSPM_TCO_WCK_CONVERSION(xname, xindex) \
4244{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4245 .name = xname, \
4246 .index = xindex, \
4247 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4248 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4249 .info = snd_hdspm_info_tco_wck_conversion, \
4250 .get = snd_hdspm_get_tco_wck_conversion, \
4251 .put = snd_hdspm_put_tco_wck_conversion \
4252}
4253
4254static int snd_hdspm_info_tco_wck_conversion(struct snd_kcontrol *kcontrol,
4255 struct snd_ctl_elem_info *uinfo)
4256{
38816545 4257 static const char *const texts[] = { "1:1", "44.1 -> 48", "48 -> 44.1" };
e5b7b1fe 4258 ENUMERATED_CTL_INFO(uinfo, texts);
0dca1793
AK
4259 return 0;
4260}
4261
4262static int snd_hdspm_get_tco_wck_conversion(struct snd_kcontrol *kcontrol,
4263 struct snd_ctl_elem_value *ucontrol)
4264{
4265 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4266
4267 ucontrol->value.enumerated.item[0] = hdspm->tco->wordclock;
4268
4269 return 0;
4270}
4271
4272static int snd_hdspm_put_tco_wck_conversion(struct snd_kcontrol *kcontrol,
4273 struct snd_ctl_elem_value *ucontrol)
4274{
4275 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4276
4277 if (hdspm->tco->wordclock != ucontrol->value.enumerated.item[0]) {
4278 hdspm->tco->wordclock = ucontrol->value.enumerated.item[0];
4279
4280 hdspm_tco_write(hdspm);
4281
4282 return 1;
4283 }
4284
4285 return 0;
4286}
4287
4288
4289#define HDSPM_TCO_FRAME_RATE(xname, xindex) \
4290{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4291 .name = xname, \
4292 .index = xindex, \
4293 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4294 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4295 .info = snd_hdspm_info_tco_frame_rate, \
4296 .get = snd_hdspm_get_tco_frame_rate, \
4297 .put = snd_hdspm_put_tco_frame_rate \
4298}
4299
4300static int snd_hdspm_info_tco_frame_rate(struct snd_kcontrol *kcontrol,
4301 struct snd_ctl_elem_info *uinfo)
4302{
38816545 4303 static const char *const texts[] = { "24 fps", "25 fps", "29.97fps",
0dca1793 4304 "29.97 dfps", "30 fps", "30 dfps" };
e5b7b1fe 4305 ENUMERATED_CTL_INFO(uinfo, texts);
0dca1793
AK
4306 return 0;
4307}
4308
4309static int snd_hdspm_get_tco_frame_rate(struct snd_kcontrol *kcontrol,
3cee5a60
RB
4310 struct snd_ctl_elem_value *ucontrol)
4311{
3cee5a60
RB
4312 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4313
0dca1793 4314 ucontrol->value.enumerated.item[0] = hdspm->tco->framerate;
3cee5a60 4315
3cee5a60
RB
4316 return 0;
4317}
763f356c 4318
0dca1793
AK
4319static int snd_hdspm_put_tco_frame_rate(struct snd_kcontrol *kcontrol,
4320 struct snd_ctl_elem_value *ucontrol)
4321{
4322 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
763f356c 4323
0dca1793
AK
4324 if (hdspm->tco->framerate != ucontrol->value.enumerated.item[0]) {
4325 hdspm->tco->framerate = ucontrol->value.enumerated.item[0];
763f356c 4326
0dca1793
AK
4327 hdspm_tco_write(hdspm);
4328
4329 return 1;
4330 }
4331
4332 return 0;
4333}
763f356c 4334
0dca1793
AK
4335
4336#define HDSPM_TCO_SYNC_SOURCE(xname, xindex) \
4337{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4338 .name = xname, \
4339 .index = xindex, \
4340 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4341 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4342 .info = snd_hdspm_info_tco_sync_source, \
4343 .get = snd_hdspm_get_tco_sync_source, \
4344 .put = snd_hdspm_put_tco_sync_source \
4345}
4346
4347static int snd_hdspm_info_tco_sync_source(struct snd_kcontrol *kcontrol,
4348 struct snd_ctl_elem_info *uinfo)
4349{
38816545 4350 static const char *const texts[] = { "LTC", "Video", "WCK" };
e5b7b1fe 4351 ENUMERATED_CTL_INFO(uinfo, texts);
0dca1793
AK
4352 return 0;
4353}
4354
4355static int snd_hdspm_get_tco_sync_source(struct snd_kcontrol *kcontrol,
4356 struct snd_ctl_elem_value *ucontrol)
4357{
4358 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4359
4360 ucontrol->value.enumerated.item[0] = hdspm->tco->input;
4361
4362 return 0;
4363}
4364
4365static int snd_hdspm_put_tco_sync_source(struct snd_kcontrol *kcontrol,
4366 struct snd_ctl_elem_value *ucontrol)
4367{
4368 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4369
4370 if (hdspm->tco->input != ucontrol->value.enumerated.item[0]) {
4371 hdspm->tco->input = ucontrol->value.enumerated.item[0];
4372
4373 hdspm_tco_write(hdspm);
4374
4375 return 1;
4376 }
4377
4378 return 0;
4379}
4380
4381
4382#define HDSPM_TCO_WORD_TERM(xname, xindex) \
4383{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4384 .name = xname, \
4385 .index = xindex, \
4386 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4387 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4388 .info = snd_hdspm_info_tco_word_term, \
4389 .get = snd_hdspm_get_tco_word_term, \
4390 .put = snd_hdspm_put_tco_word_term \
4391}
4392
4393static int snd_hdspm_info_tco_word_term(struct snd_kcontrol *kcontrol,
4394 struct snd_ctl_elem_info *uinfo)
4395{
4396 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
4397 uinfo->count = 1;
4398 uinfo->value.integer.min = 0;
4399 uinfo->value.integer.max = 1;
4400
4401 return 0;
4402}
4403
4404
4405static int snd_hdspm_get_tco_word_term(struct snd_kcontrol *kcontrol,
4406 struct snd_ctl_elem_value *ucontrol)
4407{
4408 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4409
4410 ucontrol->value.enumerated.item[0] = hdspm->tco->term;
4411
4412 return 0;
4413}
4414
4415
4416static int snd_hdspm_put_tco_word_term(struct snd_kcontrol *kcontrol,
4417 struct snd_ctl_elem_value *ucontrol)
4418{
4419 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4420
4421 if (hdspm->tco->term != ucontrol->value.enumerated.item[0]) {
4422 hdspm->tco->term = ucontrol->value.enumerated.item[0];
4423
4424 hdspm_tco_write(hdspm);
4425
4426 return 1;
4427 }
4428
4429 return 0;
4430}
4431
4432
4433
4434
4435static struct snd_kcontrol_new snd_hdspm_controls_madi[] = {
4436 HDSPM_MIXER("Mixer", 0),
4437 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
763f356c
TI
4438 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4439 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4440 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4441 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
b8812c55 4442 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
0dca1793
AK
4443 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4444 HDSPM_SYNC_CHECK("MADI SyncCheck", 1),
930f4ff0 4445 HDSPM_SYNC_CHECK("TCO SyncCheck", 2),
0dca1793 4446 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 3),
c9e1668c
AK
4447 HDSPM_TOGGLE_SETTING("Line Out", HDSPM_LineOut),
4448 HDSPM_TOGGLE_SETTING("TX 64 channels mode", HDSPM_TX_64ch),
696be0fb 4449 HDSPM_TOGGLE_SETTING("Disable 96K frames", HDSPM_SMUX),
c9e1668c
AK
4450 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms),
4451 HDSPM_TOGGLE_SETTING("Safe Mode", HDSPM_AutoInp),
700d1ef3
AK
4452 HDSPM_INPUT_SELECT("Input Select", 0),
4453 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
0dca1793
AK
4454};
4455
4456
4457static struct snd_kcontrol_new snd_hdspm_controls_madiface[] = {
4458 HDSPM_MIXER("Mixer", 0),
4459 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4460 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4461 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4462 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4463 HDSPM_SYNC_CHECK("MADI SyncCheck", 0),
c9e1668c
AK
4464 HDSPM_TOGGLE_SETTING("TX 64 channels mode", HDSPM_TX_64ch),
4465 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms),
4466 HDSPM_TOGGLE_SETTING("Safe Mode", HDSPM_AutoInp),
700d1ef3 4467 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
763f356c
TI
4468};
4469
0dca1793
AK
4470static struct snd_kcontrol_new snd_hdspm_controls_aio[] = {
4471 HDSPM_MIXER("Mixer", 0),
4472 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4473 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4474 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
0dca1793
AK
4475 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4476 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4477 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4478 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4479 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4480 HDSPM_SYNC_CHECK("ADAT SyncCheck", 3),
4481 HDSPM_SYNC_CHECK("TCO SyncCheck", 4),
4482 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 5),
4483 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4484 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4485 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4486 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT Frequency", 3),
4487 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 4),
fb0f121e 4488 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 5),
42f4c12d 4489 HDSPM_CONTROL_TRISTATE("S/PDIF Input", HDSPM_c0_Input0),
fb0f121e
AK
4490 HDSPM_TOGGLE_SETTING("S/PDIF Out Optical", HDSPM_c0_Spdif_Opt),
4491 HDSPM_TOGGLE_SETTING("S/PDIF Out Professional", HDSPM_c0_Pro),
4492 HDSPM_TOGGLE_SETTING("ADAT internal (AEB/TEB)", HDSPM_c0_AEB1),
4493 HDSPM_TOGGLE_SETTING("XLR Breakout Cable", HDSPM_c0_Sym6db),
42f4c12d
AK
4494 HDSPM_TOGGLE_SETTING("Single Speed WordClock Out", HDSPM_c0_Wck48),
4495 HDSPM_CONTROL_TRISTATE("Input Level", HDSPM_c0_AD_GAIN0),
4496 HDSPM_CONTROL_TRISTATE("Output Level", HDSPM_c0_DA_GAIN0),
4497 HDSPM_CONTROL_TRISTATE("Phones Level", HDSPM_c0_PH_GAIN0)
0dca1793
AK
4498
4499 /*
4500 HDSPM_INPUT_SELECT("Input Select", 0),
4501 HDSPM_SPDIF_OPTICAL("SPDIF Out Optical", 0),
4502 HDSPM_PROFESSIONAL("SPDIF Out Professional", 0);
4503 HDSPM_SPDIF_IN("SPDIF In", 0);
4504 HDSPM_BREAKOUT_CABLE("Breakout Cable", 0);
4505 HDSPM_INPUT_LEVEL("Input Level", 0);
4506 HDSPM_OUTPUT_LEVEL("Output Level", 0);
4507 HDSPM_PHONES("Phones", 0);
4508 */
4509};
3cee5a60 4510
0dca1793
AK
4511static struct snd_kcontrol_new snd_hdspm_controls_raydat[] = {
4512 HDSPM_MIXER("Mixer", 0),
4513 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4514 HDSPM_SYSTEM_CLOCK_MODE("Clock Mode", 0),
4515 HDSPM_PREF_SYNC_REF("Pref Sync Ref", 0),
4516 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4517 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4518 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4519 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4520 HDSPM_SYNC_CHECK("ADAT1 SyncCheck", 3),
4521 HDSPM_SYNC_CHECK("ADAT2 SyncCheck", 4),
4522 HDSPM_SYNC_CHECK("ADAT3 SyncCheck", 5),
4523 HDSPM_SYNC_CHECK("ADAT4 SyncCheck", 6),
4524 HDSPM_SYNC_CHECK("TCO SyncCheck", 7),
4525 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 8),
4526 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4527 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4528 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4529 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT1 Frequency", 3),
4530 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT2 Frequency", 4),
4531 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT3 Frequency", 5),
4532 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT4 Frequency", 6),
4533 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 7),
11a5cd3c
AK
4534 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 8),
4535 HDSPM_TOGGLE_SETTING("S/PDIF Out Professional", HDSPM_c0_Pro),
4536 HDSPM_TOGGLE_SETTING("Single Speed WordClock Out", HDSPM_c0_Wck48)
0dca1793
AK
4537};
4538
4539static struct snd_kcontrol_new snd_hdspm_controls_aes32[] = {
3cee5a60 4540 HDSPM_MIXER("Mixer", 0),
0dca1793 4541 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
3cee5a60
RB
4542 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4543 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4544 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4545 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2d63ec38 4546 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 11),
0dca1793
AK
4547 HDSPM_SYNC_CHECK("WC Sync Check", 0),
4548 HDSPM_SYNC_CHECK("AES1 Sync Check", 1),
4549 HDSPM_SYNC_CHECK("AES2 Sync Check", 2),
4550 HDSPM_SYNC_CHECK("AES3 Sync Check", 3),
4551 HDSPM_SYNC_CHECK("AES4 Sync Check", 4),
4552 HDSPM_SYNC_CHECK("AES5 Sync Check", 5),
4553 HDSPM_SYNC_CHECK("AES6 Sync Check", 6),
4554 HDSPM_SYNC_CHECK("AES7 Sync Check", 7),
4555 HDSPM_SYNC_CHECK("AES8 Sync Check", 8),
4556 HDSPM_SYNC_CHECK("TCO Sync Check", 9),
4557 HDSPM_SYNC_CHECK("SYNC IN Sync Check", 10),
4558 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4559 HDSPM_AUTOSYNC_SAMPLE_RATE("AES1 Frequency", 1),
4560 HDSPM_AUTOSYNC_SAMPLE_RATE("AES2 Frequency", 2),
4561 HDSPM_AUTOSYNC_SAMPLE_RATE("AES3 Frequency", 3),
4562 HDSPM_AUTOSYNC_SAMPLE_RATE("AES4 Frequency", 4),
4563 HDSPM_AUTOSYNC_SAMPLE_RATE("AES5 Frequency", 5),
4564 HDSPM_AUTOSYNC_SAMPLE_RATE("AES6 Frequency", 6),
4565 HDSPM_AUTOSYNC_SAMPLE_RATE("AES7 Frequency", 7),
4566 HDSPM_AUTOSYNC_SAMPLE_RATE("AES8 Frequency", 8),
4567 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 9),
4568 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 10),
c9e1668c
AK
4569 HDSPM_TOGGLE_SETTING("Line Out", HDSPM_LineOut),
4570 HDSPM_TOGGLE_SETTING("Emphasis", HDSPM_Emphasis),
4571 HDSPM_TOGGLE_SETTING("Non Audio", HDSPM_Dolby),
4572 HDSPM_TOGGLE_SETTING("Professional", HDSPM_Professional),
4573 HDSPM_TOGGLE_SETTING("Clear Track Marker", HDSPM_clr_tms),
3cee5a60
RB
4574 HDSPM_DS_WIRE("Double Speed Wire Mode", 0),
4575 HDSPM_QS_WIRE("Quad Speed Wire Mode", 0),
4576};
4577
0dca1793
AK
4578
4579
4580/* Control elements for the optional TCO module */
4581static struct snd_kcontrol_new snd_hdspm_controls_tco[] = {
4582 HDSPM_TCO_SAMPLE_RATE("TCO Sample Rate", 0),
4583 HDSPM_TCO_PULL("TCO Pull", 0),
4584 HDSPM_TCO_WCK_CONVERSION("TCO WCK Conversion", 0),
4585 HDSPM_TCO_FRAME_RATE("TCO Frame Rate", 0),
4586 HDSPM_TCO_SYNC_SOURCE("TCO Sync Source", 0),
a817650e
AK
4587 HDSPM_TCO_WORD_TERM("TCO Word Term", 0),
4588 HDSPM_TCO_LOCK_CHECK("TCO Input Check", 11),
4589 HDSPM_TCO_LOCK_CHECK("TCO LTC Valid", 12),
4590 HDSPM_TCO_LTC_FRAMES("TCO Detected Frame Rate", 0),
4591 HDSPM_TCO_VIDEO_INPUT_FORMAT("Video Input Format", 0)
0dca1793
AK
4592};
4593
4594
98274f07 4595static struct snd_kcontrol_new snd_hdspm_playback_mixer = HDSPM_PLAYBACK_MIXER;
763f356c
TI
4596
4597
98274f07 4598static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm)
763f356c
TI
4599{
4600 int i;
4601
0dca1793 4602 for (i = hdspm->ds_out_channels; i < hdspm->ss_out_channels; ++i) {
763f356c
TI
4603 if (hdspm->system_sample_rate > 48000) {
4604 hdspm->playback_mixer_ctls[i]->vd[0].access =
0dca1793
AK
4605 SNDRV_CTL_ELEM_ACCESS_INACTIVE |
4606 SNDRV_CTL_ELEM_ACCESS_READ |
4607 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
763f356c
TI
4608 } else {
4609 hdspm->playback_mixer_ctls[i]->vd[0].access =
0dca1793
AK
4610 SNDRV_CTL_ELEM_ACCESS_READWRITE |
4611 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
763f356c
TI
4612 }
4613 snd_ctl_notify(hdspm->card, SNDRV_CTL_EVENT_MASK_VALUE |
0dca1793
AK
4614 SNDRV_CTL_EVENT_MASK_INFO,
4615 &hdspm->playback_mixer_ctls[i]->id);
763f356c
TI
4616 }
4617
4618 return 0;
4619}
4620
4621
0dca1793
AK
4622static int snd_hdspm_create_controls(struct snd_card *card,
4623 struct hdspm *hdspm)
763f356c
TI
4624{
4625 unsigned int idx, limit;
4626 int err;
98274f07 4627 struct snd_kcontrol *kctl;
0dca1793 4628 struct snd_kcontrol_new *list = NULL;
763f356c 4629
0dca1793
AK
4630 switch (hdspm->io_type) {
4631 case MADI:
4632 list = snd_hdspm_controls_madi;
4633 limit = ARRAY_SIZE(snd_hdspm_controls_madi);
4634 break;
4635 case MADIface:
4636 list = snd_hdspm_controls_madiface;
4637 limit = ARRAY_SIZE(snd_hdspm_controls_madiface);
4638 break;
4639 case AIO:
4640 list = snd_hdspm_controls_aio;
4641 limit = ARRAY_SIZE(snd_hdspm_controls_aio);
4642 break;
4643 case RayDAT:
4644 list = snd_hdspm_controls_raydat;
4645 limit = ARRAY_SIZE(snd_hdspm_controls_raydat);
4646 break;
4647 case AES32:
4648 list = snd_hdspm_controls_aes32;
4649 limit = ARRAY_SIZE(snd_hdspm_controls_aes32);
4650 break;
4651 }
3cee5a60 4652
0dca1793
AK
4653 if (NULL != list) {
4654 for (idx = 0; idx < limit; idx++) {
3cee5a60 4655 err = snd_ctl_add(card,
0dca1793 4656 snd_ctl_new1(&list[idx], hdspm));
3cee5a60
RB
4657 if (err < 0)
4658 return err;
763f356c
TI
4659 }
4660 }
4661
763f356c 4662
0dca1793 4663 /* create simple 1:1 playback mixer controls */
763f356c 4664 snd_hdspm_playback_mixer.name = "Chn";
0dca1793
AK
4665 if (hdspm->system_sample_rate >= 128000) {
4666 limit = hdspm->qs_out_channels;
4667 } else if (hdspm->system_sample_rate >= 64000) {
4668 limit = hdspm->ds_out_channels;
4669 } else {
4670 limit = hdspm->ss_out_channels;
4671 }
763f356c
TI
4672 for (idx = 0; idx < limit; ++idx) {
4673 snd_hdspm_playback_mixer.index = idx + 1;
ef5fa1a4
TI
4674 kctl = snd_ctl_new1(&snd_hdspm_playback_mixer, hdspm);
4675 err = snd_ctl_add(card, kctl);
4676 if (err < 0)
763f356c 4677 return err;
763f356c
TI
4678 hdspm->playback_mixer_ctls[idx] = kctl;
4679 }
4680
0dca1793
AK
4681
4682 if (hdspm->tco) {
4683 /* add tco control elements */
4684 list = snd_hdspm_controls_tco;
4685 limit = ARRAY_SIZE(snd_hdspm_controls_tco);
4686 for (idx = 0; idx < limit; idx++) {
4687 err = snd_ctl_add(card,
4688 snd_ctl_new1(&list[idx], hdspm));
4689 if (err < 0)
4690 return err;
4691 }
4692 }
4693
763f356c
TI
4694 return 0;
4695}
4696
4697/*------------------------------------------------------------
0dca1793 4698 /proc interface
763f356c
TI
4699 ------------------------------------------------------------*/
4700
4701static void
5760107c
AK
4702snd_hdspm_proc_read_tco(struct snd_info_entry *entry,
4703 struct snd_info_buffer *buffer)
763f356c 4704{
ef5fa1a4 4705 struct hdspm *hdspm = entry->private_data;
5760107c 4706 unsigned int status, control;
0dca1793
AK
4707 int a, ltc, frames, seconds, minutes, hours;
4708 unsigned int period;
4709 u64 freq_const = 0;
4710 u32 rate;
4711
5760107c
AK
4712 snd_iprintf(buffer, "--- TCO ---\n");
4713
763f356c 4714 status = hdspm_read(hdspm, HDSPM_statusRegister);
0dca1793 4715 control = hdspm->control_register;
763f356c 4716
763f356c 4717
0dca1793
AK
4718 if (status & HDSPM_tco_detect) {
4719 snd_iprintf(buffer, "TCO module detected.\n");
4720 a = hdspm_read(hdspm, HDSPM_RD_TCO+4);
4721 if (a & HDSPM_TCO1_LTC_Input_valid) {
4722 snd_iprintf(buffer, " LTC valid, ");
4723 switch (a & (HDSPM_TCO1_LTC_Format_LSB |
4724 HDSPM_TCO1_LTC_Format_MSB)) {
4725 case 0:
4726 snd_iprintf(buffer, "24 fps, ");
4727 break;
4728 case HDSPM_TCO1_LTC_Format_LSB:
4729 snd_iprintf(buffer, "25 fps, ");
4730 break;
4731 case HDSPM_TCO1_LTC_Format_MSB:
4732 snd_iprintf(buffer, "29.97 fps, ");
4733 break;
4734 default:
4735 snd_iprintf(buffer, "30 fps, ");
4736 break;
4737 }
4738 if (a & HDSPM_TCO1_set_drop_frame_flag) {
4739 snd_iprintf(buffer, "drop frame\n");
4740 } else {
4741 snd_iprintf(buffer, "full frame\n");
4742 }
4743 } else {
4744 snd_iprintf(buffer, " no LTC\n");
4745 }
4746 if (a & HDSPM_TCO1_Video_Input_Format_NTSC) {
4747 snd_iprintf(buffer, " Video: NTSC\n");
4748 } else if (a & HDSPM_TCO1_Video_Input_Format_PAL) {
4749 snd_iprintf(buffer, " Video: PAL\n");
4750 } else {
4751 snd_iprintf(buffer, " No video\n");
4752 }
4753 if (a & HDSPM_TCO1_TCO_lock) {
4754 snd_iprintf(buffer, " Sync: lock\n");
4755 } else {
4756 snd_iprintf(buffer, " Sync: no lock\n");
4757 }
4758
4759 switch (hdspm->io_type) {
4760 case MADI:
4761 case AES32:
4762 freq_const = 110069313433624ULL;
4763 break;
4764 case RayDAT:
4765 case AIO:
4766 freq_const = 104857600000000ULL;
4767 break;
4768 case MADIface:
4769 break; /* no TCO possible */
4770 }
4771
4772 period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
4773 snd_iprintf(buffer, " period: %u\n", period);
4774
4775
4776 /* rate = freq_const/period; */
4777 rate = div_u64(freq_const, period);
4778
4779 if (control & HDSPM_QuadSpeed) {
4780 rate *= 4;
4781 } else if (control & HDSPM_DoubleSpeed) {
4782 rate *= 2;
4783 }
4784
4785 snd_iprintf(buffer, " Frequency: %u Hz\n",
4786 (unsigned int) rate);
4787
4788 ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
4789 frames = ltc & 0xF;
4790 ltc >>= 4;
4791 frames += (ltc & 0x3) * 10;
4792 ltc >>= 4;
4793 seconds = ltc & 0xF;
4794 ltc >>= 4;
4795 seconds += (ltc & 0x7) * 10;
4796 ltc >>= 4;
4797 minutes = ltc & 0xF;
4798 ltc >>= 4;
4799 minutes += (ltc & 0x7) * 10;
4800 ltc >>= 4;
4801 hours = ltc & 0xF;
4802 ltc >>= 4;
4803 hours += (ltc & 0x3) * 10;
4804 snd_iprintf(buffer,
4805 " LTC In: %02d:%02d:%02d:%02d\n",
4806 hours, minutes, seconds, frames);
4807
4808 } else {
4809 snd_iprintf(buffer, "No TCO module detected.\n");
4810 }
5760107c
AK
4811}
4812
4813static void
4814snd_hdspm_proc_read_madi(struct snd_info_entry *entry,
4815 struct snd_info_buffer *buffer)
4816{
4817 struct hdspm *hdspm = entry->private_data;
4818 unsigned int status, status2, control, freq;
4819
4820 char *pref_sync_ref;
4821 char *autosync_ref;
4822 char *system_clock_mode;
4823 char *insel;
4824 int x, x2;
4825
4826 status = hdspm_read(hdspm, HDSPM_statusRegister);
4827 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
4828 control = hdspm->control_register;
4829 freq = hdspm_read(hdspm, HDSPM_timecodeRegister);
4830
4831 snd_iprintf(buffer, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
4832 hdspm->card_name, hdspm->card->number + 1,
4833 hdspm->firmware_rev,
4834 (status2 & HDSPM_version0) |
4835 (status2 & HDSPM_version1) | (status2 &
4836 HDSPM_version2));
4837
4838 snd_iprintf(buffer, "HW Serial: 0x%06x%06x\n",
4839 (hdspm_read(hdspm, HDSPM_midiStatusIn1)>>8) & 0xFFFFFF,
4840 hdspm->serial);
4841
4842 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4843 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
4844
4845 snd_iprintf(buffer, "--- System ---\n");
4846
4847 snd_iprintf(buffer,
4848 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4849 status & HDSPM_audioIRQPending,
4850 (status & HDSPM_midi0IRQPending) ? 1 : 0,
4851 (status & HDSPM_midi1IRQPending) ? 1 : 0,
4852 hdspm->irq_count);
4853 snd_iprintf(buffer,
4854 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4855 "estimated= %ld (bytes)\n",
4856 ((status & HDSPM_BufferID) ? 1 : 0),
4857 (status & HDSPM_BufferPositionMask),
4858 (status & HDSPM_BufferPositionMask) %
4859 (2 * (int)hdspm->period_bytes),
4860 ((status & HDSPM_BufferPositionMask) - 64) %
4861 (2 * (int)hdspm->period_bytes),
4862 (long) hdspm_hw_pointer(hdspm) * 4);
4863
4864 snd_iprintf(buffer,
4865 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4866 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
4867 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
4868 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
4869 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
4870 snd_iprintf(buffer,
4871 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4872 hdspm_read(hdspm, HDSPM_midiStatusIn2) & 0xFF,
4873 hdspm_read(hdspm, HDSPM_midiStatusOut2) & 0xFF);
4874 snd_iprintf(buffer,
4875 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4876 "status2=0x%x\n",
4877 hdspm->control_register, hdspm->control2_register,
4878 status, status2);
4879
763f356c
TI
4880
4881 snd_iprintf(buffer, "--- Settings ---\n");
4882
7cb155ff 4883 x = hdspm_get_latency(hdspm);
763f356c
TI
4884
4885 snd_iprintf(buffer,
0dca1793
AK
4886 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
4887 x, (unsigned long) hdspm->period_bytes);
763f356c 4888
0dca1793
AK
4889 snd_iprintf(buffer, "Line out: %s\n",
4890 (hdspm->control_register & HDSPM_LineOut) ? "on " : "off");
763f356c
TI
4891
4892 switch (hdspm->control_register & HDSPM_InputMask) {
4893 case HDSPM_InputOptical:
4894 insel = "Optical";
4895 break;
4896 case HDSPM_InputCoaxial:
4897 insel = "Coaxial";
4898 break;
4899 default:
ec8f53fb 4900 insel = "Unknown";
763f356c 4901 }
763f356c
TI
4902
4903 snd_iprintf(buffer,
0dca1793
AK
4904 "ClearTrackMarker = %s, Transmit in %s Channel Mode, "
4905 "Auto Input %s\n",
4906 (hdspm->control_register & HDSPM_clr_tms) ? "on" : "off",
4907 (hdspm->control_register & HDSPM_TX_64ch) ? "64" : "56",
4908 (hdspm->control_register & HDSPM_AutoInp) ? "on" : "off");
4909
763f356c 4910
3cee5a60 4911 if (!(hdspm->control_register & HDSPM_ClockModeMaster))
0dca1793 4912 system_clock_mode = "AutoSync";
3cee5a60 4913 else
763f356c 4914 system_clock_mode = "Master";
0dca1793 4915 snd_iprintf(buffer, "AutoSync Reference: %s\n", system_clock_mode);
763f356c
TI
4916
4917 switch (hdspm_pref_sync_ref(hdspm)) {
4918 case HDSPM_SYNC_FROM_WORD:
4919 pref_sync_ref = "Word Clock";
4920 break;
4921 case HDSPM_SYNC_FROM_MADI:
4922 pref_sync_ref = "MADI Sync";
4923 break;
0dca1793
AK
4924 case HDSPM_SYNC_FROM_TCO:
4925 pref_sync_ref = "TCO";
4926 break;
4927 case HDSPM_SYNC_FROM_SYNC_IN:
4928 pref_sync_ref = "Sync In";
4929 break;
763f356c
TI
4930 default:
4931 pref_sync_ref = "XXXX Clock";
4932 break;
4933 }
4934 snd_iprintf(buffer, "Preferred Sync Reference: %s\n",
0dca1793 4935 pref_sync_ref);
763f356c
TI
4936
4937 snd_iprintf(buffer, "System Clock Frequency: %d\n",
0dca1793 4938 hdspm->system_sample_rate);
763f356c
TI
4939
4940
4941 snd_iprintf(buffer, "--- Status:\n");
4942
4943 x = status & HDSPM_madiSync;
4944 x2 = status2 & HDSPM_wcSync;
4945
4946 snd_iprintf(buffer, "Inputs MADI=%s, WordClock=%s\n",
0dca1793
AK
4947 (status & HDSPM_madiLock) ? (x ? "Sync" : "Lock") :
4948 "NoLock",
4949 (status2 & HDSPM_wcLock) ? (x2 ? "Sync" : "Lock") :
4950 "NoLock");
763f356c
TI
4951
4952 switch (hdspm_autosync_ref(hdspm)) {
0dca1793
AK
4953 case HDSPM_AUTOSYNC_FROM_SYNC_IN:
4954 autosync_ref = "Sync In";
4955 break;
4956 case HDSPM_AUTOSYNC_FROM_TCO:
4957 autosync_ref = "TCO";
4958 break;
763f356c
TI
4959 case HDSPM_AUTOSYNC_FROM_WORD:
4960 autosync_ref = "Word Clock";
4961 break;
4962 case HDSPM_AUTOSYNC_FROM_MADI:
4963 autosync_ref = "MADI Sync";
4964 break;
4965 case HDSPM_AUTOSYNC_FROM_NONE:
4966 autosync_ref = "Input not valid";
4967 break;
4968 default:
4969 autosync_ref = "---";
4970 break;
4971 }
4972 snd_iprintf(buffer,
0dca1793
AK
4973 "AutoSync: Reference= %s, Freq=%d (MADI = %d, Word = %d)\n",
4974 autosync_ref, hdspm_external_sample_rate(hdspm),
4975 (status & HDSPM_madiFreqMask) >> 22,
4976 (status2 & HDSPM_wcFreqMask) >> 5);
763f356c
TI
4977
4978 snd_iprintf(buffer, "Input: %s, Mode=%s\n",
0dca1793
AK
4979 (status & HDSPM_AB_int) ? "Coax" : "Optical",
4980 (status & HDSPM_RX_64ch) ? "64 channels" :
4981 "56 channels");
763f356c 4982
5760107c
AK
4983 /* call readout function for TCO specific status */
4984 snd_hdspm_proc_read_tco(entry, buffer);
4985
763f356c
TI
4986 snd_iprintf(buffer, "\n");
4987}
4988
3cee5a60
RB
4989static void
4990snd_hdspm_proc_read_aes32(struct snd_info_entry * entry,
4991 struct snd_info_buffer *buffer)
4992{
ef5fa1a4 4993 struct hdspm *hdspm = entry->private_data;
3cee5a60
RB
4994 unsigned int status;
4995 unsigned int status2;
4996 unsigned int timecode;
56bde0f3 4997 unsigned int wcLock, wcSync;
3cee5a60
RB
4998 int pref_syncref;
4999 char *autosync_ref;
3cee5a60
RB
5000 int x;
5001
5002 status = hdspm_read(hdspm, HDSPM_statusRegister);
5003 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
5004 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
5005
5006 snd_iprintf(buffer, "%s (Card #%d) Rev.%x\n",
5007 hdspm->card_name, hdspm->card->number + 1,
5008 hdspm->firmware_rev);
5009
5010 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
5011 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
5012
5013 snd_iprintf(buffer, "--- System ---\n");
5014
5015 snd_iprintf(buffer,
5016 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
5017 status & HDSPM_audioIRQPending,
5018 (status & HDSPM_midi0IRQPending) ? 1 : 0,
5019 (status & HDSPM_midi1IRQPending) ? 1 : 0,
5020 hdspm->irq_count);
5021 snd_iprintf(buffer,
ef5fa1a4
TI
5022 "HW pointer: id = %d, rawptr = %d (%d->%d) "
5023 "estimated= %ld (bytes)\n",
3cee5a60
RB
5024 ((status & HDSPM_BufferID) ? 1 : 0),
5025 (status & HDSPM_BufferPositionMask),
ef5fa1a4
TI
5026 (status & HDSPM_BufferPositionMask) %
5027 (2 * (int)hdspm->period_bytes),
5028 ((status & HDSPM_BufferPositionMask) - 64) %
5029 (2 * (int)hdspm->period_bytes),
3cee5a60
RB
5030 (long) hdspm_hw_pointer(hdspm) * 4);
5031
5032 snd_iprintf(buffer,
5033 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
5034 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
5035 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
5036 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
5037 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
5038 snd_iprintf(buffer,
0dca1793
AK
5039 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
5040 hdspm_read(hdspm, HDSPM_midiStatusIn2) & 0xFF,
5041 hdspm_read(hdspm, HDSPM_midiStatusOut2) & 0xFF);
5042 snd_iprintf(buffer,
5043 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
5044 "status2=0x%x\n",
5045 hdspm->control_register, hdspm->control2_register,
5046 status, status2);
3cee5a60
RB
5047
5048 snd_iprintf(buffer, "--- Settings ---\n");
5049
7cb155ff 5050 x = hdspm_get_latency(hdspm);
3cee5a60
RB
5051
5052 snd_iprintf(buffer,
5053 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
5054 x, (unsigned long) hdspm->period_bytes);
5055
0dca1793 5056 snd_iprintf(buffer, "Line out: %s\n",
3cee5a60 5057 (hdspm->
0dca1793 5058 control_register & HDSPM_LineOut) ? "on " : "off");
3cee5a60
RB
5059
5060 snd_iprintf(buffer,
5061 "ClearTrackMarker %s, Emphasis %s, Dolby %s\n",
5062 (hdspm->
5063 control_register & HDSPM_clr_tms) ? "on" : "off",
5064 (hdspm->
5065 control_register & HDSPM_Emphasis) ? "on" : "off",
5066 (hdspm->
5067 control_register & HDSPM_Dolby) ? "on" : "off");
5068
3cee5a60
RB
5069
5070 pref_syncref = hdspm_pref_sync_ref(hdspm);
5071 if (pref_syncref == 0)
5072 snd_iprintf(buffer, "Preferred Sync Reference: Word Clock\n");
5073 else
5074 snd_iprintf(buffer, "Preferred Sync Reference: AES%d\n",
5075 pref_syncref);
5076
5077 snd_iprintf(buffer, "System Clock Frequency: %d\n",
5078 hdspm->system_sample_rate);
5079
5080 snd_iprintf(buffer, "Double speed: %s\n",
5081 hdspm->control_register & HDSPM_DS_DoubleWire?
5082 "Double wire" : "Single wire");
5083 snd_iprintf(buffer, "Quad speed: %s\n",
5084 hdspm->control_register & HDSPM_QS_DoubleWire?
5085 "Double wire" :
5086 hdspm->control_register & HDSPM_QS_QuadWire?
5087 "Quad wire" : "Single wire");
5088
5089 snd_iprintf(buffer, "--- Status:\n");
5090
56bde0f3
AS
5091 wcLock = status & HDSPM_AES32_wcLock;
5092 wcSync = wcLock && (status & HDSPM_AES32_wcSync);
5093
3cee5a60 5094 snd_iprintf(buffer, "Word: %s Frequency: %d\n",
56bde0f3 5095 (wcLock) ? (wcSync ? "Sync " : "Lock ") : "No Lock",
ef5fa1a4 5096 HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit) & 0xF));
3cee5a60
RB
5097
5098 for (x = 0; x < 8; x++) {
5099 snd_iprintf(buffer, "AES%d: %s Frequency: %d\n",
ef5fa1a4
TI
5100 x+1,
5101 (status2 & (HDSPM_LockAES >> x)) ?
0dca1793 5102 "Sync " : "No Lock",
ef5fa1a4 5103 HDSPM_bit2freq((timecode >> (4*x)) & 0xF));
3cee5a60
RB
5104 }
5105
5106 switch (hdspm_autosync_ref(hdspm)) {
0dca1793
AK
5107 case HDSPM_AES32_AUTOSYNC_FROM_NONE:
5108 autosync_ref = "None"; break;
5109 case HDSPM_AES32_AUTOSYNC_FROM_WORD:
5110 autosync_ref = "Word Clock"; break;
5111 case HDSPM_AES32_AUTOSYNC_FROM_AES1:
5112 autosync_ref = "AES1"; break;
5113 case HDSPM_AES32_AUTOSYNC_FROM_AES2:
5114 autosync_ref = "AES2"; break;
5115 case HDSPM_AES32_AUTOSYNC_FROM_AES3:
5116 autosync_ref = "AES3"; break;
5117 case HDSPM_AES32_AUTOSYNC_FROM_AES4:
5118 autosync_ref = "AES4"; break;
5119 case HDSPM_AES32_AUTOSYNC_FROM_AES5:
5120 autosync_ref = "AES5"; break;
5121 case HDSPM_AES32_AUTOSYNC_FROM_AES6:
5122 autosync_ref = "AES6"; break;
5123 case HDSPM_AES32_AUTOSYNC_FROM_AES7:
5124 autosync_ref = "AES7"; break;
5125 case HDSPM_AES32_AUTOSYNC_FROM_AES8:
5126 autosync_ref = "AES8"; break;
194062da
AK
5127 case HDSPM_AES32_AUTOSYNC_FROM_TCO:
5128 autosync_ref = "TCO"; break;
5129 case HDSPM_AES32_AUTOSYNC_FROM_SYNC_IN:
5130 autosync_ref = "Sync In"; break;
0dca1793
AK
5131 default:
5132 autosync_ref = "---"; break;
3cee5a60
RB
5133 }
5134 snd_iprintf(buffer, "AutoSync ref = %s\n", autosync_ref);
5135
194062da
AK
5136 /* call readout function for TCO specific status */
5137 snd_hdspm_proc_read_tco(entry, buffer);
5138
3cee5a60
RB
5139 snd_iprintf(buffer, "\n");
5140}
5141
0dca1793
AK
5142static void
5143snd_hdspm_proc_read_raydat(struct snd_info_entry *entry,
5144 struct snd_info_buffer *buffer)
5145{
5146 struct hdspm *hdspm = entry->private_data;
5147 unsigned int status1, status2, status3, control, i;
5148 unsigned int lock, sync;
5149
5150 status1 = hdspm_read(hdspm, HDSPM_RD_STATUS_1); /* s1 */
5151 status2 = hdspm_read(hdspm, HDSPM_RD_STATUS_2); /* freq */
5152 status3 = hdspm_read(hdspm, HDSPM_RD_STATUS_3); /* s2 */
5153
5154 control = hdspm->control_register;
5155
5156 snd_iprintf(buffer, "STATUS1: 0x%08x\n", status1);
5157 snd_iprintf(buffer, "STATUS2: 0x%08x\n", status2);
5158 snd_iprintf(buffer, "STATUS3: 0x%08x\n", status3);
5159
5160
5161 snd_iprintf(buffer, "\n*** CLOCK MODE\n\n");
5162
5163 snd_iprintf(buffer, "Clock mode : %s\n",
5164 (hdspm_system_clock_mode(hdspm) == 0) ? "master" : "slave");
5165 snd_iprintf(buffer, "System frequency: %d Hz\n",
5166 hdspm_get_system_sample_rate(hdspm));
5167
5168 snd_iprintf(buffer, "\n*** INPUT STATUS\n\n");
5169
5170 lock = 0x1;
5171 sync = 0x100;
5172
5173 for (i = 0; i < 8; i++) {
5174 snd_iprintf(buffer, "s1_input %d: Lock %d, Sync %d, Freq %s\n",
5175 i,
5176 (status1 & lock) ? 1 : 0,
5177 (status1 & sync) ? 1 : 0,
5178 texts_freq[(status2 >> (i * 4)) & 0xF]);
5179
5180 lock = lock<<1;
5181 sync = sync<<1;
5182 }
5183
5184 snd_iprintf(buffer, "WC input: Lock %d, Sync %d, Freq %s\n",
5185 (status1 & 0x1000000) ? 1 : 0,
5186 (status1 & 0x2000000) ? 1 : 0,
5187 texts_freq[(status1 >> 16) & 0xF]);
5188
5189 snd_iprintf(buffer, "TCO input: Lock %d, Sync %d, Freq %s\n",
5190 (status1 & 0x4000000) ? 1 : 0,
5191 (status1 & 0x8000000) ? 1 : 0,
5192 texts_freq[(status1 >> 20) & 0xF]);
5193
5194 snd_iprintf(buffer, "SYNC IN: Lock %d, Sync %d, Freq %s\n",
5195 (status3 & 0x400) ? 1 : 0,
5196 (status3 & 0x800) ? 1 : 0,
5197 texts_freq[(status2 >> 12) & 0xF]);
5198
5199}
5200
3cee5a60
RB
5201#ifdef CONFIG_SND_DEBUG
5202static void
0dca1793 5203snd_hdspm_proc_read_debug(struct snd_info_entry *entry,
3cee5a60
RB
5204 struct snd_info_buffer *buffer)
5205{
ef5fa1a4 5206 struct hdspm *hdspm = entry->private_data;
3cee5a60
RB
5207
5208 int j,i;
5209
ef5fa1a4 5210 for (i = 0; i < 256 /* 1024*64 */; i += j) {
3cee5a60
RB
5211 snd_iprintf(buffer, "0x%08X: ", i);
5212 for (j = 0; j < 16; j += 4)
5213 snd_iprintf(buffer, "%08X ", hdspm_read(hdspm, i + j));
5214 snd_iprintf(buffer, "\n");
5215 }
5216}
5217#endif
5218
5219
0dca1793
AK
5220static void snd_hdspm_proc_ports_in(struct snd_info_entry *entry,
5221 struct snd_info_buffer *buffer)
5222{
5223 struct hdspm *hdspm = entry->private_data;
5224 int i;
5225
5226 snd_iprintf(buffer, "# generated by hdspm\n");
5227
5228 for (i = 0; i < hdspm->max_channels_in; i++) {
5229 snd_iprintf(buffer, "%d=%s\n", i+1, hdspm->port_names_in[i]);
5230 }
5231}
5232
5233static void snd_hdspm_proc_ports_out(struct snd_info_entry *entry,
5234 struct snd_info_buffer *buffer)
5235{
5236 struct hdspm *hdspm = entry->private_data;
5237 int i;
5238
5239 snd_iprintf(buffer, "# generated by hdspm\n");
5240
5241 for (i = 0; i < hdspm->max_channels_out; i++) {
5242 snd_iprintf(buffer, "%d=%s\n", i+1, hdspm->port_names_out[i]);
5243 }
5244}
5245
3cee5a60 5246
e23e7a14 5247static void snd_hdspm_proc_init(struct hdspm *hdspm)
763f356c 5248{
98274f07 5249 struct snd_info_entry *entry;
763f356c 5250
0dca1793
AK
5251 if (!snd_card_proc_new(hdspm->card, "hdspm", &entry)) {
5252 switch (hdspm->io_type) {
5253 case AES32:
5254 snd_info_set_text_ops(entry, hdspm,
5255 snd_hdspm_proc_read_aes32);
5256 break;
5257 case MADI:
5258 snd_info_set_text_ops(entry, hdspm,
5259 snd_hdspm_proc_read_madi);
5260 break;
5261 case MADIface:
5262 /* snd_info_set_text_ops(entry, hdspm,
5263 snd_hdspm_proc_read_madiface); */
5264 break;
5265 case RayDAT:
5266 snd_info_set_text_ops(entry, hdspm,
5267 snd_hdspm_proc_read_raydat);
5268 break;
5269 case AIO:
5270 break;
5271 }
5272 }
5273
5274 if (!snd_card_proc_new(hdspm->card, "ports.in", &entry)) {
5275 snd_info_set_text_ops(entry, hdspm, snd_hdspm_proc_ports_in);
5276 }
5277
5278 if (!snd_card_proc_new(hdspm->card, "ports.out", &entry)) {
5279 snd_info_set_text_ops(entry, hdspm, snd_hdspm_proc_ports_out);
5280 }
5281
3cee5a60
RB
5282#ifdef CONFIG_SND_DEBUG
5283 /* debug file to read all hdspm registers */
5284 if (!snd_card_proc_new(hdspm->card, "debug", &entry))
5285 snd_info_set_text_ops(entry, hdspm,
5286 snd_hdspm_proc_read_debug);
5287#endif
763f356c
TI
5288}
5289
5290/*------------------------------------------------------------
0dca1793 5291 hdspm intitialize
763f356c
TI
5292 ------------------------------------------------------------*/
5293
98274f07 5294static int snd_hdspm_set_defaults(struct hdspm * hdspm)
763f356c 5295{
763f356c 5296 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
561de31a 5297 hold it (e.g. during module initialization).
0dca1793 5298 */
763f356c
TI
5299
5300 /* set defaults: */
5301
0dca1793
AK
5302 hdspm->settings_register = 0;
5303
5304 switch (hdspm->io_type) {
5305 case MADI:
5306 case MADIface:
5307 hdspm->control_register =
5308 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5309 break;
5310
5311 case RayDAT:
5312 case AIO:
5313 hdspm->settings_register = 0x1 + 0x1000;
5314 /* Magic values are: LAT_0, LAT_2, Master, freq1, tx64ch, inp_0,
5315 * line_out */
5316 hdspm->control_register =
5317 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5318 break;
5319
5320 case AES32:
ef5fa1a4 5321 hdspm->control_register =
e71b95ad 5322 HDSPM_ClockModeMaster | /* Master Clock Mode on */
0dca1793 5323 hdspm_encode_latency(7) | /* latency max=8192samples */
3cee5a60
RB
5324 HDSPM_SyncRef0 | /* AES1 is syncclock */
5325 HDSPM_LineOut | /* Analog output in */
5326 HDSPM_Professional; /* Professional mode */
0dca1793
AK
5327 break;
5328 }
763f356c
TI
5329
5330 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
5331
0dca1793 5332 if (AES32 == hdspm->io_type) {
ffb2c3c0 5333 /* No control2 register for AES32 */
763f356c 5334#ifdef SNDRV_BIG_ENDIAN
ffb2c3c0 5335 hdspm->control2_register = HDSPM_BIGENDIAN_MODE;
763f356c 5336#else
ffb2c3c0 5337 hdspm->control2_register = 0;
763f356c
TI
5338#endif
5339
ffb2c3c0
RB
5340 hdspm_write(hdspm, HDSPM_control2Reg, hdspm->control2_register);
5341 }
763f356c
TI
5342 hdspm_compute_period_size(hdspm);
5343
5344 /* silence everything */
5345
5346 all_in_all_mixer(hdspm, 0 * UNITY_GAIN);
5347
b2ed6326 5348 if (hdspm_is_raydat_or_aio(hdspm))
0dca1793 5349 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
763f356c
TI
5350
5351 /* set a default rate so that the channel map is set up. */
0dca1793 5352 hdspm_set_rate(hdspm, 48000, 1);
763f356c
TI
5353
5354 return 0;
5355}
5356
5357
5358/*------------------------------------------------------------
0dca1793 5359 interrupt
763f356c
TI
5360 ------------------------------------------------------------*/
5361
7d12e780 5362static irqreturn_t snd_hdspm_interrupt(int irq, void *dev_id)
763f356c 5363{
98274f07 5364 struct hdspm *hdspm = (struct hdspm *) dev_id;
763f356c 5365 unsigned int status;
0dca1793
AK
5366 int i, audio, midi, schedule = 0;
5367 /* cycles_t now; */
763f356c
TI
5368
5369 status = hdspm_read(hdspm, HDSPM_statusRegister);
5370
5371 audio = status & HDSPM_audioIRQPending;
0dca1793
AK
5372 midi = status & (HDSPM_midi0IRQPending | HDSPM_midi1IRQPending |
5373 HDSPM_midi2IRQPending | HDSPM_midi3IRQPending);
5374
5375 /* now = get_cycles(); */
5376 /**
5377 * LAT_2..LAT_0 period counter (win) counter (mac)
5378 * 6 4096 ~256053425 ~514672358
5379 * 5 2048 ~128024983 ~257373821
5380 * 4 1024 ~64023706 ~128718089
5381 * 3 512 ~32005945 ~64385999
5382 * 2 256 ~16003039 ~32260176
5383 * 1 128 ~7998738 ~16194507
5384 * 0 64 ~3998231 ~8191558
5385 **/
5386 /*
5387 snd_printk(KERN_INFO "snd_hdspm_interrupt %llu @ %llx\n",
5388 now-hdspm->last_interrupt, status & 0xFFC0);
5389 hdspm->last_interrupt = now;
5390 */
763f356c 5391
0dca1793 5392 if (!audio && !midi)
763f356c
TI
5393 return IRQ_NONE;
5394
5395 hdspm_write(hdspm, HDSPM_interruptConfirmation, 0);
5396 hdspm->irq_count++;
5397
763f356c
TI
5398
5399 if (audio) {
763f356c 5400 if (hdspm->capture_substream)
ef5fa1a4 5401 snd_pcm_period_elapsed(hdspm->capture_substream);
763f356c
TI
5402
5403 if (hdspm->playback_substream)
ef5fa1a4 5404 snd_pcm_period_elapsed(hdspm->playback_substream);
763f356c
TI
5405 }
5406
0dca1793
AK
5407 if (midi) {
5408 i = 0;
5409 while (i < hdspm->midiPorts) {
5410 if ((hdspm_read(hdspm,
5411 hdspm->midi[i].statusIn) & 0xff) &&
5412 (status & hdspm->midi[i].irq)) {
5413 /* we disable interrupts for this input until
5414 * processing is done
5415 */
5416 hdspm->control_register &= ~hdspm->midi[i].ie;
5417 hdspm_write(hdspm, HDSPM_controlRegister,
5418 hdspm->control_register);
5419 hdspm->midi[i].pending = 1;
5420 schedule = 1;
5421 }
5422
5423 i++;
5424 }
5425
5426 if (schedule)
5427 tasklet_hi_schedule(&hdspm->midi_tasklet);
763f356c 5428 }
0dca1793 5429
763f356c
TI
5430 return IRQ_HANDLED;
5431}
5432
5433/*------------------------------------------------------------
0dca1793 5434 pcm interface
763f356c
TI
5435 ------------------------------------------------------------*/
5436
5437
0dca1793
AK
5438static snd_pcm_uframes_t snd_hdspm_hw_pointer(struct snd_pcm_substream
5439 *substream)
763f356c 5440{
98274f07 5441 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c
TI
5442 return hdspm_hw_pointer(hdspm);
5443}
5444
763f356c 5445
98274f07 5446static int snd_hdspm_reset(struct snd_pcm_substream *substream)
763f356c 5447{
98274f07
TI
5448 struct snd_pcm_runtime *runtime = substream->runtime;
5449 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
5450 struct snd_pcm_substream *other;
763f356c
TI
5451
5452 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
5453 other = hdspm->capture_substream;
5454 else
5455 other = hdspm->playback_substream;
5456
5457 if (hdspm->running)
5458 runtime->status->hw_ptr = hdspm_hw_pointer(hdspm);
5459 else
5460 runtime->status->hw_ptr = 0;
5461 if (other) {
98274f07
TI
5462 struct snd_pcm_substream *s;
5463 struct snd_pcm_runtime *oruntime = other->runtime;
ef991b95 5464 snd_pcm_group_for_each_entry(s, substream) {
763f356c
TI
5465 if (s == other) {
5466 oruntime->status->hw_ptr =
0dca1793 5467 runtime->status->hw_ptr;
763f356c
TI
5468 break;
5469 }
5470 }
5471 }
5472 return 0;
5473}
5474
98274f07
TI
5475static int snd_hdspm_hw_params(struct snd_pcm_substream *substream,
5476 struct snd_pcm_hw_params *params)
763f356c 5477{
98274f07 5478 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c
TI
5479 int err;
5480 int i;
5481 pid_t this_pid;
5482 pid_t other_pid;
763f356c
TI
5483
5484 spin_lock_irq(&hdspm->lock);
5485
5486 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5487 this_pid = hdspm->playback_pid;
5488 other_pid = hdspm->capture_pid;
5489 } else {
5490 this_pid = hdspm->capture_pid;
5491 other_pid = hdspm->playback_pid;
5492 }
5493
ef5fa1a4 5494 if (other_pid > 0 && this_pid != other_pid) {
763f356c
TI
5495
5496 /* The other stream is open, and not by the same
5497 task as this one. Make sure that the parameters
5498 that matter are the same.
0dca1793 5499 */
763f356c
TI
5500
5501 if (params_rate(params) != hdspm->system_sample_rate) {
5502 spin_unlock_irq(&hdspm->lock);
5503 _snd_pcm_hw_param_setempty(params,
0dca1793 5504 SNDRV_PCM_HW_PARAM_RATE);
763f356c
TI
5505 return -EBUSY;
5506 }
5507
5508 if (params_period_size(params) != hdspm->period_bytes / 4) {
5509 spin_unlock_irq(&hdspm->lock);
5510 _snd_pcm_hw_param_setempty(params,
0dca1793 5511 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
763f356c
TI
5512 return -EBUSY;
5513 }
5514
5515 }
5516 /* We're fine. */
5517 spin_unlock_irq(&hdspm->lock);
5518
5519 /* how to make sure that the rate matches an externally-set one ? */
5520
5521 spin_lock_irq(&hdspm->lock);
ef5fa1a4
TI
5522 err = hdspm_set_rate(hdspm, params_rate(params), 0);
5523 if (err < 0) {
0dca1793 5524 snd_printk(KERN_INFO "err on hdspm_set_rate: %d\n", err);
763f356c
TI
5525 spin_unlock_irq(&hdspm->lock);
5526 _snd_pcm_hw_param_setempty(params,
0dca1793 5527 SNDRV_PCM_HW_PARAM_RATE);
763f356c
TI
5528 return err;
5529 }
5530 spin_unlock_irq(&hdspm->lock);
5531
ef5fa1a4 5532 err = hdspm_set_interrupt_interval(hdspm,
0dca1793 5533 params_period_size(params));
ef5fa1a4 5534 if (err < 0) {
0dca1793 5535 snd_printk(KERN_INFO "err on hdspm_set_interrupt_interval: %d\n", err);
763f356c 5536 _snd_pcm_hw_param_setempty(params,
0dca1793 5537 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
763f356c
TI
5538 return err;
5539 }
5540
ef5fa1a4
TI
5541 /* Memory allocation, takashi's method, dont know if we should
5542 * spinlock
5543 */
763f356c 5544 /* malloc all buffer even if not enabled to get sure */
ffb2c3c0
RB
5545 /* Update for MADI rev 204: we need to allocate for all channels,
5546 * otherwise it doesn't work at 96kHz */
0dca1793 5547
763f356c 5548 err =
0dca1793
AK
5549 snd_pcm_lib_malloc_pages(substream, HDSPM_DMA_AREA_BYTES);
5550 if (err < 0) {
5551 snd_printk(KERN_INFO "err on snd_pcm_lib_malloc_pages: %d\n", err);
763f356c 5552 return err;
0dca1793 5553 }
763f356c 5554
763f356c
TI
5555 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5556
77a23f26 5557 hdspm_set_sgbuf(hdspm, substream, HDSPM_pageAddressBufferOut,
763f356c
TI
5558 params_channels(params));
5559
5560 for (i = 0; i < params_channels(params); ++i)
5561 snd_hdspm_enable_out(hdspm, i, 1);
5562
5563 hdspm->playback_buffer =
0dca1793 5564 (unsigned char *) substream->runtime->dma_area;
54bf5dd9 5565 snd_printdd("Allocated sample buffer for playback at %p\n",
3cee5a60 5566 hdspm->playback_buffer);
763f356c 5567 } else {
77a23f26 5568 hdspm_set_sgbuf(hdspm, substream, HDSPM_pageAddressBufferIn,
763f356c
TI
5569 params_channels(params));
5570
5571 for (i = 0; i < params_channels(params); ++i)
5572 snd_hdspm_enable_in(hdspm, i, 1);
5573
5574 hdspm->capture_buffer =
0dca1793 5575 (unsigned char *) substream->runtime->dma_area;
54bf5dd9 5576 snd_printdd("Allocated sample buffer for capture at %p\n",
3cee5a60 5577 hdspm->capture_buffer);
763f356c 5578 }
0dca1793 5579
3cee5a60
RB
5580 /*
5581 snd_printdd("Allocated sample buffer for %s at 0x%08X\n",
5582 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5583 "playback" : "capture",
77a23f26 5584 snd_pcm_sgbuf_get_addr(substream, 0));
0dca1793 5585 */
ffb2c3c0 5586 /*
0dca1793
AK
5587 snd_printdd("set_hwparams: %s %d Hz, %d channels, bs = %d\n",
5588 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5589 "playback" : "capture",
5590 params_rate(params), params_channels(params),
5591 params_buffer_size(params));
5592 */
5593
5594
3ac9b0ac
AK
5595 /* For AES cards, the float format bit is the same as the
5596 * preferred sync reference. Since we don't want to break
5597 * sync settings, we have to skip the remaining part of this
5598 * function.
5599 */
5600 if (hdspm->io_type == AES32) {
5601 return 0;
5602 }
5603
5604
0dca1793
AK
5605 /* Switch to native float format if requested */
5606 if (SNDRV_PCM_FORMAT_FLOAT_LE == params_format(params)) {
5607 if (!(hdspm->control_register & HDSPe_FLOAT_FORMAT))
5608 snd_printk(KERN_INFO "hdspm: Switching to native 32bit LE float format.\n");
5609
5610 hdspm->control_register |= HDSPe_FLOAT_FORMAT;
5611 } else if (SNDRV_PCM_FORMAT_S32_LE == params_format(params)) {
5612 if (hdspm->control_register & HDSPe_FLOAT_FORMAT)
5613 snd_printk(KERN_INFO "hdspm: Switching to native 32bit LE integer format.\n");
5614
5615 hdspm->control_register &= ~HDSPe_FLOAT_FORMAT;
5616 }
5617 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
5618
763f356c
TI
5619 return 0;
5620}
5621
98274f07 5622static int snd_hdspm_hw_free(struct snd_pcm_substream *substream)
763f356c
TI
5623{
5624 int i;
98274f07 5625 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c
TI
5626
5627 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5628
0dca1793 5629 /* params_channels(params) should be enough,
763f356c 5630 but to get sure in case of error */
0dca1793 5631 for (i = 0; i < hdspm->max_channels_out; ++i)
763f356c
TI
5632 snd_hdspm_enable_out(hdspm, i, 0);
5633
5634 hdspm->playback_buffer = NULL;
5635 } else {
0dca1793 5636 for (i = 0; i < hdspm->max_channels_in; ++i)
763f356c
TI
5637 snd_hdspm_enable_in(hdspm, i, 0);
5638
5639 hdspm->capture_buffer = NULL;
5640
5641 }
5642
5643 snd_pcm_lib_free_pages(substream);
5644
5645 return 0;
5646}
5647
0dca1793 5648
98274f07 5649static int snd_hdspm_channel_info(struct snd_pcm_substream *substream,
0dca1793 5650 struct snd_pcm_channel_info *info)
763f356c 5651{
98274f07 5652 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c 5653
0dca1793
AK
5654 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5655 if (snd_BUG_ON(info->channel >= hdspm->max_channels_out)) {
5656 snd_printk(KERN_INFO "snd_hdspm_channel_info: output channel out of range (%d)\n", info->channel);
5657 return -EINVAL;
5658 }
763f356c 5659
0dca1793
AK
5660 if (hdspm->channel_map_out[info->channel] < 0) {
5661 snd_printk(KERN_INFO "snd_hdspm_channel_info: output channel %d mapped out\n", info->channel);
5662 return -EINVAL;
5663 }
5664
5665 info->offset = hdspm->channel_map_out[info->channel] *
5666 HDSPM_CHANNEL_BUFFER_BYTES;
5667 } else {
5668 if (snd_BUG_ON(info->channel >= hdspm->max_channels_in)) {
5669 snd_printk(KERN_INFO "snd_hdspm_channel_info: input channel out of range (%d)\n", info->channel);
5670 return -EINVAL;
5671 }
5672
5673 if (hdspm->channel_map_in[info->channel] < 0) {
5674 snd_printk(KERN_INFO "snd_hdspm_channel_info: input channel %d mapped out\n", info->channel);
5675 return -EINVAL;
5676 }
5677
5678 info->offset = hdspm->channel_map_in[info->channel] *
5679 HDSPM_CHANNEL_BUFFER_BYTES;
5680 }
763f356c 5681
763f356c
TI
5682 info->first = 0;
5683 info->step = 32;
5684 return 0;
5685}
5686
0dca1793 5687
98274f07 5688static int snd_hdspm_ioctl(struct snd_pcm_substream *substream,
0dca1793 5689 unsigned int cmd, void *arg)
763f356c
TI
5690{
5691 switch (cmd) {
5692 case SNDRV_PCM_IOCTL1_RESET:
ef5fa1a4 5693 return snd_hdspm_reset(substream);
763f356c
TI
5694
5695 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
0dca1793
AK
5696 {
5697 struct snd_pcm_channel_info *info = arg;
5698 return snd_hdspm_channel_info(substream, info);
5699 }
763f356c
TI
5700 default:
5701 break;
5702 }
5703
5704 return snd_pcm_lib_ioctl(substream, cmd, arg);
5705}
5706
98274f07 5707static int snd_hdspm_trigger(struct snd_pcm_substream *substream, int cmd)
763f356c 5708{
98274f07
TI
5709 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
5710 struct snd_pcm_substream *other;
763f356c
TI
5711 int running;
5712
5713 spin_lock(&hdspm->lock);
5714 running = hdspm->running;
5715 switch (cmd) {
5716 case SNDRV_PCM_TRIGGER_START:
5717 running |= 1 << substream->stream;
5718 break;
5719 case SNDRV_PCM_TRIGGER_STOP:
5720 running &= ~(1 << substream->stream);
5721 break;
5722 default:
5723 snd_BUG();
5724 spin_unlock(&hdspm->lock);
5725 return -EINVAL;
5726 }
5727 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
5728 other = hdspm->capture_substream;
5729 else
5730 other = hdspm->playback_substream;
5731
5732 if (other) {
98274f07 5733 struct snd_pcm_substream *s;
ef991b95 5734 snd_pcm_group_for_each_entry(s, substream) {
763f356c
TI
5735 if (s == other) {
5736 snd_pcm_trigger_done(s, substream);
5737 if (cmd == SNDRV_PCM_TRIGGER_START)
5738 running |= 1 << s->stream;
5739 else
5740 running &= ~(1 << s->stream);
5741 goto _ok;
5742 }
5743 }
5744 if (cmd == SNDRV_PCM_TRIGGER_START) {
5745 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK))
0dca1793
AK
5746 && substream->stream ==
5747 SNDRV_PCM_STREAM_CAPTURE)
763f356c
TI
5748 hdspm_silence_playback(hdspm);
5749 } else {
5750 if (running &&
0dca1793 5751 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
763f356c
TI
5752 hdspm_silence_playback(hdspm);
5753 }
5754 } else {
5755 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
5756 hdspm_silence_playback(hdspm);
5757 }
0dca1793 5758_ok:
763f356c
TI
5759 snd_pcm_trigger_done(substream, substream);
5760 if (!hdspm->running && running)
5761 hdspm_start_audio(hdspm);
5762 else if (hdspm->running && !running)
5763 hdspm_stop_audio(hdspm);
5764 hdspm->running = running;
5765 spin_unlock(&hdspm->lock);
5766
5767 return 0;
5768}
5769
98274f07 5770static int snd_hdspm_prepare(struct snd_pcm_substream *substream)
763f356c
TI
5771{
5772 return 0;
5773}
5774
98274f07 5775static struct snd_pcm_hardware snd_hdspm_playback_subinfo = {
763f356c
TI
5776 .info = (SNDRV_PCM_INFO_MMAP |
5777 SNDRV_PCM_INFO_MMAP_VALID |
5778 SNDRV_PCM_INFO_NONINTERLEAVED |
5779 SNDRV_PCM_INFO_SYNC_START | SNDRV_PCM_INFO_DOUBLE),
5780 .formats = SNDRV_PCM_FMTBIT_S32_LE,
5781 .rates = (SNDRV_PCM_RATE_32000 |
5782 SNDRV_PCM_RATE_44100 |
5783 SNDRV_PCM_RATE_48000 |
5784 SNDRV_PCM_RATE_64000 |
3cee5a60
RB
5785 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
5786 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000 ),
763f356c 5787 .rate_min = 32000,
3cee5a60 5788 .rate_max = 192000,
763f356c
TI
5789 .channels_min = 1,
5790 .channels_max = HDSPM_MAX_CHANNELS,
5791 .buffer_bytes_max =
5792 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
1b6fa108 5793 .period_bytes_min = (32 * 4),
52e6fb48 5794 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
763f356c 5795 .periods_min = 2,
0dca1793 5796 .periods_max = 512,
763f356c
TI
5797 .fifo_size = 0
5798};
5799
98274f07 5800static struct snd_pcm_hardware snd_hdspm_capture_subinfo = {
763f356c
TI
5801 .info = (SNDRV_PCM_INFO_MMAP |
5802 SNDRV_PCM_INFO_MMAP_VALID |
5803 SNDRV_PCM_INFO_NONINTERLEAVED |
5804 SNDRV_PCM_INFO_SYNC_START),
5805 .formats = SNDRV_PCM_FMTBIT_S32_LE,
5806 .rates = (SNDRV_PCM_RATE_32000 |
5807 SNDRV_PCM_RATE_44100 |
5808 SNDRV_PCM_RATE_48000 |
5809 SNDRV_PCM_RATE_64000 |
3cee5a60
RB
5810 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
5811 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000),
763f356c 5812 .rate_min = 32000,
3cee5a60 5813 .rate_max = 192000,
763f356c
TI
5814 .channels_min = 1,
5815 .channels_max = HDSPM_MAX_CHANNELS,
5816 .buffer_bytes_max =
5817 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
1b6fa108 5818 .period_bytes_min = (32 * 4),
52e6fb48 5819 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
763f356c 5820 .periods_min = 2,
0dca1793 5821 .periods_max = 512,
763f356c
TI
5822 .fifo_size = 0
5823};
5824
0dca1793
AK
5825static int snd_hdspm_hw_rule_in_channels_rate(struct snd_pcm_hw_params *params,
5826 struct snd_pcm_hw_rule *rule)
5827{
5828 struct hdspm *hdspm = rule->private;
5829 struct snd_interval *c =
5830 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
5831 struct snd_interval *r =
5832 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5833
5834 if (r->min > 96000 && r->max <= 192000) {
5835 struct snd_interval t = {
5836 .min = hdspm->qs_in_channels,
5837 .max = hdspm->qs_in_channels,
5838 .integer = 1,
5839 };
5840 return snd_interval_refine(c, &t);
5841 } else if (r->min > 48000 && r->max <= 96000) {
5842 struct snd_interval t = {
5843 .min = hdspm->ds_in_channels,
5844 .max = hdspm->ds_in_channels,
5845 .integer = 1,
5846 };
5847 return snd_interval_refine(c, &t);
5848 } else if (r->max < 64000) {
5849 struct snd_interval t = {
5850 .min = hdspm->ss_in_channels,
5851 .max = hdspm->ss_in_channels,
5852 .integer = 1,
5853 };
5854 return snd_interval_refine(c, &t);
5855 }
5856
5857 return 0;
5858}
763f356c 5859
0dca1793 5860static int snd_hdspm_hw_rule_out_channels_rate(struct snd_pcm_hw_params *params,
98274f07 5861 struct snd_pcm_hw_rule * rule)
763f356c 5862{
98274f07
TI
5863 struct hdspm *hdspm = rule->private;
5864 struct snd_interval *c =
763f356c 5865 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
98274f07 5866 struct snd_interval *r =
763f356c
TI
5867 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5868
0dca1793
AK
5869 if (r->min > 96000 && r->max <= 192000) {
5870 struct snd_interval t = {
5871 .min = hdspm->qs_out_channels,
5872 .max = hdspm->qs_out_channels,
5873 .integer = 1,
5874 };
5875 return snd_interval_refine(c, &t);
5876 } else if (r->min > 48000 && r->max <= 96000) {
98274f07 5877 struct snd_interval t = {
0dca1793
AK
5878 .min = hdspm->ds_out_channels,
5879 .max = hdspm->ds_out_channels,
763f356c
TI
5880 .integer = 1,
5881 };
5882 return snd_interval_refine(c, &t);
5883 } else if (r->max < 64000) {
98274f07 5884 struct snd_interval t = {
0dca1793
AK
5885 .min = hdspm->ss_out_channels,
5886 .max = hdspm->ss_out_channels,
763f356c
TI
5887 .integer = 1,
5888 };
5889 return snd_interval_refine(c, &t);
0dca1793 5890 } else {
763f356c
TI
5891 }
5892 return 0;
5893}
5894
0dca1793 5895static int snd_hdspm_hw_rule_rate_in_channels(struct snd_pcm_hw_params *params,
98274f07 5896 struct snd_pcm_hw_rule * rule)
763f356c 5897{
98274f07
TI
5898 struct hdspm *hdspm = rule->private;
5899 struct snd_interval *c =
763f356c 5900 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
98274f07 5901 struct snd_interval *r =
763f356c
TI
5902 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5903
0dca1793 5904 if (c->min >= hdspm->ss_in_channels) {
98274f07 5905 struct snd_interval t = {
763f356c
TI
5906 .min = 32000,
5907 .max = 48000,
5908 .integer = 1,
5909 };
5910 return snd_interval_refine(r, &t);
0dca1793
AK
5911 } else if (c->max <= hdspm->qs_in_channels) {
5912 struct snd_interval t = {
5913 .min = 128000,
5914 .max = 192000,
5915 .integer = 1,
5916 };
5917 return snd_interval_refine(r, &t);
5918 } else if (c->max <= hdspm->ds_in_channels) {
98274f07 5919 struct snd_interval t = {
763f356c
TI
5920 .min = 64000,
5921 .max = 96000,
5922 .integer = 1,
5923 };
0dca1793
AK
5924 return snd_interval_refine(r, &t);
5925 }
5926
5927 return 0;
5928}
5929static int snd_hdspm_hw_rule_rate_out_channels(struct snd_pcm_hw_params *params,
5930 struct snd_pcm_hw_rule *rule)
5931{
5932 struct hdspm *hdspm = rule->private;
5933 struct snd_interval *c =
5934 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
5935 struct snd_interval *r =
5936 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
763f356c 5937
0dca1793
AK
5938 if (c->min >= hdspm->ss_out_channels) {
5939 struct snd_interval t = {
5940 .min = 32000,
5941 .max = 48000,
5942 .integer = 1,
5943 };
5944 return snd_interval_refine(r, &t);
5945 } else if (c->max <= hdspm->qs_out_channels) {
5946 struct snd_interval t = {
5947 .min = 128000,
5948 .max = 192000,
5949 .integer = 1,
5950 };
5951 return snd_interval_refine(r, &t);
5952 } else if (c->max <= hdspm->ds_out_channels) {
5953 struct snd_interval t = {
5954 .min = 64000,
5955 .max = 96000,
5956 .integer = 1,
5957 };
763f356c
TI
5958 return snd_interval_refine(r, &t);
5959 }
0dca1793 5960
763f356c
TI
5961 return 0;
5962}
5963
0dca1793 5964static int snd_hdspm_hw_rule_in_channels(struct snd_pcm_hw_params *params,
ffb2c3c0
RB
5965 struct snd_pcm_hw_rule *rule)
5966{
5967 unsigned int list[3];
5968 struct hdspm *hdspm = rule->private;
5969 struct snd_interval *c = hw_param_interval(params,
5970 SNDRV_PCM_HW_PARAM_CHANNELS);
0dca1793
AK
5971
5972 list[0] = hdspm->qs_in_channels;
5973 list[1] = hdspm->ds_in_channels;
5974 list[2] = hdspm->ss_in_channels;
5975 return snd_interval_list(c, 3, list, 0);
5976}
5977
5978static int snd_hdspm_hw_rule_out_channels(struct snd_pcm_hw_params *params,
5979 struct snd_pcm_hw_rule *rule)
5980{
5981 unsigned int list[3];
5982 struct hdspm *hdspm = rule->private;
5983 struct snd_interval *c = hw_param_interval(params,
5984 SNDRV_PCM_HW_PARAM_CHANNELS);
5985
5986 list[0] = hdspm->qs_out_channels;
5987 list[1] = hdspm->ds_out_channels;
5988 list[2] = hdspm->ss_out_channels;
5989 return snd_interval_list(c, 3, list, 0);
ffb2c3c0
RB
5990}
5991
5992
ef5fa1a4
TI
5993static unsigned int hdspm_aes32_sample_rates[] = {
5994 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000
5995};
ffb2c3c0 5996
ef5fa1a4
TI
5997static struct snd_pcm_hw_constraint_list
5998hdspm_hw_constraints_aes32_sample_rates = {
ffb2c3c0
RB
5999 .count = ARRAY_SIZE(hdspm_aes32_sample_rates),
6000 .list = hdspm_aes32_sample_rates,
6001 .mask = 0
6002};
6003
98274f07 6004static int snd_hdspm_playback_open(struct snd_pcm_substream *substream)
763f356c 6005{
98274f07
TI
6006 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
6007 struct snd_pcm_runtime *runtime = substream->runtime;
763f356c 6008
763f356c
TI
6009 spin_lock_irq(&hdspm->lock);
6010
6011 snd_pcm_set_sync(substream);
6012
0dca1793 6013
763f356c
TI
6014 runtime->hw = snd_hdspm_playback_subinfo;
6015
6016 if (hdspm->capture_substream == NULL)
6017 hdspm_stop_audio(hdspm);
6018
6019 hdspm->playback_pid = current->pid;
6020 hdspm->playback_substream = substream;
6021
6022 spin_unlock_irq(&hdspm->lock);
6023
6024 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
d877681d 6025 snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
763f356c 6026
0dca1793
AK
6027 switch (hdspm->io_type) {
6028 case AIO:
6029 case RayDAT:
d877681d
TI
6030 snd_pcm_hw_constraint_minmax(runtime,
6031 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6032 32, 4096);
6033 /* RayDAT & AIO have a fixed buffer of 16384 samples per channel */
6034 snd_pcm_hw_constraint_minmax(runtime,
6035 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
6036 16384, 16384);
0dca1793
AK
6037 break;
6038
6039 default:
d877681d
TI
6040 snd_pcm_hw_constraint_minmax(runtime,
6041 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6042 64, 8192);
6043 break;
0dca1793 6044 }
763f356c 6045
0dca1793 6046 if (AES32 == hdspm->io_type) {
3fa9e3d2 6047 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
ffb2c3c0
RB
6048 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
6049 &hdspm_hw_constraints_aes32_sample_rates);
6050 } else {
ffb2c3c0 6051 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
0dca1793
AK
6052 snd_hdspm_hw_rule_rate_out_channels, hdspm,
6053 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
ffb2c3c0 6054 }
88fabbfc
AK
6055
6056 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6057 snd_hdspm_hw_rule_out_channels, hdspm,
6058 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
6059
6060 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6061 snd_hdspm_hw_rule_out_channels_rate, hdspm,
6062 SNDRV_PCM_HW_PARAM_RATE, -1);
6063
763f356c
TI
6064 return 0;
6065}
6066
98274f07 6067static int snd_hdspm_playback_release(struct snd_pcm_substream *substream)
763f356c 6068{
98274f07 6069 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c
TI
6070
6071 spin_lock_irq(&hdspm->lock);
6072
6073 hdspm->playback_pid = -1;
6074 hdspm->playback_substream = NULL;
6075
6076 spin_unlock_irq(&hdspm->lock);
6077
6078 return 0;
6079}
6080
6081
98274f07 6082static int snd_hdspm_capture_open(struct snd_pcm_substream *substream)
763f356c 6083{
98274f07
TI
6084 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
6085 struct snd_pcm_runtime *runtime = substream->runtime;
763f356c
TI
6086
6087 spin_lock_irq(&hdspm->lock);
6088 snd_pcm_set_sync(substream);
6089 runtime->hw = snd_hdspm_capture_subinfo;
6090
6091 if (hdspm->playback_substream == NULL)
6092 hdspm_stop_audio(hdspm);
6093
6094 hdspm->capture_pid = current->pid;
6095 hdspm->capture_substream = substream;
6096
6097 spin_unlock_irq(&hdspm->lock);
6098
6099 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
d877681d
TI
6100 snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
6101
0dca1793
AK
6102 switch (hdspm->io_type) {
6103 case AIO:
6104 case RayDAT:
d877681d
TI
6105 snd_pcm_hw_constraint_minmax(runtime,
6106 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6107 32, 4096);
6108 snd_pcm_hw_constraint_minmax(runtime,
6109 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
6110 16384, 16384);
6111 break;
0dca1793
AK
6112
6113 default:
d877681d
TI
6114 snd_pcm_hw_constraint_minmax(runtime,
6115 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6116 64, 8192);
6117 break;
0dca1793
AK
6118 }
6119
6120 if (AES32 == hdspm->io_type) {
3fa9e3d2 6121 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
ffb2c3c0
RB
6122 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
6123 &hdspm_hw_constraints_aes32_sample_rates);
6124 } else {
ffb2c3c0 6125 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
88fabbfc
AK
6126 snd_hdspm_hw_rule_rate_in_channels, hdspm,
6127 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
ffb2c3c0 6128 }
88fabbfc
AK
6129
6130 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6131 snd_hdspm_hw_rule_in_channels, hdspm,
6132 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
6133
6134 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6135 snd_hdspm_hw_rule_in_channels_rate, hdspm,
6136 SNDRV_PCM_HW_PARAM_RATE, -1);
6137
763f356c
TI
6138 return 0;
6139}
6140
98274f07 6141static int snd_hdspm_capture_release(struct snd_pcm_substream *substream)
763f356c 6142{
98274f07 6143 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
763f356c
TI
6144
6145 spin_lock_irq(&hdspm->lock);
6146
6147 hdspm->capture_pid = -1;
6148 hdspm->capture_substream = NULL;
6149
6150 spin_unlock_irq(&hdspm->lock);
6151 return 0;
6152}
6153
0dca1793
AK
6154static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep *hw, struct file *file)
6155{
6156 /* we have nothing to initialize but the call is required */
6157 return 0;
6158}
6159
6160static inline int copy_u32_le(void __user *dest, void __iomem *src)
6161{
6162 u32 val = readl(src);
6163 return copy_to_user(dest, &val, 4);
6164}
6165
6166static int snd_hdspm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
2ca595ab 6167 unsigned int cmd, unsigned long arg)
763f356c 6168{
0dca1793 6169 void __user *argp = (void __user *)arg;
ef5fa1a4 6170 struct hdspm *hdspm = hw->private_data;
98274f07 6171 struct hdspm_mixer_ioctl mixer;
0dca1793
AK
6172 struct hdspm_config info;
6173 struct hdspm_status status;
98274f07 6174 struct hdspm_version hdspm_version;
730a5865 6175 struct hdspm_peak_rms *levels;
0dca1793
AK
6176 struct hdspm_ltc ltc;
6177 unsigned int statusregister;
6178 long unsigned int s;
6179 int i = 0;
763f356c
TI
6180
6181 switch (cmd) {
6182
763f356c 6183 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS:
730a5865 6184 levels = &hdspm->peak_rms;
0dca1793 6185 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
730a5865 6186 levels->input_peaks[i] =
0dca1793
AK
6187 readl(hdspm->iobase +
6188 HDSPM_MADI_INPUT_PEAK + i*4);
730a5865 6189 levels->playback_peaks[i] =
0dca1793
AK
6190 readl(hdspm->iobase +
6191 HDSPM_MADI_PLAYBACK_PEAK + i*4);
730a5865 6192 levels->output_peaks[i] =
0dca1793
AK
6193 readl(hdspm->iobase +
6194 HDSPM_MADI_OUTPUT_PEAK + i*4);
6195
730a5865 6196 levels->input_rms[i] =
0dca1793
AK
6197 ((uint64_t) readl(hdspm->iobase +
6198 HDSPM_MADI_INPUT_RMS_H + i*4) << 32) |
6199 (uint64_t) readl(hdspm->iobase +
6200 HDSPM_MADI_INPUT_RMS_L + i*4);
730a5865 6201 levels->playback_rms[i] =
0dca1793
AK
6202 ((uint64_t)readl(hdspm->iobase +
6203 HDSPM_MADI_PLAYBACK_RMS_H+i*4) << 32) |
6204 (uint64_t)readl(hdspm->iobase +
6205 HDSPM_MADI_PLAYBACK_RMS_L + i*4);
730a5865 6206 levels->output_rms[i] =
0dca1793
AK
6207 ((uint64_t)readl(hdspm->iobase +
6208 HDSPM_MADI_OUTPUT_RMS_H + i*4) << 32) |
6209 (uint64_t)readl(hdspm->iobase +
6210 HDSPM_MADI_OUTPUT_RMS_L + i*4);
6211 }
6212
6213 if (hdspm->system_sample_rate > 96000) {
730a5865 6214 levels->speed = qs;
0dca1793 6215 } else if (hdspm->system_sample_rate > 48000) {
730a5865 6216 levels->speed = ds;
0dca1793 6217 } else {
730a5865 6218 levels->speed = ss;
0dca1793 6219 }
730a5865 6220 levels->status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
0dca1793 6221
730a5865 6222 s = copy_to_user(argp, levels, sizeof(struct hdspm_peak_rms));
0dca1793
AK
6223 if (0 != s) {
6224 /* snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu
6225 [Levels]\n", sizeof(struct hdspm_peak_rms), s);
6226 */
763f356c 6227 return -EFAULT;
0dca1793
AK
6228 }
6229 break;
6230
6231 case SNDRV_HDSPM_IOCTL_GET_LTC:
6232 ltc.ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
6233 i = hdspm_read(hdspm, HDSPM_RD_TCO + 4);
6234 if (i & HDSPM_TCO1_LTC_Input_valid) {
6235 switch (i & (HDSPM_TCO1_LTC_Format_LSB |
6236 HDSPM_TCO1_LTC_Format_MSB)) {
6237 case 0:
6238 ltc.format = fps_24;
6239 break;
6240 case HDSPM_TCO1_LTC_Format_LSB:
6241 ltc.format = fps_25;
6242 break;
6243 case HDSPM_TCO1_LTC_Format_MSB:
6244 ltc.format = fps_2997;
6245 break;
6246 default:
6247 ltc.format = 30;
6248 break;
6249 }
6250 if (i & HDSPM_TCO1_set_drop_frame_flag) {
6251 ltc.frame = drop_frame;
6252 } else {
6253 ltc.frame = full_frame;
6254 }
6255 } else {
6256 ltc.format = format_invalid;
6257 ltc.frame = frame_invalid;
6258 }
6259 if (i & HDSPM_TCO1_Video_Input_Format_NTSC) {
6260 ltc.input_format = ntsc;
6261 } else if (i & HDSPM_TCO1_Video_Input_Format_PAL) {
6262 ltc.input_format = pal;
6263 } else {
6264 ltc.input_format = no_video;
6265 }
6266
6267 s = copy_to_user(argp, &ltc, sizeof(struct hdspm_ltc));
6268 if (0 != s) {
6269 /*
6270 snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu [LTC]\n", sizeof(struct hdspm_ltc), s); */
763f356c 6271 return -EFAULT;
0dca1793 6272 }
763f356c
TI
6273
6274 break;
763f356c 6275
0dca1793 6276 case SNDRV_HDSPM_IOCTL_GET_CONFIG:
763f356c 6277
4ab69a2b 6278 memset(&info, 0, sizeof(info));
763f356c 6279 spin_lock_irq(&hdspm->lock);
ef5fa1a4
TI
6280 info.pref_sync_ref = hdspm_pref_sync_ref(hdspm);
6281 info.wordclock_sync_check = hdspm_wc_sync_check(hdspm);
763f356c
TI
6282
6283 info.system_sample_rate = hdspm->system_sample_rate;
6284 info.autosync_sample_rate =
0dca1793 6285 hdspm_external_sample_rate(hdspm);
ef5fa1a4
TI
6286 info.system_clock_mode = hdspm_system_clock_mode(hdspm);
6287 info.clock_source = hdspm_clock_source(hdspm);
6288 info.autosync_ref = hdspm_autosync_ref(hdspm);
c9e1668c 6289 info.line_out = hdspm_toggle_setting(hdspm, HDSPM_LineOut);
763f356c
TI
6290 info.passthru = 0;
6291 spin_unlock_irq(&hdspm->lock);
2ca595ab 6292 if (copy_to_user(argp, &info, sizeof(info)))
763f356c
TI
6293 return -EFAULT;
6294 break;
6295
0dca1793 6296 case SNDRV_HDSPM_IOCTL_GET_STATUS:
643d6bbb
DC
6297 memset(&status, 0, sizeof(status));
6298
0dca1793
AK
6299 status.card_type = hdspm->io_type;
6300
6301 status.autosync_source = hdspm_autosync_ref(hdspm);
6302
6303 status.card_clock = 110069313433624ULL;
6304 status.master_period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
6305
6306 switch (hdspm->io_type) {
6307 case MADI:
6308 case MADIface:
6309 status.card_specific.madi.sync_wc =
6310 hdspm_wc_sync_check(hdspm);
6311 status.card_specific.madi.sync_madi =
6312 hdspm_madi_sync_check(hdspm);
6313 status.card_specific.madi.sync_tco =
6314 hdspm_tco_sync_check(hdspm);
6315 status.card_specific.madi.sync_in =
6316 hdspm_sync_in_sync_check(hdspm);
6317
6318 statusregister =
6319 hdspm_read(hdspm, HDSPM_statusRegister);
6320 status.card_specific.madi.madi_input =
6321 (statusregister & HDSPM_AB_int) ? 1 : 0;
6322 status.card_specific.madi.channel_format =
9e6ff520 6323 (statusregister & HDSPM_RX_64ch) ? 1 : 0;
0dca1793
AK
6324 /* TODO: Mac driver sets it when f_s>48kHz */
6325 status.card_specific.madi.frame_format = 0;
6326
6327 default:
6328 break;
6329 }
6330
2ca595ab 6331 if (copy_to_user(argp, &status, sizeof(status)))
0dca1793
AK
6332 return -EFAULT;
6333
6334
6335 break;
6336
763f356c 6337 case SNDRV_HDSPM_IOCTL_GET_VERSION:
643d6bbb
DC
6338 memset(&hdspm_version, 0, sizeof(hdspm_version));
6339
0dca1793
AK
6340 hdspm_version.card_type = hdspm->io_type;
6341 strncpy(hdspm_version.cardname, hdspm->card_name,
6342 sizeof(hdspm_version.cardname));
7d53a631 6343 hdspm_version.serial = hdspm->serial;
763f356c 6344 hdspm_version.firmware_rev = hdspm->firmware_rev;
0dca1793
AK
6345 hdspm_version.addons = 0;
6346 if (hdspm->tco)
6347 hdspm_version.addons |= HDSPM_ADDON_TCO;
6348
2ca595ab 6349 if (copy_to_user(argp, &hdspm_version,
0dca1793 6350 sizeof(hdspm_version)))
763f356c
TI
6351 return -EFAULT;
6352 break;
6353
6354 case SNDRV_HDSPM_IOCTL_GET_MIXER:
2ca595ab 6355 if (copy_from_user(&mixer, argp, sizeof(mixer)))
763f356c 6356 return -EFAULT;
ef5fa1a4 6357 if (copy_to_user((void __user *)mixer.mixer, hdspm->mixer,
0dca1793 6358 sizeof(struct hdspm_mixer)))
763f356c
TI
6359 return -EFAULT;
6360 break;
6361
6362 default:
6363 return -EINVAL;
6364 }
6365 return 0;
6366}
6367
98274f07 6368static struct snd_pcm_ops snd_hdspm_playback_ops = {
763f356c
TI
6369 .open = snd_hdspm_playback_open,
6370 .close = snd_hdspm_playback_release,
6371 .ioctl = snd_hdspm_ioctl,
6372 .hw_params = snd_hdspm_hw_params,
6373 .hw_free = snd_hdspm_hw_free,
6374 .prepare = snd_hdspm_prepare,
6375 .trigger = snd_hdspm_trigger,
6376 .pointer = snd_hdspm_hw_pointer,
763f356c
TI
6377 .page = snd_pcm_sgbuf_ops_page,
6378};
6379
98274f07 6380static struct snd_pcm_ops snd_hdspm_capture_ops = {
763f356c
TI
6381 .open = snd_hdspm_capture_open,
6382 .close = snd_hdspm_capture_release,
6383 .ioctl = snd_hdspm_ioctl,
6384 .hw_params = snd_hdspm_hw_params,
6385 .hw_free = snd_hdspm_hw_free,
6386 .prepare = snd_hdspm_prepare,
6387 .trigger = snd_hdspm_trigger,
6388 .pointer = snd_hdspm_hw_pointer,
763f356c
TI
6389 .page = snd_pcm_sgbuf_ops_page,
6390};
6391
e23e7a14
BP
6392static int snd_hdspm_create_hwdep(struct snd_card *card,
6393 struct hdspm *hdspm)
763f356c 6394{
98274f07 6395 struct snd_hwdep *hw;
763f356c
TI
6396 int err;
6397
ef5fa1a4
TI
6398 err = snd_hwdep_new(card, "HDSPM hwdep", 0, &hw);
6399 if (err < 0)
763f356c
TI
6400 return err;
6401
6402 hdspm->hwdep = hw;
6403 hw->private_data = hdspm;
6404 strcpy(hw->name, "HDSPM hwdep interface");
6405
0dca1793 6406 hw->ops.open = snd_hdspm_hwdep_dummy_op;
763f356c 6407 hw->ops.ioctl = snd_hdspm_hwdep_ioctl;
8de5d6f1 6408 hw->ops.ioctl_compat = snd_hdspm_hwdep_ioctl;
0dca1793 6409 hw->ops.release = snd_hdspm_hwdep_dummy_op;
763f356c
TI
6410
6411 return 0;
6412}
6413
6414
6415/*------------------------------------------------------------
0dca1793 6416 memory interface
763f356c 6417 ------------------------------------------------------------*/
e23e7a14 6418static int snd_hdspm_preallocate_memory(struct hdspm *hdspm)
763f356c
TI
6419{
6420 int err;
98274f07 6421 struct snd_pcm *pcm;
763f356c
TI
6422 size_t wanted;
6423
6424 pcm = hdspm->pcm;
6425
3cee5a60 6426 wanted = HDSPM_DMA_AREA_BYTES;
763f356c 6427
ef5fa1a4 6428 err =
763f356c 6429 snd_pcm_lib_preallocate_pages_for_all(pcm,
0dca1793 6430 SNDRV_DMA_TYPE_DEV_SG,
763f356c
TI
6431 snd_dma_pci_data(hdspm->pci),
6432 wanted,
ef5fa1a4
TI
6433 wanted);
6434 if (err < 0) {
e2eba3e7 6435 snd_printdd("Could not preallocate %zd Bytes\n", wanted);
763f356c
TI
6436
6437 return err;
6438 } else
e2eba3e7 6439 snd_printdd(" Preallocated %zd Bytes\n", wanted);
763f356c
TI
6440
6441 return 0;
6442}
6443
0dca1793
AK
6444
6445static void hdspm_set_sgbuf(struct hdspm *hdspm,
77a23f26 6446 struct snd_pcm_substream *substream,
763f356c
TI
6447 unsigned int reg, int channels)
6448{
6449 int i;
0dca1793
AK
6450
6451 /* continuous memory segment */
763f356c
TI
6452 for (i = 0; i < (channels * 16); i++)
6453 hdspm_write(hdspm, reg + 4 * i,
0dca1793 6454 snd_pcm_sgbuf_get_addr(substream, 4096 * i));
763f356c
TI
6455}
6456
0dca1793 6457
763f356c 6458/* ------------- ALSA Devices ---------------------------- */
e23e7a14
BP
6459static int snd_hdspm_create_pcm(struct snd_card *card,
6460 struct hdspm *hdspm)
763f356c 6461{
98274f07 6462 struct snd_pcm *pcm;
763f356c
TI
6463 int err;
6464
ef5fa1a4
TI
6465 err = snd_pcm_new(card, hdspm->card_name, 0, 1, 1, &pcm);
6466 if (err < 0)
763f356c
TI
6467 return err;
6468
6469 hdspm->pcm = pcm;
6470 pcm->private_data = hdspm;
6471 strcpy(pcm->name, hdspm->card_name);
6472
6473 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
6474 &snd_hdspm_playback_ops);
6475 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
6476 &snd_hdspm_capture_ops);
6477
6478 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
6479
ef5fa1a4
TI
6480 err = snd_hdspm_preallocate_memory(hdspm);
6481 if (err < 0)
763f356c
TI
6482 return err;
6483
6484 return 0;
6485}
6486
98274f07 6487static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm)
763f356c 6488{
7c7102b7
AK
6489 int i;
6490
6491 for (i = 0; i < hdspm->midiPorts; i++)
6492 snd_hdspm_flush_midi_input(hdspm, i);
763f356c
TI
6493}
6494
e23e7a14
BP
6495static int snd_hdspm_create_alsa_devices(struct snd_card *card,
6496 struct hdspm *hdspm)
763f356c 6497{
0dca1793 6498 int err, i;
763f356c
TI
6499
6500 snd_printdd("Create card...\n");
ef5fa1a4
TI
6501 err = snd_hdspm_create_pcm(card, hdspm);
6502 if (err < 0)
763f356c
TI
6503 return err;
6504
0dca1793
AK
6505 i = 0;
6506 while (i < hdspm->midiPorts) {
6507 err = snd_hdspm_create_midi(card, hdspm, i);
6508 if (err < 0) {
6509 return err;
6510 }
6511 i++;
6512 }
763f356c 6513
ef5fa1a4
TI
6514 err = snd_hdspm_create_controls(card, hdspm);
6515 if (err < 0)
763f356c
TI
6516 return err;
6517
ef5fa1a4
TI
6518 err = snd_hdspm_create_hwdep(card, hdspm);
6519 if (err < 0)
763f356c
TI
6520 return err;
6521
6522 snd_printdd("proc init...\n");
6523 snd_hdspm_proc_init(hdspm);
6524
6525 hdspm->system_sample_rate = -1;
6526 hdspm->last_external_sample_rate = -1;
6527 hdspm->last_internal_sample_rate = -1;
6528 hdspm->playback_pid = -1;
6529 hdspm->capture_pid = -1;
6530 hdspm->capture_substream = NULL;
6531 hdspm->playback_substream = NULL;
6532
6533 snd_printdd("Set defaults...\n");
ef5fa1a4
TI
6534 err = snd_hdspm_set_defaults(hdspm);
6535 if (err < 0)
763f356c
TI
6536 return err;
6537
6538 snd_printdd("Update mixer controls...\n");
6539 hdspm_update_simple_mixer_controls(hdspm);
6540
6541 snd_printdd("Initializeing complete ???\n");
6542
ef5fa1a4
TI
6543 err = snd_card_register(card);
6544 if (err < 0) {
763f356c
TI
6545 snd_printk(KERN_ERR "HDSPM: error registering card\n");
6546 return err;
6547 }
6548
6549 snd_printdd("... yes now\n");
6550
6551 return 0;
6552}
6553
e23e7a14
BP
6554static int snd_hdspm_create(struct snd_card *card,
6555 struct hdspm *hdspm)
6556{
0dca1793 6557
763f356c
TI
6558 struct pci_dev *pci = hdspm->pci;
6559 int err;
763f356c
TI
6560 unsigned long io_extent;
6561
6562 hdspm->irq = -1;
763f356c
TI
6563 hdspm->card = card;
6564
6565 spin_lock_init(&hdspm->lock);
6566
763f356c 6567 pci_read_config_word(hdspm->pci,
0dca1793 6568 PCI_CLASS_REVISION, &hdspm->firmware_rev);
3cee5a60 6569
763f356c 6570 strcpy(card->mixername, "Xilinx FPGA");
0dca1793
AK
6571 strcpy(card->driver, "HDSPM");
6572
6573 switch (hdspm->firmware_rev) {
0dca1793
AK
6574 case HDSPM_RAYDAT_REV:
6575 hdspm->io_type = RayDAT;
6576 hdspm->card_name = "RME RayDAT";
6577 hdspm->midiPorts = 2;
6578 break;
6579 case HDSPM_AIO_REV:
6580 hdspm->io_type = AIO;
6581 hdspm->card_name = "RME AIO";
6582 hdspm->midiPorts = 1;
6583 break;
6584 case HDSPM_MADIFACE_REV:
6585 hdspm->io_type = MADIface;
6586 hdspm->card_name = "RME MADIface";
6587 hdspm->midiPorts = 1;
6588 break;
5027f347 6589 default:
c09403dc
AK
6590 if ((hdspm->firmware_rev == 0xf0) ||
6591 ((hdspm->firmware_rev >= 0xe6) &&
6592 (hdspm->firmware_rev <= 0xea))) {
6593 hdspm->io_type = AES32;
6594 hdspm->card_name = "RME AES32";
6595 hdspm->midiPorts = 2;
05c7cc9c 6596 } else if ((hdspm->firmware_rev == 0xd2) ||
c09403dc
AK
6597 ((hdspm->firmware_rev >= 0xc8) &&
6598 (hdspm->firmware_rev <= 0xcf))) {
6599 hdspm->io_type = MADI;
6600 hdspm->card_name = "RME MADI";
6601 hdspm->midiPorts = 3;
6602 } else {
6603 snd_printk(KERN_ERR
6604 "HDSPM: unknown firmware revision %x\n",
5027f347 6605 hdspm->firmware_rev);
c09403dc
AK
6606 return -ENODEV;
6607 }
3cee5a60 6608 }
763f356c 6609
ef5fa1a4
TI
6610 err = pci_enable_device(pci);
6611 if (err < 0)
763f356c
TI
6612 return err;
6613
6614 pci_set_master(hdspm->pci);
6615
ef5fa1a4
TI
6616 err = pci_request_regions(pci, "hdspm");
6617 if (err < 0)
763f356c
TI
6618 return err;
6619
6620 hdspm->port = pci_resource_start(pci, 0);
6621 io_extent = pci_resource_len(pci, 0);
6622
6623 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
0dca1793 6624 hdspm->port, hdspm->port + io_extent - 1);
763f356c 6625
ef5fa1a4
TI
6626 hdspm->iobase = ioremap_nocache(hdspm->port, io_extent);
6627 if (!hdspm->iobase) {
6628 snd_printk(KERN_ERR "HDSPM: "
0dca1793
AK
6629 "unable to remap region 0x%lx-0x%lx\n",
6630 hdspm->port, hdspm->port + io_extent - 1);
763f356c
TI
6631 return -EBUSY;
6632 }
6633 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
0dca1793
AK
6634 (unsigned long)hdspm->iobase, hdspm->port,
6635 hdspm->port + io_extent - 1);
763f356c
TI
6636
6637 if (request_irq(pci->irq, snd_hdspm_interrupt,
934c2b6d 6638 IRQF_SHARED, KBUILD_MODNAME, hdspm)) {
763f356c
TI
6639 snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq);
6640 return -EBUSY;
6641 }
6642
6643 snd_printdd("use IRQ %d\n", pci->irq);
6644
6645 hdspm->irq = pci->irq;
763f356c 6646
e2eba3e7 6647 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
0dca1793 6648 sizeof(struct hdspm_mixer));
ef5fa1a4
TI
6649 hdspm->mixer = kzalloc(sizeof(struct hdspm_mixer), GFP_KERNEL);
6650 if (!hdspm->mixer) {
6651 snd_printk(KERN_ERR "HDSPM: "
0dca1793
AK
6652 "unable to kmalloc Mixer memory of %d Bytes\n",
6653 (int)sizeof(struct hdspm_mixer));
b17cbdd8 6654 return -ENOMEM;
763f356c
TI
6655 }
6656
0dca1793
AK
6657 hdspm->port_names_in = NULL;
6658 hdspm->port_names_out = NULL;
6659
6660 switch (hdspm->io_type) {
6661 case AES32:
d2d10a21
AK
6662 hdspm->ss_in_channels = hdspm->ss_out_channels = AES32_CHANNELS;
6663 hdspm->ds_in_channels = hdspm->ds_out_channels = AES32_CHANNELS;
6664 hdspm->qs_in_channels = hdspm->qs_out_channels = AES32_CHANNELS;
432d2500
AK
6665
6666 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6667 channel_map_aes32;
6668 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
6669 channel_map_aes32;
6670 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
6671 channel_map_aes32;
6672 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6673 texts_ports_aes32;
6674 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6675 texts_ports_aes32;
6676 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6677 texts_ports_aes32;
6678
d2d10a21
AK
6679 hdspm->max_channels_out = hdspm->max_channels_in =
6680 AES32_CHANNELS;
432d2500
AK
6681 hdspm->port_names_in = hdspm->port_names_out =
6682 texts_ports_aes32;
6683 hdspm->channel_map_in = hdspm->channel_map_out =
6684 channel_map_aes32;
6685
0dca1793
AK
6686 break;
6687
6688 case MADI:
6689 case MADIface:
6690 hdspm->ss_in_channels = hdspm->ss_out_channels =
6691 MADI_SS_CHANNELS;
6692 hdspm->ds_in_channels = hdspm->ds_out_channels =
6693 MADI_DS_CHANNELS;
6694 hdspm->qs_in_channels = hdspm->qs_out_channels =
6695 MADI_QS_CHANNELS;
6696
6697 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6698 channel_map_unity_ss;
01e96078 6699 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
0dca1793 6700 channel_map_unity_ss;
01e96078 6701 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
0dca1793
AK
6702 channel_map_unity_ss;
6703
6704 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6705 texts_ports_madi;
6706 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6707 texts_ports_madi;
6708 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6709 texts_ports_madi;
6710 break;
6711
6712 case AIO:
0dca1793
AK
6713 hdspm->ss_in_channels = AIO_IN_SS_CHANNELS;
6714 hdspm->ds_in_channels = AIO_IN_DS_CHANNELS;
6715 hdspm->qs_in_channels = AIO_IN_QS_CHANNELS;
6716 hdspm->ss_out_channels = AIO_OUT_SS_CHANNELS;
6717 hdspm->ds_out_channels = AIO_OUT_DS_CHANNELS;
6718 hdspm->qs_out_channels = AIO_OUT_QS_CHANNELS;
6719
3de9db26
AK
6720 if (0 == (hdspm_read(hdspm, HDSPM_statusRegister2) & HDSPM_s2_AEBI_D)) {
6721 snd_printk(KERN_INFO "HDSPM: AEB input board found\n");
6722 hdspm->ss_in_channels += 4;
6723 hdspm->ds_in_channels += 4;
6724 hdspm->qs_in_channels += 4;
6725 }
6726
6727 if (0 == (hdspm_read(hdspm, HDSPM_statusRegister2) & HDSPM_s2_AEBO_D)) {
6728 snd_printk(KERN_INFO "HDSPM: AEB output board found\n");
6729 hdspm->ss_out_channels += 4;
6730 hdspm->ds_out_channels += 4;
6731 hdspm->qs_out_channels += 4;
6732 }
6733
0dca1793
AK
6734 hdspm->channel_map_out_ss = channel_map_aio_out_ss;
6735 hdspm->channel_map_out_ds = channel_map_aio_out_ds;
6736 hdspm->channel_map_out_qs = channel_map_aio_out_qs;
6737
6738 hdspm->channel_map_in_ss = channel_map_aio_in_ss;
6739 hdspm->channel_map_in_ds = channel_map_aio_in_ds;
6740 hdspm->channel_map_in_qs = channel_map_aio_in_qs;
6741
6742 hdspm->port_names_in_ss = texts_ports_aio_in_ss;
6743 hdspm->port_names_out_ss = texts_ports_aio_out_ss;
6744 hdspm->port_names_in_ds = texts_ports_aio_in_ds;
6745 hdspm->port_names_out_ds = texts_ports_aio_out_ds;
6746 hdspm->port_names_in_qs = texts_ports_aio_in_qs;
6747 hdspm->port_names_out_qs = texts_ports_aio_out_qs;
6748
6749 break;
6750
6751 case RayDAT:
6752 hdspm->ss_in_channels = hdspm->ss_out_channels =
6753 RAYDAT_SS_CHANNELS;
6754 hdspm->ds_in_channels = hdspm->ds_out_channels =
6755 RAYDAT_DS_CHANNELS;
6756 hdspm->qs_in_channels = hdspm->qs_out_channels =
6757 RAYDAT_QS_CHANNELS;
6758
6759 hdspm->max_channels_in = RAYDAT_SS_CHANNELS;
6760 hdspm->max_channels_out = RAYDAT_SS_CHANNELS;
6761
6762 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6763 channel_map_raydat_ss;
6764 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
6765 channel_map_raydat_ds;
6766 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
6767 channel_map_raydat_qs;
6768 hdspm->channel_map_in = hdspm->channel_map_out =
6769 channel_map_raydat_ss;
6770
6771 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6772 texts_ports_raydat_ss;
6773 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6774 texts_ports_raydat_ds;
6775 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6776 texts_ports_raydat_qs;
6777
6778
6779 break;
6780
6781 }
6782
6783 /* TCO detection */
6784 switch (hdspm->io_type) {
6785 case AIO:
6786 case RayDAT:
6787 if (hdspm_read(hdspm, HDSPM_statusRegister2) &
6788 HDSPM_s2_tco_detect) {
6789 hdspm->midiPorts++;
6790 hdspm->tco = kzalloc(sizeof(struct hdspm_tco),
6791 GFP_KERNEL);
6792 if (NULL != hdspm->tco) {
6793 hdspm_tco_write(hdspm);
6794 }
6795 snd_printk(KERN_INFO "HDSPM: AIO/RayDAT TCO module found\n");
6796 } else {
6797 hdspm->tco = NULL;
6798 }
6799 break;
6800
6801 case MADI:
0dc831b9 6802 case AES32:
0dca1793
AK
6803 if (hdspm_read(hdspm, HDSPM_statusRegister) & HDSPM_tco_detect) {
6804 hdspm->midiPorts++;
6805 hdspm->tco = kzalloc(sizeof(struct hdspm_tco),
6806 GFP_KERNEL);
6807 if (NULL != hdspm->tco) {
6808 hdspm_tco_write(hdspm);
6809 }
e71b95ad 6810 snd_printk(KERN_INFO "HDSPM: MADI/AES TCO module found\n");
0dca1793
AK
6811 } else {
6812 hdspm->tco = NULL;
6813 }
6814 break;
6815
6816 default:
6817 hdspm->tco = NULL;
6818 }
6819
6820 /* texts */
6821 switch (hdspm->io_type) {
6822 case AES32:
6823 if (hdspm->tco) {
6824 hdspm->texts_autosync = texts_autosync_aes_tco;
e71b95ad
AK
6825 hdspm->texts_autosync_items =
6826 ARRAY_SIZE(texts_autosync_aes_tco);
0dca1793
AK
6827 } else {
6828 hdspm->texts_autosync = texts_autosync_aes;
e71b95ad
AK
6829 hdspm->texts_autosync_items =
6830 ARRAY_SIZE(texts_autosync_aes);
0dca1793
AK
6831 }
6832 break;
6833
6834 case MADI:
6835 if (hdspm->tco) {
6836 hdspm->texts_autosync = texts_autosync_madi_tco;
6837 hdspm->texts_autosync_items = 4;
6838 } else {
6839 hdspm->texts_autosync = texts_autosync_madi;
6840 hdspm->texts_autosync_items = 3;
6841 }
6842 break;
6843
6844 case MADIface:
6845
6846 break;
6847
6848 case RayDAT:
6849 if (hdspm->tco) {
6850 hdspm->texts_autosync = texts_autosync_raydat_tco;
6851 hdspm->texts_autosync_items = 9;
6852 } else {
6853 hdspm->texts_autosync = texts_autosync_raydat;
6854 hdspm->texts_autosync_items = 8;
6855 }
6856 break;
6857
6858 case AIO:
6859 if (hdspm->tco) {
6860 hdspm->texts_autosync = texts_autosync_aio_tco;
6861 hdspm->texts_autosync_items = 6;
6862 } else {
6863 hdspm->texts_autosync = texts_autosync_aio;
6864 hdspm->texts_autosync_items = 5;
6865 }
6866 break;
6867
6868 }
6869
6870 tasklet_init(&hdspm->midi_tasklet,
6871 hdspm_midi_tasklet, (unsigned long) hdspm);
763f356c 6872
f7de8ba3
AK
6873
6874 if (hdspm->io_type != MADIface) {
6875 hdspm->serial = (hdspm_read(hdspm,
6876 HDSPM_midiStatusIn0)>>8) & 0xFFFFFF;
6877 /* id contains either a user-provided value or the default
6878 * NULL. If it's the default, we're safe to
6879 * fill card->id with the serial number.
6880 *
6881 * If the serial number is 0xFFFFFF, then we're dealing with
6882 * an old PCI revision that comes without a sane number. In
6883 * this case, we don't set card->id to avoid collisions
6884 * when running with multiple cards.
6885 */
6886 if (NULL == id[hdspm->dev] && hdspm->serial != 0xFFFFFF) {
6887 sprintf(card->id, "HDSPMx%06x", hdspm->serial);
6888 snd_card_set_id(card, card->id);
6889 }
6890 }
6891
763f356c 6892 snd_printdd("create alsa devices.\n");
ef5fa1a4
TI
6893 err = snd_hdspm_create_alsa_devices(card, hdspm);
6894 if (err < 0)
763f356c
TI
6895 return err;
6896
6897 snd_hdspm_initialize_midi_flush(hdspm);
6898
6899 return 0;
6900}
6901
0dca1793 6902
98274f07 6903static int snd_hdspm_free(struct hdspm * hdspm)
763f356c
TI
6904{
6905
6906 if (hdspm->port) {
6907
6908 /* stop th audio, and cancel all interrupts */
6909 hdspm->control_register &=
ef5fa1a4 6910 ~(HDSPM_Start | HDSPM_AudioInterruptEnable |
0dca1793
AK
6911 HDSPM_Midi0InterruptEnable | HDSPM_Midi1InterruptEnable |
6912 HDSPM_Midi2InterruptEnable | HDSPM_Midi3InterruptEnable);
763f356c
TI
6913 hdspm_write(hdspm, HDSPM_controlRegister,
6914 hdspm->control_register);
6915 }
6916
6917 if (hdspm->irq >= 0)
6918 free_irq(hdspm->irq, (void *) hdspm);
6919
fc58422a 6920 kfree(hdspm->mixer);
763f356c
TI
6921
6922 if (hdspm->iobase)
6923 iounmap(hdspm->iobase);
6924
763f356c
TI
6925 if (hdspm->port)
6926 pci_release_regions(hdspm->pci);
6927
6928 pci_disable_device(hdspm->pci);
6929 return 0;
6930}
6931
0dca1793 6932
98274f07 6933static void snd_hdspm_card_free(struct snd_card *card)
763f356c 6934{
ef5fa1a4 6935 struct hdspm *hdspm = card->private_data;
763f356c
TI
6936
6937 if (hdspm)
6938 snd_hdspm_free(hdspm);
6939}
6940
0dca1793 6941
e23e7a14
BP
6942static int snd_hdspm_probe(struct pci_dev *pci,
6943 const struct pci_device_id *pci_id)
763f356c
TI
6944{
6945 static int dev;
98274f07
TI
6946 struct hdspm *hdspm;
6947 struct snd_card *card;
763f356c
TI
6948 int err;
6949
6950 if (dev >= SNDRV_CARDS)
6951 return -ENODEV;
6952 if (!enable[dev]) {
6953 dev++;
6954 return -ENOENT;
6955 }
6956
e58de7ba 6957 err = snd_card_create(index[dev], id[dev],
0dca1793 6958 THIS_MODULE, sizeof(struct hdspm), &card);
e58de7ba
TI
6959 if (err < 0)
6960 return err;
763f356c 6961
ef5fa1a4 6962 hdspm = card->private_data;
763f356c
TI
6963 card->private_free = snd_hdspm_card_free;
6964 hdspm->dev = dev;
6965 hdspm->pci = pci;
6966
c187c041
TI
6967 snd_card_set_dev(card, &pci->dev);
6968
0dca1793 6969 err = snd_hdspm_create(card, hdspm);
ef5fa1a4 6970 if (err < 0) {
763f356c
TI
6971 snd_card_free(card);
6972 return err;
6973 }
6974
0dca1793
AK
6975 if (hdspm->io_type != MADIface) {
6976 sprintf(card->shortname, "%s_%x",
6977 hdspm->card_name,
7d53a631 6978 hdspm->serial);
0dca1793
AK
6979 sprintf(card->longname, "%s S/N 0x%x at 0x%lx, irq %d",
6980 hdspm->card_name,
7d53a631 6981 hdspm->serial,
0dca1793
AK
6982 hdspm->port, hdspm->irq);
6983 } else {
6984 sprintf(card->shortname, "%s", hdspm->card_name);
6985 sprintf(card->longname, "%s at 0x%lx, irq %d",
6986 hdspm->card_name, hdspm->port, hdspm->irq);
6987 }
763f356c 6988
ef5fa1a4
TI
6989 err = snd_card_register(card);
6990 if (err < 0) {
763f356c
TI
6991 snd_card_free(card);
6992 return err;
6993 }
6994
6995 pci_set_drvdata(pci, card);
6996
6997 dev++;
6998 return 0;
6999}
7000
e23e7a14 7001static void snd_hdspm_remove(struct pci_dev *pci)
763f356c
TI
7002{
7003 snd_card_free(pci_get_drvdata(pci));
763f356c
TI
7004}
7005
e9f66d9b 7006static struct pci_driver hdspm_driver = {
3733e424 7007 .name = KBUILD_MODNAME,
763f356c
TI
7008 .id_table = snd_hdspm_ids,
7009 .probe = snd_hdspm_probe,
e23e7a14 7010 .remove = snd_hdspm_remove,
763f356c
TI
7011};
7012
e9f66d9b 7013module_pci_driver(hdspm_driver);
This page took 1.638573 seconds and 5 git commands to generate.