2 * ALSA driver for RME Hammerfall DSP audio interface(s)
4 * Copyright (c) 2002 Paul Davis
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/interrupt.h>
27 #include <linux/pci.h>
28 #include <linux/firmware.h>
29 #include <linux/module.h>
30 #include <linux/math64.h>
31 #include <linux/vmalloc.h>
33 #include <linux/nospec.h>
35 #include <sound/core.h>
36 #include <sound/control.h>
37 #include <sound/pcm.h>
38 #include <sound/info.h>
39 #include <sound/asoundef.h>
40 #include <sound/rawmidi.h>
41 #include <sound/hwdep.h>
42 #include <sound/initval.h>
43 #include <sound/hdsp.h>
45 #include <asm/byteorder.h>
46 #include <asm/current.h>
48 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
49 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
50 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
; /* Enable this card */
52 module_param_array(index
, int, NULL
, 0444);
53 MODULE_PARM_DESC(index
, "Index value for RME Hammerfall DSP interface.");
54 module_param_array(id
, charp
, NULL
, 0444);
55 MODULE_PARM_DESC(id
, "ID string for RME Hammerfall DSP interface.");
56 module_param_array(enable
, bool, NULL
, 0444);
57 MODULE_PARM_DESC(enable
, "Enable/disable specific Hammerfall DSP soundcards.");
58 MODULE_AUTHOR("Paul Davis <paul@linuxaudiosystems.com>, Marcus Andersson, Thomas Charbonnel <thomas@undata.org>");
59 MODULE_DESCRIPTION("RME Hammerfall DSP");
60 MODULE_LICENSE("GPL");
61 MODULE_SUPPORTED_DEVICE("{{RME Hammerfall-DSP},"
64 MODULE_FIRMWARE("rpm_firmware.bin");
65 MODULE_FIRMWARE("multiface_firmware.bin");
66 MODULE_FIRMWARE("multiface_firmware_rev11.bin");
67 MODULE_FIRMWARE("digiface_firmware.bin");
68 MODULE_FIRMWARE("digiface_firmware_rev11.bin");
70 #define HDSP_MAX_CHANNELS 26
71 #define HDSP_MAX_DS_CHANNELS 14
72 #define HDSP_MAX_QS_CHANNELS 8
73 #define DIGIFACE_SS_CHANNELS 26
74 #define DIGIFACE_DS_CHANNELS 14
75 #define MULTIFACE_SS_CHANNELS 18
76 #define MULTIFACE_DS_CHANNELS 14
77 #define H9652_SS_CHANNELS 26
78 #define H9652_DS_CHANNELS 14
79 /* This does not include possible Analog Extension Boards
80 AEBs are detected at card initialization
82 #define H9632_SS_CHANNELS 12
83 #define H9632_DS_CHANNELS 8
84 #define H9632_QS_CHANNELS 4
85 #define RPM_CHANNELS 6
87 /* Write registers. These are defined as byte-offsets from the iobase value.
89 #define HDSP_resetPointer 0
90 #define HDSP_freqReg 0
91 #define HDSP_outputBufferAddress 32
92 #define HDSP_inputBufferAddress 36
93 #define HDSP_controlRegister 64
94 #define HDSP_interruptConfirmation 96
95 #define HDSP_outputEnable 128
96 #define HDSP_control2Reg 256
97 #define HDSP_midiDataOut0 352
98 #define HDSP_midiDataOut1 356
99 #define HDSP_fifoData 368
100 #define HDSP_inputEnable 384
102 /* Read registers. These are defined as byte-offsets from the iobase value
105 #define HDSP_statusRegister 0
106 #define HDSP_timecode 128
107 #define HDSP_status2Register 192
108 #define HDSP_midiDataIn0 360
109 #define HDSP_midiDataIn1 364
110 #define HDSP_midiStatusOut0 384
111 #define HDSP_midiStatusOut1 388
112 #define HDSP_midiStatusIn0 392
113 #define HDSP_midiStatusIn1 396
114 #define HDSP_fifoStatus 400
116 /* the meters are regular i/o-mapped registers, but offset
117 considerably from the rest. the peak registers are reset
118 when read; the least-significant 4 bits are full-scale counters;
119 the actual peak value is in the most-significant 24 bits.
122 #define HDSP_playbackPeakLevel 4096 /* 26 * 32 bit values */
123 #define HDSP_inputPeakLevel 4224 /* 26 * 32 bit values */
124 #define HDSP_outputPeakLevel 4352 /* (26+2) * 32 bit values */
125 #define HDSP_playbackRmsLevel 4612 /* 26 * 64 bit values */
126 #define HDSP_inputRmsLevel 4868 /* 26 * 64 bit values */
129 /* This is for H9652 cards
130 Peak values are read downward from the base
131 Rms values are read upward
132 There are rms values for the outputs too
133 26*3 values are read in ss mode
134 14*3 in ds mode, with no gap between values
136 #define HDSP_9652_peakBase 7164
137 #define HDSP_9652_rmsBase 4096
139 /* c.f. the hdsp_9632_meters_t struct */
140 #define HDSP_9632_metersBase 4096
142 #define HDSP_IO_EXTENT 7168
144 /* control2 register bits */
146 #define HDSP_TMS 0x01
147 #define HDSP_TCK 0x02
148 #define HDSP_TDI 0x04
149 #define HDSP_JTAG 0x08
150 #define HDSP_PWDN 0x10
151 #define HDSP_PROGRAM 0x020
152 #define HDSP_CONFIG_MODE_0 0x040
153 #define HDSP_CONFIG_MODE_1 0x080
154 #define HDSP_VERSION_BIT (0x100 | HDSP_S_LOAD)
155 #define HDSP_BIGENDIAN_MODE 0x200
156 #define HDSP_RD_MULTIPLE 0x400
157 #define HDSP_9652_ENABLE_MIXER 0x800
158 #define HDSP_S200 0x800
159 #define HDSP_S300 (0x100 | HDSP_S200) /* dummy, purpose of 0x100 unknown */
160 #define HDSP_CYCLIC_MODE 0x1000
161 #define HDSP_TDO 0x10000000
163 #define HDSP_S_PROGRAM (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_0)
164 #define HDSP_S_LOAD (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_1)
166 /* Control Register bits */
168 #define HDSP_Start (1<<0) /* start engine */
169 #define HDSP_Latency0 (1<<1) /* buffer size = 2^n where n is defined by Latency{2,1,0} */
170 #define HDSP_Latency1 (1<<2) /* [ see above ] */
171 #define HDSP_Latency2 (1<<3) /* [ see above ] */
172 #define HDSP_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
173 #define HDSP_AudioInterruptEnable (1<<5) /* what do you think ? */
174 #define HDSP_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz/176.4kHz 1=48kHz/96kHz/192kHz */
175 #define HDSP_Frequency1 (1<<7) /* 0=32kHz/64kHz/128kHz */
176 #define HDSP_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
177 #define HDSP_SPDIFProfessional (1<<9) /* 0=consumer, 1=professional */
178 #define HDSP_SPDIFEmphasis (1<<10) /* 0=none, 1=on */
179 #define HDSP_SPDIFNonAudio (1<<11) /* 0=off, 1=on */
180 #define HDSP_SPDIFOpticalOut (1<<12) /* 1=use 1st ADAT connector for SPDIF, 0=do not */
181 #define HDSP_SyncRef2 (1<<13)
182 #define HDSP_SPDIFInputSelect0 (1<<14)
183 #define HDSP_SPDIFInputSelect1 (1<<15)
184 #define HDSP_SyncRef0 (1<<16)
185 #define HDSP_SyncRef1 (1<<17)
186 #define HDSP_AnalogExtensionBoard (1<<18) /* For H9632 cards */
187 #define HDSP_XLRBreakoutCable (1<<20) /* For H9632 cards */
188 #define HDSP_Midi0InterruptEnable (1<<22)
189 #define HDSP_Midi1InterruptEnable (1<<23)
190 #define HDSP_LineOut (1<<24)
191 #define HDSP_ADGain0 (1<<25) /* From here : H9632 specific */
192 #define HDSP_ADGain1 (1<<26)
193 #define HDSP_DAGain0 (1<<27)
194 #define HDSP_DAGain1 (1<<28)
195 #define HDSP_PhoneGain0 (1<<29)
196 #define HDSP_PhoneGain1 (1<<30)
197 #define HDSP_QuadSpeed (1<<31)
199 /* RPM uses some of the registers for special purposes */
200 #define HDSP_RPM_Inp12 0x04A00
201 #define HDSP_RPM_Inp12_Phon_6dB 0x00800 /* Dolby */
202 #define HDSP_RPM_Inp12_Phon_0dB 0x00000 /* .. */
203 #define HDSP_RPM_Inp12_Phon_n6dB 0x04000 /* inp_0 */
204 #define HDSP_RPM_Inp12_Line_0dB 0x04200 /* Dolby+PRO */
205 #define HDSP_RPM_Inp12_Line_n6dB 0x00200 /* PRO */
207 #define HDSP_RPM_Inp34 0x32000
208 #define HDSP_RPM_Inp34_Phon_6dB 0x20000 /* SyncRef1 */
209 #define HDSP_RPM_Inp34_Phon_0dB 0x00000 /* .. */
210 #define HDSP_RPM_Inp34_Phon_n6dB 0x02000 /* SyncRef2 */
211 #define HDSP_RPM_Inp34_Line_0dB 0x30000 /* SyncRef1+SyncRef0 */
212 #define HDSP_RPM_Inp34_Line_n6dB 0x10000 /* SyncRef0 */
214 #define HDSP_RPM_Bypass 0x01000
216 #define HDSP_RPM_Disconnect 0x00001
218 #define HDSP_ADGainMask (HDSP_ADGain0|HDSP_ADGain1)
219 #define HDSP_ADGainMinus10dBV HDSP_ADGainMask
220 #define HDSP_ADGainPlus4dBu (HDSP_ADGain0)
221 #define HDSP_ADGainLowGain 0
223 #define HDSP_DAGainMask (HDSP_DAGain0|HDSP_DAGain1)
224 #define HDSP_DAGainHighGain HDSP_DAGainMask
225 #define HDSP_DAGainPlus4dBu (HDSP_DAGain0)
226 #define HDSP_DAGainMinus10dBV 0
228 #define HDSP_PhoneGainMask (HDSP_PhoneGain0|HDSP_PhoneGain1)
229 #define HDSP_PhoneGain0dB HDSP_PhoneGainMask
230 #define HDSP_PhoneGainMinus6dB (HDSP_PhoneGain0)
231 #define HDSP_PhoneGainMinus12dB 0
233 #define HDSP_LatencyMask (HDSP_Latency0|HDSP_Latency1|HDSP_Latency2)
234 #define HDSP_FrequencyMask (HDSP_Frequency0|HDSP_Frequency1|HDSP_DoubleSpeed|HDSP_QuadSpeed)
236 #define HDSP_SPDIFInputMask (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
237 #define HDSP_SPDIFInputADAT1 0
238 #define HDSP_SPDIFInputCoaxial (HDSP_SPDIFInputSelect0)
239 #define HDSP_SPDIFInputCdrom (HDSP_SPDIFInputSelect1)
240 #define HDSP_SPDIFInputAES (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
242 #define HDSP_SyncRefMask (HDSP_SyncRef0|HDSP_SyncRef1|HDSP_SyncRef2)
243 #define HDSP_SyncRef_ADAT1 0
244 #define HDSP_SyncRef_ADAT2 (HDSP_SyncRef0)
245 #define HDSP_SyncRef_ADAT3 (HDSP_SyncRef1)
246 #define HDSP_SyncRef_SPDIF (HDSP_SyncRef0|HDSP_SyncRef1)
247 #define HDSP_SyncRef_WORD (HDSP_SyncRef2)
248 #define HDSP_SyncRef_ADAT_SYNC (HDSP_SyncRef0|HDSP_SyncRef2)
250 /* Sample Clock Sources */
252 #define HDSP_CLOCK_SOURCE_AUTOSYNC 0
253 #define HDSP_CLOCK_SOURCE_INTERNAL_32KHZ 1
254 #define HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
255 #define HDSP_CLOCK_SOURCE_INTERNAL_48KHZ 3
256 #define HDSP_CLOCK_SOURCE_INTERNAL_64KHZ 4
257 #define HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
258 #define HDSP_CLOCK_SOURCE_INTERNAL_96KHZ 6
259 #define HDSP_CLOCK_SOURCE_INTERNAL_128KHZ 7
260 #define HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
261 #define HDSP_CLOCK_SOURCE_INTERNAL_192KHZ 9
263 /* Preferred sync reference choices - used by "pref_sync_ref" control switch */
265 #define HDSP_SYNC_FROM_WORD 0
266 #define HDSP_SYNC_FROM_SPDIF 1
267 #define HDSP_SYNC_FROM_ADAT1 2
268 #define HDSP_SYNC_FROM_ADAT_SYNC 3
269 #define HDSP_SYNC_FROM_ADAT2 4
270 #define HDSP_SYNC_FROM_ADAT3 5
272 /* SyncCheck status */
274 #define HDSP_SYNC_CHECK_NO_LOCK 0
275 #define HDSP_SYNC_CHECK_LOCK 1
276 #define HDSP_SYNC_CHECK_SYNC 2
278 /* AutoSync references - used by "autosync_ref" control switch */
280 #define HDSP_AUTOSYNC_FROM_WORD 0
281 #define HDSP_AUTOSYNC_FROM_ADAT_SYNC 1
282 #define HDSP_AUTOSYNC_FROM_SPDIF 2
283 #define HDSP_AUTOSYNC_FROM_NONE 3
284 #define HDSP_AUTOSYNC_FROM_ADAT1 4
285 #define HDSP_AUTOSYNC_FROM_ADAT2 5
286 #define HDSP_AUTOSYNC_FROM_ADAT3 6
288 /* Possible sources of S/PDIF input */
290 #define HDSP_SPDIFIN_OPTICAL 0 /* optical (ADAT1) */
291 #define HDSP_SPDIFIN_COAXIAL 1 /* coaxial (RCA) */
292 #define HDSP_SPDIFIN_INTERNAL 2 /* internal (CDROM) */
293 #define HDSP_SPDIFIN_AES 3 /* xlr for H9632 (AES)*/
295 #define HDSP_Frequency32KHz HDSP_Frequency0
296 #define HDSP_Frequency44_1KHz HDSP_Frequency1
297 #define HDSP_Frequency48KHz (HDSP_Frequency1|HDSP_Frequency0)
298 #define HDSP_Frequency64KHz (HDSP_DoubleSpeed|HDSP_Frequency0)
299 #define HDSP_Frequency88_2KHz (HDSP_DoubleSpeed|HDSP_Frequency1)
300 #define HDSP_Frequency96KHz (HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
301 /* For H9632 cards */
302 #define HDSP_Frequency128KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency0)
303 #define HDSP_Frequency176_4KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1)
304 #define HDSP_Frequency192KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
305 /* RME says n = 104857600000000, but in the windows MADI driver, I see:
306 return 104857600000000 / rate; // 100 MHz
307 return 110100480000000 / rate; // 105 MHz
309 #define DDS_NUMERATOR 104857600000000ULL; /* = 2^20 * 10^8 */
311 #define hdsp_encode_latency(x) (((x)<<1) & HDSP_LatencyMask)
312 #define hdsp_decode_latency(x) (((x) & HDSP_LatencyMask)>>1)
314 #define hdsp_encode_spdif_in(x) (((x)&0x3)<<14)
315 #define hdsp_decode_spdif_in(x) (((x)>>14)&0x3)
317 /* Status Register bits */
319 #define HDSP_audioIRQPending (1<<0)
320 #define HDSP_Lock2 (1<<1) /* this is for Digiface and H9652 */
321 #define HDSP_spdifFrequency3 HDSP_Lock2 /* this is for H9632 only */
322 #define HDSP_Lock1 (1<<2)
323 #define HDSP_Lock0 (1<<3)
324 #define HDSP_SPDIFSync (1<<4)
325 #define HDSP_TimecodeLock (1<<5)
326 #define HDSP_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
327 #define HDSP_Sync2 (1<<16)
328 #define HDSP_Sync1 (1<<17)
329 #define HDSP_Sync0 (1<<18)
330 #define HDSP_DoubleSpeedStatus (1<<19)
331 #define HDSP_ConfigError (1<<20)
332 #define HDSP_DllError (1<<21)
333 #define HDSP_spdifFrequency0 (1<<22)
334 #define HDSP_spdifFrequency1 (1<<23)
335 #define HDSP_spdifFrequency2 (1<<24)
336 #define HDSP_SPDIFErrorFlag (1<<25)
337 #define HDSP_BufferID (1<<26)
338 #define HDSP_TimecodeSync (1<<27)
339 #define HDSP_AEBO (1<<28) /* H9632 specific Analog Extension Boards */
340 #define HDSP_AEBI (1<<29) /* 0 = present, 1 = absent */
341 #define HDSP_midi0IRQPending (1<<30)
342 #define HDSP_midi1IRQPending (1<<31)
344 #define HDSP_spdifFrequencyMask (HDSP_spdifFrequency0|HDSP_spdifFrequency1|HDSP_spdifFrequency2)
345 #define HDSP_spdifFrequencyMask_9632 (HDSP_spdifFrequency0|\
346 HDSP_spdifFrequency1|\
347 HDSP_spdifFrequency2|\
348 HDSP_spdifFrequency3)
350 #define HDSP_spdifFrequency32KHz (HDSP_spdifFrequency0)
351 #define HDSP_spdifFrequency44_1KHz (HDSP_spdifFrequency1)
352 #define HDSP_spdifFrequency48KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency1)
354 #define HDSP_spdifFrequency64KHz (HDSP_spdifFrequency2)
355 #define HDSP_spdifFrequency88_2KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency2)
356 #define HDSP_spdifFrequency96KHz (HDSP_spdifFrequency2|HDSP_spdifFrequency1)
358 /* This is for H9632 cards */
359 #define HDSP_spdifFrequency128KHz (HDSP_spdifFrequency0|\
360 HDSP_spdifFrequency1|\
361 HDSP_spdifFrequency2)
362 #define HDSP_spdifFrequency176_4KHz HDSP_spdifFrequency3
363 #define HDSP_spdifFrequency192KHz (HDSP_spdifFrequency3|HDSP_spdifFrequency0)
365 /* Status2 Register bits */
367 #define HDSP_version0 (1<<0)
368 #define HDSP_version1 (1<<1)
369 #define HDSP_version2 (1<<2)
370 #define HDSP_wc_lock (1<<3)
371 #define HDSP_wc_sync (1<<4)
372 #define HDSP_inp_freq0 (1<<5)
373 #define HDSP_inp_freq1 (1<<6)
374 #define HDSP_inp_freq2 (1<<7)
375 #define HDSP_SelSyncRef0 (1<<8)
376 #define HDSP_SelSyncRef1 (1<<9)
377 #define HDSP_SelSyncRef2 (1<<10)
379 #define HDSP_wc_valid (HDSP_wc_lock|HDSP_wc_sync)
381 #define HDSP_systemFrequencyMask (HDSP_inp_freq0|HDSP_inp_freq1|HDSP_inp_freq2)
382 #define HDSP_systemFrequency32 (HDSP_inp_freq0)
383 #define HDSP_systemFrequency44_1 (HDSP_inp_freq1)
384 #define HDSP_systemFrequency48 (HDSP_inp_freq0|HDSP_inp_freq1)
385 #define HDSP_systemFrequency64 (HDSP_inp_freq2)
386 #define HDSP_systemFrequency88_2 (HDSP_inp_freq0|HDSP_inp_freq2)
387 #define HDSP_systemFrequency96 (HDSP_inp_freq1|HDSP_inp_freq2)
388 /* FIXME : more values for 9632 cards ? */
390 #define HDSP_SelSyncRefMask (HDSP_SelSyncRef0|HDSP_SelSyncRef1|HDSP_SelSyncRef2)
391 #define HDSP_SelSyncRef_ADAT1 0
392 #define HDSP_SelSyncRef_ADAT2 (HDSP_SelSyncRef0)
393 #define HDSP_SelSyncRef_ADAT3 (HDSP_SelSyncRef1)
394 #define HDSP_SelSyncRef_SPDIF (HDSP_SelSyncRef0|HDSP_SelSyncRef1)
395 #define HDSP_SelSyncRef_WORD (HDSP_SelSyncRef2)
396 #define HDSP_SelSyncRef_ADAT_SYNC (HDSP_SelSyncRef0|HDSP_SelSyncRef2)
398 /* Card state flags */
400 #define HDSP_InitializationComplete (1<<0)
401 #define HDSP_FirmwareLoaded (1<<1)
402 #define HDSP_FirmwareCached (1<<2)
404 /* FIFO wait times, defined in terms of 1/10ths of msecs */
406 #define HDSP_LONG_WAIT 5000
407 #define HDSP_SHORT_WAIT 30
409 #define UNITY_GAIN 32768
410 #define MINUS_INFINITY_GAIN 0
412 /* the size of a substream (1 mono data stream) */
414 #define HDSP_CHANNEL_BUFFER_SAMPLES (16*1024)
415 #define HDSP_CHANNEL_BUFFER_BYTES (4*HDSP_CHANNEL_BUFFER_SAMPLES)
417 /* the size of the area we need to allocate for DMA transfers. the
418 size is the same regardless of the number of channels - the
419 Multiface still uses the same memory area.
421 Note that we allocate 1 more channel than is apparently needed
422 because the h/w seems to write 1 byte beyond the end of the last
426 #define HDSP_DMA_AREA_BYTES ((HDSP_MAX_CHANNELS+1) * HDSP_CHANNEL_BUFFER_BYTES)
427 #define HDSP_DMA_AREA_KILOBYTES (HDSP_DMA_AREA_BYTES/1024)
429 #define HDSP_FIRMWARE_SIZE (24413 * 4)
431 struct hdsp_9632_meters
{
433 u32 playback_peak
[16];
437 u32 input_rms_low
[16];
438 u32 playback_rms_low
[16];
439 u32 output_rms_low
[16];
441 u32 input_rms_high
[16];
442 u32 playback_rms_high
[16];
443 u32 output_rms_high
[16];
444 u32 xxx_rms_high
[16];
450 struct snd_rawmidi
*rmidi
;
451 struct snd_rawmidi_substream
*input
;
452 struct snd_rawmidi_substream
*output
;
453 char istimer
; /* timer in use */
454 struct timer_list timer
;
461 struct snd_pcm_substream
*capture_substream
;
462 struct snd_pcm_substream
*playback_substream
;
463 struct hdsp_midi midi
[2];
464 struct tasklet_struct midi_tasklet
;
465 int use_midi_tasklet
;
467 u32 control_register
; /* cached value */
468 u32 control2_register
; /* cached value */
470 u32 creg_spdif_stream
;
471 int clock_source_locked
;
472 char *card_name
; /* digiface/multiface/rpm */
473 enum HDSP_IO_Type io_type
; /* ditto, but for code use */
474 unsigned short firmware_rev
;
475 unsigned short state
; /* stores state bits */
476 const struct firmware
*firmware
;
478 size_t period_bytes
; /* guess what this is */
479 unsigned char max_channels
;
480 unsigned char qs_in_channels
; /* quad speed mode for H9632 */
481 unsigned char ds_in_channels
;
482 unsigned char ss_in_channels
; /* different for multiface/digiface */
483 unsigned char qs_out_channels
;
484 unsigned char ds_out_channels
;
485 unsigned char ss_out_channels
;
487 struct snd_dma_buffer capture_dma_buf
;
488 struct snd_dma_buffer playback_dma_buf
;
489 unsigned char *capture_buffer
; /* suitably aligned address */
490 unsigned char *playback_buffer
; /* suitably aligned address */
495 int system_sample_rate
;
500 void __iomem
*iobase
;
501 struct snd_card
*card
;
503 struct snd_hwdep
*hwdep
;
505 struct snd_kcontrol
*spdif_ctl
;
506 unsigned short mixer_matrix
[HDSP_MATRIX_MIXER_SIZE
];
507 unsigned int dds_value
; /* last value written to freq register */
510 /* These tables map the ALSA channels 1..N to the channels that we
511 need to use in order to find the relevant channel buffer. RME
512 refer to this kind of mapping as between "the ADAT channel and
513 the DMA channel." We index it using the logical audio channel,
514 and the value is the DMA channel (i.e. channel buffer number)
515 where the data for that channel can be read/written from/to.
518 static char channel_map_df_ss
[HDSP_MAX_CHANNELS
] = {
519 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
520 18, 19, 20, 21, 22, 23, 24, 25
523 static char channel_map_mf_ss
[HDSP_MAX_CHANNELS
] = { /* Multiface */
525 0, 1, 2, 3, 4, 5, 6, 7,
527 16, 17, 18, 19, 20, 21, 22, 23,
530 -1, -1, -1, -1, -1, -1, -1, -1
533 static char channel_map_ds
[HDSP_MAX_CHANNELS
] = {
534 /* ADAT channels are remapped */
535 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23,
536 /* channels 12 and 13 are S/PDIF */
538 /* others don't exist */
539 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
542 static char channel_map_H9632_ss
[HDSP_MAX_CHANNELS
] = {
544 0, 1, 2, 3, 4, 5, 6, 7,
549 /* AO4S-192 and AI4S-192 extension boards */
551 /* others don't exist */
552 -1, -1, -1, -1, -1, -1, -1, -1,
556 static char channel_map_H9632_ds
[HDSP_MAX_CHANNELS
] = {
563 /* AO4S-192 and AI4S-192 extension boards */
565 /* others don't exist */
566 -1, -1, -1, -1, -1, -1, -1, -1,
567 -1, -1, -1, -1, -1, -1
570 static char channel_map_H9632_qs
[HDSP_MAX_CHANNELS
] = {
571 /* ADAT is disabled in this mode */
576 /* AO4S-192 and AI4S-192 extension boards */
578 /* others don't exist */
579 -1, -1, -1, -1, -1, -1, -1, -1,
580 -1, -1, -1, -1, -1, -1, -1, -1,
584 static int snd_hammerfall_get_buffer(struct pci_dev
*pci
, struct snd_dma_buffer
*dmab
, size_t size
)
586 dmab
->dev
.type
= SNDRV_DMA_TYPE_DEV
;
587 dmab
->dev
.dev
= snd_dma_pci_data(pci
);
588 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(pci
),
594 static void snd_hammerfall_free_buffer(struct snd_dma_buffer
*dmab
, struct pci_dev
*pci
)
597 snd_dma_free_pages(dmab
);
601 static const struct pci_device_id snd_hdsp_ids
[] = {
603 .vendor
= PCI_VENDOR_ID_XILINX
,
604 .device
= PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
,
605 .subvendor
= PCI_ANY_ID
,
606 .subdevice
= PCI_ANY_ID
,
607 }, /* RME Hammerfall-DSP */
611 MODULE_DEVICE_TABLE(pci
, snd_hdsp_ids
);
614 static int snd_hdsp_create_alsa_devices(struct snd_card
*card
, struct hdsp
*hdsp
);
615 static int snd_hdsp_create_pcm(struct snd_card
*card
, struct hdsp
*hdsp
);
616 static int snd_hdsp_enable_io (struct hdsp
*hdsp
);
617 static void snd_hdsp_initialize_midi_flush (struct hdsp
*hdsp
);
618 static void snd_hdsp_initialize_channels (struct hdsp
*hdsp
);
619 static int hdsp_fifo_wait(struct hdsp
*hdsp
, int count
, int timeout
);
620 static int hdsp_autosync_ref(struct hdsp
*hdsp
);
621 static int snd_hdsp_set_defaults(struct hdsp
*hdsp
);
622 static void snd_hdsp_9652_enable_mixer (struct hdsp
*hdsp
);
624 static int hdsp_playback_to_output_key (struct hdsp
*hdsp
, int in
, int out
)
626 switch (hdsp
->io_type
) {
631 if (hdsp
->firmware_rev
== 0xa)
632 return (64 * out
) + (32 + (in
));
634 return (52 * out
) + (26 + (in
));
636 return (32 * out
) + (16 + (in
));
638 return (52 * out
) + (26 + (in
));
642 static int hdsp_input_to_output_key (struct hdsp
*hdsp
, int in
, int out
)
644 switch (hdsp
->io_type
) {
649 if (hdsp
->firmware_rev
== 0xa)
650 return (64 * out
) + in
;
652 return (52 * out
) + in
;
654 return (32 * out
) + in
;
656 return (52 * out
) + in
;
660 static void hdsp_write(struct hdsp
*hdsp
, int reg
, int val
)
662 writel(val
, hdsp
->iobase
+ reg
);
665 static unsigned int hdsp_read(struct hdsp
*hdsp
, int reg
)
667 return readl (hdsp
->iobase
+ reg
);
670 static int hdsp_check_for_iobox (struct hdsp
*hdsp
)
674 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return 0;
675 for (i
= 0; i
< 500; i
++) {
676 if (0 == (hdsp_read(hdsp
, HDSP_statusRegister
) &
679 dev_dbg(hdsp
->card
->dev
,
680 "IO box found after %d ms\n",
687 dev_err(hdsp
->card
->dev
, "no IO box connected!\n");
688 hdsp
->state
&= ~HDSP_FirmwareLoaded
;
692 static int hdsp_wait_for_iobox(struct hdsp
*hdsp
, unsigned int loops
,
697 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
700 for (i
= 0; i
!= loops
; ++i
) {
701 if (hdsp_read(hdsp
, HDSP_statusRegister
) & HDSP_ConfigError
)
704 dev_dbg(hdsp
->card
->dev
, "iobox found after %ums!\n",
710 dev_info(hdsp
->card
->dev
, "no IO box connected!\n");
711 hdsp
->state
&= ~HDSP_FirmwareLoaded
;
715 static int snd_hdsp_load_firmware_from_cache(struct hdsp
*hdsp
) {
721 if (hdsp
->fw_uploaded
)
722 cache
= hdsp
->fw_uploaded
;
726 cache
= (u32
*)hdsp
->firmware
->data
;
731 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
733 dev_info(hdsp
->card
->dev
, "loading firmware\n");
735 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_PROGRAM
);
736 hdsp_write (hdsp
, HDSP_fifoData
, 0);
738 if (hdsp_fifo_wait (hdsp
, 0, HDSP_LONG_WAIT
)) {
739 dev_info(hdsp
->card
->dev
,
740 "timeout waiting for download preparation\n");
741 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S200
);
745 hdsp_write (hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
747 for (i
= 0; i
< HDSP_FIRMWARE_SIZE
/ 4; ++i
) {
748 hdsp_write(hdsp
, HDSP_fifoData
, cache
[i
]);
749 if (hdsp_fifo_wait (hdsp
, 127, HDSP_LONG_WAIT
)) {
750 dev_info(hdsp
->card
->dev
,
751 "timeout during firmware loading\n");
752 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S200
);
757 hdsp_fifo_wait(hdsp
, 3, HDSP_LONG_WAIT
);
758 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S200
);
761 #ifdef SNDRV_BIG_ENDIAN
762 hdsp
->control2_register
= HDSP_BIGENDIAN_MODE
;
764 hdsp
->control2_register
= 0;
766 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
767 dev_info(hdsp
->card
->dev
, "finished firmware loading\n");
770 if (hdsp
->state
& HDSP_InitializationComplete
) {
771 dev_info(hdsp
->card
->dev
,
772 "firmware loaded from cache, restoring defaults\n");
773 spin_lock_irqsave(&hdsp
->lock
, flags
);
774 snd_hdsp_set_defaults(hdsp
);
775 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
778 hdsp
->state
|= HDSP_FirmwareLoaded
;
783 static int hdsp_get_iobox_version (struct hdsp
*hdsp
)
785 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
787 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
788 hdsp_write(hdsp
, HDSP_fifoData
, 0);
790 if (hdsp_fifo_wait(hdsp
, 0, HDSP_SHORT_WAIT
) < 0) {
791 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S300
);
792 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
795 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S200
| HDSP_PROGRAM
);
796 hdsp_write (hdsp
, HDSP_fifoData
, 0);
797 if (hdsp_fifo_wait(hdsp
, 0, HDSP_SHORT_WAIT
) < 0)
800 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
801 hdsp_write(hdsp
, HDSP_fifoData
, 0);
802 if (hdsp_fifo_wait(hdsp
, 0, HDSP_SHORT_WAIT
) == 0) {
803 hdsp
->io_type
= Digiface
;
804 dev_info(hdsp
->card
->dev
, "Digiface found\n");
808 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S300
);
809 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
810 hdsp_write(hdsp
, HDSP_fifoData
, 0);
811 if (hdsp_fifo_wait(hdsp
, 0, HDSP_SHORT_WAIT
) == 0)
814 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S300
);
815 hdsp_write(hdsp
, HDSP_control2Reg
, HDSP_S_LOAD
);
816 hdsp_write(hdsp
, HDSP_fifoData
, 0);
817 if (hdsp_fifo_wait(hdsp
, 0, HDSP_SHORT_WAIT
) < 0)
821 dev_info(hdsp
->card
->dev
, "RPM found\n");
824 /* firmware was already loaded, get iobox type */
825 if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version2
)
827 else if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version1
)
828 hdsp
->io_type
= Multiface
;
830 hdsp
->io_type
= Digiface
;
835 hdsp
->io_type
= Multiface
;
836 dev_info(hdsp
->card
->dev
, "Multiface found\n");
841 static int hdsp_request_fw_loader(struct hdsp
*hdsp
);
843 static int hdsp_check_for_firmware (struct hdsp
*hdsp
, int load_on_demand
)
845 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
847 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
848 hdsp
->state
&= ~HDSP_FirmwareLoaded
;
849 if (! load_on_demand
)
851 dev_err(hdsp
->card
->dev
, "firmware not present.\n");
852 /* try to load firmware */
853 if (! (hdsp
->state
& HDSP_FirmwareCached
)) {
854 if (! hdsp_request_fw_loader(hdsp
))
856 dev_err(hdsp
->card
->dev
,
857 "No firmware loaded nor cached, please upload firmware.\n");
860 if (snd_hdsp_load_firmware_from_cache(hdsp
) != 0) {
861 dev_err(hdsp
->card
->dev
,
862 "Firmware loading from cache failed, please upload manually.\n");
870 static int hdsp_fifo_wait(struct hdsp
*hdsp
, int count
, int timeout
)
874 /* the fifoStatus registers reports on how many words
875 are available in the command FIFO.
878 for (i
= 0; i
< timeout
; i
++) {
880 if ((int)(hdsp_read (hdsp
, HDSP_fifoStatus
) & 0xff) <= count
)
883 /* not very friendly, but we only do this during a firmware
884 load and changing the mixer, so we just put up with it.
890 dev_warn(hdsp
->card
->dev
,
891 "wait for FIFO status <= %d failed after %d iterations\n",
896 static int hdsp_read_gain (struct hdsp
*hdsp
, unsigned int addr
)
898 if (addr
>= HDSP_MATRIX_MIXER_SIZE
)
901 return hdsp
->mixer_matrix
[addr
];
904 static int hdsp_write_gain(struct hdsp
*hdsp
, unsigned int addr
, unsigned short data
)
908 if (addr
>= HDSP_MATRIX_MIXER_SIZE
)
911 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) {
913 /* from martin bjornsen:
915 "You can only write dwords to the
916 mixer memory which contain two
917 mixer values in the low and high
918 word. So if you want to change
919 value 0 you have to read value 1
920 from the cache and write both to
921 the first dword in the mixer
925 if (hdsp
->io_type
== H9632
&& addr
>= 512)
928 if (hdsp
->io_type
== H9652
&& addr
>= 1352)
931 hdsp
->mixer_matrix
[addr
] = data
;
934 /* `addr' addresses a 16-bit wide address, but
935 the address space accessed via hdsp_write
936 uses byte offsets. put another way, addr
937 varies from 0 to 1351, but to access the
938 corresponding memory location, we need
939 to access 0 to 2703 ...
943 hdsp_write (hdsp
, 4096 + (ad
*4),
944 (hdsp
->mixer_matrix
[(addr
&0x7fe)+1] << 16) +
945 hdsp
->mixer_matrix
[addr
&0x7fe]);
951 ad
= (addr
<< 16) + data
;
953 if (hdsp_fifo_wait(hdsp
, 127, HDSP_LONG_WAIT
))
956 hdsp_write (hdsp
, HDSP_fifoData
, ad
);
957 hdsp
->mixer_matrix
[addr
] = data
;
964 static int snd_hdsp_use_is_exclusive(struct hdsp
*hdsp
)
969 spin_lock_irqsave(&hdsp
->lock
, flags
);
970 if ((hdsp
->playback_pid
!= hdsp
->capture_pid
) &&
971 (hdsp
->playback_pid
>= 0) && (hdsp
->capture_pid
>= 0))
973 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
977 static int hdsp_spdif_sample_rate(struct hdsp
*hdsp
)
979 unsigned int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
980 unsigned int rate_bits
= (status
& HDSP_spdifFrequencyMask
);
982 /* For the 9632, the mask is different */
983 if (hdsp
->io_type
== H9632
)
984 rate_bits
= (status
& HDSP_spdifFrequencyMask_9632
);
986 if (status
& HDSP_SPDIFErrorFlag
)
990 case HDSP_spdifFrequency32KHz
: return 32000;
991 case HDSP_spdifFrequency44_1KHz
: return 44100;
992 case HDSP_spdifFrequency48KHz
: return 48000;
993 case HDSP_spdifFrequency64KHz
: return 64000;
994 case HDSP_spdifFrequency88_2KHz
: return 88200;
995 case HDSP_spdifFrequency96KHz
: return 96000;
996 case HDSP_spdifFrequency128KHz
:
997 if (hdsp
->io_type
== H9632
) return 128000;
999 case HDSP_spdifFrequency176_4KHz
:
1000 if (hdsp
->io_type
== H9632
) return 176400;
1002 case HDSP_spdifFrequency192KHz
:
1003 if (hdsp
->io_type
== H9632
) return 192000;
1008 dev_warn(hdsp
->card
->dev
,
1009 "unknown spdif frequency status; bits = 0x%x, status = 0x%x\n",
1014 static int hdsp_external_sample_rate(struct hdsp
*hdsp
)
1016 unsigned int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
1017 unsigned int rate_bits
= status2
& HDSP_systemFrequencyMask
;
1019 /* For the 9632 card, there seems to be no bit for indicating external
1020 * sample rate greater than 96kHz. The card reports the corresponding
1021 * single speed. So the best means seems to get spdif rate when
1022 * autosync reference is spdif */
1023 if (hdsp
->io_type
== H9632
&&
1024 hdsp_autosync_ref(hdsp
) == HDSP_AUTOSYNC_FROM_SPDIF
)
1025 return hdsp_spdif_sample_rate(hdsp
);
1027 switch (rate_bits
) {
1028 case HDSP_systemFrequency32
: return 32000;
1029 case HDSP_systemFrequency44_1
: return 44100;
1030 case HDSP_systemFrequency48
: return 48000;
1031 case HDSP_systemFrequency64
: return 64000;
1032 case HDSP_systemFrequency88_2
: return 88200;
1033 case HDSP_systemFrequency96
: return 96000;
1039 static void hdsp_compute_period_size(struct hdsp
*hdsp
)
1041 hdsp
->period_bytes
= 1 << ((hdsp_decode_latency(hdsp
->control_register
) + 8));
1044 static snd_pcm_uframes_t
hdsp_hw_pointer(struct hdsp
*hdsp
)
1048 position
= hdsp_read(hdsp
, HDSP_statusRegister
);
1050 if (!hdsp
->precise_ptr
)
1051 return (position
& HDSP_BufferID
) ? (hdsp
->period_bytes
/ 4) : 0;
1053 position
&= HDSP_BufferPositionMask
;
1055 position
&= (hdsp
->period_bytes
/2) - 1;
1059 static void hdsp_reset_hw_pointer(struct hdsp
*hdsp
)
1061 hdsp_write (hdsp
, HDSP_resetPointer
, 0);
1062 if (hdsp
->io_type
== H9632
&& hdsp
->firmware_rev
>= 152)
1063 /* HDSP_resetPointer = HDSP_freqReg, which is strange and
1064 * requires (?) to write again DDS value after a reset pointer
1065 * (at least, it works like this) */
1066 hdsp_write (hdsp
, HDSP_freqReg
, hdsp
->dds_value
);
1069 static void hdsp_start_audio(struct hdsp
*s
)
1071 s
->control_register
|= (HDSP_AudioInterruptEnable
| HDSP_Start
);
1072 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
1075 static void hdsp_stop_audio(struct hdsp
*s
)
1077 s
->control_register
&= ~(HDSP_Start
| HDSP_AudioInterruptEnable
);
1078 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
1081 static void hdsp_silence_playback(struct hdsp
*hdsp
)
1083 memset(hdsp
->playback_buffer
, 0, HDSP_DMA_AREA_BYTES
);
1086 static int hdsp_set_interrupt_interval(struct hdsp
*s
, unsigned int frames
)
1090 spin_lock_irq(&s
->lock
);
1099 s
->control_register
&= ~HDSP_LatencyMask
;
1100 s
->control_register
|= hdsp_encode_latency(n
);
1102 hdsp_write(s
, HDSP_controlRegister
, s
->control_register
);
1104 hdsp_compute_period_size(s
);
1106 spin_unlock_irq(&s
->lock
);
1111 static void hdsp_set_dds_value(struct hdsp
*hdsp
, int rate
)
1117 else if (rate
>= 56000)
1121 n
= div_u64(n
, rate
);
1122 /* n should be less than 2^32 for being written to FREQ register */
1123 snd_BUG_ON(n
>> 32);
1124 /* HDSP_freqReg and HDSP_resetPointer are the same, so keep the DDS
1125 value to write it after a reset */
1126 hdsp
->dds_value
= n
;
1127 hdsp_write(hdsp
, HDSP_freqReg
, hdsp
->dds_value
);
1130 static int hdsp_set_rate(struct hdsp
*hdsp
, int rate
, int called_internally
)
1132 int reject_if_open
= 0;
1136 /* ASSUMPTION: hdsp->lock is either held, or
1137 there is no need for it (e.g. during module
1141 if (!(hdsp
->control_register
& HDSP_ClockModeMaster
)) {
1142 if (called_internally
) {
1143 /* request from ctl or card initialization */
1144 dev_err(hdsp
->card
->dev
,
1145 "device is not running as a clock master: cannot set sample rate.\n");
1148 /* hw_param request while in AutoSync mode */
1149 int external_freq
= hdsp_external_sample_rate(hdsp
);
1150 int spdif_freq
= hdsp_spdif_sample_rate(hdsp
);
1152 if ((spdif_freq
== external_freq
*2) && (hdsp_autosync_ref(hdsp
) >= HDSP_AUTOSYNC_FROM_ADAT1
))
1153 dev_info(hdsp
->card
->dev
,
1154 "Detected ADAT in double speed mode\n");
1155 else if (hdsp
->io_type
== H9632
&& (spdif_freq
== external_freq
*4) && (hdsp_autosync_ref(hdsp
) >= HDSP_AUTOSYNC_FROM_ADAT1
))
1156 dev_info(hdsp
->card
->dev
,
1157 "Detected ADAT in quad speed mode\n");
1158 else if (rate
!= external_freq
) {
1159 dev_info(hdsp
->card
->dev
,
1160 "No AutoSync source for requested rate\n");
1166 current_rate
= hdsp
->system_sample_rate
;
1168 /* Changing from a "single speed" to a "double speed" rate is
1169 not allowed if any substreams are open. This is because
1170 such a change causes a shift in the location of
1171 the DMA buffers and a reduction in the number of available
1174 Note that a similar but essentially insoluble problem
1175 exists for externally-driven rate changes. All we can do
1176 is to flag rate changes in the read/write routines. */
1178 if (rate
> 96000 && hdsp
->io_type
!= H9632
)
1183 if (current_rate
> 48000)
1185 rate_bits
= HDSP_Frequency32KHz
;
1188 if (current_rate
> 48000)
1190 rate_bits
= HDSP_Frequency44_1KHz
;
1193 if (current_rate
> 48000)
1195 rate_bits
= HDSP_Frequency48KHz
;
1198 if (current_rate
<= 48000 || current_rate
> 96000)
1200 rate_bits
= HDSP_Frequency64KHz
;
1203 if (current_rate
<= 48000 || current_rate
> 96000)
1205 rate_bits
= HDSP_Frequency88_2KHz
;
1208 if (current_rate
<= 48000 || current_rate
> 96000)
1210 rate_bits
= HDSP_Frequency96KHz
;
1213 if (current_rate
< 128000)
1215 rate_bits
= HDSP_Frequency128KHz
;
1218 if (current_rate
< 128000)
1220 rate_bits
= HDSP_Frequency176_4KHz
;
1223 if (current_rate
< 128000)
1225 rate_bits
= HDSP_Frequency192KHz
;
1231 if (reject_if_open
&& (hdsp
->capture_pid
>= 0 || hdsp
->playback_pid
>= 0)) {
1232 dev_warn(hdsp
->card
->dev
,
1233 "cannot change speed mode (capture PID = %d, playback PID = %d)\n",
1235 hdsp
->playback_pid
);
1239 hdsp
->control_register
&= ~HDSP_FrequencyMask
;
1240 hdsp
->control_register
|= rate_bits
;
1241 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1243 /* For HDSP9632 rev 152, need to set DDS value in FREQ register */
1244 if (hdsp
->io_type
== H9632
&& hdsp
->firmware_rev
>= 152)
1245 hdsp_set_dds_value(hdsp
, rate
);
1247 if (rate
>= 128000) {
1248 hdsp
->channel_map
= channel_map_H9632_qs
;
1249 } else if (rate
> 48000) {
1250 if (hdsp
->io_type
== H9632
)
1251 hdsp
->channel_map
= channel_map_H9632_ds
;
1253 hdsp
->channel_map
= channel_map_ds
;
1255 switch (hdsp
->io_type
) {
1258 hdsp
->channel_map
= channel_map_mf_ss
;
1262 hdsp
->channel_map
= channel_map_df_ss
;
1265 hdsp
->channel_map
= channel_map_H9632_ss
;
1268 /* should never happen */
1273 hdsp
->system_sample_rate
= rate
;
1278 /*----------------------------------------------------------------------------
1280 ----------------------------------------------------------------------------*/
1282 static unsigned char snd_hdsp_midi_read_byte (struct hdsp
*hdsp
, int id
)
1284 /* the hardware already does the relevant bit-mask with 0xff */
1286 return hdsp_read(hdsp
, HDSP_midiDataIn1
);
1288 return hdsp_read(hdsp
, HDSP_midiDataIn0
);
1291 static void snd_hdsp_midi_write_byte (struct hdsp
*hdsp
, int id
, int val
)
1293 /* the hardware already does the relevant bit-mask with 0xff */
1295 hdsp_write(hdsp
, HDSP_midiDataOut1
, val
);
1297 hdsp_write(hdsp
, HDSP_midiDataOut0
, val
);
1300 static int snd_hdsp_midi_input_available (struct hdsp
*hdsp
, int id
)
1303 return (hdsp_read(hdsp
, HDSP_midiStatusIn1
) & 0xff);
1305 return (hdsp_read(hdsp
, HDSP_midiStatusIn0
) & 0xff);
1308 static int snd_hdsp_midi_output_possible (struct hdsp
*hdsp
, int id
)
1310 int fifo_bytes_used
;
1313 fifo_bytes_used
= hdsp_read(hdsp
, HDSP_midiStatusOut1
) & 0xff;
1315 fifo_bytes_used
= hdsp_read(hdsp
, HDSP_midiStatusOut0
) & 0xff;
1317 if (fifo_bytes_used
< 128)
1318 return 128 - fifo_bytes_used
;
1323 static void snd_hdsp_flush_midi_input (struct hdsp
*hdsp
, int id
)
1325 while (snd_hdsp_midi_input_available (hdsp
, id
))
1326 snd_hdsp_midi_read_byte (hdsp
, id
);
1329 static int snd_hdsp_midi_output_write (struct hdsp_midi
*hmidi
)
1331 unsigned long flags
;
1335 unsigned char buf
[128];
1337 /* Output is not interrupt driven */
1339 spin_lock_irqsave (&hmidi
->lock
, flags
);
1340 if (hmidi
->output
) {
1341 if (!snd_rawmidi_transmit_empty (hmidi
->output
)) {
1342 if ((n_pending
= snd_hdsp_midi_output_possible (hmidi
->hdsp
, hmidi
->id
)) > 0) {
1343 if (n_pending
> (int)sizeof (buf
))
1344 n_pending
= sizeof (buf
);
1346 if ((to_write
= snd_rawmidi_transmit (hmidi
->output
, buf
, n_pending
)) > 0) {
1347 for (i
= 0; i
< to_write
; ++i
)
1348 snd_hdsp_midi_write_byte (hmidi
->hdsp
, hmidi
->id
, buf
[i
]);
1353 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1357 static int snd_hdsp_midi_input_read (struct hdsp_midi
*hmidi
)
1359 unsigned char buf
[128]; /* this buffer is designed to match the MIDI input FIFO size */
1360 unsigned long flags
;
1364 spin_lock_irqsave (&hmidi
->lock
, flags
);
1365 if ((n_pending
= snd_hdsp_midi_input_available (hmidi
->hdsp
, hmidi
->id
)) > 0) {
1367 if (n_pending
> (int)sizeof (buf
))
1368 n_pending
= sizeof (buf
);
1369 for (i
= 0; i
< n_pending
; ++i
)
1370 buf
[i
] = snd_hdsp_midi_read_byte (hmidi
->hdsp
, hmidi
->id
);
1372 snd_rawmidi_receive (hmidi
->input
, buf
, n_pending
);
1374 /* flush the MIDI input FIFO */
1376 snd_hdsp_midi_read_byte (hmidi
->hdsp
, hmidi
->id
);
1381 hmidi
->hdsp
->control_register
|= HDSP_Midi1InterruptEnable
;
1383 hmidi
->hdsp
->control_register
|= HDSP_Midi0InterruptEnable
;
1384 hdsp_write(hmidi
->hdsp
, HDSP_controlRegister
, hmidi
->hdsp
->control_register
);
1385 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1386 return snd_hdsp_midi_output_write (hmidi
);
1389 static void snd_hdsp_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1392 struct hdsp_midi
*hmidi
;
1393 unsigned long flags
;
1396 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1398 ie
= hmidi
->id
? HDSP_Midi1InterruptEnable
: HDSP_Midi0InterruptEnable
;
1399 spin_lock_irqsave (&hdsp
->lock
, flags
);
1401 if (!(hdsp
->control_register
& ie
)) {
1402 snd_hdsp_flush_midi_input (hdsp
, hmidi
->id
);
1403 hdsp
->control_register
|= ie
;
1406 hdsp
->control_register
&= ~ie
;
1407 tasklet_kill(&hdsp
->midi_tasklet
);
1410 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1411 spin_unlock_irqrestore (&hdsp
->lock
, flags
);
1414 static void snd_hdsp_midi_output_timer(struct timer_list
*t
)
1416 struct hdsp_midi
*hmidi
= from_timer(hmidi
, t
, timer
);
1417 unsigned long flags
;
1419 snd_hdsp_midi_output_write(hmidi
);
1420 spin_lock_irqsave (&hmidi
->lock
, flags
);
1422 /* this does not bump hmidi->istimer, because the
1423 kernel automatically removed the timer when it
1424 expired, and we are now adding it back, thus
1425 leaving istimer wherever it was set before.
1429 mod_timer(&hmidi
->timer
, 1 + jiffies
);
1431 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1434 static void snd_hdsp_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1436 struct hdsp_midi
*hmidi
;
1437 unsigned long flags
;
1439 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1440 spin_lock_irqsave (&hmidi
->lock
, flags
);
1442 if (!hmidi
->istimer
) {
1443 timer_setup(&hmidi
->timer
, snd_hdsp_midi_output_timer
,
1445 mod_timer(&hmidi
->timer
, 1 + jiffies
);
1449 if (hmidi
->istimer
&& --hmidi
->istimer
<= 0)
1450 del_timer (&hmidi
->timer
);
1452 spin_unlock_irqrestore (&hmidi
->lock
, flags
);
1454 snd_hdsp_midi_output_write(hmidi
);
1457 static int snd_hdsp_midi_input_open(struct snd_rawmidi_substream
*substream
)
1459 struct hdsp_midi
*hmidi
;
1461 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1462 spin_lock_irq (&hmidi
->lock
);
1463 snd_hdsp_flush_midi_input (hmidi
->hdsp
, hmidi
->id
);
1464 hmidi
->input
= substream
;
1465 spin_unlock_irq (&hmidi
->lock
);
1470 static int snd_hdsp_midi_output_open(struct snd_rawmidi_substream
*substream
)
1472 struct hdsp_midi
*hmidi
;
1474 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1475 spin_lock_irq (&hmidi
->lock
);
1476 hmidi
->output
= substream
;
1477 spin_unlock_irq (&hmidi
->lock
);
1482 static int snd_hdsp_midi_input_close(struct snd_rawmidi_substream
*substream
)
1484 struct hdsp_midi
*hmidi
;
1486 snd_hdsp_midi_input_trigger (substream
, 0);
1488 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1489 spin_lock_irq (&hmidi
->lock
);
1490 hmidi
->input
= NULL
;
1491 spin_unlock_irq (&hmidi
->lock
);
1496 static int snd_hdsp_midi_output_close(struct snd_rawmidi_substream
*substream
)
1498 struct hdsp_midi
*hmidi
;
1500 snd_hdsp_midi_output_trigger (substream
, 0);
1502 hmidi
= (struct hdsp_midi
*) substream
->rmidi
->private_data
;
1503 spin_lock_irq (&hmidi
->lock
);
1504 hmidi
->output
= NULL
;
1505 spin_unlock_irq (&hmidi
->lock
);
1510 static const struct snd_rawmidi_ops snd_hdsp_midi_output
=
1512 .open
= snd_hdsp_midi_output_open
,
1513 .close
= snd_hdsp_midi_output_close
,
1514 .trigger
= snd_hdsp_midi_output_trigger
,
1517 static const struct snd_rawmidi_ops snd_hdsp_midi_input
=
1519 .open
= snd_hdsp_midi_input_open
,
1520 .close
= snd_hdsp_midi_input_close
,
1521 .trigger
= snd_hdsp_midi_input_trigger
,
1524 static int snd_hdsp_create_midi (struct snd_card
*card
, struct hdsp
*hdsp
, int id
)
1528 hdsp
->midi
[id
].id
= id
;
1529 hdsp
->midi
[id
].rmidi
= NULL
;
1530 hdsp
->midi
[id
].input
= NULL
;
1531 hdsp
->midi
[id
].output
= NULL
;
1532 hdsp
->midi
[id
].hdsp
= hdsp
;
1533 hdsp
->midi
[id
].istimer
= 0;
1534 hdsp
->midi
[id
].pending
= 0;
1535 spin_lock_init (&hdsp
->midi
[id
].lock
);
1537 snprintf(buf
, sizeof(buf
), "%s MIDI %d", card
->shortname
, id
+ 1);
1538 if (snd_rawmidi_new (card
, buf
, id
, 1, 1, &hdsp
->midi
[id
].rmidi
) < 0)
1541 sprintf(hdsp
->midi
[id
].rmidi
->name
, "HDSP MIDI %d", id
+1);
1542 hdsp
->midi
[id
].rmidi
->private_data
= &hdsp
->midi
[id
];
1544 snd_rawmidi_set_ops (hdsp
->midi
[id
].rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_hdsp_midi_output
);
1545 snd_rawmidi_set_ops (hdsp
->midi
[id
].rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_hdsp_midi_input
);
1547 hdsp
->midi
[id
].rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_OUTPUT
|
1548 SNDRV_RAWMIDI_INFO_INPUT
|
1549 SNDRV_RAWMIDI_INFO_DUPLEX
;
1554 /*-----------------------------------------------------------------------------
1556 ----------------------------------------------------------------------------*/
1558 static u32
snd_hdsp_convert_from_aes(struct snd_aes_iec958
*aes
)
1561 val
|= (aes
->status
[0] & IEC958_AES0_PROFESSIONAL
) ? HDSP_SPDIFProfessional
: 0;
1562 val
|= (aes
->status
[0] & IEC958_AES0_NONAUDIO
) ? HDSP_SPDIFNonAudio
: 0;
1563 if (val
& HDSP_SPDIFProfessional
)
1564 val
|= (aes
->status
[0] & IEC958_AES0_PRO_EMPHASIS_5015
) ? HDSP_SPDIFEmphasis
: 0;
1566 val
|= (aes
->status
[0] & IEC958_AES0_CON_EMPHASIS_5015
) ? HDSP_SPDIFEmphasis
: 0;
1570 static void snd_hdsp_convert_to_aes(struct snd_aes_iec958
*aes
, u32 val
)
1572 aes
->status
[0] = ((val
& HDSP_SPDIFProfessional
) ? IEC958_AES0_PROFESSIONAL
: 0) |
1573 ((val
& HDSP_SPDIFNonAudio
) ? IEC958_AES0_NONAUDIO
: 0);
1574 if (val
& HDSP_SPDIFProfessional
)
1575 aes
->status
[0] |= (val
& HDSP_SPDIFEmphasis
) ? IEC958_AES0_PRO_EMPHASIS_5015
: 0;
1577 aes
->status
[0] |= (val
& HDSP_SPDIFEmphasis
) ? IEC958_AES0_CON_EMPHASIS_5015
: 0;
1580 static int snd_hdsp_control_spdif_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1582 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1587 static int snd_hdsp_control_spdif_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1589 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1591 snd_hdsp_convert_to_aes(&ucontrol
->value
.iec958
, hdsp
->creg_spdif
);
1595 static int snd_hdsp_control_spdif_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1597 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1601 val
= snd_hdsp_convert_from_aes(&ucontrol
->value
.iec958
);
1602 spin_lock_irq(&hdsp
->lock
);
1603 change
= val
!= hdsp
->creg_spdif
;
1604 hdsp
->creg_spdif
= val
;
1605 spin_unlock_irq(&hdsp
->lock
);
1609 static int snd_hdsp_control_spdif_stream_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1611 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1616 static int snd_hdsp_control_spdif_stream_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1618 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1620 snd_hdsp_convert_to_aes(&ucontrol
->value
.iec958
, hdsp
->creg_spdif_stream
);
1624 static int snd_hdsp_control_spdif_stream_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1626 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1630 val
= snd_hdsp_convert_from_aes(&ucontrol
->value
.iec958
);
1631 spin_lock_irq(&hdsp
->lock
);
1632 change
= val
!= hdsp
->creg_spdif_stream
;
1633 hdsp
->creg_spdif_stream
= val
;
1634 hdsp
->control_register
&= ~(HDSP_SPDIFProfessional
| HDSP_SPDIFNonAudio
| HDSP_SPDIFEmphasis
);
1635 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
|= val
);
1636 spin_unlock_irq(&hdsp
->lock
);
1640 static int snd_hdsp_control_spdif_mask_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1642 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1647 static int snd_hdsp_control_spdif_mask_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1649 ucontrol
->value
.iec958
.status
[0] = kcontrol
->private_value
;
1653 #define HDSP_SPDIF_IN(xname, xindex) \
1654 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1657 .info = snd_hdsp_info_spdif_in, \
1658 .get = snd_hdsp_get_spdif_in, \
1659 .put = snd_hdsp_put_spdif_in }
1661 static unsigned int hdsp_spdif_in(struct hdsp
*hdsp
)
1663 return hdsp_decode_spdif_in(hdsp
->control_register
& HDSP_SPDIFInputMask
);
1666 static int hdsp_set_spdif_input(struct hdsp
*hdsp
, int in
)
1668 hdsp
->control_register
&= ~HDSP_SPDIFInputMask
;
1669 hdsp
->control_register
|= hdsp_encode_spdif_in(in
);
1670 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1674 static int snd_hdsp_info_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1676 static const char * const texts
[4] = {
1677 "Optical", "Coaxial", "Internal", "AES"
1679 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1681 return snd_ctl_enum_info(uinfo
, 1, (hdsp
->io_type
== H9632
) ? 4 : 3,
1685 static int snd_hdsp_get_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1687 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1689 ucontrol
->value
.enumerated
.item
[0] = hdsp_spdif_in(hdsp
);
1693 static int snd_hdsp_put_spdif_in(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1695 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1699 if (!snd_hdsp_use_is_exclusive(hdsp
))
1701 val
= ucontrol
->value
.enumerated
.item
[0] % ((hdsp
->io_type
== H9632
) ? 4 : 3);
1702 spin_lock_irq(&hdsp
->lock
);
1703 change
= val
!= hdsp_spdif_in(hdsp
);
1705 hdsp_set_spdif_input(hdsp
, val
);
1706 spin_unlock_irq(&hdsp
->lock
);
1710 #define HDSP_TOGGLE_SETTING(xname, xindex) \
1711 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1713 .private_value = xindex, \
1714 .info = snd_hdsp_info_toggle_setting, \
1715 .get = snd_hdsp_get_toggle_setting, \
1716 .put = snd_hdsp_put_toggle_setting \
1719 static int hdsp_toggle_setting(struct hdsp
*hdsp
, u32 regmask
)
1721 return (hdsp
->control_register
& regmask
) ? 1 : 0;
1724 static int hdsp_set_toggle_setting(struct hdsp
*hdsp
, u32 regmask
, int out
)
1727 hdsp
->control_register
|= regmask
;
1729 hdsp
->control_register
&= ~regmask
;
1730 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1735 #define snd_hdsp_info_toggle_setting snd_ctl_boolean_mono_info
1737 static int snd_hdsp_get_toggle_setting(struct snd_kcontrol
*kcontrol
,
1738 struct snd_ctl_elem_value
*ucontrol
)
1740 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1741 u32 regmask
= kcontrol
->private_value
;
1743 spin_lock_irq(&hdsp
->lock
);
1744 ucontrol
->value
.integer
.value
[0] = hdsp_toggle_setting(hdsp
, regmask
);
1745 spin_unlock_irq(&hdsp
->lock
);
1749 static int snd_hdsp_put_toggle_setting(struct snd_kcontrol
*kcontrol
,
1750 struct snd_ctl_elem_value
*ucontrol
)
1752 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1753 u32 regmask
= kcontrol
->private_value
;
1757 if (!snd_hdsp_use_is_exclusive(hdsp
))
1759 val
= ucontrol
->value
.integer
.value
[0] & 1;
1760 spin_lock_irq(&hdsp
->lock
);
1761 change
= (int) val
!= hdsp_toggle_setting(hdsp
, regmask
);
1763 hdsp_set_toggle_setting(hdsp
, regmask
, val
);
1764 spin_unlock_irq(&hdsp
->lock
);
1768 #define HDSP_SPDIF_SAMPLE_RATE(xname, xindex) \
1769 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1772 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1773 .info = snd_hdsp_info_spdif_sample_rate, \
1774 .get = snd_hdsp_get_spdif_sample_rate \
1777 static int snd_hdsp_info_spdif_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1779 static const char * const texts
[] = {
1780 "32000", "44100", "48000", "64000", "88200", "96000",
1781 "None", "128000", "176400", "192000"
1783 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1785 return snd_ctl_enum_info(uinfo
, 1, (hdsp
->io_type
== H9632
) ? 10 : 7,
1789 static int snd_hdsp_get_spdif_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1791 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1793 switch (hdsp_spdif_sample_rate(hdsp
)) {
1795 ucontrol
->value
.enumerated
.item
[0] = 0;
1798 ucontrol
->value
.enumerated
.item
[0] = 1;
1801 ucontrol
->value
.enumerated
.item
[0] = 2;
1804 ucontrol
->value
.enumerated
.item
[0] = 3;
1807 ucontrol
->value
.enumerated
.item
[0] = 4;
1810 ucontrol
->value
.enumerated
.item
[0] = 5;
1813 ucontrol
->value
.enumerated
.item
[0] = 7;
1816 ucontrol
->value
.enumerated
.item
[0] = 8;
1819 ucontrol
->value
.enumerated
.item
[0] = 9;
1822 ucontrol
->value
.enumerated
.item
[0] = 6;
1827 #define HDSP_SYSTEM_SAMPLE_RATE(xname, xindex) \
1828 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1831 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1832 .info = snd_hdsp_info_system_sample_rate, \
1833 .get = snd_hdsp_get_system_sample_rate \
1836 static int snd_hdsp_info_system_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1838 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1843 static int snd_hdsp_get_system_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1845 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1847 ucontrol
->value
.enumerated
.item
[0] = hdsp
->system_sample_rate
;
1851 #define HDSP_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
1852 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1855 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1856 .info = snd_hdsp_info_autosync_sample_rate, \
1857 .get = snd_hdsp_get_autosync_sample_rate \
1860 static int snd_hdsp_info_autosync_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1862 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1863 static const char * const texts
[] = {
1864 "32000", "44100", "48000", "64000", "88200", "96000",
1865 "None", "128000", "176400", "192000"
1868 return snd_ctl_enum_info(uinfo
, 1, (hdsp
->io_type
== H9632
) ? 10 : 7,
1872 static int snd_hdsp_get_autosync_sample_rate(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1874 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1876 switch (hdsp_external_sample_rate(hdsp
)) {
1878 ucontrol
->value
.enumerated
.item
[0] = 0;
1881 ucontrol
->value
.enumerated
.item
[0] = 1;
1884 ucontrol
->value
.enumerated
.item
[0] = 2;
1887 ucontrol
->value
.enumerated
.item
[0] = 3;
1890 ucontrol
->value
.enumerated
.item
[0] = 4;
1893 ucontrol
->value
.enumerated
.item
[0] = 5;
1896 ucontrol
->value
.enumerated
.item
[0] = 7;
1899 ucontrol
->value
.enumerated
.item
[0] = 8;
1902 ucontrol
->value
.enumerated
.item
[0] = 9;
1905 ucontrol
->value
.enumerated
.item
[0] = 6;
1910 #define HDSP_SYSTEM_CLOCK_MODE(xname, xindex) \
1911 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1914 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1915 .info = snd_hdsp_info_system_clock_mode, \
1916 .get = snd_hdsp_get_system_clock_mode \
1919 static int hdsp_system_clock_mode(struct hdsp
*hdsp
)
1921 if (hdsp
->control_register
& HDSP_ClockModeMaster
)
1923 else if (hdsp_external_sample_rate(hdsp
) != hdsp
->system_sample_rate
)
1928 static int snd_hdsp_info_system_clock_mode(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1930 static const char * const texts
[] = {"Master", "Slave" };
1932 return snd_ctl_enum_info(uinfo
, 1, 2, texts
);
1935 static int snd_hdsp_get_system_clock_mode(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1937 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
1939 ucontrol
->value
.enumerated
.item
[0] = hdsp_system_clock_mode(hdsp
);
1943 #define HDSP_CLOCK_SOURCE(xname, xindex) \
1944 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1947 .info = snd_hdsp_info_clock_source, \
1948 .get = snd_hdsp_get_clock_source, \
1949 .put = snd_hdsp_put_clock_source \
1952 static int hdsp_clock_source(struct hdsp
*hdsp
)
1954 if (hdsp
->control_register
& HDSP_ClockModeMaster
) {
1955 switch (hdsp
->system_sample_rate
) {
1982 static int hdsp_set_clock_source(struct hdsp
*hdsp
, int mode
)
1986 case HDSP_CLOCK_SOURCE_AUTOSYNC
:
1987 if (hdsp_external_sample_rate(hdsp
) != 0) {
1988 if (!hdsp_set_rate(hdsp
, hdsp_external_sample_rate(hdsp
), 1)) {
1989 hdsp
->control_register
&= ~HDSP_ClockModeMaster
;
1990 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
1995 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ
:
1998 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ
:
2001 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ
:
2004 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ
:
2007 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ
:
2010 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ
:
2013 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ
:
2016 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ
:
2019 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ
:
2025 hdsp
->control_register
|= HDSP_ClockModeMaster
;
2026 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2027 hdsp_set_rate(hdsp
, rate
, 1);
2031 static int snd_hdsp_info_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2033 static const char * const texts
[] = {
2034 "AutoSync", "Internal 32.0 kHz", "Internal 44.1 kHz",
2035 "Internal 48.0 kHz", "Internal 64.0 kHz", "Internal 88.2 kHz",
2036 "Internal 96.0 kHz", "Internal 128 kHz", "Internal 176.4 kHz",
2037 "Internal 192.0 KHz"
2039 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2041 return snd_ctl_enum_info(uinfo
, 1, (hdsp
->io_type
== H9632
) ? 10 : 7,
2045 static int snd_hdsp_get_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2047 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2049 ucontrol
->value
.enumerated
.item
[0] = hdsp_clock_source(hdsp
);
2053 static int snd_hdsp_put_clock_source(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2055 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2059 if (!snd_hdsp_use_is_exclusive(hdsp
))
2061 val
= ucontrol
->value
.enumerated
.item
[0];
2062 if (val
< 0) val
= 0;
2063 if (hdsp
->io_type
== H9632
) {
2070 spin_lock_irq(&hdsp
->lock
);
2071 if (val
!= hdsp_clock_source(hdsp
))
2072 change
= (hdsp_set_clock_source(hdsp
, val
) == 0) ? 1 : 0;
2075 spin_unlock_irq(&hdsp
->lock
);
2079 #define snd_hdsp_info_clock_source_lock snd_ctl_boolean_mono_info
2081 static int snd_hdsp_get_clock_source_lock(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2083 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2085 ucontrol
->value
.integer
.value
[0] = hdsp
->clock_source_locked
;
2089 static int snd_hdsp_put_clock_source_lock(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2091 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2094 change
= (int)ucontrol
->value
.integer
.value
[0] != hdsp
->clock_source_locked
;
2096 hdsp
->clock_source_locked
= !!ucontrol
->value
.integer
.value
[0];
2100 #define HDSP_DA_GAIN(xname, xindex) \
2101 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2104 .info = snd_hdsp_info_da_gain, \
2105 .get = snd_hdsp_get_da_gain, \
2106 .put = snd_hdsp_put_da_gain \
2109 static int hdsp_da_gain(struct hdsp
*hdsp
)
2111 switch (hdsp
->control_register
& HDSP_DAGainMask
) {
2112 case HDSP_DAGainHighGain
:
2114 case HDSP_DAGainPlus4dBu
:
2116 case HDSP_DAGainMinus10dBV
:
2123 static int hdsp_set_da_gain(struct hdsp
*hdsp
, int mode
)
2125 hdsp
->control_register
&= ~HDSP_DAGainMask
;
2128 hdsp
->control_register
|= HDSP_DAGainHighGain
;
2131 hdsp
->control_register
|= HDSP_DAGainPlus4dBu
;
2134 hdsp
->control_register
|= HDSP_DAGainMinus10dBV
;
2140 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2144 static int snd_hdsp_info_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2146 static const char * const texts
[] = {"Hi Gain", "+4 dBu", "-10 dbV"};
2148 return snd_ctl_enum_info(uinfo
, 1, 3, texts
);
2151 static int snd_hdsp_get_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2153 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2155 ucontrol
->value
.enumerated
.item
[0] = hdsp_da_gain(hdsp
);
2159 static int snd_hdsp_put_da_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2161 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2165 if (!snd_hdsp_use_is_exclusive(hdsp
))
2167 val
= ucontrol
->value
.enumerated
.item
[0];
2168 if (val
< 0) val
= 0;
2169 if (val
> 2) val
= 2;
2170 spin_lock_irq(&hdsp
->lock
);
2171 if (val
!= hdsp_da_gain(hdsp
))
2172 change
= (hdsp_set_da_gain(hdsp
, val
) == 0) ? 1 : 0;
2175 spin_unlock_irq(&hdsp
->lock
);
2179 #define HDSP_AD_GAIN(xname, xindex) \
2180 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2183 .info = snd_hdsp_info_ad_gain, \
2184 .get = snd_hdsp_get_ad_gain, \
2185 .put = snd_hdsp_put_ad_gain \
2188 static int hdsp_ad_gain(struct hdsp
*hdsp
)
2190 switch (hdsp
->control_register
& HDSP_ADGainMask
) {
2191 case HDSP_ADGainMinus10dBV
:
2193 case HDSP_ADGainPlus4dBu
:
2195 case HDSP_ADGainLowGain
:
2202 static int hdsp_set_ad_gain(struct hdsp
*hdsp
, int mode
)
2204 hdsp
->control_register
&= ~HDSP_ADGainMask
;
2207 hdsp
->control_register
|= HDSP_ADGainMinus10dBV
;
2210 hdsp
->control_register
|= HDSP_ADGainPlus4dBu
;
2213 hdsp
->control_register
|= HDSP_ADGainLowGain
;
2219 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2223 static int snd_hdsp_info_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2225 static const char * const texts
[] = {"-10 dBV", "+4 dBu", "Lo Gain"};
2227 return snd_ctl_enum_info(uinfo
, 1, 3, texts
);
2230 static int snd_hdsp_get_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2232 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2234 ucontrol
->value
.enumerated
.item
[0] = hdsp_ad_gain(hdsp
);
2238 static int snd_hdsp_put_ad_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2240 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2244 if (!snd_hdsp_use_is_exclusive(hdsp
))
2246 val
= ucontrol
->value
.enumerated
.item
[0];
2247 if (val
< 0) val
= 0;
2248 if (val
> 2) val
= 2;
2249 spin_lock_irq(&hdsp
->lock
);
2250 if (val
!= hdsp_ad_gain(hdsp
))
2251 change
= (hdsp_set_ad_gain(hdsp
, val
) == 0) ? 1 : 0;
2254 spin_unlock_irq(&hdsp
->lock
);
2258 #define HDSP_PHONE_GAIN(xname, xindex) \
2259 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2262 .info = snd_hdsp_info_phone_gain, \
2263 .get = snd_hdsp_get_phone_gain, \
2264 .put = snd_hdsp_put_phone_gain \
2267 static int hdsp_phone_gain(struct hdsp
*hdsp
)
2269 switch (hdsp
->control_register
& HDSP_PhoneGainMask
) {
2270 case HDSP_PhoneGain0dB
:
2272 case HDSP_PhoneGainMinus6dB
:
2274 case HDSP_PhoneGainMinus12dB
:
2281 static int hdsp_set_phone_gain(struct hdsp
*hdsp
, int mode
)
2283 hdsp
->control_register
&= ~HDSP_PhoneGainMask
;
2286 hdsp
->control_register
|= HDSP_PhoneGain0dB
;
2289 hdsp
->control_register
|= HDSP_PhoneGainMinus6dB
;
2292 hdsp
->control_register
|= HDSP_PhoneGainMinus12dB
;
2298 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2302 static int snd_hdsp_info_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2304 static const char * const texts
[] = {"0 dB", "-6 dB", "-12 dB"};
2306 return snd_ctl_enum_info(uinfo
, 1, 3, texts
);
2309 static int snd_hdsp_get_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2311 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2313 ucontrol
->value
.enumerated
.item
[0] = hdsp_phone_gain(hdsp
);
2317 static int snd_hdsp_put_phone_gain(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2319 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2323 if (!snd_hdsp_use_is_exclusive(hdsp
))
2325 val
= ucontrol
->value
.enumerated
.item
[0];
2326 if (val
< 0) val
= 0;
2327 if (val
> 2) val
= 2;
2328 spin_lock_irq(&hdsp
->lock
);
2329 if (val
!= hdsp_phone_gain(hdsp
))
2330 change
= (hdsp_set_phone_gain(hdsp
, val
) == 0) ? 1 : 0;
2333 spin_unlock_irq(&hdsp
->lock
);
2337 #define HDSP_PREF_SYNC_REF(xname, xindex) \
2338 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2341 .info = snd_hdsp_info_pref_sync_ref, \
2342 .get = snd_hdsp_get_pref_sync_ref, \
2343 .put = snd_hdsp_put_pref_sync_ref \
2346 static int hdsp_pref_sync_ref(struct hdsp
*hdsp
)
2348 /* Notice that this looks at the requested sync source,
2349 not the one actually in use.
2352 switch (hdsp
->control_register
& HDSP_SyncRefMask
) {
2353 case HDSP_SyncRef_ADAT1
:
2354 return HDSP_SYNC_FROM_ADAT1
;
2355 case HDSP_SyncRef_ADAT2
:
2356 return HDSP_SYNC_FROM_ADAT2
;
2357 case HDSP_SyncRef_ADAT3
:
2358 return HDSP_SYNC_FROM_ADAT3
;
2359 case HDSP_SyncRef_SPDIF
:
2360 return HDSP_SYNC_FROM_SPDIF
;
2361 case HDSP_SyncRef_WORD
:
2362 return HDSP_SYNC_FROM_WORD
;
2363 case HDSP_SyncRef_ADAT_SYNC
:
2364 return HDSP_SYNC_FROM_ADAT_SYNC
;
2366 return HDSP_SYNC_FROM_WORD
;
2371 static int hdsp_set_pref_sync_ref(struct hdsp
*hdsp
, int pref
)
2373 hdsp
->control_register
&= ~HDSP_SyncRefMask
;
2375 case HDSP_SYNC_FROM_ADAT1
:
2376 hdsp
->control_register
&= ~HDSP_SyncRefMask
; /* clear SyncRef bits */
2378 case HDSP_SYNC_FROM_ADAT2
:
2379 hdsp
->control_register
|= HDSP_SyncRef_ADAT2
;
2381 case HDSP_SYNC_FROM_ADAT3
:
2382 hdsp
->control_register
|= HDSP_SyncRef_ADAT3
;
2384 case HDSP_SYNC_FROM_SPDIF
:
2385 hdsp
->control_register
|= HDSP_SyncRef_SPDIF
;
2387 case HDSP_SYNC_FROM_WORD
:
2388 hdsp
->control_register
|= HDSP_SyncRef_WORD
;
2390 case HDSP_SYNC_FROM_ADAT_SYNC
:
2391 hdsp
->control_register
|= HDSP_SyncRef_ADAT_SYNC
;
2396 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
2400 static int snd_hdsp_info_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2402 static const char * const texts
[] = {
2403 "Word", "IEC958", "ADAT1", "ADAT Sync", "ADAT2", "ADAT3"
2405 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2408 switch (hdsp
->io_type
) {
2423 return snd_ctl_enum_info(uinfo
, 1, num_items
, texts
);
2426 static int snd_hdsp_get_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2428 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2430 ucontrol
->value
.enumerated
.item
[0] = hdsp_pref_sync_ref(hdsp
);
2434 static int snd_hdsp_put_pref_sync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2436 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2440 if (!snd_hdsp_use_is_exclusive(hdsp
))
2443 switch (hdsp
->io_type
) {
2458 val
= ucontrol
->value
.enumerated
.item
[0] % max
;
2459 spin_lock_irq(&hdsp
->lock
);
2460 change
= (int)val
!= hdsp_pref_sync_ref(hdsp
);
2461 hdsp_set_pref_sync_ref(hdsp
, val
);
2462 spin_unlock_irq(&hdsp
->lock
);
2466 #define HDSP_AUTOSYNC_REF(xname, xindex) \
2467 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2470 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2471 .info = snd_hdsp_info_autosync_ref, \
2472 .get = snd_hdsp_get_autosync_ref, \
2475 static int hdsp_autosync_ref(struct hdsp
*hdsp
)
2477 /* This looks at the autosync selected sync reference */
2478 unsigned int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
2480 switch (status2
& HDSP_SelSyncRefMask
) {
2481 case HDSP_SelSyncRef_WORD
:
2482 return HDSP_AUTOSYNC_FROM_WORD
;
2483 case HDSP_SelSyncRef_ADAT_SYNC
:
2484 return HDSP_AUTOSYNC_FROM_ADAT_SYNC
;
2485 case HDSP_SelSyncRef_SPDIF
:
2486 return HDSP_AUTOSYNC_FROM_SPDIF
;
2487 case HDSP_SelSyncRefMask
:
2488 return HDSP_AUTOSYNC_FROM_NONE
;
2489 case HDSP_SelSyncRef_ADAT1
:
2490 return HDSP_AUTOSYNC_FROM_ADAT1
;
2491 case HDSP_SelSyncRef_ADAT2
:
2492 return HDSP_AUTOSYNC_FROM_ADAT2
;
2493 case HDSP_SelSyncRef_ADAT3
:
2494 return HDSP_AUTOSYNC_FROM_ADAT3
;
2496 return HDSP_AUTOSYNC_FROM_WORD
;
2501 static int snd_hdsp_info_autosync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2503 static const char * const texts
[] = {
2504 "Word", "ADAT Sync", "IEC958", "None", "ADAT1", "ADAT2", "ADAT3"
2507 return snd_ctl_enum_info(uinfo
, 1, 7, texts
);
2510 static int snd_hdsp_get_autosync_ref(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2512 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2514 ucontrol
->value
.enumerated
.item
[0] = hdsp_autosync_ref(hdsp
);
2518 #define HDSP_PRECISE_POINTER(xname, xindex) \
2519 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2522 .info = snd_hdsp_info_precise_pointer, \
2523 .get = snd_hdsp_get_precise_pointer, \
2524 .put = snd_hdsp_put_precise_pointer \
2527 static int hdsp_set_precise_pointer(struct hdsp
*hdsp
, int precise
)
2530 hdsp
->precise_ptr
= 1;
2532 hdsp
->precise_ptr
= 0;
2536 #define snd_hdsp_info_precise_pointer snd_ctl_boolean_mono_info
2538 static int snd_hdsp_get_precise_pointer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2540 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2542 spin_lock_irq(&hdsp
->lock
);
2543 ucontrol
->value
.integer
.value
[0] = hdsp
->precise_ptr
;
2544 spin_unlock_irq(&hdsp
->lock
);
2548 static int snd_hdsp_put_precise_pointer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2550 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2554 if (!snd_hdsp_use_is_exclusive(hdsp
))
2556 val
= ucontrol
->value
.integer
.value
[0] & 1;
2557 spin_lock_irq(&hdsp
->lock
);
2558 change
= (int)val
!= hdsp
->precise_ptr
;
2559 hdsp_set_precise_pointer(hdsp
, val
);
2560 spin_unlock_irq(&hdsp
->lock
);
2564 #define HDSP_USE_MIDI_TASKLET(xname, xindex) \
2565 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
2568 .info = snd_hdsp_info_use_midi_tasklet, \
2569 .get = snd_hdsp_get_use_midi_tasklet, \
2570 .put = snd_hdsp_put_use_midi_tasklet \
2573 static int hdsp_set_use_midi_tasklet(struct hdsp
*hdsp
, int use_tasklet
)
2576 hdsp
->use_midi_tasklet
= 1;
2578 hdsp
->use_midi_tasklet
= 0;
2582 #define snd_hdsp_info_use_midi_tasklet snd_ctl_boolean_mono_info
2584 static int snd_hdsp_get_use_midi_tasklet(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2586 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2588 spin_lock_irq(&hdsp
->lock
);
2589 ucontrol
->value
.integer
.value
[0] = hdsp
->use_midi_tasklet
;
2590 spin_unlock_irq(&hdsp
->lock
);
2594 static int snd_hdsp_put_use_midi_tasklet(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2596 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2600 if (!snd_hdsp_use_is_exclusive(hdsp
))
2602 val
= ucontrol
->value
.integer
.value
[0] & 1;
2603 spin_lock_irq(&hdsp
->lock
);
2604 change
= (int)val
!= hdsp
->use_midi_tasklet
;
2605 hdsp_set_use_midi_tasklet(hdsp
, val
);
2606 spin_unlock_irq(&hdsp
->lock
);
2610 #define HDSP_MIXER(xname, xindex) \
2611 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
2615 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2616 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2617 .info = snd_hdsp_info_mixer, \
2618 .get = snd_hdsp_get_mixer, \
2619 .put = snd_hdsp_put_mixer \
2622 static int snd_hdsp_info_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2624 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2626 uinfo
->value
.integer
.min
= 0;
2627 uinfo
->value
.integer
.max
= 65536;
2628 uinfo
->value
.integer
.step
= 1;
2632 static int snd_hdsp_get_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2634 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2639 source
= ucontrol
->value
.integer
.value
[0];
2640 destination
= ucontrol
->value
.integer
.value
[1];
2642 if (source
>= hdsp
->max_channels
)
2643 addr
= hdsp_playback_to_output_key(hdsp
,source
-hdsp
->max_channels
,destination
);
2645 addr
= hdsp_input_to_output_key(hdsp
,source
, destination
);
2647 spin_lock_irq(&hdsp
->lock
);
2648 ucontrol
->value
.integer
.value
[2] = hdsp_read_gain (hdsp
, addr
);
2649 spin_unlock_irq(&hdsp
->lock
);
2653 static int snd_hdsp_put_mixer(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2655 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2662 if (!snd_hdsp_use_is_exclusive(hdsp
))
2665 source
= ucontrol
->value
.integer
.value
[0];
2666 destination
= ucontrol
->value
.integer
.value
[1];
2668 if (source
>= hdsp
->max_channels
)
2669 addr
= hdsp_playback_to_output_key(hdsp
,source
-hdsp
->max_channels
, destination
);
2671 addr
= hdsp_input_to_output_key(hdsp
,source
, destination
);
2673 gain
= ucontrol
->value
.integer
.value
[2];
2675 spin_lock_irq(&hdsp
->lock
);
2676 change
= gain
!= hdsp_read_gain(hdsp
, addr
);
2678 hdsp_write_gain(hdsp
, addr
, gain
);
2679 spin_unlock_irq(&hdsp
->lock
);
2683 #define HDSP_WC_SYNC_CHECK(xname, xindex) \
2684 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2687 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2688 .info = snd_hdsp_info_sync_check, \
2689 .get = snd_hdsp_get_wc_sync_check \
2692 static int snd_hdsp_info_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2694 static const char * const texts
[] = {"No Lock", "Lock", "Sync" };
2696 return snd_ctl_enum_info(uinfo
, 1, 3, texts
);
2699 static int hdsp_wc_sync_check(struct hdsp
*hdsp
)
2701 int status2
= hdsp_read(hdsp
, HDSP_status2Register
);
2702 if (status2
& HDSP_wc_lock
) {
2703 if (status2
& HDSP_wc_sync
)
2712 static int snd_hdsp_get_wc_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2714 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2716 ucontrol
->value
.enumerated
.item
[0] = hdsp_wc_sync_check(hdsp
);
2720 #define HDSP_SPDIF_SYNC_CHECK(xname, xindex) \
2721 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2724 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2725 .info = snd_hdsp_info_sync_check, \
2726 .get = snd_hdsp_get_spdif_sync_check \
2729 static int hdsp_spdif_sync_check(struct hdsp
*hdsp
)
2731 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
2732 if (status
& HDSP_SPDIFErrorFlag
)
2735 if (status
& HDSP_SPDIFSync
)
2743 static int snd_hdsp_get_spdif_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2745 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2747 ucontrol
->value
.enumerated
.item
[0] = hdsp_spdif_sync_check(hdsp
);
2751 #define HDSP_ADATSYNC_SYNC_CHECK(xname, xindex) \
2752 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2755 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2756 .info = snd_hdsp_info_sync_check, \
2757 .get = snd_hdsp_get_adatsync_sync_check \
2760 static int hdsp_adatsync_sync_check(struct hdsp
*hdsp
)
2762 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
2763 if (status
& HDSP_TimecodeLock
) {
2764 if (status
& HDSP_TimecodeSync
)
2772 static int snd_hdsp_get_adatsync_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2774 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2776 ucontrol
->value
.enumerated
.item
[0] = hdsp_adatsync_sync_check(hdsp
);
2780 #define HDSP_ADAT_SYNC_CHECK \
2781 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2782 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2783 .info = snd_hdsp_info_sync_check, \
2784 .get = snd_hdsp_get_adat_sync_check \
2787 static int hdsp_adat_sync_check(struct hdsp
*hdsp
, int idx
)
2789 int status
= hdsp_read(hdsp
, HDSP_statusRegister
);
2791 if (status
& (HDSP_Lock0
>>idx
)) {
2792 if (status
& (HDSP_Sync0
>>idx
))
2800 static int snd_hdsp_get_adat_sync_check(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2803 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2805 offset
= ucontrol
->id
.index
- 1;
2806 if (snd_BUG_ON(offset
< 0))
2809 switch (hdsp
->io_type
) {
2824 ucontrol
->value
.enumerated
.item
[0] = hdsp_adat_sync_check(hdsp
, offset
);
2828 #define HDSP_DDS_OFFSET(xname, xindex) \
2829 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2832 .info = snd_hdsp_info_dds_offset, \
2833 .get = snd_hdsp_get_dds_offset, \
2834 .put = snd_hdsp_put_dds_offset \
2837 static int hdsp_dds_offset(struct hdsp
*hdsp
)
2840 unsigned int dds_value
= hdsp
->dds_value
;
2841 int system_sample_rate
= hdsp
->system_sample_rate
;
2848 * dds_value = n / rate
2849 * rate = n / dds_value
2851 n
= div_u64(n
, dds_value
);
2852 if (system_sample_rate
>= 112000)
2854 else if (system_sample_rate
>= 56000)
2856 return ((int)n
) - system_sample_rate
;
2859 static int hdsp_set_dds_offset(struct hdsp
*hdsp
, int offset_hz
)
2861 int rate
= hdsp
->system_sample_rate
+ offset_hz
;
2862 hdsp_set_dds_value(hdsp
, rate
);
2866 static int snd_hdsp_info_dds_offset(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
2868 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2870 uinfo
->value
.integer
.min
= -5000;
2871 uinfo
->value
.integer
.max
= 5000;
2875 static int snd_hdsp_get_dds_offset(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2877 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2879 ucontrol
->value
.integer
.value
[0] = hdsp_dds_offset(hdsp
);
2883 static int snd_hdsp_put_dds_offset(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2885 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2889 if (!snd_hdsp_use_is_exclusive(hdsp
))
2891 val
= ucontrol
->value
.integer
.value
[0];
2892 spin_lock_irq(&hdsp
->lock
);
2893 if (val
!= hdsp_dds_offset(hdsp
))
2894 change
= (hdsp_set_dds_offset(hdsp
, val
) == 0) ? 1 : 0;
2897 spin_unlock_irq(&hdsp
->lock
);
2901 static struct snd_kcontrol_new snd_hdsp_9632_controls
[] = {
2902 HDSP_DA_GAIN("DA Gain", 0),
2903 HDSP_AD_GAIN("AD Gain", 0),
2904 HDSP_PHONE_GAIN("Phones Gain", 0),
2905 HDSP_TOGGLE_SETTING("XLR Breakout Cable", HDSP_XLRBreakoutCable
),
2906 HDSP_DDS_OFFSET("DDS Sample Rate Offset", 0)
2909 static struct snd_kcontrol_new snd_hdsp_controls
[] = {
2911 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2912 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
2913 .info
= snd_hdsp_control_spdif_info
,
2914 .get
= snd_hdsp_control_spdif_get
,
2915 .put
= snd_hdsp_control_spdif_put
,
2918 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
| SNDRV_CTL_ELEM_ACCESS_INACTIVE
,
2919 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2920 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PCM_STREAM
),
2921 .info
= snd_hdsp_control_spdif_stream_info
,
2922 .get
= snd_hdsp_control_spdif_stream_get
,
2923 .put
= snd_hdsp_control_spdif_stream_put
,
2926 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2927 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2928 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,CON_MASK
),
2929 .info
= snd_hdsp_control_spdif_mask_info
,
2930 .get
= snd_hdsp_control_spdif_mask_get
,
2931 .private_value
= IEC958_AES0_NONAUDIO
|
2932 IEC958_AES0_PROFESSIONAL
|
2933 IEC958_AES0_CON_EMPHASIS
,
2936 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2937 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
2938 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PRO_MASK
),
2939 .info
= snd_hdsp_control_spdif_mask_info
,
2940 .get
= snd_hdsp_control_spdif_mask_get
,
2941 .private_value
= IEC958_AES0_NONAUDIO
|
2942 IEC958_AES0_PROFESSIONAL
|
2943 IEC958_AES0_PRO_EMPHASIS
,
2945 HDSP_MIXER("Mixer", 0),
2946 HDSP_SPDIF_IN("IEC958 Input Connector", 0),
2947 HDSP_TOGGLE_SETTING("IEC958 Output also on ADAT1", HDSP_SPDIFOpticalOut
),
2948 HDSP_TOGGLE_SETTING("IEC958 Professional Bit", HDSP_SPDIFProfessional
),
2949 HDSP_TOGGLE_SETTING("IEC958 Emphasis Bit", HDSP_SPDIFEmphasis
),
2950 HDSP_TOGGLE_SETTING("IEC958 Non-audio Bit", HDSP_SPDIFNonAudio
),
2951 /* 'Sample Clock Source' complies with the alsa control naming scheme */
2952 HDSP_CLOCK_SOURCE("Sample Clock Source", 0),
2954 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2955 .name
= "Sample Clock Source Locking",
2956 .info
= snd_hdsp_info_clock_source_lock
,
2957 .get
= snd_hdsp_get_clock_source_lock
,
2958 .put
= snd_hdsp_put_clock_source_lock
,
2960 HDSP_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2961 HDSP_PREF_SYNC_REF("Preferred Sync Reference", 0),
2962 HDSP_AUTOSYNC_REF("AutoSync Reference", 0),
2963 HDSP_SPDIF_SAMPLE_RATE("SPDIF Sample Rate", 0),
2964 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2965 /* 'External Rate' complies with the alsa control naming scheme */
2966 HDSP_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2967 HDSP_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2968 HDSP_SPDIF_SYNC_CHECK("SPDIF Lock Status", 0),
2969 HDSP_ADATSYNC_SYNC_CHECK("ADAT Sync Lock Status", 0),
2970 HDSP_TOGGLE_SETTING("Line Out", HDSP_LineOut
),
2971 HDSP_PRECISE_POINTER("Precise Pointer", 0),
2972 HDSP_USE_MIDI_TASKLET("Use Midi Tasklet", 0),
2976 static int hdsp_rpm_input12(struct hdsp
*hdsp
)
2978 switch (hdsp
->control_register
& HDSP_RPM_Inp12
) {
2979 case HDSP_RPM_Inp12_Phon_6dB
:
2981 case HDSP_RPM_Inp12_Phon_n6dB
:
2983 case HDSP_RPM_Inp12_Line_0dB
:
2985 case HDSP_RPM_Inp12_Line_n6dB
:
2992 static int snd_hdsp_get_rpm_input12(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2994 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
2996 ucontrol
->value
.enumerated
.item
[0] = hdsp_rpm_input12(hdsp
);
3001 static int hdsp_set_rpm_input12(struct hdsp
*hdsp
, int mode
)
3003 hdsp
->control_register
&= ~HDSP_RPM_Inp12
;
3006 hdsp
->control_register
|= HDSP_RPM_Inp12_Phon_6dB
;
3011 hdsp
->control_register
|= HDSP_RPM_Inp12_Phon_n6dB
;
3014 hdsp
->control_register
|= HDSP_RPM_Inp12_Line_0dB
;
3017 hdsp
->control_register
|= HDSP_RPM_Inp12_Line_n6dB
;
3023 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3028 static int snd_hdsp_put_rpm_input12(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3030 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3034 if (!snd_hdsp_use_is_exclusive(hdsp
))
3036 val
= ucontrol
->value
.enumerated
.item
[0];
3041 spin_lock_irq(&hdsp
->lock
);
3042 if (val
!= hdsp_rpm_input12(hdsp
))
3043 change
= (hdsp_set_rpm_input12(hdsp
, val
) == 0) ? 1 : 0;
3046 spin_unlock_irq(&hdsp
->lock
);
3051 static int snd_hdsp_info_rpm_input(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
3053 static const char * const texts
[] = {
3054 "Phono +6dB", "Phono 0dB", "Phono -6dB", "Line 0dB", "Line -6dB"
3057 return snd_ctl_enum_info(uinfo
, 1, 5, texts
);
3061 static int hdsp_rpm_input34(struct hdsp
*hdsp
)
3063 switch (hdsp
->control_register
& HDSP_RPM_Inp34
) {
3064 case HDSP_RPM_Inp34_Phon_6dB
:
3066 case HDSP_RPM_Inp34_Phon_n6dB
:
3068 case HDSP_RPM_Inp34_Line_0dB
:
3070 case HDSP_RPM_Inp34_Line_n6dB
:
3077 static int snd_hdsp_get_rpm_input34(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3079 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3081 ucontrol
->value
.enumerated
.item
[0] = hdsp_rpm_input34(hdsp
);
3086 static int hdsp_set_rpm_input34(struct hdsp
*hdsp
, int mode
)
3088 hdsp
->control_register
&= ~HDSP_RPM_Inp34
;
3091 hdsp
->control_register
|= HDSP_RPM_Inp34_Phon_6dB
;
3096 hdsp
->control_register
|= HDSP_RPM_Inp34_Phon_n6dB
;
3099 hdsp
->control_register
|= HDSP_RPM_Inp34_Line_0dB
;
3102 hdsp
->control_register
|= HDSP_RPM_Inp34_Line_n6dB
;
3108 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3113 static int snd_hdsp_put_rpm_input34(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3115 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3119 if (!snd_hdsp_use_is_exclusive(hdsp
))
3121 val
= ucontrol
->value
.enumerated
.item
[0];
3126 spin_lock_irq(&hdsp
->lock
);
3127 if (val
!= hdsp_rpm_input34(hdsp
))
3128 change
= (hdsp_set_rpm_input34(hdsp
, val
) == 0) ? 1 : 0;
3131 spin_unlock_irq(&hdsp
->lock
);
3136 /* RPM Bypass switch */
3137 static int hdsp_rpm_bypass(struct hdsp
*hdsp
)
3139 return (hdsp
->control_register
& HDSP_RPM_Bypass
) ? 1 : 0;
3143 static int snd_hdsp_get_rpm_bypass(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3145 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3147 ucontrol
->value
.integer
.value
[0] = hdsp_rpm_bypass(hdsp
);
3152 static int hdsp_set_rpm_bypass(struct hdsp
*hdsp
, int on
)
3155 hdsp
->control_register
|= HDSP_RPM_Bypass
;
3157 hdsp
->control_register
&= ~HDSP_RPM_Bypass
;
3158 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3163 static int snd_hdsp_put_rpm_bypass(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3165 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3169 if (!snd_hdsp_use_is_exclusive(hdsp
))
3171 val
= ucontrol
->value
.integer
.value
[0] & 1;
3172 spin_lock_irq(&hdsp
->lock
);
3173 change
= (int)val
!= hdsp_rpm_bypass(hdsp
);
3174 hdsp_set_rpm_bypass(hdsp
, val
);
3175 spin_unlock_irq(&hdsp
->lock
);
3180 static int snd_hdsp_info_rpm_bypass(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
3182 static const char * const texts
[] = {"On", "Off"};
3184 return snd_ctl_enum_info(uinfo
, 1, 2, texts
);
3188 /* RPM Disconnect switch */
3189 static int hdsp_rpm_disconnect(struct hdsp
*hdsp
)
3191 return (hdsp
->control_register
& HDSP_RPM_Disconnect
) ? 1 : 0;
3195 static int snd_hdsp_get_rpm_disconnect(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3197 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3199 ucontrol
->value
.integer
.value
[0] = hdsp_rpm_disconnect(hdsp
);
3204 static int hdsp_set_rpm_disconnect(struct hdsp
*hdsp
, int on
)
3207 hdsp
->control_register
|= HDSP_RPM_Disconnect
;
3209 hdsp
->control_register
&= ~HDSP_RPM_Disconnect
;
3210 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3215 static int snd_hdsp_put_rpm_disconnect(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
3217 struct hdsp
*hdsp
= snd_kcontrol_chip(kcontrol
);
3221 if (!snd_hdsp_use_is_exclusive(hdsp
))
3223 val
= ucontrol
->value
.integer
.value
[0] & 1;
3224 spin_lock_irq(&hdsp
->lock
);
3225 change
= (int)val
!= hdsp_rpm_disconnect(hdsp
);
3226 hdsp_set_rpm_disconnect(hdsp
, val
);
3227 spin_unlock_irq(&hdsp
->lock
);
3231 static int snd_hdsp_info_rpm_disconnect(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
3233 static const char * const texts
[] = {"On", "Off"};
3235 return snd_ctl_enum_info(uinfo
, 1, 2, texts
);
3238 static struct snd_kcontrol_new snd_hdsp_rpm_controls
[] = {
3240 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3241 .name
= "RPM Bypass",
3242 .get
= snd_hdsp_get_rpm_bypass
,
3243 .put
= snd_hdsp_put_rpm_bypass
,
3244 .info
= snd_hdsp_info_rpm_bypass
3247 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3248 .name
= "RPM Disconnect",
3249 .get
= snd_hdsp_get_rpm_disconnect
,
3250 .put
= snd_hdsp_put_rpm_disconnect
,
3251 .info
= snd_hdsp_info_rpm_disconnect
3254 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3255 .name
= "Input 1/2",
3256 .get
= snd_hdsp_get_rpm_input12
,
3257 .put
= snd_hdsp_put_rpm_input12
,
3258 .info
= snd_hdsp_info_rpm_input
3261 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3262 .name
= "Input 3/4",
3263 .get
= snd_hdsp_get_rpm_input34
,
3264 .put
= snd_hdsp_put_rpm_input34
,
3265 .info
= snd_hdsp_info_rpm_input
3267 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
3268 HDSP_MIXER("Mixer", 0)
3271 static struct snd_kcontrol_new snd_hdsp_96xx_aeb
=
3272 HDSP_TOGGLE_SETTING("Analog Extension Board",
3273 HDSP_AnalogExtensionBoard
);
3274 static struct snd_kcontrol_new snd_hdsp_adat_sync_check
= HDSP_ADAT_SYNC_CHECK
;
3276 static int snd_hdsp_create_controls(struct snd_card
*card
, struct hdsp
*hdsp
)
3280 struct snd_kcontrol
*kctl
;
3282 if (hdsp
->io_type
== RPM
) {
3283 /* RPM Bypass, Disconnect and Input switches */
3284 for (idx
= 0; idx
< ARRAY_SIZE(snd_hdsp_rpm_controls
); idx
++) {
3285 err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_rpm_controls
[idx
], hdsp
));
3292 for (idx
= 0; idx
< ARRAY_SIZE(snd_hdsp_controls
); idx
++) {
3293 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_controls
[idx
], hdsp
))) < 0)
3295 if (idx
== 1) /* IEC958 (S/PDIF) Stream */
3296 hdsp
->spdif_ctl
= kctl
;
3299 /* ADAT SyncCheck status */
3300 snd_hdsp_adat_sync_check
.name
= "ADAT Lock Status";
3301 snd_hdsp_adat_sync_check
.index
= 1;
3302 if ((err
= snd_ctl_add (card
, kctl
= snd_ctl_new1(&snd_hdsp_adat_sync_check
, hdsp
))))
3304 if (hdsp
->io_type
== Digiface
|| hdsp
->io_type
== H9652
) {
3305 for (idx
= 1; idx
< 3; ++idx
) {
3306 snd_hdsp_adat_sync_check
.index
= idx
+1;
3307 if ((err
= snd_ctl_add (card
, kctl
= snd_ctl_new1(&snd_hdsp_adat_sync_check
, hdsp
))))
3312 /* DA, AD and Phone gain and XLR breakout cable controls for H9632 cards */
3313 if (hdsp
->io_type
== H9632
) {
3314 for (idx
= 0; idx
< ARRAY_SIZE(snd_hdsp_9632_controls
); idx
++) {
3315 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_9632_controls
[idx
], hdsp
))) < 0)
3320 /* AEB control for H96xx card */
3321 if (hdsp
->io_type
== H9632
|| hdsp
->io_type
== H9652
) {
3322 if ((err
= snd_ctl_add(card
, kctl
= snd_ctl_new1(&snd_hdsp_96xx_aeb
, hdsp
))) < 0)
3329 /*------------------------------------------------------------
3331 ------------------------------------------------------------*/
3334 snd_hdsp_proc_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
3336 struct hdsp
*hdsp
= entry
->private_data
;
3337 unsigned int status
;
3338 unsigned int status2
;
3339 char *pref_sync_ref
;
3341 char *system_clock_mode
;
3345 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
3346 status2
= hdsp_read(hdsp
, HDSP_status2Register
);
3348 snd_iprintf(buffer
, "%s (Card #%d)\n", hdsp
->card_name
,
3349 hdsp
->card
->number
+ 1);
3350 snd_iprintf(buffer
, "Buffers: capture %p playback %p\n",
3351 hdsp
->capture_buffer
, hdsp
->playback_buffer
);
3352 snd_iprintf(buffer
, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
3353 hdsp
->irq
, hdsp
->port
, (unsigned long)hdsp
->iobase
);
3354 snd_iprintf(buffer
, "Control register: 0x%x\n", hdsp
->control_register
);
3355 snd_iprintf(buffer
, "Control2 register: 0x%x\n",
3356 hdsp
->control2_register
);
3357 snd_iprintf(buffer
, "Status register: 0x%x\n", status
);
3358 snd_iprintf(buffer
, "Status2 register: 0x%x\n", status2
);
3360 if (hdsp_check_for_iobox(hdsp
)) {
3361 snd_iprintf(buffer
, "No I/O box connected.\n"
3362 "Please connect one and upload firmware.\n");
3366 if (hdsp_check_for_firmware(hdsp
, 0)) {
3367 if (hdsp
->state
& HDSP_FirmwareCached
) {
3368 if (snd_hdsp_load_firmware_from_cache(hdsp
) != 0) {
3369 snd_iprintf(buffer
, "Firmware loading from "
3371 "please upload manually.\n");
3376 err
= hdsp_request_fw_loader(hdsp
);
3379 "No firmware loaded nor cached, "
3380 "please upload firmware.\n");
3386 snd_iprintf(buffer
, "FIFO status: %d\n", hdsp_read(hdsp
, HDSP_fifoStatus
) & 0xff);
3387 snd_iprintf(buffer
, "MIDI1 Output status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusOut0
));
3388 snd_iprintf(buffer
, "MIDI1 Input status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusIn0
));
3389 snd_iprintf(buffer
, "MIDI2 Output status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusOut1
));
3390 snd_iprintf(buffer
, "MIDI2 Input status: 0x%x\n", hdsp_read(hdsp
, HDSP_midiStatusIn1
));
3391 snd_iprintf(buffer
, "Use Midi Tasklet: %s\n", hdsp
->use_midi_tasklet
? "on" : "off");
3393 snd_iprintf(buffer
, "\n");
3395 x
= 1 << (6 + hdsp_decode_latency(hdsp
->control_register
& HDSP_LatencyMask
));
3397 snd_iprintf(buffer
, "Buffer Size (Latency): %d samples (2 periods of %lu bytes)\n", x
, (unsigned long) hdsp
->period_bytes
);
3398 snd_iprintf(buffer
, "Hardware pointer (frames): %ld\n", hdsp_hw_pointer(hdsp
));
3399 snd_iprintf(buffer
, "Precise pointer: %s\n", hdsp
->precise_ptr
? "on" : "off");
3400 snd_iprintf(buffer
, "Line out: %s\n", (hdsp
->control_register
& HDSP_LineOut
) ? "on" : "off");
3402 snd_iprintf(buffer
, "Firmware version: %d\n", (status2
&HDSP_version0
)|(status2
&HDSP_version1
)<<1|(status2
&HDSP_version2
)<<2);
3404 snd_iprintf(buffer
, "\n");
3406 switch (hdsp_clock_source(hdsp
)) {
3407 case HDSP_CLOCK_SOURCE_AUTOSYNC
:
3408 clock_source
= "AutoSync";
3410 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ
:
3411 clock_source
= "Internal 32 kHz";
3413 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ
:
3414 clock_source
= "Internal 44.1 kHz";
3416 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ
:
3417 clock_source
= "Internal 48 kHz";
3419 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ
:
3420 clock_source
= "Internal 64 kHz";
3422 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ
:
3423 clock_source
= "Internal 88.2 kHz";
3425 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ
:
3426 clock_source
= "Internal 96 kHz";
3428 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ
:
3429 clock_source
= "Internal 128 kHz";
3431 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ
:
3432 clock_source
= "Internal 176.4 kHz";
3434 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ
:
3435 clock_source
= "Internal 192 kHz";
3438 clock_source
= "Error";
3440 snd_iprintf (buffer
, "Sample Clock Source: %s\n", clock_source
);
3442 if (hdsp_system_clock_mode(hdsp
))
3443 system_clock_mode
= "Slave";
3445 system_clock_mode
= "Master";
3447 switch (hdsp_pref_sync_ref (hdsp
)) {
3448 case HDSP_SYNC_FROM_WORD
:
3449 pref_sync_ref
= "Word Clock";
3451 case HDSP_SYNC_FROM_ADAT_SYNC
:
3452 pref_sync_ref
= "ADAT Sync";
3454 case HDSP_SYNC_FROM_SPDIF
:
3455 pref_sync_ref
= "SPDIF";
3457 case HDSP_SYNC_FROM_ADAT1
:
3458 pref_sync_ref
= "ADAT1";
3460 case HDSP_SYNC_FROM_ADAT2
:
3461 pref_sync_ref
= "ADAT2";
3463 case HDSP_SYNC_FROM_ADAT3
:
3464 pref_sync_ref
= "ADAT3";
3467 pref_sync_ref
= "Word Clock";
3470 snd_iprintf (buffer
, "Preferred Sync Reference: %s\n", pref_sync_ref
);
3472 switch (hdsp_autosync_ref (hdsp
)) {
3473 case HDSP_AUTOSYNC_FROM_WORD
:
3474 autosync_ref
= "Word Clock";
3476 case HDSP_AUTOSYNC_FROM_ADAT_SYNC
:
3477 autosync_ref
= "ADAT Sync";
3479 case HDSP_AUTOSYNC_FROM_SPDIF
:
3480 autosync_ref
= "SPDIF";
3482 case HDSP_AUTOSYNC_FROM_NONE
:
3483 autosync_ref
= "None";
3485 case HDSP_AUTOSYNC_FROM_ADAT1
:
3486 autosync_ref
= "ADAT1";
3488 case HDSP_AUTOSYNC_FROM_ADAT2
:
3489 autosync_ref
= "ADAT2";
3491 case HDSP_AUTOSYNC_FROM_ADAT3
:
3492 autosync_ref
= "ADAT3";
3495 autosync_ref
= "---";
3498 snd_iprintf (buffer
, "AutoSync Reference: %s\n", autosync_ref
);
3500 snd_iprintf (buffer
, "AutoSync Frequency: %d\n", hdsp_external_sample_rate(hdsp
));
3502 snd_iprintf (buffer
, "System Clock Mode: %s\n", system_clock_mode
);
3504 snd_iprintf (buffer
, "System Clock Frequency: %d\n", hdsp
->system_sample_rate
);
3505 snd_iprintf (buffer
, "System Clock Locked: %s\n", hdsp
->clock_source_locked
? "Yes" : "No");
3507 snd_iprintf(buffer
, "\n");
3509 if (hdsp
->io_type
!= RPM
) {
3510 switch (hdsp_spdif_in(hdsp
)) {
3511 case HDSP_SPDIFIN_OPTICAL
:
3512 snd_iprintf(buffer
, "IEC958 input: Optical\n");
3514 case HDSP_SPDIFIN_COAXIAL
:
3515 snd_iprintf(buffer
, "IEC958 input: Coaxial\n");
3517 case HDSP_SPDIFIN_INTERNAL
:
3518 snd_iprintf(buffer
, "IEC958 input: Internal\n");
3520 case HDSP_SPDIFIN_AES
:
3521 snd_iprintf(buffer
, "IEC958 input: AES\n");
3524 snd_iprintf(buffer
, "IEC958 input: ???\n");
3529 if (RPM
== hdsp
->io_type
) {
3530 if (hdsp
->control_register
& HDSP_RPM_Bypass
)
3531 snd_iprintf(buffer
, "RPM Bypass: disabled\n");
3533 snd_iprintf(buffer
, "RPM Bypass: enabled\n");
3534 if (hdsp
->control_register
& HDSP_RPM_Disconnect
)
3535 snd_iprintf(buffer
, "RPM disconnected\n");
3537 snd_iprintf(buffer
, "RPM connected\n");
3539 switch (hdsp
->control_register
& HDSP_RPM_Inp12
) {
3540 case HDSP_RPM_Inp12_Phon_6dB
:
3541 snd_iprintf(buffer
, "Input 1/2: Phono, 6dB\n");
3543 case HDSP_RPM_Inp12_Phon_0dB
:
3544 snd_iprintf(buffer
, "Input 1/2: Phono, 0dB\n");
3546 case HDSP_RPM_Inp12_Phon_n6dB
:
3547 snd_iprintf(buffer
, "Input 1/2: Phono, -6dB\n");
3549 case HDSP_RPM_Inp12_Line_0dB
:
3550 snd_iprintf(buffer
, "Input 1/2: Line, 0dB\n");
3552 case HDSP_RPM_Inp12_Line_n6dB
:
3553 snd_iprintf(buffer
, "Input 1/2: Line, -6dB\n");
3556 snd_iprintf(buffer
, "Input 1/2: ???\n");
3559 switch (hdsp
->control_register
& HDSP_RPM_Inp34
) {
3560 case HDSP_RPM_Inp34_Phon_6dB
:
3561 snd_iprintf(buffer
, "Input 3/4: Phono, 6dB\n");
3563 case HDSP_RPM_Inp34_Phon_0dB
:
3564 snd_iprintf(buffer
, "Input 3/4: Phono, 0dB\n");
3566 case HDSP_RPM_Inp34_Phon_n6dB
:
3567 snd_iprintf(buffer
, "Input 3/4: Phono, -6dB\n");
3569 case HDSP_RPM_Inp34_Line_0dB
:
3570 snd_iprintf(buffer
, "Input 3/4: Line, 0dB\n");
3572 case HDSP_RPM_Inp34_Line_n6dB
:
3573 snd_iprintf(buffer
, "Input 3/4: Line, -6dB\n");
3576 snd_iprintf(buffer
, "Input 3/4: ???\n");
3580 if (hdsp
->control_register
& HDSP_SPDIFOpticalOut
)
3581 snd_iprintf(buffer
, "IEC958 output: Coaxial & ADAT1\n");
3583 snd_iprintf(buffer
, "IEC958 output: Coaxial only\n");
3585 if (hdsp
->control_register
& HDSP_SPDIFProfessional
)
3586 snd_iprintf(buffer
, "IEC958 quality: Professional\n");
3588 snd_iprintf(buffer
, "IEC958 quality: Consumer\n");
3590 if (hdsp
->control_register
& HDSP_SPDIFEmphasis
)
3591 snd_iprintf(buffer
, "IEC958 emphasis: on\n");
3593 snd_iprintf(buffer
, "IEC958 emphasis: off\n");
3595 if (hdsp
->control_register
& HDSP_SPDIFNonAudio
)
3596 snd_iprintf(buffer
, "IEC958 NonAudio: on\n");
3598 snd_iprintf(buffer
, "IEC958 NonAudio: off\n");
3599 x
= hdsp_spdif_sample_rate(hdsp
);
3601 snd_iprintf(buffer
, "IEC958 sample rate: %d\n", x
);
3603 snd_iprintf(buffer
, "IEC958 sample rate: Error flag set\n");
3605 snd_iprintf(buffer
, "\n");
3608 x
= status
& HDSP_Sync0
;
3609 if (status
& HDSP_Lock0
)
3610 snd_iprintf(buffer
, "ADAT1: %s\n", x
? "Sync" : "Lock");
3612 snd_iprintf(buffer
, "ADAT1: No Lock\n");
3614 switch (hdsp
->io_type
) {
3617 x
= status
& HDSP_Sync1
;
3618 if (status
& HDSP_Lock1
)
3619 snd_iprintf(buffer
, "ADAT2: %s\n", x
? "Sync" : "Lock");
3621 snd_iprintf(buffer
, "ADAT2: No Lock\n");
3622 x
= status
& HDSP_Sync2
;
3623 if (status
& HDSP_Lock2
)
3624 snd_iprintf(buffer
, "ADAT3: %s\n", x
? "Sync" : "Lock");
3626 snd_iprintf(buffer
, "ADAT3: No Lock\n");
3633 x
= status
& HDSP_SPDIFSync
;
3634 if (status
& HDSP_SPDIFErrorFlag
)
3635 snd_iprintf (buffer
, "SPDIF: No Lock\n");
3637 snd_iprintf (buffer
, "SPDIF: %s\n", x
? "Sync" : "Lock");
3639 x
= status2
& HDSP_wc_sync
;
3640 if (status2
& HDSP_wc_lock
)
3641 snd_iprintf (buffer
, "Word Clock: %s\n", x
? "Sync" : "Lock");
3643 snd_iprintf (buffer
, "Word Clock: No Lock\n");
3645 x
= status
& HDSP_TimecodeSync
;
3646 if (status
& HDSP_TimecodeLock
)
3647 snd_iprintf(buffer
, "ADAT Sync: %s\n", x
? "Sync" : "Lock");
3649 snd_iprintf(buffer
, "ADAT Sync: No Lock\n");
3651 snd_iprintf(buffer
, "\n");
3653 /* Informations about H9632 specific controls */
3654 if (hdsp
->io_type
== H9632
) {
3657 switch (hdsp_ad_gain(hdsp
)) {
3668 snd_iprintf(buffer
, "AD Gain : %s\n", tmp
);
3670 switch (hdsp_da_gain(hdsp
)) {
3681 snd_iprintf(buffer
, "DA Gain : %s\n", tmp
);
3683 switch (hdsp_phone_gain(hdsp
)) {
3694 snd_iprintf(buffer
, "Phones Gain : %s\n", tmp
);
3696 snd_iprintf(buffer
, "XLR Breakout Cable : %s\n",
3697 hdsp_toggle_setting(hdsp
, HDSP_XLRBreakoutCable
) ?
3700 if (hdsp
->control_register
& HDSP_AnalogExtensionBoard
)
3701 snd_iprintf(buffer
, "AEB : on (ADAT1 internal)\n");
3703 snd_iprintf(buffer
, "AEB : off (ADAT1 external)\n");
3704 snd_iprintf(buffer
, "\n");
3709 static void snd_hdsp_proc_init(struct hdsp
*hdsp
)
3711 struct snd_info_entry
*entry
;
3713 if (! snd_card_proc_new(hdsp
->card
, "hdsp", &entry
))
3714 snd_info_set_text_ops(entry
, hdsp
, snd_hdsp_proc_read
);
3717 static void snd_hdsp_free_buffers(struct hdsp
*hdsp
)
3719 snd_hammerfall_free_buffer(&hdsp
->capture_dma_buf
, hdsp
->pci
);
3720 snd_hammerfall_free_buffer(&hdsp
->playback_dma_buf
, hdsp
->pci
);
3723 static int snd_hdsp_initialize_memory(struct hdsp
*hdsp
)
3725 unsigned long pb_bus
, cb_bus
;
3727 if (snd_hammerfall_get_buffer(hdsp
->pci
, &hdsp
->capture_dma_buf
, HDSP_DMA_AREA_BYTES
) < 0 ||
3728 snd_hammerfall_get_buffer(hdsp
->pci
, &hdsp
->playback_dma_buf
, HDSP_DMA_AREA_BYTES
) < 0) {
3729 if (hdsp
->capture_dma_buf
.area
)
3730 snd_dma_free_pages(&hdsp
->capture_dma_buf
);
3731 dev_err(hdsp
->card
->dev
,
3732 "%s: no buffers available\n", hdsp
->card_name
);
3736 /* Align to bus-space 64K boundary */
3738 cb_bus
= ALIGN(hdsp
->capture_dma_buf
.addr
, 0x10000ul
);
3739 pb_bus
= ALIGN(hdsp
->playback_dma_buf
.addr
, 0x10000ul
);
3741 /* Tell the card where it is */
3743 hdsp_write(hdsp
, HDSP_inputBufferAddress
, cb_bus
);
3744 hdsp_write(hdsp
, HDSP_outputBufferAddress
, pb_bus
);
3746 hdsp
->capture_buffer
= hdsp
->capture_dma_buf
.area
+ (cb_bus
- hdsp
->capture_dma_buf
.addr
);
3747 hdsp
->playback_buffer
= hdsp
->playback_dma_buf
.area
+ (pb_bus
- hdsp
->playback_dma_buf
.addr
);
3752 static int snd_hdsp_set_defaults(struct hdsp
*hdsp
)
3756 /* ASSUMPTION: hdsp->lock is either held, or
3757 there is no need to hold it (e.g. during module
3763 SPDIF Input via Coax
3765 maximum latency (7 => 2^7 = 8192 samples, 64Kbyte buffer,
3766 which implies 2 4096 sample, 32Kbyte periods).
3770 hdsp
->control_register
= HDSP_ClockModeMaster
|
3771 HDSP_SPDIFInputCoaxial
|
3772 hdsp_encode_latency(7) |
3776 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3778 #ifdef SNDRV_BIG_ENDIAN
3779 hdsp
->control2_register
= HDSP_BIGENDIAN_MODE
;
3781 hdsp
->control2_register
= 0;
3783 if (hdsp
->io_type
== H9652
)
3784 snd_hdsp_9652_enable_mixer (hdsp
);
3786 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
3788 hdsp_reset_hw_pointer(hdsp
);
3789 hdsp_compute_period_size(hdsp
);
3791 /* silence everything */
3793 for (i
= 0; i
< HDSP_MATRIX_MIXER_SIZE
; ++i
)
3794 hdsp
->mixer_matrix
[i
] = MINUS_INFINITY_GAIN
;
3796 for (i
= 0; i
< ((hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) ? 1352 : HDSP_MATRIX_MIXER_SIZE
); ++i
) {
3797 if (hdsp_write_gain (hdsp
, i
, MINUS_INFINITY_GAIN
))
3801 /* H9632 specific defaults */
3802 if (hdsp
->io_type
== H9632
) {
3803 hdsp
->control_register
|= (HDSP_DAGainPlus4dBu
| HDSP_ADGainPlus4dBu
| HDSP_PhoneGain0dB
);
3804 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3807 /* set a default rate so that the channel map is set up.
3810 hdsp_set_rate(hdsp
, 48000, 1);
3815 static void hdsp_midi_tasklet(unsigned long arg
)
3817 struct hdsp
*hdsp
= (struct hdsp
*)arg
;
3819 if (hdsp
->midi
[0].pending
)
3820 snd_hdsp_midi_input_read (&hdsp
->midi
[0]);
3821 if (hdsp
->midi
[1].pending
)
3822 snd_hdsp_midi_input_read (&hdsp
->midi
[1]);
3825 static irqreturn_t
snd_hdsp_interrupt(int irq
, void *dev_id
)
3827 struct hdsp
*hdsp
= (struct hdsp
*) dev_id
;
3828 unsigned int status
;
3832 unsigned int midi0status
;
3833 unsigned int midi1status
;
3836 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
3838 audio
= status
& HDSP_audioIRQPending
;
3839 midi0
= status
& HDSP_midi0IRQPending
;
3840 midi1
= status
& HDSP_midi1IRQPending
;
3842 if (!audio
&& !midi0
&& !midi1
)
3845 hdsp_write(hdsp
, HDSP_interruptConfirmation
, 0);
3847 midi0status
= hdsp_read (hdsp
, HDSP_midiStatusIn0
) & 0xff;
3848 midi1status
= hdsp_read (hdsp
, HDSP_midiStatusIn1
) & 0xff;
3850 if (!(hdsp
->state
& HDSP_InitializationComplete
))
3854 if (hdsp
->capture_substream
)
3855 snd_pcm_period_elapsed(hdsp
->pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
);
3857 if (hdsp
->playback_substream
)
3858 snd_pcm_period_elapsed(hdsp
->pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
);
3861 if (midi0
&& midi0status
) {
3862 if (hdsp
->use_midi_tasklet
) {
3863 /* we disable interrupts for this input until processing is done */
3864 hdsp
->control_register
&= ~HDSP_Midi0InterruptEnable
;
3865 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3866 hdsp
->midi
[0].pending
= 1;
3869 snd_hdsp_midi_input_read (&hdsp
->midi
[0]);
3872 if (hdsp
->io_type
!= Multiface
&& hdsp
->io_type
!= RPM
&& hdsp
->io_type
!= H9632
&& midi1
&& midi1status
) {
3873 if (hdsp
->use_midi_tasklet
) {
3874 /* we disable interrupts for this input until processing is done */
3875 hdsp
->control_register
&= ~HDSP_Midi1InterruptEnable
;
3876 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
3877 hdsp
->midi
[1].pending
= 1;
3880 snd_hdsp_midi_input_read (&hdsp
->midi
[1]);
3883 if (hdsp
->use_midi_tasklet
&& schedule
)
3884 tasklet_schedule(&hdsp
->midi_tasklet
);
3888 static snd_pcm_uframes_t
snd_hdsp_hw_pointer(struct snd_pcm_substream
*substream
)
3890 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3891 return hdsp_hw_pointer(hdsp
);
3894 static char *hdsp_channel_buffer_location(struct hdsp
*hdsp
,
3901 if (snd_BUG_ON(channel
< 0 || channel
>= hdsp
->max_channels
))
3904 if ((mapped_channel
= hdsp
->channel_map
[channel
]) < 0)
3907 if (stream
== SNDRV_PCM_STREAM_CAPTURE
)
3908 return hdsp
->capture_buffer
+ (mapped_channel
* HDSP_CHANNEL_BUFFER_BYTES
);
3910 return hdsp
->playback_buffer
+ (mapped_channel
* HDSP_CHANNEL_BUFFER_BYTES
);
3913 static int snd_hdsp_playback_copy(struct snd_pcm_substream
*substream
,
3914 int channel
, unsigned long pos
,
3915 void __user
*src
, unsigned long count
)
3917 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3920 if (snd_BUG_ON(pos
+ count
> HDSP_CHANNEL_BUFFER_BYTES
))
3923 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3924 if (snd_BUG_ON(!channel_buf
))
3926 if (copy_from_user(channel_buf
+ pos
, src
, count
))
3931 static int snd_hdsp_playback_copy_kernel(struct snd_pcm_substream
*substream
,
3932 int channel
, unsigned long pos
,
3933 void *src
, unsigned long count
)
3935 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3938 channel_buf
= hdsp_channel_buffer_location(hdsp
, substream
->pstr
->stream
, channel
);
3939 if (snd_BUG_ON(!channel_buf
))
3941 memcpy(channel_buf
+ pos
, src
, count
);
3945 static int snd_hdsp_capture_copy(struct snd_pcm_substream
*substream
,
3946 int channel
, unsigned long pos
,
3947 void __user
*dst
, unsigned long count
)
3949 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3952 if (snd_BUG_ON(pos
+ count
> HDSP_CHANNEL_BUFFER_BYTES
))
3955 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3956 if (snd_BUG_ON(!channel_buf
))
3958 if (copy_to_user(dst
, channel_buf
+ pos
, count
))
3963 static int snd_hdsp_capture_copy_kernel(struct snd_pcm_substream
*substream
,
3964 int channel
, unsigned long pos
,
3965 void *dst
, unsigned long count
)
3967 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3970 channel_buf
= hdsp_channel_buffer_location(hdsp
, substream
->pstr
->stream
, channel
);
3971 if (snd_BUG_ON(!channel_buf
))
3973 memcpy(dst
, channel_buf
+ pos
, count
);
3977 static int snd_hdsp_hw_silence(struct snd_pcm_substream
*substream
,
3978 int channel
, unsigned long pos
,
3979 unsigned long count
)
3981 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3984 channel_buf
= hdsp_channel_buffer_location (hdsp
, substream
->pstr
->stream
, channel
);
3985 if (snd_BUG_ON(!channel_buf
))
3987 memset(channel_buf
+ pos
, 0, count
);
3991 static int snd_hdsp_reset(struct snd_pcm_substream
*substream
)
3993 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
3994 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
3995 struct snd_pcm_substream
*other
;
3996 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3997 other
= hdsp
->capture_substream
;
3999 other
= hdsp
->playback_substream
;
4001 runtime
->status
->hw_ptr
= hdsp_hw_pointer(hdsp
);
4003 runtime
->status
->hw_ptr
= 0;
4005 struct snd_pcm_substream
*s
;
4006 struct snd_pcm_runtime
*oruntime
= other
->runtime
;
4007 snd_pcm_group_for_each_entry(s
, substream
) {
4009 oruntime
->status
->hw_ptr
= runtime
->status
->hw_ptr
;
4017 static int snd_hdsp_hw_params(struct snd_pcm_substream
*substream
,
4018 struct snd_pcm_hw_params
*params
)
4020 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4025 if (hdsp_check_for_iobox (hdsp
))
4028 if (hdsp_check_for_firmware(hdsp
, 1))
4031 spin_lock_irq(&hdsp
->lock
);
4033 if (substream
->pstr
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
4034 hdsp
->control_register
&= ~(HDSP_SPDIFProfessional
| HDSP_SPDIFNonAudio
| HDSP_SPDIFEmphasis
);
4035 hdsp_write(hdsp
, HDSP_controlRegister
, hdsp
->control_register
|= hdsp
->creg_spdif_stream
);
4036 this_pid
= hdsp
->playback_pid
;
4037 other_pid
= hdsp
->capture_pid
;
4039 this_pid
= hdsp
->capture_pid
;
4040 other_pid
= hdsp
->playback_pid
;
4043 if ((other_pid
> 0) && (this_pid
!= other_pid
)) {
4045 /* The other stream is open, and not by the same
4046 task as this one. Make sure that the parameters
4047 that matter are the same.
4050 if (params_rate(params
) != hdsp
->system_sample_rate
) {
4051 spin_unlock_irq(&hdsp
->lock
);
4052 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_RATE
);
4056 if (params_period_size(params
) != hdsp
->period_bytes
/ 4) {
4057 spin_unlock_irq(&hdsp
->lock
);
4058 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
4064 spin_unlock_irq(&hdsp
->lock
);
4068 spin_unlock_irq(&hdsp
->lock
);
4071 /* how to make sure that the rate matches an externally-set one ?
4074 spin_lock_irq(&hdsp
->lock
);
4075 if (! hdsp
->clock_source_locked
) {
4076 if ((err
= hdsp_set_rate(hdsp
, params_rate(params
), 0)) < 0) {
4077 spin_unlock_irq(&hdsp
->lock
);
4078 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_RATE
);
4082 spin_unlock_irq(&hdsp
->lock
);
4084 if ((err
= hdsp_set_interrupt_interval(hdsp
, params_period_size(params
))) < 0) {
4085 _snd_pcm_hw_param_setempty(params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
4092 static int snd_hdsp_channel_info(struct snd_pcm_substream
*substream
,
4093 struct snd_pcm_channel_info
*info
)
4095 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4096 unsigned int channel
= info
->channel
;
4098 if (snd_BUG_ON(channel
>= hdsp
->max_channels
))
4100 channel
= array_index_nospec(channel
, hdsp
->max_channels
);
4102 if (hdsp
->channel_map
[channel
] < 0)
4105 info
->offset
= hdsp
->channel_map
[channel
] * HDSP_CHANNEL_BUFFER_BYTES
;
4111 static int snd_hdsp_ioctl(struct snd_pcm_substream
*substream
,
4112 unsigned int cmd
, void *arg
)
4115 case SNDRV_PCM_IOCTL1_RESET
:
4116 return snd_hdsp_reset(substream
);
4117 case SNDRV_PCM_IOCTL1_CHANNEL_INFO
:
4118 return snd_hdsp_channel_info(substream
, arg
);
4123 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
4126 static int snd_hdsp_trigger(struct snd_pcm_substream
*substream
, int cmd
)
4128 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4129 struct snd_pcm_substream
*other
;
4132 if (hdsp_check_for_iobox (hdsp
))
4135 if (hdsp_check_for_firmware(hdsp
, 0)) /* no auto-loading in trigger */
4138 spin_lock(&hdsp
->lock
);
4139 running
= hdsp
->running
;
4141 case SNDRV_PCM_TRIGGER_START
:
4142 running
|= 1 << substream
->stream
;
4144 case SNDRV_PCM_TRIGGER_STOP
:
4145 running
&= ~(1 << substream
->stream
);
4149 spin_unlock(&hdsp
->lock
);
4152 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
4153 other
= hdsp
->capture_substream
;
4155 other
= hdsp
->playback_substream
;
4158 struct snd_pcm_substream
*s
;
4159 snd_pcm_group_for_each_entry(s
, substream
) {
4161 snd_pcm_trigger_done(s
, substream
);
4162 if (cmd
== SNDRV_PCM_TRIGGER_START
)
4163 running
|= 1 << s
->stream
;
4165 running
&= ~(1 << s
->stream
);
4169 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
4170 if (!(running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
)) &&
4171 substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
4172 hdsp_silence_playback(hdsp
);
4175 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
4176 hdsp_silence_playback(hdsp
);
4179 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
4180 hdsp_silence_playback(hdsp
);
4183 snd_pcm_trigger_done(substream
, substream
);
4184 if (!hdsp
->running
&& running
)
4185 hdsp_start_audio(hdsp
);
4186 else if (hdsp
->running
&& !running
)
4187 hdsp_stop_audio(hdsp
);
4188 hdsp
->running
= running
;
4189 spin_unlock(&hdsp
->lock
);
4194 static int snd_hdsp_prepare(struct snd_pcm_substream
*substream
)
4196 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4199 if (hdsp_check_for_iobox (hdsp
))
4202 if (hdsp_check_for_firmware(hdsp
, 1))
4205 spin_lock_irq(&hdsp
->lock
);
4207 hdsp_reset_hw_pointer(hdsp
);
4208 spin_unlock_irq(&hdsp
->lock
);
4212 static const struct snd_pcm_hardware snd_hdsp_playback_subinfo
=
4214 .info
= (SNDRV_PCM_INFO_MMAP
|
4215 SNDRV_PCM_INFO_MMAP_VALID
|
4216 SNDRV_PCM_INFO_NONINTERLEAVED
|
4217 SNDRV_PCM_INFO_SYNC_START
|
4218 SNDRV_PCM_INFO_DOUBLE
),
4219 #ifdef SNDRV_BIG_ENDIAN
4220 .formats
= SNDRV_PCM_FMTBIT_S32_BE
,
4222 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
4224 .rates
= (SNDRV_PCM_RATE_32000
|
4225 SNDRV_PCM_RATE_44100
|
4226 SNDRV_PCM_RATE_48000
|
4227 SNDRV_PCM_RATE_64000
|
4228 SNDRV_PCM_RATE_88200
|
4229 SNDRV_PCM_RATE_96000
),
4233 .channels_max
= HDSP_MAX_CHANNELS
,
4234 .buffer_bytes_max
= HDSP_CHANNEL_BUFFER_BYTES
* HDSP_MAX_CHANNELS
,
4235 .period_bytes_min
= (64 * 4) * 10,
4236 .period_bytes_max
= (8192 * 4) * HDSP_MAX_CHANNELS
,
4242 static const struct snd_pcm_hardware snd_hdsp_capture_subinfo
=
4244 .info
= (SNDRV_PCM_INFO_MMAP
|
4245 SNDRV_PCM_INFO_MMAP_VALID
|
4246 SNDRV_PCM_INFO_NONINTERLEAVED
|
4247 SNDRV_PCM_INFO_SYNC_START
),
4248 #ifdef SNDRV_BIG_ENDIAN
4249 .formats
= SNDRV_PCM_FMTBIT_S32_BE
,
4251 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
4253 .rates
= (SNDRV_PCM_RATE_32000
|
4254 SNDRV_PCM_RATE_44100
|
4255 SNDRV_PCM_RATE_48000
|
4256 SNDRV_PCM_RATE_64000
|
4257 SNDRV_PCM_RATE_88200
|
4258 SNDRV_PCM_RATE_96000
),
4262 .channels_max
= HDSP_MAX_CHANNELS
,
4263 .buffer_bytes_max
= HDSP_CHANNEL_BUFFER_BYTES
* HDSP_MAX_CHANNELS
,
4264 .period_bytes_min
= (64 * 4) * 10,
4265 .period_bytes_max
= (8192 * 4) * HDSP_MAX_CHANNELS
,
4271 static const unsigned int hdsp_period_sizes
[] = { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
4273 static const struct snd_pcm_hw_constraint_list hdsp_hw_constraints_period_sizes
= {
4274 .count
= ARRAY_SIZE(hdsp_period_sizes
),
4275 .list
= hdsp_period_sizes
,
4279 static const unsigned int hdsp_9632_sample_rates
[] = { 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000 };
4281 static const struct snd_pcm_hw_constraint_list hdsp_hw_constraints_9632_sample_rates
= {
4282 .count
= ARRAY_SIZE(hdsp_9632_sample_rates
),
4283 .list
= hdsp_9632_sample_rates
,
4287 static int snd_hdsp_hw_rule_in_channels(struct snd_pcm_hw_params
*params
,
4288 struct snd_pcm_hw_rule
*rule
)
4290 struct hdsp
*hdsp
= rule
->private;
4291 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4292 if (hdsp
->io_type
== H9632
) {
4293 unsigned int list
[3];
4294 list
[0] = hdsp
->qs_in_channels
;
4295 list
[1] = hdsp
->ds_in_channels
;
4296 list
[2] = hdsp
->ss_in_channels
;
4297 return snd_interval_list(c
, 3, list
, 0);
4299 unsigned int list
[2];
4300 list
[0] = hdsp
->ds_in_channels
;
4301 list
[1] = hdsp
->ss_in_channels
;
4302 return snd_interval_list(c
, 2, list
, 0);
4306 static int snd_hdsp_hw_rule_out_channels(struct snd_pcm_hw_params
*params
,
4307 struct snd_pcm_hw_rule
*rule
)
4309 unsigned int list
[3];
4310 struct hdsp
*hdsp
= rule
->private;
4311 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4312 if (hdsp
->io_type
== H9632
) {
4313 list
[0] = hdsp
->qs_out_channels
;
4314 list
[1] = hdsp
->ds_out_channels
;
4315 list
[2] = hdsp
->ss_out_channels
;
4316 return snd_interval_list(c
, 3, list
, 0);
4318 list
[0] = hdsp
->ds_out_channels
;
4319 list
[1] = hdsp
->ss_out_channels
;
4321 return snd_interval_list(c
, 2, list
, 0);
4324 static int snd_hdsp_hw_rule_in_channels_rate(struct snd_pcm_hw_params
*params
,
4325 struct snd_pcm_hw_rule
*rule
)
4327 struct hdsp
*hdsp
= rule
->private;
4328 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4329 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4330 if (r
->min
> 96000 && hdsp
->io_type
== H9632
) {
4331 struct snd_interval t
= {
4332 .min
= hdsp
->qs_in_channels
,
4333 .max
= hdsp
->qs_in_channels
,
4336 return snd_interval_refine(c
, &t
);
4337 } else if (r
->min
> 48000 && r
->max
<= 96000) {
4338 struct snd_interval t
= {
4339 .min
= hdsp
->ds_in_channels
,
4340 .max
= hdsp
->ds_in_channels
,
4343 return snd_interval_refine(c
, &t
);
4344 } else if (r
->max
< 64000) {
4345 struct snd_interval t
= {
4346 .min
= hdsp
->ss_in_channels
,
4347 .max
= hdsp
->ss_in_channels
,
4350 return snd_interval_refine(c
, &t
);
4355 static int snd_hdsp_hw_rule_out_channels_rate(struct snd_pcm_hw_params
*params
,
4356 struct snd_pcm_hw_rule
*rule
)
4358 struct hdsp
*hdsp
= rule
->private;
4359 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4360 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4361 if (r
->min
> 96000 && hdsp
->io_type
== H9632
) {
4362 struct snd_interval t
= {
4363 .min
= hdsp
->qs_out_channels
,
4364 .max
= hdsp
->qs_out_channels
,
4367 return snd_interval_refine(c
, &t
);
4368 } else if (r
->min
> 48000 && r
->max
<= 96000) {
4369 struct snd_interval t
= {
4370 .min
= hdsp
->ds_out_channels
,
4371 .max
= hdsp
->ds_out_channels
,
4374 return snd_interval_refine(c
, &t
);
4375 } else if (r
->max
< 64000) {
4376 struct snd_interval t
= {
4377 .min
= hdsp
->ss_out_channels
,
4378 .max
= hdsp
->ss_out_channels
,
4381 return snd_interval_refine(c
, &t
);
4386 static int snd_hdsp_hw_rule_rate_out_channels(struct snd_pcm_hw_params
*params
,
4387 struct snd_pcm_hw_rule
*rule
)
4389 struct hdsp
*hdsp
= rule
->private;
4390 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4391 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4392 if (c
->min
>= hdsp
->ss_out_channels
) {
4393 struct snd_interval t
= {
4398 return snd_interval_refine(r
, &t
);
4399 } else if (c
->max
<= hdsp
->qs_out_channels
&& hdsp
->io_type
== H9632
) {
4400 struct snd_interval t
= {
4405 return snd_interval_refine(r
, &t
);
4406 } else if (c
->max
<= hdsp
->ds_out_channels
) {
4407 struct snd_interval t
= {
4412 return snd_interval_refine(r
, &t
);
4417 static int snd_hdsp_hw_rule_rate_in_channels(struct snd_pcm_hw_params
*params
,
4418 struct snd_pcm_hw_rule
*rule
)
4420 struct hdsp
*hdsp
= rule
->private;
4421 struct snd_interval
*c
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
4422 struct snd_interval
*r
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
4423 if (c
->min
>= hdsp
->ss_in_channels
) {
4424 struct snd_interval t
= {
4429 return snd_interval_refine(r
, &t
);
4430 } else if (c
->max
<= hdsp
->qs_in_channels
&& hdsp
->io_type
== H9632
) {
4431 struct snd_interval t
= {
4436 return snd_interval_refine(r
, &t
);
4437 } else if (c
->max
<= hdsp
->ds_in_channels
) {
4438 struct snd_interval t
= {
4443 return snd_interval_refine(r
, &t
);
4448 static int snd_hdsp_playback_open(struct snd_pcm_substream
*substream
)
4450 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4451 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
4453 if (hdsp_check_for_iobox (hdsp
))
4456 if (hdsp_check_for_firmware(hdsp
, 1))
4459 spin_lock_irq(&hdsp
->lock
);
4461 snd_pcm_set_sync(substream
);
4463 runtime
->hw
= snd_hdsp_playback_subinfo
;
4464 runtime
->dma_area
= hdsp
->playback_buffer
;
4465 runtime
->dma_bytes
= HDSP_DMA_AREA_BYTES
;
4467 hdsp
->playback_pid
= current
->pid
;
4468 hdsp
->playback_substream
= substream
;
4470 spin_unlock_irq(&hdsp
->lock
);
4472 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
4473 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, &hdsp_hw_constraints_period_sizes
);
4474 if (hdsp
->clock_source_locked
) {
4475 runtime
->hw
.rate_min
= runtime
->hw
.rate_max
= hdsp
->system_sample_rate
;
4476 } else if (hdsp
->io_type
== H9632
) {
4477 runtime
->hw
.rate_max
= 192000;
4478 runtime
->hw
.rates
= SNDRV_PCM_RATE_KNOT
;
4479 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hdsp_hw_constraints_9632_sample_rates
);
4481 if (hdsp
->io_type
== H9632
) {
4482 runtime
->hw
.channels_min
= hdsp
->qs_out_channels
;
4483 runtime
->hw
.channels_max
= hdsp
->ss_out_channels
;
4486 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4487 snd_hdsp_hw_rule_out_channels
, hdsp
,
4488 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4489 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4490 snd_hdsp_hw_rule_out_channels_rate
, hdsp
,
4491 SNDRV_PCM_HW_PARAM_RATE
, -1);
4492 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
4493 snd_hdsp_hw_rule_rate_out_channels
, hdsp
,
4494 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4496 if (RPM
!= hdsp
->io_type
) {
4497 hdsp
->creg_spdif_stream
= hdsp
->creg_spdif
;
4498 hdsp
->spdif_ctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
4499 snd_ctl_notify(hdsp
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4500 SNDRV_CTL_EVENT_MASK_INFO
, &hdsp
->spdif_ctl
->id
);
4505 static int snd_hdsp_playback_release(struct snd_pcm_substream
*substream
)
4507 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4509 spin_lock_irq(&hdsp
->lock
);
4511 hdsp
->playback_pid
= -1;
4512 hdsp
->playback_substream
= NULL
;
4514 spin_unlock_irq(&hdsp
->lock
);
4516 if (RPM
!= hdsp
->io_type
) {
4517 hdsp
->spdif_ctl
->vd
[0].access
|= SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
4518 snd_ctl_notify(hdsp
->card
, SNDRV_CTL_EVENT_MASK_VALUE
|
4519 SNDRV_CTL_EVENT_MASK_INFO
, &hdsp
->spdif_ctl
->id
);
4525 static int snd_hdsp_capture_open(struct snd_pcm_substream
*substream
)
4527 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4528 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
4530 if (hdsp_check_for_iobox (hdsp
))
4533 if (hdsp_check_for_firmware(hdsp
, 1))
4536 spin_lock_irq(&hdsp
->lock
);
4538 snd_pcm_set_sync(substream
);
4540 runtime
->hw
= snd_hdsp_capture_subinfo
;
4541 runtime
->dma_area
= hdsp
->capture_buffer
;
4542 runtime
->dma_bytes
= HDSP_DMA_AREA_BYTES
;
4544 hdsp
->capture_pid
= current
->pid
;
4545 hdsp
->capture_substream
= substream
;
4547 spin_unlock_irq(&hdsp
->lock
);
4549 snd_pcm_hw_constraint_msbits(runtime
, 0, 32, 24);
4550 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, &hdsp_hw_constraints_period_sizes
);
4551 if (hdsp
->io_type
== H9632
) {
4552 runtime
->hw
.channels_min
= hdsp
->qs_in_channels
;
4553 runtime
->hw
.channels_max
= hdsp
->ss_in_channels
;
4554 runtime
->hw
.rate_max
= 192000;
4555 runtime
->hw
.rates
= SNDRV_PCM_RATE_KNOT
;
4556 snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hdsp_hw_constraints_9632_sample_rates
);
4558 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4559 snd_hdsp_hw_rule_in_channels
, hdsp
,
4560 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4561 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
4562 snd_hdsp_hw_rule_in_channels_rate
, hdsp
,
4563 SNDRV_PCM_HW_PARAM_RATE
, -1);
4564 snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
4565 snd_hdsp_hw_rule_rate_in_channels
, hdsp
,
4566 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
4570 static int snd_hdsp_capture_release(struct snd_pcm_substream
*substream
)
4572 struct hdsp
*hdsp
= snd_pcm_substream_chip(substream
);
4574 spin_lock_irq(&hdsp
->lock
);
4576 hdsp
->capture_pid
= -1;
4577 hdsp
->capture_substream
= NULL
;
4579 spin_unlock_irq(&hdsp
->lock
);
4583 /* helper functions for copying meter values */
4584 static inline int copy_u32_le(void __user
*dest
, void __iomem
*src
)
4586 u32 val
= readl(src
);
4587 return copy_to_user(dest
, &val
, 4);
4590 static inline int copy_u64_le(void __user
*dest
, void __iomem
*src_low
, void __iomem
*src_high
)
4592 u32 rms_low
, rms_high
;
4594 rms_low
= readl(src_low
);
4595 rms_high
= readl(src_high
);
4596 rms
= ((u64
)rms_high
<< 32) | rms_low
;
4597 return copy_to_user(dest
, &rms
, 8);
4600 static inline int copy_u48_le(void __user
*dest
, void __iomem
*src_low
, void __iomem
*src_high
)
4602 u32 rms_low
, rms_high
;
4604 rms_low
= readl(src_low
) & 0xffffff00;
4605 rms_high
= readl(src_high
) & 0xffffff00;
4606 rms
= ((u64
)rms_high
<< 32) | rms_low
;
4607 return copy_to_user(dest
, &rms
, 8);
4610 static int hdsp_9652_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4612 int doublespeed
= 0;
4613 int i
, j
, channels
, ofs
;
4615 if (hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DoubleSpeedStatus
)
4617 channels
= doublespeed
? 14 : 26;
4618 for (i
= 0, j
= 0; i
< 26; ++i
) {
4619 if (doublespeed
&& (i
& 4))
4621 ofs
= HDSP_9652_peakBase
- j
* 4;
4622 if (copy_u32_le(&peak_rms
->input_peaks
[i
], hdsp
->iobase
+ ofs
))
4624 ofs
-= channels
* 4;
4625 if (copy_u32_le(&peak_rms
->playback_peaks
[i
], hdsp
->iobase
+ ofs
))
4627 ofs
-= channels
* 4;
4628 if (copy_u32_le(&peak_rms
->output_peaks
[i
], hdsp
->iobase
+ ofs
))
4630 ofs
= HDSP_9652_rmsBase
+ j
* 8;
4631 if (copy_u48_le(&peak_rms
->input_rms
[i
], hdsp
->iobase
+ ofs
,
4632 hdsp
->iobase
+ ofs
+ 4))
4634 ofs
+= channels
* 8;
4635 if (copy_u48_le(&peak_rms
->playback_rms
[i
], hdsp
->iobase
+ ofs
,
4636 hdsp
->iobase
+ ofs
+ 4))
4638 ofs
+= channels
* 8;
4639 if (copy_u48_le(&peak_rms
->output_rms
[i
], hdsp
->iobase
+ ofs
,
4640 hdsp
->iobase
+ ofs
+ 4))
4647 static int hdsp_9632_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4650 struct hdsp_9632_meters __iomem
*m
;
4651 int doublespeed
= 0;
4653 if (hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DoubleSpeedStatus
)
4655 m
= (struct hdsp_9632_meters __iomem
*)(hdsp
->iobase
+HDSP_9632_metersBase
);
4656 for (i
= 0, j
= 0; i
< 16; ++i
, ++j
) {
4657 if (copy_u32_le(&peak_rms
->input_peaks
[i
], &m
->input_peak
[j
]))
4659 if (copy_u32_le(&peak_rms
->playback_peaks
[i
], &m
->playback_peak
[j
]))
4661 if (copy_u32_le(&peak_rms
->output_peaks
[i
], &m
->output_peak
[j
]))
4663 if (copy_u64_le(&peak_rms
->input_rms
[i
], &m
->input_rms_low
[j
],
4664 &m
->input_rms_high
[j
]))
4666 if (copy_u64_le(&peak_rms
->playback_rms
[i
], &m
->playback_rms_low
[j
],
4667 &m
->playback_rms_high
[j
]))
4669 if (copy_u64_le(&peak_rms
->output_rms
[i
], &m
->output_rms_low
[j
],
4670 &m
->output_rms_high
[j
]))
4672 if (doublespeed
&& i
== 3) i
+= 4;
4677 static int hdsp_get_peak(struct hdsp
*hdsp
, struct hdsp_peak_rms __user
*peak_rms
)
4681 for (i
= 0; i
< 26; i
++) {
4682 if (copy_u32_le(&peak_rms
->playback_peaks
[i
],
4683 hdsp
->iobase
+ HDSP_playbackPeakLevel
+ i
* 4))
4685 if (copy_u32_le(&peak_rms
->input_peaks
[i
],
4686 hdsp
->iobase
+ HDSP_inputPeakLevel
+ i
* 4))
4689 for (i
= 0; i
< 28; i
++) {
4690 if (copy_u32_le(&peak_rms
->output_peaks
[i
],
4691 hdsp
->iobase
+ HDSP_outputPeakLevel
+ i
* 4))
4694 for (i
= 0; i
< 26; ++i
) {
4695 if (copy_u64_le(&peak_rms
->playback_rms
[i
],
4696 hdsp
->iobase
+ HDSP_playbackRmsLevel
+ i
* 8 + 4,
4697 hdsp
->iobase
+ HDSP_playbackRmsLevel
+ i
* 8))
4699 if (copy_u64_le(&peak_rms
->input_rms
[i
],
4700 hdsp
->iobase
+ HDSP_inputRmsLevel
+ i
* 8 + 4,
4701 hdsp
->iobase
+ HDSP_inputRmsLevel
+ i
* 8))
4707 static int snd_hdsp_hwdep_ioctl(struct snd_hwdep
*hw
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
4709 struct hdsp
*hdsp
= hw
->private_data
;
4710 void __user
*argp
= (void __user
*)arg
;
4714 case SNDRV_HDSP_IOCTL_GET_PEAK_RMS
: {
4715 struct hdsp_peak_rms __user
*peak_rms
= (struct hdsp_peak_rms __user
*)arg
;
4717 err
= hdsp_check_for_iobox(hdsp
);
4721 err
= hdsp_check_for_firmware(hdsp
, 1);
4725 if (!(hdsp
->state
& HDSP_FirmwareLoaded
)) {
4726 dev_err(hdsp
->card
->dev
,
4727 "firmware needs to be uploaded to the card.\n");
4731 switch (hdsp
->io_type
) {
4733 return hdsp_9652_get_peak(hdsp
, peak_rms
);
4735 return hdsp_9632_get_peak(hdsp
, peak_rms
);
4737 return hdsp_get_peak(hdsp
, peak_rms
);
4740 case SNDRV_HDSP_IOCTL_GET_CONFIG_INFO
: {
4741 struct hdsp_config_info info
;
4742 unsigned long flags
;
4745 err
= hdsp_check_for_iobox(hdsp
);
4749 err
= hdsp_check_for_firmware(hdsp
, 1);
4753 memset(&info
, 0, sizeof(info
));
4754 spin_lock_irqsave(&hdsp
->lock
, flags
);
4755 info
.pref_sync_ref
= (unsigned char)hdsp_pref_sync_ref(hdsp
);
4756 info
.wordclock_sync_check
= (unsigned char)hdsp_wc_sync_check(hdsp
);
4757 if (hdsp
->io_type
!= H9632
)
4758 info
.adatsync_sync_check
= (unsigned char)hdsp_adatsync_sync_check(hdsp
);
4759 info
.spdif_sync_check
= (unsigned char)hdsp_spdif_sync_check(hdsp
);
4760 for (i
= 0; i
< ((hdsp
->io_type
!= Multiface
&& hdsp
->io_type
!= RPM
&& hdsp
->io_type
!= H9632
) ? 3 : 1); ++i
)
4761 info
.adat_sync_check
[i
] = (unsigned char)hdsp_adat_sync_check(hdsp
, i
);
4762 info
.spdif_in
= (unsigned char)hdsp_spdif_in(hdsp
);
4763 info
.spdif_out
= (unsigned char)hdsp_toggle_setting(hdsp
,
4764 HDSP_SPDIFOpticalOut
);
4765 info
.spdif_professional
= (unsigned char)
4766 hdsp_toggle_setting(hdsp
, HDSP_SPDIFProfessional
);
4767 info
.spdif_emphasis
= (unsigned char)
4768 hdsp_toggle_setting(hdsp
, HDSP_SPDIFEmphasis
);
4769 info
.spdif_nonaudio
= (unsigned char)
4770 hdsp_toggle_setting(hdsp
, HDSP_SPDIFNonAudio
);
4771 info
.spdif_sample_rate
= hdsp_spdif_sample_rate(hdsp
);
4772 info
.system_sample_rate
= hdsp
->system_sample_rate
;
4773 info
.autosync_sample_rate
= hdsp_external_sample_rate(hdsp
);
4774 info
.system_clock_mode
= (unsigned char)hdsp_system_clock_mode(hdsp
);
4775 info
.clock_source
= (unsigned char)hdsp_clock_source(hdsp
);
4776 info
.autosync_ref
= (unsigned char)hdsp_autosync_ref(hdsp
);
4777 info
.line_out
= (unsigned char)
4778 hdsp_toggle_setting(hdsp
, HDSP_LineOut
);
4779 if (hdsp
->io_type
== H9632
) {
4780 info
.da_gain
= (unsigned char)hdsp_da_gain(hdsp
);
4781 info
.ad_gain
= (unsigned char)hdsp_ad_gain(hdsp
);
4782 info
.phone_gain
= (unsigned char)hdsp_phone_gain(hdsp
);
4783 info
.xlr_breakout_cable
=
4784 (unsigned char)hdsp_toggle_setting(hdsp
,
4785 HDSP_XLRBreakoutCable
);
4787 } else if (hdsp
->io_type
== RPM
) {
4788 info
.da_gain
= (unsigned char) hdsp_rpm_input12(hdsp
);
4789 info
.ad_gain
= (unsigned char) hdsp_rpm_input34(hdsp
);
4791 if (hdsp
->io_type
== H9632
|| hdsp
->io_type
== H9652
)
4792 info
.analog_extension_board
=
4793 (unsigned char)hdsp_toggle_setting(hdsp
,
4794 HDSP_AnalogExtensionBoard
);
4795 spin_unlock_irqrestore(&hdsp
->lock
, flags
);
4796 if (copy_to_user(argp
, &info
, sizeof(info
)))
4800 case SNDRV_HDSP_IOCTL_GET_9632_AEB
: {
4801 struct hdsp_9632_aeb h9632_aeb
;
4803 if (hdsp
->io_type
!= H9632
) return -EINVAL
;
4804 h9632_aeb
.aebi
= hdsp
->ss_in_channels
- H9632_SS_CHANNELS
;
4805 h9632_aeb
.aebo
= hdsp
->ss_out_channels
- H9632_SS_CHANNELS
;
4806 if (copy_to_user(argp
, &h9632_aeb
, sizeof(h9632_aeb
)))
4810 case SNDRV_HDSP_IOCTL_GET_VERSION
: {
4811 struct hdsp_version hdsp_version
;
4814 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return -EINVAL
;
4815 if (hdsp
->io_type
== Undefined
) {
4816 if ((err
= hdsp_get_iobox_version(hdsp
)) < 0)
4819 memset(&hdsp_version
, 0, sizeof(hdsp_version
));
4820 hdsp_version
.io_type
= hdsp
->io_type
;
4821 hdsp_version
.firmware_rev
= hdsp
->firmware_rev
;
4822 if ((err
= copy_to_user(argp
, &hdsp_version
, sizeof(hdsp_version
))))
4826 case SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE
: {
4827 struct hdsp_firmware __user
*firmware
;
4828 u32 __user
*firmware_data
;
4831 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
) return -EINVAL
;
4832 /* SNDRV_HDSP_IOCTL_GET_VERSION must have been called */
4833 if (hdsp
->io_type
== Undefined
) return -EINVAL
;
4835 if (hdsp
->state
& (HDSP_FirmwareCached
| HDSP_FirmwareLoaded
))
4838 dev_info(hdsp
->card
->dev
,
4839 "initializing firmware upload\n");
4840 firmware
= (struct hdsp_firmware __user
*)argp
;
4842 if (get_user(firmware_data
, &firmware
->firmware_data
))
4845 if (hdsp_check_for_iobox (hdsp
))
4848 if (!hdsp
->fw_uploaded
) {
4849 hdsp
->fw_uploaded
= vmalloc(HDSP_FIRMWARE_SIZE
);
4850 if (!hdsp
->fw_uploaded
)
4854 if (copy_from_user(hdsp
->fw_uploaded
, firmware_data
,
4855 HDSP_FIRMWARE_SIZE
)) {
4856 vfree(hdsp
->fw_uploaded
);
4857 hdsp
->fw_uploaded
= NULL
;
4861 hdsp
->state
|= HDSP_FirmwareCached
;
4863 if ((err
= snd_hdsp_load_firmware_from_cache(hdsp
)) < 0)
4866 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
4867 if ((err
= snd_hdsp_enable_io(hdsp
)) < 0)
4870 snd_hdsp_initialize_channels(hdsp
);
4871 snd_hdsp_initialize_midi_flush(hdsp
);
4873 if ((err
= snd_hdsp_create_alsa_devices(hdsp
->card
, hdsp
)) < 0) {
4874 dev_err(hdsp
->card
->dev
,
4875 "error creating alsa devices\n");
4881 case SNDRV_HDSP_IOCTL_GET_MIXER
: {
4882 struct hdsp_mixer __user
*mixer
= (struct hdsp_mixer __user
*)argp
;
4883 if (copy_to_user(mixer
->matrix
, hdsp
->mixer_matrix
, sizeof(unsigned short)*HDSP_MATRIX_MIXER_SIZE
))
4893 static const struct snd_pcm_ops snd_hdsp_playback_ops
= {
4894 .open
= snd_hdsp_playback_open
,
4895 .close
= snd_hdsp_playback_release
,
4896 .ioctl
= snd_hdsp_ioctl
,
4897 .hw_params
= snd_hdsp_hw_params
,
4898 .prepare
= snd_hdsp_prepare
,
4899 .trigger
= snd_hdsp_trigger
,
4900 .pointer
= snd_hdsp_hw_pointer
,
4901 .copy_user
= snd_hdsp_playback_copy
,
4902 .copy_kernel
= snd_hdsp_playback_copy_kernel
,
4903 .fill_silence
= snd_hdsp_hw_silence
,
4906 static const struct snd_pcm_ops snd_hdsp_capture_ops
= {
4907 .open
= snd_hdsp_capture_open
,
4908 .close
= snd_hdsp_capture_release
,
4909 .ioctl
= snd_hdsp_ioctl
,
4910 .hw_params
= snd_hdsp_hw_params
,
4911 .prepare
= snd_hdsp_prepare
,
4912 .trigger
= snd_hdsp_trigger
,
4913 .pointer
= snd_hdsp_hw_pointer
,
4914 .copy_user
= snd_hdsp_capture_copy
,
4915 .copy_kernel
= snd_hdsp_capture_copy_kernel
,
4918 static int snd_hdsp_create_hwdep(struct snd_card
*card
, struct hdsp
*hdsp
)
4920 struct snd_hwdep
*hw
;
4923 if ((err
= snd_hwdep_new(card
, "HDSP hwdep", 0, &hw
)) < 0)
4927 hw
->private_data
= hdsp
;
4928 strcpy(hw
->name
, "HDSP hwdep interface");
4930 hw
->ops
.ioctl
= snd_hdsp_hwdep_ioctl
;
4931 hw
->ops
.ioctl_compat
= snd_hdsp_hwdep_ioctl
;
4936 static int snd_hdsp_create_pcm(struct snd_card
*card
, struct hdsp
*hdsp
)
4938 struct snd_pcm
*pcm
;
4941 if ((err
= snd_pcm_new(card
, hdsp
->card_name
, 0, 1, 1, &pcm
)) < 0)
4945 pcm
->private_data
= hdsp
;
4946 strcpy(pcm
->name
, hdsp
->card_name
);
4948 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_hdsp_playback_ops
);
4949 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_hdsp_capture_ops
);
4951 pcm
->info_flags
= SNDRV_PCM_INFO_JOINT_DUPLEX
;
4956 static void snd_hdsp_9652_enable_mixer (struct hdsp
*hdsp
)
4958 hdsp
->control2_register
|= HDSP_9652_ENABLE_MIXER
;
4959 hdsp_write (hdsp
, HDSP_control2Reg
, hdsp
->control2_register
);
4962 static int snd_hdsp_enable_io (struct hdsp
*hdsp
)
4966 if (hdsp_fifo_wait (hdsp
, 0, 100)) {
4967 dev_err(hdsp
->card
->dev
,
4968 "enable_io fifo_wait failed\n");
4972 for (i
= 0; i
< hdsp
->max_channels
; ++i
) {
4973 hdsp_write (hdsp
, HDSP_inputEnable
+ (4 * i
), 1);
4974 hdsp_write (hdsp
, HDSP_outputEnable
+ (4 * i
), 1);
4980 static void snd_hdsp_initialize_channels(struct hdsp
*hdsp
)
4982 int status
, aebi_channels
, aebo_channels
;
4984 switch (hdsp
->io_type
) {
4986 hdsp
->card_name
= "RME Hammerfall DSP + Digiface";
4987 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= DIGIFACE_SS_CHANNELS
;
4988 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= DIGIFACE_DS_CHANNELS
;
4992 hdsp
->card_name
= "RME Hammerfall HDSP 9652";
4993 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= H9652_SS_CHANNELS
;
4994 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= H9652_DS_CHANNELS
;
4998 status
= hdsp_read(hdsp
, HDSP_statusRegister
);
4999 /* HDSP_AEBx bits are low when AEB are connected */
5000 aebi_channels
= (status
& HDSP_AEBI
) ? 0 : 4;
5001 aebo_channels
= (status
& HDSP_AEBO
) ? 0 : 4;
5002 hdsp
->card_name
= "RME Hammerfall HDSP 9632";
5003 hdsp
->ss_in_channels
= H9632_SS_CHANNELS
+aebi_channels
;
5004 hdsp
->ds_in_channels
= H9632_DS_CHANNELS
+aebi_channels
;
5005 hdsp
->qs_in_channels
= H9632_QS_CHANNELS
+aebi_channels
;
5006 hdsp
->ss_out_channels
= H9632_SS_CHANNELS
+aebo_channels
;
5007 hdsp
->ds_out_channels
= H9632_DS_CHANNELS
+aebo_channels
;
5008 hdsp
->qs_out_channels
= H9632_QS_CHANNELS
+aebo_channels
;
5012 hdsp
->card_name
= "RME Hammerfall DSP + Multiface";
5013 hdsp
->ss_in_channels
= hdsp
->ss_out_channels
= MULTIFACE_SS_CHANNELS
;
5014 hdsp
->ds_in_channels
= hdsp
->ds_out_channels
= MULTIFACE_DS_CHANNELS
;
5018 hdsp
->card_name
= "RME Hammerfall DSP + RPM";
5019 hdsp
->ss_in_channels
= RPM_CHANNELS
-1;
5020 hdsp
->ss_out_channels
= RPM_CHANNELS
;
5021 hdsp
->ds_in_channels
= RPM_CHANNELS
-1;
5022 hdsp
->ds_out_channels
= RPM_CHANNELS
;
5026 /* should never get here */
5031 static void snd_hdsp_initialize_midi_flush (struct hdsp
*hdsp
)
5033 snd_hdsp_flush_midi_input (hdsp
, 0);
5034 snd_hdsp_flush_midi_input (hdsp
, 1);
5037 static int snd_hdsp_create_alsa_devices(struct snd_card
*card
, struct hdsp
*hdsp
)
5041 if ((err
= snd_hdsp_create_pcm(card
, hdsp
)) < 0) {
5043 "Error creating pcm interface\n");
5048 if ((err
= snd_hdsp_create_midi(card
, hdsp
, 0)) < 0) {
5050 "Error creating first midi interface\n");
5054 if (hdsp
->io_type
== Digiface
|| hdsp
->io_type
== H9652
) {
5055 if ((err
= snd_hdsp_create_midi(card
, hdsp
, 1)) < 0) {
5057 "Error creating second midi interface\n");
5062 if ((err
= snd_hdsp_create_controls(card
, hdsp
)) < 0) {
5064 "Error creating ctl interface\n");
5068 snd_hdsp_proc_init(hdsp
);
5070 hdsp
->system_sample_rate
= -1;
5071 hdsp
->playback_pid
= -1;
5072 hdsp
->capture_pid
= -1;
5073 hdsp
->capture_substream
= NULL
;
5074 hdsp
->playback_substream
= NULL
;
5076 if ((err
= snd_hdsp_set_defaults(hdsp
)) < 0) {
5078 "Error setting default values\n");
5082 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
5083 strcpy(card
->shortname
, "Hammerfall DSP");
5084 sprintf(card
->longname
, "%s at 0x%lx, irq %d", hdsp
->card_name
,
5085 hdsp
->port
, hdsp
->irq
);
5087 if ((err
= snd_card_register(card
)) < 0) {
5089 "error registering card\n");
5092 hdsp
->state
|= HDSP_InitializationComplete
;
5098 /* load firmware via hotplug fw loader */
5099 static int hdsp_request_fw_loader(struct hdsp
*hdsp
)
5102 const struct firmware
*fw
;
5105 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
5107 if (hdsp
->io_type
== Undefined
) {
5108 if ((err
= hdsp_get_iobox_version(hdsp
)) < 0)
5110 if (hdsp
->io_type
== H9652
|| hdsp
->io_type
== H9632
)
5114 /* caution: max length of firmware filename is 30! */
5115 switch (hdsp
->io_type
) {
5117 fwfile
= "rpm_firmware.bin";
5120 if (hdsp
->firmware_rev
== 0xa)
5121 fwfile
= "multiface_firmware.bin";
5123 fwfile
= "multiface_firmware_rev11.bin";
5126 if (hdsp
->firmware_rev
== 0xa)
5127 fwfile
= "digiface_firmware.bin";
5129 fwfile
= "digiface_firmware_rev11.bin";
5132 dev_err(hdsp
->card
->dev
,
5133 "invalid io_type %d\n", hdsp
->io_type
);
5137 if (request_firmware(&fw
, fwfile
, &hdsp
->pci
->dev
)) {
5138 dev_err(hdsp
->card
->dev
,
5139 "cannot load firmware %s\n", fwfile
);
5142 if (fw
->size
< HDSP_FIRMWARE_SIZE
) {
5143 dev_err(hdsp
->card
->dev
,
5144 "too short firmware size %d (expected %d)\n",
5145 (int)fw
->size
, HDSP_FIRMWARE_SIZE
);
5146 release_firmware(fw
);
5150 hdsp
->firmware
= fw
;
5152 hdsp
->state
|= HDSP_FirmwareCached
;
5154 if ((err
= snd_hdsp_load_firmware_from_cache(hdsp
)) < 0)
5157 if (!(hdsp
->state
& HDSP_InitializationComplete
)) {
5158 if ((err
= snd_hdsp_enable_io(hdsp
)) < 0)
5161 if ((err
= snd_hdsp_create_hwdep(hdsp
->card
, hdsp
)) < 0) {
5162 dev_err(hdsp
->card
->dev
,
5163 "error creating hwdep device\n");
5166 snd_hdsp_initialize_channels(hdsp
);
5167 snd_hdsp_initialize_midi_flush(hdsp
);
5168 if ((err
= snd_hdsp_create_alsa_devices(hdsp
->card
, hdsp
)) < 0) {
5169 dev_err(hdsp
->card
->dev
,
5170 "error creating alsa devices\n");
5177 static int snd_hdsp_create(struct snd_card
*card
,
5180 struct pci_dev
*pci
= hdsp
->pci
;
5187 hdsp
->midi
[0].rmidi
= NULL
;
5188 hdsp
->midi
[1].rmidi
= NULL
;
5189 hdsp
->midi
[0].input
= NULL
;
5190 hdsp
->midi
[1].input
= NULL
;
5191 hdsp
->midi
[0].output
= NULL
;
5192 hdsp
->midi
[1].output
= NULL
;
5193 hdsp
->midi
[0].pending
= 0;
5194 hdsp
->midi
[1].pending
= 0;
5195 spin_lock_init(&hdsp
->midi
[0].lock
);
5196 spin_lock_init(&hdsp
->midi
[1].lock
);
5197 hdsp
->iobase
= NULL
;
5198 hdsp
->control_register
= 0;
5199 hdsp
->control2_register
= 0;
5200 hdsp
->io_type
= Undefined
;
5201 hdsp
->max_channels
= 26;
5205 spin_lock_init(&hdsp
->lock
);
5207 tasklet_init(&hdsp
->midi_tasklet
, hdsp_midi_tasklet
, (unsigned long)hdsp
);
5209 pci_read_config_word(hdsp
->pci
, PCI_CLASS_REVISION
, &hdsp
->firmware_rev
);
5210 hdsp
->firmware_rev
&= 0xff;
5212 /* From Martin Bjoernsen :
5213 "It is important that the card's latency timer register in
5214 the PCI configuration space is set to a value much larger
5215 than 0 by the computer's BIOS or the driver.
5216 The windows driver always sets this 8 bit register [...]
5217 to its maximum 255 to avoid problems with some computers."
5219 pci_write_config_byte(hdsp
->pci
, PCI_LATENCY_TIMER
, 0xFF);
5221 strcpy(card
->driver
, "H-DSP");
5222 strcpy(card
->mixername
, "Xilinx FPGA");
5224 if (hdsp
->firmware_rev
< 0xa)
5226 else if (hdsp
->firmware_rev
< 0x64)
5227 hdsp
->card_name
= "RME Hammerfall DSP";
5228 else if (hdsp
->firmware_rev
< 0x96) {
5229 hdsp
->card_name
= "RME HDSP 9652";
5232 hdsp
->card_name
= "RME HDSP 9632";
5233 hdsp
->max_channels
= 16;
5237 if ((err
= pci_enable_device(pci
)) < 0)
5240 pci_set_master(hdsp
->pci
);
5242 if ((err
= pci_request_regions(pci
, "hdsp")) < 0)
5244 hdsp
->port
= pci_resource_start(pci
, 0);
5245 if ((hdsp
->iobase
= ioremap_nocache(hdsp
->port
, HDSP_IO_EXTENT
)) == NULL
) {
5246 dev_err(hdsp
->card
->dev
, "unable to remap region 0x%lx-0x%lx\n",
5247 hdsp
->port
, hdsp
->port
+ HDSP_IO_EXTENT
- 1);
5251 if (request_irq(pci
->irq
, snd_hdsp_interrupt
, IRQF_SHARED
,
5252 KBUILD_MODNAME
, hdsp
)) {
5253 dev_err(hdsp
->card
->dev
, "unable to use IRQ %d\n", pci
->irq
);
5257 hdsp
->irq
= pci
->irq
;
5258 hdsp
->precise_ptr
= 0;
5259 hdsp
->use_midi_tasklet
= 1;
5260 hdsp
->dds_value
= 0;
5262 if ((err
= snd_hdsp_initialize_memory(hdsp
)) < 0)
5265 if (!is_9652
&& !is_9632
) {
5266 /* we wait a maximum of 10 seconds to let freshly
5267 * inserted cardbus cards do their hardware init */
5268 err
= hdsp_wait_for_iobox(hdsp
, 1000, 10);
5273 if ((hdsp_read (hdsp
, HDSP_statusRegister
) & HDSP_DllError
) != 0) {
5274 if ((err
= hdsp_request_fw_loader(hdsp
)) < 0)
5275 /* we don't fail as this can happen
5276 if userspace is not ready for
5279 dev_err(hdsp
->card
->dev
,
5280 "couldn't get firmware from userspace. try using hdsploader\n");
5282 /* init is complete, we return */
5284 /* we defer initialization */
5285 dev_info(hdsp
->card
->dev
,
5286 "card initialization pending : waiting for firmware\n");
5287 if ((err
= snd_hdsp_create_hwdep(card
, hdsp
)) < 0)
5291 dev_info(hdsp
->card
->dev
,
5292 "Firmware already present, initializing card.\n");
5293 if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version2
)
5294 hdsp
->io_type
= RPM
;
5295 else if (hdsp_read(hdsp
, HDSP_status2Register
) & HDSP_version1
)
5296 hdsp
->io_type
= Multiface
;
5298 hdsp
->io_type
= Digiface
;
5302 if ((err
= snd_hdsp_enable_io(hdsp
)) != 0)
5306 hdsp
->io_type
= H9652
;
5309 hdsp
->io_type
= H9632
;
5311 if ((err
= snd_hdsp_create_hwdep(card
, hdsp
)) < 0)
5314 snd_hdsp_initialize_channels(hdsp
);
5315 snd_hdsp_initialize_midi_flush(hdsp
);
5317 hdsp
->state
|= HDSP_FirmwareLoaded
;
5319 if ((err
= snd_hdsp_create_alsa_devices(card
, hdsp
)) < 0)
5325 static int snd_hdsp_free(struct hdsp
*hdsp
)
5328 /* stop the audio, and cancel all interrupts */
5329 tasklet_kill(&hdsp
->midi_tasklet
);
5330 hdsp
->control_register
&= ~(HDSP_Start
|HDSP_AudioInterruptEnable
|HDSP_Midi0InterruptEnable
|HDSP_Midi1InterruptEnable
);
5331 hdsp_write (hdsp
, HDSP_controlRegister
, hdsp
->control_register
);
5335 free_irq(hdsp
->irq
, (void *)hdsp
);
5337 snd_hdsp_free_buffers(hdsp
);
5339 release_firmware(hdsp
->firmware
);
5340 vfree(hdsp
->fw_uploaded
);
5341 iounmap(hdsp
->iobase
);
5344 pci_release_regions(hdsp
->pci
);
5346 pci_disable_device(hdsp
->pci
);
5350 static void snd_hdsp_card_free(struct snd_card
*card
)
5352 struct hdsp
*hdsp
= card
->private_data
;
5355 snd_hdsp_free(hdsp
);
5358 static int snd_hdsp_probe(struct pci_dev
*pci
,
5359 const struct pci_device_id
*pci_id
)
5363 struct snd_card
*card
;
5366 if (dev
>= SNDRV_CARDS
)
5373 err
= snd_card_new(&pci
->dev
, index
[dev
], id
[dev
], THIS_MODULE
,
5374 sizeof(struct hdsp
), &card
);
5378 hdsp
= card
->private_data
;
5379 card
->private_free
= snd_hdsp_card_free
;
5382 err
= snd_hdsp_create(card
, hdsp
);
5386 strcpy(card
->shortname
, "Hammerfall DSP");
5387 sprintf(card
->longname
, "%s at 0x%lx, irq %d", hdsp
->card_name
,
5388 hdsp
->port
, hdsp
->irq
);
5389 err
= snd_card_register(card
);
5392 snd_card_free(card
);
5395 pci_set_drvdata(pci
, card
);
5400 static void snd_hdsp_remove(struct pci_dev
*pci
)
5402 snd_card_free(pci_get_drvdata(pci
));
5405 static struct pci_driver hdsp_driver
= {
5406 .name
= KBUILD_MODNAME
,
5407 .id_table
= snd_hdsp_ids
,
5408 .probe
= snd_hdsp_probe
,
5409 .remove
= snd_hdsp_remove
,
5412 module_pci_driver(hdsp_driver
);