blob: 976e3a6b05082b753c2af94c2f7e2efd9f3f7744 [file] [log] [blame]
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001/*
Takashi Iwai763f3562005-06-03 11:25:34 +02002 * 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
Remy Bruno3cee5a62006-10-16 12:46:32 +02008 * Modified 2006-06-01 for AES32 support by Remy Bruno
9 * <remy.bruno@trinnov.com>
Takashi Iwai763f3562005-06-03 11:25:34 +020010 *
Adrian Knoth0dca1792011-01-26 19:32:14 +010011 * 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 *
Takashi Iwai763f3562005-06-03 11:25:34 +020026 * 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 */
Takashi Iwai763f3562005-06-03 11:25:34 +020041#include <linux/init.h>
42#include <linux/delay.h>
43#include <linux/interrupt.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040044#include <linux/module.h>
Takashi Iwai763f3562005-06-03 11:25:34 +020045#include <linux/slab.h>
46#include <linux/pci.h>
Takashi Iwai3f7440a2009-06-05 17:40:04 +020047#include <linux/math64.h>
Takashi Iwai763f3562005-06-03 11:25:34 +020048#include <asm/io.h>
49
50#include <sound/core.h>
51#include <sound/control.h>
52#include <sound/pcm.h>
Adrian Knoth0dca1792011-01-26 19:32:14 +010053#include <sound/pcm_params.h>
Takashi Iwai763f3562005-06-03 11:25:34 +020054#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 */
Rusty Russella67ff6a2011-12-15 13:49:36 +103064static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
Takashi Iwai763f3562005-06-03 11:25:34 +020065
Takashi Iwai763f3562005-06-03 11:25:34 +020066module_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
Takashi Iwai763f3562005-06-03 11:25:34 +020075
76MODULE_AUTHOR
Adrian Knoth0dca1792011-01-26 19:32:14 +010077(
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);
Takashi Iwai763f3562005-06-03 11:25:34 +020085MODULE_DESCRIPTION("RME HDSPM");
86MODULE_LICENSE("GPL");
87MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}");
88
Adrian Knoth0dca1792011-01-26 19:32:14 +010089/* --- Write registers. ---
Takashi Iwai763f3562005-06-03 11:25:34 +020090 These are defined as byte-offsets from the iobase value. */
91
Adrian Knoth0dca1792011-01-26 19:32:14 +010092#define HDSPM_WR_SETTINGS 0
93#define HDSPM_outputBufferAddress 32
94#define HDSPM_inputBufferAddress 36
Takashi Iwai763f3562005-06-03 11:25:34 +020095#define HDSPM_controlRegister 64
96#define HDSPM_interruptConfirmation 96
97#define HDSPM_control2Reg 256 /* not in specs ???????? */
Remy Brunoffb2c3c2007-03-07 19:08:46 +010098#define HDSPM_freqReg 256 /* for AES32 */
Adrian Knoth0dca1792011-01-26 19:32:14 +010099#define HDSPM_midiDataOut0 352 /* just believe in old code */
100#define HDSPM_midiDataOut1 356
Remy Brunoffb2c3c2007-03-07 19:08:46 +0100101#define HDSPM_eeprom_wr 384 /* for AES32 */
Takashi Iwai763f3562005-06-03 11:25:34 +0200102
103/* DMA enable for 64 channels, only Bit 0 is relevant */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100104#define HDSPM_outputEnableBase 512 /* 512-767 input DMA */
Takashi Iwai763f3562005-06-03 11:25:34 +0200105#define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */
106
Adrian Knoth0dca1792011-01-26 19:32:14 +0100107/* 16 page addresses for each of the 64 channels DMA buffer in and out
Takashi Iwai763f3562005-06-03 11:25:34 +0200108 (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
Remy Bruno3cee5a62006-10-16 12:46:32 +0200119/*#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
Takashi Iwai763f3562005-06-03 11:25:34 +0200125
Adrian Knoth0dca1792011-01-26 19:32:14 +0100126/* 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
Takashi Iwai763f3562005-06-03 11:25:34 +0200171#define HDSPM_midiDataIn0 360
172#define HDSPM_midiDataIn1 364
Adrian Knoth0dca1792011-01-26 19:32:14 +0100173#define HDSPM_midiDataIn2 372
174#define HDSPM_midiDataIn3 376
Takashi Iwai763f3562005-06-03 11:25:34 +0200175
176/* status is data bytes in MIDI-FIFO (0-128) */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100177#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
Takashi Iwai763f3562005-06-03 11:25:34 +0200185
186
187/* the meters are regular i/o-mapped registers, but offset
188 considerably from the rest. the peak registers are reset
Adrian Knoth0dca1792011-01-26 19:32:14 +0100189 when read; the least-significant 4 bits are full-scale counters;
Takashi Iwai763f3562005-06-03 11:25:34 +0200190 the actual peak value is in the most-significant 24 bits.
191*/
Adrian Knoth0dca1792011-01-26 19:32:14 +0100192
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
Takashi Iwai763f3562005-06-03 11:25:34 +0200204
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
Adrian Knoth0dca1792011-01-26 19:32:14 +0100212#define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Autosync */
213#define HDSPM_c0Master 0x1 /* Master clock bit in settings
214 register [RayDAT, AIO] */
Takashi Iwai763f3562005-06-03 11:25:34 +0200215
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 */
Remy Bruno3cee5a62006-10-16 12:46:32 +0200221#define HDSPM_QuadSpeed (1<<31) /* quad speed bit */
Takashi Iwai763f3562005-06-03 11:25:34 +0200222
Remy Bruno3cee5a62006-10-16 12:46:32 +0200223#define HDSPM_Professional (1<<9) /* Professional */ /* AES32 ONLY */
Takashi Iwai763f3562005-06-03 11:25:34 +0200224#define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1,
Remy Bruno3cee5a62006-10-16 12:46:32 +0200225 56channelMODE=0 */ /* MADI ONLY*/
226#define HDSPM_Emphasis (1<<10) /* Emphasis */ /* AES32 ONLY */
Takashi Iwai763f3562005-06-03 11:25:34 +0200227
Adrian Knoth0dca1792011-01-26 19:32:14 +0100228#define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode,
Remy Bruno3cee5a62006-10-16 12:46:32 +0200229 0=off, 1=on */ /* MADI ONLY */
230#define HDSPM_Dolby (1<<11) /* Dolby = "NonAudio" ?? */ /* AES32 ONLY */
Takashi Iwai763f3562005-06-03 11:25:34 +0200231
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200232#define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax
233 * -- MADI ONLY
234 */
Takashi Iwai763f3562005-06-03 11:25:34 +0200235#define HDSPM_InputSelect1 (1<<15) /* should be 0 */
236
Remy Bruno3cee5a62006-10-16 12:46:32 +0200237#define HDSPM_SyncRef2 (1<<13)
238#define HDSPM_SyncRef3 (1<<25)
Takashi Iwai763f3562005-06-03 11:25:34 +0200239
Remy Bruno3cee5a62006-10-16 12:46:32 +0200240#define HDSPM_SMUX (1<<18) /* Frame ??? */ /* MADI ONY */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100241#define HDSPM_clr_tms (1<<19) /* clear track marker, do not use
Takashi Iwai763f3562005-06-03 11:25:34 +0200242 AES additional bits in
243 lower 5 Audiodatabits ??? */
Remy Bruno3cee5a62006-10-16 12:46:32 +0200244#define HDSPM_taxi_reset (1<<20) /* ??? */ /* MADI ONLY ? */
245#define HDSPM_WCK48 (1<<20) /* Frame ??? = HDSPM_SMUX */ /* AES32 ONLY */
Takashi Iwai763f3562005-06-03 11:25:34 +0200246
Adrian Knoth0dca1792011-01-26 19:32:14 +0100247#define HDSPM_Midi0InterruptEnable 0x0400000
248#define HDSPM_Midi1InterruptEnable 0x0800000
249#define HDSPM_Midi2InterruptEnable 0x0200000
250#define HDSPM_Midi3InterruptEnable 0x4000000
Takashi Iwai763f3562005-06-03 11:25:34 +0200251
252#define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100253#define HDSPe_FLOAT_FORMAT 0x2000000
Takashi Iwai763f3562005-06-03 11:25:34 +0200254
Remy Bruno3cee5a62006-10-16 12:46:32 +0200255#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)
Takashi Iwai763f3562005-06-03 11:25:34 +0200260
261/* --- bit helper defines */
262#define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200263#define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1|\
264 HDSPM_DoubleSpeed|HDSPM_QuadSpeed)
Takashi Iwai763f3562005-06-03 11:25:34 +0200265#define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1)
266#define HDSPM_InputOptical 0
267#define HDSPM_InputCoaxial (HDSPM_InputSelect0)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200268#define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1|\
269 HDSPM_SyncRef2|HDSPM_SyncRef3)
Takashi Iwai763f3562005-06-03 11:25:34 +0200270
Adrian Knoth0dca1792011-01-26 19:32:14 +0100271#define HDSPM_c0_SyncRef0 0x2
272#define HDSPM_c0_SyncRef1 0x4
273#define HDSPM_c0_SyncRef2 0x8
274#define HDSPM_c0_SyncRef3 0x10
275#define HDSPM_c0_SyncRefMask (HDSPM_c0_SyncRef0 | HDSPM_c0_SyncRef1 |\
276 HDSPM_c0_SyncRef2 | HDSPM_c0_SyncRef3)
277
278#define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */
279#define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */
280#define HDSPM_SYNC_FROM_TCO 2
281#define HDSPM_SYNC_FROM_SYNC_IN 3
Takashi Iwai763f3562005-06-03 11:25:34 +0200282
283#define HDSPM_Frequency32KHz HDSPM_Frequency0
284#define HDSPM_Frequency44_1KHz HDSPM_Frequency1
285#define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0)
286#define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0)
287#define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200288#define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|\
289 HDSPM_Frequency0)
Remy Bruno3cee5a62006-10-16 12:46:32 +0200290#define HDSPM_Frequency128KHz (HDSPM_QuadSpeed|HDSPM_Frequency0)
291#define HDSPM_Frequency176_4KHz (HDSPM_QuadSpeed|HDSPM_Frequency1)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200292#define HDSPM_Frequency192KHz (HDSPM_QuadSpeed|HDSPM_Frequency1|\
293 HDSPM_Frequency0)
Takashi Iwai763f3562005-06-03 11:25:34 +0200294
Takashi Iwai763f3562005-06-03 11:25:34 +0200295
296/* Synccheck Status */
297#define HDSPM_SYNC_CHECK_NO_LOCK 0
298#define HDSPM_SYNC_CHECK_LOCK 1
299#define HDSPM_SYNC_CHECK_SYNC 2
300
301/* AutoSync References - used by "autosync_ref" control switch */
302#define HDSPM_AUTOSYNC_FROM_WORD 0
303#define HDSPM_AUTOSYNC_FROM_MADI 1
Adrian Knoth0dca1792011-01-26 19:32:14 +0100304#define HDSPM_AUTOSYNC_FROM_TCO 2
305#define HDSPM_AUTOSYNC_FROM_SYNC_IN 3
306#define HDSPM_AUTOSYNC_FROM_NONE 4
Takashi Iwai763f3562005-06-03 11:25:34 +0200307
308/* Possible sources of MADI input */
309#define HDSPM_OPTICAL 0 /* optical */
310#define HDSPM_COAXIAL 1 /* BNC */
311
312#define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask)
Adrian Knoth0dca1792011-01-26 19:32:14 +0100313#define hdspm_decode_latency(x) ((((x) & HDSPM_LatencyMask)>>1))
Takashi Iwai763f3562005-06-03 11:25:34 +0200314
315#define hdspm_encode_in(x) (((x)&0x3)<<14)
316#define hdspm_decode_in(x) (((x)>>14)&0x3)
317
318/* --- control2 register bits --- */
319#define HDSPM_TMS (1<<0)
320#define HDSPM_TCK (1<<1)
321#define HDSPM_TDI (1<<2)
322#define HDSPM_JTAG (1<<3)
323#define HDSPM_PWDN (1<<4)
324#define HDSPM_PROGRAM (1<<5)
325#define HDSPM_CONFIG_MODE_0 (1<<6)
326#define HDSPM_CONFIG_MODE_1 (1<<7)
327/*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/
328#define HDSPM_BIGENDIAN_MODE (1<<9)
329#define HDSPM_RD_MULTIPLE (1<<10)
330
Remy Bruno3cee5a62006-10-16 12:46:32 +0200331/* --- Status Register bits --- */ /* MADI ONLY */ /* Bits defined here and
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200332 that do not conflict with specific bits for AES32 seem to be valid also
333 for the AES32
334 */
Takashi Iwai763f3562005-06-03 11:25:34 +0200335#define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200336#define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn MODE=0 */
337#define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1
338 * (like inp0)
339 */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100340
Takashi Iwai763f3562005-06-03 11:25:34 +0200341#define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100342#define HDSPM_madiSync (1<<18) /* MADI is in sync */
343
344#define HDSPM_tcoLock 0x00000020 /* Optional TCO locked status FOR HDSPe MADI! */
345#define HDSPM_tcoSync 0x10000000 /* Optional TCO sync status */
346
347#define HDSPM_syncInLock 0x00010000 /* Sync In lock status FOR HDSPe MADI! */
348#define HDSPM_syncInSync 0x00020000 /* Sync In sync status FOR HDSPe MADI! */
Takashi Iwai763f3562005-06-03 11:25:34 +0200349
350#define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100351 /* since 64byte accurate, last 6 bits are not used */
Takashi Iwai763f3562005-06-03 11:25:34 +0200352
Adrian Knoth0dca1792011-01-26 19:32:14 +0100353
354
Takashi Iwai763f3562005-06-03 11:25:34 +0200355#define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */
356
357#define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */
358#define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */
359#define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */
360#define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */
361
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200362#define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with
363 * Interrupt
364 */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100365#define HDSPM_tco_detect 0x08000000
366#define HDSPM_tco_lock 0x20000000
367
368#define HDSPM_s2_tco_detect 0x00000040
369#define HDSPM_s2_AEBO_D 0x00000080
370#define HDSPM_s2_AEBI_D 0x00000100
371
372
373#define HDSPM_midi0IRQPending 0x40000000
374#define HDSPM_midi1IRQPending 0x80000000
375#define HDSPM_midi2IRQPending 0x20000000
376#define HDSPM_midi2IRQPendingAES 0x00000020
377#define HDSPM_midi3IRQPending 0x00200000
Takashi Iwai763f3562005-06-03 11:25:34 +0200378
379/* --- status bit helpers */
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200380#define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|\
381 HDSPM_madiFreq2|HDSPM_madiFreq3)
Takashi Iwai763f3562005-06-03 11:25:34 +0200382#define HDSPM_madiFreq32 (HDSPM_madiFreq0)
383#define HDSPM_madiFreq44_1 (HDSPM_madiFreq1)
384#define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1)
385#define HDSPM_madiFreq64 (HDSPM_madiFreq2)
386#define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2)
387#define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2)
388#define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2)
389#define HDSPM_madiFreq176_4 (HDSPM_madiFreq3)
390#define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0)
391
Remy Bruno3cee5a62006-10-16 12:46:32 +0200392/* Status2 Register bits */ /* MADI ONLY */
Takashi Iwai763f3562005-06-03 11:25:34 +0200393
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300394#define HDSPM_version0 (1<<0) /* not really defined but I guess */
Takashi Iwai763f3562005-06-03 11:25:34 +0200395#define HDSPM_version1 (1<<1) /* in former cards it was ??? */
396#define HDSPM_version2 (1<<2)
397
398#define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */
399#define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */
400
401#define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */
402#define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */
403#define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, */
404/* missing Bit for 111=128, 1000=176.4, 1001=192 */
405
Adrian Knoth0dca1792011-01-26 19:32:14 +0100406#define HDSPM_SyncRef0 0x10000 /* Sync Reference */
407#define HDSPM_SyncRef1 0x20000
408
409#define HDSPM_SelSyncRef0 (1<<8) /* AutoSync Source */
Takashi Iwai763f3562005-06-03 11:25:34 +0200410#define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */
411#define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */
412
413#define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync)
414
415#define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2)
416#define HDSPM_wcFreq32 (HDSPM_wc_freq0)
417#define HDSPM_wcFreq44_1 (HDSPM_wc_freq1)
418#define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1)
419#define HDSPM_wcFreq64 (HDSPM_wc_freq2)
420#define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2)
421#define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2)
422
Adrian Knoth0dca1792011-01-26 19:32:14 +0100423#define HDSPM_status1_F_0 0x0400000
424#define HDSPM_status1_F_1 0x0800000
425#define HDSPM_status1_F_2 0x1000000
426#define HDSPM_status1_F_3 0x2000000
427#define HDSPM_status1_freqMask (HDSPM_status1_F_0|HDSPM_status1_F_1|HDSPM_status1_F_2|HDSPM_status1_F_3)
428
Takashi Iwai763f3562005-06-03 11:25:34 +0200429
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200430#define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
431 HDSPM_SelSyncRef2)
Takashi Iwai763f3562005-06-03 11:25:34 +0200432#define HDSPM_SelSyncRef_WORD 0
433#define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0)
Adrian Knoth0dca1792011-01-26 19:32:14 +0100434#define HDSPM_SelSyncRef_TCO (HDSPM_SelSyncRef1)
435#define HDSPM_SelSyncRef_SyncIn (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200436#define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|\
437 HDSPM_SelSyncRef2)
Takashi Iwai763f3562005-06-03 11:25:34 +0200438
Remy Bruno3cee5a62006-10-16 12:46:32 +0200439/*
440 For AES32, bits for status, status2 and timecode are different
441*/
442/* status */
443#define HDSPM_AES32_wcLock 0x0200000
444#define HDSPM_AES32_wcFreq_bit 22
Adrian Knoth0dca1792011-01-26 19:32:14 +0100445/* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function
Remy Bruno3cee5a62006-10-16 12:46:32 +0200446 HDSPM_bit2freq */
447#define HDSPM_AES32_syncref_bit 16
448/* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */
449
450#define HDSPM_AES32_AUTOSYNC_FROM_WORD 0
451#define HDSPM_AES32_AUTOSYNC_FROM_AES1 1
452#define HDSPM_AES32_AUTOSYNC_FROM_AES2 2
453#define HDSPM_AES32_AUTOSYNC_FROM_AES3 3
454#define HDSPM_AES32_AUTOSYNC_FROM_AES4 4
455#define HDSPM_AES32_AUTOSYNC_FROM_AES5 5
456#define HDSPM_AES32_AUTOSYNC_FROM_AES6 6
457#define HDSPM_AES32_AUTOSYNC_FROM_AES7 7
458#define HDSPM_AES32_AUTOSYNC_FROM_AES8 8
Remy Bruno65345992007-08-31 12:21:08 +0200459#define HDSPM_AES32_AUTOSYNC_FROM_NONE 9
Remy Bruno3cee5a62006-10-16 12:46:32 +0200460
461/* status2 */
462/* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */
463#define HDSPM_LockAES 0x80
464#define HDSPM_LockAES1 0x80
465#define HDSPM_LockAES2 0x40
466#define HDSPM_LockAES3 0x20
467#define HDSPM_LockAES4 0x10
468#define HDSPM_LockAES5 0x8
469#define HDSPM_LockAES6 0x4
470#define HDSPM_LockAES7 0x2
471#define HDSPM_LockAES8 0x1
472/*
473 Timecode
474 After windows driver sources, bits 4*i to 4*i+3 give the input frequency on
475 AES i+1
476 bits 3210
477 0001 32kHz
478 0010 44.1kHz
479 0011 48kHz
480 0100 64kHz
481 0101 88.2kHz
482 0110 96kHz
483 0111 128kHz
484 1000 176.4kHz
485 1001 192kHz
486 NB: Timecode register doesn't seem to work on AES32 card revision 230
487*/
488
Takashi Iwai763f3562005-06-03 11:25:34 +0200489/* Mixer Values */
490#define UNITY_GAIN 32768 /* = 65536/2 */
491#define MINUS_INFINITY_GAIN 0
492
Takashi Iwai763f3562005-06-03 11:25:34 +0200493/* Number of channels for different Speed Modes */
494#define MADI_SS_CHANNELS 64
495#define MADI_DS_CHANNELS 32
496#define MADI_QS_CHANNELS 16
497
Adrian Knoth0dca1792011-01-26 19:32:14 +0100498#define RAYDAT_SS_CHANNELS 36
499#define RAYDAT_DS_CHANNELS 20
500#define RAYDAT_QS_CHANNELS 12
501
502#define AIO_IN_SS_CHANNELS 14
503#define AIO_IN_DS_CHANNELS 10
504#define AIO_IN_QS_CHANNELS 8
505#define AIO_OUT_SS_CHANNELS 16
506#define AIO_OUT_DS_CHANNELS 12
507#define AIO_OUT_QS_CHANNELS 10
508
Adrian Knothd2d10a22011-02-28 15:14:47 +0100509#define AES32_CHANNELS 16
510
Takashi Iwai763f3562005-06-03 11:25:34 +0200511/* the size of a substream (1 mono data stream) */
512#define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
513#define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
514
515/* the size of the area we need to allocate for DMA transfers. the
516 size is the same regardless of the number of channels, and
Adrian Knoth0dca1792011-01-26 19:32:14 +0100517 also the latency to use.
Takashi Iwai763f3562005-06-03 11:25:34 +0200518 for one direction !!!
519*/
Remy Brunoffb2c3c2007-03-07 19:08:46 +0100520#define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
Takashi Iwai763f3562005-06-03 11:25:34 +0200521#define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
522
Adrian Knoth0dca1792011-01-26 19:32:14 +0100523#define HDSPM_RAYDAT_REV 211
524#define HDSPM_AIO_REV 212
525#define HDSPM_MADIFACE_REV 213
Remy Bruno3cee5a62006-10-16 12:46:32 +0200526
Remy Bruno65345992007-08-31 12:21:08 +0200527/* speed factor modes */
528#define HDSPM_SPEED_SINGLE 0
529#define HDSPM_SPEED_DOUBLE 1
530#define HDSPM_SPEED_QUAD 2
Adrian Knoth0dca1792011-01-26 19:32:14 +0100531
Remy Bruno65345992007-08-31 12:21:08 +0200532/* names for speed modes */
533static char *hdspm_speed_names[] = { "single", "double", "quad" };
534
Adrian Knoth0dca1792011-01-26 19:32:14 +0100535static char *texts_autosync_aes_tco[] = { "Word Clock",
536 "AES1", "AES2", "AES3", "AES4",
537 "AES5", "AES6", "AES7", "AES8",
538 "TCO" };
539static char *texts_autosync_aes[] = { "Word Clock",
540 "AES1", "AES2", "AES3", "AES4",
541 "AES5", "AES6", "AES7", "AES8" };
542static char *texts_autosync_madi_tco[] = { "Word Clock",
543 "MADI", "TCO", "Sync In" };
544static char *texts_autosync_madi[] = { "Word Clock",
545 "MADI", "Sync In" };
546
547static char *texts_autosync_raydat_tco[] = {
548 "Word Clock",
549 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
550 "AES", "SPDIF", "TCO", "Sync In"
551};
552static char *texts_autosync_raydat[] = {
553 "Word Clock",
554 "ADAT 1", "ADAT 2", "ADAT 3", "ADAT 4",
555 "AES", "SPDIF", "Sync In"
556};
557static char *texts_autosync_aio_tco[] = {
558 "Word Clock",
559 "ADAT", "AES", "SPDIF", "TCO", "Sync In"
560};
561static char *texts_autosync_aio[] = { "Word Clock",
562 "ADAT", "AES", "SPDIF", "Sync In" };
563
564static char *texts_freq[] = {
565 "No Lock",
566 "32 kHz",
567 "44.1 kHz",
568 "48 kHz",
569 "64 kHz",
570 "88.2 kHz",
571 "96 kHz",
572 "128 kHz",
573 "176.4 kHz",
574 "192 kHz"
575};
576
Adrian Knoth0dca1792011-01-26 19:32:14 +0100577static char *texts_ports_madi[] = {
578 "MADI.1", "MADI.2", "MADI.3", "MADI.4", "MADI.5", "MADI.6",
579 "MADI.7", "MADI.8", "MADI.9", "MADI.10", "MADI.11", "MADI.12",
580 "MADI.13", "MADI.14", "MADI.15", "MADI.16", "MADI.17", "MADI.18",
581 "MADI.19", "MADI.20", "MADI.21", "MADI.22", "MADI.23", "MADI.24",
582 "MADI.25", "MADI.26", "MADI.27", "MADI.28", "MADI.29", "MADI.30",
583 "MADI.31", "MADI.32", "MADI.33", "MADI.34", "MADI.35", "MADI.36",
584 "MADI.37", "MADI.38", "MADI.39", "MADI.40", "MADI.41", "MADI.42",
585 "MADI.43", "MADI.44", "MADI.45", "MADI.46", "MADI.47", "MADI.48",
586 "MADI.49", "MADI.50", "MADI.51", "MADI.52", "MADI.53", "MADI.54",
587 "MADI.55", "MADI.56", "MADI.57", "MADI.58", "MADI.59", "MADI.60",
588 "MADI.61", "MADI.62", "MADI.63", "MADI.64",
589};
590
591
592static char *texts_ports_raydat_ss[] = {
593 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4", "ADAT1.5", "ADAT1.6",
594 "ADAT1.7", "ADAT1.8", "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
595 "ADAT2.5", "ADAT2.6", "ADAT2.7", "ADAT2.8", "ADAT3.1", "ADAT3.2",
596 "ADAT3.3", "ADAT3.4", "ADAT3.5", "ADAT3.6", "ADAT3.7", "ADAT3.8",
597 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4", "ADAT4.5", "ADAT4.6",
598 "ADAT4.7", "ADAT4.8",
599 "AES.L", "AES.R",
600 "SPDIF.L", "SPDIF.R"
601};
602
603static char *texts_ports_raydat_ds[] = {
604 "ADAT1.1", "ADAT1.2", "ADAT1.3", "ADAT1.4",
605 "ADAT2.1", "ADAT2.2", "ADAT2.3", "ADAT2.4",
606 "ADAT3.1", "ADAT3.2", "ADAT3.3", "ADAT3.4",
607 "ADAT4.1", "ADAT4.2", "ADAT4.3", "ADAT4.4",
608 "AES.L", "AES.R",
609 "SPDIF.L", "SPDIF.R"
610};
611
612static char *texts_ports_raydat_qs[] = {
613 "ADAT1.1", "ADAT1.2",
614 "ADAT2.1", "ADAT2.2",
615 "ADAT3.1", "ADAT3.2",
616 "ADAT4.1", "ADAT4.2",
617 "AES.L", "AES.R",
618 "SPDIF.L", "SPDIF.R"
619};
620
621
622static char *texts_ports_aio_in_ss[] = {
623 "Analogue.L", "Analogue.R",
624 "AES.L", "AES.R",
625 "SPDIF.L", "SPDIF.R",
626 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
627 "ADAT.7", "ADAT.8"
628};
629
630static char *texts_ports_aio_out_ss[] = {
631 "Analogue.L", "Analogue.R",
632 "AES.L", "AES.R",
633 "SPDIF.L", "SPDIF.R",
634 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4", "ADAT.5", "ADAT.6",
635 "ADAT.7", "ADAT.8",
636 "Phone.L", "Phone.R"
637};
638
639static char *texts_ports_aio_in_ds[] = {
640 "Analogue.L", "Analogue.R",
641 "AES.L", "AES.R",
642 "SPDIF.L", "SPDIF.R",
643 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
644};
645
646static char *texts_ports_aio_out_ds[] = {
647 "Analogue.L", "Analogue.R",
648 "AES.L", "AES.R",
649 "SPDIF.L", "SPDIF.R",
650 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
651 "Phone.L", "Phone.R"
652};
653
654static char *texts_ports_aio_in_qs[] = {
655 "Analogue.L", "Analogue.R",
656 "AES.L", "AES.R",
657 "SPDIF.L", "SPDIF.R",
658 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4"
659};
660
661static char *texts_ports_aio_out_qs[] = {
662 "Analogue.L", "Analogue.R",
663 "AES.L", "AES.R",
664 "SPDIF.L", "SPDIF.R",
665 "ADAT.1", "ADAT.2", "ADAT.3", "ADAT.4",
666 "Phone.L", "Phone.R"
667};
668
Adrian Knoth432d2502011-02-23 11:43:08 +0100669static char *texts_ports_aes32[] = {
670 "AES.1", "AES.2", "AES.3", "AES.4", "AES.5", "AES.6", "AES.7",
671 "AES.8", "AES.9.", "AES.10", "AES.11", "AES.12", "AES.13", "AES.14",
672 "AES.15", "AES.16"
673};
674
Adrian Knoth55a57602011-01-27 11:23:15 +0100675/* These tables map the ALSA channels 1..N to the channels that we
676 need to use in order to find the relevant channel buffer. RME
677 refers to this kind of mapping as between "the ADAT channel and
678 the DMA channel." We index it using the logical audio channel,
679 and the value is the DMA channel (i.e. channel buffer number)
680 where the data for that channel can be read/written from/to.
681*/
682
683static char channel_map_unity_ss[HDSPM_MAX_CHANNELS] = {
684 0, 1, 2, 3, 4, 5, 6, 7,
685 8, 9, 10, 11, 12, 13, 14, 15,
686 16, 17, 18, 19, 20, 21, 22, 23,
687 24, 25, 26, 27, 28, 29, 30, 31,
688 32, 33, 34, 35, 36, 37, 38, 39,
689 40, 41, 42, 43, 44, 45, 46, 47,
690 48, 49, 50, 51, 52, 53, 54, 55,
691 56, 57, 58, 59, 60, 61, 62, 63
692};
693
Adrian Knoth55a57602011-01-27 11:23:15 +0100694static char channel_map_raydat_ss[HDSPM_MAX_CHANNELS] = {
695 4, 5, 6, 7, 8, 9, 10, 11, /* ADAT 1 */
696 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT 2 */
697 20, 21, 22, 23, 24, 25, 26, 27, /* ADAT 3 */
698 28, 29, 30, 31, 32, 33, 34, 35, /* ADAT 4 */
699 0, 1, /* AES */
700 2, 3, /* SPDIF */
701 -1, -1, -1, -1,
702 -1, -1, -1, -1, -1, -1, -1, -1,
703 -1, -1, -1, -1, -1, -1, -1, -1,
704 -1, -1, -1, -1, -1, -1, -1, -1,
705};
706
707static char channel_map_raydat_ds[HDSPM_MAX_CHANNELS] = {
708 4, 5, 6, 7, /* ADAT 1 */
709 8, 9, 10, 11, /* ADAT 2 */
710 12, 13, 14, 15, /* ADAT 3 */
711 16, 17, 18, 19, /* ADAT 4 */
712 0, 1, /* AES */
713 2, 3, /* SPDIF */
714 -1, -1, -1, -1,
715 -1, -1, -1, -1, -1, -1, -1, -1,
716 -1, -1, -1, -1, -1, -1, -1, -1,
717 -1, -1, -1, -1, -1, -1, -1, -1,
718 -1, -1, -1, -1, -1, -1, -1, -1,
719 -1, -1, -1, -1, -1, -1, -1, -1,
720};
721
722static char channel_map_raydat_qs[HDSPM_MAX_CHANNELS] = {
723 4, 5, /* ADAT 1 */
724 6, 7, /* ADAT 2 */
725 8, 9, /* ADAT 3 */
726 10, 11, /* ADAT 4 */
727 0, 1, /* AES */
728 2, 3, /* SPDIF */
729 -1, -1, -1, -1,
730 -1, -1, -1, -1, -1, -1, -1, -1,
731 -1, -1, -1, -1, -1, -1, -1, -1,
732 -1, -1, -1, -1, -1, -1, -1, -1,
733 -1, -1, -1, -1, -1, -1, -1, -1,
734 -1, -1, -1, -1, -1, -1, -1, -1,
735 -1, -1, -1, -1, -1, -1, -1, -1,
736};
737
738static char channel_map_aio_in_ss[HDSPM_MAX_CHANNELS] = {
739 0, 1, /* line in */
740 8, 9, /* aes in, */
741 10, 11, /* spdif in */
742 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT in */
743 -1, -1,
744 -1, -1, -1, -1, -1, -1, -1, -1,
745 -1, -1, -1, -1, -1, -1, -1, -1,
746 -1, -1, -1, -1, -1, -1, -1, -1,
747 -1, -1, -1, -1, -1, -1, -1, -1,
748 -1, -1, -1, -1, -1, -1, -1, -1,
749 -1, -1, -1, -1, -1, -1, -1, -1,
750};
751
752static char channel_map_aio_out_ss[HDSPM_MAX_CHANNELS] = {
753 0, 1, /* line out */
754 8, 9, /* aes out */
755 10, 11, /* spdif out */
756 12, 13, 14, 15, 16, 17, 18, 19, /* ADAT out */
757 6, 7, /* phone out */
758 -1, -1, -1, -1, -1, -1, -1, -1,
759 -1, -1, -1, -1, -1, -1, -1, -1,
760 -1, -1, -1, -1, -1, -1, -1, -1,
761 -1, -1, -1, -1, -1, -1, -1, -1,
762 -1, -1, -1, -1, -1, -1, -1, -1,
763 -1, -1, -1, -1, -1, -1, -1, -1,
764};
765
766static char channel_map_aio_in_ds[HDSPM_MAX_CHANNELS] = {
767 0, 1, /* line in */
768 8, 9, /* aes in */
769 10, 11, /* spdif in */
770 12, 14, 16, 18, /* adat in */
771 -1, -1, -1, -1, -1, -1,
772 -1, -1, -1, -1, -1, -1, -1, -1,
773 -1, -1, -1, -1, -1, -1, -1, -1,
774 -1, -1, -1, -1, -1, -1, -1, -1,
775 -1, -1, -1, -1, -1, -1, -1, -1,
776 -1, -1, -1, -1, -1, -1, -1, -1,
777 -1, -1, -1, -1, -1, -1, -1, -1
778};
779
780static char channel_map_aio_out_ds[HDSPM_MAX_CHANNELS] = {
781 0, 1, /* line out */
782 8, 9, /* aes out */
783 10, 11, /* spdif out */
784 12, 14, 16, 18, /* adat out */
785 6, 7, /* phone out */
786 -1, -1, -1, -1,
787 -1, -1, -1, -1, -1, -1, -1, -1,
788 -1, -1, -1, -1, -1, -1, -1, -1,
789 -1, -1, -1, -1, -1, -1, -1, -1,
790 -1, -1, -1, -1, -1, -1, -1, -1,
791 -1, -1, -1, -1, -1, -1, -1, -1,
792 -1, -1, -1, -1, -1, -1, -1, -1
793};
794
795static char channel_map_aio_in_qs[HDSPM_MAX_CHANNELS] = {
796 0, 1, /* line in */
797 8, 9, /* aes in */
798 10, 11, /* spdif in */
799 12, 16, /* adat in */
800 -1, -1, -1, -1, -1, -1, -1, -1,
801 -1, -1, -1, -1, -1, -1, -1, -1,
802 -1, -1, -1, -1, -1, -1, -1, -1,
803 -1, -1, -1, -1, -1, -1, -1, -1,
804 -1, -1, -1, -1, -1, -1, -1, -1,
805 -1, -1, -1, -1, -1, -1, -1, -1,
806 -1, -1, -1, -1, -1, -1, -1, -1
807};
808
809static char channel_map_aio_out_qs[HDSPM_MAX_CHANNELS] = {
810 0, 1, /* line out */
811 8, 9, /* aes out */
812 10, 11, /* spdif out */
813 12, 16, /* adat out */
814 6, 7, /* phone out */
815 -1, -1, -1, -1, -1, -1,
816 -1, -1, -1, -1, -1, -1, -1, -1,
817 -1, -1, -1, -1, -1, -1, -1, -1,
818 -1, -1, -1, -1, -1, -1, -1, -1,
819 -1, -1, -1, -1, -1, -1, -1, -1,
820 -1, -1, -1, -1, -1, -1, -1, -1,
821 -1, -1, -1, -1, -1, -1, -1, -1
822};
823
Adrian Knoth432d2502011-02-23 11:43:08 +0100824static char channel_map_aes32[HDSPM_MAX_CHANNELS] = {
825 0, 1, 2, 3, 4, 5, 6, 7,
826 8, 9, 10, 11, 12, 13, 14, 15,
827 -1, -1, -1, -1, -1, -1, -1, -1,
828 -1, -1, -1, -1, -1, -1, -1, -1,
829 -1, -1, -1, -1, -1, -1, -1, -1,
830 -1, -1, -1, -1, -1, -1, -1, -1,
831 -1, -1, -1, -1, -1, -1, -1, -1,
832 -1, -1, -1, -1, -1, -1, -1, -1
833};
834
Takashi Iwai98274f02005-11-17 14:52:34 +0100835struct hdspm_midi {
836 struct hdspm *hdspm;
Takashi Iwai763f3562005-06-03 11:25:34 +0200837 int id;
Takashi Iwai98274f02005-11-17 14:52:34 +0100838 struct snd_rawmidi *rmidi;
839 struct snd_rawmidi_substream *input;
840 struct snd_rawmidi_substream *output;
Takashi Iwai763f3562005-06-03 11:25:34 +0200841 char istimer; /* timer in use */
842 struct timer_list timer;
843 spinlock_t lock;
844 int pending;
Adrian Knoth0dca1792011-01-26 19:32:14 +0100845 int dataIn;
846 int statusIn;
847 int dataOut;
848 int statusOut;
849 int ie;
850 int irq;
851};
852
853struct hdspm_tco {
854 int input;
855 int framerate;
856 int wordclock;
857 int samplerate;
858 int pull;
859 int term; /* 0 = off, 1 = on */
Takashi Iwai763f3562005-06-03 11:25:34 +0200860};
861
Takashi Iwai98274f02005-11-17 14:52:34 +0100862struct hdspm {
Takashi Iwai763f3562005-06-03 11:25:34 +0200863 spinlock_t lock;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200864 /* only one playback and/or capture stream */
865 struct snd_pcm_substream *capture_substream;
866 struct snd_pcm_substream *playback_substream;
Takashi Iwai763f3562005-06-03 11:25:34 +0200867
868 char *card_name; /* for procinfo */
Remy Bruno3cee5a62006-10-16 12:46:32 +0200869 unsigned short firmware_rev; /* dont know if relevant (yes if AES32)*/
870
Adrian Knoth0dca1792011-01-26 19:32:14 +0100871 uint8_t io_type;
Takashi Iwai763f3562005-06-03 11:25:34 +0200872
Takashi Iwai763f3562005-06-03 11:25:34 +0200873 int monitor_outs; /* set up monitoring outs init flag */
874
875 u32 control_register; /* cached value */
876 u32 control2_register; /* cached value */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100877 u32 settings_register;
Takashi Iwai763f3562005-06-03 11:25:34 +0200878
Adrian Knoth0dca1792011-01-26 19:32:14 +0100879 struct hdspm_midi midi[4];
Takashi Iwai763f3562005-06-03 11:25:34 +0200880 struct tasklet_struct midi_tasklet;
881
882 size_t period_bytes;
Adrian Knoth0dca1792011-01-26 19:32:14 +0100883 unsigned char ss_in_channels;
884 unsigned char ds_in_channels;
885 unsigned char qs_in_channels;
886 unsigned char ss_out_channels;
887 unsigned char ds_out_channels;
888 unsigned char qs_out_channels;
889
890 unsigned char max_channels_in;
891 unsigned char max_channels_out;
892
Takashi Iwai286bed02011-06-30 12:45:36 +0200893 signed char *channel_map_in;
894 signed char *channel_map_out;
Adrian Knoth0dca1792011-01-26 19:32:14 +0100895
Takashi Iwai286bed02011-06-30 12:45:36 +0200896 signed char *channel_map_in_ss, *channel_map_in_ds, *channel_map_in_qs;
897 signed char *channel_map_out_ss, *channel_map_out_ds, *channel_map_out_qs;
Adrian Knoth0dca1792011-01-26 19:32:14 +0100898
899 char **port_names_in;
900 char **port_names_out;
901
902 char **port_names_in_ss, **port_names_in_ds, **port_names_in_qs;
903 char **port_names_out_ss, **port_names_out_ds, **port_names_out_qs;
Takashi Iwai763f3562005-06-03 11:25:34 +0200904
905 unsigned char *playback_buffer; /* suitably aligned address */
906 unsigned char *capture_buffer; /* suitably aligned address */
907
908 pid_t capture_pid; /* process id which uses capture */
909 pid_t playback_pid; /* process id which uses capture */
910 int running; /* running status */
911
912 int last_external_sample_rate; /* samplerate mystic ... */
913 int last_internal_sample_rate;
914 int system_sample_rate;
915
Takashi Iwai763f3562005-06-03 11:25:34 +0200916 int dev; /* Hardware vars... */
917 int irq;
918 unsigned long port;
919 void __iomem *iobase;
920
921 int irq_count; /* for debug */
Adrian Knoth0dca1792011-01-26 19:32:14 +0100922 int midiPorts;
Takashi Iwai763f3562005-06-03 11:25:34 +0200923
Takashi Iwai98274f02005-11-17 14:52:34 +0100924 struct snd_card *card; /* one card */
925 struct snd_pcm *pcm; /* has one pcm */
926 struct snd_hwdep *hwdep; /* and a hwdep for additional ioctl */
Takashi Iwai763f3562005-06-03 11:25:34 +0200927 struct pci_dev *pci; /* and an pci info */
928
929 /* Mixer vars */
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200930 /* fast alsa mixer */
931 struct snd_kcontrol *playback_mixer_ctls[HDSPM_MAX_CHANNELS];
932 /* but input to much, so not used */
933 struct snd_kcontrol *input_mixer_ctls[HDSPM_MAX_CHANNELS];
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300934 /* full mixer accessible over mixer ioctl or hwdep-device */
Takashi Iwaief5fa1a2007-07-27 16:52:46 +0200935 struct hdspm_mixer *mixer;
Takashi Iwai763f3562005-06-03 11:25:34 +0200936
Adrian Knoth0dca1792011-01-26 19:32:14 +0100937 struct hdspm_tco *tco; /* NULL if no TCO detected */
Takashi Iwai763f3562005-06-03 11:25:34 +0200938
Adrian Knoth0dca1792011-01-26 19:32:14 +0100939 char **texts_autosync;
940 int texts_autosync_items;
Takashi Iwai763f3562005-06-03 11:25:34 +0200941
Adrian Knoth0dca1792011-01-26 19:32:14 +0100942 cycles_t last_interrupt;
Jaroslav Kysela730a5862011-01-27 13:03:15 +0100943
Adrian Knoth7d53a632012-01-04 14:31:16 +0100944 unsigned int serial;
945
Jaroslav Kysela730a5862011-01-27 13:03:15 +0100946 struct hdspm_peak_rms peak_rms;
Takashi Iwai763f3562005-06-03 11:25:34 +0200947};
948
Takashi Iwai763f3562005-06-03 11:25:34 +0200949
Alexey Dobriyancebe41d2010-02-06 00:21:03 +0200950static DEFINE_PCI_DEVICE_TABLE(snd_hdspm_ids) = {
Takashi Iwai763f3562005-06-03 11:25:34 +0200951 {
952 .vendor = PCI_VENDOR_ID_XILINX,
953 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI,
954 .subvendor = PCI_ANY_ID,
955 .subdevice = PCI_ANY_ID,
956 .class = 0,
957 .class_mask = 0,
958 .driver_data = 0},
959 {0,}
960};
961
962MODULE_DEVICE_TABLE(pci, snd_hdspm_ids);
963
964/* prototypes */
Takashi Iwai98274f02005-11-17 14:52:34 +0100965static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
966 struct hdspm * hdspm);
967static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
968 struct hdspm * hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +0200969
Adrian Knoth0dca1792011-01-26 19:32:14 +0100970static inline void snd_hdspm_initialize_midi_flush(struct hdspm *hdspm);
971static int hdspm_update_simple_mixer_controls(struct hdspm *hdspm);
972static int hdspm_autosync_ref(struct hdspm *hdspm);
973static int snd_hdspm_set_defaults(struct hdspm *hdspm);
Adrian Knoth21a164d2012-10-19 17:42:23 +0200974static int hdspm_system_clock_mode(struct hdspm *hdspm);
Adrian Knoth0dca1792011-01-26 19:32:14 +0100975static void hdspm_set_sgbuf(struct hdspm *hdspm,
Takashi Iwai77a23f22008-08-21 13:00:13 +0200976 struct snd_pcm_substream *substream,
Takashi Iwai763f3562005-06-03 11:25:34 +0200977 unsigned int reg, int channels);
978
Remy Bruno3cee5a62006-10-16 12:46:32 +0200979static inline int HDSPM_bit2freq(int n)
980{
Denys Vlasenko62cef822008-04-14 13:04:18 +0200981 static const int bit2freq_tab[] = {
982 0, 32000, 44100, 48000, 64000, 88200,
Remy Bruno3cee5a62006-10-16 12:46:32 +0200983 96000, 128000, 176400, 192000 };
984 if (n < 1 || n > 9)
985 return 0;
986 return bit2freq_tab[n];
987}
988
Adrian Knoth0dca1792011-01-26 19:32:14 +0100989/* Write/read to/from HDSPM with Adresses in Bytes
Takashi Iwai763f3562005-06-03 11:25:34 +0200990 not words but only 32Bit writes are allowed */
991
Takashi Iwai98274f02005-11-17 14:52:34 +0100992static inline void hdspm_write(struct hdspm * hdspm, unsigned int reg,
Takashi Iwai763f3562005-06-03 11:25:34 +0200993 unsigned int val)
994{
995 writel(val, hdspm->iobase + reg);
996}
997
Takashi Iwai98274f02005-11-17 14:52:34 +0100998static inline unsigned int hdspm_read(struct hdspm * hdspm, unsigned int reg)
Takashi Iwai763f3562005-06-03 11:25:34 +0200999{
1000 return readl(hdspm->iobase + reg);
1001}
1002
Adrian Knoth0dca1792011-01-26 19:32:14 +01001003/* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
1004 mixer is write only on hardware so we have to cache him for read
Takashi Iwai763f3562005-06-03 11:25:34 +02001005 each fader is a u32, but uses only the first 16 bit */
1006
Takashi Iwai98274f02005-11-17 14:52:34 +01001007static inline int hdspm_read_in_gain(struct hdspm * hdspm, unsigned int chan,
Takashi Iwai763f3562005-06-03 11:25:34 +02001008 unsigned int in)
1009{
Adrian Bunk5bab24822006-03-13 14:15:04 +01001010 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
Takashi Iwai763f3562005-06-03 11:25:34 +02001011 return 0;
1012
1013 return hdspm->mixer->ch[chan].in[in];
1014}
1015
Takashi Iwai98274f02005-11-17 14:52:34 +01001016static inline int hdspm_read_pb_gain(struct hdspm * hdspm, unsigned int chan,
Takashi Iwai763f3562005-06-03 11:25:34 +02001017 unsigned int pb)
1018{
Adrian Bunk5bab24822006-03-13 14:15:04 +01001019 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
Takashi Iwai763f3562005-06-03 11:25:34 +02001020 return 0;
1021 return hdspm->mixer->ch[chan].pb[pb];
1022}
1023
Denys Vlasenko62cef822008-04-14 13:04:18 +02001024static int hdspm_write_in_gain(struct hdspm *hdspm, unsigned int chan,
Takashi Iwai763f3562005-06-03 11:25:34 +02001025 unsigned int in, unsigned short data)
1026{
1027 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
1028 return -1;
1029
1030 hdspm_write(hdspm,
1031 HDSPM_MADI_mixerBase +
1032 ((in + 128 * chan) * sizeof(u32)),
1033 (hdspm->mixer->ch[chan].in[in] = data & 0xFFFF));
1034 return 0;
1035}
1036
Denys Vlasenko62cef822008-04-14 13:04:18 +02001037static int hdspm_write_pb_gain(struct hdspm *hdspm, unsigned int chan,
Takashi Iwai763f3562005-06-03 11:25:34 +02001038 unsigned int pb, unsigned short data)
1039{
1040 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
1041 return -1;
1042
1043 hdspm_write(hdspm,
1044 HDSPM_MADI_mixerBase +
1045 ((64 + pb + 128 * chan) * sizeof(u32)),
1046 (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF));
1047 return 0;
1048}
1049
1050
1051/* enable DMA for specific channels, now available for DSP-MADI */
Takashi Iwai98274f02005-11-17 14:52:34 +01001052static inline void snd_hdspm_enable_in(struct hdspm * hdspm, int i, int v)
Takashi Iwai763f3562005-06-03 11:25:34 +02001053{
1054 hdspm_write(hdspm, HDSPM_inputEnableBase + (4 * i), v);
1055}
1056
Takashi Iwai98274f02005-11-17 14:52:34 +01001057static inline void snd_hdspm_enable_out(struct hdspm * hdspm, int i, int v)
Takashi Iwai763f3562005-06-03 11:25:34 +02001058{
1059 hdspm_write(hdspm, HDSPM_outputEnableBase + (4 * i), v);
1060}
1061
1062/* check if same process is writing and reading */
Denys Vlasenko62cef822008-04-14 13:04:18 +02001063static int snd_hdspm_use_is_exclusive(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02001064{
1065 unsigned long flags;
1066 int ret = 1;
1067
1068 spin_lock_irqsave(&hdspm->lock, flags);
1069 if ((hdspm->playback_pid != hdspm->capture_pid) &&
1070 (hdspm->playback_pid >= 0) && (hdspm->capture_pid >= 0)) {
1071 ret = 0;
1072 }
1073 spin_unlock_irqrestore(&hdspm->lock, flags);
1074 return ret;
1075}
1076
1077/* check for external sample rate */
Denys Vlasenko62cef822008-04-14 13:04:18 +02001078static int hdspm_external_sample_rate(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02001079{
Adrian Knoth0dca1792011-01-26 19:32:14 +01001080 unsigned int status, status2, timecode;
1081 int syncref, rate = 0, rate_bits;
Takashi Iwai763f3562005-06-03 11:25:34 +02001082
Adrian Knoth0dca1792011-01-26 19:32:14 +01001083 switch (hdspm->io_type) {
1084 case AES32:
1085 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1086 status = hdspm_read(hdspm, HDSPM_statusRegister);
Adrian Knoth7c4a95b2011-02-23 11:43:13 +01001087 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001088
1089 syncref = hdspm_autosync_ref(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02001090
Remy Bruno3cee5a62006-10-16 12:46:32 +02001091 if (syncref == HDSPM_AES32_AUTOSYNC_FROM_WORD &&
1092 status & HDSPM_AES32_wcLock)
Adrian Knoth0dca1792011-01-26 19:32:14 +01001093 return HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit) & 0xF);
1094
Remy Bruno3cee5a62006-10-16 12:46:32 +02001095 if (syncref >= HDSPM_AES32_AUTOSYNC_FROM_AES1 &&
Adrian Knoth0dca1792011-01-26 19:32:14 +01001096 syncref <= HDSPM_AES32_AUTOSYNC_FROM_AES8 &&
1097 status2 & (HDSPM_LockAES >>
1098 (syncref - HDSPM_AES32_AUTOSYNC_FROM_AES1)))
1099 return HDSPM_bit2freq((timecode >> (4*(syncref-HDSPM_AES32_AUTOSYNC_FROM_AES1))) & 0xF);
Remy Bruno3cee5a62006-10-16 12:46:32 +02001100 return 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001101 break;
1102
1103 case MADIface:
1104 status = hdspm_read(hdspm, HDSPM_statusRegister);
1105
1106 if (!(status & HDSPM_madiLock)) {
1107 rate = 0; /* no lock */
1108 } else {
1109 switch (status & (HDSPM_status1_freqMask)) {
1110 case HDSPM_status1_F_0*1:
1111 rate = 32000; break;
1112 case HDSPM_status1_F_0*2:
1113 rate = 44100; break;
1114 case HDSPM_status1_F_0*3:
1115 rate = 48000; break;
1116 case HDSPM_status1_F_0*4:
1117 rate = 64000; break;
1118 case HDSPM_status1_F_0*5:
1119 rate = 88200; break;
1120 case HDSPM_status1_F_0*6:
1121 rate = 96000; break;
1122 case HDSPM_status1_F_0*7:
1123 rate = 128000; break;
1124 case HDSPM_status1_F_0*8:
1125 rate = 176400; break;
1126 case HDSPM_status1_F_0*9:
1127 rate = 192000; break;
1128 default:
1129 rate = 0; break;
1130 }
1131 }
1132
1133 break;
1134
1135 case MADI:
1136 case AIO:
1137 case RayDAT:
1138 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1139 status = hdspm_read(hdspm, HDSPM_statusRegister);
1140 rate = 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02001141
Remy Bruno3cee5a62006-10-16 12:46:32 +02001142 /* if wordclock has synced freq and wordclock is valid */
1143 if ((status2 & HDSPM_wcLock) != 0 &&
Adrian Knothfedf1532011-06-12 17:26:18 +02001144 (status2 & HDSPM_SelSyncRef0) == 0) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02001145
1146 rate_bits = status2 & HDSPM_wcFreqMask;
1147
Adrian Knoth0dca1792011-01-26 19:32:14 +01001148
Remy Bruno3cee5a62006-10-16 12:46:32 +02001149 switch (rate_bits) {
1150 case HDSPM_wcFreq32:
1151 rate = 32000;
1152 break;
1153 case HDSPM_wcFreq44_1:
1154 rate = 44100;
1155 break;
1156 case HDSPM_wcFreq48:
1157 rate = 48000;
1158 break;
1159 case HDSPM_wcFreq64:
1160 rate = 64000;
1161 break;
1162 case HDSPM_wcFreq88_2:
1163 rate = 88200;
1164 break;
1165 case HDSPM_wcFreq96:
1166 rate = 96000;
1167 break;
Remy Bruno3cee5a62006-10-16 12:46:32 +02001168 default:
1169 rate = 0;
1170 break;
1171 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001172 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001173
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001174 /* if rate detected and Syncref is Word than have it,
1175 * word has priority to MADI
1176 */
Remy Bruno3cee5a62006-10-16 12:46:32 +02001177 if (rate != 0 &&
Adrian Knoth0dca1792011-01-26 19:32:14 +01001178 (status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD)
Remy Bruno3cee5a62006-10-16 12:46:32 +02001179 return rate;
1180
Adrian Knoth0dca1792011-01-26 19:32:14 +01001181 /* maybe a madi input (which is taken if sel sync is madi) */
Remy Bruno3cee5a62006-10-16 12:46:32 +02001182 if (status & HDSPM_madiLock) {
1183 rate_bits = status & HDSPM_madiFreqMask;
1184
1185 switch (rate_bits) {
1186 case HDSPM_madiFreq32:
1187 rate = 32000;
1188 break;
1189 case HDSPM_madiFreq44_1:
1190 rate = 44100;
1191 break;
1192 case HDSPM_madiFreq48:
1193 rate = 48000;
1194 break;
1195 case HDSPM_madiFreq64:
1196 rate = 64000;
1197 break;
1198 case HDSPM_madiFreq88_2:
1199 rate = 88200;
1200 break;
1201 case HDSPM_madiFreq96:
1202 rate = 96000;
1203 break;
1204 case HDSPM_madiFreq128:
1205 rate = 128000;
1206 break;
1207 case HDSPM_madiFreq176_4:
1208 rate = 176400;
1209 break;
1210 case HDSPM_madiFreq192:
1211 rate = 192000;
1212 break;
1213 default:
1214 rate = 0;
1215 break;
1216 }
Adrian Knothd12c51d2011-07-29 03:11:03 +02001217
1218 /* QS and DS rates normally can not be detected
1219 * automatically by the card. Only exception is MADI
1220 * in 96k frame mode.
1221 *
1222 * So if we read SS values (32 .. 48k), check for
1223 * user-provided DS/QS bits in the control register
1224 * and multiply the base frequency accordingly.
1225 */
1226 if (rate <= 48000) {
1227 if (hdspm->control_register & HDSPM_QuadSpeed)
1228 rate *= 4;
1229 else if (hdspm->control_register &
1230 HDSPM_DoubleSpeed)
1231 rate *= 2;
1232 }
Remy Bruno3cee5a62006-10-16 12:46:32 +02001233 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01001234 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02001235 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01001236
1237 return rate;
Takashi Iwai763f3562005-06-03 11:25:34 +02001238}
1239
Adrian Knoth7cb155f2011-08-15 00:22:53 +02001240/* return latency in samples per period */
1241static int hdspm_get_latency(struct hdspm *hdspm)
1242{
1243 int n;
1244
1245 n = hdspm_decode_latency(hdspm->control_register);
1246
1247 /* Special case for new RME cards with 32 samples period size.
1248 * The three latency bits in the control register
1249 * (HDSP_LatencyMask) encode latency values of 64 samples as
1250 * 0, 128 samples as 1 ... 4096 samples as 6. For old cards, 7
1251 * denotes 8192 samples, but on new cards like RayDAT or AIO,
1252 * it corresponds to 32 samples.
1253 */
1254 if ((7 == n) && (RayDAT == hdspm->io_type || AIO == hdspm->io_type))
1255 n = -1;
1256
1257 return 1 << (n + 6);
1258}
1259
Takashi Iwai763f3562005-06-03 11:25:34 +02001260/* Latency function */
Adrian Knoth0dca1792011-01-26 19:32:14 +01001261static inline void hdspm_compute_period_size(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02001262{
Adrian Knoth7cb155f2011-08-15 00:22:53 +02001263 hdspm->period_bytes = 4 * hdspm_get_latency(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02001264}
1265
Adrian Knoth0dca1792011-01-26 19:32:14 +01001266
1267static snd_pcm_uframes_t hdspm_hw_pointer(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02001268{
1269 int position;
1270
1271 position = hdspm_read(hdspm, HDSPM_statusRegister);
Adrian Knoth483cee72011-02-23 11:43:09 +01001272
1273 switch (hdspm->io_type) {
1274 case RayDAT:
1275 case AIO:
1276 position &= HDSPM_BufferPositionMask;
1277 position /= 4; /* Bytes per sample */
1278 break;
1279 default:
1280 position = (position & HDSPM_BufferID) ?
1281 (hdspm->period_bytes / 4) : 0;
1282 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001283
1284 return position;
1285}
1286
1287
Takashi Iwai98274f02005-11-17 14:52:34 +01001288static inline void hdspm_start_audio(struct hdspm * s)
Takashi Iwai763f3562005-06-03 11:25:34 +02001289{
1290 s->control_register |= (HDSPM_AudioInterruptEnable | HDSPM_Start);
1291 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1292}
1293
Takashi Iwai98274f02005-11-17 14:52:34 +01001294static inline void hdspm_stop_audio(struct hdspm * s)
Takashi Iwai763f3562005-06-03 11:25:34 +02001295{
1296 s->control_register &= ~(HDSPM_Start | HDSPM_AudioInterruptEnable);
1297 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1298}
1299
1300/* should I silence all or only opened ones ? doit all for first even is 4MB*/
Denys Vlasenko62cef822008-04-14 13:04:18 +02001301static void hdspm_silence_playback(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02001302{
1303 int i;
1304 int n = hdspm->period_bytes;
1305 void *buf = hdspm->playback_buffer;
1306
Remy Bruno3cee5a62006-10-16 12:46:32 +02001307 if (buf == NULL)
1308 return;
Takashi Iwai763f3562005-06-03 11:25:34 +02001309
1310 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
1311 memset(buf, 0, n);
1312 buf += HDSPM_CHANNEL_BUFFER_BYTES;
1313 }
1314}
1315
Adrian Knoth0dca1792011-01-26 19:32:14 +01001316static int hdspm_set_interrupt_interval(struct hdspm *s, unsigned int frames)
Takashi Iwai763f3562005-06-03 11:25:34 +02001317{
1318 int n;
1319
1320 spin_lock_irq(&s->lock);
1321
Adrian Knoth2e610272011-08-15 00:22:54 +02001322 if (32 == frames) {
1323 /* Special case for new RME cards like RayDAT/AIO which
1324 * support period sizes of 32 samples. Since latency is
1325 * encoded in the three bits of HDSP_LatencyMask, we can only
1326 * have values from 0 .. 7. While 0 still means 64 samples and
1327 * 6 represents 4096 samples on all cards, 7 represents 8192
1328 * on older cards and 32 samples on new cards.
1329 *
1330 * In other words, period size in samples is calculated by
1331 * 2^(n+6) with n ranging from 0 .. 7.
1332 */
1333 n = 7;
1334 } else {
1335 frames >>= 7;
1336 n = 0;
1337 while (frames) {
1338 n++;
1339 frames >>= 1;
1340 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001341 }
Adrian Knoth2e610272011-08-15 00:22:54 +02001342
Takashi Iwai763f3562005-06-03 11:25:34 +02001343 s->control_register &= ~HDSPM_LatencyMask;
1344 s->control_register |= hdspm_encode_latency(n);
1345
1346 hdspm_write(s, HDSPM_controlRegister, s->control_register);
1347
1348 hdspm_compute_period_size(s);
1349
1350 spin_unlock_irq(&s->lock);
1351
1352 return 0;
1353}
1354
Adrian Knoth0dca1792011-01-26 19:32:14 +01001355static u64 hdspm_calc_dds_value(struct hdspm *hdspm, u64 period)
1356{
1357 u64 freq_const;
1358
1359 if (period == 0)
1360 return 0;
1361
1362 switch (hdspm->io_type) {
1363 case MADI:
1364 case AES32:
1365 freq_const = 110069313433624ULL;
1366 break;
1367 case RayDAT:
1368 case AIO:
1369 freq_const = 104857600000000ULL;
1370 break;
1371 case MADIface:
1372 freq_const = 131072000000000ULL;
Takashi Iwai3d56c8e6b2011-08-05 12:30:12 +02001373 break;
1374 default:
1375 snd_BUG();
1376 return 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001377 }
1378
1379 return div_u64(freq_const, period);
1380}
1381
1382
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001383static void hdspm_set_dds_value(struct hdspm *hdspm, int rate)
1384{
1385 u64 n;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001386
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001387 if (rate >= 112000)
1388 rate /= 4;
1389 else if (rate >= 56000)
1390 rate /= 2;
1391
Adrian Knoth0dca1792011-01-26 19:32:14 +01001392 switch (hdspm->io_type) {
1393 case MADIface:
Takashi Iwai3d56c8e6b2011-08-05 12:30:12 +02001394 n = 131072000000000ULL; /* 125 MHz */
1395 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001396 case MADI:
1397 case AES32:
Takashi Iwai3d56c8e6b2011-08-05 12:30:12 +02001398 n = 110069313433624ULL; /* 105 MHz */
1399 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001400 case RayDAT:
1401 case AIO:
Takashi Iwai3d56c8e6b2011-08-05 12:30:12 +02001402 n = 104857600000000ULL; /* 100 MHz */
1403 break;
1404 default:
1405 snd_BUG();
1406 return;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001407 }
1408
Takashi Iwai3f7440a2009-06-05 17:40:04 +02001409 n = div_u64(n, rate);
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001410 /* n should be less than 2^32 for being written to FREQ register */
Takashi Iwaida3cec32008-08-08 17:12:14 +02001411 snd_BUG_ON(n >> 32);
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001412 hdspm_write(hdspm, HDSPM_freqReg, (u32)n);
1413}
Takashi Iwai763f3562005-06-03 11:25:34 +02001414
1415/* dummy set rate lets see what happens */
Takashi Iwai98274f02005-11-17 14:52:34 +01001416static int hdspm_set_rate(struct hdspm * hdspm, int rate, int called_internally)
Takashi Iwai763f3562005-06-03 11:25:34 +02001417{
Takashi Iwai763f3562005-06-03 11:25:34 +02001418 int current_rate;
1419 int rate_bits;
1420 int not_set = 0;
Remy Bruno65345992007-08-31 12:21:08 +02001421 int current_speed, target_speed;
Takashi Iwai763f3562005-06-03 11:25:34 +02001422
1423 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
1424 it (e.g. during module initialization).
1425 */
1426
1427 if (!(hdspm->control_register & HDSPM_ClockModeMaster)) {
1428
Adrian Knoth0dca1792011-01-26 19:32:14 +01001429 /* SLAVE --- */
Takashi Iwai763f3562005-06-03 11:25:34 +02001430 if (called_internally) {
1431
Adrian Knoth0dca1792011-01-26 19:32:14 +01001432 /* request from ctl or card initialization
1433 just make a warning an remember setting
1434 for future master mode switching */
1435
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001436 snd_printk(KERN_WARNING "HDSPM: "
1437 "Warning: device is not running "
1438 "as a clock master.\n");
Takashi Iwai763f3562005-06-03 11:25:34 +02001439 not_set = 1;
1440 } else {
1441
1442 /* hw_param request while in AutoSync mode */
1443 int external_freq =
1444 hdspm_external_sample_rate(hdspm);
1445
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001446 if (hdspm_autosync_ref(hdspm) ==
1447 HDSPM_AUTOSYNC_FROM_NONE) {
Takashi Iwai763f3562005-06-03 11:25:34 +02001448
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001449 snd_printk(KERN_WARNING "HDSPM: "
1450 "Detected no Externel Sync \n");
Takashi Iwai763f3562005-06-03 11:25:34 +02001451 not_set = 1;
1452
1453 } else if (rate != external_freq) {
1454
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001455 snd_printk(KERN_WARNING "HDSPM: "
1456 "Warning: No AutoSync source for "
1457 "requested rate\n");
Takashi Iwai763f3562005-06-03 11:25:34 +02001458 not_set = 1;
1459 }
1460 }
1461 }
1462
1463 current_rate = hdspm->system_sample_rate;
1464
1465 /* Changing between Singe, Double and Quad speed is not
1466 allowed if any substreams are open. This is because such a change
1467 causes a shift in the location of the DMA buffers and a reduction
1468 in the number of available buffers.
1469
1470 Note that a similar but essentially insoluble problem exists for
1471 externally-driven rate changes. All we can do is to flag rate
Adrian Knoth0dca1792011-01-26 19:32:14 +01001472 changes in the read/write routines.
Takashi Iwai763f3562005-06-03 11:25:34 +02001473 */
1474
Remy Bruno65345992007-08-31 12:21:08 +02001475 if (current_rate <= 48000)
1476 current_speed = HDSPM_SPEED_SINGLE;
1477 else if (current_rate <= 96000)
1478 current_speed = HDSPM_SPEED_DOUBLE;
1479 else
1480 current_speed = HDSPM_SPEED_QUAD;
1481
1482 if (rate <= 48000)
1483 target_speed = HDSPM_SPEED_SINGLE;
1484 else if (rate <= 96000)
1485 target_speed = HDSPM_SPEED_DOUBLE;
1486 else
1487 target_speed = HDSPM_SPEED_QUAD;
Remy Bruno3cee5a62006-10-16 12:46:32 +02001488
Takashi Iwai763f3562005-06-03 11:25:34 +02001489 switch (rate) {
1490 case 32000:
Takashi Iwai763f3562005-06-03 11:25:34 +02001491 rate_bits = HDSPM_Frequency32KHz;
1492 break;
1493 case 44100:
Takashi Iwai763f3562005-06-03 11:25:34 +02001494 rate_bits = HDSPM_Frequency44_1KHz;
1495 break;
1496 case 48000:
Takashi Iwai763f3562005-06-03 11:25:34 +02001497 rate_bits = HDSPM_Frequency48KHz;
1498 break;
1499 case 64000:
Takashi Iwai763f3562005-06-03 11:25:34 +02001500 rate_bits = HDSPM_Frequency64KHz;
1501 break;
1502 case 88200:
Takashi Iwai763f3562005-06-03 11:25:34 +02001503 rate_bits = HDSPM_Frequency88_2KHz;
1504 break;
1505 case 96000:
Takashi Iwai763f3562005-06-03 11:25:34 +02001506 rate_bits = HDSPM_Frequency96KHz;
1507 break;
Remy Bruno3cee5a62006-10-16 12:46:32 +02001508 case 128000:
Remy Bruno3cee5a62006-10-16 12:46:32 +02001509 rate_bits = HDSPM_Frequency128KHz;
1510 break;
1511 case 176400:
Remy Bruno3cee5a62006-10-16 12:46:32 +02001512 rate_bits = HDSPM_Frequency176_4KHz;
1513 break;
1514 case 192000:
Remy Bruno3cee5a62006-10-16 12:46:32 +02001515 rate_bits = HDSPM_Frequency192KHz;
1516 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02001517 default:
1518 return -EINVAL;
1519 }
1520
Remy Bruno65345992007-08-31 12:21:08 +02001521 if (current_speed != target_speed
Takashi Iwai763f3562005-06-03 11:25:34 +02001522 && (hdspm->capture_pid >= 0 || hdspm->playback_pid >= 0)) {
1523 snd_printk
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001524 (KERN_ERR "HDSPM: "
Remy Bruno65345992007-08-31 12:21:08 +02001525 "cannot change from %s speed to %s speed mode "
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001526 "(capture PID = %d, playback PID = %d)\n",
Remy Bruno65345992007-08-31 12:21:08 +02001527 hdspm_speed_names[current_speed],
1528 hdspm_speed_names[target_speed],
Takashi Iwai763f3562005-06-03 11:25:34 +02001529 hdspm->capture_pid, hdspm->playback_pid);
1530 return -EBUSY;
1531 }
1532
1533 hdspm->control_register &= ~HDSPM_FrequencyMask;
1534 hdspm->control_register |= rate_bits;
1535 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1536
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001537 /* For AES32, need to set DDS value in FREQ register
1538 For MADI, also apparently */
1539 hdspm_set_dds_value(hdspm, rate);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001540
1541 if (AES32 == hdspm->io_type && rate != current_rate)
Remy Brunoffb2c3c2007-03-07 19:08:46 +01001542 hdspm_write(hdspm, HDSPM_eeprom_wr, 0);
Takashi Iwai763f3562005-06-03 11:25:34 +02001543
1544 hdspm->system_sample_rate = rate;
1545
Adrian Knoth0dca1792011-01-26 19:32:14 +01001546 if (rate <= 48000) {
1547 hdspm->channel_map_in = hdspm->channel_map_in_ss;
1548 hdspm->channel_map_out = hdspm->channel_map_out_ss;
1549 hdspm->max_channels_in = hdspm->ss_in_channels;
1550 hdspm->max_channels_out = hdspm->ss_out_channels;
1551 hdspm->port_names_in = hdspm->port_names_in_ss;
1552 hdspm->port_names_out = hdspm->port_names_out_ss;
1553 } else if (rate <= 96000) {
1554 hdspm->channel_map_in = hdspm->channel_map_in_ds;
1555 hdspm->channel_map_out = hdspm->channel_map_out_ds;
1556 hdspm->max_channels_in = hdspm->ds_in_channels;
1557 hdspm->max_channels_out = hdspm->ds_out_channels;
1558 hdspm->port_names_in = hdspm->port_names_in_ds;
1559 hdspm->port_names_out = hdspm->port_names_out_ds;
1560 } else {
1561 hdspm->channel_map_in = hdspm->channel_map_in_qs;
1562 hdspm->channel_map_out = hdspm->channel_map_out_qs;
1563 hdspm->max_channels_in = hdspm->qs_in_channels;
1564 hdspm->max_channels_out = hdspm->qs_out_channels;
1565 hdspm->port_names_in = hdspm->port_names_in_qs;
1566 hdspm->port_names_out = hdspm->port_names_out_qs;
1567 }
1568
Takashi Iwai763f3562005-06-03 11:25:34 +02001569 if (not_set != 0)
1570 return -1;
1571
1572 return 0;
1573}
1574
1575/* mainly for init to 0 on load */
Takashi Iwai98274f02005-11-17 14:52:34 +01001576static void all_in_all_mixer(struct hdspm * hdspm, int sgain)
Takashi Iwai763f3562005-06-03 11:25:34 +02001577{
1578 int i, j;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001579 unsigned int gain;
1580
1581 if (sgain > UNITY_GAIN)
1582 gain = UNITY_GAIN;
1583 else if (sgain < 0)
1584 gain = 0;
1585 else
1586 gain = sgain;
Takashi Iwai763f3562005-06-03 11:25:34 +02001587
1588 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++)
1589 for (j = 0; j < HDSPM_MIXER_CHANNELS; j++) {
1590 hdspm_write_in_gain(hdspm, i, j, gain);
1591 hdspm_write_pb_gain(hdspm, i, j, gain);
1592 }
1593}
1594
1595/*----------------------------------------------------------------------------
1596 MIDI
1597 ----------------------------------------------------------------------------*/
1598
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001599static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm *hdspm,
1600 int id)
Takashi Iwai763f3562005-06-03 11:25:34 +02001601{
1602 /* the hardware already does the relevant bit-mask with 0xff */
Adrian Knoth0dca1792011-01-26 19:32:14 +01001603 return hdspm_read(hdspm, hdspm->midi[id].dataIn);
Takashi Iwai763f3562005-06-03 11:25:34 +02001604}
1605
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001606static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id,
1607 int val)
Takashi Iwai763f3562005-06-03 11:25:34 +02001608{
1609 /* the hardware already does the relevant bit-mask with 0xff */
Adrian Knoth0dca1792011-01-26 19:32:14 +01001610 return hdspm_write(hdspm, hdspm->midi[id].dataOut, val);
Takashi Iwai763f3562005-06-03 11:25:34 +02001611}
1612
Takashi Iwai98274f02005-11-17 14:52:34 +01001613static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id)
Takashi Iwai763f3562005-06-03 11:25:34 +02001614{
Adrian Knoth0dca1792011-01-26 19:32:14 +01001615 return hdspm_read(hdspm, hdspm->midi[id].statusIn) & 0xFF;
Takashi Iwai763f3562005-06-03 11:25:34 +02001616}
1617
Takashi Iwai98274f02005-11-17 14:52:34 +01001618static inline int snd_hdspm_midi_output_possible (struct hdspm *hdspm, int id)
Takashi Iwai763f3562005-06-03 11:25:34 +02001619{
1620 int fifo_bytes_used;
1621
Adrian Knoth0dca1792011-01-26 19:32:14 +01001622 fifo_bytes_used = hdspm_read(hdspm, hdspm->midi[id].statusOut) & 0xFF;
Takashi Iwai763f3562005-06-03 11:25:34 +02001623
1624 if (fifo_bytes_used < 128)
1625 return 128 - fifo_bytes_used;
1626 else
1627 return 0;
1628}
1629
Denys Vlasenko62cef822008-04-14 13:04:18 +02001630static void snd_hdspm_flush_midi_input(struct hdspm *hdspm, int id)
Takashi Iwai763f3562005-06-03 11:25:34 +02001631{
1632 while (snd_hdspm_midi_input_available (hdspm, id))
1633 snd_hdspm_midi_read_byte (hdspm, id);
1634}
1635
Takashi Iwai98274f02005-11-17 14:52:34 +01001636static int snd_hdspm_midi_output_write (struct hdspm_midi *hmidi)
Takashi Iwai763f3562005-06-03 11:25:34 +02001637{
1638 unsigned long flags;
1639 int n_pending;
1640 int to_write;
1641 int i;
1642 unsigned char buf[128];
1643
1644 /* Output is not interrupt driven */
Adrian Knoth0dca1792011-01-26 19:32:14 +01001645
Takashi Iwai763f3562005-06-03 11:25:34 +02001646 spin_lock_irqsave (&hmidi->lock, flags);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001647 if (hmidi->output &&
1648 !snd_rawmidi_transmit_empty (hmidi->output)) {
1649 n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm,
1650 hmidi->id);
1651 if (n_pending > 0) {
1652 if (n_pending > (int)sizeof (buf))
1653 n_pending = sizeof (buf);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001654
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001655 to_write = snd_rawmidi_transmit (hmidi->output, buf,
1656 n_pending);
1657 if (to_write > 0) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01001658 for (i = 0; i < to_write; ++i)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001659 snd_hdspm_midi_write_byte (hmidi->hdspm,
1660 hmidi->id,
1661 buf[i]);
Takashi Iwai763f3562005-06-03 11:25:34 +02001662 }
1663 }
1664 }
1665 spin_unlock_irqrestore (&hmidi->lock, flags);
1666 return 0;
1667}
1668
Takashi Iwai98274f02005-11-17 14:52:34 +01001669static int snd_hdspm_midi_input_read (struct hdspm_midi *hmidi)
Takashi Iwai763f3562005-06-03 11:25:34 +02001670{
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001671 unsigned char buf[128]; /* this buffer is designed to match the MIDI
1672 * input FIFO size
1673 */
Takashi Iwai763f3562005-06-03 11:25:34 +02001674 unsigned long flags;
1675 int n_pending;
1676 int i;
1677
1678 spin_lock_irqsave (&hmidi->lock, flags);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001679 n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id);
1680 if (n_pending > 0) {
Takashi Iwai763f3562005-06-03 11:25:34 +02001681 if (hmidi->input) {
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001682 if (n_pending > (int)sizeof (buf))
Takashi Iwai763f3562005-06-03 11:25:34 +02001683 n_pending = sizeof (buf);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001684 for (i = 0; i < n_pending; ++i)
1685 buf[i] = snd_hdspm_midi_read_byte (hmidi->hdspm,
1686 hmidi->id);
1687 if (n_pending)
1688 snd_rawmidi_receive (hmidi->input, buf,
1689 n_pending);
Takashi Iwai763f3562005-06-03 11:25:34 +02001690 } else {
1691 /* flush the MIDI input FIFO */
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001692 while (n_pending--)
1693 snd_hdspm_midi_read_byte (hmidi->hdspm,
1694 hmidi->id);
Takashi Iwai763f3562005-06-03 11:25:34 +02001695 }
1696 }
1697 hmidi->pending = 0;
Adrian Knothc0da0012011-06-12 17:26:17 +02001698 spin_unlock_irqrestore(&hmidi->lock, flags);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001699
Adrian Knothc0da0012011-06-12 17:26:17 +02001700 spin_lock_irqsave(&hmidi->hdspm->lock, flags);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001701 hmidi->hdspm->control_register |= hmidi->ie;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001702 hdspm_write(hmidi->hdspm, HDSPM_controlRegister,
1703 hmidi->hdspm->control_register);
Adrian Knothc0da0012011-06-12 17:26:17 +02001704 spin_unlock_irqrestore(&hmidi->hdspm->lock, flags);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001705
Takashi Iwai763f3562005-06-03 11:25:34 +02001706 return snd_hdspm_midi_output_write (hmidi);
1707}
1708
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001709static void
1710snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Takashi Iwai763f3562005-06-03 11:25:34 +02001711{
Takashi Iwai98274f02005-11-17 14:52:34 +01001712 struct hdspm *hdspm;
1713 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001714 unsigned long flags;
Takashi Iwai763f3562005-06-03 11:25:34 +02001715
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001716 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001717 hdspm = hmidi->hdspm;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001718
Takashi Iwai763f3562005-06-03 11:25:34 +02001719 spin_lock_irqsave (&hdspm->lock, flags);
1720 if (up) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01001721 if (!(hdspm->control_register & hmidi->ie)) {
Takashi Iwai763f3562005-06-03 11:25:34 +02001722 snd_hdspm_flush_midi_input (hdspm, hmidi->id);
Adrian Knoth0dca1792011-01-26 19:32:14 +01001723 hdspm->control_register |= hmidi->ie;
Takashi Iwai763f3562005-06-03 11:25:34 +02001724 }
1725 } else {
Adrian Knoth0dca1792011-01-26 19:32:14 +01001726 hdspm->control_register &= ~hmidi->ie;
Takashi Iwai763f3562005-06-03 11:25:34 +02001727 }
1728
1729 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1730 spin_unlock_irqrestore (&hdspm->lock, flags);
1731}
1732
1733static void snd_hdspm_midi_output_timer(unsigned long data)
1734{
Takashi Iwai98274f02005-11-17 14:52:34 +01001735 struct hdspm_midi *hmidi = (struct hdspm_midi *) data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001736 unsigned long flags;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001737
Takashi Iwai763f3562005-06-03 11:25:34 +02001738 snd_hdspm_midi_output_write(hmidi);
1739 spin_lock_irqsave (&hmidi->lock, flags);
1740
1741 /* this does not bump hmidi->istimer, because the
1742 kernel automatically removed the timer when it
1743 expired, and we are now adding it back, thus
Adrian Knoth0dca1792011-01-26 19:32:14 +01001744 leaving istimer wherever it was set before.
Takashi Iwai763f3562005-06-03 11:25:34 +02001745 */
1746
1747 if (hmidi->istimer) {
1748 hmidi->timer.expires = 1 + jiffies;
1749 add_timer(&hmidi->timer);
1750 }
1751
1752 spin_unlock_irqrestore (&hmidi->lock, flags);
1753}
1754
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001755static void
1756snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Takashi Iwai763f3562005-06-03 11:25:34 +02001757{
Takashi Iwai98274f02005-11-17 14:52:34 +01001758 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001759 unsigned long flags;
1760
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001761 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001762 spin_lock_irqsave (&hmidi->lock, flags);
1763 if (up) {
1764 if (!hmidi->istimer) {
1765 init_timer(&hmidi->timer);
1766 hmidi->timer.function = snd_hdspm_midi_output_timer;
1767 hmidi->timer.data = (unsigned long) hmidi;
1768 hmidi->timer.expires = 1 + jiffies;
1769 add_timer(&hmidi->timer);
1770 hmidi->istimer++;
1771 }
1772 } else {
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001773 if (hmidi->istimer && --hmidi->istimer <= 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02001774 del_timer (&hmidi->timer);
Takashi Iwai763f3562005-06-03 11:25:34 +02001775 }
1776 spin_unlock_irqrestore (&hmidi->lock, flags);
1777 if (up)
1778 snd_hdspm_midi_output_write(hmidi);
1779}
1780
Takashi Iwai98274f02005-11-17 14:52:34 +01001781static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02001782{
Takashi Iwai98274f02005-11-17 14:52:34 +01001783 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001784
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001785 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001786 spin_lock_irq (&hmidi->lock);
1787 snd_hdspm_flush_midi_input (hmidi->hdspm, hmidi->id);
1788 hmidi->input = substream;
1789 spin_unlock_irq (&hmidi->lock);
1790
1791 return 0;
1792}
1793
Takashi Iwai98274f02005-11-17 14:52:34 +01001794static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02001795{
Takashi Iwai98274f02005-11-17 14:52:34 +01001796 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001797
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001798 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001799 spin_lock_irq (&hmidi->lock);
1800 hmidi->output = substream;
1801 spin_unlock_irq (&hmidi->lock);
1802
1803 return 0;
1804}
1805
Takashi Iwai98274f02005-11-17 14:52:34 +01001806static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02001807{
Takashi Iwai98274f02005-11-17 14:52:34 +01001808 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001809
1810 snd_hdspm_midi_input_trigger (substream, 0);
1811
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001812 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001813 spin_lock_irq (&hmidi->lock);
1814 hmidi->input = NULL;
1815 spin_unlock_irq (&hmidi->lock);
1816
1817 return 0;
1818}
1819
Takashi Iwai98274f02005-11-17 14:52:34 +01001820static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02001821{
Takashi Iwai98274f02005-11-17 14:52:34 +01001822 struct hdspm_midi *hmidi;
Takashi Iwai763f3562005-06-03 11:25:34 +02001823
1824 snd_hdspm_midi_output_trigger (substream, 0);
1825
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001826 hmidi = substream->rmidi->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02001827 spin_lock_irq (&hmidi->lock);
1828 hmidi->output = NULL;
1829 spin_unlock_irq (&hmidi->lock);
1830
1831 return 0;
1832}
1833
Takashi Iwai98274f02005-11-17 14:52:34 +01001834static struct snd_rawmidi_ops snd_hdspm_midi_output =
Takashi Iwai763f3562005-06-03 11:25:34 +02001835{
1836 .open = snd_hdspm_midi_output_open,
1837 .close = snd_hdspm_midi_output_close,
1838 .trigger = snd_hdspm_midi_output_trigger,
1839};
1840
Takashi Iwai98274f02005-11-17 14:52:34 +01001841static struct snd_rawmidi_ops snd_hdspm_midi_input =
Takashi Iwai763f3562005-06-03 11:25:34 +02001842{
1843 .open = snd_hdspm_midi_input_open,
1844 .close = snd_hdspm_midi_input_close,
1845 .trigger = snd_hdspm_midi_input_trigger,
1846};
1847
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02001848static int __devinit snd_hdspm_create_midi (struct snd_card *card,
1849 struct hdspm *hdspm, int id)
Takashi Iwai763f3562005-06-03 11:25:34 +02001850{
1851 int err;
1852 char buf[32];
1853
1854 hdspm->midi[id].id = id;
Takashi Iwai763f3562005-06-03 11:25:34 +02001855 hdspm->midi[id].hdspm = hdspm;
Takashi Iwai763f3562005-06-03 11:25:34 +02001856 spin_lock_init (&hdspm->midi[id].lock);
1857
Adrian Knoth0dca1792011-01-26 19:32:14 +01001858 if (0 == id) {
1859 if (MADIface == hdspm->io_type) {
1860 /* MIDI-over-MADI on HDSPe MADIface */
1861 hdspm->midi[0].dataIn = HDSPM_midiDataIn2;
1862 hdspm->midi[0].statusIn = HDSPM_midiStatusIn2;
1863 hdspm->midi[0].dataOut = HDSPM_midiDataOut2;
1864 hdspm->midi[0].statusOut = HDSPM_midiStatusOut2;
1865 hdspm->midi[0].ie = HDSPM_Midi2InterruptEnable;
1866 hdspm->midi[0].irq = HDSPM_midi2IRQPending;
1867 } else {
1868 hdspm->midi[0].dataIn = HDSPM_midiDataIn0;
1869 hdspm->midi[0].statusIn = HDSPM_midiStatusIn0;
1870 hdspm->midi[0].dataOut = HDSPM_midiDataOut0;
1871 hdspm->midi[0].statusOut = HDSPM_midiStatusOut0;
1872 hdspm->midi[0].ie = HDSPM_Midi0InterruptEnable;
1873 hdspm->midi[0].irq = HDSPM_midi0IRQPending;
1874 }
1875 } else if (1 == id) {
1876 hdspm->midi[1].dataIn = HDSPM_midiDataIn1;
1877 hdspm->midi[1].statusIn = HDSPM_midiStatusIn1;
1878 hdspm->midi[1].dataOut = HDSPM_midiDataOut1;
1879 hdspm->midi[1].statusOut = HDSPM_midiStatusOut1;
1880 hdspm->midi[1].ie = HDSPM_Midi1InterruptEnable;
1881 hdspm->midi[1].irq = HDSPM_midi1IRQPending;
1882 } else if ((2 == id) && (MADI == hdspm->io_type)) {
1883 /* MIDI-over-MADI on HDSPe MADI */
1884 hdspm->midi[2].dataIn = HDSPM_midiDataIn2;
1885 hdspm->midi[2].statusIn = HDSPM_midiStatusIn2;
1886 hdspm->midi[2].dataOut = HDSPM_midiDataOut2;
1887 hdspm->midi[2].statusOut = HDSPM_midiStatusOut2;
1888 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable;
1889 hdspm->midi[2].irq = HDSPM_midi2IRQPending;
1890 } else if (2 == id) {
1891 /* TCO MTC, read only */
1892 hdspm->midi[2].dataIn = HDSPM_midiDataIn2;
1893 hdspm->midi[2].statusIn = HDSPM_midiStatusIn2;
1894 hdspm->midi[2].dataOut = -1;
1895 hdspm->midi[2].statusOut = -1;
1896 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable;
1897 hdspm->midi[2].irq = HDSPM_midi2IRQPendingAES;
1898 } else if (3 == id) {
1899 /* TCO MTC on HDSPe MADI */
1900 hdspm->midi[3].dataIn = HDSPM_midiDataIn3;
1901 hdspm->midi[3].statusIn = HDSPM_midiStatusIn3;
1902 hdspm->midi[3].dataOut = -1;
1903 hdspm->midi[3].statusOut = -1;
1904 hdspm->midi[3].ie = HDSPM_Midi3InterruptEnable;
1905 hdspm->midi[3].irq = HDSPM_midi3IRQPending;
1906 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001907
Adrian Knoth0dca1792011-01-26 19:32:14 +01001908 if ((id < 2) || ((2 == id) && ((MADI == hdspm->io_type) ||
1909 (MADIface == hdspm->io_type)))) {
1910 if ((id == 0) && (MADIface == hdspm->io_type)) {
1911 sprintf(buf, "%s MIDIoverMADI", card->shortname);
1912 } else if ((id == 2) && (MADI == hdspm->io_type)) {
1913 sprintf(buf, "%s MIDIoverMADI", card->shortname);
1914 } else {
1915 sprintf(buf, "%s MIDI %d", card->shortname, id+1);
1916 }
1917 err = snd_rawmidi_new(card, buf, id, 1, 1,
1918 &hdspm->midi[id].rmidi);
1919 if (err < 0)
1920 return err;
Takashi Iwai763f3562005-06-03 11:25:34 +02001921
Adrian Knoth0dca1792011-01-26 19:32:14 +01001922 sprintf(hdspm->midi[id].rmidi->name, "%s MIDI %d",
1923 card->id, id+1);
1924 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
Takashi Iwai763f3562005-06-03 11:25:34 +02001925
Adrian Knoth0dca1792011-01-26 19:32:14 +01001926 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
1927 SNDRV_RAWMIDI_STREAM_OUTPUT,
1928 &snd_hdspm_midi_output);
1929 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
1930 SNDRV_RAWMIDI_STREAM_INPUT,
1931 &snd_hdspm_midi_input);
1932
1933 hdspm->midi[id].rmidi->info_flags |=
1934 SNDRV_RAWMIDI_INFO_OUTPUT |
1935 SNDRV_RAWMIDI_INFO_INPUT |
1936 SNDRV_RAWMIDI_INFO_DUPLEX;
1937 } else {
1938 /* TCO MTC, read only */
1939 sprintf(buf, "%s MTC %d", card->shortname, id+1);
1940 err = snd_rawmidi_new(card, buf, id, 1, 1,
1941 &hdspm->midi[id].rmidi);
1942 if (err < 0)
1943 return err;
1944
1945 sprintf(hdspm->midi[id].rmidi->name,
1946 "%s MTC %d", card->id, id+1);
1947 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
1948
1949 snd_rawmidi_set_ops(hdspm->midi[id].rmidi,
1950 SNDRV_RAWMIDI_STREAM_INPUT,
1951 &snd_hdspm_midi_input);
1952
1953 hdspm->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT;
1954 }
Takashi Iwai763f3562005-06-03 11:25:34 +02001955
1956 return 0;
1957}
1958
1959
1960static void hdspm_midi_tasklet(unsigned long arg)
1961{
Takashi Iwai98274f02005-11-17 14:52:34 +01001962 struct hdspm *hdspm = (struct hdspm *)arg;
Adrian Knoth0dca1792011-01-26 19:32:14 +01001963 int i = 0;
1964
1965 while (i < hdspm->midiPorts) {
1966 if (hdspm->midi[i].pending)
1967 snd_hdspm_midi_input_read(&hdspm->midi[i]);
1968
1969 i++;
1970 }
1971}
Takashi Iwai763f3562005-06-03 11:25:34 +02001972
1973
1974/*-----------------------------------------------------------------------------
1975 Status Interface
1976 ----------------------------------------------------------------------------*/
1977
1978/* get the system sample rate which is set */
1979
Adrian Knoth0dca1792011-01-26 19:32:14 +01001980
1981/**
1982 * Calculate the real sample rate from the
1983 * current DDS value.
1984 **/
1985static int hdspm_get_system_sample_rate(struct hdspm *hdspm)
1986{
1987 unsigned int period, rate;
1988
1989 period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
1990 rate = hdspm_calc_dds_value(hdspm, period);
1991
Adrian Knotha97bda72012-05-30 14:23:18 +02001992 if (rate > 207000) {
Adrian Knoth21a164d2012-10-19 17:42:23 +02001993 /* Unreasonable high sample rate as seen on PCI MADI cards. */
1994 if (0 == hdspm_system_clock_mode(hdspm)) {
1995 /* master mode, return internal sample rate */
1996 rate = hdspm->system_sample_rate;
1997 } else {
1998 /* slave mode, return external sample rate */
1999 rate = hdspm_external_sample_rate(hdspm);
2000 }
Adrian Knotha97bda72012-05-30 14:23:18 +02002001 }
2002
Adrian Knoth0dca1792011-01-26 19:32:14 +01002003 return rate;
2004}
2005
2006
Takashi Iwai763f3562005-06-03 11:25:34 +02002007#define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002008{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002009 .name = xname, \
2010 .index = xindex, \
Adrian Knoth41285a92012-10-19 17:42:22 +02002011 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2012 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002013 .info = snd_hdspm_info_system_sample_rate, \
Adrian Knoth41285a92012-10-19 17:42:22 +02002014 .put = snd_hdspm_put_system_sample_rate, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002015 .get = snd_hdspm_get_system_sample_rate \
2016}
2017
Takashi Iwai98274f02005-11-17 14:52:34 +01002018static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol *kcontrol,
2019 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002020{
2021 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2022 uinfo->count = 1;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002023 uinfo->value.integer.min = 27000;
2024 uinfo->value.integer.max = 207000;
2025 uinfo->value.integer.step = 1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002026 return 0;
2027}
2028
Adrian Knoth0dca1792011-01-26 19:32:14 +01002029
Takashi Iwai98274f02005-11-17 14:52:34 +01002030static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol *kcontrol,
2031 struct snd_ctl_elem_value *
Takashi Iwai763f3562005-06-03 11:25:34 +02002032 ucontrol)
2033{
Takashi Iwai98274f02005-11-17 14:52:34 +01002034 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002035
Adrian Knoth0dca1792011-01-26 19:32:14 +01002036 ucontrol->value.integer.value[0] = hdspm_get_system_sample_rate(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02002037 return 0;
2038}
2039
Adrian Knoth41285a92012-10-19 17:42:22 +02002040static int snd_hdspm_put_system_sample_rate(struct snd_kcontrol *kcontrol,
2041 struct snd_ctl_elem_value *
2042 ucontrol)
2043{
2044 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2045
2046 hdspm_set_dds_value(hdspm, ucontrol->value.enumerated.item[0]);
2047 return 0;
2048}
2049
Adrian Knoth0dca1792011-01-26 19:32:14 +01002050
2051/**
2052 * Returns the WordClock sample rate class for the given card.
2053 **/
2054static int hdspm_get_wc_sample_rate(struct hdspm *hdspm)
2055{
2056 int status;
2057
2058 switch (hdspm->io_type) {
2059 case RayDAT:
2060 case AIO:
2061 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
2062 return (status >> 16) & 0xF;
2063 break;
2064 default:
2065 break;
2066 }
2067
2068
2069 return 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02002070}
2071
Adrian Knoth0dca1792011-01-26 19:32:14 +01002072
2073/**
2074 * Returns the TCO sample rate class for the given card.
2075 **/
2076static int hdspm_get_tco_sample_rate(struct hdspm *hdspm)
2077{
2078 int status;
2079
2080 if (hdspm->tco) {
2081 switch (hdspm->io_type) {
2082 case RayDAT:
2083 case AIO:
2084 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
2085 return (status >> 20) & 0xF;
2086 break;
2087 default:
2088 break;
2089 }
2090 }
2091
2092 return 0;
2093}
2094
2095
2096/**
2097 * Returns the SYNC_IN sample rate class for the given card.
2098 **/
2099static int hdspm_get_sync_in_sample_rate(struct hdspm *hdspm)
2100{
2101 int status;
2102
2103 if (hdspm->tco) {
2104 switch (hdspm->io_type) {
2105 case RayDAT:
2106 case AIO:
2107 status = hdspm_read(hdspm, HDSPM_RD_STATUS_2);
2108 return (status >> 12) & 0xF;
2109 break;
2110 default:
2111 break;
2112 }
2113 }
2114
2115 return 0;
2116}
2117
2118
2119/**
2120 * Returns the sample rate class for input source <idx> for
2121 * 'new style' cards like the AIO and RayDAT.
2122 **/
2123static int hdspm_get_s1_sample_rate(struct hdspm *hdspm, unsigned int idx)
2124{
2125 int status = hdspm_read(hdspm, HDSPM_RD_STATUS_2);
2126
2127 return (status >> (idx*4)) & 0xF;
2128}
2129
2130
2131
2132#define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
2133{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2134 .name = xname, \
2135 .private_value = xindex, \
2136 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2137 .info = snd_hdspm_info_autosync_sample_rate, \
2138 .get = snd_hdspm_get_autosync_sample_rate \
2139}
2140
2141
Takashi Iwai98274f02005-11-17 14:52:34 +01002142static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol *kcontrol,
2143 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002144{
Takashi Iwai763f3562005-06-03 11:25:34 +02002145 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2146 uinfo->count = 1;
2147 uinfo->value.enumerated.items = 10;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002148
Takashi Iwai763f3562005-06-03 11:25:34 +02002149 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
Adrian Knoth0dca1792011-01-26 19:32:14 +01002150 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002151 strcpy(uinfo->value.enumerated.name,
Adrian Knoth0dca1792011-01-26 19:32:14 +01002152 texts_freq[uinfo->value.enumerated.item]);
Takashi Iwai763f3562005-06-03 11:25:34 +02002153 return 0;
2154}
2155
Adrian Knoth0dca1792011-01-26 19:32:14 +01002156
Takashi Iwai98274f02005-11-17 14:52:34 +01002157static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol,
2158 struct snd_ctl_elem_value *
Takashi Iwai763f3562005-06-03 11:25:34 +02002159 ucontrol)
2160{
Takashi Iwai98274f02005-11-17 14:52:34 +01002161 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002162
Adrian Knoth0dca1792011-01-26 19:32:14 +01002163 switch (hdspm->io_type) {
2164 case RayDAT:
2165 switch (kcontrol->private_value) {
2166 case 0:
2167 ucontrol->value.enumerated.item[0] =
2168 hdspm_get_wc_sample_rate(hdspm);
2169 break;
2170 case 7:
2171 ucontrol->value.enumerated.item[0] =
2172 hdspm_get_tco_sample_rate(hdspm);
2173 break;
2174 case 8:
2175 ucontrol->value.enumerated.item[0] =
2176 hdspm_get_sync_in_sample_rate(hdspm);
2177 break;
2178 default:
2179 ucontrol->value.enumerated.item[0] =
2180 hdspm_get_s1_sample_rate(hdspm,
2181 kcontrol->private_value-1);
2182 }
Adrian Knothd681dea2012-10-19 17:42:25 +02002183 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002184
Adrian Knoth0dca1792011-01-26 19:32:14 +01002185 case AIO:
2186 switch (kcontrol->private_value) {
2187 case 0: /* WC */
2188 ucontrol->value.enumerated.item[0] =
2189 hdspm_get_wc_sample_rate(hdspm);
2190 break;
2191 case 4: /* TCO */
2192 ucontrol->value.enumerated.item[0] =
2193 hdspm_get_tco_sample_rate(hdspm);
2194 break;
2195 case 5: /* SYNC_IN */
2196 ucontrol->value.enumerated.item[0] =
2197 hdspm_get_sync_in_sample_rate(hdspm);
2198 break;
2199 default:
2200 ucontrol->value.enumerated.item[0] =
2201 hdspm_get_s1_sample_rate(hdspm,
2202 ucontrol->id.index-1);
2203 }
Adrian Knothd681dea2012-10-19 17:42:25 +02002204 break;
Adrian Knoth7c4a95b2011-02-23 11:43:13 +01002205
2206 case AES32:
2207
2208 switch (kcontrol->private_value) {
2209 case 0: /* WC */
2210 ucontrol->value.enumerated.item[0] =
2211 hdspm_get_wc_sample_rate(hdspm);
2212 break;
2213 case 9: /* TCO */
2214 ucontrol->value.enumerated.item[0] =
2215 hdspm_get_tco_sample_rate(hdspm);
2216 break;
2217 case 10: /* SYNC_IN */
2218 ucontrol->value.enumerated.item[0] =
2219 hdspm_get_sync_in_sample_rate(hdspm);
2220 break;
2221 default: /* AES1 to AES8 */
2222 ucontrol->value.enumerated.item[0] =
2223 hdspm_get_s1_sample_rate(hdspm,
2224 kcontrol->private_value-1);
2225 break;
Adrian Knoth7c4a95b2011-02-23 11:43:13 +01002226 }
Adrian Knothd681dea2012-10-19 17:42:25 +02002227 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002228 default:
Adrian Knoth0dca1792011-01-26 19:32:14 +01002229 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002230 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002231
Takashi Iwai763f3562005-06-03 11:25:34 +02002232 return 0;
2233}
2234
Adrian Knoth0dca1792011-01-26 19:32:14 +01002235
Takashi Iwai763f3562005-06-03 11:25:34 +02002236#define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
Adrian Knoth0dca1792011-01-26 19:32:14 +01002237{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2238 .name = xname, \
2239 .index = xindex, \
2240 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2241 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2242 .info = snd_hdspm_info_system_clock_mode, \
2243 .get = snd_hdspm_get_system_clock_mode, \
2244 .put = snd_hdspm_put_system_clock_mode, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002245}
2246
2247
Adrian Knoth0dca1792011-01-26 19:32:14 +01002248/**
2249 * Returns the system clock mode for the given card.
2250 * @returns 0 - master, 1 - slave
2251 **/
2252static int hdspm_system_clock_mode(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002253{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002254 switch (hdspm->io_type) {
2255 case AIO:
2256 case RayDAT:
2257 if (hdspm->settings_register & HDSPM_c0Master)
2258 return 0;
2259 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002260
Adrian Knoth0dca1792011-01-26 19:32:14 +01002261 default:
2262 if (hdspm->control_register & HDSPM_ClockModeMaster)
2263 return 0;
2264 }
2265
Takashi Iwai763f3562005-06-03 11:25:34 +02002266 return 1;
2267}
2268
Adrian Knoth0dca1792011-01-26 19:32:14 +01002269
2270/**
2271 * Sets the system clock mode.
2272 * @param mode 0 - master, 1 - slave
2273 **/
2274static void hdspm_set_system_clock_mode(struct hdspm *hdspm, int mode)
2275{
2276 switch (hdspm->io_type) {
2277 case AIO:
2278 case RayDAT:
2279 if (0 == mode)
2280 hdspm->settings_register |= HDSPM_c0Master;
2281 else
2282 hdspm->settings_register &= ~HDSPM_c0Master;
2283
2284 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
2285 break;
2286
2287 default:
2288 if (0 == mode)
2289 hdspm->control_register |= HDSPM_ClockModeMaster;
2290 else
2291 hdspm->control_register &= ~HDSPM_ClockModeMaster;
2292
2293 hdspm_write(hdspm, HDSPM_controlRegister,
2294 hdspm->control_register);
2295 }
2296}
2297
2298
Takashi Iwai98274f02005-11-17 14:52:34 +01002299static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol *kcontrol,
2300 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002301{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002302 static char *texts[] = { "Master", "AutoSync" };
Takashi Iwai763f3562005-06-03 11:25:34 +02002303
2304 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2305 uinfo->count = 1;
2306 uinfo->value.enumerated.items = 2;
2307 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2308 uinfo->value.enumerated.item =
2309 uinfo->value.enumerated.items - 1;
2310 strcpy(uinfo->value.enumerated.name,
2311 texts[uinfo->value.enumerated.item]);
2312 return 0;
2313}
2314
Takashi Iwai98274f02005-11-17 14:52:34 +01002315static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol *kcontrol,
2316 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002317{
Takashi Iwai98274f02005-11-17 14:52:34 +01002318 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002319
Adrian Knoth0dca1792011-01-26 19:32:14 +01002320 ucontrol->value.enumerated.item[0] = hdspm_system_clock_mode(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02002321 return 0;
2322}
2323
Adrian Knoth0dca1792011-01-26 19:32:14 +01002324static int snd_hdspm_put_system_clock_mode(struct snd_kcontrol *kcontrol,
2325 struct snd_ctl_elem_value *ucontrol)
2326{
2327 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2328 int val;
2329
2330 if (!snd_hdspm_use_is_exclusive(hdspm))
2331 return -EBUSY;
2332
2333 val = ucontrol->value.enumerated.item[0];
2334 if (val < 0)
2335 val = 0;
2336 else if (val > 1)
2337 val = 1;
2338
2339 hdspm_set_system_clock_mode(hdspm, val);
2340
2341 return 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02002342}
2343
Adrian Knoth0dca1792011-01-26 19:32:14 +01002344
2345#define HDSPM_INTERNAL_CLOCK(xname, xindex) \
2346{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2347 .name = xname, \
2348 .index = xindex, \
2349 .info = snd_hdspm_info_clock_source, \
2350 .get = snd_hdspm_get_clock_source, \
2351 .put = snd_hdspm_put_clock_source \
2352}
2353
2354
Takashi Iwai98274f02005-11-17 14:52:34 +01002355static int hdspm_clock_source(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002356{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002357 switch (hdspm->system_sample_rate) {
2358 case 32000: return 0;
2359 case 44100: return 1;
2360 case 48000: return 2;
2361 case 64000: return 3;
2362 case 88200: return 4;
2363 case 96000: return 5;
2364 case 128000: return 6;
2365 case 176400: return 7;
2366 case 192000: return 8;
Takashi Iwai763f3562005-06-03 11:25:34 +02002367 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002368
2369 return -1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002370}
2371
Takashi Iwai98274f02005-11-17 14:52:34 +01002372static int hdspm_set_clock_source(struct hdspm * hdspm, int mode)
Takashi Iwai763f3562005-06-03 11:25:34 +02002373{
2374 int rate;
2375 switch (mode) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01002376 case 0:
2377 rate = 32000; break;
2378 case 1:
2379 rate = 44100; break;
2380 case 2:
2381 rate = 48000; break;
2382 case 3:
2383 rate = 64000; break;
2384 case 4:
2385 rate = 88200; break;
2386 case 5:
2387 rate = 96000; break;
2388 case 6:
2389 rate = 128000; break;
2390 case 7:
2391 rate = 176400; break;
2392 case 8:
2393 rate = 192000; break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002394 default:
Adrian Knoth0dca1792011-01-26 19:32:14 +01002395 rate = 48000;
Takashi Iwai763f3562005-06-03 11:25:34 +02002396 }
Takashi Iwai763f3562005-06-03 11:25:34 +02002397 hdspm_set_rate(hdspm, rate, 1);
2398 return 0;
2399}
2400
Takashi Iwai98274f02005-11-17 14:52:34 +01002401static int snd_hdspm_info_clock_source(struct snd_kcontrol *kcontrol,
2402 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002403{
Takashi Iwai763f3562005-06-03 11:25:34 +02002404 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2405 uinfo->count = 1;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002406 uinfo->value.enumerated.items = 9;
Takashi Iwai763f3562005-06-03 11:25:34 +02002407
2408 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2409 uinfo->value.enumerated.item =
2410 uinfo->value.enumerated.items - 1;
2411
2412 strcpy(uinfo->value.enumerated.name,
Adrian Knoth0dca1792011-01-26 19:32:14 +01002413 texts_freq[uinfo->value.enumerated.item+1]);
Takashi Iwai763f3562005-06-03 11:25:34 +02002414
2415 return 0;
2416}
2417
Takashi Iwai98274f02005-11-17 14:52:34 +01002418static int snd_hdspm_get_clock_source(struct snd_kcontrol *kcontrol,
2419 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002420{
Takashi Iwai98274f02005-11-17 14:52:34 +01002421 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002422
2423 ucontrol->value.enumerated.item[0] = hdspm_clock_source(hdspm);
2424 return 0;
2425}
2426
Takashi Iwai98274f02005-11-17 14:52:34 +01002427static int snd_hdspm_put_clock_source(struct snd_kcontrol *kcontrol,
2428 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002429{
Takashi Iwai98274f02005-11-17 14:52:34 +01002430 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002431 int change;
2432 int val;
2433
2434 if (!snd_hdspm_use_is_exclusive(hdspm))
2435 return -EBUSY;
2436 val = ucontrol->value.enumerated.item[0];
2437 if (val < 0)
2438 val = 0;
Remy Bruno65345992007-08-31 12:21:08 +02002439 if (val > 9)
2440 val = 9;
Takashi Iwai763f3562005-06-03 11:25:34 +02002441 spin_lock_irq(&hdspm->lock);
2442 if (val != hdspm_clock_source(hdspm))
2443 change = (hdspm_set_clock_source(hdspm, val) == 0) ? 1 : 0;
2444 else
2445 change = 0;
2446 spin_unlock_irq(&hdspm->lock);
2447 return change;
2448}
2449
Adrian Knoth0dca1792011-01-26 19:32:14 +01002450
Takashi Iwai763f3562005-06-03 11:25:34 +02002451#define HDSPM_PREF_SYNC_REF(xname, xindex) \
Adrian Knoth0dca1792011-01-26 19:32:14 +01002452{.iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2453 .name = xname, \
2454 .index = xindex, \
2455 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
2456 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2457 .info = snd_hdspm_info_pref_sync_ref, \
2458 .get = snd_hdspm_get_pref_sync_ref, \
2459 .put = snd_hdspm_put_pref_sync_ref \
Takashi Iwai763f3562005-06-03 11:25:34 +02002460}
2461
Adrian Knoth0dca1792011-01-26 19:32:14 +01002462
2463/**
2464 * Returns the current preferred sync reference setting.
2465 * The semantics of the return value are depending on the
2466 * card, please see the comments for clarification.
2467 **/
Takashi Iwai98274f02005-11-17 14:52:34 +01002468static int hdspm_pref_sync_ref(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002469{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002470 switch (hdspm->io_type) {
2471 case AES32:
Remy Bruno3cee5a62006-10-16 12:46:32 +02002472 switch (hdspm->control_register & HDSPM_SyncRefMask) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01002473 case 0: return 0; /* WC */
2474 case HDSPM_SyncRef0: return 1; /* AES 1 */
2475 case HDSPM_SyncRef1: return 2; /* AES 2 */
2476 case HDSPM_SyncRef1+HDSPM_SyncRef0: return 3; /* AES 3 */
2477 case HDSPM_SyncRef2: return 4; /* AES 4 */
2478 case HDSPM_SyncRef2+HDSPM_SyncRef0: return 5; /* AES 5 */
2479 case HDSPM_SyncRef2+HDSPM_SyncRef1: return 6; /* AES 6 */
2480 case HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0:
2481 return 7; /* AES 7 */
2482 case HDSPM_SyncRef3: return 8; /* AES 8 */
2483 case HDSPM_SyncRef3+HDSPM_SyncRef0: return 9; /* TCO */
Remy Bruno3cee5a62006-10-16 12:46:32 +02002484 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002485 break;
2486
2487 case MADI:
2488 case MADIface:
2489 if (hdspm->tco) {
2490 switch (hdspm->control_register & HDSPM_SyncRefMask) {
2491 case 0: return 0; /* WC */
2492 case HDSPM_SyncRef0: return 1; /* MADI */
2493 case HDSPM_SyncRef1: return 2; /* TCO */
2494 case HDSPM_SyncRef1+HDSPM_SyncRef0:
2495 return 3; /* SYNC_IN */
2496 }
2497 } else {
2498 switch (hdspm->control_register & HDSPM_SyncRefMask) {
2499 case 0: return 0; /* WC */
2500 case HDSPM_SyncRef0: return 1; /* MADI */
2501 case HDSPM_SyncRef1+HDSPM_SyncRef0:
2502 return 2; /* SYNC_IN */
2503 }
Remy Bruno3cee5a62006-10-16 12:46:32 +02002504 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002505 break;
2506
2507 case RayDAT:
2508 if (hdspm->tco) {
2509 switch ((hdspm->settings_register &
2510 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2511 case 0: return 0; /* WC */
2512 case 3: return 1; /* ADAT 1 */
2513 case 4: return 2; /* ADAT 2 */
2514 case 5: return 3; /* ADAT 3 */
2515 case 6: return 4; /* ADAT 4 */
2516 case 1: return 5; /* AES */
2517 case 2: return 6; /* SPDIF */
2518 case 9: return 7; /* TCO */
2519 case 10: return 8; /* SYNC_IN */
2520 }
2521 } else {
2522 switch ((hdspm->settings_register &
2523 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2524 case 0: return 0; /* WC */
2525 case 3: return 1; /* ADAT 1 */
2526 case 4: return 2; /* ADAT 2 */
2527 case 5: return 3; /* ADAT 3 */
2528 case 6: return 4; /* ADAT 4 */
2529 case 1: return 5; /* AES */
2530 case 2: return 6; /* SPDIF */
2531 case 10: return 7; /* SYNC_IN */
2532 }
2533 }
2534
2535 break;
2536
2537 case AIO:
2538 if (hdspm->tco) {
2539 switch ((hdspm->settings_register &
2540 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2541 case 0: return 0; /* WC */
2542 case 3: return 1; /* ADAT */
2543 case 1: return 2; /* AES */
2544 case 2: return 3; /* SPDIF */
2545 case 9: return 4; /* TCO */
2546 case 10: return 5; /* SYNC_IN */
2547 }
2548 } else {
2549 switch ((hdspm->settings_register &
2550 HDSPM_c0_SyncRefMask) / HDSPM_c0_SyncRef0) {
2551 case 0: return 0; /* WC */
2552 case 3: return 1; /* ADAT */
2553 case 1: return 2; /* AES */
2554 case 2: return 3; /* SPDIF */
2555 case 10: return 4; /* SYNC_IN */
2556 }
2557 }
2558
2559 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002560 }
2561
Adrian Knoth0dca1792011-01-26 19:32:14 +01002562 return -1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002563}
2564
Adrian Knoth0dca1792011-01-26 19:32:14 +01002565
2566/**
2567 * Set the preferred sync reference to <pref>. The semantics
2568 * of <pref> are depending on the card type, see the comments
2569 * for clarification.
2570 **/
Takashi Iwai98274f02005-11-17 14:52:34 +01002571static int hdspm_set_pref_sync_ref(struct hdspm * hdspm, int pref)
Takashi Iwai763f3562005-06-03 11:25:34 +02002572{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002573 int p = 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02002574
Adrian Knoth0dca1792011-01-26 19:32:14 +01002575 switch (hdspm->io_type) {
2576 case AES32:
2577 hdspm->control_register &= ~HDSPM_SyncRefMask;
Remy Bruno3cee5a62006-10-16 12:46:32 +02002578 switch (pref) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01002579 case 0: /* WC */
Remy Bruno3cee5a62006-10-16 12:46:32 +02002580 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002581 case 1: /* AES 1 */
2582 hdspm->control_register |= HDSPM_SyncRef0;
2583 break;
2584 case 2: /* AES 2 */
2585 hdspm->control_register |= HDSPM_SyncRef1;
2586 break;
2587 case 3: /* AES 3 */
2588 hdspm->control_register |=
2589 HDSPM_SyncRef1+HDSPM_SyncRef0;
2590 break;
2591 case 4: /* AES 4 */
2592 hdspm->control_register |= HDSPM_SyncRef2;
2593 break;
2594 case 5: /* AES 5 */
2595 hdspm->control_register |=
2596 HDSPM_SyncRef2+HDSPM_SyncRef0;
2597 break;
2598 case 6: /* AES 6 */
2599 hdspm->control_register |=
2600 HDSPM_SyncRef2+HDSPM_SyncRef1;
2601 break;
2602 case 7: /* AES 7 */
2603 hdspm->control_register |=
2604 HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0;
2605 break;
2606 case 8: /* AES 8 */
2607 hdspm->control_register |= HDSPM_SyncRef3;
2608 break;
2609 case 9: /* TCO */
2610 hdspm->control_register |=
2611 HDSPM_SyncRef3+HDSPM_SyncRef0;
Remy Bruno3cee5a62006-10-16 12:46:32 +02002612 break;
2613 default:
2614 return -1;
2615 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002616
2617 break;
2618
2619 case MADI:
2620 case MADIface:
2621 hdspm->control_register &= ~HDSPM_SyncRefMask;
2622 if (hdspm->tco) {
2623 switch (pref) {
2624 case 0: /* WC */
2625 break;
2626 case 1: /* MADI */
2627 hdspm->control_register |= HDSPM_SyncRef0;
2628 break;
2629 case 2: /* TCO */
2630 hdspm->control_register |= HDSPM_SyncRef1;
2631 break;
2632 case 3: /* SYNC_IN */
2633 hdspm->control_register |=
2634 HDSPM_SyncRef0+HDSPM_SyncRef1;
2635 break;
2636 default:
2637 return -1;
2638 }
2639 } else {
2640 switch (pref) {
2641 case 0: /* WC */
2642 break;
2643 case 1: /* MADI */
2644 hdspm->control_register |= HDSPM_SyncRef0;
2645 break;
2646 case 2: /* SYNC_IN */
2647 hdspm->control_register |=
2648 HDSPM_SyncRef0+HDSPM_SyncRef1;
2649 break;
2650 default:
2651 return -1;
2652 }
2653 }
2654
2655 break;
2656
2657 case RayDAT:
2658 if (hdspm->tco) {
2659 switch (pref) {
2660 case 0: p = 0; break; /* WC */
2661 case 1: p = 3; break; /* ADAT 1 */
2662 case 2: p = 4; break; /* ADAT 2 */
2663 case 3: p = 5; break; /* ADAT 3 */
2664 case 4: p = 6; break; /* ADAT 4 */
2665 case 5: p = 1; break; /* AES */
2666 case 6: p = 2; break; /* SPDIF */
2667 case 7: p = 9; break; /* TCO */
2668 case 8: p = 10; break; /* SYNC_IN */
2669 default: return -1;
2670 }
2671 } else {
2672 switch (pref) {
2673 case 0: p = 0; break; /* WC */
2674 case 1: p = 3; break; /* ADAT 1 */
2675 case 2: p = 4; break; /* ADAT 2 */
2676 case 3: p = 5; break; /* ADAT 3 */
2677 case 4: p = 6; break; /* ADAT 4 */
2678 case 5: p = 1; break; /* AES */
2679 case 6: p = 2; break; /* SPDIF */
2680 case 7: p = 10; break; /* SYNC_IN */
2681 default: return -1;
2682 }
2683 }
2684 break;
2685
2686 case AIO:
2687 if (hdspm->tco) {
2688 switch (pref) {
2689 case 0: p = 0; break; /* WC */
2690 case 1: p = 3; break; /* ADAT */
2691 case 2: p = 1; break; /* AES */
2692 case 3: p = 2; break; /* SPDIF */
2693 case 4: p = 9; break; /* TCO */
2694 case 5: p = 10; break; /* SYNC_IN */
2695 default: return -1;
2696 }
2697 } else {
2698 switch (pref) {
2699 case 0: p = 0; break; /* WC */
2700 case 1: p = 3; break; /* ADAT */
2701 case 2: p = 1; break; /* AES */
2702 case 3: p = 2; break; /* SPDIF */
2703 case 4: p = 10; break; /* SYNC_IN */
2704 default: return -1;
2705 }
2706 }
2707 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02002708 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002709
2710 switch (hdspm->io_type) {
2711 case RayDAT:
2712 case AIO:
2713 hdspm->settings_register &= ~HDSPM_c0_SyncRefMask;
2714 hdspm->settings_register |= HDSPM_c0_SyncRef0 * p;
2715 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
2716 break;
2717
2718 case MADI:
2719 case MADIface:
2720 case AES32:
2721 hdspm_write(hdspm, HDSPM_controlRegister,
2722 hdspm->control_register);
2723 }
2724
Takashi Iwai763f3562005-06-03 11:25:34 +02002725 return 0;
2726}
2727
Adrian Knoth0dca1792011-01-26 19:32:14 +01002728
Takashi Iwai98274f02005-11-17 14:52:34 +01002729static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol *kcontrol,
2730 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002731{
Remy Bruno3cee5a62006-10-16 12:46:32 +02002732 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002733
Adrian Knoth0dca1792011-01-26 19:32:14 +01002734 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2735 uinfo->count = 1;
2736 uinfo->value.enumerated.items = hdspm->texts_autosync_items;
Takashi Iwai763f3562005-06-03 11:25:34 +02002737
Adrian Knoth0dca1792011-01-26 19:32:14 +01002738 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2739 uinfo->value.enumerated.item =
2740 uinfo->value.enumerated.items - 1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002741
Adrian Knoth0dca1792011-01-26 19:32:14 +01002742 strcpy(uinfo->value.enumerated.name,
2743 hdspm->texts_autosync[uinfo->value.enumerated.item]);
Remy Bruno3cee5a62006-10-16 12:46:32 +02002744
Takashi Iwai763f3562005-06-03 11:25:34 +02002745 return 0;
2746}
2747
Takashi Iwai98274f02005-11-17 14:52:34 +01002748static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol *kcontrol,
2749 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002750{
Takashi Iwai98274f02005-11-17 14:52:34 +01002751 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Adrian Knoth0dca1792011-01-26 19:32:14 +01002752 int psf = hdspm_pref_sync_ref(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02002753
Adrian Knoth0dca1792011-01-26 19:32:14 +01002754 if (psf >= 0) {
2755 ucontrol->value.enumerated.item[0] = psf;
2756 return 0;
2757 }
2758
2759 return -1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002760}
2761
Takashi Iwai98274f02005-11-17 14:52:34 +01002762static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol *kcontrol,
2763 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002764{
Takashi Iwai98274f02005-11-17 14:52:34 +01002765 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Adrian Knoth0dca1792011-01-26 19:32:14 +01002766 int val, change = 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02002767
2768 if (!snd_hdspm_use_is_exclusive(hdspm))
2769 return -EBUSY;
2770
Adrian Knoth0dca1792011-01-26 19:32:14 +01002771 val = ucontrol->value.enumerated.item[0];
2772
2773 if (val < 0)
2774 val = 0;
2775 else if (val >= hdspm->texts_autosync_items)
2776 val = hdspm->texts_autosync_items-1;
Takashi Iwai763f3562005-06-03 11:25:34 +02002777
2778 spin_lock_irq(&hdspm->lock);
Adrian Knoth0dca1792011-01-26 19:32:14 +01002779 if (val != hdspm_pref_sync_ref(hdspm))
2780 change = (0 == hdspm_set_pref_sync_ref(hdspm, val)) ? 1 : 0;
2781
Takashi Iwai763f3562005-06-03 11:25:34 +02002782 spin_unlock_irq(&hdspm->lock);
2783 return change;
2784}
2785
Adrian Knoth0dca1792011-01-26 19:32:14 +01002786
Takashi Iwai763f3562005-06-03 11:25:34 +02002787#define HDSPM_AUTOSYNC_REF(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002788{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002789 .name = xname, \
2790 .index = xindex, \
2791 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2792 .info = snd_hdspm_info_autosync_ref, \
2793 .get = snd_hdspm_get_autosync_ref, \
2794}
2795
Adrian Knoth0dca1792011-01-26 19:32:14 +01002796static int hdspm_autosync_ref(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002797{
Adrian Knoth0dca1792011-01-26 19:32:14 +01002798 if (AES32 == hdspm->io_type) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02002799 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
Adrian Knoth0dca1792011-01-26 19:32:14 +01002800 unsigned int syncref =
2801 (status >> HDSPM_AES32_syncref_bit) & 0xF;
Remy Bruno3cee5a62006-10-16 12:46:32 +02002802 if (syncref == 0)
2803 return HDSPM_AES32_AUTOSYNC_FROM_WORD;
2804 if (syncref <= 8)
2805 return syncref;
2806 return HDSPM_AES32_AUTOSYNC_FROM_NONE;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002807 } else if (MADI == hdspm->io_type) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02002808 /* This looks at the autosync selected sync reference */
2809 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
Takashi Iwai763f3562005-06-03 11:25:34 +02002810
Remy Bruno3cee5a62006-10-16 12:46:32 +02002811 switch (status2 & HDSPM_SelSyncRefMask) {
2812 case HDSPM_SelSyncRef_WORD:
2813 return HDSPM_AUTOSYNC_FROM_WORD;
2814 case HDSPM_SelSyncRef_MADI:
2815 return HDSPM_AUTOSYNC_FROM_MADI;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002816 case HDSPM_SelSyncRef_TCO:
2817 return HDSPM_AUTOSYNC_FROM_TCO;
2818 case HDSPM_SelSyncRef_SyncIn:
2819 return HDSPM_AUTOSYNC_FROM_SYNC_IN;
Remy Bruno3cee5a62006-10-16 12:46:32 +02002820 case HDSPM_SelSyncRef_NVALID:
2821 return HDSPM_AUTOSYNC_FROM_NONE;
2822 default:
2823 return 0;
2824 }
Takashi Iwai763f3562005-06-03 11:25:34 +02002825
Takashi Iwai763f3562005-06-03 11:25:34 +02002826 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01002827 return 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02002828}
2829
Adrian Knoth0dca1792011-01-26 19:32:14 +01002830
Takashi Iwai98274f02005-11-17 14:52:34 +01002831static int snd_hdspm_info_autosync_ref(struct snd_kcontrol *kcontrol,
2832 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02002833{
Remy Bruno3cee5a62006-10-16 12:46:32 +02002834 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002835
Adrian Knoth0dca1792011-01-26 19:32:14 +01002836 if (AES32 == hdspm->io_type) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02002837 static char *texts[] = { "WordClock", "AES1", "AES2", "AES3",
2838 "AES4", "AES5", "AES6", "AES7", "AES8", "None"};
2839
2840 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2841 uinfo->count = 1;
2842 uinfo->value.enumerated.items = 10;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02002843 if (uinfo->value.enumerated.item >=
2844 uinfo->value.enumerated.items)
Remy Bruno3cee5a62006-10-16 12:46:32 +02002845 uinfo->value.enumerated.item =
2846 uinfo->value.enumerated.items - 1;
2847 strcpy(uinfo->value.enumerated.name,
2848 texts[uinfo->value.enumerated.item]);
Adrian Knoth0dca1792011-01-26 19:32:14 +01002849 } else if (MADI == hdspm->io_type) {
2850 static char *texts[] = {"Word Clock", "MADI", "TCO",
2851 "Sync In", "None" };
Remy Bruno3cee5a62006-10-16 12:46:32 +02002852
2853 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2854 uinfo->count = 1;
Adrian Knoth0dca1792011-01-26 19:32:14 +01002855 uinfo->value.enumerated.items = 5;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02002856 if (uinfo->value.enumerated.item >=
Adrian Knoth0dca1792011-01-26 19:32:14 +01002857 uinfo->value.enumerated.items)
Remy Bruno3cee5a62006-10-16 12:46:32 +02002858 uinfo->value.enumerated.item =
2859 uinfo->value.enumerated.items - 1;
2860 strcpy(uinfo->value.enumerated.name,
2861 texts[uinfo->value.enumerated.item]);
2862 }
Takashi Iwai763f3562005-06-03 11:25:34 +02002863 return 0;
2864}
2865
Takashi Iwai98274f02005-11-17 14:52:34 +01002866static int snd_hdspm_get_autosync_ref(struct snd_kcontrol *kcontrol,
2867 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002868{
Takashi Iwai98274f02005-11-17 14:52:34 +01002869 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002870
Remy Bruno65345992007-08-31 12:21:08 +02002871 ucontrol->value.enumerated.item[0] = hdspm_autosync_ref(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02002872 return 0;
2873}
2874
Adrian Knoth0dca1792011-01-26 19:32:14 +01002875
Takashi Iwai763f3562005-06-03 11:25:34 +02002876#define HDSPM_LINE_OUT(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002877{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002878 .name = xname, \
2879 .index = xindex, \
2880 .info = snd_hdspm_info_line_out, \
2881 .get = snd_hdspm_get_line_out, \
2882 .put = snd_hdspm_put_line_out \
2883}
2884
Takashi Iwai98274f02005-11-17 14:52:34 +01002885static int hdspm_line_out(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002886{
2887 return (hdspm->control_register & HDSPM_LineOut) ? 1 : 0;
2888}
2889
2890
Takashi Iwai98274f02005-11-17 14:52:34 +01002891static int hdspm_set_line_output(struct hdspm * hdspm, int out)
Takashi Iwai763f3562005-06-03 11:25:34 +02002892{
2893 if (out)
2894 hdspm->control_register |= HDSPM_LineOut;
2895 else
2896 hdspm->control_register &= ~HDSPM_LineOut;
2897 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2898
2899 return 0;
2900}
2901
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002902#define snd_hdspm_info_line_out snd_ctl_boolean_mono_info
Takashi Iwai763f3562005-06-03 11:25:34 +02002903
Takashi Iwai98274f02005-11-17 14:52:34 +01002904static int snd_hdspm_get_line_out(struct snd_kcontrol *kcontrol,
2905 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002906{
Takashi Iwai98274f02005-11-17 14:52:34 +01002907 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002908
2909 spin_lock_irq(&hdspm->lock);
2910 ucontrol->value.integer.value[0] = hdspm_line_out(hdspm);
2911 spin_unlock_irq(&hdspm->lock);
2912 return 0;
2913}
2914
Takashi Iwai98274f02005-11-17 14:52:34 +01002915static int snd_hdspm_put_line_out(struct snd_kcontrol *kcontrol,
2916 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002917{
Takashi Iwai98274f02005-11-17 14:52:34 +01002918 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002919 int change;
2920 unsigned int val;
2921
2922 if (!snd_hdspm_use_is_exclusive(hdspm))
2923 return -EBUSY;
2924 val = ucontrol->value.integer.value[0] & 1;
2925 spin_lock_irq(&hdspm->lock);
2926 change = (int) val != hdspm_line_out(hdspm);
2927 hdspm_set_line_output(hdspm, val);
2928 spin_unlock_irq(&hdspm->lock);
2929 return change;
2930}
2931
Adrian Knoth0dca1792011-01-26 19:32:14 +01002932
Takashi Iwai763f3562005-06-03 11:25:34 +02002933#define HDSPM_TX_64(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002934{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002935 .name = xname, \
2936 .index = xindex, \
2937 .info = snd_hdspm_info_tx_64, \
2938 .get = snd_hdspm_get_tx_64, \
2939 .put = snd_hdspm_put_tx_64 \
2940}
2941
Takashi Iwai98274f02005-11-17 14:52:34 +01002942static int hdspm_tx_64(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002943{
2944 return (hdspm->control_register & HDSPM_TX_64ch) ? 1 : 0;
2945}
2946
Takashi Iwai98274f02005-11-17 14:52:34 +01002947static int hdspm_set_tx_64(struct hdspm * hdspm, int out)
Takashi Iwai763f3562005-06-03 11:25:34 +02002948{
2949 if (out)
2950 hdspm->control_register |= HDSPM_TX_64ch;
2951 else
2952 hdspm->control_register &= ~HDSPM_TX_64ch;
2953 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2954
2955 return 0;
2956}
2957
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002958#define snd_hdspm_info_tx_64 snd_ctl_boolean_mono_info
Takashi Iwai763f3562005-06-03 11:25:34 +02002959
Takashi Iwai98274f02005-11-17 14:52:34 +01002960static int snd_hdspm_get_tx_64(struct snd_kcontrol *kcontrol,
2961 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002962{
Takashi Iwai98274f02005-11-17 14:52:34 +01002963 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002964
2965 spin_lock_irq(&hdspm->lock);
2966 ucontrol->value.integer.value[0] = hdspm_tx_64(hdspm);
2967 spin_unlock_irq(&hdspm->lock);
2968 return 0;
2969}
2970
Takashi Iwai98274f02005-11-17 14:52:34 +01002971static int snd_hdspm_put_tx_64(struct snd_kcontrol *kcontrol,
2972 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02002973{
Takashi Iwai98274f02005-11-17 14:52:34 +01002974 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02002975 int change;
2976 unsigned int val;
2977
2978 if (!snd_hdspm_use_is_exclusive(hdspm))
2979 return -EBUSY;
2980 val = ucontrol->value.integer.value[0] & 1;
2981 spin_lock_irq(&hdspm->lock);
2982 change = (int) val != hdspm_tx_64(hdspm);
2983 hdspm_set_tx_64(hdspm, val);
2984 spin_unlock_irq(&hdspm->lock);
2985 return change;
2986}
2987
Adrian Knoth0dca1792011-01-26 19:32:14 +01002988
Takashi Iwai763f3562005-06-03 11:25:34 +02002989#define HDSPM_C_TMS(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002990{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02002991 .name = xname, \
2992 .index = xindex, \
2993 .info = snd_hdspm_info_c_tms, \
2994 .get = snd_hdspm_get_c_tms, \
2995 .put = snd_hdspm_put_c_tms \
2996}
2997
Takashi Iwai98274f02005-11-17 14:52:34 +01002998static int hdspm_c_tms(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02002999{
3000 return (hdspm->control_register & HDSPM_clr_tms) ? 1 : 0;
3001}
3002
Takashi Iwai98274f02005-11-17 14:52:34 +01003003static int hdspm_set_c_tms(struct hdspm * hdspm, int out)
Takashi Iwai763f3562005-06-03 11:25:34 +02003004{
3005 if (out)
3006 hdspm->control_register |= HDSPM_clr_tms;
3007 else
3008 hdspm->control_register &= ~HDSPM_clr_tms;
3009 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3010
3011 return 0;
3012}
3013
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003014#define snd_hdspm_info_c_tms snd_ctl_boolean_mono_info
Takashi Iwai763f3562005-06-03 11:25:34 +02003015
Takashi Iwai98274f02005-11-17 14:52:34 +01003016static int snd_hdspm_get_c_tms(struct snd_kcontrol *kcontrol,
3017 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003018{
Takashi Iwai98274f02005-11-17 14:52:34 +01003019 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003020
3021 spin_lock_irq(&hdspm->lock);
3022 ucontrol->value.integer.value[0] = hdspm_c_tms(hdspm);
3023 spin_unlock_irq(&hdspm->lock);
3024 return 0;
3025}
3026
Takashi Iwai98274f02005-11-17 14:52:34 +01003027static int snd_hdspm_put_c_tms(struct snd_kcontrol *kcontrol,
3028 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003029{
Takashi Iwai98274f02005-11-17 14:52:34 +01003030 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003031 int change;
3032 unsigned int val;
3033
3034 if (!snd_hdspm_use_is_exclusive(hdspm))
3035 return -EBUSY;
3036 val = ucontrol->value.integer.value[0] & 1;
3037 spin_lock_irq(&hdspm->lock);
3038 change = (int) val != hdspm_c_tms(hdspm);
3039 hdspm_set_c_tms(hdspm, val);
3040 spin_unlock_irq(&hdspm->lock);
3041 return change;
3042}
3043
Adrian Knoth0dca1792011-01-26 19:32:14 +01003044
Takashi Iwai763f3562005-06-03 11:25:34 +02003045#define HDSPM_SAFE_MODE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02003046{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02003047 .name = xname, \
3048 .index = xindex, \
3049 .info = snd_hdspm_info_safe_mode, \
3050 .get = snd_hdspm_get_safe_mode, \
3051 .put = snd_hdspm_put_safe_mode \
3052}
3053
Takashi Iwai98274f02005-11-17 14:52:34 +01003054static int hdspm_safe_mode(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02003055{
3056 return (hdspm->control_register & HDSPM_AutoInp) ? 1 : 0;
3057}
3058
Takashi Iwai98274f02005-11-17 14:52:34 +01003059static int hdspm_set_safe_mode(struct hdspm * hdspm, int out)
Takashi Iwai763f3562005-06-03 11:25:34 +02003060{
3061 if (out)
3062 hdspm->control_register |= HDSPM_AutoInp;
3063 else
3064 hdspm->control_register &= ~HDSPM_AutoInp;
3065 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3066
3067 return 0;
3068}
3069
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003070#define snd_hdspm_info_safe_mode snd_ctl_boolean_mono_info
Takashi Iwai763f3562005-06-03 11:25:34 +02003071
Takashi Iwai98274f02005-11-17 14:52:34 +01003072static int snd_hdspm_get_safe_mode(struct snd_kcontrol *kcontrol,
3073 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003074{
Takashi Iwai98274f02005-11-17 14:52:34 +01003075 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003076
3077 spin_lock_irq(&hdspm->lock);
3078 ucontrol->value.integer.value[0] = hdspm_safe_mode(hdspm);
3079 spin_unlock_irq(&hdspm->lock);
3080 return 0;
3081}
3082
Takashi Iwai98274f02005-11-17 14:52:34 +01003083static int snd_hdspm_put_safe_mode(struct snd_kcontrol *kcontrol,
3084 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003085{
Takashi Iwai98274f02005-11-17 14:52:34 +01003086 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003087 int change;
3088 unsigned int val;
3089
3090 if (!snd_hdspm_use_is_exclusive(hdspm))
3091 return -EBUSY;
3092 val = ucontrol->value.integer.value[0] & 1;
3093 spin_lock_irq(&hdspm->lock);
3094 change = (int) val != hdspm_safe_mode(hdspm);
3095 hdspm_set_safe_mode(hdspm, val);
3096 spin_unlock_irq(&hdspm->lock);
3097 return change;
3098}
3099
Adrian Knoth0dca1792011-01-26 19:32:14 +01003100
Remy Bruno3cee5a62006-10-16 12:46:32 +02003101#define HDSPM_EMPHASIS(xname, xindex) \
3102{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3103 .name = xname, \
3104 .index = xindex, \
3105 .info = snd_hdspm_info_emphasis, \
3106 .get = snd_hdspm_get_emphasis, \
3107 .put = snd_hdspm_put_emphasis \
3108}
3109
3110static int hdspm_emphasis(struct hdspm * hdspm)
3111{
3112 return (hdspm->control_register & HDSPM_Emphasis) ? 1 : 0;
3113}
3114
3115static int hdspm_set_emphasis(struct hdspm * hdspm, int emp)
3116{
3117 if (emp)
3118 hdspm->control_register |= HDSPM_Emphasis;
3119 else
3120 hdspm->control_register &= ~HDSPM_Emphasis;
3121 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3122
3123 return 0;
3124}
3125
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003126#define snd_hdspm_info_emphasis snd_ctl_boolean_mono_info
Remy Bruno3cee5a62006-10-16 12:46:32 +02003127
3128static int snd_hdspm_get_emphasis(struct snd_kcontrol *kcontrol,
3129 struct snd_ctl_elem_value *ucontrol)
3130{
3131 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3132
3133 spin_lock_irq(&hdspm->lock);
3134 ucontrol->value.enumerated.item[0] = hdspm_emphasis(hdspm);
3135 spin_unlock_irq(&hdspm->lock);
3136 return 0;
3137}
3138
3139static int snd_hdspm_put_emphasis(struct snd_kcontrol *kcontrol,
3140 struct snd_ctl_elem_value *ucontrol)
3141{
3142 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3143 int change;
3144 unsigned int val;
3145
3146 if (!snd_hdspm_use_is_exclusive(hdspm))
3147 return -EBUSY;
3148 val = ucontrol->value.integer.value[0] & 1;
3149 spin_lock_irq(&hdspm->lock);
3150 change = (int) val != hdspm_emphasis(hdspm);
3151 hdspm_set_emphasis(hdspm, val);
3152 spin_unlock_irq(&hdspm->lock);
3153 return change;
3154}
3155
Adrian Knoth0dca1792011-01-26 19:32:14 +01003156
Remy Bruno3cee5a62006-10-16 12:46:32 +02003157#define HDSPM_DOLBY(xname, xindex) \
3158{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3159 .name = xname, \
3160 .index = xindex, \
3161 .info = snd_hdspm_info_dolby, \
3162 .get = snd_hdspm_get_dolby, \
3163 .put = snd_hdspm_put_dolby \
3164}
3165
3166static int hdspm_dolby(struct hdspm * hdspm)
3167{
3168 return (hdspm->control_register & HDSPM_Dolby) ? 1 : 0;
3169}
3170
3171static int hdspm_set_dolby(struct hdspm * hdspm, int dol)
3172{
3173 if (dol)
3174 hdspm->control_register |= HDSPM_Dolby;
3175 else
3176 hdspm->control_register &= ~HDSPM_Dolby;
3177 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3178
3179 return 0;
3180}
3181
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003182#define snd_hdspm_info_dolby snd_ctl_boolean_mono_info
Remy Bruno3cee5a62006-10-16 12:46:32 +02003183
3184static int snd_hdspm_get_dolby(struct snd_kcontrol *kcontrol,
3185 struct snd_ctl_elem_value *ucontrol)
3186{
3187 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3188
3189 spin_lock_irq(&hdspm->lock);
3190 ucontrol->value.enumerated.item[0] = hdspm_dolby(hdspm);
3191 spin_unlock_irq(&hdspm->lock);
3192 return 0;
3193}
3194
3195static int snd_hdspm_put_dolby(struct snd_kcontrol *kcontrol,
3196 struct snd_ctl_elem_value *ucontrol)
3197{
3198 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3199 int change;
3200 unsigned int val;
3201
3202 if (!snd_hdspm_use_is_exclusive(hdspm))
3203 return -EBUSY;
3204 val = ucontrol->value.integer.value[0] & 1;
3205 spin_lock_irq(&hdspm->lock);
3206 change = (int) val != hdspm_dolby(hdspm);
3207 hdspm_set_dolby(hdspm, val);
3208 spin_unlock_irq(&hdspm->lock);
3209 return change;
3210}
3211
Adrian Knoth0dca1792011-01-26 19:32:14 +01003212
Remy Bruno3cee5a62006-10-16 12:46:32 +02003213#define HDSPM_PROFESSIONAL(xname, xindex) \
3214{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3215 .name = xname, \
3216 .index = xindex, \
3217 .info = snd_hdspm_info_professional, \
3218 .get = snd_hdspm_get_professional, \
3219 .put = snd_hdspm_put_professional \
3220}
3221
3222static int hdspm_professional(struct hdspm * hdspm)
3223{
3224 return (hdspm->control_register & HDSPM_Professional) ? 1 : 0;
3225}
3226
3227static int hdspm_set_professional(struct hdspm * hdspm, int dol)
3228{
3229 if (dol)
3230 hdspm->control_register |= HDSPM_Professional;
3231 else
3232 hdspm->control_register &= ~HDSPM_Professional;
3233 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3234
3235 return 0;
3236}
3237
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003238#define snd_hdspm_info_professional snd_ctl_boolean_mono_info
Remy Bruno3cee5a62006-10-16 12:46:32 +02003239
3240static int snd_hdspm_get_professional(struct snd_kcontrol *kcontrol,
3241 struct snd_ctl_elem_value *ucontrol)
3242{
3243 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3244
3245 spin_lock_irq(&hdspm->lock);
3246 ucontrol->value.enumerated.item[0] = hdspm_professional(hdspm);
3247 spin_unlock_irq(&hdspm->lock);
3248 return 0;
3249}
3250
3251static int snd_hdspm_put_professional(struct snd_kcontrol *kcontrol,
3252 struct snd_ctl_elem_value *ucontrol)
3253{
3254 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3255 int change;
3256 unsigned int val;
3257
3258 if (!snd_hdspm_use_is_exclusive(hdspm))
3259 return -EBUSY;
3260 val = ucontrol->value.integer.value[0] & 1;
3261 spin_lock_irq(&hdspm->lock);
3262 change = (int) val != hdspm_professional(hdspm);
3263 hdspm_set_professional(hdspm, val);
3264 spin_unlock_irq(&hdspm->lock);
3265 return change;
3266}
3267
Takashi Iwai763f3562005-06-03 11:25:34 +02003268#define HDSPM_INPUT_SELECT(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02003269{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Takashi Iwai763f3562005-06-03 11:25:34 +02003270 .name = xname, \
3271 .index = xindex, \
3272 .info = snd_hdspm_info_input_select, \
3273 .get = snd_hdspm_get_input_select, \
3274 .put = snd_hdspm_put_input_select \
3275}
3276
Takashi Iwai98274f02005-11-17 14:52:34 +01003277static int hdspm_input_select(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02003278{
3279 return (hdspm->control_register & HDSPM_InputSelect0) ? 1 : 0;
3280}
3281
Takashi Iwai98274f02005-11-17 14:52:34 +01003282static int hdspm_set_input_select(struct hdspm * hdspm, int out)
Takashi Iwai763f3562005-06-03 11:25:34 +02003283{
3284 if (out)
3285 hdspm->control_register |= HDSPM_InputSelect0;
3286 else
3287 hdspm->control_register &= ~HDSPM_InputSelect0;
3288 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3289
3290 return 0;
3291}
3292
Takashi Iwai98274f02005-11-17 14:52:34 +01003293static int snd_hdspm_info_input_select(struct snd_kcontrol *kcontrol,
3294 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02003295{
3296 static char *texts[] = { "optical", "coaxial" };
3297
3298 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3299 uinfo->count = 1;
3300 uinfo->value.enumerated.items = 2;
3301
3302 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3303 uinfo->value.enumerated.item =
3304 uinfo->value.enumerated.items - 1;
3305 strcpy(uinfo->value.enumerated.name,
3306 texts[uinfo->value.enumerated.item]);
3307
3308 return 0;
3309}
3310
Takashi Iwai98274f02005-11-17 14:52:34 +01003311static int snd_hdspm_get_input_select(struct snd_kcontrol *kcontrol,
3312 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003313{
Takashi Iwai98274f02005-11-17 14:52:34 +01003314 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003315
3316 spin_lock_irq(&hdspm->lock);
3317 ucontrol->value.enumerated.item[0] = hdspm_input_select(hdspm);
3318 spin_unlock_irq(&hdspm->lock);
3319 return 0;
3320}
3321
Takashi Iwai98274f02005-11-17 14:52:34 +01003322static int snd_hdspm_put_input_select(struct snd_kcontrol *kcontrol,
3323 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003324{
Takashi Iwai98274f02005-11-17 14:52:34 +01003325 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003326 int change;
3327 unsigned int val;
3328
3329 if (!snd_hdspm_use_is_exclusive(hdspm))
3330 return -EBUSY;
3331 val = ucontrol->value.integer.value[0] & 1;
3332 spin_lock_irq(&hdspm->lock);
3333 change = (int) val != hdspm_input_select(hdspm);
3334 hdspm_set_input_select(hdspm, val);
3335 spin_unlock_irq(&hdspm->lock);
3336 return change;
3337}
3338
Adrian Knoth0dca1792011-01-26 19:32:14 +01003339
Remy Bruno3cee5a62006-10-16 12:46:32 +02003340#define HDSPM_DS_WIRE(xname, xindex) \
3341{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3342 .name = xname, \
3343 .index = xindex, \
3344 .info = snd_hdspm_info_ds_wire, \
3345 .get = snd_hdspm_get_ds_wire, \
3346 .put = snd_hdspm_put_ds_wire \
3347}
3348
3349static int hdspm_ds_wire(struct hdspm * hdspm)
3350{
3351 return (hdspm->control_register & HDSPM_DS_DoubleWire) ? 1 : 0;
3352}
3353
3354static int hdspm_set_ds_wire(struct hdspm * hdspm, int ds)
3355{
3356 if (ds)
3357 hdspm->control_register |= HDSPM_DS_DoubleWire;
3358 else
3359 hdspm->control_register &= ~HDSPM_DS_DoubleWire;
3360 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3361
3362 return 0;
3363}
3364
3365static int snd_hdspm_info_ds_wire(struct snd_kcontrol *kcontrol,
3366 struct snd_ctl_elem_info *uinfo)
3367{
3368 static char *texts[] = { "Single", "Double" };
3369
3370 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3371 uinfo->count = 1;
3372 uinfo->value.enumerated.items = 2;
3373
3374 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3375 uinfo->value.enumerated.item =
3376 uinfo->value.enumerated.items - 1;
3377 strcpy(uinfo->value.enumerated.name,
3378 texts[uinfo->value.enumerated.item]);
3379
3380 return 0;
3381}
3382
3383static int snd_hdspm_get_ds_wire(struct snd_kcontrol *kcontrol,
3384 struct snd_ctl_elem_value *ucontrol)
3385{
3386 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3387
3388 spin_lock_irq(&hdspm->lock);
3389 ucontrol->value.enumerated.item[0] = hdspm_ds_wire(hdspm);
3390 spin_unlock_irq(&hdspm->lock);
3391 return 0;
3392}
3393
3394static int snd_hdspm_put_ds_wire(struct snd_kcontrol *kcontrol,
3395 struct snd_ctl_elem_value *ucontrol)
3396{
3397 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3398 int change;
3399 unsigned int val;
3400
3401 if (!snd_hdspm_use_is_exclusive(hdspm))
3402 return -EBUSY;
3403 val = ucontrol->value.integer.value[0] & 1;
3404 spin_lock_irq(&hdspm->lock);
3405 change = (int) val != hdspm_ds_wire(hdspm);
3406 hdspm_set_ds_wire(hdspm, val);
3407 spin_unlock_irq(&hdspm->lock);
3408 return change;
3409}
3410
Adrian Knoth0dca1792011-01-26 19:32:14 +01003411
Remy Bruno3cee5a62006-10-16 12:46:32 +02003412#define HDSPM_QS_WIRE(xname, xindex) \
3413{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3414 .name = xname, \
3415 .index = xindex, \
3416 .info = snd_hdspm_info_qs_wire, \
3417 .get = snd_hdspm_get_qs_wire, \
3418 .put = snd_hdspm_put_qs_wire \
3419}
3420
3421static int hdspm_qs_wire(struct hdspm * hdspm)
3422{
3423 if (hdspm->control_register & HDSPM_QS_DoubleWire)
3424 return 1;
3425 if (hdspm->control_register & HDSPM_QS_QuadWire)
3426 return 2;
3427 return 0;
3428}
3429
3430static int hdspm_set_qs_wire(struct hdspm * hdspm, int mode)
3431{
3432 hdspm->control_register &= ~(HDSPM_QS_DoubleWire | HDSPM_QS_QuadWire);
3433 switch (mode) {
3434 case 0:
3435 break;
3436 case 1:
3437 hdspm->control_register |= HDSPM_QS_DoubleWire;
3438 break;
3439 case 2:
3440 hdspm->control_register |= HDSPM_QS_QuadWire;
3441 break;
3442 }
3443 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3444
3445 return 0;
3446}
3447
3448static int snd_hdspm_info_qs_wire(struct snd_kcontrol *kcontrol,
3449 struct snd_ctl_elem_info *uinfo)
3450{
3451 static char *texts[] = { "Single", "Double", "Quad" };
3452
3453 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3454 uinfo->count = 1;
3455 uinfo->value.enumerated.items = 3;
3456
3457 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3458 uinfo->value.enumerated.item =
3459 uinfo->value.enumerated.items - 1;
3460 strcpy(uinfo->value.enumerated.name,
3461 texts[uinfo->value.enumerated.item]);
3462
3463 return 0;
3464}
3465
3466static int snd_hdspm_get_qs_wire(struct snd_kcontrol *kcontrol,
3467 struct snd_ctl_elem_value *ucontrol)
3468{
3469 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3470
3471 spin_lock_irq(&hdspm->lock);
3472 ucontrol->value.enumerated.item[0] = hdspm_qs_wire(hdspm);
3473 spin_unlock_irq(&hdspm->lock);
3474 return 0;
3475}
3476
3477static int snd_hdspm_put_qs_wire(struct snd_kcontrol *kcontrol,
3478 struct snd_ctl_elem_value *ucontrol)
3479{
3480 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3481 int change;
3482 int val;
3483
3484 if (!snd_hdspm_use_is_exclusive(hdspm))
3485 return -EBUSY;
3486 val = ucontrol->value.integer.value[0];
3487 if (val < 0)
3488 val = 0;
3489 if (val > 2)
3490 val = 2;
3491 spin_lock_irq(&hdspm->lock);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02003492 change = val != hdspm_qs_wire(hdspm);
Remy Bruno3cee5a62006-10-16 12:46:32 +02003493 hdspm_set_qs_wire(hdspm, val);
3494 spin_unlock_irq(&hdspm->lock);
3495 return change;
3496}
3497
Adrian Knoth700d1ef2011-07-29 03:11:02 +02003498#define HDSPM_MADI_SPEEDMODE(xname, xindex) \
3499{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3500 .name = xname, \
3501 .index = xindex, \
3502 .info = snd_hdspm_info_madi_speedmode, \
3503 .get = snd_hdspm_get_madi_speedmode, \
3504 .put = snd_hdspm_put_madi_speedmode \
3505}
3506
3507static int hdspm_madi_speedmode(struct hdspm *hdspm)
3508{
3509 if (hdspm->control_register & HDSPM_QuadSpeed)
3510 return 2;
3511 if (hdspm->control_register & HDSPM_DoubleSpeed)
3512 return 1;
3513 return 0;
3514}
3515
3516static int hdspm_set_madi_speedmode(struct hdspm *hdspm, int mode)
3517{
3518 hdspm->control_register &= ~(HDSPM_DoubleSpeed | HDSPM_QuadSpeed);
3519 switch (mode) {
3520 case 0:
3521 break;
3522 case 1:
3523 hdspm->control_register |= HDSPM_DoubleSpeed;
3524 break;
3525 case 2:
3526 hdspm->control_register |= HDSPM_QuadSpeed;
3527 break;
3528 }
3529 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
3530
3531 return 0;
3532}
3533
3534static int snd_hdspm_info_madi_speedmode(struct snd_kcontrol *kcontrol,
3535 struct snd_ctl_elem_info *uinfo)
3536{
3537 static char *texts[] = { "Single", "Double", "Quad" };
3538
3539 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3540 uinfo->count = 1;
3541 uinfo->value.enumerated.items = 3;
3542
3543 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3544 uinfo->value.enumerated.item =
3545 uinfo->value.enumerated.items - 1;
3546 strcpy(uinfo->value.enumerated.name,
3547 texts[uinfo->value.enumerated.item]);
3548
3549 return 0;
3550}
3551
3552static int snd_hdspm_get_madi_speedmode(struct snd_kcontrol *kcontrol,
3553 struct snd_ctl_elem_value *ucontrol)
3554{
3555 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3556
3557 spin_lock_irq(&hdspm->lock);
3558 ucontrol->value.enumerated.item[0] = hdspm_madi_speedmode(hdspm);
3559 spin_unlock_irq(&hdspm->lock);
3560 return 0;
3561}
3562
3563static int snd_hdspm_put_madi_speedmode(struct snd_kcontrol *kcontrol,
3564 struct snd_ctl_elem_value *ucontrol)
3565{
3566 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3567 int change;
3568 int val;
3569
3570 if (!snd_hdspm_use_is_exclusive(hdspm))
3571 return -EBUSY;
3572 val = ucontrol->value.integer.value[0];
3573 if (val < 0)
3574 val = 0;
3575 if (val > 2)
3576 val = 2;
3577 spin_lock_irq(&hdspm->lock);
3578 change = val != hdspm_madi_speedmode(hdspm);
3579 hdspm_set_madi_speedmode(hdspm, val);
3580 spin_unlock_irq(&hdspm->lock);
3581 return change;
3582}
Takashi Iwai763f3562005-06-03 11:25:34 +02003583
3584#define HDSPM_MIXER(xname, xindex) \
3585{ .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
3586 .name = xname, \
3587 .index = xindex, \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02003588 .device = 0, \
Takashi Iwai763f3562005-06-03 11:25:34 +02003589 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3590 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3591 .info = snd_hdspm_info_mixer, \
3592 .get = snd_hdspm_get_mixer, \
3593 .put = snd_hdspm_put_mixer \
3594}
3595
Takashi Iwai98274f02005-11-17 14:52:34 +01003596static int snd_hdspm_info_mixer(struct snd_kcontrol *kcontrol,
3597 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02003598{
3599 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3600 uinfo->count = 3;
3601 uinfo->value.integer.min = 0;
3602 uinfo->value.integer.max = 65535;
3603 uinfo->value.integer.step = 1;
3604 return 0;
3605}
3606
Takashi Iwai98274f02005-11-17 14:52:34 +01003607static int snd_hdspm_get_mixer(struct snd_kcontrol *kcontrol,
3608 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003609{
Takashi Iwai98274f02005-11-17 14:52:34 +01003610 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003611 int source;
3612 int destination;
3613
3614 source = ucontrol->value.integer.value[0];
3615 if (source < 0)
3616 source = 0;
3617 else if (source >= 2 * HDSPM_MAX_CHANNELS)
3618 source = 2 * HDSPM_MAX_CHANNELS - 1;
3619
3620 destination = ucontrol->value.integer.value[1];
3621 if (destination < 0)
3622 destination = 0;
3623 else if (destination >= HDSPM_MAX_CHANNELS)
3624 destination = HDSPM_MAX_CHANNELS - 1;
3625
3626 spin_lock_irq(&hdspm->lock);
3627 if (source >= HDSPM_MAX_CHANNELS)
3628 ucontrol->value.integer.value[2] =
3629 hdspm_read_pb_gain(hdspm, destination,
3630 source - HDSPM_MAX_CHANNELS);
3631 else
3632 ucontrol->value.integer.value[2] =
3633 hdspm_read_in_gain(hdspm, destination, source);
3634
3635 spin_unlock_irq(&hdspm->lock);
3636
3637 return 0;
3638}
3639
Takashi Iwai98274f02005-11-17 14:52:34 +01003640static int snd_hdspm_put_mixer(struct snd_kcontrol *kcontrol,
3641 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003642{
Takashi Iwai98274f02005-11-17 14:52:34 +01003643 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003644 int change;
3645 int source;
3646 int destination;
3647 int gain;
3648
3649 if (!snd_hdspm_use_is_exclusive(hdspm))
3650 return -EBUSY;
3651
3652 source = ucontrol->value.integer.value[0];
3653 destination = ucontrol->value.integer.value[1];
3654
3655 if (source < 0 || source >= 2 * HDSPM_MAX_CHANNELS)
3656 return -1;
3657 if (destination < 0 || destination >= HDSPM_MAX_CHANNELS)
3658 return -1;
3659
3660 gain = ucontrol->value.integer.value[2];
3661
3662 spin_lock_irq(&hdspm->lock);
3663
3664 if (source >= HDSPM_MAX_CHANNELS)
3665 change = gain != hdspm_read_pb_gain(hdspm, destination,
3666 source -
3667 HDSPM_MAX_CHANNELS);
3668 else
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02003669 change = gain != hdspm_read_in_gain(hdspm, destination,
3670 source);
Takashi Iwai763f3562005-06-03 11:25:34 +02003671
3672 if (change) {
3673 if (source >= HDSPM_MAX_CHANNELS)
3674 hdspm_write_pb_gain(hdspm, destination,
3675 source - HDSPM_MAX_CHANNELS,
3676 gain);
3677 else
3678 hdspm_write_in_gain(hdspm, destination, source,
3679 gain);
3680 }
3681 spin_unlock_irq(&hdspm->lock);
3682
3683 return change;
3684}
3685
3686/* The simple mixer control(s) provide gain control for the
3687 basic 1:1 mappings of playback streams to output
Adrian Knoth0dca1792011-01-26 19:32:14 +01003688 streams.
Takashi Iwai763f3562005-06-03 11:25:34 +02003689*/
3690
3691#define HDSPM_PLAYBACK_MIXER \
3692{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3693 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
3694 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3695 .info = snd_hdspm_info_playback_mixer, \
3696 .get = snd_hdspm_get_playback_mixer, \
3697 .put = snd_hdspm_put_playback_mixer \
3698}
3699
Takashi Iwai98274f02005-11-17 14:52:34 +01003700static int snd_hdspm_info_playback_mixer(struct snd_kcontrol *kcontrol,
3701 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02003702{
3703 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3704 uinfo->count = 1;
3705 uinfo->value.integer.min = 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003706 uinfo->value.integer.max = 64;
Takashi Iwai763f3562005-06-03 11:25:34 +02003707 uinfo->value.integer.step = 1;
3708 return 0;
3709}
3710
Takashi Iwai98274f02005-11-17 14:52:34 +01003711static int snd_hdspm_get_playback_mixer(struct snd_kcontrol *kcontrol,
3712 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003713{
Takashi Iwai98274f02005-11-17 14:52:34 +01003714 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003715 int channel;
Takashi Iwai763f3562005-06-03 11:25:34 +02003716
3717 channel = ucontrol->id.index - 1;
3718
Takashi Iwaida3cec32008-08-08 17:12:14 +02003719 if (snd_BUG_ON(channel < 0 || channel >= HDSPM_MAX_CHANNELS))
3720 return -EINVAL;
Takashi Iwai763f3562005-06-03 11:25:34 +02003721
Takashi Iwai763f3562005-06-03 11:25:34 +02003722 spin_lock_irq(&hdspm->lock);
3723 ucontrol->value.integer.value[0] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01003724 (hdspm_read_pb_gain(hdspm, channel, channel)*64)/UNITY_GAIN;
Takashi Iwai763f3562005-06-03 11:25:34 +02003725 spin_unlock_irq(&hdspm->lock);
3726
Takashi Iwai763f3562005-06-03 11:25:34 +02003727 return 0;
3728}
3729
Takashi Iwai98274f02005-11-17 14:52:34 +01003730static int snd_hdspm_put_playback_mixer(struct snd_kcontrol *kcontrol,
3731 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02003732{
Takashi Iwai98274f02005-11-17 14:52:34 +01003733 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02003734 int change;
3735 int channel;
Takashi Iwai763f3562005-06-03 11:25:34 +02003736 int gain;
3737
3738 if (!snd_hdspm_use_is_exclusive(hdspm))
3739 return -EBUSY;
3740
3741 channel = ucontrol->id.index - 1;
3742
Takashi Iwaida3cec32008-08-08 17:12:14 +02003743 if (snd_BUG_ON(channel < 0 || channel >= HDSPM_MAX_CHANNELS))
3744 return -EINVAL;
Takashi Iwai763f3562005-06-03 11:25:34 +02003745
Adrian Knoth0dca1792011-01-26 19:32:14 +01003746 gain = ucontrol->value.integer.value[0]*UNITY_GAIN/64;
Takashi Iwai763f3562005-06-03 11:25:34 +02003747
3748 spin_lock_irq(&hdspm->lock);
3749 change =
Adrian Knoth0dca1792011-01-26 19:32:14 +01003750 gain != hdspm_read_pb_gain(hdspm, channel,
3751 channel);
Takashi Iwai763f3562005-06-03 11:25:34 +02003752 if (change)
Adrian Knoth0dca1792011-01-26 19:32:14 +01003753 hdspm_write_pb_gain(hdspm, channel, channel,
Takashi Iwai763f3562005-06-03 11:25:34 +02003754 gain);
3755 spin_unlock_irq(&hdspm->lock);
3756 return change;
3757}
3758
Adrian Knoth0dca1792011-01-26 19:32:14 +01003759#define HDSPM_SYNC_CHECK(xname, xindex) \
3760{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3761 .name = xname, \
3762 .private_value = xindex, \
3763 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3764 .info = snd_hdspm_info_sync_check, \
3765 .get = snd_hdspm_get_sync_check \
Takashi Iwai763f3562005-06-03 11:25:34 +02003766}
3767
Adrian Knoth0dca1792011-01-26 19:32:14 +01003768
Takashi Iwai98274f02005-11-17 14:52:34 +01003769static int snd_hdspm_info_sync_check(struct snd_kcontrol *kcontrol,
3770 struct snd_ctl_elem_info *uinfo)
Takashi Iwai763f3562005-06-03 11:25:34 +02003771{
Adrian Knoth0dca1792011-01-26 19:32:14 +01003772 static char *texts[] = { "No Lock", "Lock", "Sync", "N/A" };
Takashi Iwai763f3562005-06-03 11:25:34 +02003773 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3774 uinfo->count = 1;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003775 uinfo->value.enumerated.items = 4;
Takashi Iwai763f3562005-06-03 11:25:34 +02003776 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3777 uinfo->value.enumerated.item =
Adrian Knoth0dca1792011-01-26 19:32:14 +01003778 uinfo->value.enumerated.items - 1;
Takashi Iwai763f3562005-06-03 11:25:34 +02003779 strcpy(uinfo->value.enumerated.name,
Adrian Knoth0dca1792011-01-26 19:32:14 +01003780 texts[uinfo->value.enumerated.item]);
Takashi Iwai763f3562005-06-03 11:25:34 +02003781 return 0;
3782}
3783
Adrian Knoth0dca1792011-01-26 19:32:14 +01003784static int hdspm_wc_sync_check(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02003785{
Adrian Knoth0dca1792011-01-26 19:32:14 +01003786 int status, status2;
3787
3788 switch (hdspm->io_type) {
3789 case AES32:
3790 status = hdspm_read(hdspm, HDSPM_statusRegister);
3791 if (status & HDSPM_wcSync)
Takashi Iwai763f3562005-06-03 11:25:34 +02003792 return 2;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003793 else if (status & HDSPM_wcLock)
3794 return 1;
Remy Bruno3cee5a62006-10-16 12:46:32 +02003795 return 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003796 break;
3797
3798 case MADI:
3799 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
Remy Bruno3cee5a62006-10-16 12:46:32 +02003800 if (status2 & HDSPM_wcLock) {
3801 if (status2 & HDSPM_wcSync)
3802 return 2;
3803 else
3804 return 1;
3805 }
3806 return 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003807 break;
3808
3809 case RayDAT:
3810 case AIO:
3811 status = hdspm_read(hdspm, HDSPM_statusRegister);
3812
3813 if (status & 0x2000000)
3814 return 2;
3815 else if (status & 0x1000000)
3816 return 1;
3817 return 0;
3818
3819 break;
3820
3821 case MADIface:
3822 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02003823 }
Takashi Iwai763f3562005-06-03 11:25:34 +02003824
Takashi Iwai763f3562005-06-03 11:25:34 +02003825
Adrian Knoth0dca1792011-01-26 19:32:14 +01003826 return 3;
Takashi Iwai763f3562005-06-03 11:25:34 +02003827}
3828
3829
Adrian Knoth0dca1792011-01-26 19:32:14 +01003830static int hdspm_madi_sync_check(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02003831{
3832 int status = hdspm_read(hdspm, HDSPM_statusRegister);
3833 if (status & HDSPM_madiLock) {
3834 if (status & HDSPM_madiSync)
3835 return 2;
3836 else
3837 return 1;
3838 }
3839 return 0;
3840}
3841
Adrian Knoth0dca1792011-01-26 19:32:14 +01003842
3843static int hdspm_s1_sync_check(struct hdspm *hdspm, int idx)
3844{
3845 int status, lock, sync;
3846
3847 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
3848
3849 lock = (status & (0x1<<idx)) ? 1 : 0;
3850 sync = (status & (0x100<<idx)) ? 1 : 0;
3851
3852 if (lock && sync)
3853 return 2;
3854 else if (lock)
3855 return 1;
3856 return 0;
3857}
3858
3859
3860static int hdspm_sync_in_sync_check(struct hdspm *hdspm)
3861{
3862 int status, lock = 0, sync = 0;
3863
3864 switch (hdspm->io_type) {
3865 case RayDAT:
3866 case AIO:
3867 status = hdspm_read(hdspm, HDSPM_RD_STATUS_3);
3868 lock = (status & 0x400) ? 1 : 0;
3869 sync = (status & 0x800) ? 1 : 0;
3870 break;
3871
3872 case MADI:
3873 case AES32:
3874 status = hdspm_read(hdspm, HDSPM_statusRegister2);
Adrian Knotha7edbd52011-02-23 11:43:15 +01003875 lock = (status & HDSPM_syncInLock) ? 1 : 0;
3876 sync = (status & HDSPM_syncInSync) ? 1 : 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003877 break;
3878
3879 case MADIface:
3880 break;
3881 }
3882
3883 if (lock && sync)
3884 return 2;
3885 else if (lock)
3886 return 1;
3887
3888 return 0;
3889}
3890
3891static int hdspm_aes_sync_check(struct hdspm *hdspm, int idx)
3892{
3893 int status2, lock, sync;
3894 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
3895
3896 lock = (status2 & (0x0080 >> idx)) ? 1 : 0;
3897 sync = (status2 & (0x8000 >> idx)) ? 1 : 0;
3898
3899 if (sync)
3900 return 2;
3901 else if (lock)
3902 return 1;
3903 return 0;
3904}
3905
3906
3907static int hdspm_tco_sync_check(struct hdspm *hdspm)
3908{
3909 int status;
3910
3911 if (hdspm->tco) {
3912 switch (hdspm->io_type) {
3913 case MADI:
3914 case AES32:
3915 status = hdspm_read(hdspm, HDSPM_statusRegister);
3916 if (status & HDSPM_tcoLock) {
3917 if (status & HDSPM_tcoSync)
3918 return 2;
3919 else
3920 return 1;
3921 }
3922 return 0;
3923
3924 break;
3925
3926 case RayDAT:
3927 case AIO:
3928 status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
3929
3930 if (status & 0x8000000)
3931 return 2; /* Sync */
3932 if (status & 0x4000000)
3933 return 1; /* Lock */
3934 return 0; /* No signal */
3935 break;
3936
3937 default:
3938 break;
3939 }
3940 }
3941
3942 return 3; /* N/A */
3943}
3944
3945
3946static int snd_hdspm_get_sync_check(struct snd_kcontrol *kcontrol,
3947 struct snd_ctl_elem_value *ucontrol)
3948{
3949 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
3950 int val = -1;
3951
3952 switch (hdspm->io_type) {
3953 case RayDAT:
3954 switch (kcontrol->private_value) {
3955 case 0: /* WC */
3956 val = hdspm_wc_sync_check(hdspm); break;
3957 case 7: /* TCO */
3958 val = hdspm_tco_sync_check(hdspm); break;
3959 case 8: /* SYNC IN */
3960 val = hdspm_sync_in_sync_check(hdspm); break;
3961 default:
3962 val = hdspm_s1_sync_check(hdspm, ucontrol->id.index-1);
3963 }
Adrian Knothfba30fd2012-10-19 17:42:24 +02003964 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003965
3966 case AIO:
3967 switch (kcontrol->private_value) {
3968 case 0: /* WC */
3969 val = hdspm_wc_sync_check(hdspm); break;
3970 case 4: /* TCO */
3971 val = hdspm_tco_sync_check(hdspm); break;
3972 case 5: /* SYNC IN */
3973 val = hdspm_sync_in_sync_check(hdspm); break;
3974 default:
3975 val = hdspm_s1_sync_check(hdspm, ucontrol->id.index-1);
3976 }
Adrian Knothfba30fd2012-10-19 17:42:24 +02003977 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003978
3979 case MADI:
3980 switch (kcontrol->private_value) {
3981 case 0: /* WC */
3982 val = hdspm_wc_sync_check(hdspm); break;
3983 case 1: /* MADI */
3984 val = hdspm_madi_sync_check(hdspm); break;
3985 case 2: /* TCO */
3986 val = hdspm_tco_sync_check(hdspm); break;
3987 case 3: /* SYNC_IN */
3988 val = hdspm_sync_in_sync_check(hdspm); break;
3989 }
Adrian Knothfba30fd2012-10-19 17:42:24 +02003990 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01003991
3992 case MADIface:
3993 val = hdspm_madi_sync_check(hdspm); /* MADI */
3994 break;
3995
3996 case AES32:
3997 switch (kcontrol->private_value) {
3998 case 0: /* WC */
3999 val = hdspm_wc_sync_check(hdspm); break;
4000 case 9: /* TCO */
4001 val = hdspm_tco_sync_check(hdspm); break;
4002 case 10 /* SYNC IN */:
4003 val = hdspm_sync_in_sync_check(hdspm); break;
Adrian Knoth7c4a95b2011-02-23 11:43:13 +01004004 default: /* AES1 to AES8 */
Adrian Knoth0dca1792011-01-26 19:32:14 +01004005 val = hdspm_aes_sync_check(hdspm,
Adrian Knoth7c4a95b2011-02-23 11:43:13 +01004006 kcontrol->private_value-1);
Adrian Knoth0dca1792011-01-26 19:32:14 +01004007 }
Adrian Knothfba30fd2012-10-19 17:42:24 +02004008 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01004009
4010 }
4011
4012 if (-1 == val)
4013 val = 3;
4014
4015 ucontrol->value.enumerated.item[0] = val;
4016 return 0;
4017}
4018
4019
4020
4021/**
4022 * TCO controls
4023 **/
4024static void hdspm_tco_write(struct hdspm *hdspm)
4025{
4026 unsigned int tc[4] = { 0, 0, 0, 0};
4027
4028 switch (hdspm->tco->input) {
4029 case 0:
4030 tc[2] |= HDSPM_TCO2_set_input_MSB;
4031 break;
4032 case 1:
4033 tc[2] |= HDSPM_TCO2_set_input_LSB;
4034 break;
4035 default:
4036 break;
4037 }
4038
4039 switch (hdspm->tco->framerate) {
4040 case 1:
4041 tc[1] |= HDSPM_TCO1_LTC_Format_LSB;
4042 break;
4043 case 2:
4044 tc[1] |= HDSPM_TCO1_LTC_Format_MSB;
4045 break;
4046 case 3:
4047 tc[1] |= HDSPM_TCO1_LTC_Format_MSB +
4048 HDSPM_TCO1_set_drop_frame_flag;
4049 break;
4050 case 4:
4051 tc[1] |= HDSPM_TCO1_LTC_Format_LSB +
4052 HDSPM_TCO1_LTC_Format_MSB;
4053 break;
4054 case 5:
4055 tc[1] |= HDSPM_TCO1_LTC_Format_LSB +
4056 HDSPM_TCO1_LTC_Format_MSB +
4057 HDSPM_TCO1_set_drop_frame_flag;
4058 break;
4059 default:
4060 break;
4061 }
4062
4063 switch (hdspm->tco->wordclock) {
4064 case 1:
4065 tc[2] |= HDSPM_TCO2_WCK_IO_ratio_LSB;
4066 break;
4067 case 2:
4068 tc[2] |= HDSPM_TCO2_WCK_IO_ratio_MSB;
4069 break;
4070 default:
4071 break;
4072 }
4073
4074 switch (hdspm->tco->samplerate) {
4075 case 1:
4076 tc[2] |= HDSPM_TCO2_set_freq;
4077 break;
4078 case 2:
4079 tc[2] |= HDSPM_TCO2_set_freq_from_app;
4080 break;
4081 default:
4082 break;
4083 }
4084
4085 switch (hdspm->tco->pull) {
4086 case 1:
4087 tc[2] |= HDSPM_TCO2_set_pull_up;
4088 break;
4089 case 2:
4090 tc[2] |= HDSPM_TCO2_set_pull_down;
4091 break;
4092 case 3:
4093 tc[2] |= HDSPM_TCO2_set_pull_up + HDSPM_TCO2_set_01_4;
4094 break;
4095 case 4:
4096 tc[2] |= HDSPM_TCO2_set_pull_down + HDSPM_TCO2_set_01_4;
4097 break;
4098 default:
4099 break;
4100 }
4101
4102 if (1 == hdspm->tco->term) {
4103 tc[2] |= HDSPM_TCO2_set_term_75R;
4104 }
4105
4106 hdspm_write(hdspm, HDSPM_WR_TCO, tc[0]);
4107 hdspm_write(hdspm, HDSPM_WR_TCO+4, tc[1]);
4108 hdspm_write(hdspm, HDSPM_WR_TCO+8, tc[2]);
4109 hdspm_write(hdspm, HDSPM_WR_TCO+12, tc[3]);
4110}
4111
4112
4113#define HDSPM_TCO_SAMPLE_RATE(xname, xindex) \
4114{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4115 .name = xname, \
4116 .index = xindex, \
4117 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4118 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4119 .info = snd_hdspm_info_tco_sample_rate, \
4120 .get = snd_hdspm_get_tco_sample_rate, \
4121 .put = snd_hdspm_put_tco_sample_rate \
4122}
4123
4124static int snd_hdspm_info_tco_sample_rate(struct snd_kcontrol *kcontrol,
4125 struct snd_ctl_elem_info *uinfo)
4126{
4127 static char *texts[] = { "44.1 kHz", "48 kHz" };
4128 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4129 uinfo->count = 1;
4130 uinfo->value.enumerated.items = 2;
4131
4132 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
4133 uinfo->value.enumerated.item =
4134 uinfo->value.enumerated.items - 1;
4135
4136 strcpy(uinfo->value.enumerated.name,
4137 texts[uinfo->value.enumerated.item]);
4138
4139 return 0;
4140}
4141
4142static int snd_hdspm_get_tco_sample_rate(struct snd_kcontrol *kcontrol,
4143 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai763f3562005-06-03 11:25:34 +02004144{
Takashi Iwai98274f02005-11-17 14:52:34 +01004145 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
Takashi Iwai763f3562005-06-03 11:25:34 +02004146
Adrian Knoth0dca1792011-01-26 19:32:14 +01004147 ucontrol->value.enumerated.item[0] = hdspm->tco->samplerate;
4148
Takashi Iwai763f3562005-06-03 11:25:34 +02004149 return 0;
4150}
4151
Adrian Knoth0dca1792011-01-26 19:32:14 +01004152static int snd_hdspm_put_tco_sample_rate(struct snd_kcontrol *kcontrol,
4153 struct snd_ctl_elem_value *ucontrol)
Remy Bruno3cee5a62006-10-16 12:46:32 +02004154{
Adrian Knoth0dca1792011-01-26 19:32:14 +01004155 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4156
4157 if (hdspm->tco->samplerate != ucontrol->value.enumerated.item[0]) {
4158 hdspm->tco->samplerate = ucontrol->value.enumerated.item[0];
4159
4160 hdspm_tco_write(hdspm);
4161
4162 return 1;
Remy Bruno3cee5a62006-10-16 12:46:32 +02004163 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01004164
Remy Bruno3cee5a62006-10-16 12:46:32 +02004165 return 0;
4166}
4167
Adrian Knoth0dca1792011-01-26 19:32:14 +01004168
4169#define HDSPM_TCO_PULL(xname, xindex) \
4170{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4171 .name = xname, \
4172 .index = xindex, \
4173 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4174 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4175 .info = snd_hdspm_info_tco_pull, \
4176 .get = snd_hdspm_get_tco_pull, \
4177 .put = snd_hdspm_put_tco_pull \
4178}
4179
4180static int snd_hdspm_info_tco_pull(struct snd_kcontrol *kcontrol,
4181 struct snd_ctl_elem_info *uinfo)
4182{
4183 static char *texts[] = { "0", "+ 0.1 %", "- 0.1 %", "+ 4 %", "- 4 %" };
4184 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4185 uinfo->count = 1;
4186 uinfo->value.enumerated.items = 5;
4187
4188 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
4189 uinfo->value.enumerated.item =
4190 uinfo->value.enumerated.items - 1;
4191
4192 strcpy(uinfo->value.enumerated.name,
4193 texts[uinfo->value.enumerated.item]);
4194
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" };
4239 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4240 uinfo->count = 1;
4241 uinfo->value.enumerated.items = 3;
4242
4243 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
4244 uinfo->value.enumerated.item =
4245 uinfo->value.enumerated.items - 1;
4246
4247 strcpy(uinfo->value.enumerated.name,
4248 texts[uinfo->value.enumerated.item]);
4249
4250 return 0;
4251}
4252
4253static int snd_hdspm_get_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 ucontrol->value.enumerated.item[0] = hdspm->tco->wordclock;
4259
4260 return 0;
4261}
4262
4263static int snd_hdspm_put_tco_wck_conversion(struct snd_kcontrol *kcontrol,
4264 struct snd_ctl_elem_value *ucontrol)
4265{
4266 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4267
4268 if (hdspm->tco->wordclock != ucontrol->value.enumerated.item[0]) {
4269 hdspm->tco->wordclock = ucontrol->value.enumerated.item[0];
4270
4271 hdspm_tco_write(hdspm);
4272
4273 return 1;
4274 }
4275
4276 return 0;
4277}
4278
4279
4280#define HDSPM_TCO_FRAME_RATE(xname, xindex) \
4281{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4282 .name = xname, \
4283 .index = xindex, \
4284 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4285 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4286 .info = snd_hdspm_info_tco_frame_rate, \
4287 .get = snd_hdspm_get_tco_frame_rate, \
4288 .put = snd_hdspm_put_tco_frame_rate \
4289}
4290
4291static int snd_hdspm_info_tco_frame_rate(struct snd_kcontrol *kcontrol,
4292 struct snd_ctl_elem_info *uinfo)
4293{
4294 static char *texts[] = { "24 fps", "25 fps", "29.97fps",
4295 "29.97 dfps", "30 fps", "30 dfps" };
4296 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4297 uinfo->count = 1;
4298 uinfo->value.enumerated.items = 6;
4299
4300 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
4301 uinfo->value.enumerated.item =
4302 uinfo->value.enumerated.items - 1;
4303
4304 strcpy(uinfo->value.enumerated.name,
4305 texts[uinfo->value.enumerated.item]);
4306
4307 return 0;
4308}
4309
4310static int snd_hdspm_get_tco_frame_rate(struct snd_kcontrol *kcontrol,
Remy Bruno3cee5a62006-10-16 12:46:32 +02004311 struct snd_ctl_elem_value *ucontrol)
4312{
Remy Bruno3cee5a62006-10-16 12:46:32 +02004313 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4314
Adrian Knoth0dca1792011-01-26 19:32:14 +01004315 ucontrol->value.enumerated.item[0] = hdspm->tco->framerate;
Remy Bruno3cee5a62006-10-16 12:46:32 +02004316
Remy Bruno3cee5a62006-10-16 12:46:32 +02004317 return 0;
4318}
Takashi Iwai763f3562005-06-03 11:25:34 +02004319
Adrian Knoth0dca1792011-01-26 19:32:14 +01004320static int snd_hdspm_put_tco_frame_rate(struct snd_kcontrol *kcontrol,
4321 struct snd_ctl_elem_value *ucontrol)
4322{
4323 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4324
4325 if (hdspm->tco->framerate != ucontrol->value.enumerated.item[0]) {
4326 hdspm->tco->framerate = ucontrol->value.enumerated.item[0];
4327
4328 hdspm_tco_write(hdspm);
4329
4330 return 1;
4331 }
4332
4333 return 0;
4334}
4335
4336
4337#define HDSPM_TCO_SYNC_SOURCE(xname, xindex) \
4338{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4339 .name = xname, \
4340 .index = xindex, \
4341 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4342 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4343 .info = snd_hdspm_info_tco_sync_source, \
4344 .get = snd_hdspm_get_tco_sync_source, \
4345 .put = snd_hdspm_put_tco_sync_source \
4346}
4347
4348static int snd_hdspm_info_tco_sync_source(struct snd_kcontrol *kcontrol,
4349 struct snd_ctl_elem_info *uinfo)
4350{
4351 static char *texts[] = { "LTC", "Video", "WCK" };
4352 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4353 uinfo->count = 1;
4354 uinfo->value.enumerated.items = 3;
4355
4356 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
4357 uinfo->value.enumerated.item =
4358 uinfo->value.enumerated.items - 1;
4359
4360 strcpy(uinfo->value.enumerated.name,
4361 texts[uinfo->value.enumerated.item]);
4362
4363 return 0;
4364}
4365
4366static int snd_hdspm_get_tco_sync_source(struct snd_kcontrol *kcontrol,
4367 struct snd_ctl_elem_value *ucontrol)
4368{
4369 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4370
4371 ucontrol->value.enumerated.item[0] = hdspm->tco->input;
4372
4373 return 0;
4374}
4375
4376static int snd_hdspm_put_tco_sync_source(struct snd_kcontrol *kcontrol,
4377 struct snd_ctl_elem_value *ucontrol)
4378{
4379 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4380
4381 if (hdspm->tco->input != ucontrol->value.enumerated.item[0]) {
4382 hdspm->tco->input = ucontrol->value.enumerated.item[0];
4383
4384 hdspm_tco_write(hdspm);
4385
4386 return 1;
4387 }
4388
4389 return 0;
4390}
4391
4392
4393#define HDSPM_TCO_WORD_TERM(xname, xindex) \
4394{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4395 .name = xname, \
4396 .index = xindex, \
4397 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |\
4398 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
4399 .info = snd_hdspm_info_tco_word_term, \
4400 .get = snd_hdspm_get_tco_word_term, \
4401 .put = snd_hdspm_put_tco_word_term \
4402}
4403
4404static int snd_hdspm_info_tco_word_term(struct snd_kcontrol *kcontrol,
4405 struct snd_ctl_elem_info *uinfo)
4406{
4407 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
4408 uinfo->count = 1;
4409 uinfo->value.integer.min = 0;
4410 uinfo->value.integer.max = 1;
4411
4412 return 0;
4413}
4414
4415
4416static int snd_hdspm_get_tco_word_term(struct snd_kcontrol *kcontrol,
4417 struct snd_ctl_elem_value *ucontrol)
4418{
4419 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4420
4421 ucontrol->value.enumerated.item[0] = hdspm->tco->term;
4422
4423 return 0;
4424}
4425
4426
4427static int snd_hdspm_put_tco_word_term(struct snd_kcontrol *kcontrol,
4428 struct snd_ctl_elem_value *ucontrol)
4429{
4430 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
4431
4432 if (hdspm->tco->term != ucontrol->value.enumerated.item[0]) {
4433 hdspm->tco->term = ucontrol->value.enumerated.item[0];
4434
4435 hdspm_tco_write(hdspm);
4436
4437 return 1;
4438 }
4439
4440 return 0;
4441}
4442
4443
4444
Takashi Iwai763f3562005-06-03 11:25:34 +02004445
Remy Bruno3cee5a62006-10-16 12:46:32 +02004446static struct snd_kcontrol_new snd_hdspm_controls_madi[] = {
Takashi Iwai763f3562005-06-03 11:25:34 +02004447 HDSPM_MIXER("Mixer", 0),
Adrian Knoth0dca1792011-01-26 19:32:14 +01004448 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
Takashi Iwai763f3562005-06-03 11:25:34 +02004449 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4450 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4451 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4452 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
Adrian Knoth0dca1792011-01-26 19:32:14 +01004453 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4454 HDSPM_SYNC_CHECK("MADI SyncCheck", 1),
4455 HDSPM_SYNC_CHECK("TCO SyncCHeck", 2),
4456 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 3),
Takashi Iwai763f3562005-06-03 11:25:34 +02004457 HDSPM_LINE_OUT("Line Out", 0),
4458 HDSPM_TX_64("TX 64 channels mode", 0),
4459 HDSPM_C_TMS("Clear Track Marker", 0),
4460 HDSPM_SAFE_MODE("Safe Mode", 0),
Adrian Knoth700d1ef2011-07-29 03:11:02 +02004461 HDSPM_INPUT_SELECT("Input Select", 0),
4462 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
Adrian Knoth0dca1792011-01-26 19:32:14 +01004463};
4464
4465
4466static struct snd_kcontrol_new snd_hdspm_controls_madiface[] = {
4467 HDSPM_MIXER("Mixer", 0),
4468 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4469 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4470 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4471 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4472 HDSPM_SYNC_CHECK("MADI SyncCheck", 0),
4473 HDSPM_TX_64("TX 64 channels mode", 0),
4474 HDSPM_C_TMS("Clear Track Marker", 0),
Adrian Knoth700d1ef2011-07-29 03:11:02 +02004475 HDSPM_SAFE_MODE("Safe Mode", 0),
4476 HDSPM_MADI_SPEEDMODE("MADI Speed Mode", 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02004477};
4478
Adrian Knoth0dca1792011-01-26 19:32:14 +01004479static struct snd_kcontrol_new snd_hdspm_controls_aio[] = {
Remy Bruno3cee5a62006-10-16 12:46:32 +02004480 HDSPM_MIXER("Mixer", 0),
Adrian Knoth0dca1792011-01-26 19:32:14 +01004481 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
Remy Bruno3cee5a62006-10-16 12:46:32 +02004482 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4483 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4484 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4485 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
Remy Bruno3cee5a62006-10-16 12:46:32 +02004486 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
Adrian Knoth0dca1792011-01-26 19:32:14 +01004487 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4488 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4489 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4490 HDSPM_SYNC_CHECK("ADAT SyncCheck", 3),
4491 HDSPM_SYNC_CHECK("TCO SyncCheck", 4),
4492 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 5),
4493 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4494 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4495 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4496 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT Frequency", 3),
4497 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 4),
4498 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 5)
4499
4500 /*
4501 HDSPM_INPUT_SELECT("Input Select", 0),
4502 HDSPM_SPDIF_OPTICAL("SPDIF Out Optical", 0),
4503 HDSPM_PROFESSIONAL("SPDIF Out Professional", 0);
4504 HDSPM_SPDIF_IN("SPDIF In", 0);
4505 HDSPM_BREAKOUT_CABLE("Breakout Cable", 0);
4506 HDSPM_INPUT_LEVEL("Input Level", 0);
4507 HDSPM_OUTPUT_LEVEL("Output Level", 0);
4508 HDSPM_PHONES("Phones", 0);
4509 */
4510};
4511
4512static struct snd_kcontrol_new snd_hdspm_controls_raydat[] = {
4513 HDSPM_MIXER("Mixer", 0),
4514 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4515 HDSPM_SYSTEM_CLOCK_MODE("Clock Mode", 0),
4516 HDSPM_PREF_SYNC_REF("Pref Sync Ref", 0),
4517 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4518 HDSPM_SYNC_CHECK("WC SyncCheck", 0),
4519 HDSPM_SYNC_CHECK("AES SyncCheck", 1),
4520 HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
4521 HDSPM_SYNC_CHECK("ADAT1 SyncCheck", 3),
4522 HDSPM_SYNC_CHECK("ADAT2 SyncCheck", 4),
4523 HDSPM_SYNC_CHECK("ADAT3 SyncCheck", 5),
4524 HDSPM_SYNC_CHECK("ADAT4 SyncCheck", 6),
4525 HDSPM_SYNC_CHECK("TCO SyncCheck", 7),
4526 HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 8),
4527 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4528 HDSPM_AUTOSYNC_SAMPLE_RATE("AES Frequency", 1),
4529 HDSPM_AUTOSYNC_SAMPLE_RATE("SPDIF Frequency", 2),
4530 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT1 Frequency", 3),
4531 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT2 Frequency", 4),
4532 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT3 Frequency", 5),
4533 HDSPM_AUTOSYNC_SAMPLE_RATE("ADAT4 Frequency", 6),
4534 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 7),
4535 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 8)
4536};
4537
4538static struct snd_kcontrol_new snd_hdspm_controls_aes32[] = {
4539 HDSPM_MIXER("Mixer", 0),
4540 HDSPM_INTERNAL_CLOCK("Internal Clock", 0),
4541 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
4542 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
4543 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
4544 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
4545 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
4546 HDSPM_SYNC_CHECK("WC Sync Check", 0),
4547 HDSPM_SYNC_CHECK("AES1 Sync Check", 1),
4548 HDSPM_SYNC_CHECK("AES2 Sync Check", 2),
4549 HDSPM_SYNC_CHECK("AES3 Sync Check", 3),
4550 HDSPM_SYNC_CHECK("AES4 Sync Check", 4),
4551 HDSPM_SYNC_CHECK("AES5 Sync Check", 5),
4552 HDSPM_SYNC_CHECK("AES6 Sync Check", 6),
4553 HDSPM_SYNC_CHECK("AES7 Sync Check", 7),
4554 HDSPM_SYNC_CHECK("AES8 Sync Check", 8),
4555 HDSPM_SYNC_CHECK("TCO Sync Check", 9),
4556 HDSPM_SYNC_CHECK("SYNC IN Sync Check", 10),
4557 HDSPM_AUTOSYNC_SAMPLE_RATE("WC Frequency", 0),
4558 HDSPM_AUTOSYNC_SAMPLE_RATE("AES1 Frequency", 1),
4559 HDSPM_AUTOSYNC_SAMPLE_RATE("AES2 Frequency", 2),
4560 HDSPM_AUTOSYNC_SAMPLE_RATE("AES3 Frequency", 3),
4561 HDSPM_AUTOSYNC_SAMPLE_RATE("AES4 Frequency", 4),
4562 HDSPM_AUTOSYNC_SAMPLE_RATE("AES5 Frequency", 5),
4563 HDSPM_AUTOSYNC_SAMPLE_RATE("AES6 Frequency", 6),
4564 HDSPM_AUTOSYNC_SAMPLE_RATE("AES7 Frequency", 7),
4565 HDSPM_AUTOSYNC_SAMPLE_RATE("AES8 Frequency", 8),
4566 HDSPM_AUTOSYNC_SAMPLE_RATE("TCO Frequency", 9),
4567 HDSPM_AUTOSYNC_SAMPLE_RATE("SYNC IN Frequency", 10),
Remy Bruno3cee5a62006-10-16 12:46:32 +02004568 HDSPM_LINE_OUT("Line Out", 0),
4569 HDSPM_EMPHASIS("Emphasis", 0),
4570 HDSPM_DOLBY("Non Audio", 0),
4571 HDSPM_PROFESSIONAL("Professional", 0),
4572 HDSPM_C_TMS("Clear Track Marker", 0),
4573 HDSPM_DS_WIRE("Double Speed Wire Mode", 0),
4574 HDSPM_QS_WIRE("Quad Speed Wire Mode", 0),
4575};
4576
Adrian Knoth0dca1792011-01-26 19:32:14 +01004577
4578
4579/* Control elements for the optional TCO module */
4580static struct snd_kcontrol_new snd_hdspm_controls_tco[] = {
4581 HDSPM_TCO_SAMPLE_RATE("TCO Sample Rate", 0),
4582 HDSPM_TCO_PULL("TCO Pull", 0),
4583 HDSPM_TCO_WCK_CONVERSION("TCO WCK Conversion", 0),
4584 HDSPM_TCO_FRAME_RATE("TCO Frame Rate", 0),
4585 HDSPM_TCO_SYNC_SOURCE("TCO Sync Source", 0),
4586 HDSPM_TCO_WORD_TERM("TCO Word Term", 0)
4587};
4588
4589
Takashi Iwai98274f02005-11-17 14:52:34 +01004590static struct snd_kcontrol_new snd_hdspm_playback_mixer = HDSPM_PLAYBACK_MIXER;
Takashi Iwai763f3562005-06-03 11:25:34 +02004591
4592
Takashi Iwai98274f02005-11-17 14:52:34 +01004593static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02004594{
4595 int i;
4596
Adrian Knoth0dca1792011-01-26 19:32:14 +01004597 for (i = hdspm->ds_out_channels; i < hdspm->ss_out_channels; ++i) {
Takashi Iwai763f3562005-06-03 11:25:34 +02004598 if (hdspm->system_sample_rate > 48000) {
4599 hdspm->playback_mixer_ctls[i]->vd[0].access =
Adrian Knoth0dca1792011-01-26 19:32:14 +01004600 SNDRV_CTL_ELEM_ACCESS_INACTIVE |
4601 SNDRV_CTL_ELEM_ACCESS_READ |
4602 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
Takashi Iwai763f3562005-06-03 11:25:34 +02004603 } else {
4604 hdspm->playback_mixer_ctls[i]->vd[0].access =
Adrian Knoth0dca1792011-01-26 19:32:14 +01004605 SNDRV_CTL_ELEM_ACCESS_READWRITE |
4606 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
Takashi Iwai763f3562005-06-03 11:25:34 +02004607 }
4608 snd_ctl_notify(hdspm->card, SNDRV_CTL_EVENT_MASK_VALUE |
Adrian Knoth0dca1792011-01-26 19:32:14 +01004609 SNDRV_CTL_EVENT_MASK_INFO,
4610 &hdspm->playback_mixer_ctls[i]->id);
Takashi Iwai763f3562005-06-03 11:25:34 +02004611 }
4612
4613 return 0;
4614}
4615
4616
Adrian Knoth0dca1792011-01-26 19:32:14 +01004617static int snd_hdspm_create_controls(struct snd_card *card,
4618 struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02004619{
4620 unsigned int idx, limit;
4621 int err;
Takashi Iwai98274f02005-11-17 14:52:34 +01004622 struct snd_kcontrol *kctl;
Adrian Knoth0dca1792011-01-26 19:32:14 +01004623 struct snd_kcontrol_new *list = NULL;
Takashi Iwai763f3562005-06-03 11:25:34 +02004624
Adrian Knoth0dca1792011-01-26 19:32:14 +01004625 switch (hdspm->io_type) {
4626 case MADI:
4627 list = snd_hdspm_controls_madi;
4628 limit = ARRAY_SIZE(snd_hdspm_controls_madi);
4629 break;
4630 case MADIface:
4631 list = snd_hdspm_controls_madiface;
4632 limit = ARRAY_SIZE(snd_hdspm_controls_madiface);
4633 break;
4634 case AIO:
4635 list = snd_hdspm_controls_aio;
4636 limit = ARRAY_SIZE(snd_hdspm_controls_aio);
4637 break;
4638 case RayDAT:
4639 list = snd_hdspm_controls_raydat;
4640 limit = ARRAY_SIZE(snd_hdspm_controls_raydat);
4641 break;
4642 case AES32:
4643 list = snd_hdspm_controls_aes32;
4644 limit = ARRAY_SIZE(snd_hdspm_controls_aes32);
4645 break;
4646 }
Takashi Iwai763f3562005-06-03 11:25:34 +02004647
Adrian Knoth0dca1792011-01-26 19:32:14 +01004648 if (NULL != list) {
4649 for (idx = 0; idx < limit; idx++) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02004650 err = snd_ctl_add(card,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004651 snd_ctl_new1(&list[idx], hdspm));
Remy Bruno3cee5a62006-10-16 12:46:32 +02004652 if (err < 0)
4653 return err;
Takashi Iwai763f3562005-06-03 11:25:34 +02004654 }
4655 }
4656
Takashi Iwai763f3562005-06-03 11:25:34 +02004657
Adrian Knoth0dca1792011-01-26 19:32:14 +01004658 /* create simple 1:1 playback mixer controls */
Takashi Iwai763f3562005-06-03 11:25:34 +02004659 snd_hdspm_playback_mixer.name = "Chn";
Adrian Knoth0dca1792011-01-26 19:32:14 +01004660 if (hdspm->system_sample_rate >= 128000) {
4661 limit = hdspm->qs_out_channels;
4662 } else if (hdspm->system_sample_rate >= 64000) {
4663 limit = hdspm->ds_out_channels;
4664 } else {
4665 limit = hdspm->ss_out_channels;
4666 }
Takashi Iwai763f3562005-06-03 11:25:34 +02004667 for (idx = 0; idx < limit; ++idx) {
4668 snd_hdspm_playback_mixer.index = idx + 1;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02004669 kctl = snd_ctl_new1(&snd_hdspm_playback_mixer, hdspm);
4670 err = snd_ctl_add(card, kctl);
4671 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02004672 return err;
Takashi Iwai763f3562005-06-03 11:25:34 +02004673 hdspm->playback_mixer_ctls[idx] = kctl;
4674 }
4675
Adrian Knoth0dca1792011-01-26 19:32:14 +01004676
4677 if (hdspm->tco) {
4678 /* add tco control elements */
4679 list = snd_hdspm_controls_tco;
4680 limit = ARRAY_SIZE(snd_hdspm_controls_tco);
4681 for (idx = 0; idx < limit; idx++) {
4682 err = snd_ctl_add(card,
4683 snd_ctl_new1(&list[idx], hdspm));
4684 if (err < 0)
4685 return err;
4686 }
4687 }
4688
Takashi Iwai763f3562005-06-03 11:25:34 +02004689 return 0;
4690}
4691
4692/*------------------------------------------------------------
Adrian Knoth0dca1792011-01-26 19:32:14 +01004693 /proc interface
Takashi Iwai763f3562005-06-03 11:25:34 +02004694 ------------------------------------------------------------*/
4695
4696static void
Remy Bruno3cee5a62006-10-16 12:46:32 +02004697snd_hdspm_proc_read_madi(struct snd_info_entry * entry,
4698 struct snd_info_buffer *buffer)
Takashi Iwai763f3562005-06-03 11:25:34 +02004699{
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02004700 struct hdspm *hdspm = entry->private_data;
Adrian Knoth0dca1792011-01-26 19:32:14 +01004701 unsigned int status, status2, control, freq;
4702
Takashi Iwai763f3562005-06-03 11:25:34 +02004703 char *pref_sync_ref;
4704 char *autosync_ref;
4705 char *system_clock_mode;
Takashi Iwai763f3562005-06-03 11:25:34 +02004706 char *insel;
Takashi Iwai763f3562005-06-03 11:25:34 +02004707 int x, x2;
4708
Adrian Knoth0dca1792011-01-26 19:32:14 +01004709 /* TCO stuff */
4710 int a, ltc, frames, seconds, minutes, hours;
4711 unsigned int period;
4712 u64 freq_const = 0;
4713 u32 rate;
4714
Takashi Iwai763f3562005-06-03 11:25:34 +02004715 status = hdspm_read(hdspm, HDSPM_statusRegister);
4716 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
Adrian Knoth0dca1792011-01-26 19:32:14 +01004717 control = hdspm->control_register;
4718 freq = hdspm_read(hdspm, HDSPM_timecodeRegister);
Takashi Iwai763f3562005-06-03 11:25:34 +02004719
4720 snd_iprintf(buffer, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004721 hdspm->card_name, hdspm->card->number + 1,
4722 hdspm->firmware_rev,
4723 (status2 & HDSPM_version0) |
4724 (status2 & HDSPM_version1) | (status2 &
4725 HDSPM_version2));
4726
4727 snd_iprintf(buffer, "HW Serial: 0x%06x%06x\n",
4728 (hdspm_read(hdspm, HDSPM_midiStatusIn1)>>8) & 0xFFFFFF,
Adrian Knoth7d53a632012-01-04 14:31:16 +01004729 hdspm->serial);
Takashi Iwai763f3562005-06-03 11:25:34 +02004730
4731 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004732 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
Takashi Iwai763f3562005-06-03 11:25:34 +02004733
4734 snd_iprintf(buffer, "--- System ---\n");
4735
4736 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004737 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4738 status & HDSPM_audioIRQPending,
4739 (status & HDSPM_midi0IRQPending) ? 1 : 0,
4740 (status & HDSPM_midi1IRQPending) ? 1 : 0,
4741 hdspm->irq_count);
Takashi Iwai763f3562005-06-03 11:25:34 +02004742 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004743 "HW pointer: id = %d, rawptr = %d (%d->%d) "
4744 "estimated= %ld (bytes)\n",
4745 ((status & HDSPM_BufferID) ? 1 : 0),
4746 (status & HDSPM_BufferPositionMask),
4747 (status & HDSPM_BufferPositionMask) %
4748 (2 * (int)hdspm->period_bytes),
4749 ((status & HDSPM_BufferPositionMask) - 64) %
4750 (2 * (int)hdspm->period_bytes),
4751 (long) hdspm_hw_pointer(hdspm) * 4);
Takashi Iwai763f3562005-06-03 11:25:34 +02004752
4753 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004754 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
4755 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
4756 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
4757 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
4758 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
Takashi Iwai763f3562005-06-03 11:25:34 +02004759 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004760 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
4761 hdspm_read(hdspm, HDSPM_midiStatusIn2) & 0xFF,
4762 hdspm_read(hdspm, HDSPM_midiStatusOut2) & 0xFF);
4763 snd_iprintf(buffer,
4764 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
4765 "status2=0x%x\n",
4766 hdspm->control_register, hdspm->control2_register,
4767 status, status2);
4768 if (status & HDSPM_tco_detect) {
4769 snd_iprintf(buffer, "TCO module detected.\n");
4770 a = hdspm_read(hdspm, HDSPM_RD_TCO+4);
4771 if (a & HDSPM_TCO1_LTC_Input_valid) {
4772 snd_iprintf(buffer, " LTC valid, ");
4773 switch (a & (HDSPM_TCO1_LTC_Format_LSB |
4774 HDSPM_TCO1_LTC_Format_MSB)) {
4775 case 0:
4776 snd_iprintf(buffer, "24 fps, ");
4777 break;
4778 case HDSPM_TCO1_LTC_Format_LSB:
4779 snd_iprintf(buffer, "25 fps, ");
4780 break;
4781 case HDSPM_TCO1_LTC_Format_MSB:
4782 snd_iprintf(buffer, "29.97 fps, ");
4783 break;
4784 default:
4785 snd_iprintf(buffer, "30 fps, ");
4786 break;
4787 }
4788 if (a & HDSPM_TCO1_set_drop_frame_flag) {
4789 snd_iprintf(buffer, "drop frame\n");
4790 } else {
4791 snd_iprintf(buffer, "full frame\n");
4792 }
4793 } else {
4794 snd_iprintf(buffer, " no LTC\n");
4795 }
4796 if (a & HDSPM_TCO1_Video_Input_Format_NTSC) {
4797 snd_iprintf(buffer, " Video: NTSC\n");
4798 } else if (a & HDSPM_TCO1_Video_Input_Format_PAL) {
4799 snd_iprintf(buffer, " Video: PAL\n");
4800 } else {
4801 snd_iprintf(buffer, " No video\n");
4802 }
4803 if (a & HDSPM_TCO1_TCO_lock) {
4804 snd_iprintf(buffer, " Sync: lock\n");
4805 } else {
4806 snd_iprintf(buffer, " Sync: no lock\n");
4807 }
4808
4809 switch (hdspm->io_type) {
4810 case MADI:
4811 case AES32:
4812 freq_const = 110069313433624ULL;
4813 break;
4814 case RayDAT:
4815 case AIO:
4816 freq_const = 104857600000000ULL;
4817 break;
4818 case MADIface:
4819 break; /* no TCO possible */
4820 }
4821
4822 period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
4823 snd_iprintf(buffer, " period: %u\n", period);
4824
4825
4826 /* rate = freq_const/period; */
4827 rate = div_u64(freq_const, period);
4828
4829 if (control & HDSPM_QuadSpeed) {
4830 rate *= 4;
4831 } else if (control & HDSPM_DoubleSpeed) {
4832 rate *= 2;
4833 }
4834
4835 snd_iprintf(buffer, " Frequency: %u Hz\n",
4836 (unsigned int) rate);
4837
4838 ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
4839 frames = ltc & 0xF;
4840 ltc >>= 4;
4841 frames += (ltc & 0x3) * 10;
4842 ltc >>= 4;
4843 seconds = ltc & 0xF;
4844 ltc >>= 4;
4845 seconds += (ltc & 0x7) * 10;
4846 ltc >>= 4;
4847 minutes = ltc & 0xF;
4848 ltc >>= 4;
4849 minutes += (ltc & 0x7) * 10;
4850 ltc >>= 4;
4851 hours = ltc & 0xF;
4852 ltc >>= 4;
4853 hours += (ltc & 0x3) * 10;
4854 snd_iprintf(buffer,
4855 " LTC In: %02d:%02d:%02d:%02d\n",
4856 hours, minutes, seconds, frames);
4857
4858 } else {
4859 snd_iprintf(buffer, "No TCO module detected.\n");
4860 }
Takashi Iwai763f3562005-06-03 11:25:34 +02004861
4862 snd_iprintf(buffer, "--- Settings ---\n");
4863
Adrian Knoth7cb155f2011-08-15 00:22:53 +02004864 x = hdspm_get_latency(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02004865
4866 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004867 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
4868 x, (unsigned long) hdspm->period_bytes);
Takashi Iwai763f3562005-06-03 11:25:34 +02004869
Adrian Knoth0dca1792011-01-26 19:32:14 +01004870 snd_iprintf(buffer, "Line out: %s\n",
4871 (hdspm->control_register & HDSPM_LineOut) ? "on " : "off");
Takashi Iwai763f3562005-06-03 11:25:34 +02004872
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:
Adrian Knoth0dca1792011-01-26 19:32:14 +01004881 insel = "Unkown";
Takashi Iwai763f3562005-06-03 11:25:34 +02004882 }
4883
Takashi Iwai763f3562005-06-03 11:25:34 +02004884 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004885 "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");
Takashi Iwai763f3562005-06-03 11:25:34 +02004890
Adrian Knoth0dca1792011-01-26 19:32:14 +01004891
Remy Bruno3cee5a62006-10-16 12:46:32 +02004892 if (!(hdspm->control_register & HDSPM_ClockModeMaster))
Adrian Knoth0dca1792011-01-26 19:32:14 +01004893 system_clock_mode = "AutoSync";
Remy Bruno3cee5a62006-10-16 12:46:32 +02004894 else
Takashi Iwai763f3562005-06-03 11:25:34 +02004895 system_clock_mode = "Master";
Adrian Knoth0dca1792011-01-26 19:32:14 +01004896 snd_iprintf(buffer, "AutoSync Reference: %s\n", system_clock_mode);
Takashi Iwai763f3562005-06-03 11:25:34 +02004897
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;
Adrian Knoth0dca1792011-01-26 19:32:14 +01004905 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;
Takashi Iwai763f3562005-06-03 11:25:34 +02004911 default:
4912 pref_sync_ref = "XXXX Clock";
4913 break;
4914 }
4915 snd_iprintf(buffer, "Preferred Sync Reference: %s\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004916 pref_sync_ref);
Takashi Iwai763f3562005-06-03 11:25:34 +02004917
4918 snd_iprintf(buffer, "System Clock Frequency: %d\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004919 hdspm->system_sample_rate);
Takashi Iwai763f3562005-06-03 11:25:34 +02004920
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",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004928 (status & HDSPM_madiLock) ? (x ? "Sync" : "Lock") :
4929 "NoLock",
4930 (status2 & HDSPM_wcLock) ? (x2 ? "Sync" : "Lock") :
4931 "NoLock");
Takashi Iwai763f3562005-06-03 11:25:34 +02004932
4933 switch (hdspm_autosync_ref(hdspm)) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01004934 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;
Takashi Iwai763f3562005-06-03 11:25:34 +02004940 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,
Adrian Knoth0dca1792011-01-26 19:32:14 +01004954 "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);
Takashi Iwai763f3562005-06-03 11:25:34 +02004958
4959 snd_iprintf(buffer, "Input: %s, Mode=%s\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01004960 (status & HDSPM_AB_int) ? "Coax" : "Optical",
4961 (status & HDSPM_RX_64ch) ? "64 channels" :
4962 "56 channels");
Takashi Iwai763f3562005-06-03 11:25:34 +02004963
4964 snd_iprintf(buffer, "\n");
4965}
4966
Remy Bruno3cee5a62006-10-16 12:46:32 +02004967static void
4968snd_hdspm_proc_read_aes32(struct snd_info_entry * entry,
4969 struct snd_info_buffer *buffer)
4970{
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02004971 struct hdspm *hdspm = entry->private_data;
Remy Bruno3cee5a62006-10-16 12:46:32 +02004972 unsigned int status;
4973 unsigned int status2;
4974 unsigned int timecode;
4975 int pref_syncref;
4976 char *autosync_ref;
Remy Bruno3cee5a62006-10-16 12:46:32 +02004977 int x;
4978
4979 status = hdspm_read(hdspm, HDSPM_statusRegister);
4980 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
4981 timecode = hdspm_read(hdspm, HDSPM_timecodeRegister);
4982
4983 snd_iprintf(buffer, "%s (Card #%d) Rev.%x\n",
4984 hdspm->card_name, hdspm->card->number + 1,
4985 hdspm->firmware_rev);
4986
4987 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
4988 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
4989
4990 snd_iprintf(buffer, "--- System ---\n");
4991
4992 snd_iprintf(buffer,
4993 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
4994 status & HDSPM_audioIRQPending,
4995 (status & HDSPM_midi0IRQPending) ? 1 : 0,
4996 (status & HDSPM_midi1IRQPending) ? 1 : 0,
4997 hdspm->irq_count);
4998 snd_iprintf(buffer,
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02004999 "HW pointer: id = %d, rawptr = %d (%d->%d) "
5000 "estimated= %ld (bytes)\n",
Remy Bruno3cee5a62006-10-16 12:46:32 +02005001 ((status & HDSPM_BufferID) ? 1 : 0),
5002 (status & HDSPM_BufferPositionMask),
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005003 (status & HDSPM_BufferPositionMask) %
5004 (2 * (int)hdspm->period_bytes),
5005 ((status & HDSPM_BufferPositionMask) - 64) %
5006 (2 * (int)hdspm->period_bytes),
Remy Bruno3cee5a62006-10-16 12:46:32 +02005007 (long) hdspm_hw_pointer(hdspm) * 4);
5008
5009 snd_iprintf(buffer,
5010 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
5011 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
5012 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
5013 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
5014 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
5015 snd_iprintf(buffer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005016 "MIDIoverMADI FIFO: In=0x%x, Out=0x%x \n",
5017 hdspm_read(hdspm, HDSPM_midiStatusIn2) & 0xFF,
5018 hdspm_read(hdspm, HDSPM_midiStatusOut2) & 0xFF);
5019 snd_iprintf(buffer,
5020 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, "
5021 "status2=0x%x\n",
5022 hdspm->control_register, hdspm->control2_register,
5023 status, status2);
Remy Bruno3cee5a62006-10-16 12:46:32 +02005024
5025 snd_iprintf(buffer, "--- Settings ---\n");
5026
Adrian Knoth7cb155f2011-08-15 00:22:53 +02005027 x = hdspm_get_latency(hdspm);
Remy Bruno3cee5a62006-10-16 12:46:32 +02005028
5029 snd_iprintf(buffer,
5030 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
5031 x, (unsigned long) hdspm->period_bytes);
5032
Adrian Knoth0dca1792011-01-26 19:32:14 +01005033 snd_iprintf(buffer, "Line out: %s\n",
Remy Bruno3cee5a62006-10-16 12:46:32 +02005034 (hdspm->
Adrian Knoth0dca1792011-01-26 19:32:14 +01005035 control_register & HDSPM_LineOut) ? "on " : "off");
Remy Bruno3cee5a62006-10-16 12:46:32 +02005036
5037 snd_iprintf(buffer,
5038 "ClearTrackMarker %s, Emphasis %s, Dolby %s\n",
5039 (hdspm->
5040 control_register & HDSPM_clr_tms) ? "on" : "off",
5041 (hdspm->
5042 control_register & HDSPM_Emphasis) ? "on" : "off",
5043 (hdspm->
5044 control_register & HDSPM_Dolby) ? "on" : "off");
5045
Remy Bruno3cee5a62006-10-16 12:46:32 +02005046
5047 pref_syncref = hdspm_pref_sync_ref(hdspm);
5048 if (pref_syncref == 0)
5049 snd_iprintf(buffer, "Preferred Sync Reference: Word Clock\n");
5050 else
5051 snd_iprintf(buffer, "Preferred Sync Reference: AES%d\n",
5052 pref_syncref);
5053
5054 snd_iprintf(buffer, "System Clock Frequency: %d\n",
5055 hdspm->system_sample_rate);
5056
5057 snd_iprintf(buffer, "Double speed: %s\n",
5058 hdspm->control_register & HDSPM_DS_DoubleWire?
5059 "Double wire" : "Single wire");
5060 snd_iprintf(buffer, "Quad speed: %s\n",
5061 hdspm->control_register & HDSPM_QS_DoubleWire?
5062 "Double wire" :
5063 hdspm->control_register & HDSPM_QS_QuadWire?
5064 "Quad wire" : "Single wire");
5065
5066 snd_iprintf(buffer, "--- Status:\n");
5067
5068 snd_iprintf(buffer, "Word: %s Frequency: %d\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01005069 (status & HDSPM_AES32_wcLock) ? "Sync " : "No Lock",
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005070 HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit) & 0xF));
Remy Bruno3cee5a62006-10-16 12:46:32 +02005071
5072 for (x = 0; x < 8; x++) {
5073 snd_iprintf(buffer, "AES%d: %s Frequency: %d\n",
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005074 x+1,
5075 (status2 & (HDSPM_LockAES >> x)) ?
Adrian Knoth0dca1792011-01-26 19:32:14 +01005076 "Sync " : "No Lock",
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005077 HDSPM_bit2freq((timecode >> (4*x)) & 0xF));
Remy Bruno3cee5a62006-10-16 12:46:32 +02005078 }
5079
5080 switch (hdspm_autosync_ref(hdspm)) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005081 case HDSPM_AES32_AUTOSYNC_FROM_NONE:
5082 autosync_ref = "None"; break;
5083 case HDSPM_AES32_AUTOSYNC_FROM_WORD:
5084 autosync_ref = "Word Clock"; break;
5085 case HDSPM_AES32_AUTOSYNC_FROM_AES1:
5086 autosync_ref = "AES1"; break;
5087 case HDSPM_AES32_AUTOSYNC_FROM_AES2:
5088 autosync_ref = "AES2"; break;
5089 case HDSPM_AES32_AUTOSYNC_FROM_AES3:
5090 autosync_ref = "AES3"; break;
5091 case HDSPM_AES32_AUTOSYNC_FROM_AES4:
5092 autosync_ref = "AES4"; break;
5093 case HDSPM_AES32_AUTOSYNC_FROM_AES5:
5094 autosync_ref = "AES5"; break;
5095 case HDSPM_AES32_AUTOSYNC_FROM_AES6:
5096 autosync_ref = "AES6"; break;
5097 case HDSPM_AES32_AUTOSYNC_FROM_AES7:
5098 autosync_ref = "AES7"; break;
5099 case HDSPM_AES32_AUTOSYNC_FROM_AES8:
5100 autosync_ref = "AES8"; break;
5101 default:
5102 autosync_ref = "---"; break;
Remy Bruno3cee5a62006-10-16 12:46:32 +02005103 }
5104 snd_iprintf(buffer, "AutoSync ref = %s\n", autosync_ref);
5105
5106 snd_iprintf(buffer, "\n");
5107}
5108
Adrian Knoth0dca1792011-01-26 19:32:14 +01005109static void
5110snd_hdspm_proc_read_raydat(struct snd_info_entry *entry,
5111 struct snd_info_buffer *buffer)
5112{
5113 struct hdspm *hdspm = entry->private_data;
5114 unsigned int status1, status2, status3, control, i;
5115 unsigned int lock, sync;
5116
5117 status1 = hdspm_read(hdspm, HDSPM_RD_STATUS_1); /* s1 */
5118 status2 = hdspm_read(hdspm, HDSPM_RD_STATUS_2); /* freq */
5119 status3 = hdspm_read(hdspm, HDSPM_RD_STATUS_3); /* s2 */
5120
5121 control = hdspm->control_register;
5122
5123 snd_iprintf(buffer, "STATUS1: 0x%08x\n", status1);
5124 snd_iprintf(buffer, "STATUS2: 0x%08x\n", status2);
5125 snd_iprintf(buffer, "STATUS3: 0x%08x\n", status3);
5126
5127
5128 snd_iprintf(buffer, "\n*** CLOCK MODE\n\n");
5129
5130 snd_iprintf(buffer, "Clock mode : %s\n",
5131 (hdspm_system_clock_mode(hdspm) == 0) ? "master" : "slave");
5132 snd_iprintf(buffer, "System frequency: %d Hz\n",
5133 hdspm_get_system_sample_rate(hdspm));
5134
5135 snd_iprintf(buffer, "\n*** INPUT STATUS\n\n");
5136
5137 lock = 0x1;
5138 sync = 0x100;
5139
5140 for (i = 0; i < 8; i++) {
5141 snd_iprintf(buffer, "s1_input %d: Lock %d, Sync %d, Freq %s\n",
5142 i,
5143 (status1 & lock) ? 1 : 0,
5144 (status1 & sync) ? 1 : 0,
5145 texts_freq[(status2 >> (i * 4)) & 0xF]);
5146
5147 lock = lock<<1;
5148 sync = sync<<1;
5149 }
5150
5151 snd_iprintf(buffer, "WC input: Lock %d, Sync %d, Freq %s\n",
5152 (status1 & 0x1000000) ? 1 : 0,
5153 (status1 & 0x2000000) ? 1 : 0,
5154 texts_freq[(status1 >> 16) & 0xF]);
5155
5156 snd_iprintf(buffer, "TCO input: Lock %d, Sync %d, Freq %s\n",
5157 (status1 & 0x4000000) ? 1 : 0,
5158 (status1 & 0x8000000) ? 1 : 0,
5159 texts_freq[(status1 >> 20) & 0xF]);
5160
5161 snd_iprintf(buffer, "SYNC IN: Lock %d, Sync %d, Freq %s\n",
5162 (status3 & 0x400) ? 1 : 0,
5163 (status3 & 0x800) ? 1 : 0,
5164 texts_freq[(status2 >> 12) & 0xF]);
5165
5166}
5167
Remy Bruno3cee5a62006-10-16 12:46:32 +02005168#ifdef CONFIG_SND_DEBUG
5169static void
Adrian Knoth0dca1792011-01-26 19:32:14 +01005170snd_hdspm_proc_read_debug(struct snd_info_entry *entry,
Remy Bruno3cee5a62006-10-16 12:46:32 +02005171 struct snd_info_buffer *buffer)
5172{
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005173 struct hdspm *hdspm = entry->private_data;
Remy Bruno3cee5a62006-10-16 12:46:32 +02005174
5175 int j,i;
5176
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005177 for (i = 0; i < 256 /* 1024*64 */; i += j) {
Remy Bruno3cee5a62006-10-16 12:46:32 +02005178 snd_iprintf(buffer, "0x%08X: ", i);
5179 for (j = 0; j < 16; j += 4)
5180 snd_iprintf(buffer, "%08X ", hdspm_read(hdspm, i + j));
5181 snd_iprintf(buffer, "\n");
5182 }
5183}
5184#endif
5185
5186
Adrian Knoth0dca1792011-01-26 19:32:14 +01005187static void snd_hdspm_proc_ports_in(struct snd_info_entry *entry,
5188 struct snd_info_buffer *buffer)
5189{
5190 struct hdspm *hdspm = entry->private_data;
5191 int i;
Remy Bruno3cee5a62006-10-16 12:46:32 +02005192
Adrian Knoth0dca1792011-01-26 19:32:14 +01005193 snd_iprintf(buffer, "# generated by hdspm\n");
5194
5195 for (i = 0; i < hdspm->max_channels_in; i++) {
5196 snd_iprintf(buffer, "%d=%s\n", i+1, hdspm->port_names_in[i]);
5197 }
5198}
5199
5200static void snd_hdspm_proc_ports_out(struct snd_info_entry *entry,
5201 struct snd_info_buffer *buffer)
5202{
5203 struct hdspm *hdspm = entry->private_data;
5204 int i;
5205
5206 snd_iprintf(buffer, "# generated by hdspm\n");
5207
5208 for (i = 0; i < hdspm->max_channels_out; i++) {
5209 snd_iprintf(buffer, "%d=%s\n", i+1, hdspm->port_names_out[i]);
5210 }
5211}
5212
5213
5214static void __devinit snd_hdspm_proc_init(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02005215{
Takashi Iwai98274f02005-11-17 14:52:34 +01005216 struct snd_info_entry *entry;
Takashi Iwai763f3562005-06-03 11:25:34 +02005217
Adrian Knoth0dca1792011-01-26 19:32:14 +01005218 if (!snd_card_proc_new(hdspm->card, "hdspm", &entry)) {
5219 switch (hdspm->io_type) {
5220 case AES32:
5221 snd_info_set_text_ops(entry, hdspm,
5222 snd_hdspm_proc_read_aes32);
5223 break;
5224 case MADI:
5225 snd_info_set_text_ops(entry, hdspm,
5226 snd_hdspm_proc_read_madi);
5227 break;
5228 case MADIface:
5229 /* snd_info_set_text_ops(entry, hdspm,
5230 snd_hdspm_proc_read_madiface); */
5231 break;
5232 case RayDAT:
5233 snd_info_set_text_ops(entry, hdspm,
5234 snd_hdspm_proc_read_raydat);
5235 break;
5236 case AIO:
5237 break;
5238 }
5239 }
5240
5241 if (!snd_card_proc_new(hdspm->card, "ports.in", &entry)) {
5242 snd_info_set_text_ops(entry, hdspm, snd_hdspm_proc_ports_in);
5243 }
5244
5245 if (!snd_card_proc_new(hdspm->card, "ports.out", &entry)) {
5246 snd_info_set_text_ops(entry, hdspm, snd_hdspm_proc_ports_out);
5247 }
5248
Remy Bruno3cee5a62006-10-16 12:46:32 +02005249#ifdef CONFIG_SND_DEBUG
5250 /* debug file to read all hdspm registers */
5251 if (!snd_card_proc_new(hdspm->card, "debug", &entry))
5252 snd_info_set_text_ops(entry, hdspm,
5253 snd_hdspm_proc_read_debug);
5254#endif
Takashi Iwai763f3562005-06-03 11:25:34 +02005255}
5256
5257/*------------------------------------------------------------
Adrian Knoth0dca1792011-01-26 19:32:14 +01005258 hdspm intitialize
Takashi Iwai763f3562005-06-03 11:25:34 +02005259 ------------------------------------------------------------*/
5260
Takashi Iwai98274f02005-11-17 14:52:34 +01005261static int snd_hdspm_set_defaults(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02005262{
Takashi Iwai763f3562005-06-03 11:25:34 +02005263 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
Joe Perches561de312007-12-18 13:13:47 +01005264 hold it (e.g. during module initialization).
Adrian Knoth0dca1792011-01-26 19:32:14 +01005265 */
Takashi Iwai763f3562005-06-03 11:25:34 +02005266
5267 /* set defaults: */
5268
Adrian Knoth0dca1792011-01-26 19:32:14 +01005269 hdspm->settings_register = 0;
5270
5271 switch (hdspm->io_type) {
5272 case MADI:
5273 case MADIface:
5274 hdspm->control_register =
5275 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5276 break;
5277
5278 case RayDAT:
5279 case AIO:
5280 hdspm->settings_register = 0x1 + 0x1000;
5281 /* Magic values are: LAT_0, LAT_2, Master, freq1, tx64ch, inp_0,
5282 * line_out */
5283 hdspm->control_register =
5284 0x2 + 0x8 + 0x10 + 0x80 + 0x400 + 0x4000 + 0x1000000;
5285 break;
5286
5287 case AES32:
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005288 hdspm->control_register =
5289 HDSPM_ClockModeMaster | /* Master Cloack Mode on */
Adrian Knoth0dca1792011-01-26 19:32:14 +01005290 hdspm_encode_latency(7) | /* latency max=8192samples */
Remy Bruno3cee5a62006-10-16 12:46:32 +02005291 HDSPM_SyncRef0 | /* AES1 is syncclock */
5292 HDSPM_LineOut | /* Analog output in */
5293 HDSPM_Professional; /* Professional mode */
Adrian Knoth0dca1792011-01-26 19:32:14 +01005294 break;
5295 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005296
5297 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
5298
Adrian Knoth0dca1792011-01-26 19:32:14 +01005299 if (AES32 == hdspm->io_type) {
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005300 /* No control2 register for AES32 */
Takashi Iwai763f3562005-06-03 11:25:34 +02005301#ifdef SNDRV_BIG_ENDIAN
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005302 hdspm->control2_register = HDSPM_BIGENDIAN_MODE;
Takashi Iwai763f3562005-06-03 11:25:34 +02005303#else
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005304 hdspm->control2_register = 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02005305#endif
5306
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005307 hdspm_write(hdspm, HDSPM_control2Reg, hdspm->control2_register);
5308 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005309 hdspm_compute_period_size(hdspm);
5310
5311 /* silence everything */
5312
5313 all_in_all_mixer(hdspm, 0 * UNITY_GAIN);
5314
Adrian Knoth0dca1792011-01-26 19:32:14 +01005315 if (hdspm->io_type == AIO || hdspm->io_type == RayDAT) {
5316 hdspm_write(hdspm, HDSPM_WR_SETTINGS, hdspm->settings_register);
Takashi Iwai763f3562005-06-03 11:25:34 +02005317 }
5318
5319 /* set a default rate so that the channel map is set up. */
Adrian Knoth0dca1792011-01-26 19:32:14 +01005320 hdspm_set_rate(hdspm, 48000, 1);
Takashi Iwai763f3562005-06-03 11:25:34 +02005321
5322 return 0;
5323}
5324
5325
5326/*------------------------------------------------------------
Adrian Knoth0dca1792011-01-26 19:32:14 +01005327 interrupt
Takashi Iwai763f3562005-06-03 11:25:34 +02005328 ------------------------------------------------------------*/
5329
David Howells7d12e782006-10-05 14:55:46 +01005330static irqreturn_t snd_hdspm_interrupt(int irq, void *dev_id)
Takashi Iwai763f3562005-06-03 11:25:34 +02005331{
Takashi Iwai98274f02005-11-17 14:52:34 +01005332 struct hdspm *hdspm = (struct hdspm *) dev_id;
Takashi Iwai763f3562005-06-03 11:25:34 +02005333 unsigned int status;
Adrian Knoth0dca1792011-01-26 19:32:14 +01005334 int i, audio, midi, schedule = 0;
5335 /* cycles_t now; */
Takashi Iwai763f3562005-06-03 11:25:34 +02005336
5337 status = hdspm_read(hdspm, HDSPM_statusRegister);
5338
5339 audio = status & HDSPM_audioIRQPending;
Adrian Knoth0dca1792011-01-26 19:32:14 +01005340 midi = status & (HDSPM_midi0IRQPending | HDSPM_midi1IRQPending |
5341 HDSPM_midi2IRQPending | HDSPM_midi3IRQPending);
Takashi Iwai763f3562005-06-03 11:25:34 +02005342
Adrian Knoth0dca1792011-01-26 19:32:14 +01005343 /* now = get_cycles(); */
5344 /**
5345 * LAT_2..LAT_0 period counter (win) counter (mac)
5346 * 6 4096 ~256053425 ~514672358
5347 * 5 2048 ~128024983 ~257373821
5348 * 4 1024 ~64023706 ~128718089
5349 * 3 512 ~32005945 ~64385999
5350 * 2 256 ~16003039 ~32260176
5351 * 1 128 ~7998738 ~16194507
5352 * 0 64 ~3998231 ~8191558
5353 **/
5354 /*
5355 snd_printk(KERN_INFO "snd_hdspm_interrupt %llu @ %llx\n",
5356 now-hdspm->last_interrupt, status & 0xFFC0);
5357 hdspm->last_interrupt = now;
5358 */
5359
5360 if (!audio && !midi)
Takashi Iwai763f3562005-06-03 11:25:34 +02005361 return IRQ_NONE;
5362
5363 hdspm_write(hdspm, HDSPM_interruptConfirmation, 0);
5364 hdspm->irq_count++;
5365
Takashi Iwai763f3562005-06-03 11:25:34 +02005366
5367 if (audio) {
Takashi Iwai763f3562005-06-03 11:25:34 +02005368 if (hdspm->capture_substream)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005369 snd_pcm_period_elapsed(hdspm->capture_substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005370
5371 if (hdspm->playback_substream)
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005372 snd_pcm_period_elapsed(hdspm->playback_substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005373 }
5374
Adrian Knoth0dca1792011-01-26 19:32:14 +01005375 if (midi) {
5376 i = 0;
5377 while (i < hdspm->midiPorts) {
5378 if ((hdspm_read(hdspm,
5379 hdspm->midi[i].statusIn) & 0xff) &&
5380 (status & hdspm->midi[i].irq)) {
5381 /* we disable interrupts for this input until
5382 * processing is done
5383 */
5384 hdspm->control_register &= ~hdspm->midi[i].ie;
5385 hdspm_write(hdspm, HDSPM_controlRegister,
5386 hdspm->control_register);
5387 hdspm->midi[i].pending = 1;
5388 schedule = 1;
5389 }
5390
5391 i++;
5392 }
5393
5394 if (schedule)
5395 tasklet_hi_schedule(&hdspm->midi_tasklet);
Takashi Iwai763f3562005-06-03 11:25:34 +02005396 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01005397
Takashi Iwai763f3562005-06-03 11:25:34 +02005398 return IRQ_HANDLED;
5399}
5400
5401/*------------------------------------------------------------
Adrian Knoth0dca1792011-01-26 19:32:14 +01005402 pcm interface
Takashi Iwai763f3562005-06-03 11:25:34 +02005403 ------------------------------------------------------------*/
5404
5405
Adrian Knoth0dca1792011-01-26 19:32:14 +01005406static snd_pcm_uframes_t snd_hdspm_hw_pointer(struct snd_pcm_substream
5407 *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02005408{
Takashi Iwai98274f02005-11-17 14:52:34 +01005409 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005410 return hdspm_hw_pointer(hdspm);
5411}
5412
Takashi Iwai763f3562005-06-03 11:25:34 +02005413
Takashi Iwai98274f02005-11-17 14:52:34 +01005414static int snd_hdspm_reset(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02005415{
Takashi Iwai98274f02005-11-17 14:52:34 +01005416 struct snd_pcm_runtime *runtime = substream->runtime;
5417 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
5418 struct snd_pcm_substream *other;
Takashi Iwai763f3562005-06-03 11:25:34 +02005419
5420 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
5421 other = hdspm->capture_substream;
5422 else
5423 other = hdspm->playback_substream;
5424
5425 if (hdspm->running)
5426 runtime->status->hw_ptr = hdspm_hw_pointer(hdspm);
5427 else
5428 runtime->status->hw_ptr = 0;
5429 if (other) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005430 struct snd_pcm_substream *s;
5431 struct snd_pcm_runtime *oruntime = other->runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01005432 snd_pcm_group_for_each_entry(s, substream) {
Takashi Iwai763f3562005-06-03 11:25:34 +02005433 if (s == other) {
5434 oruntime->status->hw_ptr =
Adrian Knoth0dca1792011-01-26 19:32:14 +01005435 runtime->status->hw_ptr;
Takashi Iwai763f3562005-06-03 11:25:34 +02005436 break;
5437 }
5438 }
5439 }
5440 return 0;
5441}
5442
Takashi Iwai98274f02005-11-17 14:52:34 +01005443static int snd_hdspm_hw_params(struct snd_pcm_substream *substream,
5444 struct snd_pcm_hw_params *params)
Takashi Iwai763f3562005-06-03 11:25:34 +02005445{
Takashi Iwai98274f02005-11-17 14:52:34 +01005446 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005447 int err;
5448 int i;
5449 pid_t this_pid;
5450 pid_t other_pid;
Takashi Iwai763f3562005-06-03 11:25:34 +02005451
5452 spin_lock_irq(&hdspm->lock);
5453
5454 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5455 this_pid = hdspm->playback_pid;
5456 other_pid = hdspm->capture_pid;
5457 } else {
5458 this_pid = hdspm->capture_pid;
5459 other_pid = hdspm->playback_pid;
5460 }
5461
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005462 if (other_pid > 0 && this_pid != other_pid) {
Takashi Iwai763f3562005-06-03 11:25:34 +02005463
5464 /* The other stream is open, and not by the same
5465 task as this one. Make sure that the parameters
5466 that matter are the same.
Adrian Knoth0dca1792011-01-26 19:32:14 +01005467 */
Takashi Iwai763f3562005-06-03 11:25:34 +02005468
5469 if (params_rate(params) != hdspm->system_sample_rate) {
5470 spin_unlock_irq(&hdspm->lock);
5471 _snd_pcm_hw_param_setempty(params,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005472 SNDRV_PCM_HW_PARAM_RATE);
Takashi Iwai763f3562005-06-03 11:25:34 +02005473 return -EBUSY;
5474 }
5475
5476 if (params_period_size(params) != hdspm->period_bytes / 4) {
5477 spin_unlock_irq(&hdspm->lock);
5478 _snd_pcm_hw_param_setempty(params,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005479 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
Takashi Iwai763f3562005-06-03 11:25:34 +02005480 return -EBUSY;
5481 }
5482
5483 }
5484 /* We're fine. */
5485 spin_unlock_irq(&hdspm->lock);
5486
5487 /* how to make sure that the rate matches an externally-set one ? */
5488
5489 spin_lock_irq(&hdspm->lock);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005490 err = hdspm_set_rate(hdspm, params_rate(params), 0);
5491 if (err < 0) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005492 snd_printk(KERN_INFO "err on hdspm_set_rate: %d\n", err);
Takashi Iwai763f3562005-06-03 11:25:34 +02005493 spin_unlock_irq(&hdspm->lock);
5494 _snd_pcm_hw_param_setempty(params,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005495 SNDRV_PCM_HW_PARAM_RATE);
Takashi Iwai763f3562005-06-03 11:25:34 +02005496 return err;
5497 }
5498 spin_unlock_irq(&hdspm->lock);
5499
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005500 err = hdspm_set_interrupt_interval(hdspm,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005501 params_period_size(params));
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005502 if (err < 0) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005503 snd_printk(KERN_INFO "err on hdspm_set_interrupt_interval: %d\n", err);
Takashi Iwai763f3562005-06-03 11:25:34 +02005504 _snd_pcm_hw_param_setempty(params,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005505 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
Takashi Iwai763f3562005-06-03 11:25:34 +02005506 return err;
5507 }
5508
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005509 /* Memory allocation, takashi's method, dont know if we should
5510 * spinlock
5511 */
Takashi Iwai763f3562005-06-03 11:25:34 +02005512 /* malloc all buffer even if not enabled to get sure */
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005513 /* Update for MADI rev 204: we need to allocate for all channels,
5514 * otherwise it doesn't work at 96kHz */
Adrian Knoth0dca1792011-01-26 19:32:14 +01005515
Takashi Iwai763f3562005-06-03 11:25:34 +02005516 err =
Adrian Knoth0dca1792011-01-26 19:32:14 +01005517 snd_pcm_lib_malloc_pages(substream, HDSPM_DMA_AREA_BYTES);
5518 if (err < 0) {
5519 snd_printk(KERN_INFO "err on snd_pcm_lib_malloc_pages: %d\n", err);
Takashi Iwai763f3562005-06-03 11:25:34 +02005520 return err;
Adrian Knoth0dca1792011-01-26 19:32:14 +01005521 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005522
Takashi Iwai763f3562005-06-03 11:25:34 +02005523 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5524
Takashi Iwai77a23f22008-08-21 13:00:13 +02005525 hdspm_set_sgbuf(hdspm, substream, HDSPM_pageAddressBufferOut,
Takashi Iwai763f3562005-06-03 11:25:34 +02005526 params_channels(params));
5527
5528 for (i = 0; i < params_channels(params); ++i)
5529 snd_hdspm_enable_out(hdspm, i, 1);
5530
5531 hdspm->playback_buffer =
Adrian Knoth0dca1792011-01-26 19:32:14 +01005532 (unsigned char *) substream->runtime->dma_area;
Takashi Iwai54bf5dd2006-11-06 15:38:55 +01005533 snd_printdd("Allocated sample buffer for playback at %p\n",
Remy Bruno3cee5a62006-10-16 12:46:32 +02005534 hdspm->playback_buffer);
Takashi Iwai763f3562005-06-03 11:25:34 +02005535 } else {
Takashi Iwai77a23f22008-08-21 13:00:13 +02005536 hdspm_set_sgbuf(hdspm, substream, HDSPM_pageAddressBufferIn,
Takashi Iwai763f3562005-06-03 11:25:34 +02005537 params_channels(params));
5538
5539 for (i = 0; i < params_channels(params); ++i)
5540 snd_hdspm_enable_in(hdspm, i, 1);
5541
5542 hdspm->capture_buffer =
Adrian Knoth0dca1792011-01-26 19:32:14 +01005543 (unsigned char *) substream->runtime->dma_area;
Takashi Iwai54bf5dd2006-11-06 15:38:55 +01005544 snd_printdd("Allocated sample buffer for capture at %p\n",
Remy Bruno3cee5a62006-10-16 12:46:32 +02005545 hdspm->capture_buffer);
Takashi Iwai763f3562005-06-03 11:25:34 +02005546 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01005547
Remy Bruno3cee5a62006-10-16 12:46:32 +02005548 /*
5549 snd_printdd("Allocated sample buffer for %s at 0x%08X\n",
5550 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5551 "playback" : "capture",
Takashi Iwai77a23f22008-08-21 13:00:13 +02005552 snd_pcm_sgbuf_get_addr(substream, 0));
Adrian Knoth0dca1792011-01-26 19:32:14 +01005553 */
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005554 /*
Adrian Knoth0dca1792011-01-26 19:32:14 +01005555 snd_printdd("set_hwparams: %s %d Hz, %d channels, bs = %d\n",
5556 substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
5557 "playback" : "capture",
5558 params_rate(params), params_channels(params),
5559 params_buffer_size(params));
5560 */
5561
5562
5563 /* Switch to native float format if requested */
5564 if (SNDRV_PCM_FORMAT_FLOAT_LE == params_format(params)) {
5565 if (!(hdspm->control_register & HDSPe_FLOAT_FORMAT))
5566 snd_printk(KERN_INFO "hdspm: Switching to native 32bit LE float format.\n");
5567
5568 hdspm->control_register |= HDSPe_FLOAT_FORMAT;
5569 } else if (SNDRV_PCM_FORMAT_S32_LE == params_format(params)) {
5570 if (hdspm->control_register & HDSPe_FLOAT_FORMAT)
5571 snd_printk(KERN_INFO "hdspm: Switching to native 32bit LE integer format.\n");
5572
5573 hdspm->control_register &= ~HDSPe_FLOAT_FORMAT;
5574 }
5575 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
5576
Takashi Iwai763f3562005-06-03 11:25:34 +02005577 return 0;
5578}
5579
Takashi Iwai98274f02005-11-17 14:52:34 +01005580static int snd_hdspm_hw_free(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02005581{
5582 int i;
Takashi Iwai98274f02005-11-17 14:52:34 +01005583 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005584
5585 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5586
Adrian Knoth0dca1792011-01-26 19:32:14 +01005587 /* params_channels(params) should be enough,
Takashi Iwai763f3562005-06-03 11:25:34 +02005588 but to get sure in case of error */
Adrian Knoth0dca1792011-01-26 19:32:14 +01005589 for (i = 0; i < hdspm->max_channels_out; ++i)
Takashi Iwai763f3562005-06-03 11:25:34 +02005590 snd_hdspm_enable_out(hdspm, i, 0);
5591
5592 hdspm->playback_buffer = NULL;
5593 } else {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005594 for (i = 0; i < hdspm->max_channels_in; ++i)
Takashi Iwai763f3562005-06-03 11:25:34 +02005595 snd_hdspm_enable_in(hdspm, i, 0);
5596
5597 hdspm->capture_buffer = NULL;
5598
5599 }
5600
5601 snd_pcm_lib_free_pages(substream);
5602
5603 return 0;
5604}
5605
Adrian Knoth0dca1792011-01-26 19:32:14 +01005606
Takashi Iwai98274f02005-11-17 14:52:34 +01005607static int snd_hdspm_channel_info(struct snd_pcm_substream *substream,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005608 struct snd_pcm_channel_info *info)
Takashi Iwai763f3562005-06-03 11:25:34 +02005609{
Takashi Iwai98274f02005-11-17 14:52:34 +01005610 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005611
Adrian Knoth0dca1792011-01-26 19:32:14 +01005612 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
5613 if (snd_BUG_ON(info->channel >= hdspm->max_channels_out)) {
5614 snd_printk(KERN_INFO "snd_hdspm_channel_info: output channel out of range (%d)\n", info->channel);
5615 return -EINVAL;
5616 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005617
Adrian Knoth0dca1792011-01-26 19:32:14 +01005618 if (hdspm->channel_map_out[info->channel] < 0) {
5619 snd_printk(KERN_INFO "snd_hdspm_channel_info: output channel %d mapped out\n", info->channel);
5620 return -EINVAL;
5621 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005622
Adrian Knoth0dca1792011-01-26 19:32:14 +01005623 info->offset = hdspm->channel_map_out[info->channel] *
5624 HDSPM_CHANNEL_BUFFER_BYTES;
5625 } else {
5626 if (snd_BUG_ON(info->channel >= hdspm->max_channels_in)) {
5627 snd_printk(KERN_INFO "snd_hdspm_channel_info: input channel out of range (%d)\n", info->channel);
5628 return -EINVAL;
5629 }
5630
5631 if (hdspm->channel_map_in[info->channel] < 0) {
5632 snd_printk(KERN_INFO "snd_hdspm_channel_info: input channel %d mapped out\n", info->channel);
5633 return -EINVAL;
5634 }
5635
5636 info->offset = hdspm->channel_map_in[info->channel] *
5637 HDSPM_CHANNEL_BUFFER_BYTES;
5638 }
5639
Takashi Iwai763f3562005-06-03 11:25:34 +02005640 info->first = 0;
5641 info->step = 32;
5642 return 0;
5643}
5644
Adrian Knoth0dca1792011-01-26 19:32:14 +01005645
Takashi Iwai98274f02005-11-17 14:52:34 +01005646static int snd_hdspm_ioctl(struct snd_pcm_substream *substream,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005647 unsigned int cmd, void *arg)
Takashi Iwai763f3562005-06-03 11:25:34 +02005648{
5649 switch (cmd) {
5650 case SNDRV_PCM_IOCTL1_RESET:
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005651 return snd_hdspm_reset(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02005652
5653 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
Adrian Knoth0dca1792011-01-26 19:32:14 +01005654 {
5655 struct snd_pcm_channel_info *info = arg;
5656 return snd_hdspm_channel_info(substream, info);
5657 }
Takashi Iwai763f3562005-06-03 11:25:34 +02005658 default:
5659 break;
5660 }
5661
5662 return snd_pcm_lib_ioctl(substream, cmd, arg);
5663}
5664
Takashi Iwai98274f02005-11-17 14:52:34 +01005665static int snd_hdspm_trigger(struct snd_pcm_substream *substream, int cmd)
Takashi Iwai763f3562005-06-03 11:25:34 +02005666{
Takashi Iwai98274f02005-11-17 14:52:34 +01005667 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
5668 struct snd_pcm_substream *other;
Takashi Iwai763f3562005-06-03 11:25:34 +02005669 int running;
5670
5671 spin_lock(&hdspm->lock);
5672 running = hdspm->running;
5673 switch (cmd) {
5674 case SNDRV_PCM_TRIGGER_START:
5675 running |= 1 << substream->stream;
5676 break;
5677 case SNDRV_PCM_TRIGGER_STOP:
5678 running &= ~(1 << substream->stream);
5679 break;
5680 default:
5681 snd_BUG();
5682 spin_unlock(&hdspm->lock);
5683 return -EINVAL;
5684 }
5685 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
5686 other = hdspm->capture_substream;
5687 else
5688 other = hdspm->playback_substream;
5689
5690 if (other) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005691 struct snd_pcm_substream *s;
Takashi Iwaief991b92007-02-22 12:52:53 +01005692 snd_pcm_group_for_each_entry(s, substream) {
Takashi Iwai763f3562005-06-03 11:25:34 +02005693 if (s == other) {
5694 snd_pcm_trigger_done(s, substream);
5695 if (cmd == SNDRV_PCM_TRIGGER_START)
5696 running |= 1 << s->stream;
5697 else
5698 running &= ~(1 << s->stream);
5699 goto _ok;
5700 }
5701 }
5702 if (cmd == SNDRV_PCM_TRIGGER_START) {
5703 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK))
Adrian Knoth0dca1792011-01-26 19:32:14 +01005704 && substream->stream ==
5705 SNDRV_PCM_STREAM_CAPTURE)
Takashi Iwai763f3562005-06-03 11:25:34 +02005706 hdspm_silence_playback(hdspm);
5707 } else {
5708 if (running &&
Adrian Knoth0dca1792011-01-26 19:32:14 +01005709 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Takashi Iwai763f3562005-06-03 11:25:34 +02005710 hdspm_silence_playback(hdspm);
5711 }
5712 } else {
5713 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
5714 hdspm_silence_playback(hdspm);
5715 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01005716_ok:
Takashi Iwai763f3562005-06-03 11:25:34 +02005717 snd_pcm_trigger_done(substream, substream);
5718 if (!hdspm->running && running)
5719 hdspm_start_audio(hdspm);
5720 else if (hdspm->running && !running)
5721 hdspm_stop_audio(hdspm);
5722 hdspm->running = running;
5723 spin_unlock(&hdspm->lock);
5724
5725 return 0;
5726}
5727
Takashi Iwai98274f02005-11-17 14:52:34 +01005728static int snd_hdspm_prepare(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02005729{
5730 return 0;
5731}
5732
Takashi Iwai98274f02005-11-17 14:52:34 +01005733static struct snd_pcm_hardware snd_hdspm_playback_subinfo = {
Takashi Iwai763f3562005-06-03 11:25:34 +02005734 .info = (SNDRV_PCM_INFO_MMAP |
5735 SNDRV_PCM_INFO_MMAP_VALID |
5736 SNDRV_PCM_INFO_NONINTERLEAVED |
5737 SNDRV_PCM_INFO_SYNC_START | SNDRV_PCM_INFO_DOUBLE),
5738 .formats = SNDRV_PCM_FMTBIT_S32_LE,
5739 .rates = (SNDRV_PCM_RATE_32000 |
5740 SNDRV_PCM_RATE_44100 |
5741 SNDRV_PCM_RATE_48000 |
5742 SNDRV_PCM_RATE_64000 |
Remy Bruno3cee5a62006-10-16 12:46:32 +02005743 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
5744 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000 ),
Takashi Iwai763f3562005-06-03 11:25:34 +02005745 .rate_min = 32000,
Remy Bruno3cee5a62006-10-16 12:46:32 +02005746 .rate_max = 192000,
Takashi Iwai763f3562005-06-03 11:25:34 +02005747 .channels_min = 1,
5748 .channels_max = HDSPM_MAX_CHANNELS,
5749 .buffer_bytes_max =
5750 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
Adrian Knoth1b6fa102011-08-15 00:22:51 +02005751 .period_bytes_min = (32 * 4),
Takashi Iwai52e6fb42011-08-15 10:40:59 +02005752 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
Takashi Iwai763f3562005-06-03 11:25:34 +02005753 .periods_min = 2,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005754 .periods_max = 512,
Takashi Iwai763f3562005-06-03 11:25:34 +02005755 .fifo_size = 0
5756};
5757
Takashi Iwai98274f02005-11-17 14:52:34 +01005758static struct snd_pcm_hardware snd_hdspm_capture_subinfo = {
Takashi Iwai763f3562005-06-03 11:25:34 +02005759 .info = (SNDRV_PCM_INFO_MMAP |
5760 SNDRV_PCM_INFO_MMAP_VALID |
5761 SNDRV_PCM_INFO_NONINTERLEAVED |
5762 SNDRV_PCM_INFO_SYNC_START),
5763 .formats = SNDRV_PCM_FMTBIT_S32_LE,
5764 .rates = (SNDRV_PCM_RATE_32000 |
5765 SNDRV_PCM_RATE_44100 |
5766 SNDRV_PCM_RATE_48000 |
5767 SNDRV_PCM_RATE_64000 |
Remy Bruno3cee5a62006-10-16 12:46:32 +02005768 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
5769 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000),
Takashi Iwai763f3562005-06-03 11:25:34 +02005770 .rate_min = 32000,
Remy Bruno3cee5a62006-10-16 12:46:32 +02005771 .rate_max = 192000,
Takashi Iwai763f3562005-06-03 11:25:34 +02005772 .channels_min = 1,
5773 .channels_max = HDSPM_MAX_CHANNELS,
5774 .buffer_bytes_max =
5775 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
Adrian Knoth1b6fa102011-08-15 00:22:51 +02005776 .period_bytes_min = (32 * 4),
Takashi Iwai52e6fb42011-08-15 10:40:59 +02005777 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
Takashi Iwai763f3562005-06-03 11:25:34 +02005778 .periods_min = 2,
Adrian Knoth0dca1792011-01-26 19:32:14 +01005779 .periods_max = 512,
Takashi Iwai763f3562005-06-03 11:25:34 +02005780 .fifo_size = 0
5781};
5782
Adrian Knoth0dca1792011-01-26 19:32:14 +01005783static int snd_hdspm_hw_rule_in_channels_rate(struct snd_pcm_hw_params *params,
5784 struct snd_pcm_hw_rule *rule)
Takashi Iwai763f3562005-06-03 11:25:34 +02005785{
Takashi Iwai98274f02005-11-17 14:52:34 +01005786 struct hdspm *hdspm = rule->private;
5787 struct snd_interval *c =
Takashi Iwai763f3562005-06-03 11:25:34 +02005788 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Takashi Iwai98274f02005-11-17 14:52:34 +01005789 struct snd_interval *r =
Takashi Iwai763f3562005-06-03 11:25:34 +02005790 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5791
Adrian Knoth0dca1792011-01-26 19:32:14 +01005792 if (r->min > 96000 && r->max <= 192000) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005793 struct snd_interval t = {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005794 .min = hdspm->qs_in_channels,
5795 .max = hdspm->qs_in_channels,
5796 .integer = 1,
5797 };
5798 return snd_interval_refine(c, &t);
5799 } else if (r->min > 48000 && r->max <= 96000) {
5800 struct snd_interval t = {
5801 .min = hdspm->ds_in_channels,
5802 .max = hdspm->ds_in_channels,
Takashi Iwai763f3562005-06-03 11:25:34 +02005803 .integer = 1,
5804 };
5805 return snd_interval_refine(c, &t);
5806 } else if (r->max < 64000) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005807 struct snd_interval t = {
Adrian Knoth0dca1792011-01-26 19:32:14 +01005808 .min = hdspm->ss_in_channels,
5809 .max = hdspm->ss_in_channels,
Takashi Iwai763f3562005-06-03 11:25:34 +02005810 .integer = 1,
5811 };
5812 return snd_interval_refine(c, &t);
5813 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01005814
Takashi Iwai763f3562005-06-03 11:25:34 +02005815 return 0;
5816}
5817
Adrian Knoth0dca1792011-01-26 19:32:14 +01005818static int snd_hdspm_hw_rule_out_channels_rate(struct snd_pcm_hw_params *params,
Takashi Iwai98274f02005-11-17 14:52:34 +01005819 struct snd_pcm_hw_rule * rule)
Takashi Iwai763f3562005-06-03 11:25:34 +02005820{
Takashi Iwai98274f02005-11-17 14:52:34 +01005821 struct hdspm *hdspm = rule->private;
5822 struct snd_interval *c =
Takashi Iwai763f3562005-06-03 11:25:34 +02005823 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Takashi Iwai98274f02005-11-17 14:52:34 +01005824 struct snd_interval *r =
Takashi Iwai763f3562005-06-03 11:25:34 +02005825 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5826
Adrian Knoth0dca1792011-01-26 19:32:14 +01005827 if (r->min > 96000 && r->max <= 192000) {
5828 struct snd_interval t = {
5829 .min = hdspm->qs_out_channels,
5830 .max = hdspm->qs_out_channels,
5831 .integer = 1,
5832 };
5833 return snd_interval_refine(c, &t);
5834 } else if (r->min > 48000 && r->max <= 96000) {
5835 struct snd_interval t = {
5836 .min = hdspm->ds_out_channels,
5837 .max = hdspm->ds_out_channels,
5838 .integer = 1,
5839 };
5840 return snd_interval_refine(c, &t);
5841 } else if (r->max < 64000) {
5842 struct snd_interval t = {
5843 .min = hdspm->ss_out_channels,
5844 .max = hdspm->ss_out_channels,
5845 .integer = 1,
5846 };
5847 return snd_interval_refine(c, &t);
5848 } else {
5849 }
5850 return 0;
5851}
5852
5853static int snd_hdspm_hw_rule_rate_in_channels(struct snd_pcm_hw_params *params,
5854 struct snd_pcm_hw_rule * rule)
5855{
5856 struct hdspm *hdspm = rule->private;
5857 struct snd_interval *c =
5858 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
5859 struct snd_interval *r =
5860 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5861
5862 if (c->min >= hdspm->ss_in_channels) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005863 struct snd_interval t = {
Takashi Iwai763f3562005-06-03 11:25:34 +02005864 .min = 32000,
5865 .max = 48000,
5866 .integer = 1,
5867 };
5868 return snd_interval_refine(r, &t);
Adrian Knoth0dca1792011-01-26 19:32:14 +01005869 } else if (c->max <= hdspm->qs_in_channels) {
5870 struct snd_interval t = {
5871 .min = 128000,
5872 .max = 192000,
5873 .integer = 1,
5874 };
5875 return snd_interval_refine(r, &t);
5876 } else if (c->max <= hdspm->ds_in_channels) {
Takashi Iwai98274f02005-11-17 14:52:34 +01005877 struct snd_interval t = {
Takashi Iwai763f3562005-06-03 11:25:34 +02005878 .min = 64000,
5879 .max = 96000,
5880 .integer = 1,
5881 };
Takashi Iwai763f3562005-06-03 11:25:34 +02005882 return snd_interval_refine(r, &t);
5883 }
Adrian Knoth0dca1792011-01-26 19:32:14 +01005884
5885 return 0;
5886}
5887static int snd_hdspm_hw_rule_rate_out_channels(struct snd_pcm_hw_params *params,
5888 struct snd_pcm_hw_rule *rule)
5889{
5890 struct hdspm *hdspm = rule->private;
5891 struct snd_interval *c =
5892 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
5893 struct snd_interval *r =
5894 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
5895
5896 if (c->min >= hdspm->ss_out_channels) {
5897 struct snd_interval t = {
5898 .min = 32000,
5899 .max = 48000,
5900 .integer = 1,
5901 };
5902 return snd_interval_refine(r, &t);
5903 } else if (c->max <= hdspm->qs_out_channels) {
5904 struct snd_interval t = {
5905 .min = 128000,
5906 .max = 192000,
5907 .integer = 1,
5908 };
5909 return snd_interval_refine(r, &t);
5910 } else if (c->max <= hdspm->ds_out_channels) {
5911 struct snd_interval t = {
5912 .min = 64000,
5913 .max = 96000,
5914 .integer = 1,
5915 };
5916 return snd_interval_refine(r, &t);
5917 }
5918
Takashi Iwai763f3562005-06-03 11:25:34 +02005919 return 0;
5920}
5921
Adrian Knoth0dca1792011-01-26 19:32:14 +01005922static int snd_hdspm_hw_rule_in_channels(struct snd_pcm_hw_params *params,
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005923 struct snd_pcm_hw_rule *rule)
5924{
5925 unsigned int list[3];
5926 struct hdspm *hdspm = rule->private;
5927 struct snd_interval *c = hw_param_interval(params,
5928 SNDRV_PCM_HW_PARAM_CHANNELS);
Adrian Knoth0dca1792011-01-26 19:32:14 +01005929
5930 list[0] = hdspm->qs_in_channels;
5931 list[1] = hdspm->ds_in_channels;
5932 list[2] = hdspm->ss_in_channels;
5933 return snd_interval_list(c, 3, list, 0);
5934}
5935
5936static int snd_hdspm_hw_rule_out_channels(struct snd_pcm_hw_params *params,
5937 struct snd_pcm_hw_rule *rule)
5938{
5939 unsigned int list[3];
5940 struct hdspm *hdspm = rule->private;
5941 struct snd_interval *c = hw_param_interval(params,
5942 SNDRV_PCM_HW_PARAM_CHANNELS);
5943
5944 list[0] = hdspm->qs_out_channels;
5945 list[1] = hdspm->ds_out_channels;
5946 list[2] = hdspm->ss_out_channels;
5947 return snd_interval_list(c, 3, list, 0);
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005948}
5949
5950
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005951static unsigned int hdspm_aes32_sample_rates[] = {
5952 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000
5953};
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005954
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02005955static struct snd_pcm_hw_constraint_list
5956hdspm_hw_constraints_aes32_sample_rates = {
Remy Brunoffb2c3c2007-03-07 19:08:46 +01005957 .count = ARRAY_SIZE(hdspm_aes32_sample_rates),
5958 .list = hdspm_aes32_sample_rates,
5959 .mask = 0
5960};
5961
Takashi Iwai98274f02005-11-17 14:52:34 +01005962static int snd_hdspm_playback_open(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02005963{
Takashi Iwai98274f02005-11-17 14:52:34 +01005964 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
5965 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai763f3562005-06-03 11:25:34 +02005966
Takashi Iwai763f3562005-06-03 11:25:34 +02005967 spin_lock_irq(&hdspm->lock);
5968
5969 snd_pcm_set_sync(substream);
5970
Adrian Knoth0dca1792011-01-26 19:32:14 +01005971
Takashi Iwai763f3562005-06-03 11:25:34 +02005972 runtime->hw = snd_hdspm_playback_subinfo;
5973
5974 if (hdspm->capture_substream == NULL)
5975 hdspm_stop_audio(hdspm);
5976
5977 hdspm->playback_pid = current->pid;
5978 hdspm->playback_substream = substream;
5979
5980 spin_unlock_irq(&hdspm->lock);
5981
5982 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
Takashi Iwaid8776812011-08-15 10:45:42 +02005983 snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
Takashi Iwai763f3562005-06-03 11:25:34 +02005984
Adrian Knoth0dca1792011-01-26 19:32:14 +01005985 switch (hdspm->io_type) {
5986 case AIO:
5987 case RayDAT:
Takashi Iwaid8776812011-08-15 10:45:42 +02005988 snd_pcm_hw_constraint_minmax(runtime,
5989 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
5990 32, 4096);
5991 /* RayDAT & AIO have a fixed buffer of 16384 samples per channel */
5992 snd_pcm_hw_constraint_minmax(runtime,
5993 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
5994 16384, 16384);
Adrian Knoth0dca1792011-01-26 19:32:14 +01005995 break;
5996
5997 default:
Takashi Iwaid8776812011-08-15 10:45:42 +02005998 snd_pcm_hw_constraint_minmax(runtime,
5999 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6000 64, 8192);
6001 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006002 }
6003
6004 if (AES32 == hdspm->io_type) {
Takashi Iwai3fa9e3d2011-08-15 10:42:23 +02006005 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006006 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
6007 &hdspm_hw_constraints_aes32_sample_rates);
6008 } else {
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006009 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006010 snd_hdspm_hw_rule_rate_out_channels, hdspm,
6011 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006012 }
Adrian Knoth88fabbf2011-02-23 11:43:10 +01006013
6014 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6015 snd_hdspm_hw_rule_out_channels, hdspm,
6016 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
6017
6018 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6019 snd_hdspm_hw_rule_out_channels_rate, hdspm,
6020 SNDRV_PCM_HW_PARAM_RATE, -1);
6021
Takashi Iwai763f3562005-06-03 11:25:34 +02006022 return 0;
6023}
6024
Takashi Iwai98274f02005-11-17 14:52:34 +01006025static int snd_hdspm_playback_release(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02006026{
Takashi Iwai98274f02005-11-17 14:52:34 +01006027 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02006028
6029 spin_lock_irq(&hdspm->lock);
6030
6031 hdspm->playback_pid = -1;
6032 hdspm->playback_substream = NULL;
6033
6034 spin_unlock_irq(&hdspm->lock);
6035
6036 return 0;
6037}
6038
6039
Takashi Iwai98274f02005-11-17 14:52:34 +01006040static int snd_hdspm_capture_open(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02006041{
Takashi Iwai98274f02005-11-17 14:52:34 +01006042 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
6043 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai763f3562005-06-03 11:25:34 +02006044
6045 spin_lock_irq(&hdspm->lock);
6046 snd_pcm_set_sync(substream);
6047 runtime->hw = snd_hdspm_capture_subinfo;
6048
6049 if (hdspm->playback_substream == NULL)
6050 hdspm_stop_audio(hdspm);
6051
6052 hdspm->capture_pid = current->pid;
6053 hdspm->capture_substream = substream;
6054
6055 spin_unlock_irq(&hdspm->lock);
6056
6057 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
Takashi Iwaid8776812011-08-15 10:45:42 +02006058 snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
6059
Adrian Knoth0dca1792011-01-26 19:32:14 +01006060 switch (hdspm->io_type) {
6061 case AIO:
6062 case RayDAT:
Takashi Iwaid8776812011-08-15 10:45:42 +02006063 snd_pcm_hw_constraint_minmax(runtime,
6064 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6065 32, 4096);
6066 snd_pcm_hw_constraint_minmax(runtime,
6067 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
6068 16384, 16384);
6069 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006070
6071 default:
Takashi Iwaid8776812011-08-15 10:45:42 +02006072 snd_pcm_hw_constraint_minmax(runtime,
6073 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
6074 64, 8192);
6075 break;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006076 }
6077
6078 if (AES32 == hdspm->io_type) {
Takashi Iwai3fa9e3d2011-08-15 10:42:23 +02006079 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006080 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
6081 &hdspm_hw_constraints_aes32_sample_rates);
6082 } else {
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006083 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Adrian Knoth88fabbf2011-02-23 11:43:10 +01006084 snd_hdspm_hw_rule_rate_in_channels, hdspm,
6085 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
Remy Brunoffb2c3c2007-03-07 19:08:46 +01006086 }
Adrian Knoth88fabbf2011-02-23 11:43:10 +01006087
6088 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6089 snd_hdspm_hw_rule_in_channels, hdspm,
6090 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
6091
6092 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
6093 snd_hdspm_hw_rule_in_channels_rate, hdspm,
6094 SNDRV_PCM_HW_PARAM_RATE, -1);
6095
Takashi Iwai763f3562005-06-03 11:25:34 +02006096 return 0;
6097}
6098
Takashi Iwai98274f02005-11-17 14:52:34 +01006099static int snd_hdspm_capture_release(struct snd_pcm_substream *substream)
Takashi Iwai763f3562005-06-03 11:25:34 +02006100{
Takashi Iwai98274f02005-11-17 14:52:34 +01006101 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
Takashi Iwai763f3562005-06-03 11:25:34 +02006102
6103 spin_lock_irq(&hdspm->lock);
6104
6105 hdspm->capture_pid = -1;
6106 hdspm->capture_substream = NULL;
6107
6108 spin_unlock_irq(&hdspm->lock);
6109 return 0;
6110}
6111
Adrian Knoth0dca1792011-01-26 19:32:14 +01006112static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep *hw, struct file *file)
Takashi Iwai763f3562005-06-03 11:25:34 +02006113{
Adrian Knoth0dca1792011-01-26 19:32:14 +01006114 /* we have nothing to initialize but the call is required */
6115 return 0;
6116}
6117
6118static inline int copy_u32_le(void __user *dest, void __iomem *src)
6119{
6120 u32 val = readl(src);
6121 return copy_to_user(dest, &val, 4);
6122}
6123
6124static int snd_hdspm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
Dan Carpenter2ca595a2011-09-23 09:25:05 +03006125 unsigned int cmd, unsigned long arg)
Adrian Knoth0dca1792011-01-26 19:32:14 +01006126{
6127 void __user *argp = (void __user *)arg;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006128 struct hdspm *hdspm = hw->private_data;
Takashi Iwai98274f02005-11-17 14:52:34 +01006129 struct hdspm_mixer_ioctl mixer;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006130 struct hdspm_config info;
6131 struct hdspm_status status;
Takashi Iwai98274f02005-11-17 14:52:34 +01006132 struct hdspm_version hdspm_version;
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006133 struct hdspm_peak_rms *levels;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006134 struct hdspm_ltc ltc;
6135 unsigned int statusregister;
6136 long unsigned int s;
6137 int i = 0;
Takashi Iwai763f3562005-06-03 11:25:34 +02006138
6139 switch (cmd) {
6140
Takashi Iwai763f3562005-06-03 11:25:34 +02006141 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS:
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006142 levels = &hdspm->peak_rms;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006143 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006144 levels->input_peaks[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006145 readl(hdspm->iobase +
6146 HDSPM_MADI_INPUT_PEAK + i*4);
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006147 levels->playback_peaks[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006148 readl(hdspm->iobase +
6149 HDSPM_MADI_PLAYBACK_PEAK + i*4);
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006150 levels->output_peaks[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006151 readl(hdspm->iobase +
6152 HDSPM_MADI_OUTPUT_PEAK + i*4);
6153
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006154 levels->input_rms[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006155 ((uint64_t) readl(hdspm->iobase +
6156 HDSPM_MADI_INPUT_RMS_H + i*4) << 32) |
6157 (uint64_t) readl(hdspm->iobase +
6158 HDSPM_MADI_INPUT_RMS_L + i*4);
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006159 levels->playback_rms[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006160 ((uint64_t)readl(hdspm->iobase +
6161 HDSPM_MADI_PLAYBACK_RMS_H+i*4) << 32) |
6162 (uint64_t)readl(hdspm->iobase +
6163 HDSPM_MADI_PLAYBACK_RMS_L + i*4);
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006164 levels->output_rms[i] =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006165 ((uint64_t)readl(hdspm->iobase +
6166 HDSPM_MADI_OUTPUT_RMS_H + i*4) << 32) |
6167 (uint64_t)readl(hdspm->iobase +
6168 HDSPM_MADI_OUTPUT_RMS_L + i*4);
6169 }
6170
6171 if (hdspm->system_sample_rate > 96000) {
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006172 levels->speed = qs;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006173 } else if (hdspm->system_sample_rate > 48000) {
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006174 levels->speed = ds;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006175 } else {
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006176 levels->speed = ss;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006177 }
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006178 levels->status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
Adrian Knoth0dca1792011-01-26 19:32:14 +01006179
Jaroslav Kysela730a5862011-01-27 13:03:15 +01006180 s = copy_to_user(argp, levels, sizeof(struct hdspm_peak_rms));
Adrian Knoth0dca1792011-01-26 19:32:14 +01006181 if (0 != s) {
6182 /* snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu
6183 [Levels]\n", sizeof(struct hdspm_peak_rms), s);
6184 */
Takashi Iwai763f3562005-06-03 11:25:34 +02006185 return -EFAULT;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006186 }
6187 break;
6188
6189 case SNDRV_HDSPM_IOCTL_GET_LTC:
6190 ltc.ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
6191 i = hdspm_read(hdspm, HDSPM_RD_TCO + 4);
6192 if (i & HDSPM_TCO1_LTC_Input_valid) {
6193 switch (i & (HDSPM_TCO1_LTC_Format_LSB |
6194 HDSPM_TCO1_LTC_Format_MSB)) {
6195 case 0:
6196 ltc.format = fps_24;
6197 break;
6198 case HDSPM_TCO1_LTC_Format_LSB:
6199 ltc.format = fps_25;
6200 break;
6201 case HDSPM_TCO1_LTC_Format_MSB:
6202 ltc.format = fps_2997;
6203 break;
6204 default:
6205 ltc.format = 30;
6206 break;
6207 }
6208 if (i & HDSPM_TCO1_set_drop_frame_flag) {
6209 ltc.frame = drop_frame;
6210 } else {
6211 ltc.frame = full_frame;
6212 }
6213 } else {
6214 ltc.format = format_invalid;
6215 ltc.frame = frame_invalid;
6216 }
6217 if (i & HDSPM_TCO1_Video_Input_Format_NTSC) {
6218 ltc.input_format = ntsc;
6219 } else if (i & HDSPM_TCO1_Video_Input_Format_PAL) {
6220 ltc.input_format = pal;
6221 } else {
6222 ltc.input_format = no_video;
6223 }
6224
6225 s = copy_to_user(argp, &ltc, sizeof(struct hdspm_ltc));
6226 if (0 != s) {
6227 /*
6228 snd_printk(KERN_ERR "copy_to_user(.., .., %lu): %lu [LTC]\n", sizeof(struct hdspm_ltc), s); */
Takashi Iwai763f3562005-06-03 11:25:34 +02006229 return -EFAULT;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006230 }
Takashi Iwai763f3562005-06-03 11:25:34 +02006231
6232 break;
Takashi Iwai763f3562005-06-03 11:25:34 +02006233
Adrian Knoth0dca1792011-01-26 19:32:14 +01006234 case SNDRV_HDSPM_IOCTL_GET_CONFIG:
Takashi Iwai763f3562005-06-03 11:25:34 +02006235
Adrian Knoth4ab69a22011-02-23 11:43:14 +01006236 memset(&info, 0, sizeof(info));
Takashi Iwai763f3562005-06-03 11:25:34 +02006237 spin_lock_irq(&hdspm->lock);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006238 info.pref_sync_ref = hdspm_pref_sync_ref(hdspm);
6239 info.wordclock_sync_check = hdspm_wc_sync_check(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02006240
6241 info.system_sample_rate = hdspm->system_sample_rate;
6242 info.autosync_sample_rate =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006243 hdspm_external_sample_rate(hdspm);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006244 info.system_clock_mode = hdspm_system_clock_mode(hdspm);
6245 info.clock_source = hdspm_clock_source(hdspm);
6246 info.autosync_ref = hdspm_autosync_ref(hdspm);
6247 info.line_out = hdspm_line_out(hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02006248 info.passthru = 0;
6249 spin_unlock_irq(&hdspm->lock);
Dan Carpenter2ca595a2011-09-23 09:25:05 +03006250 if (copy_to_user(argp, &info, sizeof(info)))
Takashi Iwai763f3562005-06-03 11:25:34 +02006251 return -EFAULT;
6252 break;
6253
Adrian Knoth0dca1792011-01-26 19:32:14 +01006254 case SNDRV_HDSPM_IOCTL_GET_STATUS:
Dan Carpenter643d6bb2011-09-23 09:24:21 +03006255 memset(&status, 0, sizeof(status));
6256
Adrian Knoth0dca1792011-01-26 19:32:14 +01006257 status.card_type = hdspm->io_type;
6258
6259 status.autosync_source = hdspm_autosync_ref(hdspm);
6260
6261 status.card_clock = 110069313433624ULL;
6262 status.master_period = hdspm_read(hdspm, HDSPM_RD_PLL_FREQ);
6263
6264 switch (hdspm->io_type) {
6265 case MADI:
6266 case MADIface:
6267 status.card_specific.madi.sync_wc =
6268 hdspm_wc_sync_check(hdspm);
6269 status.card_specific.madi.sync_madi =
6270 hdspm_madi_sync_check(hdspm);
6271 status.card_specific.madi.sync_tco =
6272 hdspm_tco_sync_check(hdspm);
6273 status.card_specific.madi.sync_in =
6274 hdspm_sync_in_sync_check(hdspm);
6275
6276 statusregister =
6277 hdspm_read(hdspm, HDSPM_statusRegister);
6278 status.card_specific.madi.madi_input =
6279 (statusregister & HDSPM_AB_int) ? 1 : 0;
6280 status.card_specific.madi.channel_format =
Adrian Knoth9e6ff522011-10-27 21:57:52 +02006281 (statusregister & HDSPM_RX_64ch) ? 1 : 0;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006282 /* TODO: Mac driver sets it when f_s>48kHz */
6283 status.card_specific.madi.frame_format = 0;
6284
6285 default:
6286 break;
6287 }
6288
Dan Carpenter2ca595a2011-09-23 09:25:05 +03006289 if (copy_to_user(argp, &status, sizeof(status)))
Adrian Knoth0dca1792011-01-26 19:32:14 +01006290 return -EFAULT;
6291
6292
6293 break;
6294
Takashi Iwai763f3562005-06-03 11:25:34 +02006295 case SNDRV_HDSPM_IOCTL_GET_VERSION:
Dan Carpenter643d6bb2011-09-23 09:24:21 +03006296 memset(&hdspm_version, 0, sizeof(hdspm_version));
6297
Adrian Knoth0dca1792011-01-26 19:32:14 +01006298 hdspm_version.card_type = hdspm->io_type;
6299 strncpy(hdspm_version.cardname, hdspm->card_name,
6300 sizeof(hdspm_version.cardname));
Adrian Knoth7d53a632012-01-04 14:31:16 +01006301 hdspm_version.serial = hdspm->serial;
Takashi Iwai763f3562005-06-03 11:25:34 +02006302 hdspm_version.firmware_rev = hdspm->firmware_rev;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006303 hdspm_version.addons = 0;
6304 if (hdspm->tco)
6305 hdspm_version.addons |= HDSPM_ADDON_TCO;
6306
Dan Carpenter2ca595a2011-09-23 09:25:05 +03006307 if (copy_to_user(argp, &hdspm_version,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006308 sizeof(hdspm_version)))
Takashi Iwai763f3562005-06-03 11:25:34 +02006309 return -EFAULT;
6310 break;
6311
6312 case SNDRV_HDSPM_IOCTL_GET_MIXER:
Dan Carpenter2ca595a2011-09-23 09:25:05 +03006313 if (copy_from_user(&mixer, argp, sizeof(mixer)))
Takashi Iwai763f3562005-06-03 11:25:34 +02006314 return -EFAULT;
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006315 if (copy_to_user((void __user *)mixer.mixer, hdspm->mixer,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006316 sizeof(struct hdspm_mixer)))
Takashi Iwai763f3562005-06-03 11:25:34 +02006317 return -EFAULT;
6318 break;
6319
6320 default:
6321 return -EINVAL;
6322 }
6323 return 0;
6324}
6325
Takashi Iwai98274f02005-11-17 14:52:34 +01006326static struct snd_pcm_ops snd_hdspm_playback_ops = {
Takashi Iwai763f3562005-06-03 11:25:34 +02006327 .open = snd_hdspm_playback_open,
6328 .close = snd_hdspm_playback_release,
6329 .ioctl = snd_hdspm_ioctl,
6330 .hw_params = snd_hdspm_hw_params,
6331 .hw_free = snd_hdspm_hw_free,
6332 .prepare = snd_hdspm_prepare,
6333 .trigger = snd_hdspm_trigger,
6334 .pointer = snd_hdspm_hw_pointer,
Takashi Iwai763f3562005-06-03 11:25:34 +02006335 .page = snd_pcm_sgbuf_ops_page,
6336};
6337
Takashi Iwai98274f02005-11-17 14:52:34 +01006338static struct snd_pcm_ops snd_hdspm_capture_ops = {
Takashi Iwai763f3562005-06-03 11:25:34 +02006339 .open = snd_hdspm_capture_open,
6340 .close = snd_hdspm_capture_release,
6341 .ioctl = snd_hdspm_ioctl,
6342 .hw_params = snd_hdspm_hw_params,
6343 .hw_free = snd_hdspm_hw_free,
6344 .prepare = snd_hdspm_prepare,
6345 .trigger = snd_hdspm_trigger,
6346 .pointer = snd_hdspm_hw_pointer,
Takashi Iwai763f3562005-06-03 11:25:34 +02006347 .page = snd_pcm_sgbuf_ops_page,
6348};
6349
Takashi Iwai98274f02005-11-17 14:52:34 +01006350static int __devinit snd_hdspm_create_hwdep(struct snd_card *card,
6351 struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006352{
Takashi Iwai98274f02005-11-17 14:52:34 +01006353 struct snd_hwdep *hw;
Takashi Iwai763f3562005-06-03 11:25:34 +02006354 int err;
6355
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006356 err = snd_hwdep_new(card, "HDSPM hwdep", 0, &hw);
6357 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006358 return err;
6359
6360 hdspm->hwdep = hw;
6361 hw->private_data = hdspm;
6362 strcpy(hw->name, "HDSPM hwdep interface");
6363
Adrian Knoth0dca1792011-01-26 19:32:14 +01006364 hw->ops.open = snd_hdspm_hwdep_dummy_op;
Takashi Iwai763f3562005-06-03 11:25:34 +02006365 hw->ops.ioctl = snd_hdspm_hwdep_ioctl;
Adrian Knoth8de5d6f2012-03-08 15:38:04 +01006366 hw->ops.ioctl_compat = snd_hdspm_hwdep_ioctl;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006367 hw->ops.release = snd_hdspm_hwdep_dummy_op;
Takashi Iwai763f3562005-06-03 11:25:34 +02006368
6369 return 0;
6370}
6371
6372
6373/*------------------------------------------------------------
Adrian Knoth0dca1792011-01-26 19:32:14 +01006374 memory interface
Takashi Iwai763f3562005-06-03 11:25:34 +02006375 ------------------------------------------------------------*/
Adrian Knoth0dca1792011-01-26 19:32:14 +01006376static int __devinit snd_hdspm_preallocate_memory(struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006377{
6378 int err;
Takashi Iwai98274f02005-11-17 14:52:34 +01006379 struct snd_pcm *pcm;
Takashi Iwai763f3562005-06-03 11:25:34 +02006380 size_t wanted;
6381
6382 pcm = hdspm->pcm;
6383
Remy Bruno3cee5a62006-10-16 12:46:32 +02006384 wanted = HDSPM_DMA_AREA_BYTES;
Takashi Iwai763f3562005-06-03 11:25:34 +02006385
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006386 err =
Takashi Iwai763f3562005-06-03 11:25:34 +02006387 snd_pcm_lib_preallocate_pages_for_all(pcm,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006388 SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwai763f3562005-06-03 11:25:34 +02006389 snd_dma_pci_data(hdspm->pci),
6390 wanted,
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006391 wanted);
6392 if (err < 0) {
Andrew Mortone2eba3e2006-01-20 14:07:13 +01006393 snd_printdd("Could not preallocate %zd Bytes\n", wanted);
Takashi Iwai763f3562005-06-03 11:25:34 +02006394
6395 return err;
6396 } else
Andrew Mortone2eba3e2006-01-20 14:07:13 +01006397 snd_printdd(" Preallocated %zd Bytes\n", wanted);
Takashi Iwai763f3562005-06-03 11:25:34 +02006398
6399 return 0;
6400}
6401
Adrian Knoth0dca1792011-01-26 19:32:14 +01006402
6403static void hdspm_set_sgbuf(struct hdspm *hdspm,
Takashi Iwai77a23f22008-08-21 13:00:13 +02006404 struct snd_pcm_substream *substream,
Takashi Iwai763f3562005-06-03 11:25:34 +02006405 unsigned int reg, int channels)
6406{
6407 int i;
Adrian Knoth0dca1792011-01-26 19:32:14 +01006408
6409 /* continuous memory segment */
Takashi Iwai763f3562005-06-03 11:25:34 +02006410 for (i = 0; i < (channels * 16); i++)
6411 hdspm_write(hdspm, reg + 4 * i,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006412 snd_pcm_sgbuf_get_addr(substream, 4096 * i));
Takashi Iwai763f3562005-06-03 11:25:34 +02006413}
6414
Adrian Knoth0dca1792011-01-26 19:32:14 +01006415
Takashi Iwai763f3562005-06-03 11:25:34 +02006416/* ------------- ALSA Devices ---------------------------- */
Takashi Iwai98274f02005-11-17 14:52:34 +01006417static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006418 struct hdspm *hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006419{
Takashi Iwai98274f02005-11-17 14:52:34 +01006420 struct snd_pcm *pcm;
Takashi Iwai763f3562005-06-03 11:25:34 +02006421 int err;
6422
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006423 err = snd_pcm_new(card, hdspm->card_name, 0, 1, 1, &pcm);
6424 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006425 return err;
6426
6427 hdspm->pcm = pcm;
6428 pcm->private_data = hdspm;
6429 strcpy(pcm->name, hdspm->card_name);
6430
6431 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
6432 &snd_hdspm_playback_ops);
6433 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
6434 &snd_hdspm_capture_ops);
6435
6436 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
6437
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006438 err = snd_hdspm_preallocate_memory(hdspm);
6439 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006440 return err;
6441
6442 return 0;
6443}
6444
Takashi Iwai98274f02005-11-17 14:52:34 +01006445static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006446{
Adrian Knoth7c7102b2011-02-28 15:14:50 +01006447 int i;
6448
6449 for (i = 0; i < hdspm->midiPorts; i++)
6450 snd_hdspm_flush_midi_input(hdspm, i);
Takashi Iwai763f3562005-06-03 11:25:34 +02006451}
6452
Takashi Iwai98274f02005-11-17 14:52:34 +01006453static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
6454 struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006455{
Adrian Knoth0dca1792011-01-26 19:32:14 +01006456 int err, i;
Takashi Iwai763f3562005-06-03 11:25:34 +02006457
6458 snd_printdd("Create card...\n");
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006459 err = snd_hdspm_create_pcm(card, hdspm);
6460 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006461 return err;
6462
Adrian Knoth0dca1792011-01-26 19:32:14 +01006463 i = 0;
6464 while (i < hdspm->midiPorts) {
6465 err = snd_hdspm_create_midi(card, hdspm, i);
6466 if (err < 0) {
6467 return err;
6468 }
6469 i++;
6470 }
Takashi Iwai763f3562005-06-03 11:25:34 +02006471
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006472 err = snd_hdspm_create_controls(card, hdspm);
6473 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006474 return err;
6475
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006476 err = snd_hdspm_create_hwdep(card, hdspm);
6477 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006478 return err;
6479
6480 snd_printdd("proc init...\n");
6481 snd_hdspm_proc_init(hdspm);
6482
6483 hdspm->system_sample_rate = -1;
6484 hdspm->last_external_sample_rate = -1;
6485 hdspm->last_internal_sample_rate = -1;
6486 hdspm->playback_pid = -1;
6487 hdspm->capture_pid = -1;
6488 hdspm->capture_substream = NULL;
6489 hdspm->playback_substream = NULL;
6490
6491 snd_printdd("Set defaults...\n");
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006492 err = snd_hdspm_set_defaults(hdspm);
6493 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006494 return err;
6495
6496 snd_printdd("Update mixer controls...\n");
6497 hdspm_update_simple_mixer_controls(hdspm);
6498
6499 snd_printdd("Initializeing complete ???\n");
6500
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006501 err = snd_card_register(card);
6502 if (err < 0) {
Takashi Iwai763f3562005-06-03 11:25:34 +02006503 snd_printk(KERN_ERR "HDSPM: error registering card\n");
6504 return err;
6505 }
6506
6507 snd_printdd("... yes now\n");
6508
6509 return 0;
6510}
6511
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006512static int __devinit snd_hdspm_create(struct snd_card *card,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006513 struct hdspm *hdspm) {
6514
Takashi Iwai763f3562005-06-03 11:25:34 +02006515 struct pci_dev *pci = hdspm->pci;
6516 int err;
Takashi Iwai763f3562005-06-03 11:25:34 +02006517 unsigned long io_extent;
6518
6519 hdspm->irq = -1;
Takashi Iwai763f3562005-06-03 11:25:34 +02006520 hdspm->card = card;
6521
6522 spin_lock_init(&hdspm->lock);
6523
Takashi Iwai763f3562005-06-03 11:25:34 +02006524 pci_read_config_word(hdspm->pci,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006525 PCI_CLASS_REVISION, &hdspm->firmware_rev);
Remy Bruno3cee5a62006-10-16 12:46:32 +02006526
Takashi Iwai763f3562005-06-03 11:25:34 +02006527 strcpy(card->mixername, "Xilinx FPGA");
Adrian Knoth0dca1792011-01-26 19:32:14 +01006528 strcpy(card->driver, "HDSPM");
6529
6530 switch (hdspm->firmware_rev) {
Adrian Knoth0dca1792011-01-26 19:32:14 +01006531 case HDSPM_RAYDAT_REV:
6532 hdspm->io_type = RayDAT;
6533 hdspm->card_name = "RME RayDAT";
6534 hdspm->midiPorts = 2;
6535 break;
6536 case HDSPM_AIO_REV:
6537 hdspm->io_type = AIO;
6538 hdspm->card_name = "RME AIO";
6539 hdspm->midiPorts = 1;
6540 break;
6541 case HDSPM_MADIFACE_REV:
6542 hdspm->io_type = MADIface;
6543 hdspm->card_name = "RME MADIface";
6544 hdspm->midiPorts = 1;
6545 break;
Adrian Knoth5027f342011-02-28 15:14:49 +01006546 default:
Adrian Knothc09403d2011-10-27 21:57:54 +02006547 if ((hdspm->firmware_rev == 0xf0) ||
6548 ((hdspm->firmware_rev >= 0xe6) &&
6549 (hdspm->firmware_rev <= 0xea))) {
6550 hdspm->io_type = AES32;
6551 hdspm->card_name = "RME AES32";
6552 hdspm->midiPorts = 2;
Adrian Knoth05c7cc92011-11-21 16:15:36 +01006553 } else if ((hdspm->firmware_rev == 0xd2) ||
Adrian Knothc09403d2011-10-27 21:57:54 +02006554 ((hdspm->firmware_rev >= 0xc8) &&
6555 (hdspm->firmware_rev <= 0xcf))) {
6556 hdspm->io_type = MADI;
6557 hdspm->card_name = "RME MADI";
6558 hdspm->midiPorts = 3;
6559 } else {
6560 snd_printk(KERN_ERR
6561 "HDSPM: unknown firmware revision %x\n",
Adrian Knoth5027f342011-02-28 15:14:49 +01006562 hdspm->firmware_rev);
Adrian Knothc09403d2011-10-27 21:57:54 +02006563 return -ENODEV;
6564 }
Remy Bruno3cee5a62006-10-16 12:46:32 +02006565 }
Takashi Iwai763f3562005-06-03 11:25:34 +02006566
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006567 err = pci_enable_device(pci);
6568 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006569 return err;
6570
6571 pci_set_master(hdspm->pci);
6572
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006573 err = pci_request_regions(pci, "hdspm");
6574 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006575 return err;
6576
6577 hdspm->port = pci_resource_start(pci, 0);
6578 io_extent = pci_resource_len(pci, 0);
6579
6580 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01006581 hdspm->port, hdspm->port + io_extent - 1);
Takashi Iwai763f3562005-06-03 11:25:34 +02006582
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006583 hdspm->iobase = ioremap_nocache(hdspm->port, io_extent);
6584 if (!hdspm->iobase) {
6585 snd_printk(KERN_ERR "HDSPM: "
Adrian Knoth0dca1792011-01-26 19:32:14 +01006586 "unable to remap region 0x%lx-0x%lx\n",
6587 hdspm->port, hdspm->port + io_extent - 1);
Takashi Iwai763f3562005-06-03 11:25:34 +02006588 return -EBUSY;
6589 }
6590 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01006591 (unsigned long)hdspm->iobase, hdspm->port,
6592 hdspm->port + io_extent - 1);
Takashi Iwai763f3562005-06-03 11:25:34 +02006593
6594 if (request_irq(pci->irq, snd_hdspm_interrupt,
Takashi Iwai934c2b62011-06-10 16:36:37 +02006595 IRQF_SHARED, KBUILD_MODNAME, hdspm)) {
Takashi Iwai763f3562005-06-03 11:25:34 +02006596 snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq);
6597 return -EBUSY;
6598 }
6599
6600 snd_printdd("use IRQ %d\n", pci->irq);
6601
6602 hdspm->irq = pci->irq;
Takashi Iwai763f3562005-06-03 11:25:34 +02006603
Andrew Mortone2eba3e2006-01-20 14:07:13 +01006604 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
Adrian Knoth0dca1792011-01-26 19:32:14 +01006605 sizeof(struct hdspm_mixer));
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006606 hdspm->mixer = kzalloc(sizeof(struct hdspm_mixer), GFP_KERNEL);
6607 if (!hdspm->mixer) {
6608 snd_printk(KERN_ERR "HDSPM: "
Adrian Knoth0dca1792011-01-26 19:32:14 +01006609 "unable to kmalloc Mixer memory of %d Bytes\n",
6610 (int)sizeof(struct hdspm_mixer));
Julia Lawallb17cbdd2012-08-19 09:02:54 +02006611 return -ENOMEM;
Takashi Iwai763f3562005-06-03 11:25:34 +02006612 }
6613
Adrian Knoth0dca1792011-01-26 19:32:14 +01006614 hdspm->port_names_in = NULL;
6615 hdspm->port_names_out = NULL;
6616
6617 switch (hdspm->io_type) {
6618 case AES32:
Adrian Knothd2d10a22011-02-28 15:14:47 +01006619 hdspm->ss_in_channels = hdspm->ss_out_channels = AES32_CHANNELS;
6620 hdspm->ds_in_channels = hdspm->ds_out_channels = AES32_CHANNELS;
6621 hdspm->qs_in_channels = hdspm->qs_out_channels = AES32_CHANNELS;
Adrian Knoth432d2502011-02-23 11:43:08 +01006622
6623 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6624 channel_map_aes32;
6625 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
6626 channel_map_aes32;
6627 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
6628 channel_map_aes32;
6629 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6630 texts_ports_aes32;
6631 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6632 texts_ports_aes32;
6633 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6634 texts_ports_aes32;
6635
Adrian Knothd2d10a22011-02-28 15:14:47 +01006636 hdspm->max_channels_out = hdspm->max_channels_in =
6637 AES32_CHANNELS;
Adrian Knoth432d2502011-02-23 11:43:08 +01006638 hdspm->port_names_in = hdspm->port_names_out =
6639 texts_ports_aes32;
6640 hdspm->channel_map_in = hdspm->channel_map_out =
6641 channel_map_aes32;
6642
Adrian Knoth0dca1792011-01-26 19:32:14 +01006643 break;
6644
6645 case MADI:
6646 case MADIface:
6647 hdspm->ss_in_channels = hdspm->ss_out_channels =
6648 MADI_SS_CHANNELS;
6649 hdspm->ds_in_channels = hdspm->ds_out_channels =
6650 MADI_DS_CHANNELS;
6651 hdspm->qs_in_channels = hdspm->qs_out_channels =
6652 MADI_QS_CHANNELS;
6653
6654 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6655 channel_map_unity_ss;
Adrian Knoth01e96072011-02-23 11:43:11 +01006656 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006657 channel_map_unity_ss;
Adrian Knoth01e96072011-02-23 11:43:11 +01006658 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
Adrian Knoth0dca1792011-01-26 19:32:14 +01006659 channel_map_unity_ss;
6660
6661 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6662 texts_ports_madi;
6663 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6664 texts_ports_madi;
6665 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6666 texts_ports_madi;
6667 break;
6668
6669 case AIO:
6670 if (0 == (hdspm_read(hdspm, HDSPM_statusRegister2) & HDSPM_s2_AEBI_D)) {
6671 snd_printk(KERN_INFO "HDSPM: AEB input board found, but not supported\n");
6672 }
6673
6674 hdspm->ss_in_channels = AIO_IN_SS_CHANNELS;
6675 hdspm->ds_in_channels = AIO_IN_DS_CHANNELS;
6676 hdspm->qs_in_channels = AIO_IN_QS_CHANNELS;
6677 hdspm->ss_out_channels = AIO_OUT_SS_CHANNELS;
6678 hdspm->ds_out_channels = AIO_OUT_DS_CHANNELS;
6679 hdspm->qs_out_channels = AIO_OUT_QS_CHANNELS;
6680
6681 hdspm->channel_map_out_ss = channel_map_aio_out_ss;
6682 hdspm->channel_map_out_ds = channel_map_aio_out_ds;
6683 hdspm->channel_map_out_qs = channel_map_aio_out_qs;
6684
6685 hdspm->channel_map_in_ss = channel_map_aio_in_ss;
6686 hdspm->channel_map_in_ds = channel_map_aio_in_ds;
6687 hdspm->channel_map_in_qs = channel_map_aio_in_qs;
6688
6689 hdspm->port_names_in_ss = texts_ports_aio_in_ss;
6690 hdspm->port_names_out_ss = texts_ports_aio_out_ss;
6691 hdspm->port_names_in_ds = texts_ports_aio_in_ds;
6692 hdspm->port_names_out_ds = texts_ports_aio_out_ds;
6693 hdspm->port_names_in_qs = texts_ports_aio_in_qs;
6694 hdspm->port_names_out_qs = texts_ports_aio_out_qs;
6695
6696 break;
6697
6698 case RayDAT:
6699 hdspm->ss_in_channels = hdspm->ss_out_channels =
6700 RAYDAT_SS_CHANNELS;
6701 hdspm->ds_in_channels = hdspm->ds_out_channels =
6702 RAYDAT_DS_CHANNELS;
6703 hdspm->qs_in_channels = hdspm->qs_out_channels =
6704 RAYDAT_QS_CHANNELS;
6705
6706 hdspm->max_channels_in = RAYDAT_SS_CHANNELS;
6707 hdspm->max_channels_out = RAYDAT_SS_CHANNELS;
6708
6709 hdspm->channel_map_in_ss = hdspm->channel_map_out_ss =
6710 channel_map_raydat_ss;
6711 hdspm->channel_map_in_ds = hdspm->channel_map_out_ds =
6712 channel_map_raydat_ds;
6713 hdspm->channel_map_in_qs = hdspm->channel_map_out_qs =
6714 channel_map_raydat_qs;
6715 hdspm->channel_map_in = hdspm->channel_map_out =
6716 channel_map_raydat_ss;
6717
6718 hdspm->port_names_in_ss = hdspm->port_names_out_ss =
6719 texts_ports_raydat_ss;
6720 hdspm->port_names_in_ds = hdspm->port_names_out_ds =
6721 texts_ports_raydat_ds;
6722 hdspm->port_names_in_qs = hdspm->port_names_out_qs =
6723 texts_ports_raydat_qs;
6724
6725
6726 break;
6727
6728 }
6729
6730 /* TCO detection */
6731 switch (hdspm->io_type) {
6732 case AIO:
6733 case RayDAT:
6734 if (hdspm_read(hdspm, HDSPM_statusRegister2) &
6735 HDSPM_s2_tco_detect) {
6736 hdspm->midiPorts++;
6737 hdspm->tco = kzalloc(sizeof(struct hdspm_tco),
6738 GFP_KERNEL);
6739 if (NULL != hdspm->tco) {
6740 hdspm_tco_write(hdspm);
6741 }
6742 snd_printk(KERN_INFO "HDSPM: AIO/RayDAT TCO module found\n");
6743 } else {
6744 hdspm->tco = NULL;
6745 }
6746 break;
6747
6748 case MADI:
6749 if (hdspm_read(hdspm, HDSPM_statusRegister) & HDSPM_tco_detect) {
6750 hdspm->midiPorts++;
6751 hdspm->tco = kzalloc(sizeof(struct hdspm_tco),
6752 GFP_KERNEL);
6753 if (NULL != hdspm->tco) {
6754 hdspm_tco_write(hdspm);
6755 }
6756 snd_printk(KERN_INFO "HDSPM: MADI TCO module found\n");
6757 } else {
6758 hdspm->tco = NULL;
6759 }
6760 break;
6761
6762 default:
6763 hdspm->tco = NULL;
6764 }
6765
6766 /* texts */
6767 switch (hdspm->io_type) {
6768 case AES32:
6769 if (hdspm->tco) {
6770 hdspm->texts_autosync = texts_autosync_aes_tco;
6771 hdspm->texts_autosync_items = 10;
6772 } else {
6773 hdspm->texts_autosync = texts_autosync_aes;
6774 hdspm->texts_autosync_items = 9;
6775 }
6776 break;
6777
6778 case MADI:
6779 if (hdspm->tco) {
6780 hdspm->texts_autosync = texts_autosync_madi_tco;
6781 hdspm->texts_autosync_items = 4;
6782 } else {
6783 hdspm->texts_autosync = texts_autosync_madi;
6784 hdspm->texts_autosync_items = 3;
6785 }
6786 break;
6787
6788 case MADIface:
6789
6790 break;
6791
6792 case RayDAT:
6793 if (hdspm->tco) {
6794 hdspm->texts_autosync = texts_autosync_raydat_tco;
6795 hdspm->texts_autosync_items = 9;
6796 } else {
6797 hdspm->texts_autosync = texts_autosync_raydat;
6798 hdspm->texts_autosync_items = 8;
6799 }
6800 break;
6801
6802 case AIO:
6803 if (hdspm->tco) {
6804 hdspm->texts_autosync = texts_autosync_aio_tco;
6805 hdspm->texts_autosync_items = 6;
6806 } else {
6807 hdspm->texts_autosync = texts_autosync_aio;
6808 hdspm->texts_autosync_items = 5;
6809 }
6810 break;
6811
6812 }
6813
6814 tasklet_init(&hdspm->midi_tasklet,
6815 hdspm_midi_tasklet, (unsigned long) hdspm);
Takashi Iwai763f3562005-06-03 11:25:34 +02006816
Adrian Knothf7de8ba2012-01-10 20:58:40 +01006817
6818 if (hdspm->io_type != MADIface) {
6819 hdspm->serial = (hdspm_read(hdspm,
6820 HDSPM_midiStatusIn0)>>8) & 0xFFFFFF;
6821 /* id contains either a user-provided value or the default
6822 * NULL. If it's the default, we're safe to
6823 * fill card->id with the serial number.
6824 *
6825 * If the serial number is 0xFFFFFF, then we're dealing with
6826 * an old PCI revision that comes without a sane number. In
6827 * this case, we don't set card->id to avoid collisions
6828 * when running with multiple cards.
6829 */
6830 if (NULL == id[hdspm->dev] && hdspm->serial != 0xFFFFFF) {
6831 sprintf(card->id, "HDSPMx%06x", hdspm->serial);
6832 snd_card_set_id(card, card->id);
6833 }
6834 }
6835
Takashi Iwai763f3562005-06-03 11:25:34 +02006836 snd_printdd("create alsa devices.\n");
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006837 err = snd_hdspm_create_alsa_devices(card, hdspm);
6838 if (err < 0)
Takashi Iwai763f3562005-06-03 11:25:34 +02006839 return err;
6840
6841 snd_hdspm_initialize_midi_flush(hdspm);
6842
6843 return 0;
6844}
6845
Adrian Knoth0dca1792011-01-26 19:32:14 +01006846
Takashi Iwai98274f02005-11-17 14:52:34 +01006847static int snd_hdspm_free(struct hdspm * hdspm)
Takashi Iwai763f3562005-06-03 11:25:34 +02006848{
6849
6850 if (hdspm->port) {
6851
6852 /* stop th audio, and cancel all interrupts */
6853 hdspm->control_register &=
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006854 ~(HDSPM_Start | HDSPM_AudioInterruptEnable |
Adrian Knoth0dca1792011-01-26 19:32:14 +01006855 HDSPM_Midi0InterruptEnable | HDSPM_Midi1InterruptEnable |
6856 HDSPM_Midi2InterruptEnable | HDSPM_Midi3InterruptEnable);
Takashi Iwai763f3562005-06-03 11:25:34 +02006857 hdspm_write(hdspm, HDSPM_controlRegister,
6858 hdspm->control_register);
6859 }
6860
6861 if (hdspm->irq >= 0)
6862 free_irq(hdspm->irq, (void *) hdspm);
6863
Jesper Juhlfc584222005-10-24 15:11:28 +02006864 kfree(hdspm->mixer);
Takashi Iwai763f3562005-06-03 11:25:34 +02006865
6866 if (hdspm->iobase)
6867 iounmap(hdspm->iobase);
6868
Takashi Iwai763f3562005-06-03 11:25:34 +02006869 if (hdspm->port)
6870 pci_release_regions(hdspm->pci);
6871
6872 pci_disable_device(hdspm->pci);
6873 return 0;
6874}
6875
Adrian Knoth0dca1792011-01-26 19:32:14 +01006876
Takashi Iwai98274f02005-11-17 14:52:34 +01006877static void snd_hdspm_card_free(struct snd_card *card)
Takashi Iwai763f3562005-06-03 11:25:34 +02006878{
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006879 struct hdspm *hdspm = card->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02006880
6881 if (hdspm)
6882 snd_hdspm_free(hdspm);
6883}
6884
Adrian Knoth0dca1792011-01-26 19:32:14 +01006885
Takashi Iwai763f3562005-06-03 11:25:34 +02006886static int __devinit snd_hdspm_probe(struct pci_dev *pci,
6887 const struct pci_device_id *pci_id)
6888{
6889 static int dev;
Takashi Iwai98274f02005-11-17 14:52:34 +01006890 struct hdspm *hdspm;
6891 struct snd_card *card;
Takashi Iwai763f3562005-06-03 11:25:34 +02006892 int err;
6893
6894 if (dev >= SNDRV_CARDS)
6895 return -ENODEV;
6896 if (!enable[dev]) {
6897 dev++;
6898 return -ENOENT;
6899 }
6900
Takashi Iwaie58de7b2008-12-28 16:44:30 +01006901 err = snd_card_create(index[dev], id[dev],
Adrian Knoth0dca1792011-01-26 19:32:14 +01006902 THIS_MODULE, sizeof(struct hdspm), &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +01006903 if (err < 0)
6904 return err;
Takashi Iwai763f3562005-06-03 11:25:34 +02006905
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006906 hdspm = card->private_data;
Takashi Iwai763f3562005-06-03 11:25:34 +02006907 card->private_free = snd_hdspm_card_free;
6908 hdspm->dev = dev;
6909 hdspm->pci = pci;
6910
Takashi Iwaic187c042007-02-19 15:27:33 +01006911 snd_card_set_dev(card, &pci->dev);
6912
Adrian Knoth0dca1792011-01-26 19:32:14 +01006913 err = snd_hdspm_create(card, hdspm);
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006914 if (err < 0) {
Takashi Iwai763f3562005-06-03 11:25:34 +02006915 snd_card_free(card);
6916 return err;
6917 }
6918
Adrian Knoth0dca1792011-01-26 19:32:14 +01006919 if (hdspm->io_type != MADIface) {
6920 sprintf(card->shortname, "%s_%x",
6921 hdspm->card_name,
Adrian Knoth7d53a632012-01-04 14:31:16 +01006922 hdspm->serial);
Adrian Knoth0dca1792011-01-26 19:32:14 +01006923 sprintf(card->longname, "%s S/N 0x%x at 0x%lx, irq %d",
6924 hdspm->card_name,
Adrian Knoth7d53a632012-01-04 14:31:16 +01006925 hdspm->serial,
Adrian Knoth0dca1792011-01-26 19:32:14 +01006926 hdspm->port, hdspm->irq);
6927 } else {
6928 sprintf(card->shortname, "%s", hdspm->card_name);
6929 sprintf(card->longname, "%s at 0x%lx, irq %d",
6930 hdspm->card_name, hdspm->port, hdspm->irq);
6931 }
Takashi Iwai763f3562005-06-03 11:25:34 +02006932
Takashi Iwaief5fa1a2007-07-27 16:52:46 +02006933 err = snd_card_register(card);
6934 if (err < 0) {
Takashi Iwai763f3562005-06-03 11:25:34 +02006935 snd_card_free(card);
6936 return err;
6937 }
6938
6939 pci_set_drvdata(pci, card);
6940
6941 dev++;
6942 return 0;
6943}
6944
6945static void __devexit snd_hdspm_remove(struct pci_dev *pci)
6946{
6947 snd_card_free(pci_get_drvdata(pci));
6948 pci_set_drvdata(pci, NULL);
6949}
6950
Takashi Iwaie9f66d92012-04-24 12:25:00 +02006951static struct pci_driver hdspm_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02006952 .name = KBUILD_MODNAME,
Takashi Iwai763f3562005-06-03 11:25:34 +02006953 .id_table = snd_hdspm_ids,
6954 .probe = snd_hdspm_probe,
6955 .remove = __devexit_p(snd_hdspm_remove),
6956};
6957
Takashi Iwaie9f66d92012-04-24 12:25:00 +02006958module_pci_driver(hdspm_driver);