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