2 * ALSA driver for RME Hammerfall DSP audio interface(s)
4 * Copyright (c) 2002 Paul Davis
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/interrupt.h>
27 #include <linux/pci.h>
28 #include <linux/firmware.h>
29 #include <linux/module.h>
30 #include <linux/math64.h>
31 #include <linux/vmalloc.h>
34 #include <sound/core.h>
35 #include <sound/control.h>
36 #include <sound/pcm.h>
37 #include <sound/info.h>
38 #include <sound/asoundef.h>
39 #include <sound/rawmidi.h>
40 #include <sound/hwdep.h>
41 #include <sound/initval.h>
42 #include <sound/hdsp.h>
44 #include <asm/byteorder.h>
45 #include <asm/current.h>
47 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
48 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
49 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
51 module_param_array(index, int, NULL, 0444);
52 MODULE_PARM_DESC(index, "Index value for RME Hammerfall DSP interface.");
53 module_param_array(id, charp, NULL, 0444);
54 MODULE_PARM_DESC(id, "ID string for RME Hammerfall DSP interface.");
55 module_param_array(enable, bool, NULL, 0444);
56 MODULE_PARM_DESC(enable, "Enable/disable specific Hammerfall DSP soundcards.");
57 MODULE_AUTHOR("Paul Davis <paul@linuxaudiosystems.com>, Marcus Andersson, Thomas Charbonnel <thomas@undata.org>");
58 MODULE_DESCRIPTION("RME Hammerfall DSP");
59 MODULE_LICENSE("GPL");
60 MODULE_SUPPORTED_DEVICE("{{RME Hammerfall-DSP},"
63 MODULE_FIRMWARE("rpm_firmware.bin");
64 MODULE_FIRMWARE("multiface_firmware.bin");
65 MODULE_FIRMWARE("multiface_firmware_rev11.bin");
66 MODULE_FIRMWARE("digiface_firmware.bin");
67 MODULE_FIRMWARE("digiface_firmware_rev11.bin");
69 #define HDSP_MAX_CHANNELS 26
70 #define HDSP_MAX_DS_CHANNELS 14
71 #define HDSP_MAX_QS_CHANNELS 8
72 #define DIGIFACE_SS_CHANNELS 26
73 #define DIGIFACE_DS_CHANNELS 14
74 #define MULTIFACE_SS_CHANNELS 18
75 #define MULTIFACE_DS_CHANNELS 14
76 #define H9652_SS_CHANNELS 26
77 #define H9652_DS_CHANNELS 14
78 /* This does not include possible Analog Extension Boards
79 AEBs are detected at card initialization
81 #define H9632_SS_CHANNELS 12
82 #define H9632_DS_CHANNELS 8
83 #define H9632_QS_CHANNELS 4
84 #define RPM_CHANNELS 6
86 /* Write registers. These are defined as byte-offsets from the iobase value.
88 #define HDSP_resetPointer 0
89 #define HDSP_freqReg 0
90 #define HDSP_outputBufferAddress 32
91 #define HDSP_inputBufferAddress 36
92 #define HDSP_controlRegister 64
93 #define HDSP_interruptConfirmation 96
94 #define HDSP_outputEnable 128
95 #define HDSP_control2Reg 256
96 #define HDSP_midiDataOut0 352
97 #define HDSP_midiDataOut1 356
98 #define HDSP_fifoData 368
99 #define HDSP_inputEnable 384
101 /* Read registers. These are defined as byte-offsets from the iobase value
104 #define HDSP_statusRegister 0
105 #define HDSP_timecode 128
106 #define HDSP_status2Register 192
107 #define HDSP_midiDataIn0 360
108 #define HDSP_midiDataIn1 364
109 #define HDSP_midiStatusOut0 384
110 #define HDSP_midiStatusOut1 388
111 #define HDSP_midiStatusIn0 392
112 #define HDSP_midiStatusIn1 396
113 #define HDSP_fifoStatus 400
115 /* the meters are regular i/o-mapped registers, but offset
116 considerably from the rest. the peak registers are reset
117 when read; the least-significant 4 bits are full-scale counters;
118 the actual peak value is in the most-significant 24 bits.
121 #define HDSP_playbackPeakLevel 4096 /* 26 * 32 bit values */
122 #define HDSP_inputPeakLevel 4224 /* 26 * 32 bit values */
123 #define HDSP_outputPeakLevel 4352 /* (26+2) * 32 bit values */
124 #define HDSP_playbackRmsLevel 4612 /* 26 * 64 bit values */
125 #define HDSP_inputRmsLevel 4868 /* 26 * 64 bit values */
128 /* This is for H9652 cards
129 Peak values are read downward from the base
130 Rms values are read upward
131 There are rms values for the outputs too
132 26*3 values are read in ss mode
133 14*3 in ds mode, with no gap between values
135 #define HDSP_9652_peakBase 7164
136 #define HDSP_9652_rmsBase 4096
138 /* c.f. the hdsp_9632_meters_t struct */
139 #define HDSP_9632_metersBase 4096
141 #define HDSP_IO_EXTENT 7168
143 /* control2 register bits */
145 #define HDSP_TMS 0x01
146 #define HDSP_TCK 0x02
147 #define HDSP_TDI 0x04
148 #define HDSP_JTAG 0x08
149 #define HDSP_PWDN 0x10
150 #define HDSP_PROGRAM 0x020
151 #define HDSP_CONFIG_MODE_0 0x040
152 #define HDSP_CONFIG_MODE_1 0x080
153 #define HDSP_VERSION_BIT (0x100 | HDSP_S_LOAD)
154 #define HDSP_BIGENDIAN_MODE 0x200
155 #define HDSP_RD_MULTIPLE 0x400
156 #define HDSP_9652_ENABLE_MIXER 0x800
157 #define HDSP_S200 0x800
158 #define HDSP_S300 (0x100 | HDSP_S200) /* dummy, purpose of 0x100 unknown */
159 #define HDSP_CYCLIC_MODE 0x1000
160 #define HDSP_TDO 0x10000000
162 #define HDSP_S_PROGRAM (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_0)
163 #define HDSP_S_LOAD (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_1)
165 /* Control Register bits */
167 #define HDSP_Start (1<<0) /* start engine */
168 #define HDSP_Latency0 (1<<1) /* buffer size = 2^n where n is defined by Latency{2,1,0} */
169 #define HDSP_Latency1 (1<<2) /* [ see above ] */
170 #define HDSP_Latency2 (1<<3) /* [ see above ] */
171 #define HDSP_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
172 #define HDSP_AudioInterruptEnable (1<<5) /* what do you think ? */
173 #define HDSP_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz/176.4kHz 1=48kHz/96kHz/192kHz */
174 #define HDSP_Frequency1 (1<<7) /* 0=32kHz/64kHz/128kHz */
175 #define HDSP_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
176 #define HDSP_SPDIFProfessional (1<<9) /* 0=consumer, 1=professional */
177 #define HDSP_SPDIFEmphasis (1<<10) /* 0=none, 1=on */
178 #define HDSP_SPDIFNonAudio (1<<11) /* 0=off, 1=on */
179 #define HDSP_SPDIFOpticalOut (1<<12) /* 1=use 1st ADAT connector for SPDIF, 0=do not */
180 #define HDSP_SyncRef2 (1<<13)
181 #define HDSP_SPDIFInputSelect0 (1<<14)
182 #define HDSP_SPDIFInputSelect1 (1<<15)
183 #define HDSP_SyncRef0 (1<<16)
184 #define HDSP_SyncRef1 (1<<17)
185 #define HDSP_AnalogExtensionBoard (1<<18) /* For H9632 cards */
186 #define HDSP_XLRBreakoutCable (1<<20) /* For H9632 cards */
187 #define HDSP_Midi0InterruptEnable (1<<22)
188 #define HDSP_Midi1InterruptEnable (1<<23)
189 #define HDSP_LineOut (1<<24)
190 #define HDSP_ADGain0 (1<<25) /* From here : H9632 specific */
191 #define HDSP_ADGain1 (1<<26)
192 #define HDSP_DAGain0 (1<<27)
193 #define HDSP_DAGain1 (1<<28)
194 #define HDSP_PhoneGain0 (1<<29)
195 #define HDSP_PhoneGain1 (1<<30)
196 #define HDSP_QuadSpeed (1<<31)
198 /* RPM uses some of the registers for special purposes */
199 #define HDSP_RPM_Inp12 0x04A00
200 #define HDSP_RPM_Inp12_Phon_6dB 0x00800 /* Dolby */
201 #define HDSP_RPM_Inp12_Phon_0dB 0x00000 /* .. */
202 #define HDSP_RPM_Inp12_Phon_n6dB 0x04000 /* inp_0 */
203 #define HDSP_RPM_Inp12_Line_0dB 0x04200 /* Dolby+PRO */
204 #define HDSP_RPM_Inp12_Line_n6dB 0x00200 /* PRO */
206 #define HDSP_RPM_Inp34 0x32000
207 #define HDSP_RPM_Inp34_Phon_6dB 0x20000 /* SyncRef1 */
208 #define HDSP_RPM_Inp34_Phon_0dB 0x00000 /* .. */
209 #define HDSP_RPM_Inp34_Phon_n6dB 0x02000 /* SyncRef2 */
210 #define HDSP_RPM_Inp34_Line_0dB 0x30000 /* SyncRef1+SyncRef0 */
211 #define HDSP_RPM_Inp34_Line_n6dB 0x10000 /* SyncRef0 */
213 #define HDSP_RPM_Bypass 0x01000
215 #define HDSP_RPM_Disconnect 0x00001
217 #define HDSP_ADGainMask (HDSP_ADGain0|HDSP_ADGain1)
218 #define HDSP_ADGainMinus10dBV HDSP_ADGainMask
219 #define HDSP_ADGainPlus4dBu (HDSP_ADGain0)
220 #define HDSP_ADGainLowGain 0
222 #define HDSP_DAGainMask (HDSP_DAGain0|HDSP_DAGain1)
223 #define HDSP_DAGainHighGain HDSP_DAGainMask
224 #define HDSP_DAGainPlus4dBu (HDSP_DAGain0)
225 #define HDSP_DAGainMinus10dBV 0
227 #define HDSP_PhoneGainMask (HDSP_PhoneGain0|HDSP_PhoneGain1)
228 #define HDSP_PhoneGain0dB HDSP_PhoneGainMask
229 #define HDSP_PhoneGainMinus6dB (HDSP_PhoneGain0)
230 #define HDSP_PhoneGainMinus12dB 0
232 #define HDSP_LatencyMask (HDSP_Latency0|HDSP_Latency1|HDSP_Latency2)
233 #define HDSP_FrequencyMask (HDSP_Frequency0|HDSP_Frequency1|HDSP_DoubleSpeed|HDSP_QuadSpeed)
235 #define HDSP_SPDIFInputMask (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
236 #define HDSP_SPDIFInputADAT1 0
237 #define HDSP_SPDIFInputCoaxial (HDSP_SPDIFInputSelect0)
238 #define HDSP_SPDIFInputCdrom (HDSP_SPDIFInputSelect1)
239 #define HDSP_SPDIFInputAES (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
241 #define HDSP_SyncRefMask (HDSP_SyncRef0|HDSP_SyncRef1|HDSP_SyncRef2)
242 #define HDSP_SyncRef_ADAT1 0
243 #define HDSP_SyncRef_ADAT2 (HDSP_SyncRef0)
244 #define HDSP_SyncRef_ADAT3 (HDSP_SyncRef1)
245 #define HDSP_SyncRef_SPDIF (HDSP_SyncRef0|HDSP_SyncRef1)
246 #define HDSP_SyncRef_WORD (HDSP_SyncRef2)
247 #define HDSP_SyncRef_ADAT_SYNC (HDSP_SyncRef0|HDSP_SyncRef2)
249 /* Sample Clock Sources */
251 #define HDSP_CLOCK_SOURCE_AUTOSYNC 0
252 #define HDSP_CLOCK_SOURCE_INTERNAL_32KHZ 1
253 #define HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
254 #define HDSP_CLOCK_SOURCE_INTERNAL_48KHZ 3
255 #define HDSP_CLOCK_SOURCE_INTERNAL_64KHZ 4
256 #define HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
257 #define HDSP_CLOCK_SOURCE_INTERNAL_96KHZ 6
258 #define HDSP_CLOCK_SOURCE_INTERNAL_128KHZ 7
259 #define HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
260 #define HDSP_CLOCK_SOURCE_INTERNAL_192KHZ 9
262 /* Preferred sync reference choices - used by "pref_sync_ref" control switch */
264 #define HDSP_SYNC_FROM_WORD 0
265 #define HDSP_SYNC_FROM_SPDIF 1
266 #define HDSP_SYNC_FROM_ADAT1 2
267 #define HDSP_SYNC_FROM_ADAT_SYNC 3
268 #define HDSP_SYNC_FROM_ADAT2 4
269 #define HDSP_SYNC_FROM_ADAT3 5
271 /* SyncCheck status */
273 #define HDSP_SYNC_CHECK_NO_LOCK 0
274 #define HDSP_SYNC_CHECK_LOCK 1
275 #define HDSP_SYNC_CHECK_SYNC 2
277 /* AutoSync references - used by "autosync_ref" control switch */
279 #define HDSP_AUTOSYNC_FROM_WORD 0
280 #define HDSP_AUTOSYNC_FROM_ADAT_SYNC 1
281 #define HDSP_AUTOSYNC_FROM_SPDIF 2
282 #define HDSP_AUTOSYNC_FROM_NONE 3
283 #define HDSP_AUTOSYNC_FROM_ADAT1 4
284 #define HDSP_AUTOSYNC_FROM_ADAT2 5
285 #define HDSP_AUTOSYNC_FROM_ADAT3 6
287 /* Possible sources of S/PDIF input */
289 #define HDSP_SPDIFIN_OPTICAL 0 /* optical (ADAT1) */
290 #define HDSP_SPDIFIN_COAXIAL 1 /* coaxial (RCA) */
291 #define HDSP_SPDIFIN_INTERNAL 2 /* internal (CDROM) */
292 #define HDSP_SPDIFIN_AES 3 /* xlr for H9632 (AES)*/
294 #define HDSP_Frequency32KHz HDSP_Frequency0
295 #define HDSP_Frequency44_1KHz HDSP_Frequency1
296 #define HDSP_Frequency48KHz (HDSP_Frequency1|HDSP_Frequency0)
297 #define HDSP_Frequency64KHz (HDSP_DoubleSpeed|HDSP_Frequency0)
298 #define HDSP_Frequency88_2KHz (HDSP_DoubleSpeed|HDSP_Frequency1)
299 #define HDSP_Frequency96KHz (HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
300 /* For H9632 cards */
301 #define HDSP_Frequency128KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency0)
302 #define HDSP_Frequency176_4KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1)
303 #define HDSP_Frequency192KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
304 /* RME says n = 104857600000000, but in the windows MADI driver, I see:
305 return 104857600000000 / rate; // 100 MHz
306 return 110100480000000 / rate; // 105 MHz
308 #define DDS_NUMERATOR 104857600000000ULL; /* = 2^20 * 10^8 */
310 #define hdsp_encode_latency(x) (((x)<<1) & HDSP_LatencyMask)
311 #define hdsp_decode_latency(x) (((x) & HDSP_LatencyMask)>>1)
313 #define hdsp_encode_spdif_in(x) (((x)&0x3)<<14)
314 #define hdsp_decode_spdif_in(x) (((x)>>14)&0x3)
316 /* Status Register bits */
318 #define HDSP_audioIRQPending (1<<0)
319 #define HDSP_Lock2 (1<<1) /* this is for Digiface and H9652 */
320 #define HDSP_spdifFrequency3 HDSP_Lock2 /* this is for H9632 only */
321 #define HDSP_Lock1 (1<<2)
322 #define HDSP_Lock0 (1<<3)
323 #define HDSP_SPDIFSync (1<<4)
324 #define HDSP_TimecodeLock (1<<5)
325 #define HDSP_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
326 #define HDSP_Sync2 (1<<16)
327 #define HDSP_Sync1 (1<<17)
328 #define HDSP_Sync0 (1<<18)
329 #define HDSP_DoubleSpeedStatus (1<<19)
330 #define HDSP_ConfigError (1<<20)
331 #define HDSP_DllError (1<<21)
332 #define HDSP_spdifFrequency0 (1<<22)
333 #define HDSP_spdifFrequency1 (1<<23)
334 #define HDSP_spdifFrequency2 (1<<24)
335 #define HDSP_SPDIFErrorFlag (1<<25)
336 #define HDSP_BufferID (1<<26)
337 #define HDSP_TimecodeSync (1<<27)
338 #define HDSP_AEBO (1<<28) /* H9632 specific Analog Extension Boards */
339 #define HDSP_AEBI (1<<29) /* 0 = present, 1 = absent */
340 #define HDSP_midi0IRQPending (1<<30)
341 #define HDSP_midi1IRQPending (1<<31)
343 #define HDSP_spdifFrequencyMask (HDSP_spdifFrequency0|HDSP_spdifFrequency1|HDSP_spdifFrequency2)
344 #define HDSP_spdifFrequencyMask_9632 (HDSP_spdifFrequency0|\
345 HDSP_spdifFrequency1|\
346 HDSP_spdifFrequency2|\
347 HDSP_spdifFrequency3)
349 #define HDSP_spdifFrequency32KHz (HDSP_spdifFrequency0)
350 #define HDSP_spdifFrequency44_1KHz (HDSP_spdifFrequency1)
351 #define HDSP_spdifFrequency48KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency1)
353 #define HDSP_spdifFrequency64KHz (HDSP_spdifFrequency2)
354 #define HDSP_spdifFrequency88_2KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency2)
355 #define HDSP_spdifFrequency96KHz (HDSP_spdifFrequency2|HDSP_spdifFrequency1)
357 /* This is for H9632 cards */
358 #define HDSP_spdifFrequency128KHz (HDSP_spdifFrequency0|\
359 HDSP_spdifFrequency1|\
360 HDSP_spdifFrequency2)
361 #define HDSP_spdifFrequency176_4KHz HDSP_spdifFrequency3
362 #define HDSP_spdifFrequency192KHz (HDSP_spdifFrequency3|HDSP_spdifFrequency0)
364 /* Status2 Register bits */
366 #define HDSP_version0 (1<<0)
367 #define HDSP_version1 (1<<1)
368 #define HDSP_version2 (1<<2)
369 #define HDSP_wc_lock (1<<3)
370 #define HDSP_wc_sync (1<<4)
371 #define HDSP_inp_freq0 (1<<5)
372 #define HDSP_inp_freq1 (1<<6)
373 #define HDSP_inp_freq2 (1<<7)
374 #define HDSP_SelSyncRef0 (1<<8)
375 #define HDSP_SelSyncRef1 (1<<9)
376 #define HDSP_SelSyncRef2 (1<<10)
378 #define HDSP_wc_valid (HDSP_wc_lock|HDSP_wc_sync)
380 #define HDSP_systemFrequencyMask (HDSP_inp_freq0|HDSP_inp_freq1|HDSP_inp_freq2)
381 #define HDSP_systemFrequency32 (HDSP_inp_freq0)
382 #define HDSP_systemFrequency44_1 (HDSP_inp_freq1)
383 #define HDSP_systemFrequency48 (HDSP_inp_freq0|HDSP_inp_freq1)
384 #define HDSP_systemFrequency64 (HDSP_inp_freq2)
385 #define HDSP_systemFrequency88_2 (HDSP_inp_freq0|HDSP_inp_freq2)
386 #define HDSP_systemFrequency96 (HDSP_inp_freq1|HDSP_inp_freq2)
387 /* FIXME : more values for 9632 cards ? */
389 #define HDSP_SelSyncRefMask (HDSP_SelSyncRef0|HDSP_SelSyncRef1|HDSP_SelSyncRef2)
390 #define HDSP_SelSyncRef_ADAT1 0
391 #define HDSP_SelSyncRef_ADAT2 (HDSP_SelSyncRef0)
392 #define HDSP_SelSyncRef_ADAT3 (HDSP_SelSyncRef1)
393 #define HDSP_SelSyncRef_SPDIF (HDSP_SelSyncRef0|HDSP_SelSyncRef1)
394 #define HDSP_SelSyncRef_WORD (HDSP_SelSyncRef2)
395 #define HDSP_SelSyncRef_ADAT_SYNC (HDSP_SelSyncRef0|HDSP_SelSyncRef2)
397 /* Card state flags */
399 #define HDSP_InitializationComplete (1<<0)
400 #define HDSP_FirmwareLoaded (1<<1)
401 #define HDSP_FirmwareCached (1<<2)
403 /* FIFO wait times, defined in terms of 1/10ths of msecs */
405 #define HDSP_LONG_WAIT 5000
406 #define HDSP_SHORT_WAIT 30
408 #define UNITY_GAIN 32768
409 #define MINUS_INFINITY_GAIN 0
411 /* the size of a substream (1 mono data stream) */
413 #define HDSP_CHANNEL_BUFFER_SAMPLES (16*1024)
414 #define HDSP_CHANNEL_BUFFER_BYTES (4*HDSP_CHANNEL_BUFFER_SAMPLES)
416 /* the size of the area we need to allocate for DMA transfers. the
417 size is the same regardless of the number of channels - the
418 Multiface still uses the same memory area.
420 Note that we allocate 1 more channel than is apparently needed
421 because the h/w seems to write 1 byte beyond the end of the last
425 #define HDSP_DMA_AREA_BYTES ((HDSP_MAX_CHANNELS+1) * HDSP_CHANNEL_BUFFER_BYTES)
426 #define HDSP_DMA_AREA_KILOBYTES (HDSP_DMA_AREA_BYTES/1024)
428 #define HDSP_FIRMWARE_SIZE (24413 * 4)
430 struct hdsp_9632_meters {
432 u32 playback_peak[16];
436 u32 input_rms_low[16];
437 u32 playback_rms_low[16];
438 u32 output_rms_low[16];
440 u32 input_rms_high[16];
441 u32 playback_rms_high[16];
442 u32 output_rms_high[16];
443 u32 xxx_rms_high[16];
449 struct snd_rawmidi *rmidi;
450 struct snd_rawmidi_substream *input;
451 struct snd_rawmidi_substream *output;
452 char istimer; /* timer in use */
453 struct timer_list timer;
460 struct snd_pcm_substream *capture_substream;
461 struct snd_pcm_substream *playback_substream;
462 struct hdsp_midi midi[2];
463 struct tasklet_struct midi_tasklet;
464 int use_midi_tasklet;
466 u32 control_register; /* cached value */
467 u32 control2_register; /* cached value */
469 u32 creg_spdif_stream;
470 int clock_source_locked;
471 char *card_name; /* digiface/multiface/rpm */
472 enum HDSP_IO_Type io_type; /* ditto, but for code use */
473 unsigned short firmware_rev;
474 unsigned short state; /* stores state bits */
475 const struct firmware *firmware;
477 size_t period_bytes; /* guess what this is */
478 unsigned char max_channels;
479 unsigned char qs_in_channels; /* quad speed mode for H9632 */
480 unsigned char ds_in_channels;
481 unsigned char ss_in_channels; /* different for multiface/digiface */
482 unsigned char qs_out_channels;
483 unsigned char ds_out_channels;
484 unsigned char ss_out_channels;
486 struct snd_dma_buffer capture_dma_buf;
487 struct snd_dma_buffer playback_dma_buf;
488 unsigned char *capture_buffer; /* suitably aligned address */
489 unsigned char *playback_buffer; /* suitably aligned address */
494 int system_sample_rate;
499 void __iomem *iobase;
500 struct snd_card *card;
502 struct snd_hwdep *hwdep;
504 struct snd_kcontrol *spdif_ctl;
505 unsigned short mixer_matrix[HDSP_MATRIX_MIXER_SIZE];
506 unsigned int dds_value; /* last value written to freq register */
509 /* These tables map the ALSA channels 1..N to the channels that we
510 need to use in order to find the relevant channel buffer. RME
511 refer to this kind of mapping as between "the ADAT channel and
512 the DMA channel." We index it using the logical audio channel,
513 and the value is the DMA channel (i.e. channel buffer number)
514 where the data for that channel can be read/written from/to.
517 static char channel_map_df_ss[HDSP_MAX_CHANNELS] = {
518 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
519 18, 19, 20, 21, 22, 23, 24, 25
522 static char channel_map_mf_ss[HDSP_MAX_CHANNELS] = { /* Multiface */
524 0, 1, 2, 3, 4, 5, 6, 7,
526 16, 17, 18, 19, 20, 21, 22, 23,
529 -1, -1, -1, -1, -1, -1, -1, -1
532 static char channel_map_ds[HDSP_MAX_CHANNELS] = {
533 /* ADAT channels are remapped */
534 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23,
535 /* channels 12 and 13 are S/PDIF */
537 /* others don't exist */
538 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
541 static char channel_map_H9632_ss[HDSP_MAX_CHANNELS] = {
543 0, 1, 2, 3, 4, 5, 6, 7,
548 /* AO4S-192 and AI4S-192 extension boards */
550 /* others don't exist */
551 -1, -1, -1, -1, -1, -1, -1, -1,
555 static char channel_map_H9632_ds[HDSP_MAX_CHANNELS] = {
562 /* AO4S-192 and AI4S-192 extension boards */
564 /* others don't exist */
565 -1, -1, -1, -1, -1, -1, -1, -1,
566 -1, -1, -1, -1, -1, -1
569 static char channel_map_H9632_qs[HDSP_MAX_CHANNELS] = {
570 /* ADAT is disabled in this mode */
575 /* AO4S-192 and AI4S-192 extension boards */
577 /* others don't exist */
578 -1, -1, -1, -1, -1, -1, -1, -1,
579 -1, -1, -1, -1, -1, -1, -1, -1,
583 static int snd_hammerfall_get_buffer(struct pci_dev *pci, struct snd_dma_buffer *dmab, size_t size)
585 dmab->dev.type = SNDRV_DMA_TYPE_DEV;
586 dmab->dev.dev = snd_dma_pci_data(pci);
587 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
593 static void snd_hammerfall_free_buffer(struct snd_dma_buffer *dmab, struct pci_dev *pci)
596 snd_dma_free_pages(dmab);
600 static const struct pci_device_id snd_hdsp_ids[] = {
602 .vendor = PCI_VENDOR_ID_XILINX,
603 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP,
604 .subvendor = PCI_ANY_ID,
605 .subdevice = PCI_ANY_ID,
606 }, /* RME Hammerfall-DSP */
610 MODULE_DEVICE_TABLE(pci, snd_hdsp_ids);
613 static int snd_hdsp_create_alsa_devices(struct snd_card *card, struct hdsp *hdsp);
614 static int snd_hdsp_create_pcm(struct snd_card *card, struct hdsp *hdsp);
615 static int snd_hdsp_enable_io (struct hdsp *hdsp);
616 static void snd_hdsp_initialize_midi_flush (struct hdsp *hdsp);
617 static void snd_hdsp_initialize_channels (struct hdsp *hdsp);
618 static int hdsp_fifo_wait(struct hdsp *hdsp, int count, int timeout);
619 static int hdsp_autosync_ref(struct hdsp *hdsp);
620 static int snd_hdsp_set_defaults(struct hdsp *hdsp);
621 static void snd_hdsp_9652_enable_mixer (struct hdsp *hdsp);
623 static int hdsp_playback_to_output_key (struct hdsp *hdsp, int in, int out)
625 switch (hdsp->io_type) {
630 if (hdsp->firmware_rev == 0xa)
631 return (64 * out) + (32 + (in));
633 return (52 * out) + (26 + (in));
635 return (32 * out) + (16 + (in));
637 return (52 * out) + (26 + (in));
641 static int hdsp_input_to_output_key (struct hdsp *hdsp, int in, int out)
643 switch (hdsp->io_type) {
648 if (hdsp->firmware_rev == 0xa)
649 return (64 * out) + in;
651 return (52 * out) + in;
653 return (32 * out) + in;
655 return (52 * out) + in;
659 static void hdsp_write(struct hdsp *hdsp, int reg, int val)
661 writel(val, hdsp->iobase + reg);
664 static unsigned int hdsp_read(struct hdsp *hdsp, int reg)
666 return readl (hdsp->iobase + reg);
669 static int hdsp_check_for_iobox (struct hdsp *hdsp)
673 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return 0;
674 for (i = 0; i < 500; i++) {
675 if (0 == (hdsp_read(hdsp, HDSP_statusRegister) &
678 dev_dbg(hdsp->card->dev,
679 "IO box found after %d ms\n",
686 dev_err(hdsp->card->dev, "no IO box connected!\n");
687 hdsp->state &= ~HDSP_FirmwareLoaded;
691 static int hdsp_wait_for_iobox(struct hdsp *hdsp, unsigned int loops,
696 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
699 for (i = 0; i != loops; ++i) {
700 if (hdsp_read(hdsp, HDSP_statusRegister) & HDSP_ConfigError)
703 dev_dbg(hdsp->card->dev, "iobox found after %ums!\n",
709 dev_info(hdsp->card->dev, "no IO box connected!\n");
710 hdsp->state &= ~HDSP_FirmwareLoaded;
714 static int snd_hdsp_load_firmware_from_cache(struct hdsp *hdsp) {
720 if (hdsp->fw_uploaded)
721 cache = hdsp->fw_uploaded;
725 cache = (u32 *)hdsp->firmware->data;
730 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
732 dev_info(hdsp->card->dev, "loading firmware\n");
734 hdsp_write (hdsp, HDSP_control2Reg, HDSP_S_PROGRAM);
735 hdsp_write (hdsp, HDSP_fifoData, 0);
737 if (hdsp_fifo_wait (hdsp, 0, HDSP_LONG_WAIT)) {
738 dev_info(hdsp->card->dev,
739 "timeout waiting for download preparation\n");
740 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
744 hdsp_write (hdsp, HDSP_control2Reg, HDSP_S_LOAD);
746 for (i = 0; i < HDSP_FIRMWARE_SIZE / 4; ++i) {
747 hdsp_write(hdsp, HDSP_fifoData, cache[i]);
748 if (hdsp_fifo_wait (hdsp, 127, HDSP_LONG_WAIT)) {
749 dev_info(hdsp->card->dev,
750 "timeout during firmware loading\n");
751 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
756 hdsp_fifo_wait(hdsp, 3, HDSP_LONG_WAIT);
757 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
760 #ifdef SNDRV_BIG_ENDIAN
761 hdsp->control2_register = HDSP_BIGENDIAN_MODE;
763 hdsp->control2_register = 0;
765 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
766 dev_info(hdsp->card->dev, "finished firmware loading\n");
769 if (hdsp->state & HDSP_InitializationComplete) {
770 dev_info(hdsp->card->dev,
771 "firmware loaded from cache, restoring defaults\n");
772 spin_lock_irqsave(&hdsp->lock, flags);
773 snd_hdsp_set_defaults(hdsp);
774 spin_unlock_irqrestore(&hdsp->lock, flags);
777 hdsp->state |= HDSP_FirmwareLoaded;
782 static int hdsp_get_iobox_version (struct hdsp *hdsp)
784 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
786 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
787 hdsp_write(hdsp, HDSP_fifoData, 0);
789 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0) {
790 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
791 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
794 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200 | HDSP_PROGRAM);
795 hdsp_write (hdsp, HDSP_fifoData, 0);
796 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0) {
797 hdsp->io_type = Multiface;
798 dev_info(hdsp->card->dev, "Multiface found\n");
802 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
803 hdsp_write(hdsp, HDSP_fifoData, 0);
804 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) == 0) {
805 hdsp->io_type = Digiface;
806 dev_info(hdsp->card->dev, "Digiface found\n");
810 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
811 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
812 hdsp_write(hdsp, HDSP_fifoData, 0);
813 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) == 0) {
814 hdsp->io_type = Multiface;
815 dev_info(hdsp->card->dev, "Multiface found\n");
819 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
820 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
821 hdsp_write(hdsp, HDSP_fifoData, 0);
822 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0) {
823 hdsp->io_type = Multiface;
824 dev_info(hdsp->card->dev, "Multiface found\n");
829 dev_info(hdsp->card->dev, "RPM found\n");
832 /* firmware was already loaded, get iobox type */
833 if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version2)
835 else if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version1)
836 hdsp->io_type = Multiface;
838 hdsp->io_type = Digiface;
844 static int hdsp_request_fw_loader(struct hdsp *hdsp);
846 static int hdsp_check_for_firmware (struct hdsp *hdsp, int load_on_demand)
848 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
850 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
851 hdsp->state &= ~HDSP_FirmwareLoaded;
852 if (! load_on_demand)
854 dev_err(hdsp->card->dev, "firmware not present.\n");
855 /* try to load firmware */
856 if (! (hdsp->state & HDSP_FirmwareCached)) {
857 if (! hdsp_request_fw_loader(hdsp))
859 dev_err(hdsp->card->dev,
860 "No firmware loaded nor cached, please upload firmware.\n");
863 if (snd_hdsp_load_firmware_from_cache(hdsp) != 0) {
864 dev_err(hdsp->card->dev,
865 "Firmware loading from cache failed, please upload manually.\n");
873 static int hdsp_fifo_wait(struct hdsp *hdsp, int count, int timeout)
877 /* the fifoStatus registers reports on how many words
878 are available in the command FIFO.
881 for (i = 0; i < timeout; i++) {
883 if ((int)(hdsp_read (hdsp, HDSP_fifoStatus) & 0xff) <= count)
886 /* not very friendly, but we only do this during a firmware
887 load and changing the mixer, so we just put up with it.
893 dev_warn(hdsp->card->dev,
894 "wait for FIFO status <= %d failed after %d iterations\n",
899 static int hdsp_read_gain (struct hdsp *hdsp, unsigned int addr)
901 if (addr >= HDSP_MATRIX_MIXER_SIZE)
904 return hdsp->mixer_matrix[addr];
907 static int hdsp_write_gain(struct hdsp *hdsp, unsigned int addr, unsigned short data)
911 if (addr >= HDSP_MATRIX_MIXER_SIZE)
914 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) {
916 /* from martin bjornsen:
918 "You can only write dwords to the
919 mixer memory which contain two
920 mixer values in the low and high
921 word. So if you want to change
922 value 0 you have to read value 1
923 from the cache and write both to
924 the first dword in the mixer
928 if (hdsp->io_type == H9632 && addr >= 512)
931 if (hdsp->io_type == H9652 && addr >= 1352)
934 hdsp->mixer_matrix[addr] = data;
937 /* `addr' addresses a 16-bit wide address, but
938 the address space accessed via hdsp_write
939 uses byte offsets. put another way, addr
940 varies from 0 to 1351, but to access the
941 corresponding memory location, we need
942 to access 0 to 2703 ...
946 hdsp_write (hdsp, 4096 + (ad*4),
947 (hdsp->mixer_matrix[(addr&0x7fe)+1] << 16) +
948 hdsp->mixer_matrix[addr&0x7fe]);
954 ad = (addr << 16) + data;
956 if (hdsp_fifo_wait(hdsp, 127, HDSP_LONG_WAIT))
959 hdsp_write (hdsp, HDSP_fifoData, ad);
960 hdsp->mixer_matrix[addr] = data;
967 static int snd_hdsp_use_is_exclusive(struct hdsp *hdsp)
972 spin_lock_irqsave(&hdsp->lock, flags);
973 if ((hdsp->playback_pid != hdsp->capture_pid) &&
974 (hdsp->playback_pid >= 0) && (hdsp->capture_pid >= 0))
976 spin_unlock_irqrestore(&hdsp->lock, flags);
980 static int hdsp_spdif_sample_rate(struct hdsp *hdsp)
982 unsigned int status = hdsp_read(hdsp, HDSP_statusRegister);
983 unsigned int rate_bits = (status & HDSP_spdifFrequencyMask);
985 /* For the 9632, the mask is different */
986 if (hdsp->io_type == H9632)
987 rate_bits = (status & HDSP_spdifFrequencyMask_9632);
989 if (status & HDSP_SPDIFErrorFlag)
993 case HDSP_spdifFrequency32KHz: return 32000;
994 case HDSP_spdifFrequency44_1KHz: return 44100;
995 case HDSP_spdifFrequency48KHz: return 48000;
996 case HDSP_spdifFrequency64KHz: return 64000;
997 case HDSP_spdifFrequency88_2KHz: return 88200;
998 case HDSP_spdifFrequency96KHz: return 96000;
999 case HDSP_spdifFrequency128KHz:
1000 if (hdsp->io_type == H9632) return 128000;
1002 case HDSP_spdifFrequency176_4KHz:
1003 if (hdsp->io_type == H9632) return 176400;
1005 case HDSP_spdifFrequency192KHz:
1006 if (hdsp->io_type == H9632) return 192000;
1011 dev_warn(hdsp->card->dev,
1012 "unknown spdif frequency status; bits = 0x%x, status = 0x%x\n",
1017 static int hdsp_external_sample_rate(struct hdsp *hdsp)
1019 unsigned int status2 = hdsp_read(hdsp, HDSP_status2Register);
1020 unsigned int rate_bits = status2 & HDSP_systemFrequencyMask;
1022 /* For the 9632 card, there seems to be no bit for indicating external
1023 * sample rate greater than 96kHz. The card reports the corresponding
1024 * single speed. So the best means seems to get spdif rate when
1025 * autosync reference is spdif */
1026 if (hdsp->io_type == H9632 &&
1027 hdsp_autosync_ref(hdsp) == HDSP_AUTOSYNC_FROM_SPDIF)
1028 return hdsp_spdif_sample_rate(hdsp);
1030 switch (rate_bits) {
1031 case HDSP_systemFrequency32: return 32000;
1032 case HDSP_systemFrequency44_1: return 44100;
1033 case HDSP_systemFrequency48: return 48000;
1034 case HDSP_systemFrequency64: return 64000;
1035 case HDSP_systemFrequency88_2: return 88200;
1036 case HDSP_systemFrequency96: return 96000;
1042 static void hdsp_compute_period_size(struct hdsp *hdsp)
1044 hdsp->period_bytes = 1 << ((hdsp_decode_latency(hdsp->control_register) + 8));
1047 static snd_pcm_uframes_t hdsp_hw_pointer(struct hdsp *hdsp)
1051 position = hdsp_read(hdsp, HDSP_statusRegister);
1053 if (!hdsp->precise_ptr)
1054 return (position & HDSP_BufferID) ? (hdsp->period_bytes / 4) : 0;
1056 position &= HDSP_BufferPositionMask;
1058 position &= (hdsp->period_bytes/2) - 1;
1062 static void hdsp_reset_hw_pointer(struct hdsp *hdsp)
1064 hdsp_write (hdsp, HDSP_resetPointer, 0);
1065 if (hdsp->io_type == H9632 && hdsp->firmware_rev >= 152)
1066 /* HDSP_resetPointer = HDSP_freqReg, which is strange and
1067 * requires (?) to write again DDS value after a reset pointer
1068 * (at least, it works like this) */
1069 hdsp_write (hdsp, HDSP_freqReg, hdsp->dds_value);
1072 static void hdsp_start_audio(struct hdsp *s)
1074 s->control_register |= (HDSP_AudioInterruptEnable | HDSP_Start);
1075 hdsp_write(s, HDSP_controlRegister, s->control_register);
1078 static void hdsp_stop_audio(struct hdsp *s)
1080 s->control_register &= ~(HDSP_Start | HDSP_AudioInterruptEnable);
1081 hdsp_write(s, HDSP_controlRegister, s->control_register);
1084 static void hdsp_silence_playback(struct hdsp *hdsp)
1086 memset(hdsp->playback_buffer, 0, HDSP_DMA_AREA_BYTES);
1089 static int hdsp_set_interrupt_interval(struct hdsp *s, unsigned int frames)
1093 spin_lock_irq(&s->lock);
1102 s->control_register &= ~HDSP_LatencyMask;
1103 s->control_register |= hdsp_encode_latency(n);
1105 hdsp_write(s, HDSP_controlRegister, s->control_register);
1107 hdsp_compute_period_size(s);
1109 spin_unlock_irq(&s->lock);
1114 static void hdsp_set_dds_value(struct hdsp *hdsp, int rate)
1120 else if (rate >= 56000)
1124 n = div_u64(n, rate);
1125 /* n should be less than 2^32 for being written to FREQ register */
1126 snd_BUG_ON(n >> 32);
1127 /* HDSP_freqReg and HDSP_resetPointer are the same, so keep the DDS
1128 value to write it after a reset */
1129 hdsp->dds_value = n;
1130 hdsp_write(hdsp, HDSP_freqReg, hdsp->dds_value);
1133 static int hdsp_set_rate(struct hdsp *hdsp, int rate, int called_internally)
1135 int reject_if_open = 0;
1139 /* ASSUMPTION: hdsp->lock is either held, or
1140 there is no need for it (e.g. during module
1144 if (!(hdsp->control_register & HDSP_ClockModeMaster)) {
1145 if (called_internally) {
1146 /* request from ctl or card initialization */
1147 dev_err(hdsp->card->dev,
1148 "device is not running as a clock master: cannot set sample rate.\n");
1151 /* hw_param request while in AutoSync mode */
1152 int external_freq = hdsp_external_sample_rate(hdsp);
1153 int spdif_freq = hdsp_spdif_sample_rate(hdsp);
1155 if ((spdif_freq == external_freq*2) && (hdsp_autosync_ref(hdsp) >= HDSP_AUTOSYNC_FROM_ADAT1))
1156 dev_info(hdsp->card->dev,
1157 "Detected ADAT in double speed mode\n");
1158 else if (hdsp->io_type == H9632 && (spdif_freq == external_freq*4) && (hdsp_autosync_ref(hdsp) >= HDSP_AUTOSYNC_FROM_ADAT1))
1159 dev_info(hdsp->card->dev,
1160 "Detected ADAT in quad speed mode\n");
1161 else if (rate != external_freq) {
1162 dev_info(hdsp->card->dev,
1163 "No AutoSync source for requested rate\n");
1169 current_rate = hdsp->system_sample_rate;
1171 /* Changing from a "single speed" to a "double speed" rate is
1172 not allowed if any substreams are open. This is because
1173 such a change causes a shift in the location of
1174 the DMA buffers and a reduction in the number of available
1177 Note that a similar but essentially insoluble problem
1178 exists for externally-driven rate changes. All we can do
1179 is to flag rate changes in the read/write routines. */
1181 if (rate > 96000 && hdsp->io_type != H9632)
1186 if (current_rate > 48000)
1188 rate_bits = HDSP_Frequency32KHz;
1191 if (current_rate > 48000)
1193 rate_bits = HDSP_Frequency44_1KHz;
1196 if (current_rate > 48000)
1198 rate_bits = HDSP_Frequency48KHz;
1201 if (current_rate <= 48000 || current_rate > 96000)
1203 rate_bits = HDSP_Frequency64KHz;
1206 if (current_rate <= 48000 || current_rate > 96000)
1208 rate_bits = HDSP_Frequency88_2KHz;
1211 if (current_rate <= 48000 || current_rate > 96000)
1213 rate_bits = HDSP_Frequency96KHz;
1216 if (current_rate < 128000)
1218 rate_bits = HDSP_Frequency128KHz;
1221 if (current_rate < 128000)
1223 rate_bits = HDSP_Frequency176_4KHz;
1226 if (current_rate < 128000)
1228 rate_bits = HDSP_Frequency192KHz;
1234 if (reject_if_open && (hdsp->capture_pid >= 0 || hdsp->playback_pid >= 0)) {
1235 dev_warn(hdsp->card->dev,
1236 "cannot change speed mode (capture PID = %d, playback PID = %d)\n",
1238 hdsp->playback_pid);
1242 hdsp->control_register &= ~HDSP_FrequencyMask;
1243 hdsp->control_register |= rate_bits;
1244 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1246 /* For HDSP9632 rev 152, need to set DDS value in FREQ register */
1247 if (hdsp->io_type == H9632 && hdsp->firmware_rev >= 152)
1248 hdsp_set_dds_value(hdsp, rate);
1250 if (rate >= 128000) {
1251 hdsp->channel_map = channel_map_H9632_qs;
1252 } else if (rate > 48000) {
1253 if (hdsp->io_type == H9632)
1254 hdsp->channel_map = channel_map_H9632_ds;
1256 hdsp->channel_map = channel_map_ds;
1258 switch (hdsp->io_type) {
1261 hdsp->channel_map = channel_map_mf_ss;
1265 hdsp->channel_map = channel_map_df_ss;
1268 hdsp->channel_map = channel_map_H9632_ss;
1271 /* should never happen */
1276 hdsp->system_sample_rate = rate;
1281 /*----------------------------------------------------------------------------
1283 ----------------------------------------------------------------------------*/
1285 static unsigned char snd_hdsp_midi_read_byte (struct hdsp *hdsp, int id)
1287 /* the hardware already does the relevant bit-mask with 0xff */
1289 return hdsp_read(hdsp, HDSP_midiDataIn1);
1291 return hdsp_read(hdsp, HDSP_midiDataIn0);
1294 static void snd_hdsp_midi_write_byte (struct hdsp *hdsp, int id, int val)
1296 /* the hardware already does the relevant bit-mask with 0xff */
1298 hdsp_write(hdsp, HDSP_midiDataOut1, val);
1300 hdsp_write(hdsp, HDSP_midiDataOut0, val);
1303 static int snd_hdsp_midi_input_available (struct hdsp *hdsp, int id)
1306 return (hdsp_read(hdsp, HDSP_midiStatusIn1) & 0xff);
1308 return (hdsp_read(hdsp, HDSP_midiStatusIn0) & 0xff);
1311 static int snd_hdsp_midi_output_possible (struct hdsp *hdsp, int id)
1313 int fifo_bytes_used;
1316 fifo_bytes_used = hdsp_read(hdsp, HDSP_midiStatusOut1) & 0xff;
1318 fifo_bytes_used = hdsp_read(hdsp, HDSP_midiStatusOut0) & 0xff;
1320 if (fifo_bytes_used < 128)
1321 return 128 - fifo_bytes_used;
1326 static void snd_hdsp_flush_midi_input (struct hdsp *hdsp, int id)
1328 while (snd_hdsp_midi_input_available (hdsp, id))
1329 snd_hdsp_midi_read_byte (hdsp, id);
1332 static int snd_hdsp_midi_output_write (struct hdsp_midi *hmidi)
1334 unsigned long flags;
1338 unsigned char buf[128];
1340 /* Output is not interrupt driven */
1342 spin_lock_irqsave (&hmidi->lock, flags);
1343 if (hmidi->output) {
1344 if (!snd_rawmidi_transmit_empty (hmidi->output)) {
1345 if ((n_pending = snd_hdsp_midi_output_possible (hmidi->hdsp, hmidi->id)) > 0) {
1346 if (n_pending > (int)sizeof (buf))
1347 n_pending = sizeof (buf);
1349 if ((to_write = snd_rawmidi_transmit (hmidi->output, buf, n_pending)) > 0) {
1350 for (i = 0; i < to_write; ++i)
1351 snd_hdsp_midi_write_byte (hmidi->hdsp, hmidi->id, buf[i]);
1356 spin_unlock_irqrestore (&hmidi->lock, flags);
1360 static int snd_hdsp_midi_input_read (struct hdsp_midi *hmidi)
1362 unsigned char buf[128]; /* this buffer is designed to match the MIDI input FIFO size */
1363 unsigned long flags;
1367 spin_lock_irqsave (&hmidi->lock, flags);
1368 if ((n_pending = snd_hdsp_midi_input_available (hmidi->hdsp, hmidi->id)) > 0) {
1370 if (n_pending > (int)sizeof (buf))
1371 n_pending = sizeof (buf);
1372 for (i = 0; i < n_pending; ++i)
1373 buf[i] = snd_hdsp_midi_read_byte (hmidi->hdsp, hmidi->id);
1375 snd_rawmidi_receive (hmidi->input, buf, n_pending);
1377 /* flush the MIDI input FIFO */
1379 snd_hdsp_midi_read_byte (hmidi->hdsp, hmidi->id);
1384 hmidi->hdsp->control_register |= HDSP_Midi1InterruptEnable;
1386 hmidi->hdsp->control_register |= HDSP_Midi0InterruptEnable;
1387 hdsp_write(hmidi->hdsp, HDSP_controlRegister, hmidi->hdsp->control_register);
1388 spin_unlock_irqrestore (&hmidi->lock, flags);
1389 return snd_hdsp_midi_output_write (hmidi);
1392 static void snd_hdsp_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
1395 struct hdsp_midi *hmidi;
1396 unsigned long flags;
1399 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1401 ie = hmidi->id ? HDSP_Midi1InterruptEnable : HDSP_Midi0InterruptEnable;
1402 spin_lock_irqsave (&hdsp->lock, flags);
1404 if (!(hdsp->control_register & ie)) {
1405 snd_hdsp_flush_midi_input (hdsp, hmidi->id);
1406 hdsp->control_register |= ie;
1409 hdsp->control_register &= ~ie;
1410 tasklet_kill(&hdsp->midi_tasklet);
1413 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1414 spin_unlock_irqrestore (&hdsp->lock, flags);
1417 static void snd_hdsp_midi_output_timer(unsigned long data)
1419 struct hdsp_midi *hmidi = (struct hdsp_midi *) data;
1420 unsigned long flags;
1422 snd_hdsp_midi_output_write(hmidi);
1423 spin_lock_irqsave (&hmidi->lock, flags);
1425 /* this does not bump hmidi->istimer, because the
1426 kernel automatically removed the timer when it
1427 expired, and we are now adding it back, thus
1428 leaving istimer wherever it was set before.
1432 mod_timer(&hmidi->timer, 1 + jiffies);
1434 spin_unlock_irqrestore (&hmidi->lock, flags);
1437 static void snd_hdsp_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
1439 struct hdsp_midi *hmidi;
1440 unsigned long flags;
1442 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1443 spin_lock_irqsave (&hmidi->lock, flags);
1445 if (!hmidi->istimer) {
1446 setup_timer(&hmidi->timer, snd_hdsp_midi_output_timer,
1447 (unsigned long) hmidi);
1448 mod_timer(&hmidi->timer, 1 + jiffies);
1452 if (hmidi->istimer && --hmidi->istimer <= 0)
1453 del_timer (&hmidi->timer);
1455 spin_unlock_irqrestore (&hmidi->lock, flags);
1457 snd_hdsp_midi_output_write(hmidi);
1460 static int snd_hdsp_midi_input_open(struct snd_rawmidi_substream *substream)
1462 struct hdsp_midi *hmidi;
1464 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1465 spin_lock_irq (&hmidi->lock);
1466 snd_hdsp_flush_midi_input (hmidi->hdsp, hmidi->id);
1467 hmidi->input = substream;
1468 spin_unlock_irq (&hmidi->lock);
1473 static int snd_hdsp_midi_output_open(struct snd_rawmidi_substream *substream)
1475 struct hdsp_midi *hmidi;
1477 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1478 spin_lock_irq (&hmidi->lock);
1479 hmidi->output = substream;
1480 spin_unlock_irq (&hmidi->lock);
1485 static int snd_hdsp_midi_input_close(struct snd_rawmidi_substream *substream)
1487 struct hdsp_midi *hmidi;
1489 snd_hdsp_midi_input_trigger (substream, 0);
1491 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1492 spin_lock_irq (&hmidi->lock);
1493 hmidi->input = NULL;
1494 spin_unlock_irq (&hmidi->lock);
1499 static int snd_hdsp_midi_output_close(struct snd_rawmidi_substream *substream)
1501 struct hdsp_midi *hmidi;
1503 snd_hdsp_midi_output_trigger (substream, 0);
1505 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
1506 spin_lock_irq (&hmidi->lock);
1507 hmidi->output = NULL;
1508 spin_unlock_irq (&hmidi->lock);
1513 static struct snd_rawmidi_ops snd_hdsp_midi_output =
1515 .open = snd_hdsp_midi_output_open,
1516 .close = snd_hdsp_midi_output_close,
1517 .trigger = snd_hdsp_midi_output_trigger,
1520 static struct snd_rawmidi_ops snd_hdsp_midi_input =
1522 .open = snd_hdsp_midi_input_open,
1523 .close = snd_hdsp_midi_input_close,
1524 .trigger = snd_hdsp_midi_input_trigger,
1527 static int snd_hdsp_create_midi (struct snd_card *card, struct hdsp *hdsp, int id)
1531 hdsp->midi[id].id = id;
1532 hdsp->midi[id].rmidi = NULL;
1533 hdsp->midi[id].input = NULL;
1534 hdsp->midi[id].output = NULL;
1535 hdsp->midi[id].hdsp = hdsp;
1536 hdsp->midi[id].istimer = 0;
1537 hdsp->midi[id].pending = 0;
1538 spin_lock_init (&hdsp->midi[id].lock);
1540 snprintf(buf, sizeof(buf), "%s MIDI %d", card->shortname, id + 1);
1541 if (snd_rawmidi_new (card, buf, id, 1, 1, &hdsp->midi[id].rmidi) < 0)
1544 sprintf(hdsp->midi[id].rmidi->name, "HDSP MIDI %d", id+1);
1545 hdsp->midi[id].rmidi->private_data = &hdsp->midi[id];
1547 snd_rawmidi_set_ops (hdsp->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_hdsp_midi_output);
1548 snd_rawmidi_set_ops (hdsp->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_hdsp_midi_input);
1550 hdsp->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT |
1551 SNDRV_RAWMIDI_INFO_INPUT |
1552 SNDRV_RAWMIDI_INFO_DUPLEX;
1557 /*-----------------------------------------------------------------------------
1559 ----------------------------------------------------------------------------*/
1561 static u32 snd_hdsp_convert_from_aes(struct snd_aes_iec958 *aes)
1564 val |= (aes->status[0] & IEC958_AES0_PROFESSIONAL) ? HDSP_SPDIFProfessional : 0;
1565 val |= (aes->status[0] & IEC958_AES0_NONAUDIO) ? HDSP_SPDIFNonAudio : 0;
1566 if (val & HDSP_SPDIFProfessional)
1567 val |= (aes->status[0] & IEC958_AES0_PRO_EMPHASIS_5015) ? HDSP_SPDIFEmphasis : 0;
1569 val |= (aes->status[0] & IEC958_AES0_CON_EMPHASIS_5015) ? HDSP_SPDIFEmphasis : 0;
1573 static void snd_hdsp_convert_to_aes(struct snd_aes_iec958 *aes, u32 val)
1575 aes->status[0] = ((val & HDSP_SPDIFProfessional) ? IEC958_AES0_PROFESSIONAL : 0) |
1576 ((val & HDSP_SPDIFNonAudio) ? IEC958_AES0_NONAUDIO : 0);
1577 if (val & HDSP_SPDIFProfessional)
1578 aes->status[0] |= (val & HDSP_SPDIFEmphasis) ? IEC958_AES0_PRO_EMPHASIS_5015 : 0;
1580 aes->status[0] |= (val & HDSP_SPDIFEmphasis) ? IEC958_AES0_CON_EMPHASIS_5015 : 0;
1583 static int snd_hdsp_control_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1585 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1590 static int snd_hdsp_control_spdif_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1592 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1594 snd_hdsp_convert_to_aes(&ucontrol->value.iec958, hdsp->creg_spdif);
1598 static int snd_hdsp_control_spdif_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1600 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1604 val = snd_hdsp_convert_from_aes(&ucontrol->value.iec958);
1605 spin_lock_irq(&hdsp->lock);
1606 change = val != hdsp->creg_spdif;
1607 hdsp->creg_spdif = val;
1608 spin_unlock_irq(&hdsp->lock);
1612 static int snd_hdsp_control_spdif_stream_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1614 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1619 static int snd_hdsp_control_spdif_stream_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1621 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1623 snd_hdsp_convert_to_aes(&ucontrol->value.iec958, hdsp->creg_spdif_stream);
1627 static int snd_hdsp_control_spdif_stream_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1629 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1633 val = snd_hdsp_convert_from_aes(&ucontrol->value.iec958);
1634 spin_lock_irq(&hdsp->lock);
1635 change = val != hdsp->creg_spdif_stream;
1636 hdsp->creg_spdif_stream = val;
1637 hdsp->control_register &= ~(HDSP_SPDIFProfessional | HDSP_SPDIFNonAudio | HDSP_SPDIFEmphasis);
1638 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register |= val);
1639 spin_unlock_irq(&hdsp->lock);
1643 static int snd_hdsp_control_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1645 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1650 static int snd_hdsp_control_spdif_mask_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1652 ucontrol->value.iec958.status[0] = kcontrol->private_value;
1656 #define HDSP_SPDIF_IN(xname, xindex) \
1657 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1660 .info = snd_hdsp_info_spdif_in, \
1661 .get = snd_hdsp_get_spdif_in, \
1662 .put = snd_hdsp_put_spdif_in }
1664 static unsigned int hdsp_spdif_in(struct hdsp *hdsp)
1666 return hdsp_decode_spdif_in(hdsp->control_register & HDSP_SPDIFInputMask);
1669 static int hdsp_set_spdif_input(struct hdsp *hdsp, int in)
1671 hdsp->control_register &= ~HDSP_SPDIFInputMask;
1672 hdsp->control_register |= hdsp_encode_spdif_in(in);
1673 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1677 static int snd_hdsp_info_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1679 static const char * const texts[4] = {
1680 "Optical", "Coaxial", "Internal", "AES"
1682 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1684 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 4 : 3,
1688 static int snd_hdsp_get_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1690 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1692 ucontrol->value.enumerated.item[0] = hdsp_spdif_in(hdsp);
1696 static int snd_hdsp_put_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1698 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1702 if (!snd_hdsp_use_is_exclusive(hdsp))
1704 val = ucontrol->value.enumerated.item[0] % ((hdsp->io_type == H9632) ? 4 : 3);
1705 spin_lock_irq(&hdsp->lock);
1706 change = val != hdsp_spdif_in(hdsp);
1708 hdsp_set_spdif_input(hdsp, val);
1709 spin_unlock_irq(&hdsp->lock);
1713 #define HDSP_TOGGLE_SETTING(xname, xindex) \
1714 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1716 .private_value = xindex, \
1717 .info = snd_hdsp_info_toggle_setting, \
1718 .get = snd_hdsp_get_toggle_setting, \
1719 .put = snd_hdsp_put_toggle_setting \
1722 static int hdsp_toggle_setting(struct hdsp *hdsp, u32 regmask)
1724 return (hdsp->control_register & regmask) ? 1 : 0;
1727 static int hdsp_set_toggle_setting(struct hdsp *hdsp, u32 regmask, int out)
1730 hdsp->control_register |= regmask;
1732 hdsp->control_register &= ~regmask;
1733 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1738 #define snd_hdsp_info_toggle_setting snd_ctl_boolean_mono_info
1740 static int snd_hdsp_get_toggle_setting(struct snd_kcontrol *kcontrol,
1741 struct snd_ctl_elem_value *ucontrol)
1743 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1744 u32 regmask = kcontrol->private_value;
1746 spin_lock_irq(&hdsp->lock);
1747 ucontrol->value.integer.value[0] = hdsp_toggle_setting(hdsp, regmask);
1748 spin_unlock_irq(&hdsp->lock);
1752 static int snd_hdsp_put_toggle_setting(struct snd_kcontrol *kcontrol,
1753 struct snd_ctl_elem_value *ucontrol)
1755 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1756 u32 regmask = kcontrol->private_value;
1760 if (!snd_hdsp_use_is_exclusive(hdsp))
1762 val = ucontrol->value.integer.value[0] & 1;
1763 spin_lock_irq(&hdsp->lock);
1764 change = (int) val != hdsp_toggle_setting(hdsp, regmask);
1766 hdsp_set_toggle_setting(hdsp, regmask, val);
1767 spin_unlock_irq(&hdsp->lock);
1771 #define HDSP_SPDIF_SAMPLE_RATE(xname, xindex) \
1772 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1775 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1776 .info = snd_hdsp_info_spdif_sample_rate, \
1777 .get = snd_hdsp_get_spdif_sample_rate \
1780 static int snd_hdsp_info_spdif_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1782 static const char * const texts[] = {
1783 "32000", "44100", "48000", "64000", "88200", "96000",
1784 "None", "128000", "176400", "192000"
1786 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1788 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
1792 static int snd_hdsp_get_spdif_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1794 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1796 switch (hdsp_spdif_sample_rate(hdsp)) {
1798 ucontrol->value.enumerated.item[0] = 0;
1801 ucontrol->value.enumerated.item[0] = 1;
1804 ucontrol->value.enumerated.item[0] = 2;
1807 ucontrol->value.enumerated.item[0] = 3;
1810 ucontrol->value.enumerated.item[0] = 4;
1813 ucontrol->value.enumerated.item[0] = 5;
1816 ucontrol->value.enumerated.item[0] = 7;
1819 ucontrol->value.enumerated.item[0] = 8;
1822 ucontrol->value.enumerated.item[0] = 9;
1825 ucontrol->value.enumerated.item[0] = 6;
1830 #define HDSP_SYSTEM_SAMPLE_RATE(xname, xindex) \
1831 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1834 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1835 .info = snd_hdsp_info_system_sample_rate, \
1836 .get = snd_hdsp_get_system_sample_rate \
1839 static int snd_hdsp_info_system_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1841 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1846 static int snd_hdsp_get_system_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1848 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1850 ucontrol->value.enumerated.item[0] = hdsp->system_sample_rate;
1854 #define HDSP_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
1855 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1858 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1859 .info = snd_hdsp_info_autosync_sample_rate, \
1860 .get = snd_hdsp_get_autosync_sample_rate \
1863 static int snd_hdsp_info_autosync_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1865 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1866 static const char * const texts[] = {
1867 "32000", "44100", "48000", "64000", "88200", "96000",
1868 "None", "128000", "176400", "192000"
1871 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
1875 static int snd_hdsp_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1877 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1879 switch (hdsp_external_sample_rate(hdsp)) {
1881 ucontrol->value.enumerated.item[0] = 0;
1884 ucontrol->value.enumerated.item[0] = 1;
1887 ucontrol->value.enumerated.item[0] = 2;
1890 ucontrol->value.enumerated.item[0] = 3;
1893 ucontrol->value.enumerated.item[0] = 4;
1896 ucontrol->value.enumerated.item[0] = 5;
1899 ucontrol->value.enumerated.item[0] = 7;
1902 ucontrol->value.enumerated.item[0] = 8;
1905 ucontrol->value.enumerated.item[0] = 9;
1908 ucontrol->value.enumerated.item[0] = 6;
1913 #define HDSP_SYSTEM_CLOCK_MODE(xname, xindex) \
1914 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1917 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1918 .info = snd_hdsp_info_system_clock_mode, \
1919 .get = snd_hdsp_get_system_clock_mode \
1922 static int hdsp_system_clock_mode(struct hdsp *hdsp)
1924 if (hdsp->control_register & HDSP_ClockModeMaster)
1926 else if (hdsp_external_sample_rate(hdsp) != hdsp->system_sample_rate)
1931 static int snd_hdsp_info_system_clock_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1933 static const char * const texts[] = {"Master", "Slave" };
1935 return snd_ctl_enum_info(uinfo, 1, 2, texts);
1938 static int snd_hdsp_get_system_clock_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1940 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1942 ucontrol->value.enumerated.item[0] = hdsp_system_clock_mode(hdsp);
1946 #define HDSP_CLOCK_SOURCE(xname, xindex) \
1947 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1950 .info = snd_hdsp_info_clock_source, \
1951 .get = snd_hdsp_get_clock_source, \
1952 .put = snd_hdsp_put_clock_source \
1955 static int hdsp_clock_source(struct hdsp *hdsp)
1957 if (hdsp->control_register & HDSP_ClockModeMaster) {
1958 switch (hdsp->system_sample_rate) {
1985 static int hdsp_set_clock_source(struct hdsp *hdsp, int mode)
1989 case HDSP_CLOCK_SOURCE_AUTOSYNC:
1990 if (hdsp_external_sample_rate(hdsp) != 0) {
1991 if (!hdsp_set_rate(hdsp, hdsp_external_sample_rate(hdsp), 1)) {
1992 hdsp->control_register &= ~HDSP_ClockModeMaster;
1993 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1998 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ:
2001 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ:
2004 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ:
2007 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ:
2010 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ:
2013 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ:
2016 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ:
2019 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ:
2022 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ:
2028 hdsp->control_register |= HDSP_ClockModeMaster;
2029 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2030 hdsp_set_rate(hdsp, rate, 1);
2034 static int snd_hdsp_info_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2036 static const char * const texts[] = {
2037 "AutoSync", "Internal 32.0 kHz", "Internal 44.1 kHz",
2038 "Internal 48.0 kHz", "Internal 64.0 kHz", "Internal 88.2 kHz",
2039 "Internal 96.0 kHz", "Internal 128 kHz", "Internal 176.4 kHz",
2040 "Internal 192.0 KHz"
2042 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2044 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
2048 static int snd_hdsp_get_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2050 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2052 ucontrol->value.enumerated.item[0] = hdsp_clock_source(hdsp);
2056 static int snd_hdsp_put_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2058 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2062 if (!snd_hdsp_use_is_exclusive(hdsp))
2064 val = ucontrol->value.enumerated.item[0];
2065 if (val < 0) val = 0;
2066 if (hdsp->io_type == H9632) {
2073 spin_lock_irq(&hdsp->lock);
2074 if (val != hdsp_clock_source(hdsp))
2075 change = (hdsp_set_clock_source(hdsp, val) == 0) ? 1 : 0;
2078 spin_unlock_irq(&hdsp->lock);
2082 #define snd_hdsp_info_clock_source_lock snd_ctl_boolean_mono_info
2084 static int snd_hdsp_get_clock_source_lock(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2086 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2088 ucontrol->value.integer.value[0] = hdsp->clock_source_locked;
2092 static int snd_hdsp_put_clock_source_lock(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2094 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2097 change = (int)ucontrol->value.integer.value[0] != hdsp->clock_source_locked;
2099 hdsp->clock_source_locked = !!ucontrol->value.integer.value[0];
2103 #define HDSP_DA_GAIN(xname, xindex) \
2104 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2107 .info = snd_hdsp_info_da_gain, \
2108 .get = snd_hdsp_get_da_gain, \
2109 .put = snd_hdsp_put_da_gain \
2112 static int hdsp_da_gain(struct hdsp *hdsp)
2114 switch (hdsp->control_register & HDSP_DAGainMask) {
2115 case HDSP_DAGainHighGain:
2117 case HDSP_DAGainPlus4dBu:
2119 case HDSP_DAGainMinus10dBV:
2126 static int hdsp_set_da_gain(struct hdsp *hdsp, int mode)
2128 hdsp->control_register &= ~HDSP_DAGainMask;
2131 hdsp->control_register |= HDSP_DAGainHighGain;
2134 hdsp->control_register |= HDSP_DAGainPlus4dBu;
2137 hdsp->control_register |= HDSP_DAGainMinus10dBV;
2143 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2147 static int snd_hdsp_info_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2149 static const char * const texts[] = {"Hi Gain", "+4 dBu", "-10 dbV"};
2151 return snd_ctl_enum_info(uinfo, 1, 3, texts);
2154 static int snd_hdsp_get_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2156 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2158 ucontrol->value.enumerated.item[0] = hdsp_da_gain(hdsp);
2162 static int snd_hdsp_put_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2164 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2168 if (!snd_hdsp_use_is_exclusive(hdsp))
2170 val = ucontrol->value.enumerated.item[0];
2171 if (val < 0) val = 0;
2172 if (val > 2) val = 2;
2173 spin_lock_irq(&hdsp->lock);
2174 if (val != hdsp_da_gain(hdsp))
2175 change = (hdsp_set_da_gain(hdsp, val) == 0) ? 1 : 0;
2178 spin_unlock_irq(&hdsp->lock);
2182 #define HDSP_AD_GAIN(xname, xindex) \
2183 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2186 .info = snd_hdsp_info_ad_gain, \
2187 .get = snd_hdsp_get_ad_gain, \
2188 .put = snd_hdsp_put_ad_gain \
2191 static int hdsp_ad_gain(struct hdsp *hdsp)
2193 switch (hdsp->control_register & HDSP_ADGainMask) {
2194 case HDSP_ADGainMinus10dBV:
2196 case HDSP_ADGainPlus4dBu:
2198 case HDSP_ADGainLowGain:
2205 static int hdsp_set_ad_gain(struct hdsp *hdsp, int mode)
2207 hdsp->control_register &= ~HDSP_ADGainMask;
2210 hdsp->control_register |= HDSP_ADGainMinus10dBV;
2213 hdsp->control_register |= HDSP_ADGainPlus4dBu;
2216 hdsp->control_register |= HDSP_ADGainLowGain;
2222 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2226 static int snd_hdsp_info_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2228 static const char * const texts[] = {"-10 dBV", "+4 dBu", "Lo Gain"};
2230 return snd_ctl_enum_info(uinfo, 1, 3, texts);
2233 static int snd_hdsp_get_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2235 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2237 ucontrol->value.enumerated.item[0] = hdsp_ad_gain(hdsp);
2241 static int snd_hdsp_put_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2243 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2247 if (!snd_hdsp_use_is_exclusive(hdsp))
2249 val = ucontrol->value.enumerated.item[0];
2250 if (val < 0) val = 0;
2251 if (val > 2) val = 2;
2252 spin_lock_irq(&hdsp->lock);
2253 if (val != hdsp_ad_gain(hdsp))
2254 change = (hdsp_set_ad_gain(hdsp, val) == 0) ? 1 : 0;
2257 spin_unlock_irq(&hdsp->lock);
2261 #define HDSP_PHONE_GAIN(xname, xindex) \
2262 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2265 .info = snd_hdsp_info_phone_gain, \
2266 .get = snd_hdsp_get_phone_gain, \
2267 .put = snd_hdsp_put_phone_gain \
2270 static int hdsp_phone_gain(struct hdsp *hdsp)
2272 switch (hdsp->control_register & HDSP_PhoneGainMask) {
2273 case HDSP_PhoneGain0dB:
2275 case HDSP_PhoneGainMinus6dB:
2277 case HDSP_PhoneGainMinus12dB:
2284 static int hdsp_set_phone_gain(struct hdsp *hdsp, int mode)
2286 hdsp->control_register &= ~HDSP_PhoneGainMask;
2289 hdsp->control_register |= HDSP_PhoneGain0dB;
2292 hdsp->control_register |= HDSP_PhoneGainMinus6dB;
2295 hdsp->control_register |= HDSP_PhoneGainMinus12dB;
2301 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2305 static int snd_hdsp_info_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2307 static const char * const texts[] = {"0 dB", "-6 dB", "-12 dB"};
2309 return snd_ctl_enum_info(uinfo, 1, 3, texts);
2312 static int snd_hdsp_get_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2314 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2316 ucontrol->value.enumerated.item[0] = hdsp_phone_gain(hdsp);
2320 static int snd_hdsp_put_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2322 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2326 if (!snd_hdsp_use_is_exclusive(hdsp))
2328 val = ucontrol->value.enumerated.item[0];
2329 if (val < 0) val = 0;
2330 if (val > 2) val = 2;
2331 spin_lock_irq(&hdsp->lock);
2332 if (val != hdsp_phone_gain(hdsp))
2333 change = (hdsp_set_phone_gain(hdsp, val) == 0) ? 1 : 0;
2336 spin_unlock_irq(&hdsp->lock);
2340 #define HDSP_PREF_SYNC_REF(xname, xindex) \
2341 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2344 .info = snd_hdsp_info_pref_sync_ref, \
2345 .get = snd_hdsp_get_pref_sync_ref, \
2346 .put = snd_hdsp_put_pref_sync_ref \
2349 static int hdsp_pref_sync_ref(struct hdsp *hdsp)
2351 /* Notice that this looks at the requested sync source,
2352 not the one actually in use.
2355 switch (hdsp->control_register & HDSP_SyncRefMask) {
2356 case HDSP_SyncRef_ADAT1:
2357 return HDSP_SYNC_FROM_ADAT1;
2358 case HDSP_SyncRef_ADAT2:
2359 return HDSP_SYNC_FROM_ADAT2;
2360 case HDSP_SyncRef_ADAT3:
2361 return HDSP_SYNC_FROM_ADAT3;
2362 case HDSP_SyncRef_SPDIF:
2363 return HDSP_SYNC_FROM_SPDIF;
2364 case HDSP_SyncRef_WORD:
2365 return HDSP_SYNC_FROM_WORD;
2366 case HDSP_SyncRef_ADAT_SYNC:
2367 return HDSP_SYNC_FROM_ADAT_SYNC;
2369 return HDSP_SYNC_FROM_WORD;
2374 static int hdsp_set_pref_sync_ref(struct hdsp *hdsp, int pref)
2376 hdsp->control_register &= ~HDSP_SyncRefMask;
2378 case HDSP_SYNC_FROM_ADAT1:
2379 hdsp->control_register &= ~HDSP_SyncRefMask; /* clear SyncRef bits */
2381 case HDSP_SYNC_FROM_ADAT2:
2382 hdsp->control_register |= HDSP_SyncRef_ADAT2;
2384 case HDSP_SYNC_FROM_ADAT3:
2385 hdsp->control_register |= HDSP_SyncRef_ADAT3;
2387 case HDSP_SYNC_FROM_SPDIF:
2388 hdsp->control_register |= HDSP_SyncRef_SPDIF;
2390 case HDSP_SYNC_FROM_WORD:
2391 hdsp->control_register |= HDSP_SyncRef_WORD;
2393 case HDSP_SYNC_FROM_ADAT_SYNC:
2394 hdsp->control_register |= HDSP_SyncRef_ADAT_SYNC;
2399 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2403 static int snd_hdsp_info_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2405 static const char * const texts[] = {
2406 "Word", "IEC958", "ADAT1", "ADAT Sync", "ADAT2", "ADAT3"
2408 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2411 switch (hdsp->io_type) {
2426 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
2429 static int snd_hdsp_get_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2431 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2433 ucontrol->value.enumerated.item[0] = hdsp_pref_sync_ref(hdsp);
2437 static int snd_hdsp_put_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2439 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2443 if (!snd_hdsp_use_is_exclusive(hdsp))
2446 switch (hdsp->io_type) {
2461 val = ucontrol->value.enumerated.item[0] % max;
2462 spin_lock_irq(&hdsp->lock);
2463 change = (int)val != hdsp_pref_sync_ref(hdsp);
2464 hdsp_set_pref_sync_ref(hdsp, val);
2465 spin_unlock_irq(&hdsp->lock);
2469 #define HDSP_AUTOSYNC_REF(xname, xindex) \
2470 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2473 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2474 .info = snd_hdsp_info_autosync_ref, \
2475 .get = snd_hdsp_get_autosync_ref, \
2478 static int hdsp_autosync_ref(struct hdsp *hdsp)
2480 /* This looks at the autosync selected sync reference */
2481 unsigned int status2 = hdsp_read(hdsp, HDSP_status2Register);
2483 switch (status2 & HDSP_SelSyncRefMask) {
2484 case HDSP_SelSyncRef_WORD:
2485 return HDSP_AUTOSYNC_FROM_WORD;
2486 case HDSP_SelSyncRef_ADAT_SYNC:
2487 return HDSP_AUTOSYNC_FROM_ADAT_SYNC;
2488 case HDSP_SelSyncRef_SPDIF:
2489 return HDSP_AUTOSYNC_FROM_SPDIF;
2490 case HDSP_SelSyncRefMask:
2491 return HDSP_AUTOSYNC_FROM_NONE;
2492 case HDSP_SelSyncRef_ADAT1:
2493 return HDSP_AUTOSYNC_FROM_ADAT1;
2494 case HDSP_SelSyncRef_ADAT2:
2495 return HDSP_AUTOSYNC_FROM_ADAT2;
2496 case HDSP_SelSyncRef_ADAT3:
2497 return HDSP_AUTOSYNC_FROM_ADAT3;
2499 return HDSP_AUTOSYNC_FROM_WORD;
2504 static int snd_hdsp_info_autosync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2506 static const char * const texts[] = {
2507 "Word", "ADAT Sync", "IEC958", "None", "ADAT1", "ADAT2", "ADAT3"
2510 return snd_ctl_enum_info(uinfo, 1, 7, texts);
2513 static int snd_hdsp_get_autosync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2515 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2517 ucontrol->value.enumerated.item[0] = hdsp_autosync_ref(hdsp);
2521 #define HDSP_PRECISE_POINTER(xname, xindex) \
2522 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2525 .info = snd_hdsp_info_precise_pointer, \
2526 .get = snd_hdsp_get_precise_pointer, \
2527 .put = snd_hdsp_put_precise_pointer \
2530 static int hdsp_set_precise_pointer(struct hdsp *hdsp, int precise)
2533 hdsp->precise_ptr = 1;
2535 hdsp->precise_ptr = 0;
2539 #define snd_hdsp_info_precise_pointer snd_ctl_boolean_mono_info
2541 static int snd_hdsp_get_precise_pointer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2543 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2545 spin_lock_irq(&hdsp->lock);
2546 ucontrol->value.integer.value[0] = hdsp->precise_ptr;
2547 spin_unlock_irq(&hdsp->lock);
2551 static int snd_hdsp_put_precise_pointer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2553 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2557 if (!snd_hdsp_use_is_exclusive(hdsp))
2559 val = ucontrol->value.integer.value[0] & 1;
2560 spin_lock_irq(&hdsp->lock);
2561 change = (int)val != hdsp->precise_ptr;
2562 hdsp_set_precise_pointer(hdsp, val);
2563 spin_unlock_irq(&hdsp->lock);
2567 #define HDSP_USE_MIDI_TASKLET(xname, xindex) \
2568 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2571 .info = snd_hdsp_info_use_midi_tasklet, \
2572 .get = snd_hdsp_get_use_midi_tasklet, \
2573 .put = snd_hdsp_put_use_midi_tasklet \
2576 static int hdsp_set_use_midi_tasklet(struct hdsp *hdsp, int use_tasklet)
2579 hdsp->use_midi_tasklet = 1;
2581 hdsp->use_midi_tasklet = 0;
2585 #define snd_hdsp_info_use_midi_tasklet snd_ctl_boolean_mono_info
2587 static int snd_hdsp_get_use_midi_tasklet(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2589 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2591 spin_lock_irq(&hdsp->lock);
2592 ucontrol->value.integer.value[0] = hdsp->use_midi_tasklet;
2593 spin_unlock_irq(&hdsp->lock);
2597 static int snd_hdsp_put_use_midi_tasklet(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2599 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2603 if (!snd_hdsp_use_is_exclusive(hdsp))
2605 val = ucontrol->value.integer.value[0] & 1;
2606 spin_lock_irq(&hdsp->lock);
2607 change = (int)val != hdsp->use_midi_tasklet;
2608 hdsp_set_use_midi_tasklet(hdsp, val);
2609 spin_unlock_irq(&hdsp->lock);
2613 #define HDSP_MIXER(xname, xindex) \
2614 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
2618 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2619 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2620 .info = snd_hdsp_info_mixer, \
2621 .get = snd_hdsp_get_mixer, \
2622 .put = snd_hdsp_put_mixer \
2625 static int snd_hdsp_info_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2627 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2629 uinfo->value.integer.min = 0;
2630 uinfo->value.integer.max = 65536;
2631 uinfo->value.integer.step = 1;
2635 static int snd_hdsp_get_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2637 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2642 source = ucontrol->value.integer.value[0];
2643 destination = ucontrol->value.integer.value[1];
2645 if (source >= hdsp->max_channels)
2646 addr = hdsp_playback_to_output_key(hdsp,source-hdsp->max_channels,destination);
2648 addr = hdsp_input_to_output_key(hdsp,source, destination);
2650 spin_lock_irq(&hdsp->lock);
2651 ucontrol->value.integer.value[2] = hdsp_read_gain (hdsp, addr);
2652 spin_unlock_irq(&hdsp->lock);
2656 static int snd_hdsp_put_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2658 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2665 if (!snd_hdsp_use_is_exclusive(hdsp))
2668 source = ucontrol->value.integer.value[0];
2669 destination = ucontrol->value.integer.value[1];
2671 if (source >= hdsp->max_channels)
2672 addr = hdsp_playback_to_output_key(hdsp,source-hdsp->max_channels, destination);
2674 addr = hdsp_input_to_output_key(hdsp,source, destination);
2676 gain = ucontrol->value.integer.value[2];
2678 spin_lock_irq(&hdsp->lock);
2679 change = gain != hdsp_read_gain(hdsp, addr);
2681 hdsp_write_gain(hdsp, addr, gain);
2682 spin_unlock_irq(&hdsp->lock);
2686 #define HDSP_WC_SYNC_CHECK(xname, xindex) \
2687 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2690 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2691 .info = snd_hdsp_info_sync_check, \
2692 .get = snd_hdsp_get_wc_sync_check \
2695 static int snd_hdsp_info_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2697 static const char * const texts[] = {"No Lock", "Lock", "Sync" };
2699 return snd_ctl_enum_info(uinfo, 1, 3, texts);
2702 static int hdsp_wc_sync_check(struct hdsp *hdsp)
2704 int status2 = hdsp_read(hdsp, HDSP_status2Register);
2705 if (status2 & HDSP_wc_lock) {
2706 if (status2 & HDSP_wc_sync)
2715 static int snd_hdsp_get_wc_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2717 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2719 ucontrol->value.enumerated.item[0] = hdsp_wc_sync_check(hdsp);
2723 #define HDSP_SPDIF_SYNC_CHECK(xname, xindex) \
2724 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2727 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2728 .info = snd_hdsp_info_sync_check, \
2729 .get = snd_hdsp_get_spdif_sync_check \
2732 static int hdsp_spdif_sync_check(struct hdsp *hdsp)
2734 int status = hdsp_read(hdsp, HDSP_statusRegister);
2735 if (status & HDSP_SPDIFErrorFlag)
2738 if (status & HDSP_SPDIFSync)
2746 static int snd_hdsp_get_spdif_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2748 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2750 ucontrol->value.enumerated.item[0] = hdsp_spdif_sync_check(hdsp);
2754 #define HDSP_ADATSYNC_SYNC_CHECK(xname, xindex) \
2755 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2758 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2759 .info = snd_hdsp_info_sync_check, \
2760 .get = snd_hdsp_get_adatsync_sync_check \
2763 static int hdsp_adatsync_sync_check(struct hdsp *hdsp)
2765 int status = hdsp_read(hdsp, HDSP_statusRegister);
2766 if (status & HDSP_TimecodeLock) {
2767 if (status & HDSP_TimecodeSync)
2775 static int snd_hdsp_get_adatsync_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2777 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2779 ucontrol->value.enumerated.item[0] = hdsp_adatsync_sync_check(hdsp);
2783 #define HDSP_ADAT_SYNC_CHECK \
2784 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2785 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2786 .info = snd_hdsp_info_sync_check, \
2787 .get = snd_hdsp_get_adat_sync_check \
2790 static int hdsp_adat_sync_check(struct hdsp *hdsp, int idx)
2792 int status = hdsp_read(hdsp, HDSP_statusRegister);
2794 if (status & (HDSP_Lock0>>idx)) {
2795 if (status & (HDSP_Sync0>>idx))
2803 static int snd_hdsp_get_adat_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2806 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2808 offset = ucontrol->id.index - 1;
2809 if (snd_BUG_ON(offset < 0))
2812 switch (hdsp->io_type) {
2827 ucontrol->value.enumerated.item[0] = hdsp_adat_sync_check(hdsp, offset);
2831 #define HDSP_DDS_OFFSET(xname, xindex) \
2832 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2835 .info = snd_hdsp_info_dds_offset, \
2836 .get = snd_hdsp_get_dds_offset, \
2837 .put = snd_hdsp_put_dds_offset \
2840 static int hdsp_dds_offset(struct hdsp *hdsp)
2843 unsigned int dds_value = hdsp->dds_value;
2844 int system_sample_rate = hdsp->system_sample_rate;
2851 * dds_value = n / rate
2852 * rate = n / dds_value
2854 n = div_u64(n, dds_value);
2855 if (system_sample_rate >= 112000)
2857 else if (system_sample_rate >= 56000)
2859 return ((int)n) - system_sample_rate;
2862 static int hdsp_set_dds_offset(struct hdsp *hdsp, int offset_hz)
2864 int rate = hdsp->system_sample_rate + offset_hz;
2865 hdsp_set_dds_value(hdsp, rate);
2869 static int snd_hdsp_info_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2871 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2873 uinfo->value.integer.min = -5000;
2874 uinfo->value.integer.max = 5000;
2878 static int snd_hdsp_get_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2880 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2882 ucontrol->value.enumerated.item[0] = hdsp_dds_offset(hdsp);
2886 static int snd_hdsp_put_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2888 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2892 if (!snd_hdsp_use_is_exclusive(hdsp))
2894 val = ucontrol->value.enumerated.item[0];
2895 spin_lock_irq(&hdsp->lock);
2896 if (val != hdsp_dds_offset(hdsp))
2897 change = (hdsp_set_dds_offset(hdsp, val) == 0) ? 1 : 0;
2900 spin_unlock_irq(&hdsp->lock);
2904 static struct snd_kcontrol_new snd_hdsp_9632_controls[] = {
2905 HDSP_DA_GAIN("DA Gain", 0),
2906 HDSP_AD_GAIN("AD Gain", 0),
2907 HDSP_PHONE_GAIN("Phones Gain", 0),
2908 HDSP_TOGGLE_SETTING("XLR Breakout Cable", HDSP_XLRBreakoutCable),
2909 HDSP_DDS_OFFSET("DDS Sample Rate Offset", 0)
2912 static struct snd_kcontrol_new snd_hdsp_controls[] = {
2914 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2915 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2916 .info = snd_hdsp_control_spdif_info,
2917 .get = snd_hdsp_control_spdif_get,
2918 .put = snd_hdsp_control_spdif_put,
2921 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
2922 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2923 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
2924 .info = snd_hdsp_control_spdif_stream_info,
2925 .get = snd_hdsp_control_spdif_stream_get,
2926 .put = snd_hdsp_control_spdif_stream_put,
2929 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2930 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2931 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
2932 .info = snd_hdsp_control_spdif_mask_info,
2933 .get = snd_hdsp_control_spdif_mask_get,
2934 .private_value = IEC958_AES0_NONAUDIO |
2935 IEC958_AES0_PROFESSIONAL |
2936 IEC958_AES0_CON_EMPHASIS,
2939 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2940 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2941 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
2942 .info = snd_hdsp_control_spdif_mask_info,
2943 .get = snd_hdsp_control_spdif_mask_get,
2944 .private_value = IEC958_AES0_NONAUDIO |
2945 IEC958_AES0_PROFESSIONAL |
2946 IEC958_AES0_PRO_EMPHASIS,
2948 HDSP_MIXER("Mixer", 0),
2949 HDSP_SPDIF_IN("IEC958 Input Connector", 0),
2950 HDSP_TOGGLE_SETTING("IEC958 Output also on ADAT1", HDSP_SPDIFOpticalOut),
2951 HDSP_TOGGLE_SETTING("IEC958 Professional Bit", HDSP_SPDIFProfessional),
2952 HDSP_TOGGLE_SETTING("IEC958 Emphasis Bit", HDSP_SPDIFEmphasis),
2953 HDSP_TOGGLE_SETTING("IEC958 Non-audio Bit", HDSP_SPDIFNonAudio),
2954 /* 'Sample Clock Source' complies with the alsa control naming scheme */
2955 HDSP_CLOCK_SOURCE("Sample Clock Source", 0),
2957 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2958 .name = "Sample Clock Source Locking",
2959 .info = snd_hdsp_info_clock_source_lock,
2960 .get = snd_hdsp_get_clock_source_lock,
2961 .put = snd_hdsp_put_clock_source_lock,
2963 HDSP_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2964 HDSP_PREF_SYNC_REF("Preferred Sync Reference", 0),
2965 HDSP_AUTOSYNC_REF("AutoSync Reference", 0),
2966 HDSP_SPDIF_SAMPLE_RATE("SPDIF Sample Rate", 0),
2967 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2968 /* 'External Rate' complies with the alsa control naming scheme */
2969 HDSP_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2970 HDSP_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2971 HDSP_SPDIF_SYNC_CHECK("SPDIF Lock Status", 0),
2972 HDSP_ADATSYNC_SYNC_CHECK("ADAT Sync Lock Status", 0),
2973 HDSP_TOGGLE_SETTING("Line Out", HDSP_LineOut),
2974 HDSP_PRECISE_POINTER("Precise Pointer", 0),
2975 HDSP_USE_MIDI_TASKLET("Use Midi Tasklet", 0),
2979 static int hdsp_rpm_input12(struct hdsp *hdsp)
2981 switch (hdsp->control_register & HDSP_RPM_Inp12) {
2982 case HDSP_RPM_Inp12_Phon_6dB:
2984 case HDSP_RPM_Inp12_Phon_n6dB:
2986 case HDSP_RPM_Inp12_Line_0dB:
2988 case HDSP_RPM_Inp12_Line_n6dB:
2995 static int snd_hdsp_get_rpm_input12(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2997 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2999 ucontrol->value.enumerated.item[0] = hdsp_rpm_input12(hdsp);
3004 static int hdsp_set_rpm_input12(struct hdsp *hdsp, int mode)
3006 hdsp->control_register &= ~HDSP_RPM_Inp12;
3009 hdsp->control_register |= HDSP_RPM_Inp12_Phon_6dB;
3014 hdsp->control_register |= HDSP_RPM_Inp12_Phon_n6dB;
3017 hdsp->control_register |= HDSP_RPM_Inp12_Line_0dB;
3020 hdsp->control_register |= HDSP_RPM_Inp12_Line_n6dB;
3026 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3031 static int snd_hdsp_put_rpm_input12(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3033 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3037 if (!snd_hdsp_use_is_exclusive(hdsp))
3039 val = ucontrol->value.enumerated.item[0];
3044 spin_lock_irq(&hdsp->lock);
3045 if (val != hdsp_rpm_input12(hdsp))
3046 change = (hdsp_set_rpm_input12(hdsp, val) == 0) ? 1 : 0;
3049 spin_unlock_irq(&hdsp->lock);
3054 static int snd_hdsp_info_rpm_input(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3056 static const char * const texts[] = {
3057 "Phono +6dB", "Phono 0dB", "Phono -6dB", "Line 0dB", "Line -6dB"
3060 return snd_ctl_enum_info(uinfo, 1, 5, texts);
3064 static int hdsp_rpm_input34(struct hdsp *hdsp)
3066 switch (hdsp->control_register & HDSP_RPM_Inp34) {
3067 case HDSP_RPM_Inp34_Phon_6dB:
3069 case HDSP_RPM_Inp34_Phon_n6dB:
3071 case HDSP_RPM_Inp34_Line_0dB:
3073 case HDSP_RPM_Inp34_Line_n6dB:
3080 static int snd_hdsp_get_rpm_input34(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3082 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3084 ucontrol->value.enumerated.item[0] = hdsp_rpm_input34(hdsp);
3089 static int hdsp_set_rpm_input34(struct hdsp *hdsp, int mode)
3091 hdsp->control_register &= ~HDSP_RPM_Inp34;
3094 hdsp->control_register |= HDSP_RPM_Inp34_Phon_6dB;
3099 hdsp->control_register |= HDSP_RPM_Inp34_Phon_n6dB;
3102 hdsp->control_register |= HDSP_RPM_Inp34_Line_0dB;
3105 hdsp->control_register |= HDSP_RPM_Inp34_Line_n6dB;
3111 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3116 static int snd_hdsp_put_rpm_input34(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3118 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3122 if (!snd_hdsp_use_is_exclusive(hdsp))
3124 val = ucontrol->value.enumerated.item[0];
3129 spin_lock_irq(&hdsp->lock);
3130 if (val != hdsp_rpm_input34(hdsp))
3131 change = (hdsp_set_rpm_input34(hdsp, val) == 0) ? 1 : 0;
3134 spin_unlock_irq(&hdsp->lock);
3139 /* RPM Bypass switch */
3140 static int hdsp_rpm_bypass(struct hdsp *hdsp)
3142 return (hdsp->control_register & HDSP_RPM_Bypass) ? 1 : 0;
3146 static int snd_hdsp_get_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3148 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3150 ucontrol->value.integer.value[0] = hdsp_rpm_bypass(hdsp);
3155 static int hdsp_set_rpm_bypass(struct hdsp *hdsp, int on)
3158 hdsp->control_register |= HDSP_RPM_Bypass;
3160 hdsp->control_register &= ~HDSP_RPM_Bypass;
3161 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3166 static int snd_hdsp_put_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3168 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3172 if (!snd_hdsp_use_is_exclusive(hdsp))
3174 val = ucontrol->value.integer.value[0] & 1;
3175 spin_lock_irq(&hdsp->lock);
3176 change = (int)val != hdsp_rpm_bypass(hdsp);
3177 hdsp_set_rpm_bypass(hdsp, val);
3178 spin_unlock_irq(&hdsp->lock);
3183 static int snd_hdsp_info_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3185 static const char * const texts[] = {"On", "Off"};
3187 return snd_ctl_enum_info(uinfo, 1, 2, texts);
3191 /* RPM Disconnect switch */
3192 static int hdsp_rpm_disconnect(struct hdsp *hdsp)
3194 return (hdsp->control_register & HDSP_RPM_Disconnect) ? 1 : 0;
3198 static int snd_hdsp_get_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3200 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3202 ucontrol->value.integer.value[0] = hdsp_rpm_disconnect(hdsp);
3207 static int hdsp_set_rpm_disconnect(struct hdsp *hdsp, int on)
3210 hdsp->control_register |= HDSP_RPM_Disconnect;
3212 hdsp->control_register &= ~HDSP_RPM_Disconnect;
3213 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3218 static int snd_hdsp_put_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3220 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3224 if (!snd_hdsp_use_is_exclusive(hdsp))
3226 val = ucontrol->value.integer.value[0] & 1;
3227 spin_lock_irq(&hdsp->lock);
3228 change = (int)val != hdsp_rpm_disconnect(hdsp);
3229 hdsp_set_rpm_disconnect(hdsp, val);
3230 spin_unlock_irq(&hdsp->lock);
3234 static int snd_hdsp_info_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3236 static const char * const texts[] = {"On", "Off"};
3238 return snd_ctl_enum_info(uinfo, 1, 2, texts);
3241 static struct snd_kcontrol_new snd_hdsp_rpm_controls[] = {
3243 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3244 .name = "RPM Bypass",
3245 .get = snd_hdsp_get_rpm_bypass,
3246 .put = snd_hdsp_put_rpm_bypass,
3247 .info = snd_hdsp_info_rpm_bypass
3250 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3251 .name = "RPM Disconnect",
3252 .get = snd_hdsp_get_rpm_disconnect,
3253 .put = snd_hdsp_put_rpm_disconnect,
3254 .info = snd_hdsp_info_rpm_disconnect
3257 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3258 .name = "Input 1/2",
3259 .get = snd_hdsp_get_rpm_input12,
3260 .put = snd_hdsp_put_rpm_input12,
3261 .info = snd_hdsp_info_rpm_input
3264 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3265 .name = "Input 3/4",
3266 .get = snd_hdsp_get_rpm_input34,
3267 .put = snd_hdsp_put_rpm_input34,
3268 .info = snd_hdsp_info_rpm_input
3270 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
3271 HDSP_MIXER("Mixer", 0)
3274 static struct snd_kcontrol_new snd_hdsp_96xx_aeb =
3275 HDSP_TOGGLE_SETTING("Analog Extension Board",
3276 HDSP_AnalogExtensionBoard);
3277 static struct snd_kcontrol_new snd_hdsp_adat_sync_check = HDSP_ADAT_SYNC_CHECK;
3279 static int snd_hdsp_create_controls(struct snd_card *card, struct hdsp *hdsp)
3283 struct snd_kcontrol *kctl;
3285 if (hdsp->io_type == RPM) {
3286 /* RPM Bypass, Disconnect and Input switches */
3287 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_rpm_controls); idx++) {
3288 err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_rpm_controls[idx], hdsp));
3295 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_controls); idx++) {
3296 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_controls[idx], hdsp))) < 0)
3298 if (idx == 1) /* IEC958 (S/PDIF) Stream */
3299 hdsp->spdif_ctl = kctl;
3302 /* ADAT SyncCheck status */
3303 snd_hdsp_adat_sync_check.name = "ADAT Lock Status";
3304 snd_hdsp_adat_sync_check.index = 1;
3305 if ((err = snd_ctl_add (card, kctl = snd_ctl_new1(&snd_hdsp_adat_sync_check, hdsp))))
3307 if (hdsp->io_type == Digiface || hdsp->io_type == H9652) {
3308 for (idx = 1; idx < 3; ++idx) {
3309 snd_hdsp_adat_sync_check.index = idx+1;
3310 if ((err = snd_ctl_add (card, kctl = snd_ctl_new1(&snd_hdsp_adat_sync_check, hdsp))))
3315 /* DA, AD and Phone gain and XLR breakout cable controls for H9632 cards */
3316 if (hdsp->io_type == H9632) {
3317 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_9632_controls); idx++) {
3318 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_9632_controls[idx], hdsp))) < 0)
3323 /* AEB control for H96xx card */
3324 if (hdsp->io_type == H9632 || hdsp->io_type == H9652) {
3325 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_96xx_aeb, hdsp))) < 0)
3332 /*------------------------------------------------------------
3334 ------------------------------------------------------------*/
3337 snd_hdsp_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
3339 struct hdsp *hdsp = entry->private_data;
3340 unsigned int status;
3341 unsigned int status2;
3342 char *pref_sync_ref;
3344 char *system_clock_mode;
3348 status = hdsp_read(hdsp, HDSP_statusRegister);
3349 status2 = hdsp_read(hdsp, HDSP_status2Register);
3351 snd_iprintf(buffer, "%s (Card #%d)\n", hdsp->card_name,
3352 hdsp->card->number + 1);
3353 snd_iprintf(buffer, "Buffers: capture %p playback %p\n",
3354 hdsp->capture_buffer, hdsp->playback_buffer);
3355 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
3356 hdsp->irq, hdsp->port, (unsigned long)hdsp->iobase);
3357 snd_iprintf(buffer, "Control register: 0x%x\n", hdsp->control_register);
3358 snd_iprintf(buffer, "Control2 register: 0x%x\n",
3359 hdsp->control2_register);
3360 snd_iprintf(buffer, "Status register: 0x%x\n", status);
3361 snd_iprintf(buffer, "Status2 register: 0x%x\n", status2);
3363 if (hdsp_check_for_iobox(hdsp)) {
3364 snd_iprintf(buffer, "No I/O box connected.\n"
3365 "Please connect one and upload firmware.\n");
3369 if (hdsp_check_for_firmware(hdsp, 0)) {
3370 if (hdsp->state & HDSP_FirmwareCached) {
3371 if (snd_hdsp_load_firmware_from_cache(hdsp) != 0) {
3372 snd_iprintf(buffer, "Firmware loading from "
3374 "please upload manually.\n");
3379 err = hdsp_request_fw_loader(hdsp);
3382 "No firmware loaded nor cached, "
3383 "please upload firmware.\n");
3389 snd_iprintf(buffer, "FIFO status: %d\n", hdsp_read(hdsp, HDSP_fifoStatus) & 0xff);
3390 snd_iprintf(buffer, "MIDI1 Output status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusOut0));
3391 snd_iprintf(buffer, "MIDI1 Input status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusIn0));
3392 snd_iprintf(buffer, "MIDI2 Output status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusOut1));
3393 snd_iprintf(buffer, "MIDI2 Input status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusIn1));
3394 snd_iprintf(buffer, "Use Midi Tasklet: %s\n", hdsp->use_midi_tasklet ? "on" : "off");
3396 snd_iprintf(buffer, "\n");
3398 x = 1 << (6 + hdsp_decode_latency(hdsp->control_register & HDSP_LatencyMask));
3400 snd_iprintf(buffer, "Buffer Size (Latency): %d samples (2 periods of %lu bytes)\n", x, (unsigned long) hdsp->period_bytes);
3401 snd_iprintf(buffer, "Hardware pointer (frames): %ld\n", hdsp_hw_pointer(hdsp));
3402 snd_iprintf(buffer, "Precise pointer: %s\n", hdsp->precise_ptr ? "on" : "off");
3403 snd_iprintf(buffer, "Line out: %s\n", (hdsp->control_register & HDSP_LineOut) ? "on" : "off");
3405 snd_iprintf(buffer, "Firmware version: %d\n", (status2&HDSP_version0)|(status2&HDSP_version1)<<1|(status2&HDSP_version2)<<2);
3407 snd_iprintf(buffer, "\n");
3409 switch (hdsp_clock_source(hdsp)) {
3410 case HDSP_CLOCK_SOURCE_AUTOSYNC:
3411 clock_source = "AutoSync";
3413 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ:
3414 clock_source = "Internal 32 kHz";
3416 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ:
3417 clock_source = "Internal 44.1 kHz";
3419 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ:
3420 clock_source = "Internal 48 kHz";
3422 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ:
3423 clock_source = "Internal 64 kHz";
3425 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ:
3426 clock_source = "Internal 88.2 kHz";
3428 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ:
3429 clock_source = "Internal 96 kHz";
3431 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ:
3432 clock_source = "Internal 128 kHz";
3434 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ:
3435 clock_source = "Internal 176.4 kHz";
3437 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ:
3438 clock_source = "Internal 192 kHz";
3441 clock_source = "Error";
3443 snd_iprintf (buffer, "Sample Clock Source: %s\n", clock_source);
3445 if (hdsp_system_clock_mode(hdsp))
3446 system_clock_mode = "Slave";
3448 system_clock_mode = "Master";
3450 switch (hdsp_pref_sync_ref (hdsp)) {
3451 case HDSP_SYNC_FROM_WORD:
3452 pref_sync_ref = "Word Clock";
3454 case HDSP_SYNC_FROM_ADAT_SYNC:
3455 pref_sync_ref = "ADAT Sync";
3457 case HDSP_SYNC_FROM_SPDIF:
3458 pref_sync_ref = "SPDIF";
3460 case HDSP_SYNC_FROM_ADAT1:
3461 pref_sync_ref = "ADAT1";
3463 case HDSP_SYNC_FROM_ADAT2:
3464 pref_sync_ref = "ADAT2";
3466 case HDSP_SYNC_FROM_ADAT3:
3467 pref_sync_ref = "ADAT3";
3470 pref_sync_ref = "Word Clock";
3473 snd_iprintf (buffer, "Preferred Sync Reference: %s\n", pref_sync_ref);
3475 switch (hdsp_autosync_ref (hdsp)) {
3476 case HDSP_AUTOSYNC_FROM_WORD:
3477 autosync_ref = "Word Clock";
3479 case HDSP_AUTOSYNC_FROM_ADAT_SYNC:
3480 autosync_ref = "ADAT Sync";
3482 case HDSP_AUTOSYNC_FROM_SPDIF:
3483 autosync_ref = "SPDIF";
3485 case HDSP_AUTOSYNC_FROM_NONE:
3486 autosync_ref = "None";
3488 case HDSP_AUTOSYNC_FROM_ADAT1:
3489 autosync_ref = "ADAT1";
3491 case HDSP_AUTOSYNC_FROM_ADAT2:
3492 autosync_ref = "ADAT2";
3494 case HDSP_AUTOSYNC_FROM_ADAT3:
3495 autosync_ref = "ADAT3";
3498 autosync_ref = "---";
3501 snd_iprintf (buffer, "AutoSync Reference: %s\n", autosync_ref);
3503 snd_iprintf (buffer, "AutoSync Frequency: %d\n", hdsp_external_sample_rate(hdsp));
3505 snd_iprintf (buffer, "System Clock Mode: %s\n", system_clock_mode);
3507 snd_iprintf (buffer, "System Clock Frequency: %d\n", hdsp->system_sample_rate);
3508 snd_iprintf (buffer, "System Clock Locked: %s\n", hdsp->clock_source_locked ? "Yes" : "No");
3510 snd_iprintf(buffer, "\n");
3512 if (hdsp->io_type != RPM) {
3513 switch (hdsp_spdif_in(hdsp)) {
3514 case HDSP_SPDIFIN_OPTICAL:
3515 snd_iprintf(buffer, "IEC958 input: Optical\n");
3517 case HDSP_SPDIFIN_COAXIAL:
3518 snd_iprintf(buffer, "IEC958 input: Coaxial\n");
3520 case HDSP_SPDIFIN_INTERNAL:
3521 snd_iprintf(buffer, "IEC958 input: Internal\n");
3523 case HDSP_SPDIFIN_AES:
3524 snd_iprintf(buffer, "IEC958 input: AES\n");
3527 snd_iprintf(buffer, "IEC958 input: ???\n");
3532 if (RPM == hdsp->io_type) {
3533 if (hdsp->control_register & HDSP_RPM_Bypass)
3534 snd_iprintf(buffer, "RPM Bypass: disabled\n");
3536 snd_iprintf(buffer, "RPM Bypass: enabled\n");
3537 if (hdsp->control_register & HDSP_RPM_Disconnect)
3538 snd_iprintf(buffer, "RPM disconnected\n");
3540 snd_iprintf(buffer, "RPM connected\n");
3542 switch (hdsp->control_register & HDSP_RPM_Inp12) {
3543 case HDSP_RPM_Inp12_Phon_6dB:
3544 snd_iprintf(buffer, "Input 1/2: Phono, 6dB\n");
3546 case HDSP_RPM_Inp12_Phon_0dB:
3547 snd_iprintf(buffer, "Input 1/2: Phono, 0dB\n");
3549 case HDSP_RPM_Inp12_Phon_n6dB:
3550 snd_iprintf(buffer, "Input 1/2: Phono, -6dB\n");
3552 case HDSP_RPM_Inp12_Line_0dB:
3553 snd_iprintf(buffer, "Input 1/2: Line, 0dB\n");
3555 case HDSP_RPM_Inp12_Line_n6dB:
3556 snd_iprintf(buffer, "Input 1/2: Line, -6dB\n");
3559 snd_iprintf(buffer, "Input 1/2: ???\n");
3562 switch (hdsp->control_register & HDSP_RPM_Inp34) {
3563 case HDSP_RPM_Inp34_Phon_6dB:
3564 snd_iprintf(buffer, "Input 3/4: Phono, 6dB\n");
3566 case HDSP_RPM_Inp34_Phon_0dB:
3567 snd_iprintf(buffer, "Input 3/4: Phono, 0dB\n");
3569 case HDSP_RPM_Inp34_Phon_n6dB:
3570 snd_iprintf(buffer, "Input 3/4: Phono, -6dB\n");
3572 case HDSP_RPM_Inp34_Line_0dB:
3573 snd_iprintf(buffer, "Input 3/4: Line, 0dB\n");
3575 case HDSP_RPM_Inp34_Line_n6dB:
3576 snd_iprintf(buffer, "Input 3/4: Line, -6dB\n");
3579 snd_iprintf(buffer, "Input 3/4: ???\n");
3583 if (hdsp->control_register & HDSP_SPDIFOpticalOut)
3584 snd_iprintf(buffer, "IEC958 output: Coaxial & ADAT1\n");
3586 snd_iprintf(buffer, "IEC958 output: Coaxial only\n");
3588 if (hdsp->control_register & HDSP_SPDIFProfessional)
3589 snd_iprintf(buffer, "IEC958 quality: Professional\n");
3591 snd_iprintf(buffer, "IEC958 quality: Consumer\n");
3593 if (hdsp->control_register & HDSP_SPDIFEmphasis)
3594 snd_iprintf(buffer, "IEC958 emphasis: on\n");
3596 snd_iprintf(buffer, "IEC958 emphasis: off\n");
3598 if (hdsp->control_register & HDSP_SPDIFNonAudio)
3599 snd_iprintf(buffer, "IEC958 NonAudio: on\n");
3601 snd_iprintf(buffer, "IEC958 NonAudio: off\n");
3602 x = hdsp_spdif_sample_rate(hdsp);
3604 snd_iprintf(buffer, "IEC958 sample rate: %d\n", x);
3606 snd_iprintf(buffer, "IEC958 sample rate: Error flag set\n");
3608 snd_iprintf(buffer, "\n");
3611 x = status & HDSP_Sync0;
3612 if (status & HDSP_Lock0)
3613 snd_iprintf(buffer, "ADAT1: %s\n", x ? "Sync" : "Lock");
3615 snd_iprintf(buffer, "ADAT1: No Lock\n");
3617 switch (hdsp->io_type) {
3620 x = status & HDSP_Sync1;
3621 if (status & HDSP_Lock1)
3622 snd_iprintf(buffer, "ADAT2: %s\n", x ? "Sync" : "Lock");
3624 snd_iprintf(buffer, "ADAT2: No Lock\n");
3625 x = status & HDSP_Sync2;
3626 if (status & HDSP_Lock2)
3627 snd_iprintf(buffer, "ADAT3: %s\n", x ? "Sync" : "Lock");
3629 snd_iprintf(buffer, "ADAT3: No Lock\n");
3636 x = status & HDSP_SPDIFSync;
3637 if (status & HDSP_SPDIFErrorFlag)
3638 snd_iprintf (buffer, "SPDIF: No Lock\n");
3640 snd_iprintf (buffer, "SPDIF: %s\n", x ? "Sync" : "Lock");
3642 x = status2 & HDSP_wc_sync;
3643 if (status2 & HDSP_wc_lock)
3644 snd_iprintf (buffer, "Word Clock: %s\n", x ? "Sync" : "Lock");
3646 snd_iprintf (buffer, "Word Clock: No Lock\n");
3648 x = status & HDSP_TimecodeSync;
3649 if (status & HDSP_TimecodeLock)
3650 snd_iprintf(buffer, "ADAT Sync: %s\n", x ? "Sync" : "Lock");
3652 snd_iprintf(buffer, "ADAT Sync: No Lock\n");
3654 snd_iprintf(buffer, "\n");
3656 /* Informations about H9632 specific controls */
3657 if (hdsp->io_type == H9632) {
3660 switch (hdsp_ad_gain(hdsp)) {
3671 snd_iprintf(buffer, "AD Gain : %s\n", tmp);
3673 switch (hdsp_da_gain(hdsp)) {
3684 snd_iprintf(buffer, "DA Gain : %s\n", tmp);
3686 switch (hdsp_phone_gain(hdsp)) {
3697 snd_iprintf(buffer, "Phones Gain : %s\n", tmp);
3699 snd_iprintf(buffer, "XLR Breakout Cable : %s\n",
3700 hdsp_toggle_setting(hdsp, HDSP_XLRBreakoutCable) ?
3703 if (hdsp->control_register & HDSP_AnalogExtensionBoard)
3704 snd_iprintf(buffer, "AEB : on (ADAT1 internal)\n");
3706 snd_iprintf(buffer, "AEB : off (ADAT1 external)\n");
3707 snd_iprintf(buffer, "\n");
3712 static void snd_hdsp_proc_init(struct hdsp *hdsp)
3714 struct snd_info_entry *entry;
3716 if (! snd_card_proc_new(hdsp->card, "hdsp", &entry))
3717 snd_info_set_text_ops(entry, hdsp, snd_hdsp_proc_read);
3720 static void snd_hdsp_free_buffers(struct hdsp *hdsp)
3722 snd_hammerfall_free_buffer(&hdsp->capture_dma_buf, hdsp->pci);
3723 snd_hammerfall_free_buffer(&hdsp->playback_dma_buf, hdsp->pci);
3726 static int snd_hdsp_initialize_memory(struct hdsp *hdsp)
3728 unsigned long pb_bus, cb_bus;
3730 if (snd_hammerfall_get_buffer(hdsp->pci, &hdsp->capture_dma_buf, HDSP_DMA_AREA_BYTES) < 0 ||
3731 snd_hammerfall_get_buffer(hdsp->pci, &hdsp->playback_dma_buf, HDSP_DMA_AREA_BYTES) < 0) {
3732 if (hdsp->capture_dma_buf.area)
3733 snd_dma_free_pages(&hdsp->capture_dma_buf);
3734 dev_err(hdsp->card->dev,
3735 "%s: no buffers available\n", hdsp->card_name);
3739 /* Align to bus-space 64K boundary */
3741 cb_bus = ALIGN(hdsp->capture_dma_buf.addr, 0x10000ul);
3742 pb_bus = ALIGN(hdsp->playback_dma_buf.addr, 0x10000ul);
3744 /* Tell the card where it is */
3746 hdsp_write(hdsp, HDSP_inputBufferAddress, cb_bus);
3747 hdsp_write(hdsp, HDSP_outputBufferAddress, pb_bus);
3749 hdsp->capture_buffer = hdsp->capture_dma_buf.area + (cb_bus - hdsp->capture_dma_buf.addr);
3750 hdsp->playback_buffer = hdsp->playback_dma_buf.area + (pb_bus - hdsp->playback_dma_buf.addr);
3755 static int snd_hdsp_set_defaults(struct hdsp *hdsp)
3759 /* ASSUMPTION: hdsp->lock is either held, or
3760 there is no need to hold it (e.g. during module
3766 SPDIF Input via Coax
3768 maximum latency (7 => 2^7 = 8192 samples, 64Kbyte buffer,
3769 which implies 2 4096 sample, 32Kbyte periods).
3773 hdsp->control_register = HDSP_ClockModeMaster |
3774 HDSP_SPDIFInputCoaxial |
3775 hdsp_encode_latency(7) |
3779 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3781 #ifdef SNDRV_BIG_ENDIAN
3782 hdsp->control2_register = HDSP_BIGENDIAN_MODE;
3784 hdsp->control2_register = 0;
3786 if (hdsp->io_type == H9652)
3787 snd_hdsp_9652_enable_mixer (hdsp);
3789 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
3791 hdsp_reset_hw_pointer(hdsp);
3792 hdsp_compute_period_size(hdsp);
3794 /* silence everything */
3796 for (i = 0; i < HDSP_MATRIX_MIXER_SIZE; ++i)
3797 hdsp->mixer_matrix[i] = MINUS_INFINITY_GAIN;
3799 for (i = 0; i < ((hdsp->io_type == H9652 || hdsp->io_type == H9632) ? 1352 : HDSP_MATRIX_MIXER_SIZE); ++i) {
3800 if (hdsp_write_gain (hdsp, i, MINUS_INFINITY_GAIN))
3804 /* H9632 specific defaults */
3805 if (hdsp->io_type == H9632) {
3806 hdsp->control_register |= (HDSP_DAGainPlus4dBu | HDSP_ADGainPlus4dBu | HDSP_PhoneGain0dB);
3807 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3810 /* set a default rate so that the channel map is set up.
3813 hdsp_set_rate(hdsp, 48000, 1);
3818 static void hdsp_midi_tasklet(unsigned long arg)
3820 struct hdsp *hdsp = (struct hdsp *)arg;
3822 if (hdsp->midi[0].pending)
3823 snd_hdsp_midi_input_read (&hdsp->midi[0]);
3824 if (hdsp->midi[1].pending)
3825 snd_hdsp_midi_input_read (&hdsp->midi[1]);
3828 static irqreturn_t snd_hdsp_interrupt(int irq, void *dev_id)
3830 struct hdsp *hdsp = (struct hdsp *) dev_id;
3831 unsigned int status;
3835 unsigned int midi0status;
3836 unsigned int midi1status;
3839 status = hdsp_read(hdsp, HDSP_statusRegister);
3841 audio = status & HDSP_audioIRQPending;
3842 midi0 = status & HDSP_midi0IRQPending;
3843 midi1 = status & HDSP_midi1IRQPending;
3845 if (!audio && !midi0 && !midi1)
3848 hdsp_write(hdsp, HDSP_interruptConfirmation, 0);
3850 midi0status = hdsp_read (hdsp, HDSP_midiStatusIn0) & 0xff;
3851 midi1status = hdsp_read (hdsp, HDSP_midiStatusIn1) & 0xff;
3853 if (!(hdsp->state & HDSP_InitializationComplete))
3857 if (hdsp->capture_substream)
3858 snd_pcm_period_elapsed(hdsp->pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream);
3860 if (hdsp->playback_substream)
3861 snd_pcm_period_elapsed(hdsp->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream);
3864 if (midi0 && midi0status) {
3865 if (hdsp->use_midi_tasklet) {
3866 /* we disable interrupts for this input until processing is done */
3867 hdsp->control_register &= ~HDSP_Midi0InterruptEnable;
3868 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3869 hdsp->midi[0].pending = 1;
3872 snd_hdsp_midi_input_read (&hdsp->midi[0]);
3875 if (hdsp->io_type != Multiface && hdsp->io_type != RPM && hdsp->io_type != H9632 && midi1 && midi1status) {
3876 if (hdsp->use_midi_tasklet) {
3877 /* we disable interrupts for this input until processing is done */
3878 hdsp->control_register &= ~HDSP_Midi1InterruptEnable;
3879 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3880 hdsp->midi[1].pending = 1;
3883 snd_hdsp_midi_input_read (&hdsp->midi[1]);
3886 if (hdsp->use_midi_tasklet && schedule)
3887 tasklet_schedule(&hdsp->midi_tasklet);
3891 static snd_pcm_uframes_t snd_hdsp_hw_pointer(struct snd_pcm_substream *substream)
3893 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3894 return hdsp_hw_pointer(hdsp);
3897 static char *hdsp_channel_buffer_location(struct hdsp *hdsp,
3904 if (snd_BUG_ON(channel < 0 || channel >= hdsp->max_channels))
3907 if ((mapped_channel = hdsp->channel_map[channel]) < 0)
3910 if (stream == SNDRV_PCM_STREAM_CAPTURE)
3911 return hdsp->capture_buffer + (mapped_channel * HDSP_CHANNEL_BUFFER_BYTES);
3913 return hdsp->playback_buffer + (mapped_channel * HDSP_CHANNEL_BUFFER_BYTES);
3916 static int snd_hdsp_playback_copy(struct snd_pcm_substream *substream, int channel,
3917 snd_pcm_uframes_t pos, void __user *src, snd_pcm_uframes_t count)
3919 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3922 if (snd_BUG_ON(pos + count > HDSP_CHANNEL_BUFFER_BYTES / 4))
3925 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
3926 if (snd_BUG_ON(!channel_buf))
3928 if (copy_from_user(channel_buf + pos * 4, src, count * 4))
3933 static int snd_hdsp_capture_copy(struct snd_pcm_substream *substream, int channel,
3934 snd_pcm_uframes_t pos, void __user *dst, snd_pcm_uframes_t count)
3936 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3939 if (snd_BUG_ON(pos + count > HDSP_CHANNEL_BUFFER_BYTES / 4))
3942 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
3943 if (snd_BUG_ON(!channel_buf))
3945 if (copy_to_user(dst, channel_buf + pos * 4, count * 4))
3950 static int snd_hdsp_hw_silence(struct snd_pcm_substream *substream, int channel,
3951 snd_pcm_uframes_t pos, snd_pcm_uframes_t count)
3953 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3956 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
3957 if (snd_BUG_ON(!channel_buf))
3959 memset(channel_buf + pos * 4, 0, count * 4);
3963 static int snd_hdsp_reset(struct snd_pcm_substream *substream)
3965 struct snd_pcm_runtime *runtime = substream->runtime;
3966 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3967 struct snd_pcm_substream *other;
3968 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
3969 other = hdsp->capture_substream;
3971 other = hdsp->playback_substream;
3973 runtime->status->hw_ptr = hdsp_hw_pointer(hdsp);
3975 runtime->status->hw_ptr = 0;
3977 struct snd_pcm_substream *s;
3978 struct snd_pcm_runtime *oruntime = other->runtime;
3979 snd_pcm_group_for_each_entry(s, substream) {
3981 oruntime->status->hw_ptr = runtime->status->hw_ptr;
3989 static int snd_hdsp_hw_params(struct snd_pcm_substream *substream,
3990 struct snd_pcm_hw_params *params)
3992 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3997 if (hdsp_check_for_iobox (hdsp))
4000 if (hdsp_check_for_firmware(hdsp, 1))
4003 spin_lock_irq(&hdsp->lock);
4005 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
4006 hdsp->control_register &= ~(HDSP_SPDIFProfessional | HDSP_SPDIFNonAudio | HDSP_SPDIFEmphasis);
4007 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register |= hdsp->creg_spdif_stream);
4008 this_pid = hdsp->playback_pid;
4009 other_pid = hdsp->capture_pid;
4011 this_pid = hdsp->capture_pid;
4012 other_pid = hdsp->playback_pid;
4015 if ((other_pid > 0) && (this_pid != other_pid)) {
4017 /* The other stream is open, and not by the same
4018 task as this one. Make sure that the parameters
4019 that matter are the same.
4022 if (params_rate(params) != hdsp->system_sample_rate) {
4023 spin_unlock_irq(&hdsp->lock);
4024 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE);
4028 if (params_period_size(params) != hdsp->period_bytes / 4) {
4029 spin_unlock_irq(&hdsp->lock);
4030 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
4036 spin_unlock_irq(&hdsp->lock);
4040 spin_unlock_irq(&hdsp->lock);
4043 /* how to make sure that the rate matches an externally-set one ?
4046 spin_lock_irq(&hdsp->lock);
4047 if (! hdsp->clock_source_locked) {
4048 if ((err = hdsp_set_rate(hdsp, params_rate(params), 0)) < 0) {
4049 spin_unlock_irq(&hdsp->lock);
4050 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE);
4054 spin_unlock_irq(&hdsp->lock);
4056 if ((err = hdsp_set_interrupt_interval(hdsp, params_period_size(params))) < 0) {
4057 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
4064 static int snd_hdsp_channel_info(struct snd_pcm_substream *substream,
4065 struct snd_pcm_channel_info *info)
4067 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4070 if (snd_BUG_ON(info->channel >= hdsp->max_channels))
4073 if ((mapped_channel = hdsp->channel_map[info->channel]) < 0)
4076 info->offset = mapped_channel * HDSP_CHANNEL_BUFFER_BYTES;
4082 static int snd_hdsp_ioctl(struct snd_pcm_substream *substream,
4083 unsigned int cmd, void *arg)
4086 case SNDRV_PCM_IOCTL1_RESET:
4087 return snd_hdsp_reset(substream);
4088 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
4089 return snd_hdsp_channel_info(substream, arg);
4094 return snd_pcm_lib_ioctl(substream, cmd, arg);
4097 static int snd_hdsp_trigger(struct snd_pcm_substream *substream, int cmd)
4099 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4100 struct snd_pcm_substream *other;
4103 if (hdsp_check_for_iobox (hdsp))
4106 if (hdsp_check_for_firmware(hdsp, 0)) /* no auto-loading in trigger */
4109 spin_lock(&hdsp->lock);
4110 running = hdsp->running;
4112 case SNDRV_PCM_TRIGGER_START:
4113 running |= 1 << substream->stream;
4115 case SNDRV_PCM_TRIGGER_STOP:
4116 running &= ~(1 << substream->stream);
4120 spin_unlock(&hdsp->lock);
4123 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
4124 other = hdsp->capture_substream;
4126 other = hdsp->playback_substream;
4129 struct snd_pcm_substream *s;
4130 snd_pcm_group_for_each_entry(s, substream) {
4132 snd_pcm_trigger_done(s, substream);
4133 if (cmd == SNDRV_PCM_TRIGGER_START)
4134 running |= 1 << s->stream;
4136 running &= ~(1 << s->stream);
4140 if (cmd == SNDRV_PCM_TRIGGER_START) {
4141 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) &&
4142 substream->stream == SNDRV_PCM_STREAM_CAPTURE)
4143 hdsp_silence_playback(hdsp);
4146 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
4147 hdsp_silence_playback(hdsp);
4150 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
4151 hdsp_silence_playback(hdsp);
4154 snd_pcm_trigger_done(substream, substream);
4155 if (!hdsp->running && running)
4156 hdsp_start_audio(hdsp);
4157 else if (hdsp->running && !running)
4158 hdsp_stop_audio(hdsp);
4159 hdsp->running = running;
4160 spin_unlock(&hdsp->lock);
4165 static int snd_hdsp_prepare(struct snd_pcm_substream *substream)
4167 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4170 if (hdsp_check_for_iobox (hdsp))
4173 if (hdsp_check_for_firmware(hdsp, 1))
4176 spin_lock_irq(&hdsp->lock);
4178 hdsp_reset_hw_pointer(hdsp);
4179 spin_unlock_irq(&hdsp->lock);
4183 static struct snd_pcm_hardware snd_hdsp_playback_subinfo =
4185 .info = (SNDRV_PCM_INFO_MMAP |
4186 SNDRV_PCM_INFO_MMAP_VALID |
4187 SNDRV_PCM_INFO_NONINTERLEAVED |
4188 SNDRV_PCM_INFO_SYNC_START |
4189 SNDRV_PCM_INFO_DOUBLE),
4190 #ifdef SNDRV_BIG_ENDIAN
4191 .formats = SNDRV_PCM_FMTBIT_S32_BE,
4193 .formats = SNDRV_PCM_FMTBIT_S32_LE,
4195 .rates = (SNDRV_PCM_RATE_32000 |
4196 SNDRV_PCM_RATE_44100 |
4197 SNDRV_PCM_RATE_48000 |
4198 SNDRV_PCM_RATE_64000 |
4199 SNDRV_PCM_RATE_88200 |
4200 SNDRV_PCM_RATE_96000),
4204 .channels_max = HDSP_MAX_CHANNELS,
4205 .buffer_bytes_max = HDSP_CHANNEL_BUFFER_BYTES * HDSP_MAX_CHANNELS,
4206 .period_bytes_min = (64 * 4) * 10,
4207 .period_bytes_max = (8192 * 4) * HDSP_MAX_CHANNELS,
4213 static struct snd_pcm_hardware snd_hdsp_capture_subinfo =
4215 .info = (SNDRV_PCM_INFO_MMAP |
4216 SNDRV_PCM_INFO_MMAP_VALID |
4217 SNDRV_PCM_INFO_NONINTERLEAVED |
4218 SNDRV_PCM_INFO_SYNC_START),
4219 #ifdef SNDRV_BIG_ENDIAN
4220 .formats = SNDRV_PCM_FMTBIT_S32_BE,
4222 .formats = SNDRV_PCM_FMTBIT_S32_LE,
4224 .rates = (SNDRV_PCM_RATE_32000 |
4225 SNDRV_PCM_RATE_44100 |
4226 SNDRV_PCM_RATE_48000 |
4227 SNDRV_PCM_RATE_64000 |
4228 SNDRV_PCM_RATE_88200 |
4229 SNDRV_PCM_RATE_96000),
4233 .channels_max = HDSP_MAX_CHANNELS,
4234 .buffer_bytes_max = HDSP_CHANNEL_BUFFER_BYTES * HDSP_MAX_CHANNELS,
4235 .period_bytes_min = (64 * 4) * 10,
4236 .period_bytes_max = (8192 * 4) * HDSP_MAX_CHANNELS,
4242 static unsigned int hdsp_period_sizes[] = { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
4244 static struct snd_pcm_hw_constraint_list hdsp_hw_constraints_period_sizes = {
4245 .count = ARRAY_SIZE(hdsp_period_sizes),
4246 .list = hdsp_period_sizes,
4250 static unsigned int hdsp_9632_sample_rates[] = { 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000 };
4252 static struct snd_pcm_hw_constraint_list hdsp_hw_constraints_9632_sample_rates = {
4253 .count = ARRAY_SIZE(hdsp_9632_sample_rates),
4254 .list = hdsp_9632_sample_rates,
4258 static int snd_hdsp_hw_rule_in_channels(struct snd_pcm_hw_params *params,
4259 struct snd_pcm_hw_rule *rule)
4261 struct hdsp *hdsp = rule->private;
4262 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4263 if (hdsp->io_type == H9632) {
4264 unsigned int list[3];
4265 list[0] = hdsp->qs_in_channels;
4266 list[1] = hdsp->ds_in_channels;
4267 list[2] = hdsp->ss_in_channels;
4268 return snd_interval_list(c, 3, list, 0);
4270 unsigned int list[2];
4271 list[0] = hdsp->ds_in_channels;
4272 list[1] = hdsp->ss_in_channels;
4273 return snd_interval_list(c, 2, list, 0);
4277 static int snd_hdsp_hw_rule_out_channels(struct snd_pcm_hw_params *params,
4278 struct snd_pcm_hw_rule *rule)
4280 unsigned int list[3];
4281 struct hdsp *hdsp = rule->private;
4282 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4283 if (hdsp->io_type == H9632) {
4284 list[0] = hdsp->qs_out_channels;
4285 list[1] = hdsp->ds_out_channels;
4286 list[2] = hdsp->ss_out_channels;
4287 return snd_interval_list(c, 3, list, 0);
4289 list[0] = hdsp->ds_out_channels;
4290 list[1] = hdsp->ss_out_channels;
4292 return snd_interval_list(c, 2, list, 0);
4295 static int snd_hdsp_hw_rule_in_channels_rate(struct snd_pcm_hw_params *params,
4296 struct snd_pcm_hw_rule *rule)
4298 struct hdsp *hdsp = rule->private;
4299 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4300 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
4301 if (r->min > 96000 && hdsp->io_type == H9632) {
4302 struct snd_interval t = {
4303 .min = hdsp->qs_in_channels,
4304 .max = hdsp->qs_in_channels,
4307 return snd_interval_refine(c, &t);
4308 } else if (r->min > 48000 && r->max <= 96000) {
4309 struct snd_interval t = {
4310 .min = hdsp->ds_in_channels,
4311 .max = hdsp->ds_in_channels,
4314 return snd_interval_refine(c, &t);
4315 } else if (r->max < 64000) {
4316 struct snd_interval t = {
4317 .min = hdsp->ss_in_channels,
4318 .max = hdsp->ss_in_channels,
4321 return snd_interval_refine(c, &t);
4326 static int snd_hdsp_hw_rule_out_channels_rate(struct snd_pcm_hw_params *params,
4327 struct snd_pcm_hw_rule *rule)
4329 struct hdsp *hdsp = rule->private;
4330 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4331 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
4332 if (r->min > 96000 && hdsp->io_type == H9632) {
4333 struct snd_interval t = {
4334 .min = hdsp->qs_out_channels,
4335 .max = hdsp->qs_out_channels,
4338 return snd_interval_refine(c, &t);
4339 } else if (r->min > 48000 && r->max <= 96000) {
4340 struct snd_interval t = {
4341 .min = hdsp->ds_out_channels,
4342 .max = hdsp->ds_out_channels,
4345 return snd_interval_refine(c, &t);
4346 } else if (r->max < 64000) {
4347 struct snd_interval t = {
4348 .min = hdsp->ss_out_channels,
4349 .max = hdsp->ss_out_channels,
4352 return snd_interval_refine(c, &t);
4357 static int snd_hdsp_hw_rule_rate_out_channels(struct snd_pcm_hw_params *params,
4358 struct snd_pcm_hw_rule *rule)
4360 struct hdsp *hdsp = rule->private;
4361 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4362 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
4363 if (c->min >= hdsp->ss_out_channels) {
4364 struct snd_interval t = {
4369 return snd_interval_refine(r, &t);
4370 } else if (c->max <= hdsp->qs_out_channels && hdsp->io_type == H9632) {
4371 struct snd_interval t = {
4376 return snd_interval_refine(r, &t);
4377 } else if (c->max <= hdsp->ds_out_channels) {
4378 struct snd_interval t = {
4383 return snd_interval_refine(r, &t);
4388 static int snd_hdsp_hw_rule_rate_in_channels(struct snd_pcm_hw_params *params,
4389 struct snd_pcm_hw_rule *rule)
4391 struct hdsp *hdsp = rule->private;
4392 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4393 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
4394 if (c->min >= hdsp->ss_in_channels) {
4395 struct snd_interval t = {
4400 return snd_interval_refine(r, &t);
4401 } else if (c->max <= hdsp->qs_in_channels && hdsp->io_type == H9632) {
4402 struct snd_interval t = {
4407 return snd_interval_refine(r, &t);
4408 } else if (c->max <= hdsp->ds_in_channels) {
4409 struct snd_interval t = {
4414 return snd_interval_refine(r, &t);
4419 static int snd_hdsp_playback_open(struct snd_pcm_substream *substream)
4421 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4422 struct snd_pcm_runtime *runtime = substream->runtime;
4424 if (hdsp_check_for_iobox (hdsp))
4427 if (hdsp_check_for_firmware(hdsp, 1))
4430 spin_lock_irq(&hdsp->lock);
4432 snd_pcm_set_sync(substream);
4434 runtime->hw = snd_hdsp_playback_subinfo;
4435 runtime->dma_area = hdsp->playback_buffer;
4436 runtime->dma_bytes = HDSP_DMA_AREA_BYTES;
4438 hdsp->playback_pid = current->pid;
4439 hdsp->playback_substream = substream;
4441 spin_unlock_irq(&hdsp->lock);
4443 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4444 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hdsp_hw_constraints_period_sizes);
4445 if (hdsp->clock_source_locked) {
4446 runtime->hw.rate_min = runtime->hw.rate_max = hdsp->system_sample_rate;
4447 } else if (hdsp->io_type == H9632) {
4448 runtime->hw.rate_max = 192000;
4449 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
4450 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hdsp_hw_constraints_9632_sample_rates);
4452 if (hdsp->io_type == H9632) {
4453 runtime->hw.channels_min = hdsp->qs_out_channels;
4454 runtime->hw.channels_max = hdsp->ss_out_channels;
4457 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4458 snd_hdsp_hw_rule_out_channels, hdsp,
4459 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4460 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4461 snd_hdsp_hw_rule_out_channels_rate, hdsp,
4462 SNDRV_PCM_HW_PARAM_RATE, -1);
4463 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4464 snd_hdsp_hw_rule_rate_out_channels, hdsp,
4465 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4467 if (RPM != hdsp->io_type) {
4468 hdsp->creg_spdif_stream = hdsp->creg_spdif;
4469 hdsp->spdif_ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
4470 snd_ctl_notify(hdsp->card, SNDRV_CTL_EVENT_MASK_VALUE |
4471 SNDRV_CTL_EVENT_MASK_INFO, &hdsp->spdif_ctl->id);
4476 static int snd_hdsp_playback_release(struct snd_pcm_substream *substream)
4478 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4480 spin_lock_irq(&hdsp->lock);
4482 hdsp->playback_pid = -1;
4483 hdsp->playback_substream = NULL;
4485 spin_unlock_irq(&hdsp->lock);
4487 if (RPM != hdsp->io_type) {
4488 hdsp->spdif_ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
4489 snd_ctl_notify(hdsp->card, SNDRV_CTL_EVENT_MASK_VALUE |
4490 SNDRV_CTL_EVENT_MASK_INFO, &hdsp->spdif_ctl->id);
4496 static int snd_hdsp_capture_open(struct snd_pcm_substream *substream)
4498 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4499 struct snd_pcm_runtime *runtime = substream->runtime;
4501 if (hdsp_check_for_iobox (hdsp))
4504 if (hdsp_check_for_firmware(hdsp, 1))
4507 spin_lock_irq(&hdsp->lock);
4509 snd_pcm_set_sync(substream);
4511 runtime->hw = snd_hdsp_capture_subinfo;
4512 runtime->dma_area = hdsp->capture_buffer;
4513 runtime->dma_bytes = HDSP_DMA_AREA_BYTES;
4515 hdsp->capture_pid = current->pid;
4516 hdsp->capture_substream = substream;
4518 spin_unlock_irq(&hdsp->lock);
4520 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4521 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hdsp_hw_constraints_period_sizes);
4522 if (hdsp->io_type == H9632) {
4523 runtime->hw.channels_min = hdsp->qs_in_channels;
4524 runtime->hw.channels_max = hdsp->ss_in_channels;
4525 runtime->hw.rate_max = 192000;
4526 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
4527 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hdsp_hw_constraints_9632_sample_rates);
4529 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4530 snd_hdsp_hw_rule_in_channels, hdsp,
4531 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4532 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4533 snd_hdsp_hw_rule_in_channels_rate, hdsp,
4534 SNDRV_PCM_HW_PARAM_RATE, -1);
4535 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4536 snd_hdsp_hw_rule_rate_in_channels, hdsp,
4537 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4541 static int snd_hdsp_capture_release(struct snd_pcm_substream *substream)
4543 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4545 spin_lock_irq(&hdsp->lock);
4547 hdsp->capture_pid = -1;
4548 hdsp->capture_substream = NULL;
4550 spin_unlock_irq(&hdsp->lock);
4554 /* helper functions for copying meter values */
4555 static inline int copy_u32_le(void __user *dest, void __iomem *src)
4557 u32 val = readl(src);
4558 return copy_to_user(dest, &val, 4);
4561 static inline int copy_u64_le(void __user *dest, void __iomem *src_low, void __iomem *src_high)
4563 u32 rms_low, rms_high;
4565 rms_low = readl(src_low);
4566 rms_high = readl(src_high);
4567 rms = ((u64)rms_high << 32) | rms_low;
4568 return copy_to_user(dest, &rms, 8);
4571 static inline int copy_u48_le(void __user *dest, void __iomem *src_low, void __iomem *src_high)
4573 u32 rms_low, rms_high;
4575 rms_low = readl(src_low) & 0xffffff00;
4576 rms_high = readl(src_high) & 0xffffff00;
4577 rms = ((u64)rms_high << 32) | rms_low;
4578 return copy_to_user(dest, &rms, 8);
4581 static int hdsp_9652_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
4583 int doublespeed = 0;
4584 int i, j, channels, ofs;
4586 if (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DoubleSpeedStatus)
4588 channels = doublespeed ? 14 : 26;
4589 for (i = 0, j = 0; i < 26; ++i) {
4590 if (doublespeed && (i & 4))
4592 ofs = HDSP_9652_peakBase - j * 4;
4593 if (copy_u32_le(&peak_rms->input_peaks[i], hdsp->iobase + ofs))
4595 ofs -= channels * 4;
4596 if (copy_u32_le(&peak_rms->playback_peaks[i], hdsp->iobase + ofs))
4598 ofs -= channels * 4;
4599 if (copy_u32_le(&peak_rms->output_peaks[i], hdsp->iobase + ofs))
4601 ofs = HDSP_9652_rmsBase + j * 8;
4602 if (copy_u48_le(&peak_rms->input_rms[i], hdsp->iobase + ofs,
4603 hdsp->iobase + ofs + 4))
4605 ofs += channels * 8;
4606 if (copy_u48_le(&peak_rms->playback_rms[i], hdsp->iobase + ofs,
4607 hdsp->iobase + ofs + 4))
4609 ofs += channels * 8;
4610 if (copy_u48_le(&peak_rms->output_rms[i], hdsp->iobase + ofs,
4611 hdsp->iobase + ofs + 4))
4618 static int hdsp_9632_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
4621 struct hdsp_9632_meters __iomem *m;
4622 int doublespeed = 0;
4624 if (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DoubleSpeedStatus)
4626 m = (struct hdsp_9632_meters __iomem *)(hdsp->iobase+HDSP_9632_metersBase);
4627 for (i = 0, j = 0; i < 16; ++i, ++j) {
4628 if (copy_u32_le(&peak_rms->input_peaks[i], &m->input_peak[j]))
4630 if (copy_u32_le(&peak_rms->playback_peaks[i], &m->playback_peak[j]))
4632 if (copy_u32_le(&peak_rms->output_peaks[i], &m->output_peak[j]))
4634 if (copy_u64_le(&peak_rms->input_rms[i], &m->input_rms_low[j],
4635 &m->input_rms_high[j]))
4637 if (copy_u64_le(&peak_rms->playback_rms[i], &m->playback_rms_low[j],
4638 &m->playback_rms_high[j]))
4640 if (copy_u64_le(&peak_rms->output_rms[i], &m->output_rms_low[j],
4641 &m->output_rms_high[j]))
4643 if (doublespeed && i == 3) i += 4;
4648 static int hdsp_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
4652 for (i = 0; i < 26; i++) {
4653 if (copy_u32_le(&peak_rms->playback_peaks[i],
4654 hdsp->iobase + HDSP_playbackPeakLevel + i * 4))
4656 if (copy_u32_le(&peak_rms->input_peaks[i],
4657 hdsp->iobase + HDSP_inputPeakLevel + i * 4))
4660 for (i = 0; i < 28; i++) {
4661 if (copy_u32_le(&peak_rms->output_peaks[i],
4662 hdsp->iobase + HDSP_outputPeakLevel + i * 4))
4665 for (i = 0; i < 26; ++i) {
4666 if (copy_u64_le(&peak_rms->playback_rms[i],
4667 hdsp->iobase + HDSP_playbackRmsLevel + i * 8 + 4,
4668 hdsp->iobase + HDSP_playbackRmsLevel + i * 8))
4670 if (copy_u64_le(&peak_rms->input_rms[i],
4671 hdsp->iobase + HDSP_inputRmsLevel + i * 8 + 4,
4672 hdsp->iobase + HDSP_inputRmsLevel + i * 8))
4678 static int snd_hdsp_hwdep_ioctl(struct snd_hwdep *hw, struct file *file, unsigned int cmd, unsigned long arg)
4680 struct hdsp *hdsp = hw->private_data;
4681 void __user *argp = (void __user *)arg;
4685 case SNDRV_HDSP_IOCTL_GET_PEAK_RMS: {
4686 struct hdsp_peak_rms __user *peak_rms = (struct hdsp_peak_rms __user *)arg;
4688 err = hdsp_check_for_iobox(hdsp);
4692 err = hdsp_check_for_firmware(hdsp, 1);
4696 if (!(hdsp->state & HDSP_FirmwareLoaded)) {
4697 dev_err(hdsp->card->dev,
4698 "firmware needs to be uploaded to the card.\n");
4702 switch (hdsp->io_type) {
4704 return hdsp_9652_get_peak(hdsp, peak_rms);
4706 return hdsp_9632_get_peak(hdsp, peak_rms);
4708 return hdsp_get_peak(hdsp, peak_rms);
4711 case SNDRV_HDSP_IOCTL_GET_CONFIG_INFO: {
4712 struct hdsp_config_info info;
4713 unsigned long flags;
4716 err = hdsp_check_for_iobox(hdsp);
4720 err = hdsp_check_for_firmware(hdsp, 1);
4724 memset(&info, 0, sizeof(info));
4725 spin_lock_irqsave(&hdsp->lock, flags);
4726 info.pref_sync_ref = (unsigned char)hdsp_pref_sync_ref(hdsp);
4727 info.wordclock_sync_check = (unsigned char)hdsp_wc_sync_check(hdsp);
4728 if (hdsp->io_type != H9632)
4729 info.adatsync_sync_check = (unsigned char)hdsp_adatsync_sync_check(hdsp);
4730 info.spdif_sync_check = (unsigned char)hdsp_spdif_sync_check(hdsp);
4731 for (i = 0; i < ((hdsp->io_type != Multiface && hdsp->io_type != RPM && hdsp->io_type != H9632) ? 3 : 1); ++i)
4732 info.adat_sync_check[i] = (unsigned char)hdsp_adat_sync_check(hdsp, i);
4733 info.spdif_in = (unsigned char)hdsp_spdif_in(hdsp);
4734 info.spdif_out = (unsigned char)hdsp_toggle_setting(hdsp,
4735 HDSP_SPDIFOpticalOut);
4736 info.spdif_professional = (unsigned char)
4737 hdsp_toggle_setting(hdsp, HDSP_SPDIFProfessional);
4738 info.spdif_emphasis = (unsigned char)
4739 hdsp_toggle_setting(hdsp, HDSP_SPDIFEmphasis);
4740 info.spdif_nonaudio = (unsigned char)
4741 hdsp_toggle_setting(hdsp, HDSP_SPDIFNonAudio);
4742 info.spdif_sample_rate = hdsp_spdif_sample_rate(hdsp);
4743 info.system_sample_rate = hdsp->system_sample_rate;
4744 info.autosync_sample_rate = hdsp_external_sample_rate(hdsp);
4745 info.system_clock_mode = (unsigned char)hdsp_system_clock_mode(hdsp);
4746 info.clock_source = (unsigned char)hdsp_clock_source(hdsp);
4747 info.autosync_ref = (unsigned char)hdsp_autosync_ref(hdsp);
4748 info.line_out = (unsigned char)
4749 hdsp_toggle_setting(hdsp, HDSP_LineOut);
4750 if (hdsp->io_type == H9632) {
4751 info.da_gain = (unsigned char)hdsp_da_gain(hdsp);
4752 info.ad_gain = (unsigned char)hdsp_ad_gain(hdsp);
4753 info.phone_gain = (unsigned char)hdsp_phone_gain(hdsp);
4754 info.xlr_breakout_cable =
4755 (unsigned char)hdsp_toggle_setting(hdsp,
4756 HDSP_XLRBreakoutCable);
4758 } else if (hdsp->io_type == RPM) {
4759 info.da_gain = (unsigned char) hdsp_rpm_input12(hdsp);
4760 info.ad_gain = (unsigned char) hdsp_rpm_input34(hdsp);
4762 if (hdsp->io_type == H9632 || hdsp->io_type == H9652)
4763 info.analog_extension_board =
4764 (unsigned char)hdsp_toggle_setting(hdsp,
4765 HDSP_AnalogExtensionBoard);
4766 spin_unlock_irqrestore(&hdsp->lock, flags);
4767 if (copy_to_user(argp, &info, sizeof(info)))
4771 case SNDRV_HDSP_IOCTL_GET_9632_AEB: {
4772 struct hdsp_9632_aeb h9632_aeb;
4774 if (hdsp->io_type != H9632) return -EINVAL;
4775 h9632_aeb.aebi = hdsp->ss_in_channels - H9632_SS_CHANNELS;
4776 h9632_aeb.aebo = hdsp->ss_out_channels - H9632_SS_CHANNELS;
4777 if (copy_to_user(argp, &h9632_aeb, sizeof(h9632_aeb)))
4781 case SNDRV_HDSP_IOCTL_GET_VERSION: {
4782 struct hdsp_version hdsp_version;
4785 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return -EINVAL;
4786 if (hdsp->io_type == Undefined) {
4787 if ((err = hdsp_get_iobox_version(hdsp)) < 0)
4790 memset(&hdsp_version, 0, sizeof(hdsp_version));
4791 hdsp_version.io_type = hdsp->io_type;
4792 hdsp_version.firmware_rev = hdsp->firmware_rev;
4793 if ((err = copy_to_user(argp, &hdsp_version, sizeof(hdsp_version))))
4797 case SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE: {
4798 struct hdsp_firmware __user *firmware;
4799 u32 __user *firmware_data;
4802 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return -EINVAL;
4803 /* SNDRV_HDSP_IOCTL_GET_VERSION must have been called */
4804 if (hdsp->io_type == Undefined) return -EINVAL;
4806 if (hdsp->state & (HDSP_FirmwareCached | HDSP_FirmwareLoaded))
4809 dev_info(hdsp->card->dev,
4810 "initializing firmware upload\n");
4811 firmware = (struct hdsp_firmware __user *)argp;
4813 if (get_user(firmware_data, &firmware->firmware_data))
4816 if (hdsp_check_for_iobox (hdsp))
4819 if (!hdsp->fw_uploaded) {
4820 hdsp->fw_uploaded = vmalloc(HDSP_FIRMWARE_SIZE);
4821 if (!hdsp->fw_uploaded)
4825 if (copy_from_user(hdsp->fw_uploaded, firmware_data,
4826 HDSP_FIRMWARE_SIZE)) {
4827 vfree(hdsp->fw_uploaded);
4828 hdsp->fw_uploaded = NULL;
4832 hdsp->state |= HDSP_FirmwareCached;
4834 if ((err = snd_hdsp_load_firmware_from_cache(hdsp)) < 0)
4837 if (!(hdsp->state & HDSP_InitializationComplete)) {
4838 if ((err = snd_hdsp_enable_io(hdsp)) < 0)
4841 snd_hdsp_initialize_channels(hdsp);
4842 snd_hdsp_initialize_midi_flush(hdsp);
4844 if ((err = snd_hdsp_create_alsa_devices(hdsp->card, hdsp)) < 0) {
4845 dev_err(hdsp->card->dev,
4846 "error creating alsa devices\n");
4852 case SNDRV_HDSP_IOCTL_GET_MIXER: {
4853 struct hdsp_mixer __user *mixer = (struct hdsp_mixer __user *)argp;
4854 if (copy_to_user(mixer->matrix, hdsp->mixer_matrix, sizeof(unsigned short)*HDSP_MATRIX_MIXER_SIZE))
4864 static struct snd_pcm_ops snd_hdsp_playback_ops = {
4865 .open = snd_hdsp_playback_open,
4866 .close = snd_hdsp_playback_release,
4867 .ioctl = snd_hdsp_ioctl,
4868 .hw_params = snd_hdsp_hw_params,
4869 .prepare = snd_hdsp_prepare,
4870 .trigger = snd_hdsp_trigger,
4871 .pointer = snd_hdsp_hw_pointer,
4872 .copy = snd_hdsp_playback_copy,
4873 .silence = snd_hdsp_hw_silence,
4876 static struct snd_pcm_ops snd_hdsp_capture_ops = {
4877 .open = snd_hdsp_capture_open,
4878 .close = snd_hdsp_capture_release,
4879 .ioctl = snd_hdsp_ioctl,
4880 .hw_params = snd_hdsp_hw_params,
4881 .prepare = snd_hdsp_prepare,
4882 .trigger = snd_hdsp_trigger,
4883 .pointer = snd_hdsp_hw_pointer,
4884 .copy = snd_hdsp_capture_copy,
4887 static int snd_hdsp_create_hwdep(struct snd_card *card, struct hdsp *hdsp)
4889 struct snd_hwdep *hw;
4892 if ((err = snd_hwdep_new(card, "HDSP hwdep", 0, &hw)) < 0)
4896 hw->private_data = hdsp;
4897 strcpy(hw->name, "HDSP hwdep interface");
4899 hw->ops.ioctl = snd_hdsp_hwdep_ioctl;
4900 hw->ops.ioctl_compat = snd_hdsp_hwdep_ioctl;
4905 static int snd_hdsp_create_pcm(struct snd_card *card, struct hdsp *hdsp)
4907 struct snd_pcm *pcm;
4910 if ((err = snd_pcm_new(card, hdsp->card_name, 0, 1, 1, &pcm)) < 0)
4914 pcm->private_data = hdsp;
4915 strcpy(pcm->name, hdsp->card_name);
4917 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_hdsp_playback_ops);
4918 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_hdsp_capture_ops);
4920 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
4925 static void snd_hdsp_9652_enable_mixer (struct hdsp *hdsp)
4927 hdsp->control2_register |= HDSP_9652_ENABLE_MIXER;
4928 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
4931 static int snd_hdsp_enable_io (struct hdsp *hdsp)
4935 if (hdsp_fifo_wait (hdsp, 0, 100)) {
4936 dev_err(hdsp->card->dev,
4937 "enable_io fifo_wait failed\n");
4941 for (i = 0; i < hdsp->max_channels; ++i) {
4942 hdsp_write (hdsp, HDSP_inputEnable + (4 * i), 1);
4943 hdsp_write (hdsp, HDSP_outputEnable + (4 * i), 1);
4949 static void snd_hdsp_initialize_channels(struct hdsp *hdsp)
4951 int status, aebi_channels, aebo_channels;
4953 switch (hdsp->io_type) {
4955 hdsp->card_name = "RME Hammerfall DSP + Digiface";
4956 hdsp->ss_in_channels = hdsp->ss_out_channels = DIGIFACE_SS_CHANNELS;
4957 hdsp->ds_in_channels = hdsp->ds_out_channels = DIGIFACE_DS_CHANNELS;
4961 hdsp->card_name = "RME Hammerfall HDSP 9652";
4962 hdsp->ss_in_channels = hdsp->ss_out_channels = H9652_SS_CHANNELS;
4963 hdsp->ds_in_channels = hdsp->ds_out_channels = H9652_DS_CHANNELS;
4967 status = hdsp_read(hdsp, HDSP_statusRegister);
4968 /* HDSP_AEBx bits are low when AEB are connected */
4969 aebi_channels = (status & HDSP_AEBI) ? 0 : 4;
4970 aebo_channels = (status & HDSP_AEBO) ? 0 : 4;
4971 hdsp->card_name = "RME Hammerfall HDSP 9632";
4972 hdsp->ss_in_channels = H9632_SS_CHANNELS+aebi_channels;
4973 hdsp->ds_in_channels = H9632_DS_CHANNELS+aebi_channels;
4974 hdsp->qs_in_channels = H9632_QS_CHANNELS+aebi_channels;
4975 hdsp->ss_out_channels = H9632_SS_CHANNELS+aebo_channels;
4976 hdsp->ds_out_channels = H9632_DS_CHANNELS+aebo_channels;
4977 hdsp->qs_out_channels = H9632_QS_CHANNELS+aebo_channels;
4981 hdsp->card_name = "RME Hammerfall DSP + Multiface";
4982 hdsp->ss_in_channels = hdsp->ss_out_channels = MULTIFACE_SS_CHANNELS;
4983 hdsp->ds_in_channels = hdsp->ds_out_channels = MULTIFACE_DS_CHANNELS;
4987 hdsp->card_name = "RME Hammerfall DSP + RPM";
4988 hdsp->ss_in_channels = RPM_CHANNELS-1;
4989 hdsp->ss_out_channels = RPM_CHANNELS;
4990 hdsp->ds_in_channels = RPM_CHANNELS-1;
4991 hdsp->ds_out_channels = RPM_CHANNELS;
4995 /* should never get here */
5000 static void snd_hdsp_initialize_midi_flush (struct hdsp *hdsp)
5002 snd_hdsp_flush_midi_input (hdsp, 0);
5003 snd_hdsp_flush_midi_input (hdsp, 1);
5006 static int snd_hdsp_create_alsa_devices(struct snd_card *card, struct hdsp *hdsp)
5010 if ((err = snd_hdsp_create_pcm(card, hdsp)) < 0) {
5012 "Error creating pcm interface\n");
5017 if ((err = snd_hdsp_create_midi(card, hdsp, 0)) < 0) {
5019 "Error creating first midi interface\n");
5023 if (hdsp->io_type == Digiface || hdsp->io_type == H9652) {
5024 if ((err = snd_hdsp_create_midi(card, hdsp, 1)) < 0) {
5026 "Error creating second midi interface\n");
5031 if ((err = snd_hdsp_create_controls(card, hdsp)) < 0) {
5033 "Error creating ctl interface\n");
5037 snd_hdsp_proc_init(hdsp);
5039 hdsp->system_sample_rate = -1;
5040 hdsp->playback_pid = -1;
5041 hdsp->capture_pid = -1;
5042 hdsp->capture_substream = NULL;
5043 hdsp->playback_substream = NULL;
5045 if ((err = snd_hdsp_set_defaults(hdsp)) < 0) {
5047 "Error setting default values\n");
5051 if (!(hdsp->state & HDSP_InitializationComplete)) {
5052 strcpy(card->shortname, "Hammerfall DSP");
5053 sprintf(card->longname, "%s at 0x%lx, irq %d", hdsp->card_name,
5054 hdsp->port, hdsp->irq);
5056 if ((err = snd_card_register(card)) < 0) {
5058 "error registering card\n");
5061 hdsp->state |= HDSP_InitializationComplete;
5067 /* load firmware via hotplug fw loader */
5068 static int hdsp_request_fw_loader(struct hdsp *hdsp)
5071 const struct firmware *fw;
5074 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
5076 if (hdsp->io_type == Undefined) {
5077 if ((err = hdsp_get_iobox_version(hdsp)) < 0)
5079 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
5083 /* caution: max length of firmware filename is 30! */
5084 switch (hdsp->io_type) {
5086 fwfile = "rpm_firmware.bin";
5089 if (hdsp->firmware_rev == 0xa)
5090 fwfile = "multiface_firmware.bin";
5092 fwfile = "multiface_firmware_rev11.bin";
5095 if (hdsp->firmware_rev == 0xa)
5096 fwfile = "digiface_firmware.bin";
5098 fwfile = "digiface_firmware_rev11.bin";
5101 dev_err(hdsp->card->dev,
5102 "invalid io_type %d\n", hdsp->io_type);
5106 if (request_firmware(&fw, fwfile, &hdsp->pci->dev)) {
5107 dev_err(hdsp->card->dev,
5108 "cannot load firmware %s\n", fwfile);
5111 if (fw->size < HDSP_FIRMWARE_SIZE) {
5112 dev_err(hdsp->card->dev,
5113 "too short firmware size %d (expected %d)\n",
5114 (int)fw->size, HDSP_FIRMWARE_SIZE);
5115 release_firmware(fw);
5119 hdsp->firmware = fw;
5121 hdsp->state |= HDSP_FirmwareCached;
5123 if ((err = snd_hdsp_load_firmware_from_cache(hdsp)) < 0)
5126 if (!(hdsp->state & HDSP_InitializationComplete)) {
5127 if ((err = snd_hdsp_enable_io(hdsp)) < 0)
5130 if ((err = snd_hdsp_create_hwdep(hdsp->card, hdsp)) < 0) {
5131 dev_err(hdsp->card->dev,
5132 "error creating hwdep device\n");
5135 snd_hdsp_initialize_channels(hdsp);
5136 snd_hdsp_initialize_midi_flush(hdsp);
5137 if ((err = snd_hdsp_create_alsa_devices(hdsp->card, hdsp)) < 0) {
5138 dev_err(hdsp->card->dev,
5139 "error creating alsa devices\n");
5146 static int snd_hdsp_create(struct snd_card *card,
5149 struct pci_dev *pci = hdsp->pci;
5156 hdsp->midi[0].rmidi = NULL;
5157 hdsp->midi[1].rmidi = NULL;
5158 hdsp->midi[0].input = NULL;
5159 hdsp->midi[1].input = NULL;
5160 hdsp->midi[0].output = NULL;
5161 hdsp->midi[1].output = NULL;
5162 hdsp->midi[0].pending = 0;
5163 hdsp->midi[1].pending = 0;
5164 spin_lock_init(&hdsp->midi[0].lock);
5165 spin_lock_init(&hdsp->midi[1].lock);
5166 hdsp->iobase = NULL;
5167 hdsp->control_register = 0;
5168 hdsp->control2_register = 0;
5169 hdsp->io_type = Undefined;
5170 hdsp->max_channels = 26;
5174 spin_lock_init(&hdsp->lock);
5176 tasklet_init(&hdsp->midi_tasklet, hdsp_midi_tasklet, (unsigned long)hdsp);
5178 pci_read_config_word(hdsp->pci, PCI_CLASS_REVISION, &hdsp->firmware_rev);
5179 hdsp->firmware_rev &= 0xff;
5181 /* From Martin Bjoernsen :
5182 "It is important that the card's latency timer register in
5183 the PCI configuration space is set to a value much larger
5184 than 0 by the computer's BIOS or the driver.
5185 The windows driver always sets this 8 bit register [...]
5186 to its maximum 255 to avoid problems with some computers."
5188 pci_write_config_byte(hdsp->pci, PCI_LATENCY_TIMER, 0xFF);
5190 strcpy(card->driver, "H-DSP");
5191 strcpy(card->mixername, "Xilinx FPGA");
5193 if (hdsp->firmware_rev < 0xa)
5195 else if (hdsp->firmware_rev < 0x64)
5196 hdsp->card_name = "RME Hammerfall DSP";
5197 else if (hdsp->firmware_rev < 0x96) {
5198 hdsp->card_name = "RME HDSP 9652";
5201 hdsp->card_name = "RME HDSP 9632";
5202 hdsp->max_channels = 16;
5206 if ((err = pci_enable_device(pci)) < 0)
5209 pci_set_master(hdsp->pci);
5211 if ((err = pci_request_regions(pci, "hdsp")) < 0)
5213 hdsp->port = pci_resource_start(pci, 0);
5214 if ((hdsp->iobase = ioremap_nocache(hdsp->port, HDSP_IO_EXTENT)) == NULL) {
5215 dev_err(hdsp->card->dev, "unable to remap region 0x%lx-0x%lx\n",
5216 hdsp->port, hdsp->port + HDSP_IO_EXTENT - 1);
5220 if (request_irq(pci->irq, snd_hdsp_interrupt, IRQF_SHARED,
5221 KBUILD_MODNAME, hdsp)) {
5222 dev_err(hdsp->card->dev, "unable to use IRQ %d\n", pci->irq);
5226 hdsp->irq = pci->irq;
5227 hdsp->precise_ptr = 0;
5228 hdsp->use_midi_tasklet = 1;
5229 hdsp->dds_value = 0;
5231 if ((err = snd_hdsp_initialize_memory(hdsp)) < 0)
5234 if (!is_9652 && !is_9632) {
5235 /* we wait a maximum of 10 seconds to let freshly
5236 * inserted cardbus cards do their hardware init */
5237 err = hdsp_wait_for_iobox(hdsp, 1000, 10);
5242 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
5243 if ((err = hdsp_request_fw_loader(hdsp)) < 0)
5244 /* we don't fail as this can happen
5245 if userspace is not ready for
5248 dev_err(hdsp->card->dev,
5249 "couldn't get firmware from userspace. try using hdsploader\n");
5251 /* init is complete, we return */
5253 /* we defer initialization */
5254 dev_info(hdsp->card->dev,
5255 "card initialization pending : waiting for firmware\n");
5256 if ((err = snd_hdsp_create_hwdep(card, hdsp)) < 0)
5260 dev_info(hdsp->card->dev,
5261 "Firmware already present, initializing card.\n");
5262 if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version2)
5263 hdsp->io_type = RPM;
5264 else if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version1)
5265 hdsp->io_type = Multiface;
5267 hdsp->io_type = Digiface;
5271 if ((err = snd_hdsp_enable_io(hdsp)) != 0)
5275 hdsp->io_type = H9652;
5278 hdsp->io_type = H9632;
5280 if ((err = snd_hdsp_create_hwdep(card, hdsp)) < 0)
5283 snd_hdsp_initialize_channels(hdsp);
5284 snd_hdsp_initialize_midi_flush(hdsp);
5286 hdsp->state |= HDSP_FirmwareLoaded;
5288 if ((err = snd_hdsp_create_alsa_devices(card, hdsp)) < 0)
5294 static int snd_hdsp_free(struct hdsp *hdsp)
5297 /* stop the audio, and cancel all interrupts */
5298 tasklet_kill(&hdsp->midi_tasklet);
5299 hdsp->control_register &= ~(HDSP_Start|HDSP_AudioInterruptEnable|HDSP_Midi0InterruptEnable|HDSP_Midi1InterruptEnable);
5300 hdsp_write (hdsp, HDSP_controlRegister, hdsp->control_register);
5304 free_irq(hdsp->irq, (void *)hdsp);
5306 snd_hdsp_free_buffers(hdsp);
5308 release_firmware(hdsp->firmware);
5309 vfree(hdsp->fw_uploaded);
5310 iounmap(hdsp->iobase);
5313 pci_release_regions(hdsp->pci);
5315 pci_disable_device(hdsp->pci);
5319 static void snd_hdsp_card_free(struct snd_card *card)
5321 struct hdsp *hdsp = card->private_data;
5324 snd_hdsp_free(hdsp);
5327 static int snd_hdsp_probe(struct pci_dev *pci,
5328 const struct pci_device_id *pci_id)
5332 struct snd_card *card;
5335 if (dev >= SNDRV_CARDS)
5342 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
5343 sizeof(struct hdsp), &card);
5347 hdsp = card->private_data;
5348 card->private_free = snd_hdsp_card_free;
5352 if ((err = snd_hdsp_create(card, hdsp)) < 0) {
5353 snd_card_free(card);
5357 strcpy(card->shortname, "Hammerfall DSP");
5358 sprintf(card->longname, "%s at 0x%lx, irq %d", hdsp->card_name,
5359 hdsp->port, hdsp->irq);
5361 if ((err = snd_card_register(card)) < 0) {
5362 snd_card_free(card);
5365 pci_set_drvdata(pci, card);
5370 static void snd_hdsp_remove(struct pci_dev *pci)
5372 snd_card_free(pci_get_drvdata(pci));
5375 static struct pci_driver hdsp_driver = {
5376 .name = KBUILD_MODNAME,
5377 .id_table = snd_hdsp_ids,
5378 .probe = snd_hdsp_probe,
5379 .remove = snd_hdsp_remove,
5382 module_pci_driver(hdsp_driver);