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 <sound/driver.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/interrupt.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <linux/firmware.h>
31 #include <linux/moduleparam.h>
33 #include <sound/core.h>
34 #include <sound/control.h>
35 #include <sound/pcm.h>
36 #include <sound/info.h>
37 #include <sound/asoundef.h>
38 #include <sound/rawmidi.h>
39 #include <sound/hwdep.h>
40 #include <sound/initval.h>
41 #include <sound/hdsp.h>
43 #include <asm/byteorder.h>
44 #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 int 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},"
64 #define HDSP_MAX_CHANNELS 26
65 #define HDSP_MAX_DS_CHANNELS 14
66 #define HDSP_MAX_QS_CHANNELS 8
67 #define DIGIFACE_SS_CHANNELS 26
68 #define DIGIFACE_DS_CHANNELS 14
69 #define MULTIFACE_SS_CHANNELS 18
70 #define MULTIFACE_DS_CHANNELS 14
71 #define H9652_SS_CHANNELS 26
72 #define H9652_DS_CHANNELS 14
73 /* This does not include possible Analog Extension Boards
74 AEBs are detected at card initialization
76 #define H9632_SS_CHANNELS 12
77 #define H9632_DS_CHANNELS 8
78 #define H9632_QS_CHANNELS 4
80 /* Write registers. These are defined as byte-offsets from the iobase value.
82 #define HDSP_resetPointer 0
83 #define HDSP_outputBufferAddress 32
84 #define HDSP_inputBufferAddress 36
85 #define HDSP_controlRegister 64
86 #define HDSP_interruptConfirmation 96
87 #define HDSP_outputEnable 128
88 #define HDSP_control2Reg 256
89 #define HDSP_midiDataOut0 352
90 #define HDSP_midiDataOut1 356
91 #define HDSP_fifoData 368
92 #define HDSP_inputEnable 384
94 /* Read registers. These are defined as byte-offsets from the iobase value
97 #define HDSP_statusRegister 0
98 #define HDSP_timecode 128
99 #define HDSP_status2Register 192
100 #define HDSP_midiDataOut0 352
101 #define HDSP_midiDataOut1 356
102 #define HDSP_midiDataIn0 360
103 #define HDSP_midiDataIn1 364
104 #define HDSP_midiStatusOut0 384
105 #define HDSP_midiStatusOut1 388
106 #define HDSP_midiStatusIn0 392
107 #define HDSP_midiStatusIn1 396
108 #define HDSP_fifoStatus 400
110 /* the meters are regular i/o-mapped registers, but offset
111 considerably from the rest. the peak registers are reset
112 when read; the least-significant 4 bits are full-scale counters;
113 the actual peak value is in the most-significant 24 bits.
116 #define HDSP_playbackPeakLevel 4096 /* 26 * 32 bit values */
117 #define HDSP_inputPeakLevel 4224 /* 26 * 32 bit values */
118 #define HDSP_outputPeakLevel 4352 /* (26+2) * 32 bit values */
119 #define HDSP_playbackRmsLevel 4612 /* 26 * 64 bit values */
120 #define HDSP_inputRmsLevel 4868 /* 26 * 64 bit values */
123 /* This is for H9652 cards
124 Peak values are read downward from the base
125 Rms values are read upward
126 There are rms values for the outputs too
127 26*3 values are read in ss mode
128 14*3 in ds mode, with no gap between values
130 #define HDSP_9652_peakBase 7164
131 #define HDSP_9652_rmsBase 4096
133 /* c.f. the hdsp_9632_meters_t struct */
134 #define HDSP_9632_metersBase 4096
136 #define HDSP_IO_EXTENT 7168
138 /* control2 register bits */
140 #define HDSP_TMS 0x01
141 #define HDSP_TCK 0x02
142 #define HDSP_TDI 0x04
143 #define HDSP_JTAG 0x08
144 #define HDSP_PWDN 0x10
145 #define HDSP_PROGRAM 0x020
146 #define HDSP_CONFIG_MODE_0 0x040
147 #define HDSP_CONFIG_MODE_1 0x080
148 #define HDSP_VERSION_BIT 0x100
149 #define HDSP_BIGENDIAN_MODE 0x200
150 #define HDSP_RD_MULTIPLE 0x400
151 #define HDSP_9652_ENABLE_MIXER 0x800
152 #define HDSP_TDO 0x10000000
154 #define HDSP_S_PROGRAM (HDSP_PROGRAM|HDSP_CONFIG_MODE_0)
155 #define HDSP_S_LOAD (HDSP_PROGRAM|HDSP_CONFIG_MODE_1)
157 /* Control Register bits */
159 #define HDSP_Start (1<<0) /* start engine */
160 #define HDSP_Latency0 (1<<1) /* buffer size = 2^n where n is defined by Latency{2,1,0} */
161 #define HDSP_Latency1 (1<<2) /* [ see above ] */
162 #define HDSP_Latency2 (1<<3) /* [ see above ] */
163 #define HDSP_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
164 #define HDSP_AudioInterruptEnable (1<<5) /* what do you think ? */
165 #define HDSP_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz/176.4kHz 1=48kHz/96kHz/192kHz */
166 #define HDSP_Frequency1 (1<<7) /* 0=32kHz/64kHz/128kHz */
167 #define HDSP_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
168 #define HDSP_SPDIFProfessional (1<<9) /* 0=consumer, 1=professional */
169 #define HDSP_SPDIFEmphasis (1<<10) /* 0=none, 1=on */
170 #define HDSP_SPDIFNonAudio (1<<11) /* 0=off, 1=on */
171 #define HDSP_SPDIFOpticalOut (1<<12) /* 1=use 1st ADAT connector for SPDIF, 0=do not */
172 #define HDSP_SyncRef2 (1<<13)
173 #define HDSP_SPDIFInputSelect0 (1<<14)
174 #define HDSP_SPDIFInputSelect1 (1<<15)
175 #define HDSP_SyncRef0 (1<<16)
176 #define HDSP_SyncRef1 (1<<17)
177 #define HDSP_AnalogExtensionBoard (1<<18) /* For H9632 cards */
178 #define HDSP_XLRBreakoutCable (1<<20) /* For H9632 cards */
179 #define HDSP_Midi0InterruptEnable (1<<22)
180 #define HDSP_Midi1InterruptEnable (1<<23)
181 #define HDSP_LineOut (1<<24)
182 #define HDSP_ADGain0 (1<<25) /* From here : H9632 specific */
183 #define HDSP_ADGain1 (1<<26)
184 #define HDSP_DAGain0 (1<<27)
185 #define HDSP_DAGain1 (1<<28)
186 #define HDSP_PhoneGain0 (1<<29)
187 #define HDSP_PhoneGain1 (1<<30)
188 #define HDSP_QuadSpeed (1<<31)
190 #define HDSP_ADGainMask (HDSP_ADGain0|HDSP_ADGain1)
191 #define HDSP_ADGainMinus10dBV HDSP_ADGainMask
192 #define HDSP_ADGainPlus4dBu (HDSP_ADGain0)
193 #define HDSP_ADGainLowGain 0
195 #define HDSP_DAGainMask (HDSP_DAGain0|HDSP_DAGain1)
196 #define HDSP_DAGainHighGain HDSP_DAGainMask
197 #define HDSP_DAGainPlus4dBu (HDSP_DAGain0)
198 #define HDSP_DAGainMinus10dBV 0
200 #define HDSP_PhoneGainMask (HDSP_PhoneGain0|HDSP_PhoneGain1)
201 #define HDSP_PhoneGain0dB HDSP_PhoneGainMask
202 #define HDSP_PhoneGainMinus6dB (HDSP_PhoneGain0)
203 #define HDSP_PhoneGainMinus12dB 0
205 #define HDSP_LatencyMask (HDSP_Latency0|HDSP_Latency1|HDSP_Latency2)
206 #define HDSP_FrequencyMask (HDSP_Frequency0|HDSP_Frequency1|HDSP_DoubleSpeed|HDSP_QuadSpeed)
208 #define HDSP_SPDIFInputMask (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
209 #define HDSP_SPDIFInputADAT1 0
210 #define HDSP_SPDIFInputCoaxial (HDSP_SPDIFInputSelect0)
211 #define HDSP_SPDIFInputCdrom (HDSP_SPDIFInputSelect1)
212 #define HDSP_SPDIFInputAES (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
214 #define HDSP_SyncRefMask (HDSP_SyncRef0|HDSP_SyncRef1|HDSP_SyncRef2)
215 #define HDSP_SyncRef_ADAT1 0
216 #define HDSP_SyncRef_ADAT2 (HDSP_SyncRef0)
217 #define HDSP_SyncRef_ADAT3 (HDSP_SyncRef1)
218 #define HDSP_SyncRef_SPDIF (HDSP_SyncRef0|HDSP_SyncRef1)
219 #define HDSP_SyncRef_WORD (HDSP_SyncRef2)
220 #define HDSP_SyncRef_ADAT_SYNC (HDSP_SyncRef0|HDSP_SyncRef2)
222 /* Sample Clock Sources */
224 #define HDSP_CLOCK_SOURCE_AUTOSYNC 0
225 #define HDSP_CLOCK_SOURCE_INTERNAL_32KHZ 1
226 #define HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
227 #define HDSP_CLOCK_SOURCE_INTERNAL_48KHZ 3
228 #define HDSP_CLOCK_SOURCE_INTERNAL_64KHZ 4
229 #define HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
230 #define HDSP_CLOCK_SOURCE_INTERNAL_96KHZ 6
231 #define HDSP_CLOCK_SOURCE_INTERNAL_128KHZ 7
232 #define HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
233 #define HDSP_CLOCK_SOURCE_INTERNAL_192KHZ 9
235 /* Preferred sync reference choices - used by "pref_sync_ref" control switch */
237 #define HDSP_SYNC_FROM_WORD 0
238 #define HDSP_SYNC_FROM_SPDIF 1
239 #define HDSP_SYNC_FROM_ADAT1 2
240 #define HDSP_SYNC_FROM_ADAT_SYNC 3
241 #define HDSP_SYNC_FROM_ADAT2 4
242 #define HDSP_SYNC_FROM_ADAT3 5
244 /* SyncCheck status */
246 #define HDSP_SYNC_CHECK_NO_LOCK 0
247 #define HDSP_SYNC_CHECK_LOCK 1
248 #define HDSP_SYNC_CHECK_SYNC 2
250 /* AutoSync references - used by "autosync_ref" control switch */
252 #define HDSP_AUTOSYNC_FROM_WORD 0
253 #define HDSP_AUTOSYNC_FROM_ADAT_SYNC 1
254 #define HDSP_AUTOSYNC_FROM_SPDIF 2
255 #define HDSP_AUTOSYNC_FROM_NONE 3
256 #define HDSP_AUTOSYNC_FROM_ADAT1 4
257 #define HDSP_AUTOSYNC_FROM_ADAT2 5
258 #define HDSP_AUTOSYNC_FROM_ADAT3 6
260 /* Possible sources of S/PDIF input */
262 #define HDSP_SPDIFIN_OPTICAL 0 /* optical (ADAT1) */
263 #define HDSP_SPDIFIN_COAXIAL 1 /* coaxial (RCA) */
264 #define HDSP_SPDIFIN_INTERNAL 2 /* internal (CDROM) */
265 #define HDSP_SPDIFIN_AES 3 /* xlr for H9632 (AES)*/
267 #define HDSP_Frequency32KHz HDSP_Frequency0
268 #define HDSP_Frequency44_1KHz HDSP_Frequency1
269 #define HDSP_Frequency48KHz (HDSP_Frequency1|HDSP_Frequency0)
270 #define HDSP_Frequency64KHz (HDSP_DoubleSpeed|HDSP_Frequency0)
271 #define HDSP_Frequency88_2KHz (HDSP_DoubleSpeed|HDSP_Frequency1)
272 #define HDSP_Frequency96KHz (HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
273 /* For H9632 cards */
274 #define HDSP_Frequency128KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency0)
275 #define HDSP_Frequency176_4KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1)
276 #define HDSP_Frequency192KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
278 #define hdsp_encode_latency(x) (((x)<<1) & HDSP_LatencyMask)
279 #define hdsp_decode_latency(x) (((x) & HDSP_LatencyMask)>>1)
281 #define hdsp_encode_spdif_in(x) (((x)&0x3)<<14)
282 #define hdsp_decode_spdif_in(x) (((x)>>14)&0x3)
284 /* Status Register bits */
286 #define HDSP_audioIRQPending (1<<0)
287 #define HDSP_Lock2 (1<<1) /* this is for Digiface and H9652 */
288 #define HDSP_spdifFrequency3 HDSP_Lock2 /* this is for H9632 only */
289 #define HDSP_Lock1 (1<<2)
290 #define HDSP_Lock0 (1<<3)
291 #define HDSP_SPDIFSync (1<<4)
292 #define HDSP_TimecodeLock (1<<5)
293 #define HDSP_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
294 #define HDSP_Sync2 (1<<16)
295 #define HDSP_Sync1 (1<<17)
296 #define HDSP_Sync0 (1<<18)
297 #define HDSP_DoubleSpeedStatus (1<<19)
298 #define HDSP_ConfigError (1<<20)
299 #define HDSP_DllError (1<<21)
300 #define HDSP_spdifFrequency0 (1<<22)
301 #define HDSP_spdifFrequency1 (1<<23)
302 #define HDSP_spdifFrequency2 (1<<24)
303 #define HDSP_SPDIFErrorFlag (1<<25)
304 #define HDSP_BufferID (1<<26)
305 #define HDSP_TimecodeSync (1<<27)
306 #define HDSP_AEBO (1<<28) /* H9632 specific Analog Extension Boards */
307 #define HDSP_AEBI (1<<29) /* 0 = present, 1 = absent */
308 #define HDSP_midi0IRQPending (1<<30)
309 #define HDSP_midi1IRQPending (1<<31)
311 #define HDSP_spdifFrequencyMask (HDSP_spdifFrequency0|HDSP_spdifFrequency1|HDSP_spdifFrequency2)
313 #define HDSP_spdifFrequency32KHz (HDSP_spdifFrequency0)
314 #define HDSP_spdifFrequency44_1KHz (HDSP_spdifFrequency1)
315 #define HDSP_spdifFrequency48KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency1)
317 #define HDSP_spdifFrequency64KHz (HDSP_spdifFrequency2)
318 #define HDSP_spdifFrequency88_2KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency2)
319 #define HDSP_spdifFrequency96KHz (HDSP_spdifFrequency2|HDSP_spdifFrequency1)
321 /* This is for H9632 cards */
322 #define HDSP_spdifFrequency128KHz HDSP_spdifFrequencyMask
323 #define HDSP_spdifFrequency176_4KHz HDSP_spdifFrequency3
324 #define HDSP_spdifFrequency192KHz (HDSP_spdifFrequency3|HDSP_spdifFrequency0)
326 /* Status2 Register bits */
328 #define HDSP_version0 (1<<0)
329 #define HDSP_version1 (1<<1)
330 #define HDSP_version2 (1<<2)
331 #define HDSP_wc_lock (1<<3)
332 #define HDSP_wc_sync (1<<4)
333 #define HDSP_inp_freq0 (1<<5)
334 #define HDSP_inp_freq1 (1<<6)
335 #define HDSP_inp_freq2 (1<<7)
336 #define HDSP_SelSyncRef0 (1<<8)
337 #define HDSP_SelSyncRef1 (1<<9)
338 #define HDSP_SelSyncRef2 (1<<10)
340 #define HDSP_wc_valid (HDSP_wc_lock|HDSP_wc_sync)
342 #define HDSP_systemFrequencyMask (HDSP_inp_freq0|HDSP_inp_freq1|HDSP_inp_freq2)
343 #define HDSP_systemFrequency32 (HDSP_inp_freq0)
344 #define HDSP_systemFrequency44_1 (HDSP_inp_freq1)
345 #define HDSP_systemFrequency48 (HDSP_inp_freq0|HDSP_inp_freq1)
346 #define HDSP_systemFrequency64 (HDSP_inp_freq2)
347 #define HDSP_systemFrequency88_2 (HDSP_inp_freq0|HDSP_inp_freq2)
348 #define HDSP_systemFrequency96 (HDSP_inp_freq1|HDSP_inp_freq2)
349 /* FIXME : more values for 9632 cards ? */
351 #define HDSP_SelSyncRefMask (HDSP_SelSyncRef0|HDSP_SelSyncRef1|HDSP_SelSyncRef2)
352 #define HDSP_SelSyncRef_ADAT1 0
353 #define HDSP_SelSyncRef_ADAT2 (HDSP_SelSyncRef0)
354 #define HDSP_SelSyncRef_ADAT3 (HDSP_SelSyncRef1)
355 #define HDSP_SelSyncRef_SPDIF (HDSP_SelSyncRef0|HDSP_SelSyncRef1)
356 #define HDSP_SelSyncRef_WORD (HDSP_SelSyncRef2)
357 #define HDSP_SelSyncRef_ADAT_SYNC (HDSP_SelSyncRef0|HDSP_SelSyncRef2)
359 /* Card state flags */
361 #define HDSP_InitializationComplete (1<<0)
362 #define HDSP_FirmwareLoaded (1<<1)
363 #define HDSP_FirmwareCached (1<<2)
365 /* FIFO wait times, defined in terms of 1/10ths of msecs */
367 #define HDSP_LONG_WAIT 5000
368 #define HDSP_SHORT_WAIT 30
370 #define UNITY_GAIN 32768
371 #define MINUS_INFINITY_GAIN 0
373 /* the size of a substream (1 mono data stream) */
375 #define HDSP_CHANNEL_BUFFER_SAMPLES (16*1024)
376 #define HDSP_CHANNEL_BUFFER_BYTES (4*HDSP_CHANNEL_BUFFER_SAMPLES)
378 /* the size of the area we need to allocate for DMA transfers. the
379 size is the same regardless of the number of channels - the
380 Multiface still uses the same memory area.
382 Note that we allocate 1 more channel than is apparently needed
383 because the h/w seems to write 1 byte beyond the end of the last
387 #define HDSP_DMA_AREA_BYTES ((HDSP_MAX_CHANNELS+1) * HDSP_CHANNEL_BUFFER_BYTES)
388 #define HDSP_DMA_AREA_KILOBYTES (HDSP_DMA_AREA_BYTES/1024)
390 /* use hotplug firmeare loader? */
391 #if defined(CONFIG_FW_LOADER) || defined(CONFIG_FW_LOADER_MODULE)
392 #if !defined(HDSP_USE_HWDEP_LOADER) && !defined(CONFIG_SND_HDSP)
393 #define HDSP_FW_LOADER
397 struct hdsp_9632_meters
{
399 u32 playback_peak
[16];
403 u32 input_rms_low
[16];
404 u32 playback_rms_low
[16];
405 u32 output_rms_low
[16];
407 u32 input_rms_high
[16];
408 u32 playback_rms_high
[16];
409 u32 output_rms_high
[16];
410 u32 xxx_rms_high
[16];
416 struct snd_rawmidi
*rmidi
;
417 struct snd_rawmidi_substream
*input
;
418 struct snd_rawmidi_substream
*output
;
419 char istimer
; /* timer in use */
420 struct timer_list timer
;
427 struct snd_pcm_substream
*capture_substream
;
428 struct snd_pcm_substream
*playback_substream
;
429 struct hdsp_midi midi
[2];
430 struct tasklet_struct midi_tasklet
;
431 int use_midi_tasklet
;
433 u32 control_register
; /* cached value */
434 u32 control2_register
; /* cached value */
436 u32 creg_spdif_stream
;
437 int clock_source_locked
;
438 char *card_name
; /* digiface/multiface */
439 enum HDSP_IO_Type io_type
; /* ditto, but for code use */
440 unsigned short firmware_rev
;
441 unsigned short state
; /* stores state bits */
442 u32 firmware_cache
[24413]; /* this helps recover from accidental iobox power failure */
443 size_t period_bytes
; /* guess what this is */
444 unsigned char max_channels
;
445 unsigned char qs_in_channels
; /* quad speed mode for H9632 */
446 unsigned char ds_in_channels
;
447 unsigned char ss_in_channels
; /* different for multiface/digiface */
448 unsigned char qs_out_channels
;
449 unsigned char ds_out_channels
;
450 unsigned char ss_out_channels
;
452 struct snd_dma_buffer capture_dma_buf
;
453 struct snd_dma_buffer playback_dma_buf
;
454 unsigned char *capture_buffer
; /* suitably aligned address */
455 unsigned char *playback_buffer
; /* suitably aligned address */
460 int system_sample_rate
;
465 void __iomem
*iobase
;
466 struct snd_card
*card
;
468 struct snd_hwdep
*hwdep
;
470 struct snd_kcontrol
*spdif_ctl
;
471 unsigned short mixer_matrix
[HDSP_MATRIX_MIXER_SIZE
];
474 /* These tables map the ALSA channels 1..N to the channels that we
475 need to use in order to find the relevant channel buffer. RME
476 refer to this kind of mapping as between "the ADAT channel and
477 the DMA channel." We index it using the logical audio channel,
478 and the value is the DMA channel (i.e. channel buffer number)
479 where the data for that channel can be read/written from/to.
482 static char channel_map_df_ss
[HDSP_MAX_CHANNELS
] = {
483 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
484 18, 19, 20, 21, 22, 23, 24, 25
487 static char channel_map_mf_ss
[HDSP_MAX_CHANNELS
] = { /* Multiface */
489 0, 1, 2, 3, 4, 5, 6, 7,
491 16, 17, 18, 19, 20, 21, 22, 23,
494 -1, -1, -1, -1, -1, -1, -1, -1
497 static char channel_map_ds
[HDSP_MAX_CHANNELS
] = {
498 /* ADAT channels are remapped */
499 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23,
500 /* channels 12 and 13 are S/PDIF */
502 /* others don't exist */
503 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
506 static char channel_map_H9632_ss
[HDSP_MAX_CHANNELS
] = {
508 0, 1, 2, 3, 4, 5, 6, 7,
513 /* AO4S-192 and AI4S-192 extension boards */
515 /* others don't exist */
516 -1, -1, -1, -1, -1, -1, -1, -1,
520 static char channel_map_H9632_ds
[HDSP_MAX_CHANNELS
] = {
527 /* AO4S-192 and AI4S-192 extension boards */
529 /* others don't exist */
530 -1, -1, -1, -1, -1, -1, -1, -1,
531 -1, -1, -1, -1, -1, -1
534 static char channel_map_H9632_qs
[HDSP_MAX_CHANNELS
] = {
535 /* ADAT is disabled in this mode */
540 /* AO4S-192 and AI4S-192 extension boards */
542 /* others don't exist */
543 -1, -1, -1, -1, -1, -1, -1, -1,
544 -1, -1, -1, -1, -1, -1, -1, -1,
548 static int snd_hammerfall_get_buffer(struct pci_dev
*pci
, struct snd_dma_buffer
*dmab
, size_t size
)
550 dmab
->dev
.type
= SNDRV_DMA_TYPE_DEV
;
551 dmab
->dev
.dev
= snd_dma_pci_data(pci
);
552 if (snd_dma_get_reserved_buf(dmab
, snd_dma_pci_buf_id(pci
))) {
553 if (dmab
->bytes
>= size
)
556 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(pci
),
562 static void snd_hammerfall_free_buffer(struct snd_dma_buffer
*dmab
, struct pci_dev
*pci
)
565 dmab
->dev
.dev
= NULL
; /* make it anonymous */
566 snd_dma_reserve_buf(dmab
, snd_dma_pci_buf_id(pci
));
571 static struct pci_device_id snd_hdsp_ids
[] = {
573 .vendor
= PCI_VENDOR_ID_XILINX
,
574 .device
= PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
,
575 .subvendor
= PCI_ANY_ID
,
576 .subdevice
= PCI_ANY_ID
,
577 }, /* RME Hammerfall-DSP */
581 MODULE_DEVICE_TABLE(pci
, snd_hdsp_ids
);
584 static int snd_hdsp_create_alsa_devices(struct snd_card
*card
, struct hdsp
*hdsp
);
585 static int snd_hdsp_create_pcm(struct snd_card
*card
, struct hdsp
*hdsp
);
586 static int snd_hdsp_enable_io (struct hdsp
*hdsp
);
587 static void snd_hdsp_initialize_midi_flush (struct hdsp
*hdsp
);
588 static void snd_hdsp_initialize_channels (struct hdsp
*hdsp
);
589 static int hdsp_fifo_wait(struct hdsp
*hdsp
, int count
, int timeout
);
590 static int hdsp_autosync_ref(struct hdsp
*hdsp
);
591 static int snd_hdsp_set_defaults(struct hdsp
*hdsp
);
592 static void snd_hdsp_9652_enable_mixer (struct hdsp
*hdsp
);
594 static int hdsp_playback_to_output_key (struct hdsp
*hdsp
, int in
, int out
)
596 switch (hdsp
->firmware_rev
) {
598 return (64 * out
) + (32 + (in
));
601 return (32 * out
) + (16 + (in
));
603 return (52 * out
) + (26 + (in
));
607 static int hdsp_input_to_output_key (struct hdsp
*hdsp
, int in
, int out
)
609 switch (hdsp
->firmware_rev
) {
611 return (64 * out
) + in
;
614 return (32 * out
) + in
;
616 return (52 * out
) + in
;
620 static void hdsp_write(struct hdsp
*hdsp
, int reg
, int val
)
622 writel(val
, hdsp
->iobase
+ reg
);
625 static unsigned int hdsp_read(struct hdsp
*hdsp
, int reg
)
627 return readl (hdsp
->iobase
+ reg
);
630 static int hdsp_check_for_iobox (struct hdsp
*hdsp
)
633 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return 0;
634 if (hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_ConfigError
) {
635 snd_printk ("Hammerfall-DSP: no Digiface or Multiface connected!\n");
636 hdsp
->state
&= ~HDSP_FirmwareLoaded
;
643 static int snd_hdsp_load_firmware_from_cache(struct hdsp
*hdsp
) {
648 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
650 snd_printk ("Hammerfall-DSP: loading firmware\n");
652 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_PROGRAM
);
653 hdsp_write (hdsp
, HDSP_fifoData
, 0);
655 if (hdsp_fifo_wait (hdsp
, 0, HDSP_LONG_WAIT
)) {
656 snd_printk ("Hammerfall-DSP: timeout waiting for download preparation\n");
660 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
662 for (i
= 0; i
< 24413; ++i
) {
663 hdsp_write(hdsp
, HDSP_fifoData
, hdsp
->firmware_cache
[i
]);
664 if (hdsp_fifo_wait (hdsp
, 127, HDSP_LONG_WAIT
)) {
665 snd_printk ("Hammerfall-DSP: timeout during firmware loading\n");
672 if (hdsp_fifo_wait (hdsp
, 0, HDSP_LONG_WAIT
)) {
673 snd_printk ("Hammerfall-DSP: timeout at end of firmware loading\n");
677 #ifdef SNDRV_BIG_ENDIAN
678 hdsp
->control2_register
= HDSP_BIGENDIAN_MODE
;
680 hdsp
->control2_register
= 0;
682 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
683 snd_printk ("Hammerfall-DSP: finished firmware loading\n");
686 if (hdsp
->state
& HDSP_InitializationComplete
) {
687 snd_printk(KERN_INFO
"Hammerfall-DSP: firmware loaded from cache, restoring defaults\n");
688 spin_lock_irqsave(&hdsp
->lock
, flags
);
689 snd_hdsp_set_defaults(hdsp
);
690 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
693 hdsp
->state
|= HDSP_FirmwareLoaded
;
698 static int hdsp_get_iobox_version (struct hdsp
*hdsp
)
700 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
702 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_PROGRAM
);
703 hdsp_write (hdsp
, HDSP_fifoData
, 0);
704 if (hdsp_fifo_wait (hdsp
, 0, HDSP_SHORT_WAIT
) < 0)
707 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
708 hdsp_write (hdsp
, HDSP_fifoData
, 0);
710 if (hdsp_fifo_wait (hdsp
, 0, HDSP_SHORT_WAIT
)) {
711 hdsp
->io_type
= Multiface
;
712 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_VERSION_BIT
);
713 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
714 hdsp_fifo_wait (hdsp
, 0, HDSP_SHORT_WAIT
);
716 hdsp
->io_type
= Digiface
;
719 /* firmware was already loaded, get iobox type */
720 if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version1
)
721 hdsp
->io_type
= Multiface
;
723 hdsp
->io_type
= Digiface
;
729 #ifdef HDSP_FW_LOADER
730 static int __devinit
hdsp_request_fw_loader(struct hdsp
*hdsp
);
733 static int hdsp_check_for_firmware (struct hdsp
*hdsp
, int load_on_demand
)
735 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
737 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
738 hdsp
->state
&= ~HDSP_FirmwareLoaded
;
739 if (! load_on_demand
)
741 snd_printk(KERN_ERR
"Hammerfall-DSP: firmware not present.\n");
742 /* try to load firmware */
743 if (! (hdsp
->state
& HDSP_FirmwareCached
)) {
744 #ifdef HDSP_FW_LOADER
745 if (! hdsp_request_fw_loader(hdsp
))
749 "Hammerfall-DSP: No firmware loaded nor "
750 "cached, please upload firmware.\n");
753 if (snd_hdsp_load_firmware_from_cache(hdsp
) != 0) {
755 "Hammerfall-DSP: Firmware loading from "
756 "cache failed, please upload manually.\n");
764 static int hdsp_fifo_wait(struct hdsp
*hdsp
, int count
, int timeout
)
768 /* the fifoStatus registers reports on how many words
769 are available in the command FIFO.
772 for (i
= 0; i
< timeout
; i
++) {
774 if ((int)(hdsp_read (hdsp
, HDSP_fifoStatus
) & 0xff) <= count
)
777 /* not very friendly, but we only do this during a firmware
778 load and changing the mixer, so we just put up with it.
784 snd_printk ("Hammerfall-DSP: wait for FIFO status <= %d failed after %d iterations\n",
789 static int hdsp_read_gain (struct hdsp
*hdsp
, unsigned int addr
)
791 if (addr
>= HDSP_MATRIX_MIXER_SIZE
)
794 return hdsp
->mixer_matrix
[addr
];
797 static int hdsp_write_gain(struct hdsp
*hdsp
, unsigned int addr
, unsigned short data
)
801 if (addr
>= HDSP_MATRIX_MIXER_SIZE
)
804 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) {
806 /* from martin bjornsen:
808 "You can only write dwords to the
809 mixer memory which contain two
810 mixer values in the low and high
811 word. So if you want to change
812 value 0 you have to read value 1
813 from the cache and write both to
814 the first dword in the mixer
818 if (hdsp
->io_type
== H9632
&& addr
>= 512)
821 if (hdsp
->io_type
== H9652
&& addr
>= 1352)
824 hdsp
->mixer_matrix
[addr
] = data
;
827 /* `addr' addresses a 16-bit wide address, but
828 the address space accessed via hdsp_write
829 uses byte offsets. put another way, addr
830 varies from 0 to 1351, but to access the
831 corresponding memory location, we need
832 to access 0 to 2703 ...
836 hdsp_write (hdsp
, 4096 + (ad
*4),
837 (hdsp
->mixer_matrix
[(addr
&0x7fe)+1] << 16) +
838 hdsp
->mixer_matrix
[addr
&0x7fe]);
844 ad
= (addr
<< 16) + data
;
846 if (hdsp_fifo_wait(hdsp
, 127, HDSP_LONG_WAIT
))
849 hdsp_write (hdsp
, HDSP_fifoData
, ad
);
850 hdsp
->mixer_matrix
[addr
] = data
;
857 static int snd_hdsp_use_is_exclusive(struct hdsp
*hdsp
)
862 spin_lock_irqsave(&hdsp
->lock
, flags
);
863 if ((hdsp
->playback_pid
!= hdsp
->capture_pid
) &&
864 (hdsp
->playback_pid
>= 0) && (hdsp
->capture_pid
>= 0))
866 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
870 static int hdsp_external_sample_rate (struct hdsp
*hdsp
)
872 unsigned int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
873 unsigned int rate_bits
= status2
& HDSP_systemFrequencyMask
;
876 case HDSP_systemFrequency32
: return 32000;
877 case HDSP_systemFrequency44_1
: return 44100;
878 case HDSP_systemFrequency48
: return 48000;
879 case HDSP_systemFrequency64
: return 64000;
880 case HDSP_systemFrequency88_2
: return 88200;
881 case HDSP_systemFrequency96
: return 96000;
887 static int hdsp_spdif_sample_rate(struct hdsp
*hdsp
)
889 unsigned int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
890 unsigned int rate_bits
= (status
& HDSP_spdifFrequencyMask
);
892 if (status
& HDSP_SPDIFErrorFlag
)
896 case HDSP_spdifFrequency32KHz
: return 32000;
897 case HDSP_spdifFrequency44_1KHz
: return 44100;
898 case HDSP_spdifFrequency48KHz
: return 48000;
899 case HDSP_spdifFrequency64KHz
: return 64000;
900 case HDSP_spdifFrequency88_2KHz
: return 88200;
901 case HDSP_spdifFrequency96KHz
: return 96000;
902 case HDSP_spdifFrequency128KHz
:
903 if (hdsp
->io_type
== H9632
) return 128000;
905 case HDSP_spdifFrequency176_4KHz
:
906 if (hdsp
->io_type
== H9632
) return 176400;
908 case HDSP_spdifFrequency192KHz
:
909 if (hdsp
->io_type
== H9632
) return 192000;
914 snd_printk ("Hammerfall-DSP: unknown spdif frequency status; bits = 0x%x, status = 0x%x\n", rate_bits
, status
);
918 static void hdsp_compute_period_size(struct hdsp
*hdsp
)
920 hdsp
->period_bytes
= 1 << ((hdsp_decode_latency(hdsp
->control_register
) + 8));
923 static snd_pcm_uframes_t
hdsp_hw_pointer(struct hdsp
*hdsp
)
927 position
= hdsp_read(hdsp
, HDSP_statusRegister
);
929 if (!hdsp
->precise_ptr
)
930 return (position
& HDSP_BufferID
) ? (hdsp
->period_bytes
/ 4) : 0;
932 position
&= HDSP_BufferPositionMask
;
934 position
&= (hdsp
->period_bytes
/2) - 1;
938 static void hdsp_reset_hw_pointer(struct hdsp
*hdsp
)
940 hdsp_write (hdsp
, HDSP_resetPointer
, 0);
943 static void hdsp_start_audio(struct hdsp
*s
)
945 s
->control_register
|= (HDSP_AudioInterruptEnable
| HDSP_Start
);
946 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
949 static void hdsp_stop_audio(struct hdsp
*s
)
951 s
->control_register
&= ~(HDSP_Start
| HDSP_AudioInterruptEnable
);
952 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
955 static void hdsp_silence_playback(struct hdsp
*hdsp
)
957 memset(hdsp
->playback_buffer
, 0, HDSP_DMA_AREA_BYTES
);
960 static int hdsp_set_interrupt_interval(struct hdsp
*s
, unsigned int frames
)
964 spin_lock_irq(&s
->lock
);
973 s
->control_register
&= ~HDSP_LatencyMask
;
974 s
->control_register
|= hdsp_encode_latency(n
);
976 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
978 hdsp_compute_period_size(s
);
980 spin_unlock_irq(&s
->lock
);
985 static int hdsp_set_rate(struct hdsp
*hdsp
, int rate
, int called_internally
)
987 int reject_if_open
= 0;
991 /* ASSUMPTION: hdsp->lock is either held, or
992 there is no need for it (e.g. during module
996 if (!(hdsp
->control_register
& HDSP_ClockModeMaster
)) {
997 if (called_internally
) {
998 /* request from ctl or card initialization */
999 snd_printk(KERN_ERR
"Hammerfall-DSP: device is not running as a clock master: cannot set sample rate.\n");
1002 /* hw_param request while in AutoSync mode */
1003 int external_freq
= hdsp_external_sample_rate(hdsp
);
1004 int spdif_freq
= hdsp_spdif_sample_rate(hdsp
);
1006 if ((spdif_freq
== external_freq
*2) && (hdsp_autosync_ref(hdsp
) >= HDSP_AUTOSYNC_FROM_ADAT1
))
1007 snd_printk(KERN_INFO
"Hammerfall-DSP: Detected ADAT in double speed mode\n");
1008 else if (hdsp
->io_type
== H9632
&& (spdif_freq
== external_freq
*4) && (hdsp_autosync_ref(hdsp
) >= HDSP_AUTOSYNC_FROM_ADAT1
))
1009 snd_printk(KERN_INFO
"Hammerfall-DSP: Detected ADAT in quad speed mode\n");
1010 else if (rate
!= external_freq
) {
1011 snd_printk(KERN_INFO
"Hammerfall-DSP: No AutoSync source for requested rate\n");
1017 current_rate
= hdsp
->system_sample_rate
;
1019 /* Changing from a "single speed" to a "double speed" rate is
1020 not allowed if any substreams are open. This is because
1021 such a change causes a shift in the location of
1022 the DMA buffers and a reduction in the number of available
1025 Note that a similar but essentially insoluble problem
1026 exists for externally-driven rate changes. All we can do
1027 is to flag rate changes in the read/write routines. */
1029 if (rate
> 96000 && hdsp
->io_type
!= H9632
)
1034 if (current_rate
> 48000)
1036 rate_bits
= HDSP_Frequency32KHz
;
1039 if (current_rate
> 48000)
1041 rate_bits
= HDSP_Frequency44_1KHz
;
1044 if (current_rate
> 48000)
1046 rate_bits
= HDSP_Frequency48KHz
;
1049 if (current_rate
<= 48000 || current_rate
> 96000)
1051 rate_bits
= HDSP_Frequency64KHz
;
1054 if (current_rate
<= 48000 || current_rate
> 96000)
1056 rate_bits
= HDSP_Frequency88_2KHz
;
1059 if (current_rate
<= 48000 || current_rate
> 96000)
1061 rate_bits
= HDSP_Frequency96KHz
;
1064 if (current_rate
< 128000)
1066 rate_bits
= HDSP_Frequency128KHz
;
1069 if (current_rate
< 128000)
1071 rate_bits
= HDSP_Frequency176_4KHz
;
1074 if (current_rate
< 128000)
1076 rate_bits
= HDSP_Frequency192KHz
;
1082 if (reject_if_open
&& (hdsp
->capture_pid
>= 0 || hdsp
->playback_pid
>= 0)) {
1083 snd_printk ("Hammerfall-DSP: cannot change speed mode (capture PID = %d, playback PID = %d)\n",
1085 hdsp
->playback_pid
);
1089 hdsp
->control_register
&= ~HDSP_FrequencyMask
;
1090 hdsp
->control_register
|= rate_bits
;
1091 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1093 if (rate
>= 128000) {
1094 hdsp
->channel_map
= channel_map_H9632_qs
;
1095 } else if (rate
> 48000) {
1096 if (hdsp
->io_type
== H9632
)
1097 hdsp
->channel_map
= channel_map_H9632_ds
;
1099 hdsp
->channel_map
= channel_map_ds
;
1101 switch (hdsp
->io_type
) {
1103 hdsp
->channel_map
= channel_map_mf_ss
;
1107 hdsp
->channel_map
= channel_map_df_ss
;
1110 hdsp
->channel_map
= channel_map_H9632_ss
;
1113 /* should never happen */
1118 hdsp
->system_sample_rate
= rate
;
1123 /*----------------------------------------------------------------------------
1125 ----------------------------------------------------------------------------*/
1127 static unsigned char snd_hdsp_midi_read_byte (struct hdsp
*hdsp
, int id
)
1129 /* the hardware already does the relevant bit-mask with 0xff */
1131 return hdsp_read(hdsp
, HDSP_midiDataIn1
);
1133 return hdsp_read(hdsp
, HDSP_midiDataIn0
);
1136 static void snd_hdsp_midi_write_byte (struct hdsp
*hdsp
, int id
, int val
)
1138 /* the hardware already does the relevant bit-mask with 0xff */
1140 hdsp_write(hdsp
, HDSP_midiDataOut1
, val
);
1142 hdsp_write(hdsp
, HDSP_midiDataOut0
, val
);
1145 static int snd_hdsp_midi_input_available (struct hdsp
*hdsp
, int id
)
1148 return (hdsp_read(hdsp
, HDSP_midiStatusIn1
) & 0xff);
1150 return (hdsp_read(hdsp
, HDSP_midiStatusIn0
) & 0xff);
1153 static int snd_hdsp_midi_output_possible (struct hdsp
*hdsp
, int id
)
1155 int fifo_bytes_used
;
1158 fifo_bytes_used
= hdsp_read(hdsp
, HDSP_midiStatusOut1
) & 0xff;
1160 fifo_bytes_used
= hdsp_read(hdsp
, HDSP_midiStatusOut0
) & 0xff;
1162 if (fifo_bytes_used
< 128)
1163 return 128 - fifo_bytes_used
;
1168 static void snd_hdsp_flush_midi_input (struct hdsp
*hdsp
, int id
)
1170 while (snd_hdsp_midi_input_available (hdsp
, id
))
1171 snd_hdsp_midi_read_byte (hdsp
, id
);
1174 static int snd_hdsp_midi_output_write (struct hdsp_midi
*hmidi
)
1176 unsigned long flags
;
1180 unsigned char buf
[128];
1182 /* Output is not interrupt driven */
1184 spin_lock_irqsave (&hmidi
->lock
, flags
);
1185 if (hmidi
->output
) {
1186 if (!snd_rawmidi_transmit_empty (hmidi
->output
)) {
1187 if ((n_pending
= snd_hdsp_midi_output_possible (hmidi
->hdsp
, hmidi
->id
)) > 0) {
1188 if (n_pending
> (int)sizeof (buf
))
1189 n_pending
= sizeof (buf
);
1191 if ((to_write
= snd_rawmidi_transmit (hmidi
->output
, buf
, n_pending
)) > 0) {
1192 for (i
= 0; i
< to_write
; ++i
)
1193 snd_hdsp_midi_write_byte (hmidi
->hdsp
, hmidi
->id
, buf
[i
]);
1198 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1202 static int snd_hdsp_midi_input_read (struct hdsp_midi
*hmidi
)
1204 unsigned char buf
[128]; /* this buffer is designed to match the MIDI input FIFO size */
1205 unsigned long flags
;
1209 spin_lock_irqsave (&hmidi
->lock
, flags
);
1210 if ((n_pending
= snd_hdsp_midi_input_available (hmidi
->hdsp
, hmidi
->id
)) > 0) {
1212 if (n_pending
> (int)sizeof (buf
))
1213 n_pending
= sizeof (buf
);
1214 for (i
= 0; i
< n_pending
; ++i
)
1215 buf
[i
] = snd_hdsp_midi_read_byte (hmidi
->hdsp
, hmidi
->id
);
1217 snd_rawmidi_receive (hmidi
->input
, buf
, n_pending
);
1219 /* flush the MIDI input FIFO */
1221 snd_hdsp_midi_read_byte (hmidi
->hdsp
, hmidi
->id
);
1226 hmidi
->hdsp
->control_register
|= HDSP_Midi1InterruptEnable
;
1228 hmidi
->hdsp
->control_register
|= HDSP_Midi0InterruptEnable
;
1229 hdsp_write(hmidi
->hdsp
, HDSP_controlRegister
, hmidi
->hdsp
->control_register
);
1230 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1231 return snd_hdsp_midi_output_write (hmidi
);
1234 static void snd_hdsp_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1237 struct hdsp_midi
*hmidi
;
1238 unsigned long flags
;
1241 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1243 ie
= hmidi
->id
? HDSP_Midi1InterruptEnable
: HDSP_Midi0InterruptEnable
;
1244 spin_lock_irqsave (&hdsp
->lock
, flags
);
1246 if (!(hdsp
->control_register
& ie
)) {
1247 snd_hdsp_flush_midi_input (hdsp
, hmidi
->id
);
1248 hdsp
->control_register
|= ie
;
1251 hdsp
->control_register
&= ~ie
;
1252 tasklet_kill(&hdsp
->midi_tasklet
);
1255 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1256 spin_unlock_irqrestore (&hdsp
->lock
, flags
);
1259 static void snd_hdsp_midi_output_timer(unsigned long data
)
1261 struct hdsp_midi
*hmidi
= (struct hdsp_midi
*) data
;
1262 unsigned long flags
;
1264 snd_hdsp_midi_output_write(hmidi
);
1265 spin_lock_irqsave (&hmidi
->lock
, flags
);
1267 /* this does not bump hmidi->istimer, because the
1268 kernel automatically removed the timer when it
1269 expired, and we are now adding it back, thus
1270 leaving istimer wherever it was set before.
1273 if (hmidi
->istimer
) {
1274 hmidi
->timer
.expires
= 1 + jiffies
;
1275 add_timer(&hmidi
->timer
);
1278 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1281 static void snd_hdsp_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1283 struct hdsp_midi
*hmidi
;
1284 unsigned long flags
;
1286 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1287 spin_lock_irqsave (&hmidi
->lock
, flags
);
1289 if (!hmidi
->istimer
) {
1290 init_timer(&hmidi
->timer
);
1291 hmidi
->timer
.function
= snd_hdsp_midi_output_timer
;
1292 hmidi
->timer
.data
= (unsigned long) hmidi
;
1293 hmidi
->timer
.expires
= 1 + jiffies
;
1294 add_timer(&hmidi
->timer
);
1298 if (hmidi
->istimer
&& --hmidi
->istimer
<= 0)
1299 del_timer (&hmidi
->timer
);
1301 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1303 snd_hdsp_midi_output_write(hmidi
);
1306 static int snd_hdsp_midi_input_open(struct snd_rawmidi_substream
*substream
)
1308 struct hdsp_midi
*hmidi
;
1310 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1311 spin_lock_irq (&hmidi
->lock
);
1312 snd_hdsp_flush_midi_input (hmidi
->hdsp
, hmidi
->id
);
1313 hmidi
->input
= substream
;
1314 spin_unlock_irq (&hmidi
->lock
);
1319 static int snd_hdsp_midi_output_open(struct snd_rawmidi_substream
*substream
)
1321 struct hdsp_midi
*hmidi
;
1323 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1324 spin_lock_irq (&hmidi
->lock
);
1325 hmidi
->output
= substream
;
1326 spin_unlock_irq (&hmidi
->lock
);
1331 static int snd_hdsp_midi_input_close(struct snd_rawmidi_substream
*substream
)
1333 struct hdsp_midi
*hmidi
;
1335 snd_hdsp_midi_input_trigger (substream
, 0);
1337 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1338 spin_lock_irq (&hmidi
->lock
);
1339 hmidi
->input
= NULL
;
1340 spin_unlock_irq (&hmidi
->lock
);
1345 static int snd_hdsp_midi_output_close(struct snd_rawmidi_substream
*substream
)
1347 struct hdsp_midi
*hmidi
;
1349 snd_hdsp_midi_output_trigger (substream
, 0);
1351 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1352 spin_lock_irq (&hmidi
->lock
);
1353 hmidi
->output
= NULL
;
1354 spin_unlock_irq (&hmidi
->lock
);
1359 static struct snd_rawmidi_ops snd_hdsp_midi_output
=
1361 .open
= snd_hdsp_midi_output_open
,
1362 .close
= snd_hdsp_midi_output_close
,
1363 .trigger
= snd_hdsp_midi_output_trigger
,
1366 static struct snd_rawmidi_ops snd_hdsp_midi_input
=
1368 .open
= snd_hdsp_midi_input_open
,
1369 .close
= snd_hdsp_midi_input_close
,
1370 .trigger
= snd_hdsp_midi_input_trigger
,
1373 static int snd_hdsp_create_midi (struct snd_card
*card
, struct hdsp
*hdsp
, int id
)
1377 hdsp
->midi
[id
].id
= id
;
1378 hdsp
->midi
[id
].rmidi
= NULL
;
1379 hdsp
->midi
[id
].input
= NULL
;
1380 hdsp
->midi
[id
].output
= NULL
;
1381 hdsp
->midi
[id
].hdsp
= hdsp
;
1382 hdsp
->midi
[id
].istimer
= 0;
1383 hdsp
->midi
[id
].pending
= 0;
1384 spin_lock_init (&hdsp
->midi
[id
].lock
);
1386 sprintf (buf
, "%s MIDI %d", card
->shortname
, id
+1);
1387 if (snd_rawmidi_new (card
, buf
, id
, 1, 1, &hdsp
->midi
[id
].rmidi
) < 0)
1390 sprintf (hdsp
->midi
[id
].rmidi
->name
, "%s MIDI %d", card
->id
, id
+1);
1391 hdsp
->midi
[id
].rmidi
->private_data
= &hdsp
->midi
[id
];
1393 snd_rawmidi_set_ops (hdsp
->midi
[id
].rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_hdsp_midi_output
);
1394 snd_rawmidi_set_ops (hdsp
->midi
[id
].rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_hdsp_midi_input
);
1396 hdsp
->midi
[id
].rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_OUTPUT
|
1397 SNDRV_RAWMIDI_INFO_INPUT
|
1398 SNDRV_RAWMIDI_INFO_DUPLEX
;
1403 /*-----------------------------------------------------------------------------
1405 ----------------------------------------------------------------------------*/
1407 static u32
snd_hdsp_convert_from_aes(struct snd_aes_iec958
*aes
)
1410 val
|= (aes
->status
[0] & IEC958_AES0_PROFESSIONAL
) ? HDSP_SPDIFProfessional
: 0;
1411 val
|= (aes
->status
[0] & IEC958_AES0_NONAUDIO
) ? HDSP_SPDIFNonAudio
: 0;
1412 if (val
& HDSP_SPDIFProfessional
)
1413 val
|= (aes
->status
[0] & IEC958_AES0_PRO_EMPHASIS_5015
) ? HDSP_SPDIFEmphasis
: 0;
1415 val
|= (aes
->status
[0] & IEC958_AES0_CON_EMPHASIS_5015
) ? HDSP_SPDIFEmphasis
: 0;
1419 static void snd_hdsp_convert_to_aes(struct snd_aes_iec958
*aes
, u32 val
)
1421 aes
->status
[0] = ((val
& HDSP_SPDIFProfessional
) ? IEC958_AES0_PROFESSIONAL
: 0) |
1422 ((val
& HDSP_SPDIFNonAudio
) ? IEC958_AES0_NONAUDIO
: 0);
1423 if (val
& HDSP_SPDIFProfessional
)
1424 aes
->status
[0] |= (val
& HDSP_SPDIFEmphasis
) ? IEC958_AES0_PRO_EMPHASIS_5015
: 0;
1426 aes
->status
[0] |= (val
& HDSP_SPDIFEmphasis
) ? IEC958_AES0_CON_EMPHASIS_5015
: 0;
1429 static int snd_hdsp_control_spdif_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1431 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1436 static int snd_hdsp_control_spdif_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1438 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1440 snd_hdsp_convert_to_aes(&ucontrol
->value
.iec958
, hdsp
->creg_spdif
);
1444 static int snd_hdsp_control_spdif_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1446 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1450 val
= snd_hdsp_convert_from_aes(&ucontrol
->value
.iec958
);
1451 spin_lock_irq(&hdsp
->lock
);
1452 change
= val
!= hdsp
->creg_spdif
;
1453 hdsp
->creg_spdif
= val
;
1454 spin_unlock_irq(&hdsp
->lock
);
1458 static int snd_hdsp_control_spdif_stream_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1460 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1465 static int snd_hdsp_control_spdif_stream_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1467 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1469 snd_hdsp_convert_to_aes(&ucontrol
->value
.iec958
, hdsp
->creg_spdif_stream
);
1473 static int snd_hdsp_control_spdif_stream_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1475 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1479 val
= snd_hdsp_convert_from_aes(&ucontrol
->value
.iec958
);
1480 spin_lock_irq(&hdsp
->lock
);
1481 change
= val
!= hdsp
->creg_spdif_stream
;
1482 hdsp
->creg_spdif_stream
= val
;
1483 hdsp
->control_register
&= ~(HDSP_SPDIFProfessional
| HDSP_SPDIFNonAudio
| HDSP_SPDIFEmphasis
);
1484 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
|= val
);
1485 spin_unlock_irq(&hdsp
->lock
);
1489 static int snd_hdsp_control_spdif_mask_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1491 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1496 static int snd_hdsp_control_spdif_mask_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1498 ucontrol
->value
.iec958
.status
[0] = kcontrol
->private_value
;
1502 #define HDSP_SPDIF_IN(xname, xindex) \
1503 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1506 .info = snd_hdsp_info_spdif_in, \
1507 .get = snd_hdsp_get_spdif_in, \
1508 .put = snd_hdsp_put_spdif_in }
1510 static unsigned int hdsp_spdif_in(struct hdsp
*hdsp
)
1512 return hdsp_decode_spdif_in(hdsp
->control_register
& HDSP_SPDIFInputMask
);
1515 static int hdsp_set_spdif_input(struct hdsp
*hdsp
, int in
)
1517 hdsp
->control_register
&= ~HDSP_SPDIFInputMask
;
1518 hdsp
->control_register
|= hdsp_encode_spdif_in(in
);
1519 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1523 static int snd_hdsp_info_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1525 static char *texts
[4] = {"Optical", "Coaxial", "Internal", "AES"};
1526 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1528 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1530 uinfo
->value
.enumerated
.items
= ((hdsp
->io_type
== H9632
) ? 4 : 3);
1531 if (uinfo
->value
.enumerated
.item
> ((hdsp
->io_type
== H9632
) ? 3 : 2))
1532 uinfo
->value
.enumerated
.item
= ((hdsp
->io_type
== H9632
) ? 3 : 2);
1533 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
1537 static int snd_hdsp_get_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1539 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1541 ucontrol
->value
.enumerated
.item
[0] = hdsp_spdif_in(hdsp
);
1545 static int snd_hdsp_put_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1547 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1551 if (!snd_hdsp_use_is_exclusive(hdsp
))
1553 val
= ucontrol
->value
.enumerated
.item
[0] % ((hdsp
->io_type
== H9632
) ? 4 : 3);
1554 spin_lock_irq(&hdsp
->lock
);
1555 change
= val
!= hdsp_spdif_in(hdsp
);
1557 hdsp_set_spdif_input(hdsp
, val
);
1558 spin_unlock_irq(&hdsp
->lock
);
1562 #define HDSP_SPDIF_OUT(xname, xindex) \
1563 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1564 .info = snd_hdsp_info_spdif_bits, \
1565 .get = snd_hdsp_get_spdif_out, .put = snd_hdsp_put_spdif_out }
1567 static int hdsp_spdif_out(struct hdsp
*hdsp
)
1569 return (hdsp
->control_register
& HDSP_SPDIFOpticalOut
) ? 1 : 0;
1572 static int hdsp_set_spdif_output(struct hdsp
*hdsp
, int out
)
1575 hdsp
->control_register
|= HDSP_SPDIFOpticalOut
;
1577 hdsp
->control_register
&= ~HDSP_SPDIFOpticalOut
;
1578 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1582 static int snd_hdsp_info_spdif_bits(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1584 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1586 uinfo
->value
.integer
.min
= 0;
1587 uinfo
->value
.integer
.max
= 1;
1591 static int snd_hdsp_get_spdif_out(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1593 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1595 ucontrol
->value
.integer
.value
[0] = hdsp_spdif_out(hdsp
);
1599 static int snd_hdsp_put_spdif_out(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1601 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1605 if (!snd_hdsp_use_is_exclusive(hdsp
))
1607 val
= ucontrol
->value
.integer
.value
[0] & 1;
1608 spin_lock_irq(&hdsp
->lock
);
1609 change
= (int)val
!= hdsp_spdif_out(hdsp
);
1610 hdsp_set_spdif_output(hdsp
, val
);
1611 spin_unlock_irq(&hdsp
->lock
);
1615 #define HDSP_SPDIF_PROFESSIONAL(xname, xindex) \
1616 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1617 .info = snd_hdsp_info_spdif_bits, \
1618 .get = snd_hdsp_get_spdif_professional, .put = snd_hdsp_put_spdif_professional }
1620 static int hdsp_spdif_professional(struct hdsp
*hdsp
)
1622 return (hdsp
->control_register
& HDSP_SPDIFProfessional
) ? 1 : 0;
1625 static int hdsp_set_spdif_professional(struct hdsp
*hdsp
, int val
)
1628 hdsp
->control_register
|= HDSP_SPDIFProfessional
;
1630 hdsp
->control_register
&= ~HDSP_SPDIFProfessional
;
1631 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1635 static int snd_hdsp_get_spdif_professional(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1637 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1639 ucontrol
->value
.integer
.value
[0] = hdsp_spdif_professional(hdsp
);
1643 static int snd_hdsp_put_spdif_professional(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1645 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1649 if (!snd_hdsp_use_is_exclusive(hdsp
))
1651 val
= ucontrol
->value
.integer
.value
[0] & 1;
1652 spin_lock_irq(&hdsp
->lock
);
1653 change
= (int)val
!= hdsp_spdif_professional(hdsp
);
1654 hdsp_set_spdif_professional(hdsp
, val
);
1655 spin_unlock_irq(&hdsp
->lock
);
1659 #define HDSP_SPDIF_EMPHASIS(xname, xindex) \
1660 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1661 .info = snd_hdsp_info_spdif_bits, \
1662 .get = snd_hdsp_get_spdif_emphasis, .put = snd_hdsp_put_spdif_emphasis }
1664 static int hdsp_spdif_emphasis(struct hdsp
*hdsp
)
1666 return (hdsp
->control_register
& HDSP_SPDIFEmphasis
) ? 1 : 0;
1669 static int hdsp_set_spdif_emphasis(struct hdsp
*hdsp
, int val
)
1672 hdsp
->control_register
|= HDSP_SPDIFEmphasis
;
1674 hdsp
->control_register
&= ~HDSP_SPDIFEmphasis
;
1675 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1679 static int snd_hdsp_get_spdif_emphasis(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1681 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1683 ucontrol
->value
.integer
.value
[0] = hdsp_spdif_emphasis(hdsp
);
1687 static int snd_hdsp_put_spdif_emphasis(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1689 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1693 if (!snd_hdsp_use_is_exclusive(hdsp
))
1695 val
= ucontrol
->value
.integer
.value
[0] & 1;
1696 spin_lock_irq(&hdsp
->lock
);
1697 change
= (int)val
!= hdsp_spdif_emphasis(hdsp
);
1698 hdsp_set_spdif_emphasis(hdsp
, val
);
1699 spin_unlock_irq(&hdsp
->lock
);
1703 #define HDSP_SPDIF_NON_AUDIO(xname, xindex) \
1704 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1705 .info = snd_hdsp_info_spdif_bits, \
1706 .get = snd_hdsp_get_spdif_nonaudio, .put = snd_hdsp_put_spdif_nonaudio }
1708 static int hdsp_spdif_nonaudio(struct hdsp
*hdsp
)
1710 return (hdsp
->control_register
& HDSP_SPDIFNonAudio
) ? 1 : 0;
1713 static int hdsp_set_spdif_nonaudio(struct hdsp
*hdsp
, int val
)
1716 hdsp
->control_register
|= HDSP_SPDIFNonAudio
;
1718 hdsp
->control_register
&= ~HDSP_SPDIFNonAudio
;
1719 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1723 static int snd_hdsp_get_spdif_nonaudio(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1725 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1727 ucontrol
->value
.integer
.value
[0] = hdsp_spdif_nonaudio(hdsp
);
1731 static int snd_hdsp_put_spdif_nonaudio(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1733 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1737 if (!snd_hdsp_use_is_exclusive(hdsp
))
1739 val
= ucontrol
->value
.integer
.value
[0] & 1;
1740 spin_lock_irq(&hdsp
->lock
);
1741 change
= (int)val
!= hdsp_spdif_nonaudio(hdsp
);
1742 hdsp_set_spdif_nonaudio(hdsp
, val
);
1743 spin_unlock_irq(&hdsp
->lock
);
1747 #define HDSP_SPDIF_SAMPLE_RATE(xname, xindex) \
1748 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1751 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1752 .info = snd_hdsp_info_spdif_sample_rate, \
1753 .get = snd_hdsp_get_spdif_sample_rate \
1756 static int snd_hdsp_info_spdif_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1758 static char *texts
[] = {"32000", "44100", "48000", "64000", "88200", "96000", "None", "128000", "176400", "192000"};
1759 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1761 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1763 uinfo
->value
.enumerated
.items
= (hdsp
->io_type
== H9632
) ? 10 : 7;
1764 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
1765 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
1766 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
1770 static int snd_hdsp_get_spdif_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1772 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1774 switch (hdsp_spdif_sample_rate(hdsp
)) {
1776 ucontrol
->value
.enumerated
.item
[0] = 0;
1779 ucontrol
->value
.enumerated
.item
[0] = 1;
1782 ucontrol
->value
.enumerated
.item
[0] = 2;
1785 ucontrol
->value
.enumerated
.item
[0] = 3;
1788 ucontrol
->value
.enumerated
.item
[0] = 4;
1791 ucontrol
->value
.enumerated
.item
[0] = 5;
1794 ucontrol
->value
.enumerated
.item
[0] = 7;
1797 ucontrol
->value
.enumerated
.item
[0] = 8;
1800 ucontrol
->value
.enumerated
.item
[0] = 9;
1803 ucontrol
->value
.enumerated
.item
[0] = 6;
1808 #define HDSP_SYSTEM_SAMPLE_RATE(xname, xindex) \
1809 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1812 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1813 .info = snd_hdsp_info_system_sample_rate, \
1814 .get = snd_hdsp_get_system_sample_rate \
1817 static int snd_hdsp_info_system_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1819 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1824 static int snd_hdsp_get_system_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1826 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1828 ucontrol
->value
.enumerated
.item
[0] = hdsp
->system_sample_rate
;
1832 #define HDSP_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
1833 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1836 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1837 .info = snd_hdsp_info_autosync_sample_rate, \
1838 .get = snd_hdsp_get_autosync_sample_rate \
1841 static int snd_hdsp_info_autosync_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1843 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1844 static char *texts
[] = {"32000", "44100", "48000", "64000", "88200", "96000", "None", "128000", "176400", "192000"};
1845 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1847 uinfo
->value
.enumerated
.items
= (hdsp
->io_type
== H9632
) ? 10 : 7 ;
1848 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
1849 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
1850 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
1854 static int snd_hdsp_get_autosync_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1856 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1858 switch (hdsp_external_sample_rate(hdsp
)) {
1860 ucontrol
->value
.enumerated
.item
[0] = 0;
1863 ucontrol
->value
.enumerated
.item
[0] = 1;
1866 ucontrol
->value
.enumerated
.item
[0] = 2;
1869 ucontrol
->value
.enumerated
.item
[0] = 3;
1872 ucontrol
->value
.enumerated
.item
[0] = 4;
1875 ucontrol
->value
.enumerated
.item
[0] = 5;
1878 ucontrol
->value
.enumerated
.item
[0] = 7;
1881 ucontrol
->value
.enumerated
.item
[0] = 8;
1884 ucontrol
->value
.enumerated
.item
[0] = 9;
1887 ucontrol
->value
.enumerated
.item
[0] = 6;
1892 #define HDSP_SYSTEM_CLOCK_MODE(xname, xindex) \
1893 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1896 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1897 .info = snd_hdsp_info_system_clock_mode, \
1898 .get = snd_hdsp_get_system_clock_mode \
1901 static int hdsp_system_clock_mode(struct hdsp
*hdsp
)
1903 if (hdsp
->control_register
& HDSP_ClockModeMaster
)
1905 else if (hdsp_external_sample_rate(hdsp
) != hdsp
->system_sample_rate
)
1910 static int snd_hdsp_info_system_clock_mode(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1912 static char *texts
[] = {"Master", "Slave" };
1914 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1916 uinfo
->value
.enumerated
.items
= 2;
1917 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
1918 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
1919 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
1923 static int snd_hdsp_get_system_clock_mode(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1925 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1927 ucontrol
->value
.enumerated
.item
[0] = hdsp_system_clock_mode(hdsp
);
1931 #define HDSP_CLOCK_SOURCE(xname, xindex) \
1932 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1935 .info = snd_hdsp_info_clock_source, \
1936 .get = snd_hdsp_get_clock_source, \
1937 .put = snd_hdsp_put_clock_source \
1940 static int hdsp_clock_source(struct hdsp
*hdsp
)
1942 if (hdsp
->control_register
& HDSP_ClockModeMaster
) {
1943 switch (hdsp
->system_sample_rate
) {
1970 static int hdsp_set_clock_source(struct hdsp
*hdsp
, int mode
)
1974 case HDSP_CLOCK_SOURCE_AUTOSYNC
:
1975 if (hdsp_external_sample_rate(hdsp
) != 0) {
1976 if (!hdsp_set_rate(hdsp
, hdsp_external_sample_rate(hdsp
), 1)) {
1977 hdsp
->control_register
&= ~HDSP_ClockModeMaster
;
1978 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1983 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ
:
1986 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ
:
1989 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ
:
1992 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ
:
1995 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ
:
1998 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ
:
2001 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ
:
2004 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ
:
2007 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ
:
2013 hdsp
->control_register
|= HDSP_ClockModeMaster
;
2014 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2015 hdsp_set_rate(hdsp
, rate
, 1);
2019 static int snd_hdsp_info_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2021 static char *texts
[] = {"AutoSync", "Internal 32.0 kHz", "Internal 44.1 kHz", "Internal 48.0 kHz", "Internal 64.0 kHz", "Internal 88.2 kHz", "Internal 96.0 kHz", "Internal 128 kHz", "Internal 176.4 kHz", "Internal 192.0 KHz" };
2022 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2024 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2026 if (hdsp
->io_type
== H9632
)
2027 uinfo
->value
.enumerated
.items
= 10;
2029 uinfo
->value
.enumerated
.items
= 7;
2030 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2031 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2032 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2036 static int snd_hdsp_get_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2038 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2040 ucontrol
->value
.enumerated
.item
[0] = hdsp_clock_source(hdsp
);
2044 static int snd_hdsp_put_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2046 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2050 if (!snd_hdsp_use_is_exclusive(hdsp
))
2052 val
= ucontrol
->value
.enumerated
.item
[0];
2053 if (val
< 0) val
= 0;
2054 if (hdsp
->io_type
== H9632
) {
2061 spin_lock_irq(&hdsp
->lock
);
2062 if (val
!= hdsp_clock_source(hdsp
))
2063 change
= (hdsp_set_clock_source(hdsp
, val
) == 0) ? 1 : 0;
2066 spin_unlock_irq(&hdsp
->lock
);
2070 static int snd_hdsp_info_clock_source_lock(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2072 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2074 uinfo
->value
.integer
.min
= 0;
2075 uinfo
->value
.integer
.max
= 1;
2079 static int snd_hdsp_get_clock_source_lock(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2081 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2083 ucontrol
->value
.integer
.value
[0] = hdsp
->clock_source_locked
;
2087 static int snd_hdsp_put_clock_source_lock(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2089 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2092 change
= (int)ucontrol
->value
.integer
.value
[0] != hdsp
->clock_source_locked
;
2094 hdsp
->clock_source_locked
= ucontrol
->value
.integer
.value
[0];
2098 #define HDSP_DA_GAIN(xname, xindex) \
2099 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2102 .info = snd_hdsp_info_da_gain, \
2103 .get = snd_hdsp_get_da_gain, \
2104 .put = snd_hdsp_put_da_gain \
2107 static int hdsp_da_gain(struct hdsp
*hdsp
)
2109 switch (hdsp
->control_register
& HDSP_DAGainMask
) {
2110 case HDSP_DAGainHighGain
:
2112 case HDSP_DAGainPlus4dBu
:
2114 case HDSP_DAGainMinus10dBV
:
2121 static int hdsp_set_da_gain(struct hdsp
*hdsp
, int mode
)
2123 hdsp
->control_register
&= ~HDSP_DAGainMask
;
2126 hdsp
->control_register
|= HDSP_DAGainHighGain
;
2129 hdsp
->control_register
|= HDSP_DAGainPlus4dBu
;
2132 hdsp
->control_register
|= HDSP_DAGainMinus10dBV
;
2138 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2142 static int snd_hdsp_info_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2144 static char *texts
[] = {"Hi Gain", "+4 dBu", "-10 dbV"};
2146 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2148 uinfo
->value
.enumerated
.items
= 3;
2149 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2150 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2151 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2155 static int snd_hdsp_get_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2157 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2159 ucontrol
->value
.enumerated
.item
[0] = hdsp_da_gain(hdsp
);
2163 static int snd_hdsp_put_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2165 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2169 if (!snd_hdsp_use_is_exclusive(hdsp
))
2171 val
= ucontrol
->value
.enumerated
.item
[0];
2172 if (val
< 0) val
= 0;
2173 if (val
> 2) val
= 2;
2174 spin_lock_irq(&hdsp
->lock
);
2175 if (val
!= hdsp_da_gain(hdsp
))
2176 change
= (hdsp_set_da_gain(hdsp
, val
) == 0) ? 1 : 0;
2179 spin_unlock_irq(&hdsp
->lock
);
2183 #define HDSP_AD_GAIN(xname, xindex) \
2184 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2187 .info = snd_hdsp_info_ad_gain, \
2188 .get = snd_hdsp_get_ad_gain, \
2189 .put = snd_hdsp_put_ad_gain \
2192 static int hdsp_ad_gain(struct hdsp
*hdsp
)
2194 switch (hdsp
->control_register
& HDSP_ADGainMask
) {
2195 case HDSP_ADGainMinus10dBV
:
2197 case HDSP_ADGainPlus4dBu
:
2199 case HDSP_ADGainLowGain
:
2206 static int hdsp_set_ad_gain(struct hdsp
*hdsp
, int mode
)
2208 hdsp
->control_register
&= ~HDSP_ADGainMask
;
2211 hdsp
->control_register
|= HDSP_ADGainMinus10dBV
;
2214 hdsp
->control_register
|= HDSP_ADGainPlus4dBu
;
2217 hdsp
->control_register
|= HDSP_ADGainLowGain
;
2223 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2227 static int snd_hdsp_info_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2229 static char *texts
[] = {"-10 dBV", "+4 dBu", "Lo Gain"};
2231 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2233 uinfo
->value
.enumerated
.items
= 3;
2234 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2235 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2236 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2240 static int snd_hdsp_get_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2242 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2244 ucontrol
->value
.enumerated
.item
[0] = hdsp_ad_gain(hdsp
);
2248 static int snd_hdsp_put_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2250 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2254 if (!snd_hdsp_use_is_exclusive(hdsp
))
2256 val
= ucontrol
->value
.enumerated
.item
[0];
2257 if (val
< 0) val
= 0;
2258 if (val
> 2) val
= 2;
2259 spin_lock_irq(&hdsp
->lock
);
2260 if (val
!= hdsp_ad_gain(hdsp
))
2261 change
= (hdsp_set_ad_gain(hdsp
, val
) == 0) ? 1 : 0;
2264 spin_unlock_irq(&hdsp
->lock
);
2268 #define HDSP_PHONE_GAIN(xname, xindex) \
2269 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2272 .info = snd_hdsp_info_phone_gain, \
2273 .get = snd_hdsp_get_phone_gain, \
2274 .put = snd_hdsp_put_phone_gain \
2277 static int hdsp_phone_gain(struct hdsp
*hdsp
)
2279 switch (hdsp
->control_register
& HDSP_PhoneGainMask
) {
2280 case HDSP_PhoneGain0dB
:
2282 case HDSP_PhoneGainMinus6dB
:
2284 case HDSP_PhoneGainMinus12dB
:
2291 static int hdsp_set_phone_gain(struct hdsp
*hdsp
, int mode
)
2293 hdsp
->control_register
&= ~HDSP_PhoneGainMask
;
2296 hdsp
->control_register
|= HDSP_PhoneGain0dB
;
2299 hdsp
->control_register
|= HDSP_PhoneGainMinus6dB
;
2302 hdsp
->control_register
|= HDSP_PhoneGainMinus12dB
;
2308 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2312 static int snd_hdsp_info_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2314 static char *texts
[] = {"0 dB", "-6 dB", "-12 dB"};
2316 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2318 uinfo
->value
.enumerated
.items
= 3;
2319 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2320 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2321 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2325 static int snd_hdsp_get_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2327 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2329 ucontrol
->value
.enumerated
.item
[0] = hdsp_phone_gain(hdsp
);
2333 static int snd_hdsp_put_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2335 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2339 if (!snd_hdsp_use_is_exclusive(hdsp
))
2341 val
= ucontrol
->value
.enumerated
.item
[0];
2342 if (val
< 0) val
= 0;
2343 if (val
> 2) val
= 2;
2344 spin_lock_irq(&hdsp
->lock
);
2345 if (val
!= hdsp_phone_gain(hdsp
))
2346 change
= (hdsp_set_phone_gain(hdsp
, val
) == 0) ? 1 : 0;
2349 spin_unlock_irq(&hdsp
->lock
);
2353 #define HDSP_XLR_BREAKOUT_CABLE(xname, xindex) \
2354 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2357 .info = snd_hdsp_info_xlr_breakout_cable, \
2358 .get = snd_hdsp_get_xlr_breakout_cable, \
2359 .put = snd_hdsp_put_xlr_breakout_cable \
2362 static int hdsp_xlr_breakout_cable(struct hdsp
*hdsp
)
2364 if (hdsp
->control_register
& HDSP_XLRBreakoutCable
)
2369 static int hdsp_set_xlr_breakout_cable(struct hdsp
*hdsp
, int mode
)
2372 hdsp
->control_register
|= HDSP_XLRBreakoutCable
;
2374 hdsp
->control_register
&= ~HDSP_XLRBreakoutCable
;
2375 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2379 static int snd_hdsp_info_xlr_breakout_cable(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2381 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2383 uinfo
->value
.integer
.min
= 0;
2384 uinfo
->value
.integer
.max
= 1;
2388 static int snd_hdsp_get_xlr_breakout_cable(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2390 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2392 ucontrol
->value
.enumerated
.item
[0] = hdsp_xlr_breakout_cable(hdsp
);
2396 static int snd_hdsp_put_xlr_breakout_cable(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2398 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2402 if (!snd_hdsp_use_is_exclusive(hdsp
))
2404 val
= ucontrol
->value
.integer
.value
[0] & 1;
2405 spin_lock_irq(&hdsp
->lock
);
2406 change
= (int)val
!= hdsp_xlr_breakout_cable(hdsp
);
2407 hdsp_set_xlr_breakout_cable(hdsp
, val
);
2408 spin_unlock_irq(&hdsp
->lock
);
2412 /* (De)activates old RME Analog Extension Board
2413 These are connected to the internal ADAT connector
2414 Switching this on desactivates external ADAT
2416 #define HDSP_AEB(xname, xindex) \
2417 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2420 .info = snd_hdsp_info_aeb, \
2421 .get = snd_hdsp_get_aeb, \
2422 .put = snd_hdsp_put_aeb \
2425 static int hdsp_aeb(struct hdsp
*hdsp
)
2427 if (hdsp
->control_register
& HDSP_AnalogExtensionBoard
)
2432 static int hdsp_set_aeb(struct hdsp
*hdsp
, int mode
)
2435 hdsp
->control_register
|= HDSP_AnalogExtensionBoard
;
2437 hdsp
->control_register
&= ~HDSP_AnalogExtensionBoard
;
2438 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2442 static int snd_hdsp_info_aeb(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2444 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2446 uinfo
->value
.integer
.min
= 0;
2447 uinfo
->value
.integer
.max
= 1;
2451 static int snd_hdsp_get_aeb(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2453 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2455 ucontrol
->value
.enumerated
.item
[0] = hdsp_aeb(hdsp
);
2459 static int snd_hdsp_put_aeb(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2461 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2465 if (!snd_hdsp_use_is_exclusive(hdsp
))
2467 val
= ucontrol
->value
.integer
.value
[0] & 1;
2468 spin_lock_irq(&hdsp
->lock
);
2469 change
= (int)val
!= hdsp_aeb(hdsp
);
2470 hdsp_set_aeb(hdsp
, val
);
2471 spin_unlock_irq(&hdsp
->lock
);
2475 #define HDSP_PREF_SYNC_REF(xname, xindex) \
2476 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2479 .info = snd_hdsp_info_pref_sync_ref, \
2480 .get = snd_hdsp_get_pref_sync_ref, \
2481 .put = snd_hdsp_put_pref_sync_ref \
2484 static int hdsp_pref_sync_ref(struct hdsp
*hdsp
)
2486 /* Notice that this looks at the requested sync source,
2487 not the one actually in use.
2490 switch (hdsp
->control_register
& HDSP_SyncRefMask
) {
2491 case HDSP_SyncRef_ADAT1
:
2492 return HDSP_SYNC_FROM_ADAT1
;
2493 case HDSP_SyncRef_ADAT2
:
2494 return HDSP_SYNC_FROM_ADAT2
;
2495 case HDSP_SyncRef_ADAT3
:
2496 return HDSP_SYNC_FROM_ADAT3
;
2497 case HDSP_SyncRef_SPDIF
:
2498 return HDSP_SYNC_FROM_SPDIF
;
2499 case HDSP_SyncRef_WORD
:
2500 return HDSP_SYNC_FROM_WORD
;
2501 case HDSP_SyncRef_ADAT_SYNC
:
2502 return HDSP_SYNC_FROM_ADAT_SYNC
;
2504 return HDSP_SYNC_FROM_WORD
;
2509 static int hdsp_set_pref_sync_ref(struct hdsp
*hdsp
, int pref
)
2511 hdsp
->control_register
&= ~HDSP_SyncRefMask
;
2513 case HDSP_SYNC_FROM_ADAT1
:
2514 hdsp
->control_register
&= ~HDSP_SyncRefMask
; /* clear SyncRef bits */
2516 case HDSP_SYNC_FROM_ADAT2
:
2517 hdsp
->control_register
|= HDSP_SyncRef_ADAT2
;
2519 case HDSP_SYNC_FROM_ADAT3
:
2520 hdsp
->control_register
|= HDSP_SyncRef_ADAT3
;
2522 case HDSP_SYNC_FROM_SPDIF
:
2523 hdsp
->control_register
|= HDSP_SyncRef_SPDIF
;
2525 case HDSP_SYNC_FROM_WORD
:
2526 hdsp
->control_register
|= HDSP_SyncRef_WORD
;
2528 case HDSP_SYNC_FROM_ADAT_SYNC
:
2529 hdsp
->control_register
|= HDSP_SyncRef_ADAT_SYNC
;
2534 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2538 static int snd_hdsp_info_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2540 static char *texts
[] = {"Word", "IEC958", "ADAT1", "ADAT Sync", "ADAT2", "ADAT3" };
2541 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2543 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2546 switch (hdsp
->io_type
) {
2549 uinfo
->value
.enumerated
.items
= 6;
2552 uinfo
->value
.enumerated
.items
= 4;
2555 uinfo
->value
.enumerated
.items
= 3;
2558 uinfo
->value
.enumerated
.items
= 0;
2562 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2563 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2564 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2568 static int snd_hdsp_get_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2570 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2572 ucontrol
->value
.enumerated
.item
[0] = hdsp_pref_sync_ref(hdsp
);
2576 static int snd_hdsp_put_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2578 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2582 if (!snd_hdsp_use_is_exclusive(hdsp
))
2585 switch (hdsp
->io_type
) {
2600 val
= ucontrol
->value
.enumerated
.item
[0] % max
;
2601 spin_lock_irq(&hdsp
->lock
);
2602 change
= (int)val
!= hdsp_pref_sync_ref(hdsp
);
2603 hdsp_set_pref_sync_ref(hdsp
, val
);
2604 spin_unlock_irq(&hdsp
->lock
);
2608 #define HDSP_AUTOSYNC_REF(xname, xindex) \
2609 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2612 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2613 .info = snd_hdsp_info_autosync_ref, \
2614 .get = snd_hdsp_get_autosync_ref, \
2617 static int hdsp_autosync_ref(struct hdsp
*hdsp
)
2619 /* This looks at the autosync selected sync reference */
2620 unsigned int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
2622 switch (status2
& HDSP_SelSyncRefMask
) {
2623 case HDSP_SelSyncRef_WORD
:
2624 return HDSP_AUTOSYNC_FROM_WORD
;
2625 case HDSP_SelSyncRef_ADAT_SYNC
:
2626 return HDSP_AUTOSYNC_FROM_ADAT_SYNC
;
2627 case HDSP_SelSyncRef_SPDIF
:
2628 return HDSP_AUTOSYNC_FROM_SPDIF
;
2629 case HDSP_SelSyncRefMask
:
2630 return HDSP_AUTOSYNC_FROM_NONE
;
2631 case HDSP_SelSyncRef_ADAT1
:
2632 return HDSP_AUTOSYNC_FROM_ADAT1
;
2633 case HDSP_SelSyncRef_ADAT2
:
2634 return HDSP_AUTOSYNC_FROM_ADAT2
;
2635 case HDSP_SelSyncRef_ADAT3
:
2636 return HDSP_AUTOSYNC_FROM_ADAT3
;
2638 return HDSP_AUTOSYNC_FROM_WORD
;
2643 static int snd_hdsp_info_autosync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2645 static char *texts
[] = {"Word", "ADAT Sync", "IEC958", "None", "ADAT1", "ADAT2", "ADAT3" };
2647 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2649 uinfo
->value
.enumerated
.items
= 7;
2650 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2651 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2652 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2656 static int snd_hdsp_get_autosync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2658 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2660 ucontrol
->value
.enumerated
.item
[0] = hdsp_autosync_ref(hdsp
);
2664 #define HDSP_LINE_OUT(xname, xindex) \
2665 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2668 .info = snd_hdsp_info_line_out, \
2669 .get = snd_hdsp_get_line_out, \
2670 .put = snd_hdsp_put_line_out \
2673 static int hdsp_line_out(struct hdsp
*hdsp
)
2675 return (hdsp
->control_register
& HDSP_LineOut
) ? 1 : 0;
2678 static int hdsp_set_line_output(struct hdsp
*hdsp
, int out
)
2681 hdsp
->control_register
|= HDSP_LineOut
;
2683 hdsp
->control_register
&= ~HDSP_LineOut
;
2684 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2688 static int snd_hdsp_info_line_out(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2690 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2692 uinfo
->value
.integer
.min
= 0;
2693 uinfo
->value
.integer
.max
= 1;
2697 static int snd_hdsp_get_line_out(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2699 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2701 spin_lock_irq(&hdsp
->lock
);
2702 ucontrol
->value
.integer
.value
[0] = hdsp_line_out(hdsp
);
2703 spin_unlock_irq(&hdsp
->lock
);
2707 static int snd_hdsp_put_line_out(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2709 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2713 if (!snd_hdsp_use_is_exclusive(hdsp
))
2715 val
= ucontrol
->value
.integer
.value
[0] & 1;
2716 spin_lock_irq(&hdsp
->lock
);
2717 change
= (int)val
!= hdsp_line_out(hdsp
);
2718 hdsp_set_line_output(hdsp
, val
);
2719 spin_unlock_irq(&hdsp
->lock
);
2723 #define HDSP_PRECISE_POINTER(xname, xindex) \
2724 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2727 .info = snd_hdsp_info_precise_pointer, \
2728 .get = snd_hdsp_get_precise_pointer, \
2729 .put = snd_hdsp_put_precise_pointer \
2732 static int hdsp_set_precise_pointer(struct hdsp
*hdsp
, int precise
)
2735 hdsp
->precise_ptr
= 1;
2737 hdsp
->precise_ptr
= 0;
2741 static int snd_hdsp_info_precise_pointer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2743 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2745 uinfo
->value
.integer
.min
= 0;
2746 uinfo
->value
.integer
.max
= 1;
2750 static int snd_hdsp_get_precise_pointer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2752 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2754 spin_lock_irq(&hdsp
->lock
);
2755 ucontrol
->value
.integer
.value
[0] = hdsp
->precise_ptr
;
2756 spin_unlock_irq(&hdsp
->lock
);
2760 static int snd_hdsp_put_precise_pointer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2762 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2766 if (!snd_hdsp_use_is_exclusive(hdsp
))
2768 val
= ucontrol
->value
.integer
.value
[0] & 1;
2769 spin_lock_irq(&hdsp
->lock
);
2770 change
= (int)val
!= hdsp
->precise_ptr
;
2771 hdsp_set_precise_pointer(hdsp
, val
);
2772 spin_unlock_irq(&hdsp
->lock
);
2776 #define HDSP_USE_MIDI_TASKLET(xname, xindex) \
2777 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2780 .info = snd_hdsp_info_use_midi_tasklet, \
2781 .get = snd_hdsp_get_use_midi_tasklet, \
2782 .put = snd_hdsp_put_use_midi_tasklet \
2785 static int hdsp_set_use_midi_tasklet(struct hdsp
*hdsp
, int use_tasklet
)
2788 hdsp
->use_midi_tasklet
= 1;
2790 hdsp
->use_midi_tasklet
= 0;
2794 static int snd_hdsp_info_use_midi_tasklet(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2796 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2798 uinfo
->value
.integer
.min
= 0;
2799 uinfo
->value
.integer
.max
= 1;
2803 static int snd_hdsp_get_use_midi_tasklet(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2805 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2807 spin_lock_irq(&hdsp
->lock
);
2808 ucontrol
->value
.integer
.value
[0] = hdsp
->use_midi_tasklet
;
2809 spin_unlock_irq(&hdsp
->lock
);
2813 static int snd_hdsp_put_use_midi_tasklet(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2815 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2819 if (!snd_hdsp_use_is_exclusive(hdsp
))
2821 val
= ucontrol
->value
.integer
.value
[0] & 1;
2822 spin_lock_irq(&hdsp
->lock
);
2823 change
= (int)val
!= hdsp
->use_midi_tasklet
;
2824 hdsp_set_use_midi_tasklet(hdsp
, val
);
2825 spin_unlock_irq(&hdsp
->lock
);
2829 #define HDSP_MIXER(xname, xindex) \
2830 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
2834 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2835 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2836 .info = snd_hdsp_info_mixer, \
2837 .get = snd_hdsp_get_mixer, \
2838 .put = snd_hdsp_put_mixer \
2841 static int snd_hdsp_info_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2843 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2845 uinfo
->value
.integer
.min
= 0;
2846 uinfo
->value
.integer
.max
= 65536;
2847 uinfo
->value
.integer
.step
= 1;
2851 static int snd_hdsp_get_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2853 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2858 source
= ucontrol
->value
.integer
.value
[0];
2859 destination
= ucontrol
->value
.integer
.value
[1];
2861 if (source
>= hdsp
->max_channels
)
2862 addr
= hdsp_playback_to_output_key(hdsp
,source
-hdsp
->max_channels
,destination
);
2864 addr
= hdsp_input_to_output_key(hdsp
,source
, destination
);
2866 spin_lock_irq(&hdsp
->lock
);
2867 ucontrol
->value
.integer
.value
[2] = hdsp_read_gain (hdsp
, addr
);
2868 spin_unlock_irq(&hdsp
->lock
);
2872 static int snd_hdsp_put_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2874 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2881 if (!snd_hdsp_use_is_exclusive(hdsp
))
2884 source
= ucontrol
->value
.integer
.value
[0];
2885 destination
= ucontrol
->value
.integer
.value
[1];
2887 if (source
>= hdsp
->max_channels
)
2888 addr
= hdsp_playback_to_output_key(hdsp
,source
-hdsp
->max_channels
, destination
);
2890 addr
= hdsp_input_to_output_key(hdsp
,source
, destination
);
2892 gain
= ucontrol
->value
.integer
.value
[2];
2894 spin_lock_irq(&hdsp
->lock
);
2895 change
= gain
!= hdsp_read_gain(hdsp
, addr
);
2897 hdsp_write_gain(hdsp
, addr
, gain
);
2898 spin_unlock_irq(&hdsp
->lock
);
2902 #define HDSP_WC_SYNC_CHECK(xname, xindex) \
2903 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2906 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2907 .info = snd_hdsp_info_sync_check, \
2908 .get = snd_hdsp_get_wc_sync_check \
2911 static int snd_hdsp_info_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2913 static char *texts
[] = {"No Lock", "Lock", "Sync" };
2914 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2916 uinfo
->value
.enumerated
.items
= 3;
2917 if (uinfo
->value
.enumerated
.item
>= uinfo
->value
.enumerated
.items
)
2918 uinfo
->value
.enumerated
.item
= uinfo
->value
.enumerated
.items
- 1;
2919 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
2923 static int hdsp_wc_sync_check(struct hdsp
*hdsp
)
2925 int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
2926 if (status2
& HDSP_wc_lock
) {
2927 if (status2
& HDSP_wc_sync
)
2936 static int snd_hdsp_get_wc_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2938 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2940 ucontrol
->value
.enumerated
.item
[0] = hdsp_wc_sync_check(hdsp
);
2944 #define HDSP_SPDIF_SYNC_CHECK(xname, xindex) \
2945 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2948 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2949 .info = snd_hdsp_info_sync_check, \
2950 .get = snd_hdsp_get_spdif_sync_check \
2953 static int hdsp_spdif_sync_check(struct hdsp
*hdsp
)
2955 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
2956 if (status
& HDSP_SPDIFErrorFlag
)
2959 if (status
& HDSP_SPDIFSync
)
2967 static int snd_hdsp_get_spdif_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2969 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2971 ucontrol
->value
.enumerated
.item
[0] = hdsp_spdif_sync_check(hdsp
);
2975 #define HDSP_ADATSYNC_SYNC_CHECK(xname, xindex) \
2976 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2979 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2980 .info = snd_hdsp_info_sync_check, \
2981 .get = snd_hdsp_get_adatsync_sync_check \
2984 static int hdsp_adatsync_sync_check(struct hdsp
*hdsp
)
2986 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
2987 if (status
& HDSP_TimecodeLock
) {
2988 if (status
& HDSP_TimecodeSync
)
2996 static int snd_hdsp_get_adatsync_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2998 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3000 ucontrol
->value
.enumerated
.item
[0] = hdsp_adatsync_sync_check(hdsp
);
3004 #define HDSP_ADAT_SYNC_CHECK \
3005 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3006 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
3007 .info = snd_hdsp_info_sync_check, \
3008 .get = snd_hdsp_get_adat_sync_check \
3011 static int hdsp_adat_sync_check(struct hdsp
*hdsp
, int idx
)
3013 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
3015 if (status
& (HDSP_Lock0
>>idx
)) {
3016 if (status
& (HDSP_Sync0
>>idx
))
3024 static int snd_hdsp_get_adat_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3027 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3029 offset
= ucontrol
->id
.index
- 1;
3030 snd_assert(offset
>= 0);
3032 switch (hdsp
->io_type
) {
3047 ucontrol
->value
.enumerated
.item
[0] = hdsp_adat_sync_check(hdsp
, offset
);
3051 static struct snd_kcontrol_new snd_hdsp_9632_controls
[] = {
3052 HDSP_DA_GAIN("DA Gain", 0),
3053 HDSP_AD_GAIN("AD Gain", 0),
3054 HDSP_PHONE_GAIN("Phones Gain", 0),
3055 HDSP_XLR_BREAKOUT_CABLE("XLR Breakout Cable", 0)
3058 static struct snd_kcontrol_new snd_hdsp_controls
[] = {
3060 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
3061 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
3062 .info
= snd_hdsp_control_spdif_info
,
3063 .get
= snd_hdsp_control_spdif_get
,
3064 .put
= snd_hdsp_control_spdif_put
,
3067 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
3068 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
3069 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PCM_STREAM
),
3070 .info
= snd_hdsp_control_spdif_stream_info
,
3071 .get
= snd_hdsp_control_spdif_stream_get
,
3072 .put
= snd_hdsp_control_spdif_stream_put
,
3075 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
3076 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
3077 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,CON_MASK
),
3078 .info
= snd_hdsp_control_spdif_mask_info
,
3079 .get
= snd_hdsp_control_spdif_mask_get
,
3080 .private_value
= IEC958_AES0_NONAUDIO
|
3081 IEC958_AES0_PROFESSIONAL
|
3082 IEC958_AES0_CON_EMPHASIS
,
3085 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
3086 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
3087 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PRO_MASK
),
3088 .info
= snd_hdsp_control_spdif_mask_info
,
3089 .get
= snd_hdsp_control_spdif_mask_get
,
3090 .private_value
= IEC958_AES0_NONAUDIO
|
3091 IEC958_AES0_PROFESSIONAL
|
3092 IEC958_AES0_PRO_EMPHASIS
,
3094 HDSP_MIXER("Mixer", 0),
3095 HDSP_SPDIF_IN("IEC958 Input Connector", 0),
3096 HDSP_SPDIF_OUT("IEC958 Output also on ADAT1", 0),
3097 HDSP_SPDIF_PROFESSIONAL("IEC958 Professional Bit", 0),
3098 HDSP_SPDIF_EMPHASIS("IEC958 Emphasis Bit", 0),
3099 HDSP_SPDIF_NON_AUDIO("IEC958 Non-audio Bit", 0),
3100 /* 'Sample Clock Source' complies with the alsa control naming scheme */
3101 HDSP_CLOCK_SOURCE("Sample Clock Source", 0),
3103 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3104 .name
= "Sample Clock Source Locking",
3105 .info
= snd_hdsp_info_clock_source_lock
,
3106 .get
= snd_hdsp_get_clock_source_lock
,
3107 .put
= snd_hdsp_put_clock_source_lock
,
3109 HDSP_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
3110 HDSP_PREF_SYNC_REF("Preferred Sync Reference", 0),
3111 HDSP_AUTOSYNC_REF("AutoSync Reference", 0),
3112 HDSP_SPDIF_SAMPLE_RATE("SPDIF Sample Rate", 0),
3113 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
3114 /* 'External Rate' complies with the alsa control naming scheme */
3115 HDSP_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
3116 HDSP_WC_SYNC_CHECK("Word Clock Lock Status", 0),
3117 HDSP_SPDIF_SYNC_CHECK("SPDIF Lock Status", 0),
3118 HDSP_ADATSYNC_SYNC_CHECK("ADAT Sync Lock Status", 0),
3119 HDSP_LINE_OUT("Line Out", 0),
3120 HDSP_PRECISE_POINTER("Precise Pointer", 0),
3121 HDSP_USE_MIDI_TASKLET("Use Midi Tasklet", 0),
3124 static struct snd_kcontrol_new snd_hdsp_96xx_aeb
= HDSP_AEB("Analog Extension Board", 0);
3125 static struct snd_kcontrol_new snd_hdsp_adat_sync_check
= HDSP_ADAT_SYNC_CHECK
;
3127 static int snd_hdsp_create_controls(struct snd_card
*card
, struct hdsp
*hdsp
)
3131 struct snd_kcontrol
*kctl
;
3133 for (idx
= 0; idx
< ARRAY_SIZE(snd_hdsp_controls
); idx
++) {
3134 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_controls
[idx
], hdsp
))) < 0)
3136 if (idx
== 1) /* IEC958 (S/PDIF) Stream */
3137 hdsp
->spdif_ctl
= kctl
;
3140 /* ADAT SyncCheck status */
3141 snd_hdsp_adat_sync_check
.name
= "ADAT Lock Status";
3142 snd_hdsp_adat_sync_check
.index
= 1;
3143 if ((err
= snd_ctl_add (card
, kctl
= snd_ctl_new1(&snd_hdsp_adat_sync_check
, hdsp
))))
3145 if (hdsp
->io_type
== Digiface
|| hdsp
->io_type
== H9652
) {
3146 for (idx
= 1; idx
< 3; ++idx
) {
3147 snd_hdsp_adat_sync_check
.index
= idx
+1;
3148 if ((err
= snd_ctl_add (card
, kctl
= snd_ctl_new1(&snd_hdsp_adat_sync_check
, hdsp
))))
3153 /* DA, AD and Phone gain and XLR breakout cable controls for H9632 cards */
3154 if (hdsp
->io_type
== H9632
) {
3155 for (idx
= 0; idx
< ARRAY_SIZE(snd_hdsp_9632_controls
); idx
++) {
3156 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_9632_controls
[idx
], hdsp
))) < 0)
3161 /* AEB control for H96xx card */
3162 if (hdsp
->io_type
== H9632
|| hdsp
->io_type
== H9652
) {
3163 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_96xx_aeb
, hdsp
))) < 0)
3170 /*------------------------------------------------------------
3172 ------------------------------------------------------------*/
3175 snd_hdsp_proc_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
3177 struct hdsp
*hdsp
= (struct hdsp
*) entry
->private_data
;
3178 unsigned int status
;
3179 unsigned int status2
;
3180 char *pref_sync_ref
;
3182 char *system_clock_mode
;
3186 if (hdsp_check_for_iobox (hdsp
)) {
3187 snd_iprintf(buffer
, "No I/O box connected.\nPlease connect one and upload firmware.\n");
3191 if (hdsp_check_for_firmware(hdsp
, 0)) {
3192 if (hdsp
->state
& HDSP_FirmwareCached
) {
3193 if (snd_hdsp_load_firmware_from_cache(hdsp
) != 0) {
3194 snd_iprintf(buffer
, "Firmware loading from cache failed, please upload manually.\n");
3199 #ifdef HDSP_FW_LOADER
3200 err
= hdsp_request_fw_loader(hdsp
);
3204 "No firmware loaded nor cached, "
3205 "please upload firmware.\n");
3211 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
3212 status2
= hdsp_read(hdsp
, HDSP_status2Register
);
3214 snd_iprintf(buffer
, "%s (Card #%d)\n", hdsp
->card_name
, hdsp
->card
->number
+ 1);
3215 snd_iprintf(buffer
, "Buffers: capture %p playback %p\n",
3216 hdsp
->capture_buffer
, hdsp
->playback_buffer
);
3217 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
3218 hdsp
->irq
, hdsp
->port
, (unsigned long)hdsp
->iobase
);
3219 snd_iprintf(buffer
, "Control register: 0x%x\n", hdsp
->control_register
);
3220 snd_iprintf(buffer
, "Control2 register: 0x%x\n", hdsp
->control2_register
);
3221 snd_iprintf(buffer
, "Status register: 0x%x\n", status
);
3222 snd_iprintf(buffer
, "Status2 register: 0x%x\n", status2
);
3223 snd_iprintf(buffer
, "FIFO status: %d\n", hdsp_read(hdsp
, HDSP_fifoStatus
) & 0xff);
3224 snd_iprintf(buffer
, "MIDI1 Output status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusOut0
));
3225 snd_iprintf(buffer
, "MIDI1 Input status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusIn0
));
3226 snd_iprintf(buffer
, "MIDI2 Output status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusOut1
));
3227 snd_iprintf(buffer
, "MIDI2 Input status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusIn1
));
3228 snd_iprintf(buffer
, "Use Midi Tasklet: %s\n", hdsp
->use_midi_tasklet
? "on" : "off");
3230 snd_iprintf(buffer
, "\n");
3232 x
= 1 << (6 + hdsp_decode_latency(hdsp
->control_register
& HDSP_LatencyMask
));
3234 snd_iprintf(buffer
, "Buffer Size (Latency): %d samples (2 periods of %lu bytes)\n", x
, (unsigned long) hdsp
->period_bytes
);
3235 snd_iprintf(buffer
, "Hardware pointer (frames): %ld\n", hdsp_hw_pointer(hdsp
));
3236 snd_iprintf(buffer
, "Precise pointer: %s\n", hdsp
->precise_ptr
? "on" : "off");
3237 snd_iprintf(buffer
, "Line out: %s\n", (hdsp
->control_register
& HDSP_LineOut
) ? "on" : "off");
3239 snd_iprintf(buffer
, "Firmware version: %d\n", (status2
&HDSP_version0
)|(status2
&HDSP_version1
)<<1|(status2
&HDSP_version2
)<<2);
3241 snd_iprintf(buffer
, "\n");
3244 switch (hdsp_clock_source(hdsp
)) {
3245 case HDSP_CLOCK_SOURCE_AUTOSYNC
:
3246 clock_source
= "AutoSync";
3248 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ
:
3249 clock_source
= "Internal 32 kHz";
3251 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ
:
3252 clock_source
= "Internal 44.1 kHz";
3254 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ
:
3255 clock_source
= "Internal 48 kHz";
3257 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ
:
3258 clock_source
= "Internal 64 kHz";
3260 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ
:
3261 clock_source
= "Internal 88.2 kHz";
3263 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ
:
3264 clock_source
= "Internal 96 kHz";
3266 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ
:
3267 clock_source
= "Internal 128 kHz";
3269 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ
:
3270 clock_source
= "Internal 176.4 kHz";
3272 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ
:
3273 clock_source
= "Internal 192 kHz";
3276 clock_source
= "Error";
3278 snd_iprintf (buffer
, "Sample Clock Source: %s\n", clock_source
);
3280 if (hdsp_system_clock_mode(hdsp
))
3281 system_clock_mode
= "Slave";
3283 system_clock_mode
= "Master";
3285 switch (hdsp_pref_sync_ref (hdsp
)) {
3286 case HDSP_SYNC_FROM_WORD
:
3287 pref_sync_ref
= "Word Clock";
3289 case HDSP_SYNC_FROM_ADAT_SYNC
:
3290 pref_sync_ref
= "ADAT Sync";
3292 case HDSP_SYNC_FROM_SPDIF
:
3293 pref_sync_ref
= "SPDIF";
3295 case HDSP_SYNC_FROM_ADAT1
:
3296 pref_sync_ref
= "ADAT1";
3298 case HDSP_SYNC_FROM_ADAT2
:
3299 pref_sync_ref
= "ADAT2";
3301 case HDSP_SYNC_FROM_ADAT3
:
3302 pref_sync_ref
= "ADAT3";
3305 pref_sync_ref
= "Word Clock";
3308 snd_iprintf (buffer
, "Preferred Sync Reference: %s\n", pref_sync_ref
);
3310 switch (hdsp_autosync_ref (hdsp
)) {
3311 case HDSP_AUTOSYNC_FROM_WORD
:
3312 autosync_ref
= "Word Clock";
3314 case HDSP_AUTOSYNC_FROM_ADAT_SYNC
:
3315 autosync_ref
= "ADAT Sync";
3317 case HDSP_AUTOSYNC_FROM_SPDIF
:
3318 autosync_ref
= "SPDIF";
3320 case HDSP_AUTOSYNC_FROM_NONE
:
3321 autosync_ref
= "None";
3323 case HDSP_AUTOSYNC_FROM_ADAT1
:
3324 autosync_ref
= "ADAT1";
3326 case HDSP_AUTOSYNC_FROM_ADAT2
:
3327 autosync_ref
= "ADAT2";
3329 case HDSP_AUTOSYNC_FROM_ADAT3
:
3330 autosync_ref
= "ADAT3";
3333 autosync_ref
= "---";
3336 snd_iprintf (buffer
, "AutoSync Reference: %s\n", autosync_ref
);
3338 snd_iprintf (buffer
, "AutoSync Frequency: %d\n", hdsp_external_sample_rate(hdsp
));
3340 snd_iprintf (buffer
, "System Clock Mode: %s\n", system_clock_mode
);
3342 snd_iprintf (buffer
, "System Clock Frequency: %d\n", hdsp
->system_sample_rate
);
3343 snd_iprintf (buffer
, "System Clock Locked: %s\n", hdsp
->clock_source_locked
? "Yes" : "No");
3345 snd_iprintf(buffer
, "\n");
3347 switch (hdsp_spdif_in(hdsp
)) {
3348 case HDSP_SPDIFIN_OPTICAL
:
3349 snd_iprintf(buffer
, "IEC958 input: Optical\n");
3351 case HDSP_SPDIFIN_COAXIAL
:
3352 snd_iprintf(buffer
, "IEC958 input: Coaxial\n");
3354 case HDSP_SPDIFIN_INTERNAL
:
3355 snd_iprintf(buffer
, "IEC958 input: Internal\n");
3357 case HDSP_SPDIFIN_AES
:
3358 snd_iprintf(buffer
, "IEC958 input: AES\n");
3361 snd_iprintf(buffer
, "IEC958 input: ???\n");
3365 if (hdsp
->control_register
& HDSP_SPDIFOpticalOut
)
3366 snd_iprintf(buffer
, "IEC958 output: Coaxial & ADAT1\n");
3368 snd_iprintf(buffer
, "IEC958 output: Coaxial only\n");
3370 if (hdsp
->control_register
& HDSP_SPDIFProfessional
)
3371 snd_iprintf(buffer
, "IEC958 quality: Professional\n");
3373 snd_iprintf(buffer
, "IEC958 quality: Consumer\n");
3375 if (hdsp
->control_register
& HDSP_SPDIFEmphasis
)
3376 snd_iprintf(buffer
, "IEC958 emphasis: on\n");
3378 snd_iprintf(buffer
, "IEC958 emphasis: off\n");
3380 if (hdsp
->control_register
& HDSP_SPDIFNonAudio
)
3381 snd_iprintf(buffer
, "IEC958 NonAudio: on\n");
3383 snd_iprintf(buffer
, "IEC958 NonAudio: off\n");
3384 if ((x
= hdsp_spdif_sample_rate (hdsp
)) != 0)
3385 snd_iprintf (buffer
, "IEC958 sample rate: %d\n", x
);
3387 snd_iprintf (buffer
, "IEC958 sample rate: Error flag set\n");
3389 snd_iprintf(buffer
, "\n");
3392 x
= status
& HDSP_Sync0
;
3393 if (status
& HDSP_Lock0
)
3394 snd_iprintf(buffer
, "ADAT1: %s\n", x
? "Sync" : "Lock");
3396 snd_iprintf(buffer
, "ADAT1: No Lock\n");
3398 switch (hdsp
->io_type
) {
3401 x
= status
& HDSP_Sync1
;
3402 if (status
& HDSP_Lock1
)
3403 snd_iprintf(buffer
, "ADAT2: %s\n", x
? "Sync" : "Lock");
3405 snd_iprintf(buffer
, "ADAT2: No Lock\n");
3406 x
= status
& HDSP_Sync2
;
3407 if (status
& HDSP_Lock2
)
3408 snd_iprintf(buffer
, "ADAT3: %s\n", x
? "Sync" : "Lock");
3410 snd_iprintf(buffer
, "ADAT3: No Lock\n");
3417 x
= status
& HDSP_SPDIFSync
;
3418 if (status
& HDSP_SPDIFErrorFlag
)
3419 snd_iprintf (buffer
, "SPDIF: No Lock\n");
3421 snd_iprintf (buffer
, "SPDIF: %s\n", x
? "Sync" : "Lock");
3423 x
= status2
& HDSP_wc_sync
;
3424 if (status2
& HDSP_wc_lock
)
3425 snd_iprintf (buffer
, "Word Clock: %s\n", x
? "Sync" : "Lock");
3427 snd_iprintf (buffer
, "Word Clock: No Lock\n");
3429 x
= status
& HDSP_TimecodeSync
;
3430 if (status
& HDSP_TimecodeLock
)
3431 snd_iprintf(buffer
, "ADAT Sync: %s\n", x
? "Sync" : "Lock");
3433 snd_iprintf(buffer
, "ADAT Sync: No Lock\n");
3435 snd_iprintf(buffer
, "\n");
3437 /* Informations about H9632 specific controls */
3438 if (hdsp
->io_type
== H9632
) {
3441 switch (hdsp_ad_gain(hdsp
)) {
3452 snd_iprintf(buffer
, "AD Gain : %s\n", tmp
);
3454 switch (hdsp_da_gain(hdsp
)) {
3465 snd_iprintf(buffer
, "DA Gain : %s\n", tmp
);
3467 switch (hdsp_phone_gain(hdsp
)) {
3478 snd_iprintf(buffer
, "Phones Gain : %s\n", tmp
);
3480 snd_iprintf(buffer
, "XLR Breakout Cable : %s\n", hdsp_xlr_breakout_cable(hdsp
) ? "yes" : "no");
3482 if (hdsp
->control_register
& HDSP_AnalogExtensionBoard
)
3483 snd_iprintf(buffer
, "AEB : on (ADAT1 internal)\n");
3485 snd_iprintf(buffer
, "AEB : off (ADAT1 external)\n");
3486 snd_iprintf(buffer
, "\n");
3491 static void __devinit
snd_hdsp_proc_init(struct hdsp
*hdsp
)
3493 struct snd_info_entry
*entry
;
3495 if (! snd_card_proc_new(hdsp
->card
, "hdsp", &entry
))
3496 snd_info_set_text_ops(entry
, hdsp
, snd_hdsp_proc_read
);
3499 static void snd_hdsp_free_buffers(struct hdsp
*hdsp
)
3501 snd_hammerfall_free_buffer(&hdsp
->capture_dma_buf
, hdsp
->pci
);
3502 snd_hammerfall_free_buffer(&hdsp
->playback_dma_buf
, hdsp
->pci
);
3505 static int __devinit
snd_hdsp_initialize_memory(struct hdsp
*hdsp
)
3507 unsigned long pb_bus
, cb_bus
;
3509 if (snd_hammerfall_get_buffer(hdsp
->pci
, &hdsp
->capture_dma_buf
, HDSP_DMA_AREA_BYTES
) < 0 ||
3510 snd_hammerfall_get_buffer(hdsp
->pci
, &hdsp
->playback_dma_buf
, HDSP_DMA_AREA_BYTES
) < 0) {
3511 if (hdsp
->capture_dma_buf
.area
)
3512 snd_dma_free_pages(&hdsp
->capture_dma_buf
);
3513 printk(KERN_ERR
"%s: no buffers available\n", hdsp
->card_name
);
3517 /* Align to bus-space 64K boundary */
3519 cb_bus
= (hdsp
->capture_dma_buf
.addr
+ 0xFFFF) & ~0xFFFFl
;
3520 pb_bus
= (hdsp
->playback_dma_buf
.addr
+ 0xFFFF) & ~0xFFFFl
;
3522 /* Tell the card where it is */
3524 hdsp_write(hdsp
, HDSP_inputBufferAddress
, cb_bus
);
3525 hdsp_write(hdsp
, HDSP_outputBufferAddress
, pb_bus
);
3527 hdsp
->capture_buffer
= hdsp
->capture_dma_buf
.area
+ (cb_bus
- hdsp
->capture_dma_buf
.addr
);
3528 hdsp
->playback_buffer
= hdsp
->playback_dma_buf
.area
+ (pb_bus
- hdsp
->playback_dma_buf
.addr
);
3533 static int snd_hdsp_set_defaults(struct hdsp
*hdsp
)
3537 /* ASSUMPTION: hdsp->lock is either held, or
3538 there is no need to hold it (e.g. during module
3544 SPDIF Input via Coax
3546 maximum latency (7 => 2^7 = 8192 samples, 64Kbyte buffer,
3547 which implies 2 4096 sample, 32Kbyte periods).
3551 hdsp
->control_register
= HDSP_ClockModeMaster
|
3552 HDSP_SPDIFInputCoaxial
|
3553 hdsp_encode_latency(7) |
3557 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3559 #ifdef SNDRV_BIG_ENDIAN
3560 hdsp
->control2_register
= HDSP_BIGENDIAN_MODE
;
3562 hdsp
->control2_register
= 0;
3564 if (hdsp
->io_type
== H9652
)
3565 snd_hdsp_9652_enable_mixer (hdsp
);
3567 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
3569 hdsp_reset_hw_pointer(hdsp
);
3570 hdsp_compute_period_size(hdsp
);
3572 /* silence everything */
3574 for (i
= 0; i
< HDSP_MATRIX_MIXER_SIZE
; ++i
)
3575 hdsp
->mixer_matrix
[i
] = MINUS_INFINITY_GAIN
;
3577 for (i
= 0; i
< ((hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) ? 1352 : HDSP_MATRIX_MIXER_SIZE
); ++i
) {
3578 if (hdsp_write_gain (hdsp
, i
, MINUS_INFINITY_GAIN
))
3582 /* H9632 specific defaults */
3583 if (hdsp
->io_type
== H9632
) {
3584 hdsp
->control_register
|= (HDSP_DAGainPlus4dBu
| HDSP_ADGainPlus4dBu
| HDSP_PhoneGain0dB
);
3585 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3588 /* set a default rate so that the channel map is set up.
3591 hdsp_set_rate(hdsp
, 48000, 1);
3596 static void hdsp_midi_tasklet(unsigned long arg
)
3598 struct hdsp
*hdsp
= (struct hdsp
*)arg
;
3600 if (hdsp
->midi
[0].pending
)
3601 snd_hdsp_midi_input_read (&hdsp
->midi
[0]);
3602 if (hdsp
->midi
[1].pending
)
3603 snd_hdsp_midi_input_read (&hdsp
->midi
[1]);
3606 static irqreturn_t
snd_hdsp_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
3608 struct hdsp
*hdsp
= (struct hdsp
*) dev_id
;
3609 unsigned int status
;
3613 unsigned int midi0status
;
3614 unsigned int midi1status
;
3617 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
3619 audio
= status
& HDSP_audioIRQPending
;
3620 midi0
= status
& HDSP_midi0IRQPending
;
3621 midi1
= status
& HDSP_midi1IRQPending
;
3623 if (!audio
&& !midi0
&& !midi1
)
3626 hdsp_write(hdsp
, HDSP_interruptConfirmation
, 0);
3628 midi0status
= hdsp_read (hdsp
, HDSP_midiStatusIn0
) & 0xff;
3629 midi1status
= hdsp_read (hdsp
, HDSP_midiStatusIn1
) & 0xff;
3632 if (hdsp
->capture_substream
)
3633 snd_pcm_period_elapsed(hdsp
->pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
);
3635 if (hdsp
->playback_substream
)
3636 snd_pcm_period_elapsed(hdsp
->pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
);
3639 if (midi0
&& midi0status
) {
3640 if (hdsp
->use_midi_tasklet
) {
3641 /* we disable interrupts for this input until processing is done */
3642 hdsp
->control_register
&= ~HDSP_Midi0InterruptEnable
;
3643 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3644 hdsp
->midi
[0].pending
= 1;
3647 snd_hdsp_midi_input_read (&hdsp
->midi
[0]);
3650 if (hdsp
->io_type
!= Multiface
&& hdsp
->io_type
!= H9632
&& midi1
&& midi1status
) {
3651 if (hdsp
->use_midi_tasklet
) {
3652 /* we disable interrupts for this input until processing is done */
3653 hdsp
->control_register
&= ~HDSP_Midi1InterruptEnable
;
3654 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3655 hdsp
->midi
[1].pending
= 1;
3658 snd_hdsp_midi_input_read (&hdsp
->midi
[1]);
3661 if (hdsp
->use_midi_tasklet
&& schedule
)
3662 tasklet_hi_schedule(&hdsp
->midi_tasklet
);
3666 static snd_pcm_uframes_t
snd_hdsp_hw_pointer(struct snd_pcm_substream
*substream
)
3668 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3669 return hdsp_hw_pointer(hdsp
);
3672 static char *hdsp_channel_buffer_location(struct hdsp
*hdsp
,
3679 snd_assert(channel
>= 0 && channel
< hdsp
->max_channels
, return NULL
);
3681 if ((mapped_channel
= hdsp
->channel_map
[channel
]) < 0)
3684 if (stream
== SNDRV_PCM_STREAM_CAPTURE
)
3685 return hdsp
->capture_buffer
+ (mapped_channel
* HDSP_CHANNEL_BUFFER_BYTES
);
3687 return hdsp
->playback_buffer
+ (mapped_channel
* HDSP_CHANNEL_BUFFER_BYTES
);
3690 static int snd_hdsp_playback_copy(struct snd_pcm_substream
*substream
, int channel
,
3691 snd_pcm_uframes_t pos
, void __user
*src
, snd_pcm_uframes_t count
)
3693 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3696 snd_assert(pos
+ count
<= HDSP_CHANNEL_BUFFER_BYTES
/ 4, return -EINVAL
);
3698 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3699 snd_assert(channel_buf
!= NULL
, return -EIO
);
3700 if (copy_from_user(channel_buf
+ pos
* 4, src
, count
* 4))
3705 static int snd_hdsp_capture_copy(struct snd_pcm_substream
*substream
, int channel
,
3706 snd_pcm_uframes_t pos
, void __user
*dst
, snd_pcm_uframes_t count
)
3708 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3711 snd_assert(pos
+ count
<= HDSP_CHANNEL_BUFFER_BYTES
/ 4, return -EINVAL
);
3713 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3714 snd_assert(channel_buf
!= NULL
, return -EIO
);
3715 if (copy_to_user(dst
, channel_buf
+ pos
* 4, count
* 4))
3720 static int snd_hdsp_hw_silence(struct snd_pcm_substream
*substream
, int channel
,
3721 snd_pcm_uframes_t pos
, snd_pcm_uframes_t count
)
3723 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3726 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3727 snd_assert(channel_buf
!= NULL
, return -EIO
);
3728 memset(channel_buf
+ pos
* 4, 0, count
* 4);
3732 static int snd_hdsp_reset(struct snd_pcm_substream
*substream
)
3734 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
3735 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3736 struct snd_pcm_substream
*other
;
3737 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3738 other
= hdsp
->capture_substream
;
3740 other
= hdsp
->playback_substream
;
3742 runtime
->status
->hw_ptr
= hdsp_hw_pointer(hdsp
);
3744 runtime
->status
->hw_ptr
= 0;
3746 struct list_head
*pos
;
3747 struct snd_pcm_substream
*s
;
3748 struct snd_pcm_runtime
*oruntime
= other
->runtime
;
3749 snd_pcm_group_for_each(pos
, substream
) {
3750 s
= snd_pcm_group_substream_entry(pos
);
3752 oruntime
->status
->hw_ptr
= runtime
->status
->hw_ptr
;
3760 static int snd_hdsp_hw_params(struct snd_pcm_substream
*substream
,
3761 struct snd_pcm_hw_params
*params
)
3763 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3768 if (hdsp_check_for_iobox (hdsp
))
3771 if (hdsp_check_for_firmware(hdsp
, 1))
3774 spin_lock_irq(&hdsp
->lock
);
3776 if (substream
->pstr
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3777 hdsp
->control_register
&= ~(HDSP_SPDIFProfessional
| HDSP_SPDIFNonAudio
| HDSP_SPDIFEmphasis
);
3778 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
|= hdsp
->creg_spdif_stream
);
3779 this_pid
= hdsp
->playback_pid
;
3780 other_pid
= hdsp
->capture_pid
;
3782 this_pid
= hdsp
->capture_pid
;
3783 other_pid
= hdsp
->playback_pid
;
3786 if ((other_pid
> 0) && (this_pid
!= other_pid
)) {
3788 /* The other stream is open, and not by the same
3789 task as this one. Make sure that the parameters
3790 that matter are the same.
3793 if (params_rate(params
) != hdsp
->system_sample_rate
) {
3794 spin_unlock_irq(&hdsp
->lock
);
3795 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_RATE
);
3799 if (params_period_size(params
) != hdsp
->period_bytes
/ 4) {
3800 spin_unlock_irq(&hdsp
->lock
);
3801 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
3807 spin_unlock_irq(&hdsp
->lock
);
3811 spin_unlock_irq(&hdsp
->lock
);
3814 /* how to make sure that the rate matches an externally-set one ?
3817 spin_lock_irq(&hdsp
->lock
);
3818 if (! hdsp
->clock_source_locked
) {
3819 if ((err
= hdsp_set_rate(hdsp
, params_rate(params
), 0)) < 0) {
3820 spin_unlock_irq(&hdsp
->lock
);
3821 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_RATE
);
3825 spin_unlock_irq(&hdsp
->lock
);
3827 if ((err
= hdsp_set_interrupt_interval(hdsp
, params_period_size(params
))) < 0) {
3828 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
3835 static int snd_hdsp_channel_info(struct snd_pcm_substream
*substream
,
3836 struct snd_pcm_channel_info
*info
)
3838 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3841 snd_assert(info
->channel
< hdsp
->max_channels
, return -EINVAL
);
3843 if ((mapped_channel
= hdsp
->channel_map
[info
->channel
]) < 0)
3846 info
->offset
= mapped_channel
* HDSP_CHANNEL_BUFFER_BYTES
;
3852 static int snd_hdsp_ioctl(struct snd_pcm_substream
*substream
,
3853 unsigned int cmd
, void *arg
)
3856 case SNDRV_PCM_IOCTL1_RESET
:
3857 return snd_hdsp_reset(substream
);
3858 case SNDRV_PCM_IOCTL1_CHANNEL_INFO
:
3859 return snd_hdsp_channel_info(substream
, arg
);
3864 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
3867 static int snd_hdsp_trigger(struct snd_pcm_substream
*substream
, int cmd
)
3869 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3870 struct snd_pcm_substream
*other
;
3873 if (hdsp_check_for_iobox (hdsp
))
3876 if (hdsp_check_for_firmware(hdsp
, 0)) /* no auto-loading in trigger */
3879 spin_lock(&hdsp
->lock
);
3880 running
= hdsp
->running
;
3882 case SNDRV_PCM_TRIGGER_START
:
3883 running
|= 1 << substream
->stream
;
3885 case SNDRV_PCM_TRIGGER_STOP
:
3886 running
&= ~(1 << substream
->stream
);
3890 spin_unlock(&hdsp
->lock
);
3893 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3894 other
= hdsp
->capture_substream
;
3896 other
= hdsp
->playback_substream
;
3899 struct list_head
*pos
;
3900 struct snd_pcm_substream
*s
;
3901 snd_pcm_group_for_each(pos
, substream
) {
3902 s
= snd_pcm_group_substream_entry(pos
);
3904 snd_pcm_trigger_done(s
, substream
);
3905 if (cmd
== SNDRV_PCM_TRIGGER_START
)
3906 running
|= 1 << s
->stream
;
3908 running
&= ~(1 << s
->stream
);
3912 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
3913 if (!(running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
)) &&
3914 substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
3915 hdsp_silence_playback(hdsp
);
3918 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3919 hdsp_silence_playback(hdsp
);
3922 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
3923 hdsp_silence_playback(hdsp
);
3926 snd_pcm_trigger_done(substream
, substream
);
3927 if (!hdsp
->running
&& running
)
3928 hdsp_start_audio(hdsp
);
3929 else if (hdsp
->running
&& !running
)
3930 hdsp_stop_audio(hdsp
);
3931 hdsp
->running
= running
;
3932 spin_unlock(&hdsp
->lock
);
3937 static int snd_hdsp_prepare(struct snd_pcm_substream
*substream
)
3939 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3942 if (hdsp_check_for_iobox (hdsp
))
3945 if (hdsp_check_for_firmware(hdsp
, 1))
3948 spin_lock_irq(&hdsp
->lock
);
3950 hdsp_reset_hw_pointer(hdsp
);
3951 spin_unlock_irq(&hdsp
->lock
);
3955 static struct snd_pcm_hardware snd_hdsp_playback_subinfo
=
3957 .info
= (SNDRV_PCM_INFO_MMAP
|
3958 SNDRV_PCM_INFO_MMAP_VALID
|
3959 SNDRV_PCM_INFO_NONINTERLEAVED
|
3960 SNDRV_PCM_INFO_SYNC_START
|
3961 SNDRV_PCM_INFO_DOUBLE
),
3962 #ifdef SNDRV_BIG_ENDIAN
3963 .formats
= SNDRV_PCM_FMTBIT_S32_BE
,
3965 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
3967 .rates
= (SNDRV_PCM_RATE_32000
|
3968 SNDRV_PCM_RATE_44100
|
3969 SNDRV_PCM_RATE_48000
|
3970 SNDRV_PCM_RATE_64000
|
3971 SNDRV_PCM_RATE_88200
|
3972 SNDRV_PCM_RATE_96000
),
3976 .channels_max
= HDSP_MAX_CHANNELS
,
3977 .buffer_bytes_max
= HDSP_CHANNEL_BUFFER_BYTES
* HDSP_MAX_CHANNELS
,
3978 .period_bytes_min
= (64 * 4) * 10,
3979 .period_bytes_max
= (8192 * 4) * HDSP_MAX_CHANNELS
,
3985 static struct snd_pcm_hardware snd_hdsp_capture_subinfo
=
3987 .info
= (SNDRV_PCM_INFO_MMAP
|
3988 SNDRV_PCM_INFO_MMAP_VALID
|
3989 SNDRV_PCM_INFO_NONINTERLEAVED
|
3990 SNDRV_PCM_INFO_SYNC_START
),
3991 #ifdef SNDRV_BIG_ENDIAN
3992 .formats
= SNDRV_PCM_FMTBIT_S32_BE
,
3994 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
3996 .rates
= (SNDRV_PCM_RATE_32000
|
3997 SNDRV_PCM_RATE_44100
|
3998 SNDRV_PCM_RATE_48000
|
3999 SNDRV_PCM_RATE_64000
|
4000 SNDRV_PCM_RATE_88200
|
4001 SNDRV_PCM_RATE_96000
),
4005 .channels_max
= HDSP_MAX_CHANNELS
,
4006 .buffer_bytes_max
= HDSP_CHANNEL_BUFFER_BYTES
* HDSP_MAX_CHANNELS
,
4007 .period_bytes_min
= (64 * 4) * 10,
4008 .period_bytes_max
= (8192 * 4) * HDSP_MAX_CHANNELS
,
4014 static unsigned int hdsp_period_sizes
[] = { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
4016 static struct snd_pcm_hw_constraint_list hdsp_hw_constraints_period_sizes
= {
4017 .count
= ARRAY_SIZE(hdsp_period_sizes
),
4018 .list
= hdsp_period_sizes
,
4022 static unsigned int hdsp_9632_sample_rates
[] = { 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000 };
4024 static struct snd_pcm_hw_constraint_list hdsp_hw_constraints_9632_sample_rates
= {
4025 .count
= ARRAY_SIZE(hdsp_9632_sample_rates
),
4026 .list
= hdsp_9632_sample_rates
,
4030 static int snd_hdsp_hw_rule_in_channels(struct snd_pcm_hw_params
*params
,
4031 struct snd_pcm_hw_rule
*rule
)
4033 struct hdsp
*hdsp
= rule
->private;
4034 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4035 if (hdsp
->io_type
== H9632
) {
4036 unsigned int list
[3];
4037 list
[0] = hdsp
->qs_in_channels
;
4038 list
[1] = hdsp
->ds_in_channels
;
4039 list
[2] = hdsp
->ss_in_channels
;
4040 return snd_interval_list(c
, 3, list
, 0);
4042 unsigned int list
[2];
4043 list
[0] = hdsp
->ds_in_channels
;
4044 list
[1] = hdsp
->ss_in_channels
;
4045 return snd_interval_list(c
, 2, list
, 0);
4049 static int snd_hdsp_hw_rule_out_channels(struct snd_pcm_hw_params
*params
,
4050 struct snd_pcm_hw_rule
*rule
)
4052 unsigned int list
[3];
4053 struct hdsp
*hdsp
= rule
->private;
4054 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4055 if (hdsp
->io_type
== H9632
) {
4056 list
[0] = hdsp
->qs_out_channels
;
4057 list
[1] = hdsp
->ds_out_channels
;
4058 list
[2] = hdsp
->ss_out_channels
;
4059 return snd_interval_list(c
, 3, list
, 0);
4061 list
[0] = hdsp
->ds_out_channels
;
4062 list
[1] = hdsp
->ss_out_channels
;
4064 return snd_interval_list(c
, 2, list
, 0);
4067 static int snd_hdsp_hw_rule_in_channels_rate(struct snd_pcm_hw_params
*params
,
4068 struct snd_pcm_hw_rule
*rule
)
4070 struct hdsp
*hdsp
= rule
->private;
4071 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4072 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4073 if (r
->min
> 96000 && hdsp
->io_type
== H9632
) {
4074 struct snd_interval t
= {
4075 .min
= hdsp
->qs_in_channels
,
4076 .max
= hdsp
->qs_in_channels
,
4079 return snd_interval_refine(c
, &t
);
4080 } else if (r
->min
> 48000 && r
->max
<= 96000) {
4081 struct snd_interval t
= {
4082 .min
= hdsp
->ds_in_channels
,
4083 .max
= hdsp
->ds_in_channels
,
4086 return snd_interval_refine(c
, &t
);
4087 } else if (r
->max
< 64000) {
4088 struct snd_interval t
= {
4089 .min
= hdsp
->ss_in_channels
,
4090 .max
= hdsp
->ss_in_channels
,
4093 return snd_interval_refine(c
, &t
);
4098 static int snd_hdsp_hw_rule_out_channels_rate(struct snd_pcm_hw_params
*params
,
4099 struct snd_pcm_hw_rule
*rule
)
4101 struct hdsp
*hdsp
= rule
->private;
4102 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4103 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4104 if (r
->min
> 96000 && hdsp
->io_type
== H9632
) {
4105 struct snd_interval t
= {
4106 .min
= hdsp
->qs_out_channels
,
4107 .max
= hdsp
->qs_out_channels
,
4110 return snd_interval_refine(c
, &t
);
4111 } else if (r
->min
> 48000 && r
->max
<= 96000) {
4112 struct snd_interval t
= {
4113 .min
= hdsp
->ds_out_channels
,
4114 .max
= hdsp
->ds_out_channels
,
4117 return snd_interval_refine(c
, &t
);
4118 } else if (r
->max
< 64000) {
4119 struct snd_interval t
= {
4120 .min
= hdsp
->ss_out_channels
,
4121 .max
= hdsp
->ss_out_channels
,
4124 return snd_interval_refine(c
, &t
);
4129 static int snd_hdsp_hw_rule_rate_out_channels(struct snd_pcm_hw_params
*params
,
4130 struct snd_pcm_hw_rule
*rule
)
4132 struct hdsp
*hdsp
= rule
->private;
4133 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4134 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4135 if (c
->min
>= hdsp
->ss_out_channels
) {
4136 struct snd_interval t
= {
4141 return snd_interval_refine(r
, &t
);
4142 } else if (c
->max
<= hdsp
->qs_out_channels
&& hdsp
->io_type
== H9632
) {
4143 struct snd_interval t
= {
4148 return snd_interval_refine(r
, &t
);
4149 } else if (c
->max
<= hdsp
->ds_out_channels
) {
4150 struct snd_interval t
= {
4155 return snd_interval_refine(r
, &t
);
4160 static int snd_hdsp_hw_rule_rate_in_channels(struct snd_pcm_hw_params
*params
,
4161 struct snd_pcm_hw_rule
*rule
)
4163 struct hdsp
*hdsp
= rule
->private;
4164 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4165 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4166 if (c
->min
>= hdsp
->ss_in_channels
) {
4167 struct snd_interval t
= {
4172 return snd_interval_refine(r
, &t
);
4173 } else if (c
->max
<= hdsp
->qs_in_channels
&& hdsp
->io_type
== H9632
) {
4174 struct snd_interval t
= {
4179 return snd_interval_refine(r
, &t
);
4180 } else if (c
->max
<= hdsp
->ds_in_channels
) {
4181 struct snd_interval t
= {
4186 return snd_interval_refine(r
, &t
);
4191 static int snd_hdsp_playback_open(struct snd_pcm_substream
*substream
)
4193 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4194 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
4196 if (hdsp_check_for_iobox (hdsp
))
4199 if (hdsp_check_for_firmware(hdsp
, 1))
4202 spin_lock_irq(&hdsp
->lock
);
4204 snd_pcm_set_sync(substream
);
4206 runtime
->hw
= snd_hdsp_playback_subinfo
;
4207 runtime
->dma_area
= hdsp
->playback_buffer
;
4208 runtime
->dma_bytes
= HDSP_DMA_AREA_BYTES
;
4210 hdsp
->playback_pid
= current
->pid
;
4211 hdsp
->playback_substream
= substream
;
4213 spin_unlock_irq(&hdsp
->lock
);
4215 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
4216 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, &hdsp_hw_constraints_period_sizes
);
4217 if (hdsp
->clock_source_locked
) {
4218 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= hdsp
->system_sample_rate
;
4219 } else if (hdsp
->io_type
== H9632
) {
4220 runtime
->hw
.rate_max
= 192000;
4221 runtime
->hw
.rates
= SNDRV_PCM_RATE_KNOT
;
4222 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hdsp_hw_constraints_9632_sample_rates
);
4224 if (hdsp
->io_type
== H9632
) {
4225 runtime
->hw
.channels_min
= hdsp
->qs_out_channels
;
4226 runtime
->hw
.channels_max
= hdsp
->ss_out_channels
;
4229 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4230 snd_hdsp_hw_rule_out_channels
, hdsp
,
4231 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4232 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4233 snd_hdsp_hw_rule_out_channels_rate
, hdsp
,
4234 SNDRV_PCM_HW_PARAM_RATE
, -1);
4235 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
4236 snd_hdsp_hw_rule_rate_out_channels
, hdsp
,
4237 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4239 hdsp
->creg_spdif_stream
= hdsp
->creg_spdif
;
4240 hdsp
->spdif_ctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
4241 snd_ctl_notify(hdsp
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4242 SNDRV_CTL_EVENT_MASK_INFO
, &hdsp
->spdif_ctl
->id
);
4246 static int snd_hdsp_playback_release(struct snd_pcm_substream
*substream
)
4248 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4250 spin_lock_irq(&hdsp
->lock
);
4252 hdsp
->playback_pid
= -1;
4253 hdsp
->playback_substream
= NULL
;
4255 spin_unlock_irq(&hdsp
->lock
);
4257 hdsp
->spdif_ctl
->vd
[0].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
4258 snd_ctl_notify(hdsp
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4259 SNDRV_CTL_EVENT_MASK_INFO
, &hdsp
->spdif_ctl
->id
);
4264 static int snd_hdsp_capture_open(struct snd_pcm_substream
*substream
)
4266 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4267 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
4269 if (hdsp_check_for_iobox (hdsp
))
4272 if (hdsp_check_for_firmware(hdsp
, 1))
4275 spin_lock_irq(&hdsp
->lock
);
4277 snd_pcm_set_sync(substream
);
4279 runtime
->hw
= snd_hdsp_capture_subinfo
;
4280 runtime
->dma_area
= hdsp
->capture_buffer
;
4281 runtime
->dma_bytes
= HDSP_DMA_AREA_BYTES
;
4283 hdsp
->capture_pid
= current
->pid
;
4284 hdsp
->capture_substream
= substream
;
4286 spin_unlock_irq(&hdsp
->lock
);
4288 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
4289 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, &hdsp_hw_constraints_period_sizes
);
4290 if (hdsp
->io_type
== H9632
) {
4291 runtime
->hw
.channels_min
= hdsp
->qs_in_channels
;
4292 runtime
->hw
.channels_max
= hdsp
->ss_in_channels
;
4293 runtime
->hw
.rate_max
= 192000;
4294 runtime
->hw
.rates
= SNDRV_PCM_RATE_KNOT
;
4295 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hdsp_hw_constraints_9632_sample_rates
);
4297 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4298 snd_hdsp_hw_rule_in_channels
, hdsp
,
4299 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4300 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4301 snd_hdsp_hw_rule_in_channels_rate
, hdsp
,
4302 SNDRV_PCM_HW_PARAM_RATE
, -1);
4303 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
4304 snd_hdsp_hw_rule_rate_in_channels
, hdsp
,
4305 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4309 static int snd_hdsp_capture_release(struct snd_pcm_substream
*substream
)
4311 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4313 spin_lock_irq(&hdsp
->lock
);
4315 hdsp
->capture_pid
= -1;
4316 hdsp
->capture_substream
= NULL
;
4318 spin_unlock_irq(&hdsp
->lock
);
4322 static int snd_hdsp_hwdep_dummy_op(struct snd_hwdep
*hw
, struct file
*file
)
4324 /* we have nothing to initialize but the call is required */
4329 /* helper functions for copying meter values */
4330 static inline int copy_u32_le(void __user
*dest
, void __iomem
*src
)
4332 u32 val
= readl(src
);
4333 return copy_to_user(dest
, &val
, 4);
4336 static inline int copy_u64_le(void __user
*dest
, void __iomem
*src_low
, void __iomem
*src_high
)
4338 u32 rms_low
, rms_high
;
4340 rms_low
= readl(src_low
);
4341 rms_high
= readl(src_high
);
4342 rms
= ((u64
)rms_high
<< 32) | rms_low
;
4343 return copy_to_user(dest
, &rms
, 8);
4346 static inline int copy_u48_le(void __user
*dest
, void __iomem
*src_low
, void __iomem
*src_high
)
4348 u32 rms_low
, rms_high
;
4350 rms_low
= readl(src_low
) & 0xffffff00;
4351 rms_high
= readl(src_high
) & 0xffffff00;
4352 rms
= ((u64
)rms_high
<< 32) | rms_low
;
4353 return copy_to_user(dest
, &rms
, 8);
4356 static int hdsp_9652_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4358 int doublespeed
= 0;
4359 int i
, j
, channels
, ofs
;
4361 if (hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DoubleSpeedStatus
)
4363 channels
= doublespeed
? 14 : 26;
4364 for (i
= 0, j
= 0; i
< 26; ++i
) {
4365 if (doublespeed
&& (i
& 4))
4367 ofs
= HDSP_9652_peakBase
- j
* 4;
4368 if (copy_u32_le(&peak_rms
->input_peaks
[i
], hdsp
->iobase
+ ofs
))
4370 ofs
-= channels
* 4;
4371 if (copy_u32_le(&peak_rms
->playback_peaks
[i
], hdsp
->iobase
+ ofs
))
4373 ofs
-= channels
* 4;
4374 if (copy_u32_le(&peak_rms
->output_peaks
[i
], hdsp
->iobase
+ ofs
))
4376 ofs
= HDSP_9652_rmsBase
+ j
* 8;
4377 if (copy_u48_le(&peak_rms
->input_rms
[i
], hdsp
->iobase
+ ofs
,
4378 hdsp
->iobase
+ ofs
+ 4))
4380 ofs
+= channels
* 8;
4381 if (copy_u48_le(&peak_rms
->playback_rms
[i
], hdsp
->iobase
+ ofs
,
4382 hdsp
->iobase
+ ofs
+ 4))
4384 ofs
+= channels
* 8;
4385 if (copy_u48_le(&peak_rms
->output_rms
[i
], hdsp
->iobase
+ ofs
,
4386 hdsp
->iobase
+ ofs
+ 4))
4393 static int hdsp_9632_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4396 struct hdsp_9632_meters __iomem
*m
;
4397 int doublespeed
= 0;
4399 if (hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DoubleSpeedStatus
)
4401 m
= (struct hdsp_9632_meters __iomem
*)(hdsp
->iobase
+HDSP_9632_metersBase
);
4402 for (i
= 0, j
= 0; i
< 16; ++i
, ++j
) {
4403 if (copy_u32_le(&peak_rms
->input_peaks
[i
], &m
->input_peak
[j
]))
4405 if (copy_u32_le(&peak_rms
->playback_peaks
[i
], &m
->playback_peak
[j
]))
4407 if (copy_u32_le(&peak_rms
->output_peaks
[i
], &m
->output_peak
[j
]))
4409 if (copy_u64_le(&peak_rms
->input_rms
[i
], &m
->input_rms_low
[j
],
4410 &m
->input_rms_high
[j
]))
4412 if (copy_u64_le(&peak_rms
->playback_rms
[i
], &m
->playback_rms_low
[j
],
4413 &m
->playback_rms_high
[j
]))
4415 if (copy_u64_le(&peak_rms
->output_rms
[i
], &m
->output_rms_low
[j
],
4416 &m
->output_rms_high
[j
]))
4418 if (doublespeed
&& i
== 3) i
+= 4;
4423 static int hdsp_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4427 for (i
= 0; i
< 26; i
++) {
4428 if (copy_u32_le(&peak_rms
->playback_peaks
[i
],
4429 hdsp
->iobase
+ HDSP_playbackPeakLevel
+ i
* 4))
4431 if (copy_u32_le(&peak_rms
->input_peaks
[i
],
4432 hdsp
->iobase
+ HDSP_inputPeakLevel
+ i
* 4))
4435 for (i
= 0; i
< 28; i
++) {
4436 if (copy_u32_le(&peak_rms
->output_peaks
[i
],
4437 hdsp
->iobase
+ HDSP_outputPeakLevel
+ i
* 4))
4440 for (i
= 0; i
< 26; ++i
) {
4441 if (copy_u64_le(&peak_rms
->playback_rms
[i
],
4442 hdsp
->iobase
+ HDSP_playbackRmsLevel
+ i
* 8 + 4,
4443 hdsp
->iobase
+ HDSP_playbackRmsLevel
+ i
* 8))
4445 if (copy_u64_le(&peak_rms
->input_rms
[i
],
4446 hdsp
->iobase
+ HDSP_inputRmsLevel
+ i
* 8 + 4,
4447 hdsp
->iobase
+ HDSP_inputRmsLevel
+ i
* 8))
4453 static int snd_hdsp_hwdep_ioctl(struct snd_hwdep
*hw
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
4455 struct hdsp
*hdsp
= (struct hdsp
*)hw
->private_data
;
4456 void __user
*argp
= (void __user
*)arg
;
4459 case SNDRV_HDSP_IOCTL_GET_PEAK_RMS
: {
4460 struct hdsp_peak_rms __user
*peak_rms
= (struct hdsp_peak_rms __user
*)arg
;
4462 if (!(hdsp
->state
& HDSP_FirmwareLoaded
)) {
4463 snd_printk(KERN_ERR
"Hammerfall-DSP: firmware needs to be uploaded to the card.\n");
4467 switch (hdsp
->io_type
) {
4469 return hdsp_9652_get_peak(hdsp
, peak_rms
);
4471 return hdsp_9632_get_peak(hdsp
, peak_rms
);
4473 return hdsp_get_peak(hdsp
, peak_rms
);
4476 case SNDRV_HDSP_IOCTL_GET_CONFIG_INFO
: {
4477 struct hdsp_config_info info
;
4478 unsigned long flags
;
4481 if (!(hdsp
->state
& HDSP_FirmwareLoaded
)) {
4482 snd_printk(KERN_ERR
"Hammerfall-DSP: Firmware needs to be uploaded to the card.\n");
4485 spin_lock_irqsave(&hdsp
->lock
, flags
);
4486 info
.pref_sync_ref
= (unsigned char)hdsp_pref_sync_ref(hdsp
);
4487 info
.wordclock_sync_check
= (unsigned char)hdsp_wc_sync_check(hdsp
);
4488 if (hdsp
->io_type
!= H9632
)
4489 info
.adatsync_sync_check
= (unsigned char)hdsp_adatsync_sync_check(hdsp
);
4490 info
.spdif_sync_check
= (unsigned char)hdsp_spdif_sync_check(hdsp
);
4491 for (i
= 0; i
< ((hdsp
->io_type
!= Multiface
&& hdsp
->io_type
!= H9632
) ? 3 : 1); ++i
)
4492 info
.adat_sync_check
[i
] = (unsigned char)hdsp_adat_sync_check(hdsp
, i
);
4493 info
.spdif_in
= (unsigned char)hdsp_spdif_in(hdsp
);
4494 info
.spdif_out
= (unsigned char)hdsp_spdif_out(hdsp
);
4495 info
.spdif_professional
= (unsigned char)hdsp_spdif_professional(hdsp
);
4496 info
.spdif_emphasis
= (unsigned char)hdsp_spdif_emphasis(hdsp
);
4497 info
.spdif_nonaudio
= (unsigned char)hdsp_spdif_nonaudio(hdsp
);
4498 info
.spdif_sample_rate
= hdsp_spdif_sample_rate(hdsp
);
4499 info
.system_sample_rate
= hdsp
->system_sample_rate
;
4500 info
.autosync_sample_rate
= hdsp_external_sample_rate(hdsp
);
4501 info
.system_clock_mode
= (unsigned char)hdsp_system_clock_mode(hdsp
);
4502 info
.clock_source
= (unsigned char)hdsp_clock_source(hdsp
);
4503 info
.autosync_ref
= (unsigned char)hdsp_autosync_ref(hdsp
);
4504 info
.line_out
= (unsigned char)hdsp_line_out(hdsp
);
4505 if (hdsp
->io_type
== H9632
) {
4506 info
.da_gain
= (unsigned char)hdsp_da_gain(hdsp
);
4507 info
.ad_gain
= (unsigned char)hdsp_ad_gain(hdsp
);
4508 info
.phone_gain
= (unsigned char)hdsp_phone_gain(hdsp
);
4509 info
.xlr_breakout_cable
= (unsigned char)hdsp_xlr_breakout_cable(hdsp
);
4512 if (hdsp
->io_type
== H9632
|| hdsp
->io_type
== H9652
)
4513 info
.analog_extension_board
= (unsigned char)hdsp_aeb(hdsp
);
4514 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
4515 if (copy_to_user(argp
, &info
, sizeof(info
)))
4519 case SNDRV_HDSP_IOCTL_GET_9632_AEB
: {
4520 struct hdsp_9632_aeb h9632_aeb
;
4522 if (hdsp
->io_type
!= H9632
) return -EINVAL
;
4523 h9632_aeb
.aebi
= hdsp
->ss_in_channels
- H9632_SS_CHANNELS
;
4524 h9632_aeb
.aebo
= hdsp
->ss_out_channels
- H9632_SS_CHANNELS
;
4525 if (copy_to_user(argp
, &h9632_aeb
, sizeof(h9632_aeb
)))
4529 case SNDRV_HDSP_IOCTL_GET_VERSION
: {
4530 struct hdsp_version hdsp_version
;
4533 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return -EINVAL
;
4534 if (hdsp
->io_type
== Undefined
) {
4535 if ((err
= hdsp_get_iobox_version(hdsp
)) < 0)
4538 hdsp_version
.io_type
= hdsp
->io_type
;
4539 hdsp_version
.firmware_rev
= hdsp
->firmware_rev
;
4540 if ((err
= copy_to_user(argp
, &hdsp_version
, sizeof(hdsp_version
))))
4544 case SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE
: {
4545 struct hdsp_firmware __user
*firmware
;
4546 u32 __user
*firmware_data
;
4549 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return -EINVAL
;
4550 /* SNDRV_HDSP_IOCTL_GET_VERSION must have been called */
4551 if (hdsp
->io_type
== Undefined
) return -EINVAL
;
4553 if (hdsp
->state
& (HDSP_FirmwareCached
| HDSP_FirmwareLoaded
))
4556 snd_printk(KERN_INFO
"Hammerfall-DSP: initializing firmware upload\n");
4557 firmware
= (struct hdsp_firmware __user
*)argp
;
4559 if (get_user(firmware_data
, &firmware
->firmware_data
))
4562 if (hdsp_check_for_iobox (hdsp
))
4565 if (copy_from_user(hdsp
->firmware_cache
, firmware_data
, sizeof(hdsp
->firmware_cache
)) != 0)
4568 hdsp
->state
|= HDSP_FirmwareCached
;
4570 if ((err
= snd_hdsp_load_firmware_from_cache(hdsp
)) < 0)
4573 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
4574 if ((err
= snd_hdsp_enable_io(hdsp
)) < 0)
4577 snd_hdsp_initialize_channels(hdsp
);
4578 snd_hdsp_initialize_midi_flush(hdsp
);
4580 if ((err
= snd_hdsp_create_alsa_devices(hdsp
->card
, hdsp
)) < 0) {
4581 snd_printk(KERN_ERR
"Hammerfall-DSP: error creating alsa devices\n");
4587 case SNDRV_HDSP_IOCTL_GET_MIXER
: {
4588 struct hdsp_mixer __user
*mixer
= (struct hdsp_mixer __user
*)argp
;
4589 if (copy_to_user(mixer
->matrix
, hdsp
->mixer_matrix
, sizeof(unsigned short)*HDSP_MATRIX_MIXER_SIZE
))
4599 static struct snd_pcm_ops snd_hdsp_playback_ops
= {
4600 .open
= snd_hdsp_playback_open
,
4601 .close
= snd_hdsp_playback_release
,
4602 .ioctl
= snd_hdsp_ioctl
,
4603 .hw_params
= snd_hdsp_hw_params
,
4604 .prepare
= snd_hdsp_prepare
,
4605 .trigger
= snd_hdsp_trigger
,
4606 .pointer
= snd_hdsp_hw_pointer
,
4607 .copy
= snd_hdsp_playback_copy
,
4608 .silence
= snd_hdsp_hw_silence
,
4611 static struct snd_pcm_ops snd_hdsp_capture_ops
= {
4612 .open
= snd_hdsp_capture_open
,
4613 .close
= snd_hdsp_capture_release
,
4614 .ioctl
= snd_hdsp_ioctl
,
4615 .hw_params
= snd_hdsp_hw_params
,
4616 .prepare
= snd_hdsp_prepare
,
4617 .trigger
= snd_hdsp_trigger
,
4618 .pointer
= snd_hdsp_hw_pointer
,
4619 .copy
= snd_hdsp_capture_copy
,
4622 static int __devinit
snd_hdsp_create_hwdep(struct snd_card
*card
,
4625 struct snd_hwdep
*hw
;
4628 if ((err
= snd_hwdep_new(card
, "HDSP hwdep", 0, &hw
)) < 0)
4632 hw
->private_data
= hdsp
;
4633 strcpy(hw
->name
, "HDSP hwdep interface");
4635 hw
->ops
.open
= snd_hdsp_hwdep_dummy_op
;
4636 hw
->ops
.ioctl
= snd_hdsp_hwdep_ioctl
;
4637 hw
->ops
.release
= snd_hdsp_hwdep_dummy_op
;
4642 static int snd_hdsp_create_pcm(struct snd_card
*card
, struct hdsp
*hdsp
)
4644 struct snd_pcm
*pcm
;
4647 if ((err
= snd_pcm_new(card
, hdsp
->card_name
, 0, 1, 1, &pcm
)) < 0)
4651 pcm
->private_data
= hdsp
;
4652 strcpy(pcm
->name
, hdsp
->card_name
);
4654 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_hdsp_playback_ops
);
4655 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_hdsp_capture_ops
);
4657 pcm
->info_flags
= SNDRV_PCM_INFO_JOINT_DUPLEX
;
4662 static void snd_hdsp_9652_enable_mixer (struct hdsp
*hdsp
)
4664 hdsp
->control2_register
|= HDSP_9652_ENABLE_MIXER
;
4665 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
4668 static int snd_hdsp_enable_io (struct hdsp
*hdsp
)
4672 if (hdsp_fifo_wait (hdsp
, 0, 100)) {
4673 snd_printk(KERN_ERR
"Hammerfall-DSP: enable_io fifo_wait failed\n");
4677 for (i
= 0; i
< hdsp
->max_channels
; ++i
) {
4678 hdsp_write (hdsp
, HDSP_inputEnable
+ (4 * i
), 1);
4679 hdsp_write (hdsp
, HDSP_outputEnable
+ (4 * i
), 1);
4685 static void snd_hdsp_initialize_channels(struct hdsp
*hdsp
)
4687 int status
, aebi_channels
, aebo_channels
;
4689 switch (hdsp
->io_type
) {
4691 hdsp
->card_name
= "RME Hammerfall DSP + Digiface";
4692 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= DIGIFACE_SS_CHANNELS
;
4693 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= DIGIFACE_DS_CHANNELS
;
4697 hdsp
->card_name
= "RME Hammerfall HDSP 9652";
4698 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= H9652_SS_CHANNELS
;
4699 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= H9652_DS_CHANNELS
;
4703 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
4704 /* HDSP_AEBx bits are low when AEB are connected */
4705 aebi_channels
= (status
& HDSP_AEBI
) ? 0 : 4;
4706 aebo_channels
= (status
& HDSP_AEBO
) ? 0 : 4;
4707 hdsp
->card_name
= "RME Hammerfall HDSP 9632";
4708 hdsp
->ss_in_channels
= H9632_SS_CHANNELS
+aebi_channels
;
4709 hdsp
->ds_in_channels
= H9632_DS_CHANNELS
+aebi_channels
;
4710 hdsp
->qs_in_channels
= H9632_QS_CHANNELS
+aebi_channels
;
4711 hdsp
->ss_out_channels
= H9632_SS_CHANNELS
+aebo_channels
;
4712 hdsp
->ds_out_channels
= H9632_DS_CHANNELS
+aebo_channels
;
4713 hdsp
->qs_out_channels
= H9632_QS_CHANNELS
+aebo_channels
;
4717 hdsp
->card_name
= "RME Hammerfall DSP + Multiface";
4718 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= MULTIFACE_SS_CHANNELS
;
4719 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= MULTIFACE_DS_CHANNELS
;
4723 /* should never get here */
4728 static void snd_hdsp_initialize_midi_flush (struct hdsp
*hdsp
)
4730 snd_hdsp_flush_midi_input (hdsp
, 0);
4731 snd_hdsp_flush_midi_input (hdsp
, 1);
4734 static int snd_hdsp_create_alsa_devices(struct snd_card
*card
, struct hdsp
*hdsp
)
4738 if ((err
= snd_hdsp_create_pcm(card
, hdsp
)) < 0) {
4739 snd_printk(KERN_ERR
"Hammerfall-DSP: Error creating pcm interface\n");
4744 if ((err
= snd_hdsp_create_midi(card
, hdsp
, 0)) < 0) {
4745 snd_printk(KERN_ERR
"Hammerfall-DSP: Error creating first midi interface\n");
4749 if (hdsp
->io_type
== Digiface
|| hdsp
->io_type
== H9652
) {
4750 if ((err
= snd_hdsp_create_midi(card
, hdsp
, 1)) < 0) {
4751 snd_printk(KERN_ERR
"Hammerfall-DSP: Error creating second midi interface\n");
4756 if ((err
= snd_hdsp_create_controls(card
, hdsp
)) < 0) {
4757 snd_printk(KERN_ERR
"Hammerfall-DSP: Error creating ctl interface\n");
4761 snd_hdsp_proc_init(hdsp
);
4763 hdsp
->system_sample_rate
= -1;
4764 hdsp
->playback_pid
= -1;
4765 hdsp
->capture_pid
= -1;
4766 hdsp
->capture_substream
= NULL
;
4767 hdsp
->playback_substream
= NULL
;
4769 if ((err
= snd_hdsp_set_defaults(hdsp
)) < 0) {
4770 snd_printk(KERN_ERR
"Hammerfall-DSP: Error setting default values\n");
4774 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
4775 strcpy(card
->shortname
, "Hammerfall DSP");
4776 sprintf(card
->longname
, "%s at 0x%lx, irq %d", hdsp
->card_name
,
4777 hdsp
->port
, hdsp
->irq
);
4779 if ((err
= snd_card_register(card
)) < 0) {
4780 snd_printk(KERN_ERR
"Hammerfall-DSP: error registering card\n");
4783 hdsp
->state
|= HDSP_InitializationComplete
;
4789 #ifdef HDSP_FW_LOADER
4790 /* load firmware via hotplug fw loader */
4791 static int __devinit
hdsp_request_fw_loader(struct hdsp
*hdsp
)
4794 const struct firmware
*fw
;
4797 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
4799 if (hdsp
->io_type
== Undefined
) {
4800 if ((err
= hdsp_get_iobox_version(hdsp
)) < 0)
4802 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
4806 /* caution: max length of firmware filename is 30! */
4807 switch (hdsp
->io_type
) {
4809 if (hdsp
->firmware_rev
== 0xa)
4810 fwfile
= "multiface_firmware.bin";
4812 fwfile
= "multiface_firmware_rev11.bin";
4815 if (hdsp
->firmware_rev
== 0xa)
4816 fwfile
= "digiface_firmware.bin";
4818 fwfile
= "digiface_firmware_rev11.bin";
4821 snd_printk(KERN_ERR
"Hammerfall-DSP: invalid io_type %d\n", hdsp
->io_type
);
4825 if (request_firmware(&fw
, fwfile
, &hdsp
->pci
->dev
)) {
4826 snd_printk(KERN_ERR
"Hammerfall-DSP: cannot load firmware %s\n", fwfile
);
4829 if (fw
->size
< sizeof(hdsp
->firmware_cache
)) {
4830 snd_printk(KERN_ERR
"Hammerfall-DSP: too short firmware size %d (expected %d)\n",
4831 (int)fw
->size
, (int)sizeof(hdsp
->firmware_cache
));
4832 release_firmware(fw
);
4836 memcpy(hdsp
->firmware_cache
, fw
->data
, sizeof(hdsp
->firmware_cache
));
4838 release_firmware(fw
);
4840 hdsp
->state
|= HDSP_FirmwareCached
;
4842 if ((err
= snd_hdsp_load_firmware_from_cache(hdsp
)) < 0)
4845 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
4846 if ((err
= snd_hdsp_enable_io(hdsp
)) < 0)
4849 if ((err
= snd_hdsp_create_hwdep(hdsp
->card
, hdsp
)) < 0) {
4850 snd_printk(KERN_ERR
"Hammerfall-DSP: error creating hwdep device\n");
4853 snd_hdsp_initialize_channels(hdsp
);
4854 snd_hdsp_initialize_midi_flush(hdsp
);
4855 if ((err
= snd_hdsp_create_alsa_devices(hdsp
->card
, hdsp
)) < 0) {
4856 snd_printk(KERN_ERR
"Hammerfall-DSP: error creating alsa devices\n");
4864 static int __devinit
snd_hdsp_create(struct snd_card
*card
,
4867 struct pci_dev
*pci
= hdsp
->pci
;
4874 hdsp
->midi
[0].rmidi
= NULL
;
4875 hdsp
->midi
[1].rmidi
= NULL
;
4876 hdsp
->midi
[0].input
= NULL
;
4877 hdsp
->midi
[1].input
= NULL
;
4878 hdsp
->midi
[0].output
= NULL
;
4879 hdsp
->midi
[1].output
= NULL
;
4880 hdsp
->midi
[0].pending
= 0;
4881 hdsp
->midi
[1].pending
= 0;
4882 spin_lock_init(&hdsp
->midi
[0].lock
);
4883 spin_lock_init(&hdsp
->midi
[1].lock
);
4884 hdsp
->iobase
= NULL
;
4885 hdsp
->control_register
= 0;
4886 hdsp
->control2_register
= 0;
4887 hdsp
->io_type
= Undefined
;
4888 hdsp
->max_channels
= 26;
4892 spin_lock_init(&hdsp
->lock
);
4894 tasklet_init(&hdsp
->midi_tasklet
, hdsp_midi_tasklet
, (unsigned long)hdsp
);
4896 pci_read_config_word(hdsp
->pci
, PCI_CLASS_REVISION
, &hdsp
->firmware_rev
);
4897 hdsp
->firmware_rev
&= 0xff;
4899 /* From Martin Bjoernsen :
4900 "It is important that the card's latency timer register in
4901 the PCI configuration space is set to a value much larger
4902 than 0 by the computer's BIOS or the driver.
4903 The windows driver always sets this 8 bit register [...]
4904 to its maximum 255 to avoid problems with some computers."
4906 pci_write_config_byte(hdsp
->pci
, PCI_LATENCY_TIMER
, 0xFF);
4908 strcpy(card
->driver
, "H-DSP");
4909 strcpy(card
->mixername
, "Xilinx FPGA");
4911 if (hdsp
->firmware_rev
< 0xa)
4913 else if (hdsp
->firmware_rev
< 0x64)
4914 hdsp
->card_name
= "RME Hammerfall DSP";
4915 else if (hdsp
->firmware_rev
< 0x96) {
4916 hdsp
->card_name
= "RME HDSP 9652";
4919 hdsp
->card_name
= "RME HDSP 9632";
4920 hdsp
->max_channels
= 16;
4924 if ((err
= pci_enable_device(pci
)) < 0)
4927 pci_set_master(hdsp
->pci
);
4929 if ((err
= pci_request_regions(pci
, "hdsp")) < 0)
4931 hdsp
->port
= pci_resource_start(pci
, 0);
4932 if ((hdsp
->iobase
= ioremap_nocache(hdsp
->port
, HDSP_IO_EXTENT
)) == NULL
) {
4933 snd_printk(KERN_ERR
"Hammerfall-DSP: unable to remap region 0x%lx-0x%lx\n", hdsp
->port
, hdsp
->port
+ HDSP_IO_EXTENT
- 1);
4937 if (request_irq(pci
->irq
, snd_hdsp_interrupt
, IRQF_DISABLED
|IRQF_SHARED
, "hdsp", (void *)hdsp
)) {
4938 snd_printk(KERN_ERR
"Hammerfall-DSP: unable to use IRQ %d\n", pci
->irq
);
4942 hdsp
->irq
= pci
->irq
;
4943 hdsp
->precise_ptr
= 1;
4944 hdsp
->use_midi_tasklet
= 1;
4946 if ((err
= snd_hdsp_initialize_memory(hdsp
)) < 0)
4949 if (!is_9652
&& !is_9632
) {
4950 /* we wait 2 seconds to let freshly inserted cardbus cards do their hardware init */
4953 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
4954 #ifdef HDSP_FW_LOADER
4955 if ((err
= hdsp_request_fw_loader(hdsp
)) < 0)
4956 /* we don't fail as this can happen
4957 if userspace is not ready for
4960 snd_printk(KERN_ERR
"Hammerfall-DSP: couldn't get firmware from userspace. try using hdsploader\n");
4962 /* init is complete, we return */
4965 /* no iobox connected, we defer initialization */
4966 snd_printk(KERN_INFO
"Hammerfall-DSP: card initialization pending : waiting for firmware\n");
4967 if ((err
= snd_hdsp_create_hwdep(card
, hdsp
)) < 0)
4971 snd_printk(KERN_INFO
"Hammerfall-DSP: Firmware already present, initializing card.\n");
4972 if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version1
)
4973 hdsp
->io_type
= Multiface
;
4975 hdsp
->io_type
= Digiface
;
4979 if ((err
= snd_hdsp_enable_io(hdsp
)) != 0)
4983 hdsp
->io_type
= H9652
;
4986 hdsp
->io_type
= H9632
;
4988 if ((err
= snd_hdsp_create_hwdep(card
, hdsp
)) < 0)
4991 snd_hdsp_initialize_channels(hdsp
);
4992 snd_hdsp_initialize_midi_flush(hdsp
);
4994 hdsp
->state
|= HDSP_FirmwareLoaded
;
4996 if ((err
= snd_hdsp_create_alsa_devices(card
, hdsp
)) < 0)
5002 static int snd_hdsp_free(struct hdsp
*hdsp
)
5005 /* stop the audio, and cancel all interrupts */
5006 tasklet_kill(&hdsp
->midi_tasklet
);
5007 hdsp
->control_register
&= ~(HDSP_Start
|HDSP_AudioInterruptEnable
|HDSP_Midi0InterruptEnable
|HDSP_Midi1InterruptEnable
);
5008 hdsp_write (hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
5012 free_irq(hdsp
->irq
, (void *)hdsp
);
5014 snd_hdsp_free_buffers(hdsp
);
5017 iounmap(hdsp
->iobase
);
5020 pci_release_regions(hdsp
->pci
);
5022 pci_disable_device(hdsp
->pci
);
5026 static void snd_hdsp_card_free(struct snd_card
*card
)
5028 struct hdsp
*hdsp
= (struct hdsp
*) card
->private_data
;
5031 snd_hdsp_free(hdsp
);
5034 static int __devinit
snd_hdsp_probe(struct pci_dev
*pci
,
5035 const struct pci_device_id
*pci_id
)
5039 struct snd_card
*card
;
5042 if (dev
>= SNDRV_CARDS
)
5049 if (!(card
= snd_card_new(index
[dev
], id
[dev
], THIS_MODULE
, sizeof(struct hdsp
))))
5052 hdsp
= (struct hdsp
*) card
->private_data
;
5053 card
->private_free
= snd_hdsp_card_free
;
5056 snd_card_set_dev(card
, &pci
->dev
);
5058 if ((err
= snd_hdsp_create(card
, hdsp
)) < 0) {
5059 snd_card_free(card
);
5063 strcpy(card
->shortname
, "Hammerfall DSP");
5064 sprintf(card
->longname
, "%s at 0x%lx, irq %d", hdsp
->card_name
,
5065 hdsp
->port
, hdsp
->irq
);
5067 if ((err
= snd_card_register(card
)) < 0) {
5068 snd_card_free(card
);
5071 pci_set_drvdata(pci
, card
);
5076 static void __devexit
snd_hdsp_remove(struct pci_dev
*pci
)
5078 snd_card_free(pci_get_drvdata(pci
));
5079 pci_set_drvdata(pci
, NULL
);
5082 static struct pci_driver driver
= {
5083 .name
= "RME Hammerfall DSP",
5084 .id_table
= snd_hdsp_ids
,
5085 .probe
= snd_hdsp_probe
,
5086 .remove
= __devexit_p(snd_hdsp_remove
),
5089 static int __init
alsa_card_hdsp_init(void)
5091 return pci_register_driver(&driver
);
5094 static void __exit
alsa_card_hdsp_exit(void)
5096 pci_unregister_driver(&driver
);
5099 module_init(alsa_card_hdsp_init
)
5100 module_exit(alsa_card_hdsp_exit
)