blob: 1bff4b1b39cd04651f16efa1e151ca87c2804d9c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for RME Hammerfall DSP audio interface(s)
3 *
4 * Copyright (c) 2002 Paul Davis
5 * Marcus Andersson
6 * Thomas Charbonnel
7 *
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.
12 *
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.
17 *
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
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/delay.h>
26#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/pci.h>
28#include <linux/firmware.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040029#include <linux/module.h>
Takashi Iwai3f7440a2009-06-05 17:40:04 +020030#include <linux/math64.h>
Takashi Iwai82329322012-11-22 21:19:18 +010031#include <linux/vmalloc.h>
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010032#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <sound/core.h>
35#include <sound/control.h>
36#include <sound/pcm.h>
37#include <sound/info.h>
38#include <sound/asoundef.h>
39#include <sound/rawmidi.h>
40#include <sound/hwdep.h>
41#include <sound/initval.h>
42#include <sound/hdsp.h>
43
44#include <asm/byteorder.h>
45#include <asm/current.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
48static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103049static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51module_param_array(index, int, NULL, 0444);
52MODULE_PARM_DESC(index, "Index value for RME Hammerfall DSP interface.");
53module_param_array(id, charp, NULL, 0444);
54MODULE_PARM_DESC(id, "ID string for RME Hammerfall DSP interface.");
55module_param_array(enable, bool, NULL, 0444);
56MODULE_PARM_DESC(enable, "Enable/disable specific Hammerfall DSP soundcards.");
57MODULE_AUTHOR("Paul Davis <paul@linuxaudiosystems.com>, Marcus Andersson, Thomas Charbonnel <thomas@undata.org>");
58MODULE_DESCRIPTION("RME Hammerfall DSP");
59MODULE_LICENSE("GPL");
60MODULE_SUPPORTED_DEVICE("{{RME Hammerfall-DSP},"
61 "{RME HDSP-9652},"
62 "{RME HDSP-9632}}");
Florian Faber28b26e12010-12-01 12:14:47 +010063MODULE_FIRMWARE("rpm_firmware.bin");
Clemens Ladisch7e0af292007-05-03 17:59:54 +020064MODULE_FIRMWARE("multiface_firmware.bin");
65MODULE_FIRMWARE("multiface_firmware_rev11.bin");
66MODULE_FIRMWARE("digiface_firmware.bin");
67MODULE_FIRMWARE("digiface_firmware_rev11.bin");
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define HDSP_MAX_CHANNELS 26
70#define HDSP_MAX_DS_CHANNELS 14
71#define HDSP_MAX_QS_CHANNELS 8
72#define DIGIFACE_SS_CHANNELS 26
73#define DIGIFACE_DS_CHANNELS 14
74#define MULTIFACE_SS_CHANNELS 18
75#define MULTIFACE_DS_CHANNELS 14
76#define H9652_SS_CHANNELS 26
77#define H9652_DS_CHANNELS 14
78/* This does not include possible Analog Extension Boards
79 AEBs are detected at card initialization
80*/
81#define H9632_SS_CHANNELS 12
82#define H9632_DS_CHANNELS 8
83#define H9632_QS_CHANNELS 4
Florian Faber28b26e12010-12-01 12:14:47 +010084#define RPM_CHANNELS 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/* Write registers. These are defined as byte-offsets from the iobase value.
87 */
88#define HDSP_resetPointer 0
Remy Brunod7923b22006-10-17 12:41:56 +020089#define HDSP_freqReg 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define HDSP_outputBufferAddress 32
91#define HDSP_inputBufferAddress 36
92#define HDSP_controlRegister 64
93#define HDSP_interruptConfirmation 96
94#define HDSP_outputEnable 128
95#define HDSP_control2Reg 256
96#define HDSP_midiDataOut0 352
97#define HDSP_midiDataOut1 356
98#define HDSP_fifoData 368
99#define HDSP_inputEnable 384
100
101/* Read registers. These are defined as byte-offsets from the iobase value
102 */
103
104#define HDSP_statusRegister 0
105#define HDSP_timecode 128
106#define HDSP_status2Register 192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define HDSP_midiDataIn0 360
108#define HDSP_midiDataIn1 364
109#define HDSP_midiStatusOut0 384
110#define HDSP_midiStatusOut1 388
111#define HDSP_midiStatusIn0 392
112#define HDSP_midiStatusIn1 396
113#define HDSP_fifoStatus 400
114
115/* the meters are regular i/o-mapped registers, but offset
116 considerably from the rest. the peak registers are reset
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100117 when read; the least-significant 4 bits are full-scale counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 the actual peak value is in the most-significant 24 bits.
119*/
120
121#define HDSP_playbackPeakLevel 4096 /* 26 * 32 bit values */
122#define HDSP_inputPeakLevel 4224 /* 26 * 32 bit values */
123#define HDSP_outputPeakLevel 4352 /* (26+2) * 32 bit values */
124#define HDSP_playbackRmsLevel 4612 /* 26 * 64 bit values */
125#define HDSP_inputRmsLevel 4868 /* 26 * 64 bit values */
126
127
128/* This is for H9652 cards
129 Peak values are read downward from the base
130 Rms values are read upward
131 There are rms values for the outputs too
132 26*3 values are read in ss mode
133 14*3 in ds mode, with no gap between values
134*/
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100135#define HDSP_9652_peakBase 7164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define HDSP_9652_rmsBase 4096
137
138/* c.f. the hdsp_9632_meters_t struct */
139#define HDSP_9632_metersBase 4096
140
141#define HDSP_IO_EXTENT 7168
142
143/* control2 register bits */
144
145#define HDSP_TMS 0x01
146#define HDSP_TCK 0x02
147#define HDSP_TDI 0x04
148#define HDSP_JTAG 0x08
149#define HDSP_PWDN 0x10
150#define HDSP_PROGRAM 0x020
151#define HDSP_CONFIG_MODE_0 0x040
152#define HDSP_CONFIG_MODE_1 0x080
Adrian Knotha3466862011-10-27 21:57:53 +0200153#define HDSP_VERSION_BIT (0x100 | HDSP_S_LOAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define HDSP_BIGENDIAN_MODE 0x200
155#define HDSP_RD_MULTIPLE 0x400
156#define HDSP_9652_ENABLE_MIXER 0x800
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100157#define HDSP_S200 0x800
158#define HDSP_S300 (0x100 | HDSP_S200) /* dummy, purpose of 0x100 unknown */
159#define HDSP_CYCLIC_MODE 0x1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define HDSP_TDO 0x10000000
161
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100162#define HDSP_S_PROGRAM (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_0)
163#define HDSP_S_LOAD (HDSP_CYCLIC_MODE|HDSP_PROGRAM|HDSP_CONFIG_MODE_1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/* Control Register bits */
166
167#define HDSP_Start (1<<0) /* start engine */
168#define HDSP_Latency0 (1<<1) /* buffer size = 2^n where n is defined by Latency{2,1,0} */
169#define HDSP_Latency1 (1<<2) /* [ see above ] */
170#define HDSP_Latency2 (1<<3) /* [ see above ] */
171#define HDSP_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
172#define HDSP_AudioInterruptEnable (1<<5) /* what do you think ? */
173#define HDSP_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz/176.4kHz 1=48kHz/96kHz/192kHz */
174#define HDSP_Frequency1 (1<<7) /* 0=32kHz/64kHz/128kHz */
175#define HDSP_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
176#define HDSP_SPDIFProfessional (1<<9) /* 0=consumer, 1=professional */
177#define HDSP_SPDIFEmphasis (1<<10) /* 0=none, 1=on */
178#define HDSP_SPDIFNonAudio (1<<11) /* 0=off, 1=on */
179#define HDSP_SPDIFOpticalOut (1<<12) /* 1=use 1st ADAT connector for SPDIF, 0=do not */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100180#define HDSP_SyncRef2 (1<<13)
181#define HDSP_SPDIFInputSelect0 (1<<14)
182#define HDSP_SPDIFInputSelect1 (1<<15)
183#define HDSP_SyncRef0 (1<<16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#define HDSP_SyncRef1 (1<<17)
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100185#define HDSP_AnalogExtensionBoard (1<<18) /* For H9632 cards */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define HDSP_XLRBreakoutCable (1<<20) /* For H9632 cards */
187#define HDSP_Midi0InterruptEnable (1<<22)
188#define HDSP_Midi1InterruptEnable (1<<23)
189#define HDSP_LineOut (1<<24)
190#define HDSP_ADGain0 (1<<25) /* From here : H9632 specific */
191#define HDSP_ADGain1 (1<<26)
192#define HDSP_DAGain0 (1<<27)
193#define HDSP_DAGain1 (1<<28)
194#define HDSP_PhoneGain0 (1<<29)
195#define HDSP_PhoneGain1 (1<<30)
196#define HDSP_QuadSpeed (1<<31)
197
Florian Faber28b26e12010-12-01 12:14:47 +0100198/* RPM uses some of the registers for special purposes */
199#define HDSP_RPM_Inp12 0x04A00
200#define HDSP_RPM_Inp12_Phon_6dB 0x00800 /* Dolby */
201#define HDSP_RPM_Inp12_Phon_0dB 0x00000 /* .. */
202#define HDSP_RPM_Inp12_Phon_n6dB 0x04000 /* inp_0 */
203#define HDSP_RPM_Inp12_Line_0dB 0x04200 /* Dolby+PRO */
204#define HDSP_RPM_Inp12_Line_n6dB 0x00200 /* PRO */
205
206#define HDSP_RPM_Inp34 0x32000
207#define HDSP_RPM_Inp34_Phon_6dB 0x20000 /* SyncRef1 */
208#define HDSP_RPM_Inp34_Phon_0dB 0x00000 /* .. */
209#define HDSP_RPM_Inp34_Phon_n6dB 0x02000 /* SyncRef2 */
210#define HDSP_RPM_Inp34_Line_0dB 0x30000 /* SyncRef1+SyncRef0 */
211#define HDSP_RPM_Inp34_Line_n6dB 0x10000 /* SyncRef0 */
212
213#define HDSP_RPM_Bypass 0x01000
214
215#define HDSP_RPM_Disconnect 0x00001
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define HDSP_ADGainMask (HDSP_ADGain0|HDSP_ADGain1)
218#define HDSP_ADGainMinus10dBV HDSP_ADGainMask
219#define HDSP_ADGainPlus4dBu (HDSP_ADGain0)
220#define HDSP_ADGainLowGain 0
221
222#define HDSP_DAGainMask (HDSP_DAGain0|HDSP_DAGain1)
223#define HDSP_DAGainHighGain HDSP_DAGainMask
224#define HDSP_DAGainPlus4dBu (HDSP_DAGain0)
225#define HDSP_DAGainMinus10dBV 0
226
227#define HDSP_PhoneGainMask (HDSP_PhoneGain0|HDSP_PhoneGain1)
228#define HDSP_PhoneGain0dB HDSP_PhoneGainMask
229#define HDSP_PhoneGainMinus6dB (HDSP_PhoneGain0)
230#define HDSP_PhoneGainMinus12dB 0
231
232#define HDSP_LatencyMask (HDSP_Latency0|HDSP_Latency1|HDSP_Latency2)
233#define HDSP_FrequencyMask (HDSP_Frequency0|HDSP_Frequency1|HDSP_DoubleSpeed|HDSP_QuadSpeed)
234
235#define HDSP_SPDIFInputMask (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
236#define HDSP_SPDIFInputADAT1 0
237#define HDSP_SPDIFInputCoaxial (HDSP_SPDIFInputSelect0)
238#define HDSP_SPDIFInputCdrom (HDSP_SPDIFInputSelect1)
239#define HDSP_SPDIFInputAES (HDSP_SPDIFInputSelect0|HDSP_SPDIFInputSelect1)
240
241#define HDSP_SyncRefMask (HDSP_SyncRef0|HDSP_SyncRef1|HDSP_SyncRef2)
242#define HDSP_SyncRef_ADAT1 0
243#define HDSP_SyncRef_ADAT2 (HDSP_SyncRef0)
244#define HDSP_SyncRef_ADAT3 (HDSP_SyncRef1)
245#define HDSP_SyncRef_SPDIF (HDSP_SyncRef0|HDSP_SyncRef1)
246#define HDSP_SyncRef_WORD (HDSP_SyncRef2)
247#define HDSP_SyncRef_ADAT_SYNC (HDSP_SyncRef0|HDSP_SyncRef2)
248
249/* Sample Clock Sources */
250
251#define HDSP_CLOCK_SOURCE_AUTOSYNC 0
252#define HDSP_CLOCK_SOURCE_INTERNAL_32KHZ 1
253#define HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
254#define HDSP_CLOCK_SOURCE_INTERNAL_48KHZ 3
255#define HDSP_CLOCK_SOURCE_INTERNAL_64KHZ 4
256#define HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
257#define HDSP_CLOCK_SOURCE_INTERNAL_96KHZ 6
258#define HDSP_CLOCK_SOURCE_INTERNAL_128KHZ 7
259#define HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
260#define HDSP_CLOCK_SOURCE_INTERNAL_192KHZ 9
261
262/* Preferred sync reference choices - used by "pref_sync_ref" control switch */
263
264#define HDSP_SYNC_FROM_WORD 0
265#define HDSP_SYNC_FROM_SPDIF 1
266#define HDSP_SYNC_FROM_ADAT1 2
267#define HDSP_SYNC_FROM_ADAT_SYNC 3
268#define HDSP_SYNC_FROM_ADAT2 4
269#define HDSP_SYNC_FROM_ADAT3 5
270
271/* SyncCheck status */
272
273#define HDSP_SYNC_CHECK_NO_LOCK 0
274#define HDSP_SYNC_CHECK_LOCK 1
275#define HDSP_SYNC_CHECK_SYNC 2
276
277/* AutoSync references - used by "autosync_ref" control switch */
278
279#define HDSP_AUTOSYNC_FROM_WORD 0
280#define HDSP_AUTOSYNC_FROM_ADAT_SYNC 1
281#define HDSP_AUTOSYNC_FROM_SPDIF 2
282#define HDSP_AUTOSYNC_FROM_NONE 3
283#define HDSP_AUTOSYNC_FROM_ADAT1 4
284#define HDSP_AUTOSYNC_FROM_ADAT2 5
285#define HDSP_AUTOSYNC_FROM_ADAT3 6
286
287/* Possible sources of S/PDIF input */
288
289#define HDSP_SPDIFIN_OPTICAL 0 /* optical (ADAT1) */
290#define HDSP_SPDIFIN_COAXIAL 1 /* coaxial (RCA) */
291#define HDSP_SPDIFIN_INTERNAL 2 /* internal (CDROM) */
292#define HDSP_SPDIFIN_AES 3 /* xlr for H9632 (AES)*/
293
294#define HDSP_Frequency32KHz HDSP_Frequency0
295#define HDSP_Frequency44_1KHz HDSP_Frequency1
296#define HDSP_Frequency48KHz (HDSP_Frequency1|HDSP_Frequency0)
297#define HDSP_Frequency64KHz (HDSP_DoubleSpeed|HDSP_Frequency0)
298#define HDSP_Frequency88_2KHz (HDSP_DoubleSpeed|HDSP_Frequency1)
299#define HDSP_Frequency96KHz (HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
300/* For H9632 cards */
301#define HDSP_Frequency128KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency0)
302#define HDSP_Frequency176_4KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1)
303#define HDSP_Frequency192KHz (HDSP_QuadSpeed|HDSP_DoubleSpeed|HDSP_Frequency1|HDSP_Frequency0)
Julian Cablee4b60882007-03-19 11:44:40 +0100304/* RME says n = 104857600000000, but in the windows MADI driver, I see:
305 return 104857600000000 / rate; // 100 MHz
306 return 110100480000000 / rate; // 105 MHz
307*/
308#define DDS_NUMERATOR 104857600000000ULL; /* = 2^20 * 10^8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310#define hdsp_encode_latency(x) (((x)<<1) & HDSP_LatencyMask)
311#define hdsp_decode_latency(x) (((x) & HDSP_LatencyMask)>>1)
312
313#define hdsp_encode_spdif_in(x) (((x)&0x3)<<14)
314#define hdsp_decode_spdif_in(x) (((x)>>14)&0x3)
315
316/* Status Register bits */
317
318#define HDSP_audioIRQPending (1<<0)
319#define HDSP_Lock2 (1<<1) /* this is for Digiface and H9652 */
320#define HDSP_spdifFrequency3 HDSP_Lock2 /* this is for H9632 only */
321#define HDSP_Lock1 (1<<2)
322#define HDSP_Lock0 (1<<3)
323#define HDSP_SPDIFSync (1<<4)
324#define HDSP_TimecodeLock (1<<5)
325#define HDSP_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
326#define HDSP_Sync2 (1<<16)
327#define HDSP_Sync1 (1<<17)
328#define HDSP_Sync0 (1<<18)
329#define HDSP_DoubleSpeedStatus (1<<19)
330#define HDSP_ConfigError (1<<20)
331#define HDSP_DllError (1<<21)
332#define HDSP_spdifFrequency0 (1<<22)
333#define HDSP_spdifFrequency1 (1<<23)
334#define HDSP_spdifFrequency2 (1<<24)
335#define HDSP_SPDIFErrorFlag (1<<25)
336#define HDSP_BufferID (1<<26)
337#define HDSP_TimecodeSync (1<<27)
338#define HDSP_AEBO (1<<28) /* H9632 specific Analog Extension Boards */
339#define HDSP_AEBI (1<<29) /* 0 = present, 1 = absent */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100340#define HDSP_midi0IRQPending (1<<30)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#define HDSP_midi1IRQPending (1<<31)
342
343#define HDSP_spdifFrequencyMask (HDSP_spdifFrequency0|HDSP_spdifFrequency1|HDSP_spdifFrequency2)
Remy Bruno47ba97f2008-02-22 17:57:02 +0100344#define HDSP_spdifFrequencyMask_9632 (HDSP_spdifFrequency0|\
345 HDSP_spdifFrequency1|\
346 HDSP_spdifFrequency2|\
347 HDSP_spdifFrequency3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349#define HDSP_spdifFrequency32KHz (HDSP_spdifFrequency0)
350#define HDSP_spdifFrequency44_1KHz (HDSP_spdifFrequency1)
351#define HDSP_spdifFrequency48KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency1)
352
353#define HDSP_spdifFrequency64KHz (HDSP_spdifFrequency2)
354#define HDSP_spdifFrequency88_2KHz (HDSP_spdifFrequency0|HDSP_spdifFrequency2)
355#define HDSP_spdifFrequency96KHz (HDSP_spdifFrequency2|HDSP_spdifFrequency1)
356
357/* This is for H9632 cards */
Remy Bruno47ba97f2008-02-22 17:57:02 +0100358#define HDSP_spdifFrequency128KHz (HDSP_spdifFrequency0|\
359 HDSP_spdifFrequency1|\
360 HDSP_spdifFrequency2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#define HDSP_spdifFrequency176_4KHz HDSP_spdifFrequency3
362#define HDSP_spdifFrequency192KHz (HDSP_spdifFrequency3|HDSP_spdifFrequency0)
363
364/* Status2 Register bits */
365
366#define HDSP_version0 (1<<0)
367#define HDSP_version1 (1<<1)
368#define HDSP_version2 (1<<2)
369#define HDSP_wc_lock (1<<3)
370#define HDSP_wc_sync (1<<4)
371#define HDSP_inp_freq0 (1<<5)
372#define HDSP_inp_freq1 (1<<6)
373#define HDSP_inp_freq2 (1<<7)
374#define HDSP_SelSyncRef0 (1<<8)
375#define HDSP_SelSyncRef1 (1<<9)
376#define HDSP_SelSyncRef2 (1<<10)
377
378#define HDSP_wc_valid (HDSP_wc_lock|HDSP_wc_sync)
379
380#define HDSP_systemFrequencyMask (HDSP_inp_freq0|HDSP_inp_freq1|HDSP_inp_freq2)
381#define HDSP_systemFrequency32 (HDSP_inp_freq0)
382#define HDSP_systemFrequency44_1 (HDSP_inp_freq1)
383#define HDSP_systemFrequency48 (HDSP_inp_freq0|HDSP_inp_freq1)
384#define HDSP_systemFrequency64 (HDSP_inp_freq2)
385#define HDSP_systemFrequency88_2 (HDSP_inp_freq0|HDSP_inp_freq2)
386#define HDSP_systemFrequency96 (HDSP_inp_freq1|HDSP_inp_freq2)
387/* FIXME : more values for 9632 cards ? */
388
389#define HDSP_SelSyncRefMask (HDSP_SelSyncRef0|HDSP_SelSyncRef1|HDSP_SelSyncRef2)
390#define HDSP_SelSyncRef_ADAT1 0
391#define HDSP_SelSyncRef_ADAT2 (HDSP_SelSyncRef0)
392#define HDSP_SelSyncRef_ADAT3 (HDSP_SelSyncRef1)
393#define HDSP_SelSyncRef_SPDIF (HDSP_SelSyncRef0|HDSP_SelSyncRef1)
394#define HDSP_SelSyncRef_WORD (HDSP_SelSyncRef2)
395#define HDSP_SelSyncRef_ADAT_SYNC (HDSP_SelSyncRef0|HDSP_SelSyncRef2)
396
397/* Card state flags */
398
399#define HDSP_InitializationComplete (1<<0)
400#define HDSP_FirmwareLoaded (1<<1)
401#define HDSP_FirmwareCached (1<<2)
402
403/* FIFO wait times, defined in terms of 1/10ths of msecs */
404
405#define HDSP_LONG_WAIT 5000
406#define HDSP_SHORT_WAIT 30
407
408#define UNITY_GAIN 32768
409#define MINUS_INFINITY_GAIN 0
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/* the size of a substream (1 mono data stream) */
412
413#define HDSP_CHANNEL_BUFFER_SAMPLES (16*1024)
414#define HDSP_CHANNEL_BUFFER_BYTES (4*HDSP_CHANNEL_BUFFER_SAMPLES)
415
416/* the size of the area we need to allocate for DMA transfers. the
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100417 size is the same regardless of the number of channels - the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 Multiface still uses the same memory area.
419
420 Note that we allocate 1 more channel than is apparently needed
421 because the h/w seems to write 1 byte beyond the end of the last
422 page. Sigh.
423*/
424
425#define HDSP_DMA_AREA_BYTES ((HDSP_MAX_CHANNELS+1) * HDSP_CHANNEL_BUFFER_BYTES)
426#define HDSP_DMA_AREA_KILOBYTES (HDSP_DMA_AREA_BYTES/1024)
427
Takashi Iwai90caaef2012-11-22 16:55:11 +0100428#define HDSP_FIRMWARE_SIZE (24413 * 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Takashi Iwai55e957d2005-11-17 14:52:13 +0100430struct hdsp_9632_meters {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 u32 input_peak[16];
432 u32 playback_peak[16];
433 u32 output_peak[16];
434 u32 xxx_peak[16];
435 u32 padding[64];
436 u32 input_rms_low[16];
437 u32 playback_rms_low[16];
438 u32 output_rms_low[16];
439 u32 xxx_rms_low[16];
440 u32 input_rms_high[16];
441 u32 playback_rms_high[16];
442 u32 output_rms_high[16];
443 u32 xxx_rms_high[16];
444};
445
Takashi Iwai55e957d2005-11-17 14:52:13 +0100446struct hdsp_midi {
447 struct hdsp *hdsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int id;
Takashi Iwai55e957d2005-11-17 14:52:13 +0100449 struct snd_rawmidi *rmidi;
450 struct snd_rawmidi_substream *input;
451 struct snd_rawmidi_substream *output;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 char istimer; /* timer in use */
453 struct timer_list timer;
454 spinlock_t lock;
455 int pending;
456};
457
Takashi Iwai55e957d2005-11-17 14:52:13 +0100458struct hdsp {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 spinlock_t lock;
Takashi Iwai55e957d2005-11-17 14:52:13 +0100460 struct snd_pcm_substream *capture_substream;
461 struct snd_pcm_substream *playback_substream;
462 struct hdsp_midi midi[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct tasklet_struct midi_tasklet;
464 int use_midi_tasklet;
465 int precise_ptr;
466 u32 control_register; /* cached value */
467 u32 control2_register; /* cached value */
468 u32 creg_spdif;
469 u32 creg_spdif_stream;
Takashi Iwaie3ea4d82005-07-04 18:12:39 +0200470 int clock_source_locked;
Florian Faber28b26e12010-12-01 12:14:47 +0100471 char *card_name; /* digiface/multiface/rpm */
Takashi Iwai55e957d2005-11-17 14:52:13 +0100472 enum HDSP_IO_Type io_type; /* ditto, but for code use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 unsigned short firmware_rev;
474 unsigned short state; /* stores state bits */
Takashi Iwai90caaef2012-11-22 16:55:11 +0100475 const struct firmware *firmware;
476 u32 *fw_uploaded;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 size_t period_bytes; /* guess what this is */
478 unsigned char max_channels;
479 unsigned char qs_in_channels; /* quad speed mode for H9632 */
480 unsigned char ds_in_channels;
481 unsigned char ss_in_channels; /* different for multiface/digiface */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100482 unsigned char qs_out_channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 unsigned char ds_out_channels;
484 unsigned char ss_out_channels;
485
486 struct snd_dma_buffer capture_dma_buf;
487 struct snd_dma_buffer playback_dma_buf;
488 unsigned char *capture_buffer; /* suitably aligned address */
489 unsigned char *playback_buffer; /* suitably aligned address */
490
491 pid_t capture_pid;
492 pid_t playback_pid;
493 int running;
494 int system_sample_rate;
495 char *channel_map;
496 int dev;
497 int irq;
498 unsigned long port;
499 void __iomem *iobase;
Takashi Iwai55e957d2005-11-17 14:52:13 +0100500 struct snd_card *card;
501 struct snd_pcm *pcm;
502 struct snd_hwdep *hwdep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct pci_dev *pci;
Takashi Iwai55e957d2005-11-17 14:52:13 +0100504 struct snd_kcontrol *spdif_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned short mixer_matrix[HDSP_MATRIX_MIXER_SIZE];
Remy Brunod7923b22006-10-17 12:41:56 +0200506 unsigned int dds_value; /* last value written to freq register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507};
508
509/* These tables map the ALSA channels 1..N to the channels that we
510 need to use in order to find the relevant channel buffer. RME
511 refer to this kind of mapping as between "the ADAT channel and
512 the DMA channel." We index it using the logical audio channel,
513 and the value is the DMA channel (i.e. channel buffer number)
514 where the data for that channel can be read/written from/to.
515*/
516
517static char channel_map_df_ss[HDSP_MAX_CHANNELS] = {
518 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
519 18, 19, 20, 21, 22, 23, 24, 25
520};
521
522static char channel_map_mf_ss[HDSP_MAX_CHANNELS] = { /* Multiface */
523 /* Analog */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100524 0, 1, 2, 3, 4, 5, 6, 7,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* ADAT 2 */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100526 16, 17, 18, 19, 20, 21, 22, 23,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* SPDIF */
528 24, 25,
529 -1, -1, -1, -1, -1, -1, -1, -1
530};
531
532static char channel_map_ds[HDSP_MAX_CHANNELS] = {
533 /* ADAT channels are remapped */
534 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23,
535 /* channels 12 and 13 are S/PDIF */
536 24, 25,
537 /* others don't exist */
538 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
539};
540
541static char channel_map_H9632_ss[HDSP_MAX_CHANNELS] = {
542 /* ADAT channels */
543 0, 1, 2, 3, 4, 5, 6, 7,
544 /* SPDIF */
545 8, 9,
546 /* Analog */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100547 10, 11,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* AO4S-192 and AI4S-192 extension boards */
549 12, 13, 14, 15,
550 /* others don't exist */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100551 -1, -1, -1, -1, -1, -1, -1, -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 -1, -1
553};
554
555static char channel_map_H9632_ds[HDSP_MAX_CHANNELS] = {
556 /* ADAT */
557 1, 3, 5, 7,
558 /* SPDIF */
559 8, 9,
560 /* Analog */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100561 10, 11,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* AO4S-192 and AI4S-192 extension boards */
563 12, 13, 14, 15,
564 /* others don't exist */
565 -1, -1, -1, -1, -1, -1, -1, -1,
566 -1, -1, -1, -1, -1, -1
567};
568
569static char channel_map_H9632_qs[HDSP_MAX_CHANNELS] = {
570 /* ADAT is disabled in this mode */
571 /* SPDIF */
572 8, 9,
573 /* Analog */
574 10, 11,
575 /* AO4S-192 and AI4S-192 extension boards */
576 12, 13, 14, 15,
577 /* others don't exist */
578 -1, -1, -1, -1, -1, -1, -1, -1,
579 -1, -1, -1, -1, -1, -1, -1, -1,
580 -1, -1
581};
582
583static int snd_hammerfall_get_buffer(struct pci_dev *pci, struct snd_dma_buffer *dmab, size_t size)
584{
585 dmab->dev.type = SNDRV_DMA_TYPE_DEV;
586 dmab->dev.dev = snd_dma_pci_data(pci);
Takashi Iwaib6a96912005-05-30 18:27:03 +0200587 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
588 size, dmab) < 0)
589 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return 0;
591}
592
593static void snd_hammerfall_free_buffer(struct snd_dma_buffer *dmab, struct pci_dev *pci)
594{
Takashi Iwai47d98c02014-01-08 16:12:25 +0100595 if (dmab->area)
596 snd_dma_free_pages(dmab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599
Benoit Taine9baa3c32014-08-08 15:56:03 +0200600static const struct pci_device_id snd_hdsp_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 {
602 .vendor = PCI_VENDOR_ID_XILINX,
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100603 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .subvendor = PCI_ANY_ID,
605 .subdevice = PCI_ANY_ID,
606 }, /* RME Hammerfall-DSP */
607 { 0, },
608};
609
610MODULE_DEVICE_TABLE(pci, snd_hdsp_ids);
611
612/* prototypes */
Takashi Iwai55e957d2005-11-17 14:52:13 +0100613static int snd_hdsp_create_alsa_devices(struct snd_card *card, struct hdsp *hdsp);
614static int snd_hdsp_create_pcm(struct snd_card *card, struct hdsp *hdsp);
615static int snd_hdsp_enable_io (struct hdsp *hdsp);
616static void snd_hdsp_initialize_midi_flush (struct hdsp *hdsp);
617static void snd_hdsp_initialize_channels (struct hdsp *hdsp);
618static int hdsp_fifo_wait(struct hdsp *hdsp, int count, int timeout);
619static int hdsp_autosync_ref(struct hdsp *hdsp);
620static int snd_hdsp_set_defaults(struct hdsp *hdsp);
621static void snd_hdsp_9652_enable_mixer (struct hdsp *hdsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Takashi Iwai55e957d2005-11-17 14:52:13 +0100623static int hdsp_playback_to_output_key (struct hdsp *hdsp, int in, int out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Remy Brunoa3a68c82007-08-31 12:33:54 +0200625 switch (hdsp->io_type) {
626 case Multiface:
627 case Digiface:
Florian Faber28b26e12010-12-01 12:14:47 +0100628 case RPM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 default:
Andreas Degert192b8e32008-01-16 15:59:48 +0100630 if (hdsp->firmware_rev == 0xa)
631 return (64 * out) + (32 + (in));
632 else
633 return (52 * out) + (26 + (in));
Remy Brunoa3a68c82007-08-31 12:33:54 +0200634 case H9632:
635 return (32 * out) + (16 + (in));
636 case H9652:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return (52 * out) + (26 + (in));
638 }
639}
640
Takashi Iwai55e957d2005-11-17 14:52:13 +0100641static int hdsp_input_to_output_key (struct hdsp *hdsp, int in, int out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Remy Brunoa3a68c82007-08-31 12:33:54 +0200643 switch (hdsp->io_type) {
644 case Multiface:
645 case Digiface:
Florian Faber28b26e12010-12-01 12:14:47 +0100646 case RPM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 default:
Andreas Degert192b8e32008-01-16 15:59:48 +0100648 if (hdsp->firmware_rev == 0xa)
649 return (64 * out) + in;
650 else
651 return (52 * out) + in;
Remy Brunoa3a68c82007-08-31 12:33:54 +0200652 case H9632:
653 return (32 * out) + in;
654 case H9652:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return (52 * out) + in;
656 }
657}
658
Takashi Iwai55e957d2005-11-17 14:52:13 +0100659static void hdsp_write(struct hdsp *hdsp, int reg, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 writel(val, hdsp->iobase + reg);
662}
663
Takashi Iwai55e957d2005-11-17 14:52:13 +0100664static unsigned int hdsp_read(struct hdsp *hdsp, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 return readl (hdsp->iobase + reg);
667}
668
Takashi Iwai55e957d2005-11-17 14:52:13 +0100669static int hdsp_check_for_iobox (struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100671 int i;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return 0;
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100674 for (i = 0; i < 500; i++) {
675 if (0 == (hdsp_read(hdsp, HDSP_statusRegister) &
676 HDSP_ConfigError)) {
677 if (i) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100678 dev_dbg(hdsp->card->dev,
679 "IO box found after %d ms\n",
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100680 (20 * i));
681 }
682 return 0;
683 }
684 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100686 dev_err(hdsp->card->dev, "no IO box connected!\n");
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100687 hdsp->state &= ~HDSP_FirmwareLoaded;
688 return -EIO;
Tim Blechmanne588ed82009-02-20 19:30:35 +0100689}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Tim Blechmanne588ed82009-02-20 19:30:35 +0100691static int hdsp_wait_for_iobox(struct hdsp *hdsp, unsigned int loops,
692 unsigned int delay)
693{
694 unsigned int i;
695
696 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
697 return 0;
698
699 for (i = 0; i != loops; ++i) {
700 if (hdsp_read(hdsp, HDSP_statusRegister) & HDSP_ConfigError)
701 msleep(delay);
702 else {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100703 dev_dbg(hdsp->card->dev, "iobox found after %ums!\n",
Tim Blechmanne588ed82009-02-20 19:30:35 +0100704 i * delay);
705 return 0;
706 }
707 }
708
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100709 dev_info(hdsp->card->dev, "no IO box connected!\n");
Tim Blechmanne588ed82009-02-20 19:30:35 +0100710 hdsp->state &= ~HDSP_FirmwareLoaded;
711 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Takashi Iwai55e957d2005-11-17 14:52:13 +0100714static int snd_hdsp_load_firmware_from_cache(struct hdsp *hdsp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 int i;
717 unsigned long flags;
Takashi Iwai90caaef2012-11-22 16:55:11 +0100718 const u32 *cache;
719
720 if (hdsp->fw_uploaded)
721 cache = hdsp->fw_uploaded;
722 else {
723 if (!hdsp->firmware)
724 return -ENODEV;
725 cache = (u32 *)hdsp->firmware->data;
726 if (!cache)
727 return -ENODEV;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100731
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100732 dev_info(hdsp->card->dev, "loading firmware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 hdsp_write (hdsp, HDSP_control2Reg, HDSP_S_PROGRAM);
735 hdsp_write (hdsp, HDSP_fifoData, 0);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (hdsp_fifo_wait (hdsp, 0, HDSP_LONG_WAIT)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100738 dev_info(hdsp->card->dev,
739 "timeout waiting for download preparation\n");
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100740 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return -EIO;
742 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 hdsp_write (hdsp, HDSP_control2Reg, HDSP_S_LOAD);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100745
Takashi Iwai90caaef2012-11-22 16:55:11 +0100746 for (i = 0; i < HDSP_FIRMWARE_SIZE / 4; ++i) {
747 hdsp_write(hdsp, HDSP_fifoData, cache[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (hdsp_fifo_wait (hdsp, 127, HDSP_LONG_WAIT)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100749 dev_info(hdsp->card->dev,
750 "timeout during firmware loading\n");
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100751 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return -EIO;
753 }
754 }
755
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100756 hdsp_fifo_wait(hdsp, 3, HDSP_LONG_WAIT);
757 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200);
758
Takashi Iwaib0b98112005-10-20 18:29:58 +0200759 ssleep(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760#ifdef SNDRV_BIG_ENDIAN
761 hdsp->control2_register = HDSP_BIGENDIAN_MODE;
762#else
763 hdsp->control2_register = 0;
764#endif
765 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100766 dev_info(hdsp->card->dev, "finished firmware loading\n");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 if (hdsp->state & HDSP_InitializationComplete) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100770 dev_info(hdsp->card->dev,
771 "firmware loaded from cache, restoring defaults\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 spin_lock_irqsave(&hdsp->lock, flags);
773 snd_hdsp_set_defaults(hdsp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100774 spin_unlock_irqrestore(&hdsp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 hdsp->state |= HDSP_FirmwareLoaded;
778
779 return 0;
780}
781
Takashi Iwai55e957d2005-11-17 14:52:13 +0100782static int hdsp_get_iobox_version (struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100785
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100786 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
787 hdsp_write(hdsp, HDSP_fifoData, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100789 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0) {
790 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
Florian Faber28b26e12010-12-01 12:14:47 +0100791 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100792 }
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100793
794 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S200 | HDSP_PROGRAM);
795 hdsp_write (hdsp, HDSP_fifoData, 0);
Markus Elfring99dcad32017-09-05 22:08:30 +0200796 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0)
797 goto set_multi;
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100798
799 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
800 hdsp_write(hdsp, HDSP_fifoData, 0);
801 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) == 0) {
802 hdsp->io_type = Digiface;
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100803 dev_info(hdsp->card->dev, "Digiface found\n");
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100804 return 0;
805 }
806
807 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
808 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
809 hdsp_write(hdsp, HDSP_fifoData, 0);
Markus Elfring99dcad32017-09-05 22:08:30 +0200810 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) == 0)
811 goto set_multi;
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100812
813 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S300);
814 hdsp_write(hdsp, HDSP_control2Reg, HDSP_S_LOAD);
815 hdsp_write(hdsp, HDSP_fifoData, 0);
Markus Elfring99dcad32017-09-05 22:08:30 +0200816 if (hdsp_fifo_wait(hdsp, 0, HDSP_SHORT_WAIT) < 0)
817 goto set_multi;
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100818
819 hdsp->io_type = RPM;
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100820 dev_info(hdsp->card->dev, "RPM found\n");
Adrian Knoth0c2bc7c2013-01-15 18:52:20 +0100821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 } else {
823 /* firmware was already loaded, get iobox type */
Florian Faber28b26e12010-12-01 12:14:47 +0100824 if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version2)
825 hdsp->io_type = RPM;
826 else if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 hdsp->io_type = Multiface;
Takashi Iwaib0b98112005-10-20 18:29:58 +0200828 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 hdsp->io_type = Digiface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831 return 0;
Markus Elfring99dcad32017-09-05 22:08:30 +0200832
833set_multi:
834 hdsp->io_type = Multiface;
835 dev_info(hdsp->card->dev, "Multiface found\n");
836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839
Takashi Iwai92eed662008-02-22 18:35:56 +0100840static int hdsp_request_fw_loader(struct hdsp *hdsp);
Takashi Iwai311e70a2006-09-06 12:13:37 +0200841
842static int hdsp_check_for_firmware (struct hdsp *hdsp, int load_on_demand)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Takashi Iwai311e70a2006-09-06 12:13:37 +0200844 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 hdsp->state &= ~HDSP_FirmwareLoaded;
Takashi Iwai311e70a2006-09-06 12:13:37 +0200848 if (! load_on_demand)
Takashi Iwaib0b98112005-10-20 18:29:58 +0200849 return -EIO;
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100850 dev_err(hdsp->card->dev, "firmware not present.\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +0200851 /* try to load firmware */
Takashi Iwai311e70a2006-09-06 12:13:37 +0200852 if (! (hdsp->state & HDSP_FirmwareCached)) {
Takashi Iwai311e70a2006-09-06 12:13:37 +0200853 if (! hdsp_request_fw_loader(hdsp))
854 return 0;
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100855 dev_err(hdsp->card->dev,
856 "No firmware loaded nor cached, please upload firmware.\n");
Takashi Iwai311e70a2006-09-06 12:13:37 +0200857 return -EIO;
Takashi Iwaib0b98112005-10-20 18:29:58 +0200858 }
Takashi Iwai311e70a2006-09-06 12:13:37 +0200859 if (snd_hdsp_load_firmware_from_cache(hdsp) != 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100860 dev_err(hdsp->card->dev,
861 "Firmware loading from cache failed, please upload manually.\n");
Takashi Iwai311e70a2006-09-06 12:13:37 +0200862 return -EIO;
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 return 0;
866}
867
868
Takashi Iwai55e957d2005-11-17 14:52:13 +0100869static int hdsp_fifo_wait(struct hdsp *hdsp, int count, int timeout)
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100870{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int i;
872
873 /* the fifoStatus registers reports on how many words
874 are available in the command FIFO.
875 */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 for (i = 0; i < timeout; i++) {
878
879 if ((int)(hdsp_read (hdsp, HDSP_fifoStatus) & 0xff) <= count)
880 return 0;
881
882 /* not very friendly, but we only do this during a firmware
883 load and changing the mixer, so we just put up with it.
884 */
885
886 udelay (100);
887 }
888
Takashi Iwaia54ba0f2014-02-26 12:05:11 +0100889 dev_warn(hdsp->card->dev,
890 "wait for FIFO status <= %d failed after %d iterations\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 count, timeout);
892 return -1;
893}
894
Takashi Iwai55e957d2005-11-17 14:52:13 +0100895static int hdsp_read_gain (struct hdsp *hdsp, unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Takashi Iwaib0b98112005-10-20 18:29:58 +0200897 if (addr >= HDSP_MATRIX_MIXER_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +0200899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return hdsp->mixer_matrix[addr];
901}
902
Takashi Iwai55e957d2005-11-17 14:52:13 +0100903static int hdsp_write_gain(struct hdsp *hdsp, unsigned int addr, unsigned short data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 unsigned int ad;
906
907 if (addr >= HDSP_MATRIX_MIXER_SIZE)
908 return -1;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) {
911
912 /* from martin bjornsen:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 "You can only write dwords to the
915 mixer memory which contain two
916 mixer values in the low and high
917 word. So if you want to change
918 value 0 you have to read value 1
919 from the cache and write both to
920 the first dword in the mixer
921 memory."
922 */
923
Takashi Iwaib0b98112005-10-20 18:29:58 +0200924 if (hdsp->io_type == H9632 && addr >= 512)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Takashi Iwaib0b98112005-10-20 18:29:58 +0200927 if (hdsp->io_type == H9652 && addr >= 1352)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 hdsp->mixer_matrix[addr] = data;
931
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* `addr' addresses a 16-bit wide address, but
934 the address space accessed via hdsp_write
935 uses byte offsets. put another way, addr
936 varies from 0 to 1351, but to access the
937 corresponding memory location, we need
938 to access 0 to 2703 ...
939 */
940 ad = addr/2;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100941
942 hdsp_write (hdsp, 4096 + (ad*4),
943 (hdsp->mixer_matrix[(addr&0x7fe)+1] << 16) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 hdsp->mixer_matrix[addr&0x7fe]);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return 0;
947
948 } else {
949
950 ad = (addr << 16) + data;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100951
Takashi Iwaib0b98112005-10-20 18:29:58 +0200952 if (hdsp_fifo_wait(hdsp, 127, HDSP_LONG_WAIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 hdsp_write (hdsp, HDSP_fifoData, ad);
956 hdsp->mixer_matrix[addr] = data;
957
958 }
959
960 return 0;
961}
962
Takashi Iwai55e957d2005-11-17 14:52:13 +0100963static int snd_hdsp_use_is_exclusive(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 unsigned long flags;
966 int ret = 1;
967
968 spin_lock_irqsave(&hdsp->lock, flags);
969 if ((hdsp->playback_pid != hdsp->capture_pid) &&
Takashi Iwaib0b98112005-10-20 18:29:58 +0200970 (hdsp->playback_pid >= 0) && (hdsp->capture_pid >= 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 spin_unlock_irqrestore(&hdsp->lock, flags);
973 return ret;
974}
975
Takashi Iwai55e957d2005-11-17 14:52:13 +0100976static int hdsp_spdif_sample_rate(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 unsigned int status = hdsp_read(hdsp, HDSP_statusRegister);
979 unsigned int rate_bits = (status & HDSP_spdifFrequencyMask);
980
Remy Bruno47ba97f2008-02-22 17:57:02 +0100981 /* For the 9632, the mask is different */
982 if (hdsp->io_type == H9632)
983 rate_bits = (status & HDSP_spdifFrequencyMask_9632);
984
Takashi Iwaib0b98112005-10-20 18:29:58 +0200985 if (status & HDSP_SPDIFErrorFlag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return 0;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 switch (rate_bits) {
989 case HDSP_spdifFrequency32KHz: return 32000;
990 case HDSP_spdifFrequency44_1KHz: return 44100;
991 case HDSP_spdifFrequency48KHz: return 48000;
992 case HDSP_spdifFrequency64KHz: return 64000;
993 case HDSP_spdifFrequency88_2KHz: return 88200;
994 case HDSP_spdifFrequency96KHz: return 96000;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100995 case HDSP_spdifFrequency128KHz:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (hdsp->io_type == H9632) return 128000;
997 break;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +0100998 case HDSP_spdifFrequency176_4KHz:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (hdsp->io_type == H9632) return 176400;
1000 break;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001001 case HDSP_spdifFrequency192KHz:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (hdsp->io_type == H9632) return 192000;
1003 break;
1004 default:
1005 break;
1006 }
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001007 dev_warn(hdsp->card->dev,
1008 "unknown spdif frequency status; bits = 0x%x, status = 0x%x\n",
1009 rate_bits, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return 0;
1011}
1012
Remy Bruno47ba97f2008-02-22 17:57:02 +01001013static int hdsp_external_sample_rate(struct hdsp *hdsp)
1014{
1015 unsigned int status2 = hdsp_read(hdsp, HDSP_status2Register);
1016 unsigned int rate_bits = status2 & HDSP_systemFrequencyMask;
1017
1018 /* For the 9632 card, there seems to be no bit for indicating external
1019 * sample rate greater than 96kHz. The card reports the corresponding
1020 * single speed. So the best means seems to get spdif rate when
1021 * autosync reference is spdif */
1022 if (hdsp->io_type == H9632 &&
1023 hdsp_autosync_ref(hdsp) == HDSP_AUTOSYNC_FROM_SPDIF)
1024 return hdsp_spdif_sample_rate(hdsp);
1025
1026 switch (rate_bits) {
1027 case HDSP_systemFrequency32: return 32000;
1028 case HDSP_systemFrequency44_1: return 44100;
1029 case HDSP_systemFrequency48: return 48000;
1030 case HDSP_systemFrequency64: return 64000;
1031 case HDSP_systemFrequency88_2: return 88200;
1032 case HDSP_systemFrequency96: return 96000;
1033 default:
1034 return 0;
1035 }
1036}
1037
Takashi Iwai55e957d2005-11-17 14:52:13 +01001038static void hdsp_compute_period_size(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040 hdsp->period_bytes = 1 << ((hdsp_decode_latency(hdsp->control_register) + 8));
1041}
1042
Takashi Iwai55e957d2005-11-17 14:52:13 +01001043static snd_pcm_uframes_t hdsp_hw_pointer(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 int position;
1046
1047 position = hdsp_read(hdsp, HDSP_statusRegister);
1048
Takashi Iwaib0b98112005-10-20 18:29:58 +02001049 if (!hdsp->precise_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return (position & HDSP_BufferID) ? (hdsp->period_bytes / 4) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 position &= HDSP_BufferPositionMask;
1053 position /= 4;
1054 position &= (hdsp->period_bytes/2) - 1;
1055 return position;
1056}
1057
Takashi Iwai55e957d2005-11-17 14:52:13 +01001058static void hdsp_reset_hw_pointer(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 hdsp_write (hdsp, HDSP_resetPointer, 0);
Remy Brunod7923b22006-10-17 12:41:56 +02001061 if (hdsp->io_type == H9632 && hdsp->firmware_rev >= 152)
1062 /* HDSP_resetPointer = HDSP_freqReg, which is strange and
1063 * requires (?) to write again DDS value after a reset pointer
1064 * (at least, it works like this) */
1065 hdsp_write (hdsp, HDSP_freqReg, hdsp->dds_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
Takashi Iwai55e957d2005-11-17 14:52:13 +01001068static void hdsp_start_audio(struct hdsp *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 s->control_register |= (HDSP_AudioInterruptEnable | HDSP_Start);
1071 hdsp_write(s, HDSP_controlRegister, s->control_register);
1072}
1073
Takashi Iwai55e957d2005-11-17 14:52:13 +01001074static void hdsp_stop_audio(struct hdsp *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 s->control_register &= ~(HDSP_Start | HDSP_AudioInterruptEnable);
1077 hdsp_write(s, HDSP_controlRegister, s->control_register);
1078}
1079
Takashi Iwai55e957d2005-11-17 14:52:13 +01001080static void hdsp_silence_playback(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 memset(hdsp->playback_buffer, 0, HDSP_DMA_AREA_BYTES);
1083}
1084
Takashi Iwai55e957d2005-11-17 14:52:13 +01001085static int hdsp_set_interrupt_interval(struct hdsp *s, unsigned int frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 int n;
1088
1089 spin_lock_irq(&s->lock);
1090
1091 frames >>= 7;
1092 n = 0;
1093 while (frames) {
1094 n++;
1095 frames >>= 1;
1096 }
1097
1098 s->control_register &= ~HDSP_LatencyMask;
1099 s->control_register |= hdsp_encode_latency(n);
1100
1101 hdsp_write(s, HDSP_controlRegister, s->control_register);
1102
1103 hdsp_compute_period_size(s);
1104
1105 spin_unlock_irq(&s->lock);
1106
1107 return 0;
1108}
1109
Remy Brunod7923b22006-10-17 12:41:56 +02001110static void hdsp_set_dds_value(struct hdsp *hdsp, int rate)
1111{
1112 u64 n;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001113
Remy Brunod7923b22006-10-17 12:41:56 +02001114 if (rate >= 112000)
1115 rate /= 4;
1116 else if (rate >= 56000)
1117 rate /= 2;
1118
Julian Cablee4b60882007-03-19 11:44:40 +01001119 n = DDS_NUMERATOR;
Takashi Iwai3f7440a2009-06-05 17:40:04 +02001120 n = div_u64(n, rate);
Remy Brunod7923b22006-10-17 12:41:56 +02001121 /* n should be less than 2^32 for being written to FREQ register */
Takashi Iwaida3cec32008-08-08 17:12:14 +02001122 snd_BUG_ON(n >> 32);
Remy Brunod7923b22006-10-17 12:41:56 +02001123 /* HDSP_freqReg and HDSP_resetPointer are the same, so keep the DDS
1124 value to write it after a reset */
1125 hdsp->dds_value = n;
1126 hdsp_write(hdsp, HDSP_freqReg, hdsp->dds_value);
1127}
1128
Takashi Iwai55e957d2005-11-17 14:52:13 +01001129static int hdsp_set_rate(struct hdsp *hdsp, int rate, int called_internally)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 int reject_if_open = 0;
1132 int current_rate;
1133 int rate_bits;
1134
1135 /* ASSUMPTION: hdsp->lock is either held, or
1136 there is no need for it (e.g. during module
1137 initialization).
1138 */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001139
1140 if (!(hdsp->control_register & HDSP_ClockModeMaster)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (called_internally) {
1142 /* request from ctl or card initialization */
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001143 dev_err(hdsp->card->dev,
1144 "device is not running as a clock master: cannot set sample rate.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return -1;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001146 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 /* hw_param request while in AutoSync mode */
1148 int external_freq = hdsp_external_sample_rate(hdsp);
1149 int spdif_freq = hdsp_spdif_sample_rate(hdsp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001150
Takashi Iwaib0b98112005-10-20 18:29:58 +02001151 if ((spdif_freq == external_freq*2) && (hdsp_autosync_ref(hdsp) >= HDSP_AUTOSYNC_FROM_ADAT1))
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001152 dev_info(hdsp->card->dev,
1153 "Detected ADAT in double speed mode\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02001154 else if (hdsp->io_type == H9632 && (spdif_freq == external_freq*4) && (hdsp_autosync_ref(hdsp) >= HDSP_AUTOSYNC_FROM_ADAT1))
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001155 dev_info(hdsp->card->dev,
1156 "Detected ADAT in quad speed mode\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02001157 else if (rate != external_freq) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001158 dev_info(hdsp->card->dev,
1159 "No AutoSync source for requested rate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return -1;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001161 }
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
1165 current_rate = hdsp->system_sample_rate;
1166
1167 /* Changing from a "single speed" to a "double speed" rate is
1168 not allowed if any substreams are open. This is because
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001169 such a change causes a shift in the location of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 the DMA buffers and a reduction in the number of available
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001171 buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 Note that a similar but essentially insoluble problem
1174 exists for externally-driven rate changes. All we can do
1175 is to flag rate changes in the read/write routines. */
1176
Takashi Iwaib0b98112005-10-20 18:29:58 +02001177 if (rate > 96000 && hdsp->io_type != H9632)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return -EINVAL;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 switch (rate) {
1181 case 32000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001182 if (current_rate > 48000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 rate_bits = HDSP_Frequency32KHz;
1185 break;
1186 case 44100:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001187 if (current_rate > 48000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 rate_bits = HDSP_Frequency44_1KHz;
1190 break;
1191 case 48000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001192 if (current_rate > 48000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 rate_bits = HDSP_Frequency48KHz;
1195 break;
1196 case 64000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001197 if (current_rate <= 48000 || current_rate > 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 rate_bits = HDSP_Frequency64KHz;
1200 break;
1201 case 88200:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001202 if (current_rate <= 48000 || current_rate > 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 rate_bits = HDSP_Frequency88_2KHz;
1205 break;
1206 case 96000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001207 if (current_rate <= 48000 || current_rate > 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 rate_bits = HDSP_Frequency96KHz;
1210 break;
1211 case 128000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001212 if (current_rate < 128000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 rate_bits = HDSP_Frequency128KHz;
1215 break;
1216 case 176400:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001217 if (current_rate < 128000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 rate_bits = HDSP_Frequency176_4KHz;
1220 break;
1221 case 192000:
Takashi Iwaib0b98112005-10-20 18:29:58 +02001222 if (current_rate < 128000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 reject_if_open = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 rate_bits = HDSP_Frequency192KHz;
1225 break;
1226 default:
1227 return -EINVAL;
1228 }
1229
1230 if (reject_if_open && (hdsp->capture_pid >= 0 || hdsp->playback_pid >= 0)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01001231 dev_warn(hdsp->card->dev,
1232 "cannot change speed mode (capture PID = %d, playback PID = %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 hdsp->capture_pid,
1234 hdsp->playback_pid);
1235 return -EBUSY;
1236 }
1237
1238 hdsp->control_register &= ~HDSP_FrequencyMask;
1239 hdsp->control_register |= rate_bits;
1240 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1241
Remy Brunod7923b22006-10-17 12:41:56 +02001242 /* For HDSP9632 rev 152, need to set DDS value in FREQ register */
1243 if (hdsp->io_type == H9632 && hdsp->firmware_rev >= 152)
1244 hdsp_set_dds_value(hdsp, rate);
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (rate >= 128000) {
1247 hdsp->channel_map = channel_map_H9632_qs;
1248 } else if (rate > 48000) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02001249 if (hdsp->io_type == H9632)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 hdsp->channel_map = channel_map_H9632_ds;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001251 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 hdsp->channel_map = channel_map_ds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 } else {
1254 switch (hdsp->io_type) {
Florian Faber28b26e12010-12-01 12:14:47 +01001255 case RPM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 case Multiface:
1257 hdsp->channel_map = channel_map_mf_ss;
1258 break;
1259 case Digiface:
1260 case H9652:
1261 hdsp->channel_map = channel_map_df_ss;
1262 break;
1263 case H9632:
1264 hdsp->channel_map = channel_map_H9632_ss;
1265 break;
1266 default:
1267 /* should never happen */
1268 break;
1269 }
1270 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 hdsp->system_sample_rate = rate;
1273
1274 return 0;
1275}
1276
1277/*----------------------------------------------------------------------------
1278 MIDI
1279 ----------------------------------------------------------------------------*/
1280
Takashi Iwai55e957d2005-11-17 14:52:13 +01001281static unsigned char snd_hdsp_midi_read_byte (struct hdsp *hdsp, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 /* the hardware already does the relevant bit-mask with 0xff */
Takashi Iwaib0b98112005-10-20 18:29:58 +02001284 if (id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return hdsp_read(hdsp, HDSP_midiDataIn1);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001286 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return hdsp_read(hdsp, HDSP_midiDataIn0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Takashi Iwai55e957d2005-11-17 14:52:13 +01001290static void snd_hdsp_midi_write_byte (struct hdsp *hdsp, int id, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 /* the hardware already does the relevant bit-mask with 0xff */
Takashi Iwaib0b98112005-10-20 18:29:58 +02001293 if (id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 hdsp_write(hdsp, HDSP_midiDataOut1, val);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001295 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 hdsp_write(hdsp, HDSP_midiDataOut0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Takashi Iwai55e957d2005-11-17 14:52:13 +01001299static int snd_hdsp_midi_input_available (struct hdsp *hdsp, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Takashi Iwaib0b98112005-10-20 18:29:58 +02001301 if (id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return (hdsp_read(hdsp, HDSP_midiStatusIn1) & 0xff);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001303 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return (hdsp_read(hdsp, HDSP_midiStatusIn0) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
Takashi Iwai55e957d2005-11-17 14:52:13 +01001307static int snd_hdsp_midi_output_possible (struct hdsp *hdsp, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
1309 int fifo_bytes_used;
1310
Takashi Iwaib0b98112005-10-20 18:29:58 +02001311 if (id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 fifo_bytes_used = hdsp_read(hdsp, HDSP_midiStatusOut1) & 0xff;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001313 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 fifo_bytes_used = hdsp_read(hdsp, HDSP_midiStatusOut0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Takashi Iwaib0b98112005-10-20 18:29:58 +02001316 if (fifo_bytes_used < 128)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 128 - fifo_bytes_used;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001318 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Takashi Iwai55e957d2005-11-17 14:52:13 +01001322static void snd_hdsp_flush_midi_input (struct hdsp *hdsp, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Takashi Iwaib0b98112005-10-20 18:29:58 +02001324 while (snd_hdsp_midi_input_available (hdsp, id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 snd_hdsp_midi_read_byte (hdsp, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
Takashi Iwai55e957d2005-11-17 14:52:13 +01001328static int snd_hdsp_midi_output_write (struct hdsp_midi *hmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 unsigned long flags;
1331 int n_pending;
1332 int to_write;
1333 int i;
1334 unsigned char buf[128];
1335
1336 /* Output is not interrupt driven */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 spin_lock_irqsave (&hmidi->lock, flags);
1339 if (hmidi->output) {
1340 if (!snd_rawmidi_transmit_empty (hmidi->output)) {
1341 if ((n_pending = snd_hdsp_midi_output_possible (hmidi->hdsp, hmidi->id)) > 0) {
1342 if (n_pending > (int)sizeof (buf))
1343 n_pending = sizeof (buf);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if ((to_write = snd_rawmidi_transmit (hmidi->output, buf, n_pending)) > 0) {
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001346 for (i = 0; i < to_write; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 snd_hdsp_midi_write_byte (hmidi->hdsp, hmidi->id, buf[i]);
1348 }
1349 }
1350 }
1351 }
1352 spin_unlock_irqrestore (&hmidi->lock, flags);
1353 return 0;
1354}
1355
Takashi Iwai55e957d2005-11-17 14:52:13 +01001356static int snd_hdsp_midi_input_read (struct hdsp_midi *hmidi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 unsigned char buf[128]; /* this buffer is designed to match the MIDI input FIFO size */
1359 unsigned long flags;
1360 int n_pending;
1361 int i;
1362
1363 spin_lock_irqsave (&hmidi->lock, flags);
1364 if ((n_pending = snd_hdsp_midi_input_available (hmidi->hdsp, hmidi->id)) > 0) {
1365 if (hmidi->input) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02001366 if (n_pending > (int)sizeof (buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 n_pending = sizeof (buf);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001368 for (i = 0; i < n_pending; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 buf[i] = snd_hdsp_midi_read_byte (hmidi->hdsp, hmidi->id);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001370 if (n_pending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 snd_rawmidi_receive (hmidi->input, buf, n_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 } else {
1373 /* flush the MIDI input FIFO */
Takashi Iwaib0b98112005-10-20 18:29:58 +02001374 while (--n_pending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 snd_hdsp_midi_read_byte (hmidi->hdsp, hmidi->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
1377 }
1378 hmidi->pending = 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001379 if (hmidi->id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 hmidi->hdsp->control_register |= HDSP_Midi1InterruptEnable;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001381 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 hmidi->hdsp->control_register |= HDSP_Midi0InterruptEnable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 hdsp_write(hmidi->hdsp, HDSP_controlRegister, hmidi->hdsp->control_register);
1384 spin_unlock_irqrestore (&hmidi->lock, flags);
1385 return snd_hdsp_midi_output_write (hmidi);
1386}
1387
Takashi Iwai55e957d2005-11-17 14:52:13 +01001388static void snd_hdsp_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001390 struct hdsp *hdsp;
1391 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 unsigned long flags;
1393 u32 ie;
1394
Takashi Iwai55e957d2005-11-17 14:52:13 +01001395 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 hdsp = hmidi->hdsp;
1397 ie = hmidi->id ? HDSP_Midi1InterruptEnable : HDSP_Midi0InterruptEnable;
1398 spin_lock_irqsave (&hdsp->lock, flags);
1399 if (up) {
1400 if (!(hdsp->control_register & ie)) {
1401 snd_hdsp_flush_midi_input (hdsp, hmidi->id);
1402 hdsp->control_register |= ie;
1403 }
1404 } else {
1405 hdsp->control_register &= ~ie;
1406 tasklet_kill(&hdsp->midi_tasklet);
1407 }
1408
1409 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1410 spin_unlock_irqrestore (&hdsp->lock, flags);
1411}
1412
Kees Cook7211ec62017-10-25 08:09:27 -07001413static void snd_hdsp_midi_output_timer(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Kees Cook7211ec62017-10-25 08:09:27 -07001415 struct hdsp_midi *hmidi = from_timer(hmidi, t, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 unsigned long flags;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 snd_hdsp_midi_output_write(hmidi);
1419 spin_lock_irqsave (&hmidi->lock, flags);
1420
1421 /* this does not bump hmidi->istimer, because the
1422 kernel automatically removed the timer when it
1423 expired, and we are now adding it back, thus
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001424 leaving istimer wherever it was set before.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
1426
Takashi Iwaic41c0092015-01-19 11:34:36 +01001427 if (hmidi->istimer)
1428 mod_timer(&hmidi->timer, 1 + jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 spin_unlock_irqrestore (&hmidi->lock, flags);
1431}
1432
Takashi Iwai55e957d2005-11-17 14:52:13 +01001433static void snd_hdsp_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001435 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 unsigned long flags;
1437
Takashi Iwai55e957d2005-11-17 14:52:13 +01001438 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 spin_lock_irqsave (&hmidi->lock, flags);
1440 if (up) {
1441 if (!hmidi->istimer) {
Kees Cook7211ec62017-10-25 08:09:27 -07001442 timer_setup(&hmidi->timer, snd_hdsp_midi_output_timer,
1443 0);
Takashi Iwaic41c0092015-01-19 11:34:36 +01001444 mod_timer(&hmidi->timer, 1 + jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 hmidi->istimer++;
1446 }
1447 } else {
Takashi Iwaib0b98112005-10-20 18:29:58 +02001448 if (hmidi->istimer && --hmidi->istimer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 del_timer (&hmidi->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 spin_unlock_irqrestore (&hmidi->lock, flags);
1452 if (up)
1453 snd_hdsp_midi_output_write(hmidi);
1454}
1455
Takashi Iwai55e957d2005-11-17 14:52:13 +01001456static int snd_hdsp_midi_input_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001458 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Takashi Iwai55e957d2005-11-17 14:52:13 +01001460 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 spin_lock_irq (&hmidi->lock);
1462 snd_hdsp_flush_midi_input (hmidi->hdsp, hmidi->id);
1463 hmidi->input = substream;
1464 spin_unlock_irq (&hmidi->lock);
1465
1466 return 0;
1467}
1468
Takashi Iwai55e957d2005-11-17 14:52:13 +01001469static int snd_hdsp_midi_output_open(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001471 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Takashi Iwai55e957d2005-11-17 14:52:13 +01001473 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 spin_lock_irq (&hmidi->lock);
1475 hmidi->output = substream;
1476 spin_unlock_irq (&hmidi->lock);
1477
1478 return 0;
1479}
1480
Takashi Iwai55e957d2005-11-17 14:52:13 +01001481static int snd_hdsp_midi_input_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001483 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 snd_hdsp_midi_input_trigger (substream, 0);
1486
Takashi Iwai55e957d2005-11-17 14:52:13 +01001487 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 spin_lock_irq (&hmidi->lock);
1489 hmidi->input = NULL;
1490 spin_unlock_irq (&hmidi->lock);
1491
1492 return 0;
1493}
1494
Takashi Iwai55e957d2005-11-17 14:52:13 +01001495static int snd_hdsp_midi_output_close(struct snd_rawmidi_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001497 struct hdsp_midi *hmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 snd_hdsp_midi_output_trigger (substream, 0);
1500
Takashi Iwai55e957d2005-11-17 14:52:13 +01001501 hmidi = (struct hdsp_midi *) substream->rmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 spin_lock_irq (&hmidi->lock);
1503 hmidi->output = NULL;
1504 spin_unlock_irq (&hmidi->lock);
1505
1506 return 0;
1507}
1508
Takashi Iwai485885b2017-01-05 17:29:31 +01001509static const struct snd_rawmidi_ops snd_hdsp_midi_output =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
1511 .open = snd_hdsp_midi_output_open,
1512 .close = snd_hdsp_midi_output_close,
1513 .trigger = snd_hdsp_midi_output_trigger,
1514};
1515
Takashi Iwai485885b2017-01-05 17:29:31 +01001516static const struct snd_rawmidi_ops snd_hdsp_midi_input =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
1518 .open = snd_hdsp_midi_input_open,
1519 .close = snd_hdsp_midi_input_close,
1520 .trigger = snd_hdsp_midi_input_trigger,
1521};
1522
Takashi Iwaif40b6892006-07-05 16:51:05 +02001523static int snd_hdsp_create_midi (struct snd_card *card, struct hdsp *hdsp, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Dan Carpentera3b3a9d2015-08-22 12:24:13 +03001525 char buf[40];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 hdsp->midi[id].id = id;
1528 hdsp->midi[id].rmidi = NULL;
1529 hdsp->midi[id].input = NULL;
1530 hdsp->midi[id].output = NULL;
1531 hdsp->midi[id].hdsp = hdsp;
1532 hdsp->midi[id].istimer = 0;
1533 hdsp->midi[id].pending = 0;
1534 spin_lock_init (&hdsp->midi[id].lock);
1535
Dan Carpentera3b3a9d2015-08-22 12:24:13 +03001536 snprintf(buf, sizeof(buf), "%s MIDI %d", card->shortname, id + 1);
Takashi Iwaib0b98112005-10-20 18:29:58 +02001537 if (snd_rawmidi_new (card, buf, id, 1, 1, &hdsp->midi[id].rmidi) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Jaroslav Kysela972d4c52008-11-12 16:37:48 +01001540 sprintf(hdsp->midi[id].rmidi->name, "HDSP MIDI %d", id+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 hdsp->midi[id].rmidi->private_data = &hdsp->midi[id];
1542
1543 snd_rawmidi_set_ops (hdsp->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_hdsp_midi_output);
1544 snd_rawmidi_set_ops (hdsp->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_hdsp_midi_input);
1545
1546 hdsp->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT |
1547 SNDRV_RAWMIDI_INFO_INPUT |
1548 SNDRV_RAWMIDI_INFO_DUPLEX;
1549
1550 return 0;
1551}
1552
1553/*-----------------------------------------------------------------------------
1554 Control Interface
1555 ----------------------------------------------------------------------------*/
1556
Takashi Iwai55e957d2005-11-17 14:52:13 +01001557static u32 snd_hdsp_convert_from_aes(struct snd_aes_iec958 *aes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 u32 val = 0;
1560 val |= (aes->status[0] & IEC958_AES0_PROFESSIONAL) ? HDSP_SPDIFProfessional : 0;
1561 val |= (aes->status[0] & IEC958_AES0_NONAUDIO) ? HDSP_SPDIFNonAudio : 0;
1562 if (val & HDSP_SPDIFProfessional)
1563 val |= (aes->status[0] & IEC958_AES0_PRO_EMPHASIS_5015) ? HDSP_SPDIFEmphasis : 0;
1564 else
1565 val |= (aes->status[0] & IEC958_AES0_CON_EMPHASIS_5015) ? HDSP_SPDIFEmphasis : 0;
1566 return val;
1567}
1568
Takashi Iwai55e957d2005-11-17 14:52:13 +01001569static void snd_hdsp_convert_to_aes(struct snd_aes_iec958 *aes, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 aes->status[0] = ((val & HDSP_SPDIFProfessional) ? IEC958_AES0_PROFESSIONAL : 0) |
1572 ((val & HDSP_SPDIFNonAudio) ? IEC958_AES0_NONAUDIO : 0);
1573 if (val & HDSP_SPDIFProfessional)
1574 aes->status[0] |= (val & HDSP_SPDIFEmphasis) ? IEC958_AES0_PRO_EMPHASIS_5015 : 0;
1575 else
1576 aes->status[0] |= (val & HDSP_SPDIFEmphasis) ? IEC958_AES0_CON_EMPHASIS_5015 : 0;
1577}
1578
Takashi Iwai55e957d2005-11-17 14:52:13 +01001579static int snd_hdsp_control_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1582 uinfo->count = 1;
1583 return 0;
1584}
1585
Takashi Iwai55e957d2005-11-17 14:52:13 +01001586static int snd_hdsp_control_spdif_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001588 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 snd_hdsp_convert_to_aes(&ucontrol->value.iec958, hdsp->creg_spdif);
1591 return 0;
1592}
1593
Takashi Iwai55e957d2005-11-17 14:52:13 +01001594static int snd_hdsp_control_spdif_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001596 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int change;
1598 u32 val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 val = snd_hdsp_convert_from_aes(&ucontrol->value.iec958);
1601 spin_lock_irq(&hdsp->lock);
1602 change = val != hdsp->creg_spdif;
1603 hdsp->creg_spdif = val;
1604 spin_unlock_irq(&hdsp->lock);
1605 return change;
1606}
1607
Takashi Iwai55e957d2005-11-17 14:52:13 +01001608static int snd_hdsp_control_spdif_stream_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1611 uinfo->count = 1;
1612 return 0;
1613}
1614
Takashi Iwai55e957d2005-11-17 14:52:13 +01001615static int snd_hdsp_control_spdif_stream_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001617 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 snd_hdsp_convert_to_aes(&ucontrol->value.iec958, hdsp->creg_spdif_stream);
1620 return 0;
1621}
1622
Takashi Iwai55e957d2005-11-17 14:52:13 +01001623static int snd_hdsp_control_spdif_stream_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001625 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int change;
1627 u32 val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 val = snd_hdsp_convert_from_aes(&ucontrol->value.iec958);
1630 spin_lock_irq(&hdsp->lock);
1631 change = val != hdsp->creg_spdif_stream;
1632 hdsp->creg_spdif_stream = val;
1633 hdsp->control_register &= ~(HDSP_SPDIFProfessional | HDSP_SPDIFNonAudio | HDSP_SPDIFEmphasis);
1634 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register |= val);
1635 spin_unlock_irq(&hdsp->lock);
1636 return change;
1637}
1638
Takashi Iwai55e957d2005-11-17 14:52:13 +01001639static int snd_hdsp_control_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
1641 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1642 uinfo->count = 1;
1643 return 0;
1644}
1645
Takashi Iwai55e957d2005-11-17 14:52:13 +01001646static int snd_hdsp_control_spdif_mask_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 ucontrol->value.iec958.status[0] = kcontrol->private_value;
1649 return 0;
1650}
1651
1652#define HDSP_SPDIF_IN(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001653{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 .name = xname, \
1655 .index = xindex, \
1656 .info = snd_hdsp_info_spdif_in, \
1657 .get = snd_hdsp_get_spdif_in, \
1658 .put = snd_hdsp_put_spdif_in }
1659
Takashi Iwai55e957d2005-11-17 14:52:13 +01001660static unsigned int hdsp_spdif_in(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
1662 return hdsp_decode_spdif_in(hdsp->control_register & HDSP_SPDIFInputMask);
1663}
1664
Takashi Iwai55e957d2005-11-17 14:52:13 +01001665static int hdsp_set_spdif_input(struct hdsp *hdsp, int in)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
1667 hdsp->control_register &= ~HDSP_SPDIFInputMask;
1668 hdsp->control_register |= hdsp_encode_spdif_in(in);
1669 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1670 return 0;
1671}
1672
Takashi Iwai55e957d2005-11-17 14:52:13 +01001673static int snd_hdsp_info_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Takashi Iwai8d678da2014-10-20 18:19:34 +02001675 static const char * const texts[4] = {
1676 "Optical", "Coaxial", "Internal", "AES"
1677 };
Takashi Iwai55e957d2005-11-17 14:52:13 +01001678 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Takashi Iwai8d678da2014-10-20 18:19:34 +02001680 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 4 : 3,
1681 texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Takashi Iwai55e957d2005-11-17 14:52:13 +01001684static int snd_hdsp_get_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001686 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 ucontrol->value.enumerated.item[0] = hdsp_spdif_in(hdsp);
1689 return 0;
1690}
1691
Takashi Iwai55e957d2005-11-17 14:52:13 +01001692static int snd_hdsp_put_spdif_in(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001694 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 int change;
1696 unsigned int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (!snd_hdsp_use_is_exclusive(hdsp))
1699 return -EBUSY;
1700 val = ucontrol->value.enumerated.item[0] % ((hdsp->io_type == H9632) ? 4 : 3);
1701 spin_lock_irq(&hdsp->lock);
1702 change = val != hdsp_spdif_in(hdsp);
1703 if (change)
1704 hdsp_set_spdif_input(hdsp, val);
1705 spin_unlock_irq(&hdsp->lock);
1706 return change;
1707}
1708
Adrian Knoth66d92442013-01-15 18:52:21 +01001709#define HDSP_TOGGLE_SETTING(xname, xindex) \
1710{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1711 .name = xname, \
1712 .private_value = xindex, \
1713 .info = snd_hdsp_info_toggle_setting, \
1714 .get = snd_hdsp_get_toggle_setting, \
1715 .put = snd_hdsp_put_toggle_setting \
1716}
1717
1718static int hdsp_toggle_setting(struct hdsp *hdsp, u32 regmask)
1719{
1720 return (hdsp->control_register & regmask) ? 1 : 0;
1721}
1722
1723static int hdsp_set_toggle_setting(struct hdsp *hdsp, u32 regmask, int out)
1724{
1725 if (out)
1726 hdsp->control_register |= regmask;
1727 else
1728 hdsp->control_register &= ~regmask;
1729 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1730
1731 return 0;
1732}
1733
1734#define snd_hdsp_info_toggle_setting snd_ctl_boolean_mono_info
1735
1736static int snd_hdsp_get_toggle_setting(struct snd_kcontrol *kcontrol,
1737 struct snd_ctl_elem_value *ucontrol)
1738{
1739 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1740 u32 regmask = kcontrol->private_value;
1741
1742 spin_lock_irq(&hdsp->lock);
1743 ucontrol->value.integer.value[0] = hdsp_toggle_setting(hdsp, regmask);
1744 spin_unlock_irq(&hdsp->lock);
1745 return 0;
1746}
1747
1748static int snd_hdsp_put_toggle_setting(struct snd_kcontrol *kcontrol,
1749 struct snd_ctl_elem_value *ucontrol)
1750{
1751 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
1752 u32 regmask = kcontrol->private_value;
1753 int change;
1754 unsigned int val;
1755
1756 if (!snd_hdsp_use_is_exclusive(hdsp))
1757 return -EBUSY;
1758 val = ucontrol->value.integer.value[0] & 1;
1759 spin_lock_irq(&hdsp->lock);
1760 change = (int) val != hdsp_toggle_setting(hdsp, regmask);
1761 if (change)
1762 hdsp_set_toggle_setting(hdsp, regmask, val);
1763 spin_unlock_irq(&hdsp->lock);
1764 return change;
1765}
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767#define HDSP_SPDIF_SAMPLE_RATE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001768{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 .name = xname, \
1770 .index = xindex, \
1771 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1772 .info = snd_hdsp_info_spdif_sample_rate, \
1773 .get = snd_hdsp_get_spdif_sample_rate \
1774}
1775
Takashi Iwai55e957d2005-11-17 14:52:13 +01001776static int snd_hdsp_info_spdif_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
Takashi Iwai8d678da2014-10-20 18:19:34 +02001778 static const char * const texts[] = {
1779 "32000", "44100", "48000", "64000", "88200", "96000",
1780 "None", "128000", "176400", "192000"
1781 };
Takashi Iwai55e957d2005-11-17 14:52:13 +01001782 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Takashi Iwai8d678da2014-10-20 18:19:34 +02001784 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
1785 texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Takashi Iwai55e957d2005-11-17 14:52:13 +01001788static int snd_hdsp_get_spdif_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001790 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 switch (hdsp_spdif_sample_rate(hdsp)) {
1793 case 32000:
1794 ucontrol->value.enumerated.item[0] = 0;
1795 break;
1796 case 44100:
1797 ucontrol->value.enumerated.item[0] = 1;
1798 break;
1799 case 48000:
1800 ucontrol->value.enumerated.item[0] = 2;
1801 break;
1802 case 64000:
1803 ucontrol->value.enumerated.item[0] = 3;
1804 break;
1805 case 88200:
1806 ucontrol->value.enumerated.item[0] = 4;
1807 break;
1808 case 96000:
1809 ucontrol->value.enumerated.item[0] = 5;
1810 break;
1811 case 128000:
1812 ucontrol->value.enumerated.item[0] = 7;
1813 break;
1814 case 176400:
1815 ucontrol->value.enumerated.item[0] = 8;
1816 break;
1817 case 192000:
1818 ucontrol->value.enumerated.item[0] = 9;
1819 break;
1820 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001821 ucontrol->value.enumerated.item[0] = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823 return 0;
1824}
1825
1826#define HDSP_SYSTEM_SAMPLE_RATE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001827{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 .name = xname, \
1829 .index = xindex, \
1830 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1831 .info = snd_hdsp_info_system_sample_rate, \
1832 .get = snd_hdsp_get_system_sample_rate \
1833}
1834
Takashi Iwai55e957d2005-11-17 14:52:13 +01001835static int snd_hdsp_info_system_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
1837 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1838 uinfo->count = 1;
1839 return 0;
1840}
1841
Takashi Iwai55e957d2005-11-17 14:52:13 +01001842static int snd_hdsp_get_system_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001844 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 ucontrol->value.enumerated.item[0] = hdsp->system_sample_rate;
1847 return 0;
1848}
1849
1850#define HDSP_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001851{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 .name = xname, \
1853 .index = xindex, \
1854 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1855 .info = snd_hdsp_info_autosync_sample_rate, \
1856 .get = snd_hdsp_get_autosync_sample_rate \
1857}
1858
Takashi Iwai55e957d2005-11-17 14:52:13 +01001859static int snd_hdsp_info_autosync_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001861 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Takashi Iwai8d678da2014-10-20 18:19:34 +02001862 static const char * const texts[] = {
1863 "32000", "44100", "48000", "64000", "88200", "96000",
1864 "None", "128000", "176400", "192000"
1865 };
1866
1867 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
1868 texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Takashi Iwai55e957d2005-11-17 14:52:13 +01001871static int snd_hdsp_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001873 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 switch (hdsp_external_sample_rate(hdsp)) {
1876 case 32000:
1877 ucontrol->value.enumerated.item[0] = 0;
1878 break;
1879 case 44100:
1880 ucontrol->value.enumerated.item[0] = 1;
1881 break;
1882 case 48000:
1883 ucontrol->value.enumerated.item[0] = 2;
1884 break;
1885 case 64000:
1886 ucontrol->value.enumerated.item[0] = 3;
1887 break;
1888 case 88200:
1889 ucontrol->value.enumerated.item[0] = 4;
1890 break;
1891 case 96000:
1892 ucontrol->value.enumerated.item[0] = 5;
1893 break;
1894 case 128000:
1895 ucontrol->value.enumerated.item[0] = 7;
1896 break;
1897 case 176400:
1898 ucontrol->value.enumerated.item[0] = 8;
1899 break;
1900 case 192000:
1901 ucontrol->value.enumerated.item[0] = 9;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001902 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001904 ucontrol->value.enumerated.item[0] = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906 return 0;
1907}
1908
1909#define HDSP_SYSTEM_CLOCK_MODE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001910{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 .name = xname, \
1912 .index = xindex, \
1913 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1914 .info = snd_hdsp_info_system_clock_mode, \
1915 .get = snd_hdsp_get_system_clock_mode \
1916}
1917
Takashi Iwai55e957d2005-11-17 14:52:13 +01001918static int hdsp_system_clock_mode(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Takashi Iwaib0b98112005-10-20 18:29:58 +02001920 if (hdsp->control_register & HDSP_ClockModeMaster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02001922 else if (hdsp_external_sample_rate(hdsp) != hdsp->system_sample_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 1;
1925}
1926
Takashi Iwai55e957d2005-11-17 14:52:13 +01001927static int snd_hdsp_info_system_clock_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Takashi Iwai8d678da2014-10-20 18:19:34 +02001929 static const char * const texts[] = {"Master", "Slave" };
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001930
Takashi Iwai8d678da2014-10-20 18:19:34 +02001931 return snd_ctl_enum_info(uinfo, 1, 2, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
Takashi Iwai55e957d2005-11-17 14:52:13 +01001934static int snd_hdsp_get_system_clock_mode(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Takashi Iwai55e957d2005-11-17 14:52:13 +01001936 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 ucontrol->value.enumerated.item[0] = hdsp_system_clock_mode(hdsp);
1939 return 0;
1940}
1941
1942#define HDSP_CLOCK_SOURCE(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001943{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 .name = xname, \
1945 .index = xindex, \
1946 .info = snd_hdsp_info_clock_source, \
1947 .get = snd_hdsp_get_clock_source, \
1948 .put = snd_hdsp_put_clock_source \
1949}
1950
Takashi Iwai55e957d2005-11-17 14:52:13 +01001951static int hdsp_clock_source(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 if (hdsp->control_register & HDSP_ClockModeMaster) {
1954 switch (hdsp->system_sample_rate) {
1955 case 32000:
1956 return 1;
1957 case 44100:
1958 return 2;
1959 case 48000:
1960 return 3;
1961 case 64000:
1962 return 4;
1963 case 88200:
1964 return 5;
1965 case 96000:
1966 return 6;
1967 case 128000:
1968 return 7;
1969 case 176400:
1970 return 8;
1971 case 192000:
1972 return 9;
1973 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001974 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976 } else {
1977 return 0;
1978 }
1979}
1980
Takashi Iwai55e957d2005-11-17 14:52:13 +01001981static int hdsp_set_clock_source(struct hdsp *hdsp, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 int rate;
1984 switch (mode) {
1985 case HDSP_CLOCK_SOURCE_AUTOSYNC:
1986 if (hdsp_external_sample_rate(hdsp) != 0) {
1987 if (!hdsp_set_rate(hdsp, hdsp_external_sample_rate(hdsp), 1)) {
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001988 hdsp->control_register &= ~HDSP_ClockModeMaster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
1990 return 0;
1991 }
1992 }
1993 return -1;
1994 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ:
1995 rate = 32000;
1996 break;
1997 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ:
1998 rate = 44100;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01001999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ:
2001 rate = 48000;
2002 break;
2003 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ:
2004 rate = 64000;
2005 break;
2006 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ:
2007 rate = 88200;
2008 break;
2009 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ:
2010 rate = 96000;
2011 break;
2012 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ:
2013 rate = 128000;
2014 break;
2015 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ:
2016 rate = 176400;
2017 break;
2018 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ:
2019 rate = 192000;
2020 break;
2021 default:
2022 rate = 48000;
2023 }
2024 hdsp->control_register |= HDSP_ClockModeMaster;
2025 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2026 hdsp_set_rate(hdsp, rate, 1);
2027 return 0;
2028}
2029
Takashi Iwai55e957d2005-11-17 14:52:13 +01002030static int snd_hdsp_info_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002032 static const char * const texts[] = {
2033 "AutoSync", "Internal 32.0 kHz", "Internal 44.1 kHz",
2034 "Internal 48.0 kHz", "Internal 64.0 kHz", "Internal 88.2 kHz",
2035 "Internal 96.0 kHz", "Internal 128 kHz", "Internal 176.4 kHz",
2036 "Internal 192.0 KHz"
2037 };
Takashi Iwai55e957d2005-11-17 14:52:13 +01002038 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002039
Takashi Iwai8d678da2014-10-20 18:19:34 +02002040 return snd_ctl_enum_info(uinfo, 1, (hdsp->io_type == H9632) ? 10 : 7,
2041 texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
Takashi Iwai55e957d2005-11-17 14:52:13 +01002044static int snd_hdsp_get_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002046 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 ucontrol->value.enumerated.item[0] = hdsp_clock_source(hdsp);
2049 return 0;
2050}
2051
Takashi Iwai55e957d2005-11-17 14:52:13 +01002052static int snd_hdsp_put_clock_source(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002054 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int change;
2056 int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (!snd_hdsp_use_is_exclusive(hdsp))
2059 return -EBUSY;
2060 val = ucontrol->value.enumerated.item[0];
2061 if (val < 0) val = 0;
2062 if (hdsp->io_type == H9632) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002063 if (val > 9)
2064 val = 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 } else {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002066 if (val > 6)
2067 val = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069 spin_lock_irq(&hdsp->lock);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002070 if (val != hdsp_clock_source(hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 change = (hdsp_set_clock_source(hdsp, val) == 0) ? 1 : 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002072 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 spin_unlock_irq(&hdsp->lock);
2075 return change;
2076}
2077
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002078#define snd_hdsp_info_clock_source_lock snd_ctl_boolean_mono_info
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002079
Takashi Iwai55e957d2005-11-17 14:52:13 +01002080static int snd_hdsp_get_clock_source_lock(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002081{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002082 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002083
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002084 ucontrol->value.integer.value[0] = hdsp->clock_source_locked;
2085 return 0;
2086}
2087
Takashi Iwai55e957d2005-11-17 14:52:13 +01002088static int snd_hdsp_put_clock_source_lock(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002089{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002090 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002091 int change;
2092
2093 change = (int)ucontrol->value.integer.value[0] != hdsp->clock_source_locked;
2094 if (change)
Takashi Iwai4e98d6a2007-11-15 15:58:13 +01002095 hdsp->clock_source_locked = !!ucontrol->value.integer.value[0];
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002096 return change;
2097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099#define HDSP_DA_GAIN(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002100{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 .name = xname, \
2102 .index = xindex, \
2103 .info = snd_hdsp_info_da_gain, \
2104 .get = snd_hdsp_get_da_gain, \
2105 .put = snd_hdsp_put_da_gain \
2106}
2107
Takashi Iwai55e957d2005-11-17 14:52:13 +01002108static int hdsp_da_gain(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 switch (hdsp->control_register & HDSP_DAGainMask) {
2111 case HDSP_DAGainHighGain:
2112 return 0;
2113 case HDSP_DAGainPlus4dBu:
2114 return 1;
2115 case HDSP_DAGainMinus10dBV:
2116 return 2;
2117 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002118 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120}
2121
Takashi Iwai55e957d2005-11-17 14:52:13 +01002122static int hdsp_set_da_gain(struct hdsp *hdsp, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 hdsp->control_register &= ~HDSP_DAGainMask;
2125 switch (mode) {
2126 case 0:
2127 hdsp->control_register |= HDSP_DAGainHighGain;
2128 break;
2129 case 1:
2130 hdsp->control_register |= HDSP_DAGainPlus4dBu;
2131 break;
2132 case 2:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002133 hdsp->control_register |= HDSP_DAGainMinus10dBV;
2134 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 default:
2136 return -1;
2137
2138 }
2139 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2140 return 0;
2141}
2142
Takashi Iwai55e957d2005-11-17 14:52:13 +01002143static int snd_hdsp_info_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002145 static const char * const texts[] = {"Hi Gain", "+4 dBu", "-10 dbV"};
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002146
Takashi Iwai8d678da2014-10-20 18:19:34 +02002147 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
Takashi Iwai55e957d2005-11-17 14:52:13 +01002150static int snd_hdsp_get_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002152 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 ucontrol->value.enumerated.item[0] = hdsp_da_gain(hdsp);
2155 return 0;
2156}
2157
Takashi Iwai55e957d2005-11-17 14:52:13 +01002158static int snd_hdsp_put_da_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002160 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 int change;
2162 int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 if (!snd_hdsp_use_is_exclusive(hdsp))
2165 return -EBUSY;
2166 val = ucontrol->value.enumerated.item[0];
2167 if (val < 0) val = 0;
2168 if (val > 2) val = 2;
2169 spin_lock_irq(&hdsp->lock);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002170 if (val != hdsp_da_gain(hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 change = (hdsp_set_da_gain(hdsp, val) == 0) ? 1 : 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002172 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 spin_unlock_irq(&hdsp->lock);
2175 return change;
2176}
2177
2178#define HDSP_AD_GAIN(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002179{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 .name = xname, \
2181 .index = xindex, \
2182 .info = snd_hdsp_info_ad_gain, \
2183 .get = snd_hdsp_get_ad_gain, \
2184 .put = snd_hdsp_put_ad_gain \
2185}
2186
Takashi Iwai55e957d2005-11-17 14:52:13 +01002187static int hdsp_ad_gain(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 switch (hdsp->control_register & HDSP_ADGainMask) {
2190 case HDSP_ADGainMinus10dBV:
2191 return 0;
2192 case HDSP_ADGainPlus4dBu:
2193 return 1;
2194 case HDSP_ADGainLowGain:
2195 return 2;
2196 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002197 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199}
2200
Takashi Iwai55e957d2005-11-17 14:52:13 +01002201static int hdsp_set_ad_gain(struct hdsp *hdsp, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 hdsp->control_register &= ~HDSP_ADGainMask;
2204 switch (mode) {
2205 case 0:
2206 hdsp->control_register |= HDSP_ADGainMinus10dBV;
2207 break;
2208 case 1:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002209 hdsp->control_register |= HDSP_ADGainPlus4dBu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 break;
2211 case 2:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002212 hdsp->control_register |= HDSP_ADGainLowGain;
2213 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 default:
2215 return -1;
2216
2217 }
2218 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2219 return 0;
2220}
2221
Takashi Iwai55e957d2005-11-17 14:52:13 +01002222static int snd_hdsp_info_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002224 static const char * const texts[] = {"-10 dBV", "+4 dBu", "Lo Gain"};
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002225
Takashi Iwai8d678da2014-10-20 18:19:34 +02002226 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Takashi Iwai55e957d2005-11-17 14:52:13 +01002229static int snd_hdsp_get_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002231 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 ucontrol->value.enumerated.item[0] = hdsp_ad_gain(hdsp);
2234 return 0;
2235}
2236
Takashi Iwai55e957d2005-11-17 14:52:13 +01002237static int snd_hdsp_put_ad_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002239 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 int change;
2241 int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (!snd_hdsp_use_is_exclusive(hdsp))
2244 return -EBUSY;
2245 val = ucontrol->value.enumerated.item[0];
2246 if (val < 0) val = 0;
2247 if (val > 2) val = 2;
2248 spin_lock_irq(&hdsp->lock);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002249 if (val != hdsp_ad_gain(hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 change = (hdsp_set_ad_gain(hdsp, val) == 0) ? 1 : 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002251 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 spin_unlock_irq(&hdsp->lock);
2254 return change;
2255}
2256
2257#define HDSP_PHONE_GAIN(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002258{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 .name = xname, \
2260 .index = xindex, \
2261 .info = snd_hdsp_info_phone_gain, \
2262 .get = snd_hdsp_get_phone_gain, \
2263 .put = snd_hdsp_put_phone_gain \
2264}
2265
Takashi Iwai55e957d2005-11-17 14:52:13 +01002266static int hdsp_phone_gain(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 switch (hdsp->control_register & HDSP_PhoneGainMask) {
2269 case HDSP_PhoneGain0dB:
2270 return 0;
2271 case HDSP_PhoneGainMinus6dB:
2272 return 1;
2273 case HDSP_PhoneGainMinus12dB:
2274 return 2;
2275 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
2278}
2279
Takashi Iwai55e957d2005-11-17 14:52:13 +01002280static int hdsp_set_phone_gain(struct hdsp *hdsp, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 hdsp->control_register &= ~HDSP_PhoneGainMask;
2283 switch (mode) {
2284 case 0:
2285 hdsp->control_register |= HDSP_PhoneGain0dB;
2286 break;
2287 case 1:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002288 hdsp->control_register |= HDSP_PhoneGainMinus6dB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 break;
2290 case 2:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002291 hdsp->control_register |= HDSP_PhoneGainMinus12dB;
2292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 default:
2294 return -1;
2295
2296 }
2297 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2298 return 0;
2299}
2300
Takashi Iwai55e957d2005-11-17 14:52:13 +01002301static int snd_hdsp_info_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002303 static const char * const texts[] = {"0 dB", "-6 dB", "-12 dB"};
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002304
Takashi Iwai8d678da2014-10-20 18:19:34 +02002305 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
Takashi Iwai55e957d2005-11-17 14:52:13 +01002308static int snd_hdsp_get_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002310 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 ucontrol->value.enumerated.item[0] = hdsp_phone_gain(hdsp);
2313 return 0;
2314}
2315
Takashi Iwai55e957d2005-11-17 14:52:13 +01002316static int snd_hdsp_put_phone_gain(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002318 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 int change;
2320 int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (!snd_hdsp_use_is_exclusive(hdsp))
2323 return -EBUSY;
2324 val = ucontrol->value.enumerated.item[0];
2325 if (val < 0) val = 0;
2326 if (val > 2) val = 2;
2327 spin_lock_irq(&hdsp->lock);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002328 if (val != hdsp_phone_gain(hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 change = (hdsp_set_phone_gain(hdsp, val) == 0) ? 1 : 0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002330 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 change = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 spin_unlock_irq(&hdsp->lock);
2333 return change;
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336#define HDSP_PREF_SYNC_REF(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002337{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 .name = xname, \
2339 .index = xindex, \
2340 .info = snd_hdsp_info_pref_sync_ref, \
2341 .get = snd_hdsp_get_pref_sync_ref, \
2342 .put = snd_hdsp_put_pref_sync_ref \
2343}
2344
Takashi Iwai55e957d2005-11-17 14:52:13 +01002345static int hdsp_pref_sync_ref(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
2347 /* Notice that this looks at the requested sync source,
2348 not the one actually in use.
2349 */
2350
2351 switch (hdsp->control_register & HDSP_SyncRefMask) {
2352 case HDSP_SyncRef_ADAT1:
2353 return HDSP_SYNC_FROM_ADAT1;
2354 case HDSP_SyncRef_ADAT2:
2355 return HDSP_SYNC_FROM_ADAT2;
2356 case HDSP_SyncRef_ADAT3:
2357 return HDSP_SYNC_FROM_ADAT3;
2358 case HDSP_SyncRef_SPDIF:
2359 return HDSP_SYNC_FROM_SPDIF;
2360 case HDSP_SyncRef_WORD:
2361 return HDSP_SYNC_FROM_WORD;
2362 case HDSP_SyncRef_ADAT_SYNC:
2363 return HDSP_SYNC_FROM_ADAT_SYNC;
2364 default:
2365 return HDSP_SYNC_FROM_WORD;
2366 }
2367 return 0;
2368}
2369
Takashi Iwai55e957d2005-11-17 14:52:13 +01002370static int hdsp_set_pref_sync_ref(struct hdsp *hdsp, int pref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
2372 hdsp->control_register &= ~HDSP_SyncRefMask;
2373 switch (pref) {
2374 case HDSP_SYNC_FROM_ADAT1:
2375 hdsp->control_register &= ~HDSP_SyncRefMask; /* clear SyncRef bits */
2376 break;
2377 case HDSP_SYNC_FROM_ADAT2:
2378 hdsp->control_register |= HDSP_SyncRef_ADAT2;
2379 break;
2380 case HDSP_SYNC_FROM_ADAT3:
2381 hdsp->control_register |= HDSP_SyncRef_ADAT3;
2382 break;
2383 case HDSP_SYNC_FROM_SPDIF:
2384 hdsp->control_register |= HDSP_SyncRef_SPDIF;
2385 break;
2386 case HDSP_SYNC_FROM_WORD:
2387 hdsp->control_register |= HDSP_SyncRef_WORD;
2388 break;
2389 case HDSP_SYNC_FROM_ADAT_SYNC:
2390 hdsp->control_register |= HDSP_SyncRef_ADAT_SYNC;
2391 break;
2392 default:
2393 return -1;
2394 }
2395 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
2396 return 0;
2397}
2398
Takashi Iwai55e957d2005-11-17 14:52:13 +01002399static int snd_hdsp_info_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002401 static const char * const texts[] = {
2402 "Word", "IEC958", "ADAT1", "ADAT Sync", "ADAT2", "ADAT3"
2403 };
Takashi Iwai55e957d2005-11-17 14:52:13 +01002404 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Takashi Iwai8d678da2014-10-20 18:19:34 +02002405 int num_items;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 switch (hdsp->io_type) {
2408 case Digiface:
2409 case H9652:
Takashi Iwai8d678da2014-10-20 18:19:34 +02002410 num_items = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 break;
2412 case Multiface:
Takashi Iwai8d678da2014-10-20 18:19:34 +02002413 num_items = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 break;
2415 case H9632:
Takashi Iwai8d678da2014-10-20 18:19:34 +02002416 num_items = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 break;
2418 default:
Takashi Iwai9badda02012-01-09 18:22:35 +01002419 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002421
Takashi Iwai8d678da2014-10-20 18:19:34 +02002422 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423}
2424
Takashi Iwai55e957d2005-11-17 14:52:13 +01002425static int snd_hdsp_get_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002427 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 ucontrol->value.enumerated.item[0] = hdsp_pref_sync_ref(hdsp);
2430 return 0;
2431}
2432
Takashi Iwai55e957d2005-11-17 14:52:13 +01002433static int snd_hdsp_put_pref_sync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002435 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 int change, max;
2437 unsigned int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (!snd_hdsp_use_is_exclusive(hdsp))
2440 return -EBUSY;
2441
2442 switch (hdsp->io_type) {
2443 case Digiface:
2444 case H9652:
2445 max = 6;
2446 break;
2447 case Multiface:
2448 max = 4;
2449 break;
2450 case H9632:
2451 max = 3;
2452 break;
2453 default:
2454 return -EIO;
2455 }
2456
2457 val = ucontrol->value.enumerated.item[0] % max;
2458 spin_lock_irq(&hdsp->lock);
2459 change = (int)val != hdsp_pref_sync_ref(hdsp);
2460 hdsp_set_pref_sync_ref(hdsp, val);
2461 spin_unlock_irq(&hdsp->lock);
2462 return change;
2463}
2464
2465#define HDSP_AUTOSYNC_REF(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002466{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 .name = xname, \
2468 .index = xindex, \
2469 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
2470 .info = snd_hdsp_info_autosync_ref, \
2471 .get = snd_hdsp_get_autosync_ref, \
2472}
2473
Takashi Iwai55e957d2005-11-17 14:52:13 +01002474static int hdsp_autosync_ref(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 /* This looks at the autosync selected sync reference */
2477 unsigned int status2 = hdsp_read(hdsp, HDSP_status2Register);
2478
2479 switch (status2 & HDSP_SelSyncRefMask) {
2480 case HDSP_SelSyncRef_WORD:
2481 return HDSP_AUTOSYNC_FROM_WORD;
2482 case HDSP_SelSyncRef_ADAT_SYNC:
2483 return HDSP_AUTOSYNC_FROM_ADAT_SYNC;
2484 case HDSP_SelSyncRef_SPDIF:
2485 return HDSP_AUTOSYNC_FROM_SPDIF;
2486 case HDSP_SelSyncRefMask:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002487 return HDSP_AUTOSYNC_FROM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 case HDSP_SelSyncRef_ADAT1:
2489 return HDSP_AUTOSYNC_FROM_ADAT1;
2490 case HDSP_SelSyncRef_ADAT2:
2491 return HDSP_AUTOSYNC_FROM_ADAT2;
2492 case HDSP_SelSyncRef_ADAT3:
2493 return HDSP_AUTOSYNC_FROM_ADAT3;
2494 default:
2495 return HDSP_AUTOSYNC_FROM_WORD;
2496 }
2497 return 0;
2498}
2499
Takashi Iwai55e957d2005-11-17 14:52:13 +01002500static int snd_hdsp_info_autosync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002502 static const char * const texts[] = {
2503 "Word", "ADAT Sync", "IEC958", "None", "ADAT1", "ADAT2", "ADAT3"
2504 };
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002505
Takashi Iwai8d678da2014-10-20 18:19:34 +02002506 return snd_ctl_enum_info(uinfo, 1, 7, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
Takashi Iwai55e957d2005-11-17 14:52:13 +01002509static int snd_hdsp_get_autosync_ref(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002511 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 ucontrol->value.enumerated.item[0] = hdsp_autosync_ref(hdsp);
2514 return 0;
2515}
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517#define HDSP_PRECISE_POINTER(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002518{ .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 .name = xname, \
2520 .index = xindex, \
2521 .info = snd_hdsp_info_precise_pointer, \
2522 .get = snd_hdsp_get_precise_pointer, \
2523 .put = snd_hdsp_put_precise_pointer \
2524}
2525
Takashi Iwai55e957d2005-11-17 14:52:13 +01002526static int hdsp_set_precise_pointer(struct hdsp *hdsp, int precise)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
Takashi Iwaib0b98112005-10-20 18:29:58 +02002528 if (precise)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 hdsp->precise_ptr = 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002530 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 hdsp->precise_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return 0;
2533}
2534
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002535#define snd_hdsp_info_precise_pointer snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Takashi Iwai55e957d2005-11-17 14:52:13 +01002537static int snd_hdsp_get_precise_pointer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002539 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 spin_lock_irq(&hdsp->lock);
2542 ucontrol->value.integer.value[0] = hdsp->precise_ptr;
2543 spin_unlock_irq(&hdsp->lock);
2544 return 0;
2545}
2546
Takashi Iwai55e957d2005-11-17 14:52:13 +01002547static int snd_hdsp_put_precise_pointer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002549 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 int change;
2551 unsigned int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 if (!snd_hdsp_use_is_exclusive(hdsp))
2554 return -EBUSY;
2555 val = ucontrol->value.integer.value[0] & 1;
2556 spin_lock_irq(&hdsp->lock);
2557 change = (int)val != hdsp->precise_ptr;
2558 hdsp_set_precise_pointer(hdsp, val);
2559 spin_unlock_irq(&hdsp->lock);
2560 return change;
2561}
2562
2563#define HDSP_USE_MIDI_TASKLET(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002564{ .iface = SNDRV_CTL_ELEM_IFACE_CARD, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 .name = xname, \
2566 .index = xindex, \
2567 .info = snd_hdsp_info_use_midi_tasklet, \
2568 .get = snd_hdsp_get_use_midi_tasklet, \
2569 .put = snd_hdsp_put_use_midi_tasklet \
2570}
2571
Takashi Iwai55e957d2005-11-17 14:52:13 +01002572static int hdsp_set_use_midi_tasklet(struct hdsp *hdsp, int use_tasklet)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Takashi Iwaib0b98112005-10-20 18:29:58 +02002574 if (use_tasklet)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 hdsp->use_midi_tasklet = 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002576 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 hdsp->use_midi_tasklet = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return 0;
2579}
2580
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002581#define snd_hdsp_info_use_midi_tasklet snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Takashi Iwai55e957d2005-11-17 14:52:13 +01002583static int snd_hdsp_get_use_midi_tasklet(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002585 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 spin_lock_irq(&hdsp->lock);
2588 ucontrol->value.integer.value[0] = hdsp->use_midi_tasklet;
2589 spin_unlock_irq(&hdsp->lock);
2590 return 0;
2591}
2592
Takashi Iwai55e957d2005-11-17 14:52:13 +01002593static int snd_hdsp_put_use_midi_tasklet(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002595 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 int change;
2597 unsigned int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (!snd_hdsp_use_is_exclusive(hdsp))
2600 return -EBUSY;
2601 val = ucontrol->value.integer.value[0] & 1;
2602 spin_lock_irq(&hdsp->lock);
2603 change = (int)val != hdsp->use_midi_tasklet;
2604 hdsp_set_use_midi_tasklet(hdsp, val);
2605 spin_unlock_irq(&hdsp->lock);
2606 return change;
2607}
2608
2609#define HDSP_MIXER(xname, xindex) \
2610{ .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
2611 .name = xname, \
2612 .index = xindex, \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002613 .device = 0, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2615 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2616 .info = snd_hdsp_info_mixer, \
2617 .get = snd_hdsp_get_mixer, \
2618 .put = snd_hdsp_put_mixer \
2619}
2620
Takashi Iwai55e957d2005-11-17 14:52:13 +01002621static int snd_hdsp_info_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
2623 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2624 uinfo->count = 3;
2625 uinfo->value.integer.min = 0;
2626 uinfo->value.integer.max = 65536;
2627 uinfo->value.integer.step = 1;
2628 return 0;
2629}
2630
Takashi Iwai55e957d2005-11-17 14:52:13 +01002631static int snd_hdsp_get_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002633 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 int source;
2635 int destination;
2636 int addr;
2637
2638 source = ucontrol->value.integer.value[0];
2639 destination = ucontrol->value.integer.value[1];
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002640
Takashi Iwaib0b98112005-10-20 18:29:58 +02002641 if (source >= hdsp->max_channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 addr = hdsp_playback_to_output_key(hdsp,source-hdsp->max_channels,destination);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002643 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 addr = hdsp_input_to_output_key(hdsp,source, destination);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 spin_lock_irq(&hdsp->lock);
2647 ucontrol->value.integer.value[2] = hdsp_read_gain (hdsp, addr);
2648 spin_unlock_irq(&hdsp->lock);
2649 return 0;
2650}
2651
Takashi Iwai55e957d2005-11-17 14:52:13 +01002652static int snd_hdsp_put_mixer(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002654 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int change;
2656 int source;
2657 int destination;
2658 int gain;
2659 int addr;
2660
2661 if (!snd_hdsp_use_is_exclusive(hdsp))
2662 return -EBUSY;
2663
2664 source = ucontrol->value.integer.value[0];
2665 destination = ucontrol->value.integer.value[1];
2666
Takashi Iwaib0b98112005-10-20 18:29:58 +02002667 if (source >= hdsp->max_channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 addr = hdsp_playback_to_output_key(hdsp,source-hdsp->max_channels, destination);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002669 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 addr = hdsp_input_to_output_key(hdsp,source, destination);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 gain = ucontrol->value.integer.value[2];
2673
2674 spin_lock_irq(&hdsp->lock);
2675 change = gain != hdsp_read_gain(hdsp, addr);
2676 if (change)
2677 hdsp_write_gain(hdsp, addr, gain);
2678 spin_unlock_irq(&hdsp->lock);
2679 return change;
2680}
2681
2682#define HDSP_WC_SYNC_CHECK(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002683{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 .name = xname, \
2685 .index = xindex, \
2686 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2687 .info = snd_hdsp_info_sync_check, \
2688 .get = snd_hdsp_get_wc_sync_check \
2689}
2690
Takashi Iwai55e957d2005-11-17 14:52:13 +01002691static int snd_hdsp_info_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
Takashi Iwai8d678da2014-10-20 18:19:34 +02002693 static const char * const texts[] = {"No Lock", "Lock", "Sync" };
2694
2695 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
Takashi Iwai55e957d2005-11-17 14:52:13 +01002698static int hdsp_wc_sync_check(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699{
2700 int status2 = hdsp_read(hdsp, HDSP_status2Register);
2701 if (status2 & HDSP_wc_lock) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002702 if (status2 & HDSP_wc_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 return 2;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002704 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002706 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return 0;
2709}
2710
Takashi Iwai55e957d2005-11-17 14:52:13 +01002711static int snd_hdsp_get_wc_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002713 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 ucontrol->value.enumerated.item[0] = hdsp_wc_sync_check(hdsp);
2716 return 0;
2717}
2718
2719#define HDSP_SPDIF_SYNC_CHECK(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002720{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 .name = xname, \
2722 .index = xindex, \
2723 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2724 .info = snd_hdsp_info_sync_check, \
2725 .get = snd_hdsp_get_spdif_sync_check \
2726}
2727
Takashi Iwai55e957d2005-11-17 14:52:13 +01002728static int hdsp_spdif_sync_check(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729{
2730 int status = hdsp_read(hdsp, HDSP_statusRegister);
Takashi Iwaib0b98112005-10-20 18:29:58 +02002731 if (status & HDSP_SPDIFErrorFlag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return 0;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002733 else {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002734 if (status & HDSP_SPDIFSync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 return 2;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002736 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
2739 return 0;
2740}
2741
Takashi Iwai55e957d2005-11-17 14:52:13 +01002742static int snd_hdsp_get_spdif_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002744 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 ucontrol->value.enumerated.item[0] = hdsp_spdif_sync_check(hdsp);
2747 return 0;
2748}
2749
2750#define HDSP_ADATSYNC_SYNC_CHECK(xname, xindex) \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002751{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 .name = xname, \
2753 .index = xindex, \
2754 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2755 .info = snd_hdsp_info_sync_check, \
2756 .get = snd_hdsp_get_adatsync_sync_check \
2757}
2758
Takashi Iwai55e957d2005-11-17 14:52:13 +01002759static int hdsp_adatsync_sync_check(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
2761 int status = hdsp_read(hdsp, HDSP_statusRegister);
2762 if (status & HDSP_TimecodeLock) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002763 if (status & HDSP_TimecodeSync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 return 2;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002765 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002767 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 return 0;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002769}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
Takashi Iwai55e957d2005-11-17 14:52:13 +01002771static int snd_hdsp_get_adatsync_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
Takashi Iwai55e957d2005-11-17 14:52:13 +01002773 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 ucontrol->value.enumerated.item[0] = hdsp_adatsync_sync_check(hdsp);
2776 return 0;
2777}
2778
2779#define HDSP_ADAT_SYNC_CHECK \
Clemens Ladisch67ed4162005-07-29 15:32:58 +02002780{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2782 .info = snd_hdsp_info_sync_check, \
2783 .get = snd_hdsp_get_adat_sync_check \
2784}
2785
Takashi Iwai55e957d2005-11-17 14:52:13 +01002786static int hdsp_adat_sync_check(struct hdsp *hdsp, int idx)
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002787{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 int status = hdsp_read(hdsp, HDSP_statusRegister);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (status & (HDSP_Lock0>>idx)) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02002791 if (status & (HDSP_Sync0>>idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 return 2;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002793 else
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002794 return 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02002795 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 return 0;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002797}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Takashi Iwai55e957d2005-11-17 14:52:13 +01002799static int snd_hdsp_get_adat_sync_check(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
2801 int offset;
Takashi Iwai55e957d2005-11-17 14:52:13 +01002802 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 offset = ucontrol->id.index - 1;
Dan Carpenter9e46aed2015-08-21 14:25:34 +03002805 if (snd_BUG_ON(offset < 0))
2806 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 switch (hdsp->io_type) {
2809 case Digiface:
2810 case H9652:
2811 if (offset >= 3)
2812 return -EINVAL;
2813 break;
2814 case Multiface:
2815 case H9632:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002816 if (offset >= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return -EINVAL;
2818 break;
2819 default:
2820 return -EIO;
2821 }
2822
2823 ucontrol->value.enumerated.item[0] = hdsp_adat_sync_check(hdsp, offset);
2824 return 0;
2825}
2826
Julian Cablee4b60882007-03-19 11:44:40 +01002827#define HDSP_DDS_OFFSET(xname, xindex) \
2828{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2829 .name = xname, \
2830 .index = xindex, \
2831 .info = snd_hdsp_info_dds_offset, \
2832 .get = snd_hdsp_get_dds_offset, \
2833 .put = snd_hdsp_put_dds_offset \
2834}
2835
2836static int hdsp_dds_offset(struct hdsp *hdsp)
2837{
2838 u64 n;
Julian Cablee4b60882007-03-19 11:44:40 +01002839 unsigned int dds_value = hdsp->dds_value;
2840 int system_sample_rate = hdsp->system_sample_rate;
2841
Takashi Iwai2a3988f2007-10-16 14:26:32 +02002842 if (!dds_value)
2843 return 0;
2844
Julian Cablee4b60882007-03-19 11:44:40 +01002845 n = DDS_NUMERATOR;
2846 /*
2847 * dds_value = n / rate
2848 * rate = n / dds_value
2849 */
Takashi Iwai3f7440a2009-06-05 17:40:04 +02002850 n = div_u64(n, dds_value);
Julian Cablee4b60882007-03-19 11:44:40 +01002851 if (system_sample_rate >= 112000)
2852 n *= 4;
2853 else if (system_sample_rate >= 56000)
2854 n *= 2;
2855 return ((int)n) - system_sample_rate;
2856}
2857
2858static int hdsp_set_dds_offset(struct hdsp *hdsp, int offset_hz)
2859{
2860 int rate = hdsp->system_sample_rate + offset_hz;
2861 hdsp_set_dds_value(hdsp, rate);
2862 return 0;
2863}
2864
2865static int snd_hdsp_info_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
2866{
2867 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2868 uinfo->count = 1;
2869 uinfo->value.integer.min = -5000;
2870 uinfo->value.integer.max = 5000;
2871 return 0;
2872}
2873
2874static int snd_hdsp_get_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2875{
2876 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002877
Takashi Iwaieab3c4d2016-02-29 14:26:43 +01002878 ucontrol->value.integer.value[0] = hdsp_dds_offset(hdsp);
Julian Cablee4b60882007-03-19 11:44:40 +01002879 return 0;
2880}
2881
2882static int snd_hdsp_put_dds_offset(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2883{
2884 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2885 int change;
2886 int val;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002887
Julian Cablee4b60882007-03-19 11:44:40 +01002888 if (!snd_hdsp_use_is_exclusive(hdsp))
2889 return -EBUSY;
Takashi Iwaieab3c4d2016-02-29 14:26:43 +01002890 val = ucontrol->value.integer.value[0];
Julian Cablee4b60882007-03-19 11:44:40 +01002891 spin_lock_irq(&hdsp->lock);
2892 if (val != hdsp_dds_offset(hdsp))
2893 change = (hdsp_set_dds_offset(hdsp, val) == 0) ? 1 : 0;
2894 else
2895 change = 0;
2896 spin_unlock_irq(&hdsp->lock);
2897 return change;
2898}
2899
Takashi Iwai55e957d2005-11-17 14:52:13 +01002900static struct snd_kcontrol_new snd_hdsp_9632_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901HDSP_DA_GAIN("DA Gain", 0),
2902HDSP_AD_GAIN("AD Gain", 0),
2903HDSP_PHONE_GAIN("Phones Gain", 0),
Adrian Knoth4833c672013-01-15 18:52:22 +01002904HDSP_TOGGLE_SETTING("XLR Breakout Cable", HDSP_XLRBreakoutCable),
Julian Cablee4b60882007-03-19 11:44:40 +01002905HDSP_DDS_OFFSET("DDS Sample Rate Offset", 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906};
2907
Takashi Iwai55e957d2005-11-17 14:52:13 +01002908static struct snd_kcontrol_new snd_hdsp_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909{
Clemens Ladisch5549d542005-08-03 13:50:30 +02002910 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2912 .info = snd_hdsp_control_spdif_info,
2913 .get = snd_hdsp_control_spdif_get,
2914 .put = snd_hdsp_control_spdif_put,
2915},
2916{
2917 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
Clemens Ladisch5549d542005-08-03 13:50:30 +02002918 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
2920 .info = snd_hdsp_control_spdif_stream_info,
2921 .get = snd_hdsp_control_spdif_stream_get,
2922 .put = snd_hdsp_control_spdif_stream_put,
2923},
2924{
2925 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch5549d542005-08-03 13:50:30 +02002926 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
2928 .info = snd_hdsp_control_spdif_mask_info,
2929 .get = snd_hdsp_control_spdif_mask_get,
2930 .private_value = IEC958_AES0_NONAUDIO |
2931 IEC958_AES0_PROFESSIONAL |
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002932 IEC958_AES0_CON_EMPHASIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933},
2934{
2935 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch5549d542005-08-03 13:50:30 +02002936 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
2938 .info = snd_hdsp_control_spdif_mask_info,
2939 .get = snd_hdsp_control_spdif_mask_get,
2940 .private_value = IEC958_AES0_NONAUDIO |
2941 IEC958_AES0_PROFESSIONAL |
2942 IEC958_AES0_PRO_EMPHASIS,
2943},
2944HDSP_MIXER("Mixer", 0),
2945HDSP_SPDIF_IN("IEC958 Input Connector", 0),
Adrian Knoth4833c672013-01-15 18:52:22 +01002946HDSP_TOGGLE_SETTING("IEC958 Output also on ADAT1", HDSP_SPDIFOpticalOut),
2947HDSP_TOGGLE_SETTING("IEC958 Professional Bit", HDSP_SPDIFProfessional),
2948HDSP_TOGGLE_SETTING("IEC958 Emphasis Bit", HDSP_SPDIFEmphasis),
2949HDSP_TOGGLE_SETTING("IEC958 Non-audio Bit", HDSP_SPDIFNonAudio),
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01002950/* 'Sample Clock Source' complies with the alsa control naming scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951HDSP_CLOCK_SOURCE("Sample Clock Source", 0),
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002952{
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02002953 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2954 .name = "Sample Clock Source Locking",
2955 .info = snd_hdsp_info_clock_source_lock,
2956 .get = snd_hdsp_get_clock_source_lock,
2957 .put = snd_hdsp_put_clock_source_lock,
2958},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959HDSP_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2960HDSP_PREF_SYNC_REF("Preferred Sync Reference", 0),
2961HDSP_AUTOSYNC_REF("AutoSync Reference", 0),
2962HDSP_SPDIF_SAMPLE_RATE("SPDIF Sample Rate", 0),
2963HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2964/* 'External Rate' complies with the alsa control naming scheme */
2965HDSP_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2966HDSP_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2967HDSP_SPDIF_SYNC_CHECK("SPDIF Lock Status", 0),
2968HDSP_ADATSYNC_SYNC_CHECK("ADAT Sync Lock Status", 0),
Adrian Knoth4833c672013-01-15 18:52:22 +01002969HDSP_TOGGLE_SETTING("Line Out", HDSP_LineOut),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970HDSP_PRECISE_POINTER("Precise Pointer", 0),
2971HDSP_USE_MIDI_TASKLET("Use Midi Tasklet", 0),
2972};
2973
Florian Faber28b26e12010-12-01 12:14:47 +01002974
2975static int hdsp_rpm_input12(struct hdsp *hdsp)
2976{
2977 switch (hdsp->control_register & HDSP_RPM_Inp12) {
2978 case HDSP_RPM_Inp12_Phon_6dB:
2979 return 0;
2980 case HDSP_RPM_Inp12_Phon_n6dB:
2981 return 2;
2982 case HDSP_RPM_Inp12_Line_0dB:
2983 return 3;
2984 case HDSP_RPM_Inp12_Line_n6dB:
2985 return 4;
2986 }
2987 return 1;
2988}
2989
2990
2991static int snd_hdsp_get_rpm_input12(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2992{
2993 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
2994
2995 ucontrol->value.enumerated.item[0] = hdsp_rpm_input12(hdsp);
2996 return 0;
2997}
2998
2999
3000static int hdsp_set_rpm_input12(struct hdsp *hdsp, int mode)
3001{
3002 hdsp->control_register &= ~HDSP_RPM_Inp12;
3003 switch (mode) {
3004 case 0:
3005 hdsp->control_register |= HDSP_RPM_Inp12_Phon_6dB;
3006 break;
3007 case 1:
3008 break;
3009 case 2:
3010 hdsp->control_register |= HDSP_RPM_Inp12_Phon_n6dB;
3011 break;
3012 case 3:
3013 hdsp->control_register |= HDSP_RPM_Inp12_Line_0dB;
3014 break;
3015 case 4:
3016 hdsp->control_register |= HDSP_RPM_Inp12_Line_n6dB;
3017 break;
3018 default:
3019 return -1;
3020 }
3021
3022 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3023 return 0;
3024}
3025
3026
3027static int snd_hdsp_put_rpm_input12(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3028{
3029 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3030 int change;
3031 int val;
3032
3033 if (!snd_hdsp_use_is_exclusive(hdsp))
3034 return -EBUSY;
3035 val = ucontrol->value.enumerated.item[0];
3036 if (val < 0)
3037 val = 0;
3038 if (val > 4)
3039 val = 4;
3040 spin_lock_irq(&hdsp->lock);
3041 if (val != hdsp_rpm_input12(hdsp))
3042 change = (hdsp_set_rpm_input12(hdsp, val) == 0) ? 1 : 0;
3043 else
3044 change = 0;
3045 spin_unlock_irq(&hdsp->lock);
3046 return change;
3047}
3048
3049
3050static int snd_hdsp_info_rpm_input(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3051{
Takashi Iwai8d678da2014-10-20 18:19:34 +02003052 static const char * const texts[] = {
3053 "Phono +6dB", "Phono 0dB", "Phono -6dB", "Line 0dB", "Line -6dB"
3054 };
Florian Faber28b26e12010-12-01 12:14:47 +01003055
Takashi Iwai8d678da2014-10-20 18:19:34 +02003056 return snd_ctl_enum_info(uinfo, 1, 5, texts);
Florian Faber28b26e12010-12-01 12:14:47 +01003057}
3058
3059
3060static int hdsp_rpm_input34(struct hdsp *hdsp)
3061{
3062 switch (hdsp->control_register & HDSP_RPM_Inp34) {
3063 case HDSP_RPM_Inp34_Phon_6dB:
3064 return 0;
3065 case HDSP_RPM_Inp34_Phon_n6dB:
3066 return 2;
3067 case HDSP_RPM_Inp34_Line_0dB:
3068 return 3;
3069 case HDSP_RPM_Inp34_Line_n6dB:
3070 return 4;
3071 }
3072 return 1;
3073}
3074
3075
3076static int snd_hdsp_get_rpm_input34(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3077{
3078 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3079
3080 ucontrol->value.enumerated.item[0] = hdsp_rpm_input34(hdsp);
3081 return 0;
3082}
3083
3084
3085static int hdsp_set_rpm_input34(struct hdsp *hdsp, int mode)
3086{
3087 hdsp->control_register &= ~HDSP_RPM_Inp34;
3088 switch (mode) {
3089 case 0:
3090 hdsp->control_register |= HDSP_RPM_Inp34_Phon_6dB;
3091 break;
3092 case 1:
3093 break;
3094 case 2:
3095 hdsp->control_register |= HDSP_RPM_Inp34_Phon_n6dB;
3096 break;
3097 case 3:
3098 hdsp->control_register |= HDSP_RPM_Inp34_Line_0dB;
3099 break;
3100 case 4:
3101 hdsp->control_register |= HDSP_RPM_Inp34_Line_n6dB;
3102 break;
3103 default:
3104 return -1;
3105 }
3106
3107 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3108 return 0;
3109}
3110
3111
3112static int snd_hdsp_put_rpm_input34(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3113{
3114 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3115 int change;
3116 int val;
3117
3118 if (!snd_hdsp_use_is_exclusive(hdsp))
3119 return -EBUSY;
3120 val = ucontrol->value.enumerated.item[0];
3121 if (val < 0)
3122 val = 0;
3123 if (val > 4)
3124 val = 4;
3125 spin_lock_irq(&hdsp->lock);
3126 if (val != hdsp_rpm_input34(hdsp))
3127 change = (hdsp_set_rpm_input34(hdsp, val) == 0) ? 1 : 0;
3128 else
3129 change = 0;
3130 spin_unlock_irq(&hdsp->lock);
3131 return change;
3132}
3133
3134
3135/* RPM Bypass switch */
3136static int hdsp_rpm_bypass(struct hdsp *hdsp)
3137{
3138 return (hdsp->control_register & HDSP_RPM_Bypass) ? 1 : 0;
3139}
3140
3141
3142static int snd_hdsp_get_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3143{
3144 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3145
3146 ucontrol->value.integer.value[0] = hdsp_rpm_bypass(hdsp);
3147 return 0;
3148}
3149
3150
3151static int hdsp_set_rpm_bypass(struct hdsp *hdsp, int on)
3152{
3153 if (on)
3154 hdsp->control_register |= HDSP_RPM_Bypass;
3155 else
3156 hdsp->control_register &= ~HDSP_RPM_Bypass;
3157 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3158 return 0;
3159}
3160
3161
3162static int snd_hdsp_put_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3163{
3164 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3165 int change;
3166 unsigned int val;
3167
3168 if (!snd_hdsp_use_is_exclusive(hdsp))
3169 return -EBUSY;
3170 val = ucontrol->value.integer.value[0] & 1;
3171 spin_lock_irq(&hdsp->lock);
3172 change = (int)val != hdsp_rpm_bypass(hdsp);
3173 hdsp_set_rpm_bypass(hdsp, val);
3174 spin_unlock_irq(&hdsp->lock);
3175 return change;
3176}
3177
3178
3179static int snd_hdsp_info_rpm_bypass(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3180{
Takashi Iwai8d678da2014-10-20 18:19:34 +02003181 static const char * const texts[] = {"On", "Off"};
Florian Faber28b26e12010-12-01 12:14:47 +01003182
Takashi Iwai8d678da2014-10-20 18:19:34 +02003183 return snd_ctl_enum_info(uinfo, 1, 2, texts);
Florian Faber28b26e12010-12-01 12:14:47 +01003184}
3185
3186
3187/* RPM Disconnect switch */
3188static int hdsp_rpm_disconnect(struct hdsp *hdsp)
3189{
3190 return (hdsp->control_register & HDSP_RPM_Disconnect) ? 1 : 0;
3191}
3192
3193
3194static int snd_hdsp_get_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3195{
3196 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3197
3198 ucontrol->value.integer.value[0] = hdsp_rpm_disconnect(hdsp);
3199 return 0;
3200}
3201
3202
3203static int hdsp_set_rpm_disconnect(struct hdsp *hdsp, int on)
3204{
3205 if (on)
3206 hdsp->control_register |= HDSP_RPM_Disconnect;
3207 else
3208 hdsp->control_register &= ~HDSP_RPM_Disconnect;
3209 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3210 return 0;
3211}
3212
3213
3214static int snd_hdsp_put_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3215{
3216 struct hdsp *hdsp = snd_kcontrol_chip(kcontrol);
3217 int change;
3218 unsigned int val;
3219
3220 if (!snd_hdsp_use_is_exclusive(hdsp))
3221 return -EBUSY;
3222 val = ucontrol->value.integer.value[0] & 1;
3223 spin_lock_irq(&hdsp->lock);
3224 change = (int)val != hdsp_rpm_disconnect(hdsp);
3225 hdsp_set_rpm_disconnect(hdsp, val);
3226 spin_unlock_irq(&hdsp->lock);
3227 return change;
3228}
3229
3230static int snd_hdsp_info_rpm_disconnect(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
3231{
Takashi Iwai8d678da2014-10-20 18:19:34 +02003232 static const char * const texts[] = {"On", "Off"};
Florian Faber28b26e12010-12-01 12:14:47 +01003233
Takashi Iwai8d678da2014-10-20 18:19:34 +02003234 return snd_ctl_enum_info(uinfo, 1, 2, texts);
Florian Faber28b26e12010-12-01 12:14:47 +01003235}
3236
3237static struct snd_kcontrol_new snd_hdsp_rpm_controls[] = {
3238 {
3239 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3240 .name = "RPM Bypass",
3241 .get = snd_hdsp_get_rpm_bypass,
3242 .put = snd_hdsp_put_rpm_bypass,
3243 .info = snd_hdsp_info_rpm_bypass
3244 },
3245 {
3246 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3247 .name = "RPM Disconnect",
3248 .get = snd_hdsp_get_rpm_disconnect,
3249 .put = snd_hdsp_put_rpm_disconnect,
3250 .info = snd_hdsp_info_rpm_disconnect
3251 },
3252 {
3253 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3254 .name = "Input 1/2",
3255 .get = snd_hdsp_get_rpm_input12,
3256 .put = snd_hdsp_put_rpm_input12,
3257 .info = snd_hdsp_info_rpm_input
3258 },
3259 {
3260 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3261 .name = "Input 3/4",
3262 .get = snd_hdsp_get_rpm_input34,
3263 .put = snd_hdsp_put_rpm_input34,
3264 .info = snd_hdsp_info_rpm_input
3265 },
3266 HDSP_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
3267 HDSP_MIXER("Mixer", 0)
3268};
3269
Adrian Knoth4833c672013-01-15 18:52:22 +01003270static struct snd_kcontrol_new snd_hdsp_96xx_aeb =
3271 HDSP_TOGGLE_SETTING("Analog Extension Board",
3272 HDSP_AnalogExtensionBoard);
Takashi Iwai55e957d2005-11-17 14:52:13 +01003273static struct snd_kcontrol_new snd_hdsp_adat_sync_check = HDSP_ADAT_SYNC_CHECK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Takashi Iwai55e957d2005-11-17 14:52:13 +01003275static int snd_hdsp_create_controls(struct snd_card *card, struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276{
3277 unsigned int idx;
3278 int err;
Takashi Iwai55e957d2005-11-17 14:52:13 +01003279 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Florian Faber28b26e12010-12-01 12:14:47 +01003281 if (hdsp->io_type == RPM) {
3282 /* RPM Bypass, Disconnect and Input switches */
3283 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_rpm_controls); idx++) {
3284 err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_rpm_controls[idx], hdsp));
3285 if (err < 0)
3286 return err;
3287 }
3288 return 0;
3289 }
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_controls); idx++) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02003292 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_controls[idx], hdsp))) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 if (idx == 1) /* IEC958 (S/PDIF) Stream */
3295 hdsp->spdif_ctl = kctl;
3296 }
3297
3298 /* ADAT SyncCheck status */
3299 snd_hdsp_adat_sync_check.name = "ADAT Lock Status";
3300 snd_hdsp_adat_sync_check.index = 1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003301 if ((err = snd_ctl_add (card, kctl = snd_ctl_new1(&snd_hdsp_adat_sync_check, hdsp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (hdsp->io_type == Digiface || hdsp->io_type == H9652) {
3304 for (idx = 1; idx < 3; ++idx) {
3305 snd_hdsp_adat_sync_check.index = idx+1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003306 if ((err = snd_ctl_add (card, kctl = snd_ctl_new1(&snd_hdsp_adat_sync_check, hdsp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 }
3309 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003310
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 /* DA, AD and Phone gain and XLR breakout cable controls for H9632 cards */
3312 if (hdsp->io_type == H9632) {
3313 for (idx = 0; idx < ARRAY_SIZE(snd_hdsp_9632_controls); idx++) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02003314 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_9632_controls[idx], hdsp))) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 }
3317 }
3318
3319 /* AEB control for H96xx card */
3320 if (hdsp->io_type == H9632 || hdsp->io_type == H9652) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02003321 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_hdsp_96xx_aeb, hdsp))) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 }
3324
3325 return 0;
3326}
3327
3328/*------------------------------------------------------------
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003329 /proc interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 ------------------------------------------------------------*/
3331
3332static void
Takashi Iwai55e957d2005-11-17 14:52:13 +01003333snd_hdsp_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
Joe Perches9fe856e2010-09-04 18:52:54 -07003335 struct hdsp *hdsp = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 unsigned int status;
3337 unsigned int status2;
3338 char *pref_sync_ref;
3339 char *autosync_ref;
3340 char *system_clock_mode;
3341 char *clock_source;
3342 int x;
3343
Tim Blechmannc18bc9b2009-08-12 18:21:30 +02003344 status = hdsp_read(hdsp, HDSP_statusRegister);
3345 status2 = hdsp_read(hdsp, HDSP_status2Register);
3346
3347 snd_iprintf(buffer, "%s (Card #%d)\n", hdsp->card_name,
3348 hdsp->card->number + 1);
3349 snd_iprintf(buffer, "Buffers: capture %p playback %p\n",
3350 hdsp->capture_buffer, hdsp->playback_buffer);
3351 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
3352 hdsp->irq, hdsp->port, (unsigned long)hdsp->iobase);
3353 snd_iprintf(buffer, "Control register: 0x%x\n", hdsp->control_register);
3354 snd_iprintf(buffer, "Control2 register: 0x%x\n",
3355 hdsp->control2_register);
3356 snd_iprintf(buffer, "Status register: 0x%x\n", status);
3357 snd_iprintf(buffer, "Status2 register: 0x%x\n", status2);
3358
3359 if (hdsp_check_for_iobox(hdsp)) {
3360 snd_iprintf(buffer, "No I/O box connected.\n"
3361 "Please connect one and upload firmware.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 return;
Tim Blechmannc18bc9b2009-08-12 18:21:30 +02003363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Takashi Iwaib0b98112005-10-20 18:29:58 +02003365 if (hdsp_check_for_firmware(hdsp, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 if (hdsp->state & HDSP_FirmwareCached) {
3367 if (snd_hdsp_load_firmware_from_cache(hdsp) != 0) {
Tim Blechmannc18bc9b2009-08-12 18:21:30 +02003368 snd_iprintf(buffer, "Firmware loading from "
3369 "cache failed, "
3370 "please upload manually.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return;
3372 }
3373 } else {
Takashi Iwai311e70a2006-09-06 12:13:37 +02003374 int err = -EINVAL;
Takashi Iwai311e70a2006-09-06 12:13:37 +02003375 err = hdsp_request_fw_loader(hdsp);
Takashi Iwai311e70a2006-09-06 12:13:37 +02003376 if (err < 0) {
3377 snd_iprintf(buffer,
3378 "No firmware loaded nor cached, "
3379 "please upload firmware.\n");
3380 return;
3381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 }
3383 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 snd_iprintf(buffer, "FIFO status: %d\n", hdsp_read(hdsp, HDSP_fifoStatus) & 0xff);
3386 snd_iprintf(buffer, "MIDI1 Output status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusOut0));
3387 snd_iprintf(buffer, "MIDI1 Input status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusIn0));
3388 snd_iprintf(buffer, "MIDI2 Output status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusOut1));
3389 snd_iprintf(buffer, "MIDI2 Input status: 0x%x\n", hdsp_read(hdsp, HDSP_midiStatusIn1));
3390 snd_iprintf(buffer, "Use Midi Tasklet: %s\n", hdsp->use_midi_tasklet ? "on" : "off");
3391
3392 snd_iprintf(buffer, "\n");
3393
3394 x = 1 << (6 + hdsp_decode_latency(hdsp->control_register & HDSP_LatencyMask));
3395
3396 snd_iprintf(buffer, "Buffer Size (Latency): %d samples (2 periods of %lu bytes)\n", x, (unsigned long) hdsp->period_bytes);
3397 snd_iprintf(buffer, "Hardware pointer (frames): %ld\n", hdsp_hw_pointer(hdsp));
3398 snd_iprintf(buffer, "Precise pointer: %s\n", hdsp->precise_ptr ? "on" : "off");
3399 snd_iprintf(buffer, "Line out: %s\n", (hdsp->control_register & HDSP_LineOut) ? "on" : "off");
3400
3401 snd_iprintf(buffer, "Firmware version: %d\n", (status2&HDSP_version0)|(status2&HDSP_version1)<<1|(status2&HDSP_version2)<<2);
3402
3403 snd_iprintf(buffer, "\n");
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 switch (hdsp_clock_source(hdsp)) {
3406 case HDSP_CLOCK_SOURCE_AUTOSYNC:
3407 clock_source = "AutoSync";
3408 break;
3409 case HDSP_CLOCK_SOURCE_INTERNAL_32KHZ:
3410 clock_source = "Internal 32 kHz";
3411 break;
3412 case HDSP_CLOCK_SOURCE_INTERNAL_44_1KHZ:
3413 clock_source = "Internal 44.1 kHz";
3414 break;
3415 case HDSP_CLOCK_SOURCE_INTERNAL_48KHZ:
3416 clock_source = "Internal 48 kHz";
3417 break;
3418 case HDSP_CLOCK_SOURCE_INTERNAL_64KHZ:
3419 clock_source = "Internal 64 kHz";
3420 break;
3421 case HDSP_CLOCK_SOURCE_INTERNAL_88_2KHZ:
3422 clock_source = "Internal 88.2 kHz";
3423 break;
3424 case HDSP_CLOCK_SOURCE_INTERNAL_96KHZ:
3425 clock_source = "Internal 96 kHz";
3426 break;
3427 case HDSP_CLOCK_SOURCE_INTERNAL_128KHZ:
3428 clock_source = "Internal 128 kHz";
3429 break;
3430 case HDSP_CLOCK_SOURCE_INTERNAL_176_4KHZ:
3431 clock_source = "Internal 176.4 kHz";
3432 break;
3433 case HDSP_CLOCK_SOURCE_INTERNAL_192KHZ:
3434 clock_source = "Internal 192 kHz";
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 default:
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003437 clock_source = "Error";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
3439 snd_iprintf (buffer, "Sample Clock Source: %s\n", clock_source);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003440
Takashi Iwaib0b98112005-10-20 18:29:58 +02003441 if (hdsp_system_clock_mode(hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 system_clock_mode = "Slave";
Takashi Iwaib0b98112005-10-20 18:29:58 +02003443 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 system_clock_mode = "Master";
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 switch (hdsp_pref_sync_ref (hdsp)) {
3447 case HDSP_SYNC_FROM_WORD:
3448 pref_sync_ref = "Word Clock";
3449 break;
3450 case HDSP_SYNC_FROM_ADAT_SYNC:
3451 pref_sync_ref = "ADAT Sync";
3452 break;
3453 case HDSP_SYNC_FROM_SPDIF:
3454 pref_sync_ref = "SPDIF";
3455 break;
3456 case HDSP_SYNC_FROM_ADAT1:
3457 pref_sync_ref = "ADAT1";
3458 break;
3459 case HDSP_SYNC_FROM_ADAT2:
3460 pref_sync_ref = "ADAT2";
3461 break;
3462 case HDSP_SYNC_FROM_ADAT3:
3463 pref_sync_ref = "ADAT3";
3464 break;
3465 default:
3466 pref_sync_ref = "Word Clock";
3467 break;
3468 }
3469 snd_iprintf (buffer, "Preferred Sync Reference: %s\n", pref_sync_ref);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 switch (hdsp_autosync_ref (hdsp)) {
3472 case HDSP_AUTOSYNC_FROM_WORD:
3473 autosync_ref = "Word Clock";
3474 break;
3475 case HDSP_AUTOSYNC_FROM_ADAT_SYNC:
3476 autosync_ref = "ADAT Sync";
3477 break;
3478 case HDSP_AUTOSYNC_FROM_SPDIF:
3479 autosync_ref = "SPDIF";
3480 break;
3481 case HDSP_AUTOSYNC_FROM_NONE:
3482 autosync_ref = "None";
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 case HDSP_AUTOSYNC_FROM_ADAT1:
3485 autosync_ref = "ADAT1";
3486 break;
3487 case HDSP_AUTOSYNC_FROM_ADAT2:
3488 autosync_ref = "ADAT2";
3489 break;
3490 case HDSP_AUTOSYNC_FROM_ADAT3:
3491 autosync_ref = "ADAT3";
3492 break;
3493 default:
3494 autosync_ref = "---";
3495 break;
3496 }
3497 snd_iprintf (buffer, "AutoSync Reference: %s\n", autosync_ref);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 snd_iprintf (buffer, "AutoSync Frequency: %d\n", hdsp_external_sample_rate(hdsp));
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 snd_iprintf (buffer, "System Clock Mode: %s\n", system_clock_mode);
3502
3503 snd_iprintf (buffer, "System Clock Frequency: %d\n", hdsp->system_sample_rate);
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02003504 snd_iprintf (buffer, "System Clock Locked: %s\n", hdsp->clock_source_locked ? "Yes" : "No");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 snd_iprintf(buffer, "\n");
3507
Florian Faber28b26e12010-12-01 12:14:47 +01003508 if (hdsp->io_type != RPM) {
3509 switch (hdsp_spdif_in(hdsp)) {
3510 case HDSP_SPDIFIN_OPTICAL:
3511 snd_iprintf(buffer, "IEC958 input: Optical\n");
3512 break;
3513 case HDSP_SPDIFIN_COAXIAL:
3514 snd_iprintf(buffer, "IEC958 input: Coaxial\n");
3515 break;
3516 case HDSP_SPDIFIN_INTERNAL:
3517 snd_iprintf(buffer, "IEC958 input: Internal\n");
3518 break;
3519 case HDSP_SPDIFIN_AES:
3520 snd_iprintf(buffer, "IEC958 input: AES\n");
3521 break;
3522 default:
3523 snd_iprintf(buffer, "IEC958 input: ???\n");
3524 break;
3525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003527
Florian Faber28b26e12010-12-01 12:14:47 +01003528 if (RPM == hdsp->io_type) {
3529 if (hdsp->control_register & HDSP_RPM_Bypass)
3530 snd_iprintf(buffer, "RPM Bypass: disabled\n");
3531 else
3532 snd_iprintf(buffer, "RPM Bypass: enabled\n");
3533 if (hdsp->control_register & HDSP_RPM_Disconnect)
3534 snd_iprintf(buffer, "RPM disconnected\n");
3535 else
3536 snd_iprintf(buffer, "RPM connected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Florian Faber28b26e12010-12-01 12:14:47 +01003538 switch (hdsp->control_register & HDSP_RPM_Inp12) {
3539 case HDSP_RPM_Inp12_Phon_6dB:
3540 snd_iprintf(buffer, "Input 1/2: Phono, 6dB\n");
3541 break;
3542 case HDSP_RPM_Inp12_Phon_0dB:
3543 snd_iprintf(buffer, "Input 1/2: Phono, 0dB\n");
3544 break;
3545 case HDSP_RPM_Inp12_Phon_n6dB:
3546 snd_iprintf(buffer, "Input 1/2: Phono, -6dB\n");
3547 break;
3548 case HDSP_RPM_Inp12_Line_0dB:
3549 snd_iprintf(buffer, "Input 1/2: Line, 0dB\n");
3550 break;
3551 case HDSP_RPM_Inp12_Line_n6dB:
3552 snd_iprintf(buffer, "Input 1/2: Line, -6dB\n");
3553 break;
3554 default:
3555 snd_iprintf(buffer, "Input 1/2: ???\n");
3556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Florian Faber28b26e12010-12-01 12:14:47 +01003558 switch (hdsp->control_register & HDSP_RPM_Inp34) {
3559 case HDSP_RPM_Inp34_Phon_6dB:
3560 snd_iprintf(buffer, "Input 3/4: Phono, 6dB\n");
3561 break;
3562 case HDSP_RPM_Inp34_Phon_0dB:
3563 snd_iprintf(buffer, "Input 3/4: Phono, 0dB\n");
3564 break;
3565 case HDSP_RPM_Inp34_Phon_n6dB:
3566 snd_iprintf(buffer, "Input 3/4: Phono, -6dB\n");
3567 break;
3568 case HDSP_RPM_Inp34_Line_0dB:
3569 snd_iprintf(buffer, "Input 3/4: Line, 0dB\n");
3570 break;
3571 case HDSP_RPM_Inp34_Line_n6dB:
3572 snd_iprintf(buffer, "Input 3/4: Line, -6dB\n");
3573 break;
3574 default:
3575 snd_iprintf(buffer, "Input 3/4: ???\n");
3576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Florian Faber28b26e12010-12-01 12:14:47 +01003578 } else {
3579 if (hdsp->control_register & HDSP_SPDIFOpticalOut)
3580 snd_iprintf(buffer, "IEC958 output: Coaxial & ADAT1\n");
3581 else
3582 snd_iprintf(buffer, "IEC958 output: Coaxial only\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
Florian Faber28b26e12010-12-01 12:14:47 +01003584 if (hdsp->control_register & HDSP_SPDIFProfessional)
3585 snd_iprintf(buffer, "IEC958 quality: Professional\n");
3586 else
3587 snd_iprintf(buffer, "IEC958 quality: Consumer\n");
3588
3589 if (hdsp->control_register & HDSP_SPDIFEmphasis)
3590 snd_iprintf(buffer, "IEC958 emphasis: on\n");
3591 else
3592 snd_iprintf(buffer, "IEC958 emphasis: off\n");
3593
3594 if (hdsp->control_register & HDSP_SPDIFNonAudio)
3595 snd_iprintf(buffer, "IEC958 NonAudio: on\n");
3596 else
3597 snd_iprintf(buffer, "IEC958 NonAudio: off\n");
3598 x = hdsp_spdif_sample_rate(hdsp);
3599 if (x != 0)
3600 snd_iprintf(buffer, "IEC958 sample rate: %d\n", x);
3601 else
3602 snd_iprintf(buffer, "IEC958 sample rate: Error flag set\n");
3603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 snd_iprintf(buffer, "\n");
3605
3606 /* Sync Check */
3607 x = status & HDSP_Sync0;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003608 if (status & HDSP_Lock0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 snd_iprintf(buffer, "ADAT1: %s\n", x ? "Sync" : "Lock");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003610 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 snd_iprintf(buffer, "ADAT1: No Lock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
3613 switch (hdsp->io_type) {
3614 case Digiface:
3615 case H9652:
3616 x = status & HDSP_Sync1;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003617 if (status & HDSP_Lock1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 snd_iprintf(buffer, "ADAT2: %s\n", x ? "Sync" : "Lock");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003619 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 snd_iprintf(buffer, "ADAT2: No Lock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 x = status & HDSP_Sync2;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003622 if (status & HDSP_Lock2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 snd_iprintf(buffer, "ADAT3: %s\n", x ? "Sync" : "Lock");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003624 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 snd_iprintf(buffer, "ADAT3: No Lock\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003626 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 default:
3628 /* relax */
3629 break;
3630 }
3631
3632 x = status & HDSP_SPDIFSync;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003633 if (status & HDSP_SPDIFErrorFlag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 snd_iprintf (buffer, "SPDIF: No Lock\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003635 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 snd_iprintf (buffer, "SPDIF: %s\n", x ? "Sync" : "Lock");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 x = status2 & HDSP_wc_sync;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003639 if (status2 & HDSP_wc_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 snd_iprintf (buffer, "Word Clock: %s\n", x ? "Sync" : "Lock");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003641 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 snd_iprintf (buffer, "Word Clock: No Lock\n");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 x = status & HDSP_TimecodeSync;
Takashi Iwaib0b98112005-10-20 18:29:58 +02003645 if (status & HDSP_TimecodeLock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 snd_iprintf(buffer, "ADAT Sync: %s\n", x ? "Sync" : "Lock");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003647 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 snd_iprintf(buffer, "ADAT Sync: No Lock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
3650 snd_iprintf(buffer, "\n");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 /* Informations about H9632 specific controls */
3653 if (hdsp->io_type == H9632) {
3654 char *tmp;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 switch (hdsp_ad_gain(hdsp)) {
3657 case 0:
3658 tmp = "-10 dBV";
3659 break;
3660 case 1:
3661 tmp = "+4 dBu";
3662 break;
3663 default:
3664 tmp = "Lo Gain";
3665 break;
3666 }
3667 snd_iprintf(buffer, "AD Gain : %s\n", tmp);
3668
3669 switch (hdsp_da_gain(hdsp)) {
3670 case 0:
3671 tmp = "Hi Gain";
3672 break;
3673 case 1:
3674 tmp = "+4 dBu";
3675 break;
3676 default:
3677 tmp = "-10 dBV";
3678 break;
3679 }
3680 snd_iprintf(buffer, "DA Gain : %s\n", tmp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 switch (hdsp_phone_gain(hdsp)) {
3683 case 0:
3684 tmp = "0 dB";
3685 break;
3686 case 1:
3687 tmp = "-6 dB";
3688 break;
3689 default:
3690 tmp = "-12 dB";
3691 break;
3692 }
3693 snd_iprintf(buffer, "Phones Gain : %s\n", tmp);
3694
Adrian Knoth4833c672013-01-15 18:52:22 +01003695 snd_iprintf(buffer, "XLR Breakout Cable : %s\n",
3696 hdsp_toggle_setting(hdsp, HDSP_XLRBreakoutCable) ?
3697 "yes" : "no");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003698
Takashi Iwaib0b98112005-10-20 18:29:58 +02003699 if (hdsp->control_register & HDSP_AnalogExtensionBoard)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 snd_iprintf(buffer, "AEB : on (ADAT1 internal)\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02003701 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 snd_iprintf(buffer, "AEB : off (ADAT1 external)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 snd_iprintf(buffer, "\n");
3704 }
3705
3706}
3707
Randy Dunlap1374f8c2008-01-16 14:55:42 +01003708static void snd_hdsp_proc_init(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003710 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712 if (! snd_card_proc_new(hdsp->card, "hdsp", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003713 snd_info_set_text_ops(entry, hdsp, snd_hdsp_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714}
3715
Takashi Iwai55e957d2005-11-17 14:52:13 +01003716static void snd_hdsp_free_buffers(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
3718 snd_hammerfall_free_buffer(&hdsp->capture_dma_buf, hdsp->pci);
3719 snd_hammerfall_free_buffer(&hdsp->playback_dma_buf, hdsp->pci);
3720}
3721
Bill Pembertone23e7a12012-12-06 12:35:10 -05003722static int snd_hdsp_initialize_memory(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723{
3724 unsigned long pb_bus, cb_bus;
3725
3726 if (snd_hammerfall_get_buffer(hdsp->pci, &hdsp->capture_dma_buf, HDSP_DMA_AREA_BYTES) < 0 ||
3727 snd_hammerfall_get_buffer(hdsp->pci, &hdsp->playback_dma_buf, HDSP_DMA_AREA_BYTES) < 0) {
3728 if (hdsp->capture_dma_buf.area)
3729 snd_dma_free_pages(&hdsp->capture_dma_buf);
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01003730 dev_err(hdsp->card->dev,
3731 "%s: no buffers available\n", hdsp->card_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 return -ENOMEM;
3733 }
3734
3735 /* Align to bus-space 64K boundary */
3736
Clemens Ladisch7ab39922006-10-09 08:13:32 +02003737 cb_bus = ALIGN(hdsp->capture_dma_buf.addr, 0x10000ul);
3738 pb_bus = ALIGN(hdsp->playback_dma_buf.addr, 0x10000ul);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 /* Tell the card where it is */
3741
3742 hdsp_write(hdsp, HDSP_inputBufferAddress, cb_bus);
3743 hdsp_write(hdsp, HDSP_outputBufferAddress, pb_bus);
3744
3745 hdsp->capture_buffer = hdsp->capture_dma_buf.area + (cb_bus - hdsp->capture_dma_buf.addr);
3746 hdsp->playback_buffer = hdsp->playback_dma_buf.area + (pb_bus - hdsp->playback_dma_buf.addr);
3747
3748 return 0;
3749}
3750
Takashi Iwai55e957d2005-11-17 14:52:13 +01003751static int snd_hdsp_set_defaults(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752{
3753 unsigned int i;
3754
3755 /* ASSUMPTION: hdsp->lock is either held, or
3756 there is no need to hold it (e.g. during module
Joe Perches561de312007-12-18 13:13:47 +01003757 initialization).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 */
3759
3760 /* set defaults:
3761
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003762 SPDIF Input via Coax
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 Master clock mode
3764 maximum latency (7 => 2^7 = 8192 samples, 64Kbyte buffer,
3765 which implies 2 4096 sample, 32Kbyte periods).
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003766 Enable line out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 */
3768
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003769 hdsp->control_register = HDSP_ClockModeMaster |
3770 HDSP_SPDIFInputCoaxial |
3771 hdsp_encode_latency(7) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 HDSP_LineOut;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
3775 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3776
3777#ifdef SNDRV_BIG_ENDIAN
3778 hdsp->control2_register = HDSP_BIGENDIAN_MODE;
3779#else
3780 hdsp->control2_register = 0;
3781#endif
Takashi Iwaib0b98112005-10-20 18:29:58 +02003782 if (hdsp->io_type == H9652)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 snd_hdsp_9652_enable_mixer (hdsp);
Takashi Iwaib0b98112005-10-20 18:29:58 +02003784 else
3785 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
3787 hdsp_reset_hw_pointer(hdsp);
3788 hdsp_compute_period_size(hdsp);
3789
3790 /* silence everything */
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003791
Takashi Iwaib0b98112005-10-20 18:29:58 +02003792 for (i = 0; i < HDSP_MATRIX_MIXER_SIZE; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 hdsp->mixer_matrix[i] = MINUS_INFINITY_GAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
3795 for (i = 0; i < ((hdsp->io_type == H9652 || hdsp->io_type == H9632) ? 1352 : HDSP_MATRIX_MIXER_SIZE); ++i) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02003796 if (hdsp_write_gain (hdsp, i, MINUS_INFINITY_GAIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 /* H9632 specific defaults */
3801 if (hdsp->io_type == H9632) {
3802 hdsp->control_register |= (HDSP_DAGainPlus4dBu | HDSP_ADGainPlus4dBu | HDSP_PhoneGain0dB);
3803 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3804 }
3805
3806 /* set a default rate so that the channel map is set up.
3807 */
3808
3809 hdsp_set_rate(hdsp, 48000, 1);
3810
3811 return 0;
3812}
3813
3814static void hdsp_midi_tasklet(unsigned long arg)
3815{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003816 struct hdsp *hdsp = (struct hdsp *)arg;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003817
Takashi Iwaib0b98112005-10-20 18:29:58 +02003818 if (hdsp->midi[0].pending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 snd_hdsp_midi_input_read (&hdsp->midi[0]);
Takashi Iwaib0b98112005-10-20 18:29:58 +02003820 if (hdsp->midi[1].pending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 snd_hdsp_midi_input_read (&hdsp->midi[1]);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003822}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
David Howells7d12e782006-10-05 14:55:46 +01003824static irqreturn_t snd_hdsp_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003826 struct hdsp *hdsp = (struct hdsp *) dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 unsigned int status;
3828 int audio;
3829 int midi0;
3830 int midi1;
3831 unsigned int midi0status;
3832 unsigned int midi1status;
3833 int schedule = 0;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003834
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 status = hdsp_read(hdsp, HDSP_statusRegister);
3836
3837 audio = status & HDSP_audioIRQPending;
3838 midi0 = status & HDSP_midi0IRQPending;
3839 midi1 = status & HDSP_midi1IRQPending;
3840
Takashi Iwaib0b98112005-10-20 18:29:58 +02003841 if (!audio && !midi0 && !midi1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844 hdsp_write(hdsp, HDSP_interruptConfirmation, 0);
3845
3846 midi0status = hdsp_read (hdsp, HDSP_midiStatusIn0) & 0xff;
3847 midi1status = hdsp_read (hdsp, HDSP_midiStatusIn1) & 0xff;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003848
Takashi Iwaic2503cd2009-03-05 09:37:40 +01003849 if (!(hdsp->state & HDSP_InitializationComplete))
3850 return IRQ_HANDLED;
3851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (audio) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02003853 if (hdsp->capture_substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 snd_pcm_period_elapsed(hdsp->pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003855
Takashi Iwaib0b98112005-10-20 18:29:58 +02003856 if (hdsp->playback_substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 snd_pcm_period_elapsed(hdsp->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 if (midi0 && midi0status) {
3861 if (hdsp->use_midi_tasklet) {
3862 /* we disable interrupts for this input until processing is done */
3863 hdsp->control_register &= ~HDSP_Midi0InterruptEnable;
3864 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3865 hdsp->midi[0].pending = 1;
3866 schedule = 1;
3867 } else {
3868 snd_hdsp_midi_input_read (&hdsp->midi[0]);
3869 }
3870 }
Florian Faber28b26e12010-12-01 12:14:47 +01003871 if (hdsp->io_type != Multiface && hdsp->io_type != RPM && hdsp->io_type != H9632 && midi1 && midi1status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 if (hdsp->use_midi_tasklet) {
3873 /* we disable interrupts for this input until processing is done */
3874 hdsp->control_register &= ~HDSP_Midi1InterruptEnable;
3875 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register);
3876 hdsp->midi[1].pending = 1;
3877 schedule = 1;
3878 } else {
3879 snd_hdsp_midi_input_read (&hdsp->midi[1]);
3880 }
3881 }
3882 if (hdsp->use_midi_tasklet && schedule)
Takashi Iwai1f041282008-12-18 12:17:55 +01003883 tasklet_schedule(&hdsp->midi_tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 return IRQ_HANDLED;
3885}
3886
Takashi Iwai55e957d2005-11-17 14:52:13 +01003887static snd_pcm_uframes_t snd_hdsp_hw_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003889 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 return hdsp_hw_pointer(hdsp);
3891}
3892
Takashi Iwai55e957d2005-11-17 14:52:13 +01003893static char *hdsp_channel_buffer_location(struct hdsp *hdsp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 int stream,
3895 int channel)
3896
3897{
3898 int mapped_channel;
3899
Takashi Iwaida3cec32008-08-08 17:12:14 +02003900 if (snd_BUG_ON(channel < 0 || channel >= hdsp->max_channels))
3901 return NULL;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003902
Takashi Iwaib0b98112005-10-20 18:29:58 +02003903 if ((mapped_channel = hdsp->channel_map[channel]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 return NULL;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01003905
Takashi Iwaib0b98112005-10-20 18:29:58 +02003906 if (stream == SNDRV_PCM_STREAM_CAPTURE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 return hdsp->capture_buffer + (mapped_channel * HDSP_CHANNEL_BUFFER_BYTES);
Takashi Iwaib0b98112005-10-20 18:29:58 +02003908 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 return hdsp->playback_buffer + (mapped_channel * HDSP_CHANNEL_BUFFER_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910}
3911
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003912static int snd_hdsp_playback_copy(struct snd_pcm_substream *substream,
3913 int channel, unsigned long pos,
3914 void __user *src, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003916 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 char *channel_buf;
3918
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003919 if (snd_BUG_ON(pos + count > HDSP_CHANNEL_BUFFER_BYTES))
Takashi Iwaida3cec32008-08-08 17:12:14 +02003920 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
Takashi Iwaida3cec32008-08-08 17:12:14 +02003923 if (snd_BUG_ON(!channel_buf))
3924 return -EIO;
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003925 if (copy_from_user(channel_buf + pos, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 return -EFAULT;
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928}
3929
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003930static int snd_hdsp_playback_copy_kernel(struct snd_pcm_substream *substream,
3931 int channel, unsigned long pos,
3932 void *src, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003934 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 char *channel_buf;
3936
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003937 channel_buf = hdsp_channel_buffer_location(hdsp, substream->pstr->stream, channel);
3938 if (snd_BUG_ON(!channel_buf))
3939 return -EIO;
3940 memcpy(channel_buf + pos, src, count);
3941 return 0;
3942}
3943
3944static int snd_hdsp_capture_copy(struct snd_pcm_substream *substream,
3945 int channel, unsigned long pos,
3946 void __user *dst, unsigned long count)
3947{
3948 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3949 char *channel_buf;
3950
3951 if (snd_BUG_ON(pos + count > HDSP_CHANNEL_BUFFER_BYTES))
Takashi Iwaida3cec32008-08-08 17:12:14 +02003952 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
Takashi Iwaida3cec32008-08-08 17:12:14 +02003955 if (snd_BUG_ON(!channel_buf))
3956 return -EIO;
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003957 if (copy_to_user(dst, channel_buf + pos, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return -EFAULT;
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960}
3961
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003962static int snd_hdsp_capture_copy_kernel(struct snd_pcm_substream *substream,
3963 int channel, unsigned long pos,
3964 void *dst, unsigned long count)
3965{
3966 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3967 char *channel_buf;
3968
3969 channel_buf = hdsp_channel_buffer_location(hdsp, substream->pstr->stream, channel);
3970 if (snd_BUG_ON(!channel_buf))
3971 return -EIO;
3972 memcpy(dst, channel_buf + pos, count);
3973 return 0;
3974}
3975
3976static int snd_hdsp_hw_silence(struct snd_pcm_substream *substream,
3977 int channel, unsigned long pos,
3978 unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003980 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 char *channel_buf;
3982
3983 channel_buf = hdsp_channel_buffer_location (hdsp, substream->pstr->stream, channel);
Takashi Iwaida3cec32008-08-08 17:12:14 +02003984 if (snd_BUG_ON(!channel_buf))
3985 return -EIO;
Takashi Iwai0925e6b2017-05-10 20:32:25 +02003986 memset(channel_buf + pos, 0, count);
3987 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988}
3989
Takashi Iwai55e957d2005-11-17 14:52:13 +01003990static int snd_hdsp_reset(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
Takashi Iwai55e957d2005-11-17 14:52:13 +01003992 struct snd_pcm_runtime *runtime = substream->runtime;
3993 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
3994 struct snd_pcm_substream *other;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
3996 other = hdsp->capture_substream;
3997 else
3998 other = hdsp->playback_substream;
3999 if (hdsp->running)
4000 runtime->status->hw_ptr = hdsp_hw_pointer(hdsp);
4001 else
4002 runtime->status->hw_ptr = 0;
4003 if (other) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004004 struct snd_pcm_substream *s;
4005 struct snd_pcm_runtime *oruntime = other->runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01004006 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 if (s == other) {
4008 oruntime->status->hw_ptr = runtime->status->hw_ptr;
4009 break;
4010 }
4011 }
4012 }
4013 return 0;
4014}
4015
Takashi Iwai55e957d2005-11-17 14:52:13 +01004016static int snd_hdsp_hw_params(struct snd_pcm_substream *substream,
4017 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004019 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 int err;
4021 pid_t this_pid;
4022 pid_t other_pid;
4023
Takashi Iwaib0b98112005-10-20 18:29:58 +02004024 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
Takashi Iwaib0b98112005-10-20 18:29:58 +02004027 if (hdsp_check_for_firmware(hdsp, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030 spin_lock_irq(&hdsp->lock);
4031
4032 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
4033 hdsp->control_register &= ~(HDSP_SPDIFProfessional | HDSP_SPDIFNonAudio | HDSP_SPDIFEmphasis);
4034 hdsp_write(hdsp, HDSP_controlRegister, hdsp->control_register |= hdsp->creg_spdif_stream);
4035 this_pid = hdsp->playback_pid;
4036 other_pid = hdsp->capture_pid;
4037 } else {
4038 this_pid = hdsp->capture_pid;
4039 other_pid = hdsp->playback_pid;
4040 }
4041
4042 if ((other_pid > 0) && (this_pid != other_pid)) {
4043
4044 /* The other stream is open, and not by the same
4045 task as this one. Make sure that the parameters
4046 that matter are the same.
4047 */
4048
4049 if (params_rate(params) != hdsp->system_sample_rate) {
4050 spin_unlock_irq(&hdsp->lock);
4051 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE);
4052 return -EBUSY;
4053 }
4054
4055 if (params_period_size(params) != hdsp->period_bytes / 4) {
4056 spin_unlock_irq(&hdsp->lock);
4057 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
4058 return -EBUSY;
4059 }
4060
4061 /* We're fine. */
4062
4063 spin_unlock_irq(&hdsp->lock);
4064 return 0;
4065
4066 } else {
4067 spin_unlock_irq(&hdsp->lock);
4068 }
4069
4070 /* how to make sure that the rate matches an externally-set one ?
4071 */
4072
4073 spin_lock_irq(&hdsp->lock);
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02004074 if (! hdsp->clock_source_locked) {
4075 if ((err = hdsp_set_rate(hdsp, params_rate(params), 0)) < 0) {
4076 spin_unlock_irq(&hdsp->lock);
4077 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_RATE);
4078 return err;
4079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 }
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02004081 spin_unlock_irq(&hdsp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
4083 if ((err = hdsp_set_interrupt_interval(hdsp, params_period_size(params))) < 0) {
4084 _snd_pcm_hw_param_setempty(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
4085 return err;
4086 }
4087
4088 return 0;
4089}
4090
Takashi Iwai55e957d2005-11-17 14:52:13 +01004091static int snd_hdsp_channel_info(struct snd_pcm_substream *substream,
4092 struct snd_pcm_channel_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004094 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 int mapped_channel;
4096
Takashi Iwaida3cec32008-08-08 17:12:14 +02004097 if (snd_BUG_ON(info->channel >= hdsp->max_channels))
4098 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Takashi Iwaib0b98112005-10-20 18:29:58 +02004100 if ((mapped_channel = hdsp->channel_map[info->channel]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
4103 info->offset = mapped_channel * HDSP_CHANNEL_BUFFER_BYTES;
4104 info->first = 0;
4105 info->step = 32;
4106 return 0;
4107}
4108
Takashi Iwai55e957d2005-11-17 14:52:13 +01004109static int snd_hdsp_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 unsigned int cmd, void *arg)
4111{
4112 switch (cmd) {
4113 case SNDRV_PCM_IOCTL1_RESET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 return snd_hdsp_reset(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
Takashi Iwaib0b98112005-10-20 18:29:58 +02004116 return snd_hdsp_channel_info(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 default:
4118 break;
4119 }
4120
4121 return snd_pcm_lib_ioctl(substream, cmd, arg);
4122}
4123
Takashi Iwai55e957d2005-11-17 14:52:13 +01004124static int snd_hdsp_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004126 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4127 struct snd_pcm_substream *other;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 int running;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004129
Takashi Iwaib0b98112005-10-20 18:29:58 +02004130 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Takashi Iwai311e70a2006-09-06 12:13:37 +02004133 if (hdsp_check_for_firmware(hdsp, 0)) /* no auto-loading in trigger */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136 spin_lock(&hdsp->lock);
4137 running = hdsp->running;
4138 switch (cmd) {
4139 case SNDRV_PCM_TRIGGER_START:
4140 running |= 1 << substream->stream;
4141 break;
4142 case SNDRV_PCM_TRIGGER_STOP:
4143 running &= ~(1 << substream->stream);
4144 break;
4145 default:
4146 snd_BUG();
4147 spin_unlock(&hdsp->lock);
4148 return -EINVAL;
4149 }
4150 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
4151 other = hdsp->capture_substream;
4152 else
4153 other = hdsp->playback_substream;
4154
4155 if (other) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004156 struct snd_pcm_substream *s;
Takashi Iwaief991b92007-02-22 12:52:53 +01004157 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 if (s == other) {
4159 snd_pcm_trigger_done(s, substream);
4160 if (cmd == SNDRV_PCM_TRIGGER_START)
4161 running |= 1 << s->stream;
4162 else
4163 running &= ~(1 << s->stream);
4164 goto _ok;
4165 }
4166 }
4167 if (cmd == SNDRV_PCM_TRIGGER_START) {
4168 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) &&
4169 substream->stream == SNDRV_PCM_STREAM_CAPTURE)
4170 hdsp_silence_playback(hdsp);
4171 } else {
4172 if (running &&
4173 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
4174 hdsp_silence_playback(hdsp);
4175 }
4176 } else {
4177 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
4178 hdsp_silence_playback(hdsp);
4179 }
4180 _ok:
4181 snd_pcm_trigger_done(substream, substream);
4182 if (!hdsp->running && running)
4183 hdsp_start_audio(hdsp);
4184 else if (hdsp->running && !running)
4185 hdsp_stop_audio(hdsp);
4186 hdsp->running = running;
4187 spin_unlock(&hdsp->lock);
4188
4189 return 0;
4190}
4191
Takashi Iwai55e957d2005-11-17 14:52:13 +01004192static int snd_hdsp_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004194 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 int result = 0;
4196
Takashi Iwaib0b98112005-10-20 18:29:58 +02004197 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Takashi Iwaib0b98112005-10-20 18:29:58 +02004200 if (hdsp_check_for_firmware(hdsp, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
4203 spin_lock_irq(&hdsp->lock);
4204 if (!hdsp->running)
4205 hdsp_reset_hw_pointer(hdsp);
4206 spin_unlock_irq(&hdsp->lock);
4207 return result;
4208}
4209
Bhumika Goyal18ed1cf2017-08-12 21:01:25 +05304210static const struct snd_pcm_hardware snd_hdsp_playback_subinfo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211{
4212 .info = (SNDRV_PCM_INFO_MMAP |
4213 SNDRV_PCM_INFO_MMAP_VALID |
4214 SNDRV_PCM_INFO_NONINTERLEAVED |
4215 SNDRV_PCM_INFO_SYNC_START |
4216 SNDRV_PCM_INFO_DOUBLE),
4217#ifdef SNDRV_BIG_ENDIAN
4218 .formats = SNDRV_PCM_FMTBIT_S32_BE,
4219#else
4220 .formats = SNDRV_PCM_FMTBIT_S32_LE,
4221#endif
4222 .rates = (SNDRV_PCM_RATE_32000 |
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004223 SNDRV_PCM_RATE_44100 |
4224 SNDRV_PCM_RATE_48000 |
4225 SNDRV_PCM_RATE_64000 |
4226 SNDRV_PCM_RATE_88200 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 SNDRV_PCM_RATE_96000),
4228 .rate_min = 32000,
4229 .rate_max = 96000,
Florian Faber28b26e12010-12-01 12:14:47 +01004230 .channels_min = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 .channels_max = HDSP_MAX_CHANNELS,
4232 .buffer_bytes_max = HDSP_CHANNEL_BUFFER_BYTES * HDSP_MAX_CHANNELS,
4233 .period_bytes_min = (64 * 4) * 10,
4234 .period_bytes_max = (8192 * 4) * HDSP_MAX_CHANNELS,
4235 .periods_min = 2,
4236 .periods_max = 2,
4237 .fifo_size = 0
4238};
4239
Bhumika Goyal18ed1cf2017-08-12 21:01:25 +05304240static const struct snd_pcm_hardware snd_hdsp_capture_subinfo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241{
4242 .info = (SNDRV_PCM_INFO_MMAP |
4243 SNDRV_PCM_INFO_MMAP_VALID |
4244 SNDRV_PCM_INFO_NONINTERLEAVED |
4245 SNDRV_PCM_INFO_SYNC_START),
4246#ifdef SNDRV_BIG_ENDIAN
4247 .formats = SNDRV_PCM_FMTBIT_S32_BE,
4248#else
4249 .formats = SNDRV_PCM_FMTBIT_S32_LE,
4250#endif
4251 .rates = (SNDRV_PCM_RATE_32000 |
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004252 SNDRV_PCM_RATE_44100 |
4253 SNDRV_PCM_RATE_48000 |
4254 SNDRV_PCM_RATE_64000 |
4255 SNDRV_PCM_RATE_88200 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 SNDRV_PCM_RATE_96000),
4257 .rate_min = 32000,
4258 .rate_max = 96000,
Florian Faber28b26e12010-12-01 12:14:47 +01004259 .channels_min = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 .channels_max = HDSP_MAX_CHANNELS,
4261 .buffer_bytes_max = HDSP_CHANNEL_BUFFER_BYTES * HDSP_MAX_CHANNELS,
4262 .period_bytes_min = (64 * 4) * 10,
4263 .period_bytes_max = (8192 * 4) * HDSP_MAX_CHANNELS,
4264 .periods_min = 2,
4265 .periods_max = 2,
4266 .fifo_size = 0
4267};
4268
Takashi Iwai4640c032017-06-07 14:22:26 +02004269static const unsigned int hdsp_period_sizes[] = { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Takashi Iwai4640c032017-06-07 14:22:26 +02004271static const struct snd_pcm_hw_constraint_list hdsp_hw_constraints_period_sizes = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 .count = ARRAY_SIZE(hdsp_period_sizes),
4273 .list = hdsp_period_sizes,
4274 .mask = 0
4275};
4276
Takashi Iwai4640c032017-06-07 14:22:26 +02004277static const unsigned int hdsp_9632_sample_rates[] = { 32000, 44100, 48000, 64000, 88200, 96000, 128000, 176400, 192000 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
Takashi Iwai4640c032017-06-07 14:22:26 +02004279static const struct snd_pcm_hw_constraint_list hdsp_hw_constraints_9632_sample_rates = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 .count = ARRAY_SIZE(hdsp_9632_sample_rates),
4281 .list = hdsp_9632_sample_rates,
4282 .mask = 0
4283};
4284
Takashi Iwai55e957d2005-11-17 14:52:13 +01004285static int snd_hdsp_hw_rule_in_channels(struct snd_pcm_hw_params *params,
4286 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004288 struct hdsp *hdsp = rule->private;
4289 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 if (hdsp->io_type == H9632) {
4291 unsigned int list[3];
4292 list[0] = hdsp->qs_in_channels;
4293 list[1] = hdsp->ds_in_channels;
4294 list[2] = hdsp->ss_in_channels;
4295 return snd_interval_list(c, 3, list, 0);
4296 } else {
4297 unsigned int list[2];
4298 list[0] = hdsp->ds_in_channels;
4299 list[1] = hdsp->ss_in_channels;
4300 return snd_interval_list(c, 2, list, 0);
4301 }
4302}
4303
Takashi Iwai55e957d2005-11-17 14:52:13 +01004304static int snd_hdsp_hw_rule_out_channels(struct snd_pcm_hw_params *params,
4305 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306{
4307 unsigned int list[3];
Takashi Iwai55e957d2005-11-17 14:52:13 +01004308 struct hdsp *hdsp = rule->private;
4309 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 if (hdsp->io_type == H9632) {
4311 list[0] = hdsp->qs_out_channels;
4312 list[1] = hdsp->ds_out_channels;
4313 list[2] = hdsp->ss_out_channels;
4314 return snd_interval_list(c, 3, list, 0);
4315 } else {
4316 list[0] = hdsp->ds_out_channels;
4317 list[1] = hdsp->ss_out_channels;
4318 }
4319 return snd_interval_list(c, 2, list, 0);
4320}
4321
Takashi Iwai55e957d2005-11-17 14:52:13 +01004322static int snd_hdsp_hw_rule_in_channels_rate(struct snd_pcm_hw_params *params,
4323 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004325 struct hdsp *hdsp = rule->private;
4326 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4327 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 if (r->min > 96000 && hdsp->io_type == H9632) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004329 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 .min = hdsp->qs_in_channels,
4331 .max = hdsp->qs_in_channels,
4332 .integer = 1,
4333 };
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004334 return snd_interval_refine(c, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 } else if (r->min > 48000 && r->max <= 96000) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004336 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 .min = hdsp->ds_in_channels,
4338 .max = hdsp->ds_in_channels,
4339 .integer = 1,
4340 };
4341 return snd_interval_refine(c, &t);
4342 } else if (r->max < 64000) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004343 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 .min = hdsp->ss_in_channels,
4345 .max = hdsp->ss_in_channels,
4346 .integer = 1,
4347 };
4348 return snd_interval_refine(c, &t);
4349 }
4350 return 0;
4351}
4352
Takashi Iwai55e957d2005-11-17 14:52:13 +01004353static int snd_hdsp_hw_rule_out_channels_rate(struct snd_pcm_hw_params *params,
4354 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004356 struct hdsp *hdsp = rule->private;
4357 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4358 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 if (r->min > 96000 && hdsp->io_type == H9632) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004360 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 .min = hdsp->qs_out_channels,
4362 .max = hdsp->qs_out_channels,
4363 .integer = 1,
4364 };
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004365 return snd_interval_refine(c, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 } else if (r->min > 48000 && r->max <= 96000) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004367 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 .min = hdsp->ds_out_channels,
4369 .max = hdsp->ds_out_channels,
4370 .integer = 1,
4371 };
4372 return snd_interval_refine(c, &t);
4373 } else if (r->max < 64000) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004374 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 .min = hdsp->ss_out_channels,
4376 .max = hdsp->ss_out_channels,
4377 .integer = 1,
4378 };
4379 return snd_interval_refine(c, &t);
4380 }
4381 return 0;
4382}
4383
Takashi Iwai55e957d2005-11-17 14:52:13 +01004384static int snd_hdsp_hw_rule_rate_out_channels(struct snd_pcm_hw_params *params,
4385 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004387 struct hdsp *hdsp = rule->private;
4388 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4389 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 if (c->min >= hdsp->ss_out_channels) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004391 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 .min = 32000,
4393 .max = 48000,
4394 .integer = 1,
4395 };
4396 return snd_interval_refine(r, &t);
4397 } else if (c->max <= hdsp->qs_out_channels && hdsp->io_type == H9632) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004398 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 .min = 128000,
4400 .max = 192000,
4401 .integer = 1,
4402 };
4403 return snd_interval_refine(r, &t);
4404 } else if (c->max <= hdsp->ds_out_channels) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004405 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 .min = 64000,
4407 .max = 96000,
4408 .integer = 1,
4409 };
4410 return snd_interval_refine(r, &t);
4411 }
4412 return 0;
4413}
4414
Takashi Iwai55e957d2005-11-17 14:52:13 +01004415static int snd_hdsp_hw_rule_rate_in_channels(struct snd_pcm_hw_params *params,
4416 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004418 struct hdsp *hdsp = rule->private;
4419 struct snd_interval *c = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
4420 struct snd_interval *r = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 if (c->min >= hdsp->ss_in_channels) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004422 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 .min = 32000,
4424 .max = 48000,
4425 .integer = 1,
4426 };
4427 return snd_interval_refine(r, &t);
4428 } else if (c->max <= hdsp->qs_in_channels && hdsp->io_type == H9632) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004429 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 .min = 128000,
4431 .max = 192000,
4432 .integer = 1,
4433 };
4434 return snd_interval_refine(r, &t);
4435 } else if (c->max <= hdsp->ds_in_channels) {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004436 struct snd_interval t = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 .min = 64000,
4438 .max = 96000,
4439 .integer = 1,
4440 };
4441 return snd_interval_refine(r, &t);
4442 }
4443 return 0;
4444}
4445
Takashi Iwai55e957d2005-11-17 14:52:13 +01004446static int snd_hdsp_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004448 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4449 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
Takashi Iwaib0b98112005-10-20 18:29:58 +02004451 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Takashi Iwaib0b98112005-10-20 18:29:58 +02004454 if (hdsp_check_for_firmware(hdsp, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 spin_lock_irq(&hdsp->lock);
4458
4459 snd_pcm_set_sync(substream);
4460
4461 runtime->hw = snd_hdsp_playback_subinfo;
4462 runtime->dma_area = hdsp->playback_buffer;
4463 runtime->dma_bytes = HDSP_DMA_AREA_BYTES;
4464
4465 hdsp->playback_pid = current->pid;
4466 hdsp->playback_substream = substream;
4467
4468 spin_unlock_irq(&hdsp->lock);
4469
4470 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4471 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hdsp_hw_constraints_period_sizes);
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02004472 if (hdsp->clock_source_locked) {
4473 runtime->hw.rate_min = runtime->hw.rate_max = hdsp->system_sample_rate;
4474 } else if (hdsp->io_type == H9632) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 runtime->hw.rate_max = 192000;
4476 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
4477 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hdsp_hw_constraints_9632_sample_rates);
4478 }
Takashi Iwaie3ea4d82005-07-04 18:12:39 +02004479 if (hdsp->io_type == H9632) {
4480 runtime->hw.channels_min = hdsp->qs_out_channels;
4481 runtime->hw.channels_max = hdsp->ss_out_channels;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004482 }
4483
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4485 snd_hdsp_hw_rule_out_channels, hdsp,
4486 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4487 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4488 snd_hdsp_hw_rule_out_channels_rate, hdsp,
4489 SNDRV_PCM_HW_PARAM_RATE, -1);
4490 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4491 snd_hdsp_hw_rule_rate_out_channels, hdsp,
4492 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4493
Florian Faber28b26e12010-12-01 12:14:47 +01004494 if (RPM != hdsp->io_type) {
4495 hdsp->creg_spdif_stream = hdsp->creg_spdif;
4496 hdsp->spdif_ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
4497 snd_ctl_notify(hdsp->card, SNDRV_CTL_EVENT_MASK_VALUE |
4498 SNDRV_CTL_EVENT_MASK_INFO, &hdsp->spdif_ctl->id);
4499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 return 0;
4501}
4502
Takashi Iwai55e957d2005-11-17 14:52:13 +01004503static int snd_hdsp_playback_release(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004505 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
4507 spin_lock_irq(&hdsp->lock);
4508
4509 hdsp->playback_pid = -1;
4510 hdsp->playback_substream = NULL;
4511
4512 spin_unlock_irq(&hdsp->lock);
4513
Florian Faber28b26e12010-12-01 12:14:47 +01004514 if (RPM != hdsp->io_type) {
4515 hdsp->spdif_ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
4516 snd_ctl_notify(hdsp->card, SNDRV_CTL_EVENT_MASK_VALUE |
4517 SNDRV_CTL_EVENT_MASK_INFO, &hdsp->spdif_ctl->id);
4518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 return 0;
4520}
4521
4522
Takashi Iwai55e957d2005-11-17 14:52:13 +01004523static int snd_hdsp_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004525 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
4526 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Takashi Iwaib0b98112005-10-20 18:29:58 +02004528 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Takashi Iwaib0b98112005-10-20 18:29:58 +02004531 if (hdsp_check_for_firmware(hdsp, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
4534 spin_lock_irq(&hdsp->lock);
4535
4536 snd_pcm_set_sync(substream);
4537
4538 runtime->hw = snd_hdsp_capture_subinfo;
4539 runtime->dma_area = hdsp->capture_buffer;
4540 runtime->dma_bytes = HDSP_DMA_AREA_BYTES;
4541
4542 hdsp->capture_pid = current->pid;
4543 hdsp->capture_substream = substream;
4544
4545 spin_unlock_irq(&hdsp->lock);
4546
4547 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
4548 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hdsp_hw_constraints_period_sizes);
4549 if (hdsp->io_type == H9632) {
4550 runtime->hw.channels_min = hdsp->qs_in_channels;
4551 runtime->hw.channels_max = hdsp->ss_in_channels;
4552 runtime->hw.rate_max = 192000;
4553 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
4554 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hdsp_hw_constraints_9632_sample_rates);
4555 }
4556 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4557 snd_hdsp_hw_rule_in_channels, hdsp,
4558 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4559 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
4560 snd_hdsp_hw_rule_in_channels_rate, hdsp,
4561 SNDRV_PCM_HW_PARAM_RATE, -1);
4562 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
4563 snd_hdsp_hw_rule_rate_in_channels, hdsp,
4564 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
4565 return 0;
4566}
4567
Takashi Iwai55e957d2005-11-17 14:52:13 +01004568static int snd_hdsp_capture_release(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004570 struct hdsp *hdsp = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
4572 spin_lock_irq(&hdsp->lock);
4573
4574 hdsp->capture_pid = -1;
4575 hdsp->capture_substream = NULL;
4576
4577 spin_unlock_irq(&hdsp->lock);
4578 return 0;
4579}
4580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581/* helper functions for copying meter values */
4582static inline int copy_u32_le(void __user *dest, void __iomem *src)
4583{
4584 u32 val = readl(src);
4585 return copy_to_user(dest, &val, 4);
4586}
4587
4588static inline int copy_u64_le(void __user *dest, void __iomem *src_low, void __iomem *src_high)
4589{
4590 u32 rms_low, rms_high;
4591 u64 rms;
4592 rms_low = readl(src_low);
4593 rms_high = readl(src_high);
4594 rms = ((u64)rms_high << 32) | rms_low;
4595 return copy_to_user(dest, &rms, 8);
4596}
4597
4598static inline int copy_u48_le(void __user *dest, void __iomem *src_low, void __iomem *src_high)
4599{
4600 u32 rms_low, rms_high;
4601 u64 rms;
4602 rms_low = readl(src_low) & 0xffffff00;
4603 rms_high = readl(src_high) & 0xffffff00;
4604 rms = ((u64)rms_high << 32) | rms_low;
4605 return copy_to_user(dest, &rms, 8);
4606}
4607
Takashi Iwai55e957d2005-11-17 14:52:13 +01004608static int hdsp_9652_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609{
4610 int doublespeed = 0;
4611 int i, j, channels, ofs;
4612
4613 if (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DoubleSpeedStatus)
4614 doublespeed = 1;
4615 channels = doublespeed ? 14 : 26;
4616 for (i = 0, j = 0; i < 26; ++i) {
4617 if (doublespeed && (i & 4))
4618 continue;
4619 ofs = HDSP_9652_peakBase - j * 4;
4620 if (copy_u32_le(&peak_rms->input_peaks[i], hdsp->iobase + ofs))
4621 return -EFAULT;
4622 ofs -= channels * 4;
4623 if (copy_u32_le(&peak_rms->playback_peaks[i], hdsp->iobase + ofs))
4624 return -EFAULT;
4625 ofs -= channels * 4;
4626 if (copy_u32_le(&peak_rms->output_peaks[i], hdsp->iobase + ofs))
4627 return -EFAULT;
4628 ofs = HDSP_9652_rmsBase + j * 8;
4629 if (copy_u48_le(&peak_rms->input_rms[i], hdsp->iobase + ofs,
4630 hdsp->iobase + ofs + 4))
4631 return -EFAULT;
4632 ofs += channels * 8;
4633 if (copy_u48_le(&peak_rms->playback_rms[i], hdsp->iobase + ofs,
4634 hdsp->iobase + ofs + 4))
4635 return -EFAULT;
4636 ofs += channels * 8;
4637 if (copy_u48_le(&peak_rms->output_rms[i], hdsp->iobase + ofs,
4638 hdsp->iobase + ofs + 4))
4639 return -EFAULT;
4640 j++;
4641 }
4642 return 0;
4643}
4644
Takashi Iwai55e957d2005-11-17 14:52:13 +01004645static int hdsp_9632_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646{
4647 int i, j;
Takashi Iwai55e957d2005-11-17 14:52:13 +01004648 struct hdsp_9632_meters __iomem *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 int doublespeed = 0;
4650
4651 if (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DoubleSpeedStatus)
4652 doublespeed = 1;
Takashi Iwai55e957d2005-11-17 14:52:13 +01004653 m = (struct hdsp_9632_meters __iomem *)(hdsp->iobase+HDSP_9632_metersBase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 for (i = 0, j = 0; i < 16; ++i, ++j) {
4655 if (copy_u32_le(&peak_rms->input_peaks[i], &m->input_peak[j]))
4656 return -EFAULT;
4657 if (copy_u32_le(&peak_rms->playback_peaks[i], &m->playback_peak[j]))
4658 return -EFAULT;
4659 if (copy_u32_le(&peak_rms->output_peaks[i], &m->output_peak[j]))
4660 return -EFAULT;
4661 if (copy_u64_le(&peak_rms->input_rms[i], &m->input_rms_low[j],
4662 &m->input_rms_high[j]))
4663 return -EFAULT;
4664 if (copy_u64_le(&peak_rms->playback_rms[i], &m->playback_rms_low[j],
4665 &m->playback_rms_high[j]))
4666 return -EFAULT;
4667 if (copy_u64_le(&peak_rms->output_rms[i], &m->output_rms_low[j],
4668 &m->output_rms_high[j]))
4669 return -EFAULT;
4670 if (doublespeed && i == 3) i += 4;
4671 }
4672 return 0;
4673}
4674
Takashi Iwai55e957d2005-11-17 14:52:13 +01004675static int hdsp_get_peak(struct hdsp *hdsp, struct hdsp_peak_rms __user *peak_rms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676{
4677 int i;
4678
4679 for (i = 0; i < 26; i++) {
4680 if (copy_u32_le(&peak_rms->playback_peaks[i],
4681 hdsp->iobase + HDSP_playbackPeakLevel + i * 4))
4682 return -EFAULT;
4683 if (copy_u32_le(&peak_rms->input_peaks[i],
4684 hdsp->iobase + HDSP_inputPeakLevel + i * 4))
4685 return -EFAULT;
4686 }
4687 for (i = 0; i < 28; i++) {
4688 if (copy_u32_le(&peak_rms->output_peaks[i],
4689 hdsp->iobase + HDSP_outputPeakLevel + i * 4))
4690 return -EFAULT;
4691 }
4692 for (i = 0; i < 26; ++i) {
4693 if (copy_u64_le(&peak_rms->playback_rms[i],
4694 hdsp->iobase + HDSP_playbackRmsLevel + i * 8 + 4,
4695 hdsp->iobase + HDSP_playbackRmsLevel + i * 8))
4696 return -EFAULT;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004697 if (copy_u64_le(&peak_rms->input_rms[i],
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 hdsp->iobase + HDSP_inputRmsLevel + i * 8 + 4,
4699 hdsp->iobase + HDSP_inputRmsLevel + i * 8))
4700 return -EFAULT;
4701 }
4702 return 0;
4703}
4704
Takashi Iwai55e957d2005-11-17 14:52:13 +01004705static int snd_hdsp_hwdep_ioctl(struct snd_hwdep *hw, struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706{
Joe Perches9fe856e2010-09-04 18:52:54 -07004707 struct hdsp *hdsp = hw->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 void __user *argp = (void __user *)arg;
Tim Blechmann3ae7e2e2008-11-08 14:42:18 +01004709 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
4711 switch (cmd) {
4712 case SNDRV_HDSP_IOCTL_GET_PEAK_RMS: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004713 struct hdsp_peak_rms __user *peak_rms = (struct hdsp_peak_rms __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Tim Blechmann3ae7e2e2008-11-08 14:42:18 +01004715 err = hdsp_check_for_iobox(hdsp);
4716 if (err < 0)
4717 return err;
4718
4719 err = hdsp_check_for_firmware(hdsp, 1);
4720 if (err < 0)
4721 return err;
4722
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 if (!(hdsp->state & HDSP_FirmwareLoaded)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01004724 dev_err(hdsp->card->dev,
4725 "firmware needs to be uploaded to the card.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 return -EINVAL;
4727 }
4728
4729 switch (hdsp->io_type) {
4730 case H9652:
4731 return hdsp_9652_get_peak(hdsp, peak_rms);
4732 case H9632:
4733 return hdsp_9632_get_peak(hdsp, peak_rms);
4734 default:
4735 return hdsp_get_peak(hdsp, peak_rms);
4736 }
4737 }
4738 case SNDRV_HDSP_IOCTL_GET_CONFIG_INFO: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004739 struct hdsp_config_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 unsigned long flags;
4741 int i;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004742
Tim Blechmann3ae7e2e2008-11-08 14:42:18 +01004743 err = hdsp_check_for_iobox(hdsp);
4744 if (err < 0)
4745 return err;
4746
4747 err = hdsp_check_for_firmware(hdsp, 1);
4748 if (err < 0)
4749 return err;
4750
Dan Rosenberge68d3b32010-09-25 11:07:27 -04004751 memset(&info, 0, sizeof(info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 spin_lock_irqsave(&hdsp->lock, flags);
4753 info.pref_sync_ref = (unsigned char)hdsp_pref_sync_ref(hdsp);
4754 info.wordclock_sync_check = (unsigned char)hdsp_wc_sync_check(hdsp);
Takashi Iwaib0b98112005-10-20 18:29:58 +02004755 if (hdsp->io_type != H9632)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 info.adatsync_sync_check = (unsigned char)hdsp_adatsync_sync_check(hdsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 info.spdif_sync_check = (unsigned char)hdsp_spdif_sync_check(hdsp);
Florian Faber28b26e12010-12-01 12:14:47 +01004758 for (i = 0; i < ((hdsp->io_type != Multiface && hdsp->io_type != RPM && hdsp->io_type != H9632) ? 3 : 1); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 info.adat_sync_check[i] = (unsigned char)hdsp_adat_sync_check(hdsp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 info.spdif_in = (unsigned char)hdsp_spdif_in(hdsp);
Adrian Knoth4833c672013-01-15 18:52:22 +01004761 info.spdif_out = (unsigned char)hdsp_toggle_setting(hdsp,
4762 HDSP_SPDIFOpticalOut);
4763 info.spdif_professional = (unsigned char)
4764 hdsp_toggle_setting(hdsp, HDSP_SPDIFProfessional);
4765 info.spdif_emphasis = (unsigned char)
4766 hdsp_toggle_setting(hdsp, HDSP_SPDIFEmphasis);
4767 info.spdif_nonaudio = (unsigned char)
4768 hdsp_toggle_setting(hdsp, HDSP_SPDIFNonAudio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 info.spdif_sample_rate = hdsp_spdif_sample_rate(hdsp);
4770 info.system_sample_rate = hdsp->system_sample_rate;
4771 info.autosync_sample_rate = hdsp_external_sample_rate(hdsp);
4772 info.system_clock_mode = (unsigned char)hdsp_system_clock_mode(hdsp);
4773 info.clock_source = (unsigned char)hdsp_clock_source(hdsp);
4774 info.autosync_ref = (unsigned char)hdsp_autosync_ref(hdsp);
Adrian Knoth4833c672013-01-15 18:52:22 +01004775 info.line_out = (unsigned char)
4776 hdsp_toggle_setting(hdsp, HDSP_LineOut);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 if (hdsp->io_type == H9632) {
4778 info.da_gain = (unsigned char)hdsp_da_gain(hdsp);
4779 info.ad_gain = (unsigned char)hdsp_ad_gain(hdsp);
4780 info.phone_gain = (unsigned char)hdsp_phone_gain(hdsp);
Adrian Knoth4833c672013-01-15 18:52:22 +01004781 info.xlr_breakout_cable =
4782 (unsigned char)hdsp_toggle_setting(hdsp,
4783 HDSP_XLRBreakoutCable);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004784
Florian Faber28b26e12010-12-01 12:14:47 +01004785 } else if (hdsp->io_type == RPM) {
4786 info.da_gain = (unsigned char) hdsp_rpm_input12(hdsp);
4787 info.ad_gain = (unsigned char) hdsp_rpm_input34(hdsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 }
Takashi Iwaib0b98112005-10-20 18:29:58 +02004789 if (hdsp->io_type == H9632 || hdsp->io_type == H9652)
Adrian Knoth4833c672013-01-15 18:52:22 +01004790 info.analog_extension_board =
4791 (unsigned char)hdsp_toggle_setting(hdsp,
4792 HDSP_AnalogExtensionBoard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 spin_unlock_irqrestore(&hdsp->lock, flags);
4794 if (copy_to_user(argp, &info, sizeof(info)))
4795 return -EFAULT;
4796 break;
4797 }
4798 case SNDRV_HDSP_IOCTL_GET_9632_AEB: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004799 struct hdsp_9632_aeb h9632_aeb;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004800
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 if (hdsp->io_type != H9632) return -EINVAL;
4802 h9632_aeb.aebi = hdsp->ss_in_channels - H9632_SS_CHANNELS;
4803 h9632_aeb.aebo = hdsp->ss_out_channels - H9632_SS_CHANNELS;
4804 if (copy_to_user(argp, &h9632_aeb, sizeof(h9632_aeb)))
4805 return -EFAULT;
4806 break;
4807 }
4808 case SNDRV_HDSP_IOCTL_GET_VERSION: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004809 struct hdsp_version hdsp_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 int err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004811
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return -EINVAL;
4813 if (hdsp->io_type == Undefined) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02004814 if ((err = hdsp_get_iobox_version(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 }
Dan Carpenterd14df332013-10-16 11:44:25 +03004817 memset(&hdsp_version, 0, sizeof(hdsp_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 hdsp_version.io_type = hdsp->io_type;
4819 hdsp_version.firmware_rev = hdsp->firmware_rev;
Takashi Iwaib0b98112005-10-20 18:29:58 +02004820 if ((err = copy_to_user(argp, &hdsp_version, sizeof(hdsp_version))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 break;
4823 }
4824 case SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004825 struct hdsp_firmware __user *firmware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 u32 __user *firmware_data;
4827 int err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004828
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 if (hdsp->io_type == H9652 || hdsp->io_type == H9632) return -EINVAL;
4830 /* SNDRV_HDSP_IOCTL_GET_VERSION must have been called */
4831 if (hdsp->io_type == Undefined) return -EINVAL;
4832
4833 if (hdsp->state & (HDSP_FirmwareCached | HDSP_FirmwareLoaded))
4834 return -EBUSY;
4835
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01004836 dev_info(hdsp->card->dev,
4837 "initializing firmware upload\n");
Takashi Iwai55e957d2005-11-17 14:52:13 +01004838 firmware = (struct hdsp_firmware __user *)argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
Takashi Iwaib0b98112005-10-20 18:29:58 +02004840 if (get_user(firmware_data, &firmware->firmware_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 return -EFAULT;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004842
Takashi Iwaib0b98112005-10-20 18:29:58 +02004843 if (hdsp_check_for_iobox (hdsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Takashi Iwai90caaef2012-11-22 16:55:11 +01004846 if (!hdsp->fw_uploaded) {
4847 hdsp->fw_uploaded = vmalloc(HDSP_FIRMWARE_SIZE);
4848 if (!hdsp->fw_uploaded)
4849 return -ENOMEM;
4850 }
4851
4852 if (copy_from_user(hdsp->fw_uploaded, firmware_data,
4853 HDSP_FIRMWARE_SIZE)) {
4854 vfree(hdsp->fw_uploaded);
4855 hdsp->fw_uploaded = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 return -EFAULT;
Takashi Iwai90caaef2012-11-22 16:55:11 +01004857 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 hdsp->state |= HDSP_FirmwareCached;
4860
Takashi Iwaib0b98112005-10-20 18:29:58 +02004861 if ((err = snd_hdsp_load_firmware_from_cache(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004863
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 if (!(hdsp->state & HDSP_InitializationComplete)) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02004865 if ((err = snd_hdsp_enable_io(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004867
4868 snd_hdsp_initialize_channels(hdsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 snd_hdsp_initialize_midi_flush(hdsp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 if ((err = snd_hdsp_create_alsa_devices(hdsp->card, hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01004872 dev_err(hdsp->card->dev,
4873 "error creating alsa devices\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02004874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 }
4876 }
4877 break;
4878 }
4879 case SNDRV_HDSP_IOCTL_GET_MIXER: {
Takashi Iwai55e957d2005-11-17 14:52:13 +01004880 struct hdsp_mixer __user *mixer = (struct hdsp_mixer __user *)argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 if (copy_to_user(mixer->matrix, hdsp->mixer_matrix, sizeof(unsigned short)*HDSP_MATRIX_MIXER_SIZE))
4882 return -EFAULT;
4883 break;
4884 }
4885 default:
4886 return -EINVAL;
4887 }
4888 return 0;
4889}
4890
Julia Lawall6769e9882016-09-02 00:13:10 +02004891static const struct snd_pcm_ops snd_hdsp_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 .open = snd_hdsp_playback_open,
4893 .close = snd_hdsp_playback_release,
4894 .ioctl = snd_hdsp_ioctl,
4895 .hw_params = snd_hdsp_hw_params,
4896 .prepare = snd_hdsp_prepare,
4897 .trigger = snd_hdsp_trigger,
4898 .pointer = snd_hdsp_hw_pointer,
Takashi Iwai0925e6b2017-05-10 20:32:25 +02004899 .copy_user = snd_hdsp_playback_copy,
4900 .copy_kernel = snd_hdsp_playback_copy_kernel,
4901 .fill_silence = snd_hdsp_hw_silence,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902};
4903
Julia Lawall6769e9882016-09-02 00:13:10 +02004904static const struct snd_pcm_ops snd_hdsp_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 .open = snd_hdsp_capture_open,
4906 .close = snd_hdsp_capture_release,
4907 .ioctl = snd_hdsp_ioctl,
4908 .hw_params = snd_hdsp_hw_params,
4909 .prepare = snd_hdsp_prepare,
4910 .trigger = snd_hdsp_trigger,
4911 .pointer = snd_hdsp_hw_pointer,
Takashi Iwai0925e6b2017-05-10 20:32:25 +02004912 .copy_user = snd_hdsp_capture_copy,
4913 .copy_kernel = snd_hdsp_capture_copy_kernel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914};
4915
Takashi Iwai92eed662008-02-22 18:35:56 +01004916static int snd_hdsp_create_hwdep(struct snd_card *card, struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004918 struct snd_hwdep *hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 int err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004920
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 if ((err = snd_hwdep_new(card, "HDSP hwdep", 0, &hw)) < 0)
4922 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004923
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 hdsp->hwdep = hw;
4925 hw->private_data = hdsp;
4926 strcpy(hw->name, "HDSP hwdep interface");
4927
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 hw->ops.ioctl = snd_hdsp_hwdep_ioctl;
Andre Schramm42eb9232012-05-07 18:52:51 +02004929 hw->ops.ioctl_compat = snd_hdsp_hwdep_ioctl;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 return 0;
4932}
4933
Takashi Iwai55e957d2005-11-17 14:52:13 +01004934static int snd_hdsp_create_pcm(struct snd_card *card, struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935{
Takashi Iwai55e957d2005-11-17 14:52:13 +01004936 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 int err;
4938
4939 if ((err = snd_pcm_new(card, hdsp->card_name, 0, 1, 1, &pcm)) < 0)
4940 return err;
4941
4942 hdsp->pcm = pcm;
4943 pcm->private_data = hdsp;
4944 strcpy(pcm->name, hdsp->card_name);
4945
4946 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_hdsp_playback_ops);
4947 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_hdsp_capture_ops);
4948
4949 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
4950
4951 return 0;
4952}
4953
Takashi Iwai55e957d2005-11-17 14:52:13 +01004954static void snd_hdsp_9652_enable_mixer (struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955{
4956 hdsp->control2_register |= HDSP_9652_ENABLE_MIXER;
4957 hdsp_write (hdsp, HDSP_control2Reg, hdsp->control2_register);
4958}
4959
Takashi Iwai55e957d2005-11-17 14:52:13 +01004960static int snd_hdsp_enable_io (struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961{
4962 int i;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 if (hdsp_fifo_wait (hdsp, 0, 100)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01004965 dev_err(hdsp->card->dev,
4966 "enable_io fifo_wait failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 return -EIO;
4968 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 for (i = 0; i < hdsp->max_channels; ++i) {
4971 hdsp_write (hdsp, HDSP_inputEnable + (4 * i), 1);
4972 hdsp_write (hdsp, HDSP_outputEnable + (4 * i), 1);
4973 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004974
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 return 0;
4976}
4977
Takashi Iwai55e957d2005-11-17 14:52:13 +01004978static void snd_hdsp_initialize_channels(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979{
4980 int status, aebi_channels, aebo_channels;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004981
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 switch (hdsp->io_type) {
4983 case Digiface:
4984 hdsp->card_name = "RME Hammerfall DSP + Digiface";
4985 hdsp->ss_in_channels = hdsp->ss_out_channels = DIGIFACE_SS_CHANNELS;
4986 hdsp->ds_in_channels = hdsp->ds_out_channels = DIGIFACE_DS_CHANNELS;
4987 break;
4988
4989 case H9652:
4990 hdsp->card_name = "RME Hammerfall HDSP 9652";
4991 hdsp->ss_in_channels = hdsp->ss_out_channels = H9652_SS_CHANNELS;
4992 hdsp->ds_in_channels = hdsp->ds_out_channels = H9652_DS_CHANNELS;
4993 break;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01004994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 case H9632:
4996 status = hdsp_read(hdsp, HDSP_statusRegister);
4997 /* HDSP_AEBx bits are low when AEB are connected */
4998 aebi_channels = (status & HDSP_AEBI) ? 0 : 4;
4999 aebo_channels = (status & HDSP_AEBO) ? 0 : 4;
5000 hdsp->card_name = "RME Hammerfall HDSP 9632";
5001 hdsp->ss_in_channels = H9632_SS_CHANNELS+aebi_channels;
5002 hdsp->ds_in_channels = H9632_DS_CHANNELS+aebi_channels;
5003 hdsp->qs_in_channels = H9632_QS_CHANNELS+aebi_channels;
5004 hdsp->ss_out_channels = H9632_SS_CHANNELS+aebo_channels;
5005 hdsp->ds_out_channels = H9632_DS_CHANNELS+aebo_channels;
5006 hdsp->qs_out_channels = H9632_QS_CHANNELS+aebo_channels;
5007 break;
5008
5009 case Multiface:
5010 hdsp->card_name = "RME Hammerfall DSP + Multiface";
5011 hdsp->ss_in_channels = hdsp->ss_out_channels = MULTIFACE_SS_CHANNELS;
5012 hdsp->ds_in_channels = hdsp->ds_out_channels = MULTIFACE_DS_CHANNELS;
5013 break;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005014
Florian Faber28b26e12010-12-01 12:14:47 +01005015 case RPM:
5016 hdsp->card_name = "RME Hammerfall DSP + RPM";
5017 hdsp->ss_in_channels = RPM_CHANNELS-1;
5018 hdsp->ss_out_channels = RPM_CHANNELS;
5019 hdsp->ds_in_channels = RPM_CHANNELS-1;
5020 hdsp->ds_out_channels = RPM_CHANNELS;
5021 break;
5022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 default:
5024 /* should never get here */
5025 break;
5026 }
5027}
5028
Takashi Iwai55e957d2005-11-17 14:52:13 +01005029static void snd_hdsp_initialize_midi_flush (struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030{
5031 snd_hdsp_flush_midi_input (hdsp, 0);
5032 snd_hdsp_flush_midi_input (hdsp, 1);
5033}
5034
Takashi Iwai55e957d2005-11-17 14:52:13 +01005035static int snd_hdsp_create_alsa_devices(struct snd_card *card, struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036{
5037 int err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005038
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 if ((err = snd_hdsp_create_pcm(card, hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005040 dev_err(card->dev,
5041 "Error creating pcm interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 return err;
5043 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005044
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
5046 if ((err = snd_hdsp_create_midi(card, hdsp, 0)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005047 dev_err(card->dev,
5048 "Error creating first midi interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 return err;
5050 }
5051
5052 if (hdsp->io_type == Digiface || hdsp->io_type == H9652) {
5053 if ((err = snd_hdsp_create_midi(card, hdsp, 1)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005054 dev_err(card->dev,
5055 "Error creating second midi interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 return err;
5057 }
5058 }
5059
5060 if ((err = snd_hdsp_create_controls(card, hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005061 dev_err(card->dev,
5062 "Error creating ctl interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 return err;
5064 }
5065
5066 snd_hdsp_proc_init(hdsp);
5067
5068 hdsp->system_sample_rate = -1;
5069 hdsp->playback_pid = -1;
5070 hdsp->capture_pid = -1;
5071 hdsp->capture_substream = NULL;
5072 hdsp->playback_substream = NULL;
5073
5074 if ((err = snd_hdsp_set_defaults(hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005075 dev_err(card->dev,
5076 "Error setting default values\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 return err;
5078 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 if (!(hdsp->state & HDSP_InitializationComplete)) {
Clemens Ladischb73c1c12005-09-02 08:49:21 +02005081 strcpy(card->shortname, "Hammerfall DSP");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005082 sprintf(card->longname, "%s at 0x%lx, irq %d", hdsp->card_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 hdsp->port, hdsp->irq);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005084
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 if ((err = snd_card_register(card)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005086 dev_err(card->dev,
5087 "error registering card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 return err;
5089 }
5090 hdsp->state |= HDSP_InitializationComplete;
5091 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 return 0;
5094}
5095
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096/* load firmware via hotplug fw loader */
Takashi Iwai92eed662008-02-22 18:35:56 +01005097static int hdsp_request_fw_loader(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098{
5099 const char *fwfile;
5100 const struct firmware *fw;
5101 int err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
5104 return 0;
5105 if (hdsp->io_type == Undefined) {
5106 if ((err = hdsp_get_iobox_version(hdsp)) < 0)
5107 return err;
5108 if (hdsp->io_type == H9652 || hdsp->io_type == H9632)
5109 return 0;
5110 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 /* caution: max length of firmware filename is 30! */
5113 switch (hdsp->io_type) {
Florian Faber28b26e12010-12-01 12:14:47 +01005114 case RPM:
5115 fwfile = "rpm_firmware.bin";
5116 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 case Multiface:
5118 if (hdsp->firmware_rev == 0xa)
5119 fwfile = "multiface_firmware.bin";
5120 else
5121 fwfile = "multiface_firmware_rev11.bin";
5122 break;
5123 case Digiface:
5124 if (hdsp->firmware_rev == 0xa)
5125 fwfile = "digiface_firmware.bin";
5126 else
5127 fwfile = "digiface_firmware_rev11.bin";
5128 break;
5129 default:
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005130 dev_err(hdsp->card->dev,
5131 "invalid io_type %d\n", hdsp->io_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 return -EINVAL;
5133 }
5134
5135 if (request_firmware(&fw, fwfile, &hdsp->pci->dev)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005136 dev_err(hdsp->card->dev,
5137 "cannot load firmware %s\n", fwfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 return -ENOENT;
5139 }
Takashi Iwai90caaef2012-11-22 16:55:11 +01005140 if (fw->size < HDSP_FIRMWARE_SIZE) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005141 dev_err(hdsp->card->dev,
5142 "too short firmware size %d (expected %d)\n",
Takashi Iwai90caaef2012-11-22 16:55:11 +01005143 (int)fw->size, HDSP_FIRMWARE_SIZE);
Sudip Mukherjee29d28c52015-09-11 19:10:38 +05305144 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 return -EINVAL;
5146 }
Thomas Charbonnel7679a032005-04-25 11:35:29 +02005147
Takashi Iwai90caaef2012-11-22 16:55:11 +01005148 hdsp->firmware = fw;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 hdsp->state |= HDSP_FirmwareCached;
5151
5152 if ((err = snd_hdsp_load_firmware_from_cache(hdsp)) < 0)
5153 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 if (!(hdsp->state & HDSP_InitializationComplete)) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02005156 if ((err = snd_hdsp_enable_io(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
5159 if ((err = snd_hdsp_create_hwdep(hdsp->card, hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005160 dev_err(hdsp->card->dev,
5161 "error creating hwdep device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 return err;
5163 }
5164 snd_hdsp_initialize_channels(hdsp);
5165 snd_hdsp_initialize_midi_flush(hdsp);
5166 if ((err = snd_hdsp_create_alsa_devices(hdsp->card, hdsp)) < 0) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005167 dev_err(hdsp->card->dev,
5168 "error creating alsa devices\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 return err;
5170 }
5171 }
5172 return 0;
5173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Bill Pembertone23e7a12012-12-06 12:35:10 -05005175static int snd_hdsp_create(struct snd_card *card,
5176 struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177{
5178 struct pci_dev *pci = hdsp->pci;
5179 int err;
5180 int is_9652 = 0;
5181 int is_9632 = 0;
5182
5183 hdsp->irq = -1;
5184 hdsp->state = 0;
5185 hdsp->midi[0].rmidi = NULL;
5186 hdsp->midi[1].rmidi = NULL;
5187 hdsp->midi[0].input = NULL;
5188 hdsp->midi[1].input = NULL;
5189 hdsp->midi[0].output = NULL;
5190 hdsp->midi[1].output = NULL;
5191 hdsp->midi[0].pending = 0;
5192 hdsp->midi[1].pending = 0;
5193 spin_lock_init(&hdsp->midi[0].lock);
5194 spin_lock_init(&hdsp->midi[1].lock);
5195 hdsp->iobase = NULL;
5196 hdsp->control_register = 0;
5197 hdsp->control2_register = 0;
5198 hdsp->io_type = Undefined;
5199 hdsp->max_channels = 26;
5200
5201 hdsp->card = card;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005202
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 spin_lock_init(&hdsp->lock);
5204
5205 tasklet_init(&hdsp->midi_tasklet, hdsp_midi_tasklet, (unsigned long)hdsp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005206
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 pci_read_config_word(hdsp->pci, PCI_CLASS_REVISION, &hdsp->firmware_rev);
5208 hdsp->firmware_rev &= 0xff;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005209
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 /* From Martin Bjoernsen :
5211 "It is important that the card's latency timer register in
5212 the PCI configuration space is set to a value much larger
5213 than 0 by the computer's BIOS or the driver.
5214 The windows driver always sets this 8 bit register [...]
5215 to its maximum 255 to avoid problems with some computers."
5216 */
5217 pci_write_config_byte(hdsp->pci, PCI_LATENCY_TIMER, 0xFF);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005218
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 strcpy(card->driver, "H-DSP");
5220 strcpy(card->mixername, "Xilinx FPGA");
5221
Takashi Iwaib0b98112005-10-20 18:29:58 +02005222 if (hdsp->firmware_rev < 0xa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 return -ENODEV;
Takashi Iwaib0b98112005-10-20 18:29:58 +02005224 else if (hdsp->firmware_rev < 0x64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 hdsp->card_name = "RME Hammerfall DSP";
Takashi Iwaib0b98112005-10-20 18:29:58 +02005226 else if (hdsp->firmware_rev < 0x96) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 hdsp->card_name = "RME HDSP 9652";
5228 is_9652 = 1;
5229 } else {
5230 hdsp->card_name = "RME HDSP 9632";
5231 hdsp->max_channels = 16;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005232 is_9632 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 }
5234
Takashi Iwaib0b98112005-10-20 18:29:58 +02005235 if ((err = pci_enable_device(pci)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
5238 pci_set_master(hdsp->pci);
5239
5240 if ((err = pci_request_regions(pci, "hdsp")) < 0)
5241 return err;
5242 hdsp->port = pci_resource_start(pci, 0);
5243 if ((hdsp->iobase = ioremap_nocache(hdsp->port, HDSP_IO_EXTENT)) == NULL) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005244 dev_err(hdsp->card->dev, "unable to remap region 0x%lx-0x%lx\n",
5245 hdsp->port, hdsp->port + HDSP_IO_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 return -EBUSY;
5247 }
5248
Takashi Iwai437a5a42006-11-21 12:14:23 +01005249 if (request_irq(pci->irq, snd_hdsp_interrupt, IRQF_SHARED,
Takashi Iwai934c2b62011-06-10 16:36:37 +02005250 KBUILD_MODNAME, hdsp)) {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005251 dev_err(hdsp->card->dev, "unable to use IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 return -EBUSY;
5253 }
5254
5255 hdsp->irq = pci->irq;
Remy Bruno176546a2006-10-16 12:32:53 +02005256 hdsp->precise_ptr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 hdsp->use_midi_tasklet = 1;
Remy Brunod7923b22006-10-17 12:41:56 +02005258 hdsp->dds_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Takashi Iwaib0b98112005-10-20 18:29:58 +02005260 if ((err = snd_hdsp_initialize_memory(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005262
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 if (!is_9652 && !is_9632) {
Tim Blechmanne588ed82009-02-20 19:30:35 +01005264 /* we wait a maximum of 10 seconds to let freshly
5265 * inserted cardbus cards do their hardware init */
5266 err = hdsp_wait_for_iobox(hdsp, 1000, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Tim Blechmann00c9ddd2008-11-09 12:50:52 +01005268 if (err < 0)
5269 return err;
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 if ((hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {
Takashi Iwaib0b98112005-10-20 18:29:58 +02005272 if ((err = hdsp_request_fw_loader(hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 /* we don't fail as this can happen
5274 if userspace is not ready for
5275 firmware upload
5276 */
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005277 dev_err(hdsp->card->dev,
5278 "couldn't get firmware from userspace. try using hdsploader\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02005279 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 /* init is complete, we return */
5281 return 0;
Tim Blechmann00c9ddd2008-11-09 12:50:52 +01005282 /* we defer initialization */
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005283 dev_info(hdsp->card->dev,
5284 "card initialization pending : waiting for firmware\n");
Takashi Iwaib0b98112005-10-20 18:29:58 +02005285 if ((err = snd_hdsp_create_hwdep(card, hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 return 0;
5288 } else {
Takashi Iwaia54ba0f2014-02-26 12:05:11 +01005289 dev_info(hdsp->card->dev,
5290 "Firmware already present, initializing card.\n");
Florian Faber28b26e12010-12-01 12:14:47 +01005291 if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version2)
5292 hdsp->io_type = RPM;
5293 else if (hdsp_read(hdsp, HDSP_status2Register) & HDSP_version1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 hdsp->io_type = Multiface;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005295 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 hdsp->io_type = Digiface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 }
5298 }
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005299
Takashi Iwaib0b98112005-10-20 18:29:58 +02005300 if ((err = snd_hdsp_enable_io(hdsp)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005302
Takashi Iwaib0b98112005-10-20 18:29:58 +02005303 if (is_9652)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 hdsp->io_type = H9652;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005305
Takashi Iwaib0b98112005-10-20 18:29:58 +02005306 if (is_9632)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 hdsp->io_type = H9632;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308
Takashi Iwaib0b98112005-10-20 18:29:58 +02005309 if ((err = snd_hdsp_create_hwdep(card, hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 return err;
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 snd_hdsp_initialize_channels(hdsp);
5313 snd_hdsp_initialize_midi_flush(hdsp);
5314
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005315 hdsp->state |= HDSP_FirmwareLoaded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
Takashi Iwaib0b98112005-10-20 18:29:58 +02005317 if ((err = snd_hdsp_create_alsa_devices(card, hdsp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321}
5322
Takashi Iwai55e957d2005-11-17 14:52:13 +01005323static int snd_hdsp_free(struct hdsp *hdsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324{
5325 if (hdsp->port) {
5326 /* stop the audio, and cancel all interrupts */
5327 tasklet_kill(&hdsp->midi_tasklet);
5328 hdsp->control_register &= ~(HDSP_Start|HDSP_AudioInterruptEnable|HDSP_Midi0InterruptEnable|HDSP_Midi1InterruptEnable);
5329 hdsp_write (hdsp, HDSP_controlRegister, hdsp->control_register);
5330 }
5331
5332 if (hdsp->irq >= 0)
5333 free_irq(hdsp->irq, (void *)hdsp);
5334
5335 snd_hdsp_free_buffers(hdsp);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005336
Markus Elfringc2836612014-11-17 13:04:14 +01005337 release_firmware(hdsp->firmware);
Takashi Iwai90caaef2012-11-22 16:55:11 +01005338 vfree(hdsp->fw_uploaded);
Markus Elfringff6defa2015-01-03 22:55:54 +01005339 iounmap(hdsp->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
5341 if (hdsp->port)
5342 pci_release_regions(hdsp->pci);
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 pci_disable_device(hdsp->pci);
5345 return 0;
5346}
5347
Takashi Iwai55e957d2005-11-17 14:52:13 +01005348static void snd_hdsp_card_free(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349{
Joe Perches9fe856e2010-09-04 18:52:54 -07005350 struct hdsp *hdsp = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
5352 if (hdsp)
5353 snd_hdsp_free(hdsp);
5354}
5355
Bill Pembertone23e7a12012-12-06 12:35:10 -05005356static int snd_hdsp_probe(struct pci_dev *pci,
5357 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358{
5359 static int dev;
Takashi Iwai55e957d2005-11-17 14:52:13 +01005360 struct hdsp *hdsp;
5361 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 int err;
5363
5364 if (dev >= SNDRV_CARDS)
5365 return -ENODEV;
5366 if (!enable[dev]) {
5367 dev++;
5368 return -ENOENT;
5369 }
5370
Takashi Iwai60c57722014-01-29 14:20:19 +01005371 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
5372 sizeof(struct hdsp), &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +01005373 if (err < 0)
5374 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
Joe Perches9fe856e2010-09-04 18:52:54 -07005376 hdsp = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 card->private_free = snd_hdsp_card_free;
5378 hdsp->dev = dev;
5379 hdsp->pci = pci;
Markus Elfring2675be52017-08-14 22:00:40 +02005380 err = snd_hdsp_create(card, hdsp);
5381 if (err)
5382 goto free_card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384 strcpy(card->shortname, "Hammerfall DSP");
Tim Blechmannf9ffc5d2009-02-20 19:38:16 +01005385 sprintf(card->longname, "%s at 0x%lx, irq %d", hdsp->card_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 hdsp->port, hdsp->irq);
Markus Elfring2675be52017-08-14 22:00:40 +02005387 err = snd_card_register(card);
5388 if (err) {
5389free_card:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 snd_card_free(card);
5391 return err;
5392 }
5393 pci_set_drvdata(pci, card);
5394 dev++;
5395 return 0;
5396}
5397
Bill Pembertone23e7a12012-12-06 12:35:10 -05005398static void snd_hdsp_remove(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399{
5400 snd_card_free(pci_get_drvdata(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401}
5402
Takashi Iwaie9f66d92012-04-24 12:25:00 +02005403static struct pci_driver hdsp_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02005404 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 .id_table = snd_hdsp_ids,
5406 .probe = snd_hdsp_probe,
Bill Pembertone23e7a12012-12-06 12:35:10 -05005407 .remove = snd_hdsp_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408};
5409
Takashi Iwaie9f66d92012-04-24 12:25:00 +02005410module_pci_driver(hdsp_driver);