3 * ALSA driver for RME Hammerfall DSP MADI audio interface(s)
5 * Copyright (c) 2003 Winfried Ritsch (IEM)
6 * code based on hdsp.c Paul Davis
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <sound/driver.h>
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/interrupt.h>
29 #include <linux/moduleparam.h>
30 #include <linux/slab.h>
31 #include <linux/pci.h>
34 #include <sound/core.h>
35 #include <sound/control.h>
36 #include <sound/pcm.h>
37 #include <sound/info.h>
38 #include <sound/asoundef.h>
39 #include <sound/rawmidi.h>
40 #include <sound/hwdep.h>
41 #include <sound/initval.h>
43 #include <sound/hdspm.h>
45 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
46 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
47 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
49 /* Disable precise pointer at start */
50 static int precise_ptr[SNDRV_CARDS];
52 /* Send all playback to line outs */
53 static int line_outs_monitor[SNDRV_CARDS];
55 /* Enable Analog Outs on Channel 63/64 by default */
56 static int enable_monitor[SNDRV_CARDS];
58 module_param_array(index, int, NULL, 0444);
59 MODULE_PARM_DESC(index, "Index value for RME HDSPM interface.");
61 module_param_array(id, charp, NULL, 0444);
62 MODULE_PARM_DESC(id, "ID string for RME HDSPM interface.");
64 module_param_array(enable, bool, NULL, 0444);
65 MODULE_PARM_DESC(enable, "Enable/disable specific HDSPM soundcards.");
67 module_param_array(precise_ptr, bool, NULL, 0444);
68 MODULE_PARM_DESC(precise_ptr, "Enable or disable precise pointer.");
70 module_param_array(line_outs_monitor, bool, NULL, 0444);
71 MODULE_PARM_DESC(line_outs_monitor,
72 "Send playback streams to analog outs by default.");
74 module_param_array(enable_monitor, bool, NULL, 0444);
75 MODULE_PARM_DESC(enable_monitor,
76 "Enable Analog Out on Channel 63/64 by default.");
79 ("Winfried Ritsch <ritsch_AT_iem.at>, Paul Davis <paul@linuxaudiosystems.com>, "
80 "Marcus Andersson, Thomas Charbonnel <thomas@undata.org>");
81 MODULE_DESCRIPTION("RME HDSPM");
82 MODULE_LICENSE("GPL");
83 MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}");
85 /* --- Write registers. ---
86 These are defined as byte-offsets from the iobase value. */
88 #define HDSPM_controlRegister 64
89 #define HDSPM_interruptConfirmation 96
90 #define HDSPM_control2Reg 256 /* not in specs ???????? */
91 #define HDSPM_midiDataOut0 352 /* just believe in old code */
92 #define HDSPM_midiDataOut1 356
94 /* DMA enable for 64 channels, only Bit 0 is relevant */
95 #define HDSPM_outputEnableBase 512 /* 512-767 input DMA */
96 #define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */
98 /* 16 page addresses for each of the 64 channels DMA buffer in and out
99 (each 64k=16*4k) Buffer must be 4k aligned (which is default i386 ????) */
100 #define HDSPM_pageAddressBufferOut 8192
101 #define HDSPM_pageAddressBufferIn (HDSPM_pageAddressBufferOut+64*16*4)
103 #define HDSPM_MADI_mixerBase 32768 /* 32768-65535 for 2x64x64 Fader */
105 #define HDSPM_MATRIX_MIXER_SIZE 8192 /* = 2*64*64 * 4 Byte => 32kB */
107 /* --- Read registers. ---
108 These are defined as byte-offsets from the iobase value */
109 #define HDSPM_statusRegister 0
110 #define HDSPM_statusRegister2 96
112 #define HDSPM_midiDataIn0 360
113 #define HDSPM_midiDataIn1 364
115 /* status is data bytes in MIDI-FIFO (0-128) */
116 #define HDSPM_midiStatusOut0 384
117 #define HDSPM_midiStatusOut1 388
118 #define HDSPM_midiStatusIn0 392
119 #define HDSPM_midiStatusIn1 396
122 /* the meters are regular i/o-mapped registers, but offset
123 considerably from the rest. the peak registers are reset
124 when read; the least-significant 4 bits are full-scale counters;
125 the actual peak value is in the most-significant 24 bits.
127 #define HDSPM_MADI_peakrmsbase 4096 /* 4096-8191 2x64x32Bit Meters */
129 /* --- Control Register bits --------- */
130 #define HDSPM_Start (1<<0) /* start engine */
132 #define HDSPM_Latency0 (1<<1) /* buffer size = 2^n */
133 #define HDSPM_Latency1 (1<<2) /* where n is defined */
134 #define HDSPM_Latency2 (1<<3) /* by Latency{2,1,0} */
136 #define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */
138 #define HDSPM_AudioInterruptEnable (1<<5) /* what do you think ? */
140 #define HDSPM_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz 1=48kHz/96kHz */
141 #define HDSPM_Frequency1 (1<<7) /* 0=32kHz/64kHz */
142 #define HDSPM_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */
143 #define HDSPM_QuadSpeed (1<<31) /* quad speed bit, not implemented now */
145 #define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1,
148 #define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode,
151 #define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax */
152 #define HDSPM_InputSelect1 (1<<15) /* should be 0 */
154 #define HDSPM_SyncRef0 (1<<16) /* 0=WOrd, 1=MADI */
155 #define HDSPM_SyncRef1 (1<<17) /* should be 0 */
157 #define HDSPM_clr_tms (1<<19) /* clear track marker, do not use
158 AES additional bits in
159 lower 5 Audiodatabits ??? */
161 #define HDSPM_Midi0InterruptEnable (1<<22)
162 #define HDSPM_Midi1InterruptEnable (1<<23)
164 #define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */
167 /* --- bit helper defines */
168 #define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2)
169 #define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1)
170 #define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1)
171 #define HDSPM_InputOptical 0
172 #define HDSPM_InputCoaxial (HDSPM_InputSelect0)
173 #define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1)
174 #define HDSPM_SyncRef_Word 0
175 #define HDSPM_SyncRef_MADI (HDSPM_SyncRef0)
177 #define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */
178 #define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */
180 #define HDSPM_Frequency32KHz HDSPM_Frequency0
181 #define HDSPM_Frequency44_1KHz HDSPM_Frequency1
182 #define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0)
183 #define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0)
184 #define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1)
185 #define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|HDSPM_Frequency0)
187 /* --- for internal discrimination */
188 #define HDSPM_CLOCK_SOURCE_AUTOSYNC 0 /* Sample Clock Sources */
189 #define HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ 1
190 #define HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ 2
191 #define HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ 3
192 #define HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ 4
193 #define HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ 5
194 #define HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ 6
195 #define HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ 7
196 #define HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ 8
197 #define HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ 9
199 /* Synccheck Status */
200 #define HDSPM_SYNC_CHECK_NO_LOCK 0
201 #define HDSPM_SYNC_CHECK_LOCK 1
202 #define HDSPM_SYNC_CHECK_SYNC 2
204 /* AutoSync References - used by "autosync_ref" control switch */
205 #define HDSPM_AUTOSYNC_FROM_WORD 0
206 #define HDSPM_AUTOSYNC_FROM_MADI 1
207 #define HDSPM_AUTOSYNC_FROM_NONE 2
209 /* Possible sources of MADI input */
210 #define HDSPM_OPTICAL 0 /* optical */
211 #define HDSPM_COAXIAL 1 /* BNC */
213 #define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask)
214 #define hdspm_decode_latency(x) (((x) & HDSPM_LatencyMask)>>1)
216 #define hdspm_encode_in(x) (((x)&0x3)<<14)
217 #define hdspm_decode_in(x) (((x)>>14)&0x3)
219 /* --- control2 register bits --- */
220 #define HDSPM_TMS (1<<0)
221 #define HDSPM_TCK (1<<1)
222 #define HDSPM_TDI (1<<2)
223 #define HDSPM_JTAG (1<<3)
224 #define HDSPM_PWDN (1<<4)
225 #define HDSPM_PROGRAM (1<<5)
226 #define HDSPM_CONFIG_MODE_0 (1<<6)
227 #define HDSPM_CONFIG_MODE_1 (1<<7)
228 /*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/
229 #define HDSPM_BIGENDIAN_MODE (1<<9)
230 #define HDSPM_RD_MULTIPLE (1<<10)
232 /* --- Status Register bits --- */
233 #define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */
234 #define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn. MODE=0 */
235 #define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1 (like inp0) */
236 #define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */
238 #define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */
239 /* since 64byte accurate last 6 bits
242 #define HDSPM_madiSync (1<<18) /* MADI is in sync */
243 #define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */
245 #define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */
246 #define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */
247 #define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */
248 #define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */
250 #define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with Interrupt */
251 #define HDSPM_midi0IRQPending (1<<30) /* MIDI IRQ is pending */
252 #define HDSPM_midi1IRQPending (1<<31) /* and aktiv */
254 /* --- status bit helpers */
255 #define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2|HDSPM_madiFreq3)
256 #define HDSPM_madiFreq32 (HDSPM_madiFreq0)
257 #define HDSPM_madiFreq44_1 (HDSPM_madiFreq1)
258 #define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1)
259 #define HDSPM_madiFreq64 (HDSPM_madiFreq2)
260 #define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2)
261 #define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2)
262 #define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2)
263 #define HDSPM_madiFreq176_4 (HDSPM_madiFreq3)
264 #define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0)
266 /* Status2 Register bits */
268 #define HDSPM_version0 (1<<0) /* not realy defined but I guess */
269 #define HDSPM_version1 (1<<1) /* in former cards it was ??? */
270 #define HDSPM_version2 (1<<2)
272 #define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */
273 #define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */
275 #define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */
276 #define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */
277 #define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, */
278 /* missing Bit for 111=128, 1000=176.4, 1001=192 */
280 #define HDSPM_SelSyncRef0 (1<<8) /* Sync Source in slave mode */
281 #define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */
282 #define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */
284 #define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync)
286 #define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2)
287 #define HDSPM_wcFreq32 (HDSPM_wc_freq0)
288 #define HDSPM_wcFreq44_1 (HDSPM_wc_freq1)
289 #define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1)
290 #define HDSPM_wcFreq64 (HDSPM_wc_freq2)
291 #define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2)
292 #define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2)
295 #define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|HDSPM_SelSyncRef2)
296 #define HDSPM_SelSyncRef_WORD 0
297 #define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0)
298 #define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|HDSPM_SelSyncRef2)
301 #define UNITY_GAIN 32768 /* = 65536/2 */
302 #define MINUS_INFINITY_GAIN 0
304 /* Number of channels for different Speed Modes */
305 #define MADI_SS_CHANNELS 64
306 #define MADI_DS_CHANNELS 32
307 #define MADI_QS_CHANNELS 16
309 /* the size of a substream (1 mono data stream) */
310 #define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024)
311 #define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES)
313 /* the size of the area we need to allocate for DMA transfers. the
314 size is the same regardless of the number of channels, and
315 also the latency to use.
316 for one direction !!!
318 #define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES)
319 #define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024)
324 struct snd_rawmidi *rmidi;
325 struct snd_rawmidi_substream *input;
326 struct snd_rawmidi_substream *output;
327 char istimer; /* timer in use */
328 struct timer_list timer;
335 struct snd_pcm_substream *capture_substream; /* only one playback */
336 struct snd_pcm_substream *playback_substream; /* and/or capture stream */
338 char *card_name; /* for procinfo */
339 unsigned short firmware_rev; /* dont know if relevant */
341 int precise_ptr; /* use precise pointers, to be tested */
342 int monitor_outs; /* set up monitoring outs init flag */
344 u32 control_register; /* cached value */
345 u32 control2_register; /* cached value */
347 struct hdspm_midi midi[2];
348 struct tasklet_struct midi_tasklet;
351 unsigned char ss_channels; /* channels of card in single speed */
352 unsigned char ds_channels; /* Double Speed */
353 unsigned char qs_channels; /* Quad Speed */
355 unsigned char *playback_buffer; /* suitably aligned address */
356 unsigned char *capture_buffer; /* suitably aligned address */
358 pid_t capture_pid; /* process id which uses capture */
359 pid_t playback_pid; /* process id which uses capture */
360 int running; /* running status */
362 int last_external_sample_rate; /* samplerate mystic ... */
363 int last_internal_sample_rate;
364 int system_sample_rate;
366 char *channel_map; /* channel map for DS and Quadspeed */
368 int dev; /* Hardware vars... */
371 void __iomem *iobase;
373 int irq_count; /* for debug */
375 struct snd_card *card; /* one card */
376 struct snd_pcm *pcm; /* has one pcm */
377 struct snd_hwdep *hwdep; /* and a hwdep for additional ioctl */
378 struct pci_dev *pci; /* and an pci info */
381 struct snd_kcontrol *playback_mixer_ctls[HDSPM_MAX_CHANNELS]; /* fast alsa mixer */
382 struct snd_kcontrol *input_mixer_ctls[HDSPM_MAX_CHANNELS]; /* but input to much, so not used */
383 struct hdspm_mixer *mixer; /* full mixer accessable over mixer ioctl or hwdep-device */
387 /* These tables map the ALSA channels 1..N to the channels that we
388 need to use in order to find the relevant channel buffer. RME
389 refer to this kind of mapping as between "the ADAT channel and
390 the DMA channel." We index it using the logical audio channel,
391 and the value is the DMA channel (i.e. channel buffer number)
392 where the data for that channel can be read/written from/to.
395 static char channel_map_madi_ss[HDSPM_MAX_CHANNELS] = {
396 0, 1, 2, 3, 4, 5, 6, 7,
397 8, 9, 10, 11, 12, 13, 14, 15,
398 16, 17, 18, 19, 20, 21, 22, 23,
399 24, 25, 26, 27, 28, 29, 30, 31,
400 32, 33, 34, 35, 36, 37, 38, 39,
401 40, 41, 42, 43, 44, 45, 46, 47,
402 48, 49, 50, 51, 52, 53, 54, 55,
403 56, 57, 58, 59, 60, 61, 62, 63
406 static char channel_map_madi_ds[HDSPM_MAX_CHANNELS] = {
407 0, 2, 4, 6, 8, 10, 12, 14,
408 16, 18, 20, 22, 24, 26, 28, 30,
409 32, 34, 36, 38, 40, 42, 44, 46,
410 48, 50, 52, 54, 56, 58, 60, 62,
411 -1, -1, -1, -1, -1, -1, -1, -1,
412 -1, -1, -1, -1, -1, -1, -1, -1,
413 -1, -1, -1, -1, -1, -1, -1, -1,
414 -1, -1, -1, -1, -1, -1, -1, -1
417 static char channel_map_madi_qs[HDSPM_MAX_CHANNELS] = {
418 0, 4, 8, 12, 16, 20, 24, 28,
419 32, 36, 40, 44, 48, 52, 56, 60
420 -1, -1, -1, -1, -1, -1, -1, -1,
421 -1, -1, -1, -1, -1, -1, -1, -1,
422 -1, -1, -1, -1, -1, -1, -1, -1,
423 -1, -1, -1, -1, -1, -1, -1, -1,
424 -1, -1, -1, -1, -1, -1, -1, -1,
425 -1, -1, -1, -1, -1, -1, -1, -1
429 static struct pci_device_id snd_hdspm_ids[] __devinitdata = {
431 .vendor = PCI_VENDOR_ID_XILINX,
432 .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI,
433 .subvendor = PCI_ANY_ID,
434 .subdevice = PCI_ANY_ID,
441 MODULE_DEVICE_TABLE(pci, snd_hdspm_ids);
444 static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
445 struct hdspm * hdspm);
446 static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
447 struct hdspm * hdspm);
449 static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm);
450 static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm);
451 static int hdspm_autosync_ref(struct hdspm * hdspm);
452 static int snd_hdspm_set_defaults(struct hdspm * hdspm);
453 static void hdspm_set_sgbuf(struct hdspm * hdspm, struct snd_sg_buf *sgbuf,
454 unsigned int reg, int channels);
456 /* Write/read to/from HDSPM with Adresses in Bytes
457 not words but only 32Bit writes are allowed */
459 static inline void hdspm_write(struct hdspm * hdspm, unsigned int reg,
462 writel(val, hdspm->iobase + reg);
465 static inline unsigned int hdspm_read(struct hdspm * hdspm, unsigned int reg)
467 return readl(hdspm->iobase + reg);
470 /* for each output channel (chan) I have an Input (in) and Playback (pb) Fader
471 mixer is write only on hardware so we have to cache him for read
472 each fader is a u32, but uses only the first 16 bit */
474 static inline int hdspm_read_in_gain(struct hdspm * hdspm, unsigned int chan,
477 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
480 return hdspm->mixer->ch[chan].in[in];
483 static inline int hdspm_read_pb_gain(struct hdspm * hdspm, unsigned int chan,
486 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
488 return hdspm->mixer->ch[chan].pb[pb];
491 static inline int hdspm_write_in_gain(struct hdspm * hdspm, unsigned int chan,
492 unsigned int in, unsigned short data)
494 if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS)
498 HDSPM_MADI_mixerBase +
499 ((in + 128 * chan) * sizeof(u32)),
500 (hdspm->mixer->ch[chan].in[in] = data & 0xFFFF));
504 static inline int hdspm_write_pb_gain(struct hdspm * hdspm, unsigned int chan,
505 unsigned int pb, unsigned short data)
507 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS)
511 HDSPM_MADI_mixerBase +
512 ((64 + pb + 128 * chan) * sizeof(u32)),
513 (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF));
518 /* enable DMA for specific channels, now available for DSP-MADI */
519 static inline void snd_hdspm_enable_in(struct hdspm * hdspm, int i, int v)
521 hdspm_write(hdspm, HDSPM_inputEnableBase + (4 * i), v);
524 static inline void snd_hdspm_enable_out(struct hdspm * hdspm, int i, int v)
526 hdspm_write(hdspm, HDSPM_outputEnableBase + (4 * i), v);
529 /* check if same process is writing and reading */
530 static inline int snd_hdspm_use_is_exclusive(struct hdspm * hdspm)
535 spin_lock_irqsave(&hdspm->lock, flags);
536 if ((hdspm->playback_pid != hdspm->capture_pid) &&
537 (hdspm->playback_pid >= 0) && (hdspm->capture_pid >= 0)) {
540 spin_unlock_irqrestore(&hdspm->lock, flags);
544 /* check for external sample rate */
545 static inline int hdspm_external_sample_rate(struct hdspm * hdspm)
547 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
548 unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister);
549 unsigned int rate_bits;
552 /* if wordclock has synced freq and wordclock is valid */
553 if ((status2 & HDSPM_wcLock) != 0 &&
554 (status & HDSPM_SelSyncRef0) == 0) {
556 rate_bits = status2 & HDSPM_wcFreqMask;
562 case HDSPM_wcFreq44_1:
571 case HDSPM_wcFreq88_2:
577 /* Quadspeed Bit missing ???? */
584 /* if rate detected and Syncref is Word than have it, word has priority to MADI */
586 && (status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD)
589 /* maby a madi input (which is taken if sel sync is madi) */
590 if (status & HDSPM_madiLock) {
591 rate_bits = status & HDSPM_madiFreqMask;
594 case HDSPM_madiFreq32:
597 case HDSPM_madiFreq44_1:
600 case HDSPM_madiFreq48:
603 case HDSPM_madiFreq64:
606 case HDSPM_madiFreq88_2:
609 case HDSPM_madiFreq96:
612 case HDSPM_madiFreq128:
615 case HDSPM_madiFreq176_4:
618 case HDSPM_madiFreq192:
629 /* Latency function */
630 static inline void hdspm_compute_period_size(struct hdspm * hdspm)
632 hdspm->period_bytes =
633 1 << ((hdspm_decode_latency(hdspm->control_register) + 8));
636 static snd_pcm_uframes_t hdspm_hw_pointer(struct hdspm * hdspm)
640 position = hdspm_read(hdspm, HDSPM_statusRegister);
642 if (!hdspm->precise_ptr) {
643 return (position & HDSPM_BufferID) ? (hdspm->period_bytes /
647 /* hwpointer comes in bytes and is 64Bytes accurate (by docu since PCI Burst)
648 i have experimented that it is at most 64 Byte to much for playing
649 so substraction of 64 byte should be ok for ALSA, but use it only
650 for application where you know what you do since if you come to
651 near with record pointer it can be a disaster */
653 position &= HDSPM_BufferPositionMask;
654 position = ((position - 64) % (2 * hdspm->period_bytes)) / 4;
660 static inline void hdspm_start_audio(struct hdspm * s)
662 s->control_register |= (HDSPM_AudioInterruptEnable | HDSPM_Start);
663 hdspm_write(s, HDSPM_controlRegister, s->control_register);
666 static inline void hdspm_stop_audio(struct hdspm * s)
668 s->control_register &= ~(HDSPM_Start | HDSPM_AudioInterruptEnable);
669 hdspm_write(s, HDSPM_controlRegister, s->control_register);
672 /* should I silence all or only opened ones ? doit all for first even is 4MB*/
673 static inline void hdspm_silence_playback(struct hdspm * hdspm)
676 int n = hdspm->period_bytes;
677 void *buf = hdspm->playback_buffer;
679 snd_assert(buf != NULL, return);
681 for (i = 0; i < HDSPM_MAX_CHANNELS; i++) {
683 buf += HDSPM_CHANNEL_BUFFER_BYTES;
687 static int hdspm_set_interrupt_interval(struct hdspm * s, unsigned int frames)
691 spin_lock_irq(&s->lock);
699 s->control_register &= ~HDSPM_LatencyMask;
700 s->control_register |= hdspm_encode_latency(n);
702 hdspm_write(s, HDSPM_controlRegister, s->control_register);
704 hdspm_compute_period_size(s);
706 spin_unlock_irq(&s->lock);
712 /* dummy set rate lets see what happens */
713 static int hdspm_set_rate(struct hdspm * hdspm, int rate, int called_internally)
715 int reject_if_open = 0;
720 /* ASSUMPTION: hdspm->lock is either set, or there is no need for
721 it (e.g. during module initialization).
724 if (!(hdspm->control_register & HDSPM_ClockModeMaster)) {
727 if (called_internally) {
729 /* request from ctl or card initialization
730 just make a warning an remember setting
731 for future master mode switching */
734 (KERN_WARNING "HDSPM: Warning: device is not running as a clock master.\n");
738 /* hw_param request while in AutoSync mode */
740 hdspm_external_sample_rate(hdspm);
742 if ((hdspm_autosync_ref(hdspm) ==
743 HDSPM_AUTOSYNC_FROM_NONE)) {
745 snd_printk(KERN_WARNING "HDSPM: Detected no Externel Sync \n");
748 } else if (rate != external_freq) {
751 (KERN_WARNING "HDSPM: Warning: No AutoSync source for requested rate\n");
757 current_rate = hdspm->system_sample_rate;
759 /* Changing between Singe, Double and Quad speed is not
760 allowed if any substreams are open. This is because such a change
761 causes a shift in the location of the DMA buffers and a reduction
762 in the number of available buffers.
764 Note that a similar but essentially insoluble problem exists for
765 externally-driven rate changes. All we can do is to flag rate
766 changes in the read/write routines.
771 if (current_rate > 48000) {
774 rate_bits = HDSPM_Frequency32KHz;
777 if (current_rate > 48000) {
780 rate_bits = HDSPM_Frequency44_1KHz;
783 if (current_rate > 48000) {
786 rate_bits = HDSPM_Frequency48KHz;
789 if (current_rate <= 48000) {
792 rate_bits = HDSPM_Frequency64KHz;
795 if (current_rate <= 48000) {
798 rate_bits = HDSPM_Frequency88_2KHz;
801 if (current_rate <= 48000) {
804 rate_bits = HDSPM_Frequency96KHz;
811 && (hdspm->capture_pid >= 0 || hdspm->playback_pid >= 0)) {
813 (KERN_ERR "HDSPM: cannot change between single- and double-speed mode (capture PID = %d, playback PID = %d)\n",
814 hdspm->capture_pid, hdspm->playback_pid);
818 hdspm->control_register &= ~HDSPM_FrequencyMask;
819 hdspm->control_register |= rate_bits;
820 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
823 hdspm->channel_map = channel_map_madi_qs;
824 else if (rate > 48000)
825 hdspm->channel_map = channel_map_madi_ds;
827 hdspm->channel_map = channel_map_madi_ss;
829 hdspm->system_sample_rate = rate;
837 /* mainly for init to 0 on load */
838 static void all_in_all_mixer(struct hdspm * hdspm, int sgain)
842 (sgain > UNITY_GAIN) ? UNITY_GAIN : (sgain < 0) ? 0 : sgain;
844 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++)
845 for (j = 0; j < HDSPM_MIXER_CHANNELS; j++) {
846 hdspm_write_in_gain(hdspm, i, j, gain);
847 hdspm_write_pb_gain(hdspm, i, j, gain);
851 /*----------------------------------------------------------------------------
853 ----------------------------------------------------------------------------*/
855 static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm *hdspm, int id)
857 /* the hardware already does the relevant bit-mask with 0xff */
859 return hdspm_read(hdspm, HDSPM_midiDataIn1);
861 return hdspm_read(hdspm, HDSPM_midiDataIn0);
864 static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id, int val)
866 /* the hardware already does the relevant bit-mask with 0xff */
868 return hdspm_write(hdspm, HDSPM_midiDataOut1, val);
870 return hdspm_write(hdspm, HDSPM_midiDataOut0, val);
873 static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id)
876 return (hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xff);
878 return (hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xff);
881 static inline int snd_hdspm_midi_output_possible (struct hdspm *hdspm, int id)
886 fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xff;
888 fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xff;
890 if (fifo_bytes_used < 128)
891 return 128 - fifo_bytes_used;
896 static inline void snd_hdspm_flush_midi_input (struct hdspm *hdspm, int id)
898 while (snd_hdspm_midi_input_available (hdspm, id))
899 snd_hdspm_midi_read_byte (hdspm, id);
902 static int snd_hdspm_midi_output_write (struct hdspm_midi *hmidi)
908 unsigned char buf[128];
910 /* Output is not interrupt driven */
912 spin_lock_irqsave (&hmidi->lock, flags);
914 if (!snd_rawmidi_transmit_empty (hmidi->output)) {
915 if ((n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm, hmidi->id)) > 0) {
916 if (n_pending > (int)sizeof (buf))
917 n_pending = sizeof (buf);
919 if ((to_write = snd_rawmidi_transmit (hmidi->output, buf, n_pending)) > 0) {
920 for (i = 0; i < to_write; ++i)
921 snd_hdspm_midi_write_byte (hmidi->hdspm, hmidi->id, buf[i]);
926 spin_unlock_irqrestore (&hmidi->lock, flags);
930 static int snd_hdspm_midi_input_read (struct hdspm_midi *hmidi)
932 unsigned char buf[128]; /* this buffer is designed to match the MIDI input FIFO size */
937 spin_lock_irqsave (&hmidi->lock, flags);
938 if ((n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id)) > 0) {
940 if (n_pending > (int)sizeof (buf)) {
941 n_pending = sizeof (buf);
943 for (i = 0; i < n_pending; ++i) {
944 buf[i] = snd_hdspm_midi_read_byte (hmidi->hdspm, hmidi->id);
947 snd_rawmidi_receive (hmidi->input, buf, n_pending);
950 /* flush the MIDI input FIFO */
951 while (n_pending--) {
952 snd_hdspm_midi_read_byte (hmidi->hdspm, hmidi->id);
958 hmidi->hdspm->control_register |= HDSPM_Midi1InterruptEnable;
960 hmidi->hdspm->control_register |= HDSPM_Midi0InterruptEnable;
962 hdspm_write(hmidi->hdspm, HDSPM_controlRegister, hmidi->hdspm->control_register);
963 spin_unlock_irqrestore (&hmidi->lock, flags);
964 return snd_hdspm_midi_output_write (hmidi);
967 static void snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
970 struct hdspm_midi *hmidi;
974 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
975 hdspm = hmidi->hdspm;
976 ie = hmidi->id ? HDSPM_Midi1InterruptEnable : HDSPM_Midi0InterruptEnable;
977 spin_lock_irqsave (&hdspm->lock, flags);
979 if (!(hdspm->control_register & ie)) {
980 snd_hdspm_flush_midi_input (hdspm, hmidi->id);
981 hdspm->control_register |= ie;
984 hdspm->control_register &= ~ie;
987 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
988 spin_unlock_irqrestore (&hdspm->lock, flags);
991 static void snd_hdspm_midi_output_timer(unsigned long data)
993 struct hdspm_midi *hmidi = (struct hdspm_midi *) data;
996 snd_hdspm_midi_output_write(hmidi);
997 spin_lock_irqsave (&hmidi->lock, flags);
999 /* this does not bump hmidi->istimer, because the
1000 kernel automatically removed the timer when it
1001 expired, and we are now adding it back, thus
1002 leaving istimer wherever it was set before.
1005 if (hmidi->istimer) {
1006 hmidi->timer.expires = 1 + jiffies;
1007 add_timer(&hmidi->timer);
1010 spin_unlock_irqrestore (&hmidi->lock, flags);
1013 static void snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
1015 struct hdspm_midi *hmidi;
1016 unsigned long flags;
1018 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
1019 spin_lock_irqsave (&hmidi->lock, flags);
1021 if (!hmidi->istimer) {
1022 init_timer(&hmidi->timer);
1023 hmidi->timer.function = snd_hdspm_midi_output_timer;
1024 hmidi->timer.data = (unsigned long) hmidi;
1025 hmidi->timer.expires = 1 + jiffies;
1026 add_timer(&hmidi->timer);
1030 if (hmidi->istimer && --hmidi->istimer <= 0) {
1031 del_timer (&hmidi->timer);
1034 spin_unlock_irqrestore (&hmidi->lock, flags);
1036 snd_hdspm_midi_output_write(hmidi);
1039 static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream *substream)
1041 struct hdspm_midi *hmidi;
1043 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
1044 spin_lock_irq (&hmidi->lock);
1045 snd_hdspm_flush_midi_input (hmidi->hdspm, hmidi->id);
1046 hmidi->input = substream;
1047 spin_unlock_irq (&hmidi->lock);
1052 static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream *substream)
1054 struct hdspm_midi *hmidi;
1056 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
1057 spin_lock_irq (&hmidi->lock);
1058 hmidi->output = substream;
1059 spin_unlock_irq (&hmidi->lock);
1064 static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream *substream)
1066 struct hdspm_midi *hmidi;
1068 snd_hdspm_midi_input_trigger (substream, 0);
1070 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
1071 spin_lock_irq (&hmidi->lock);
1072 hmidi->input = NULL;
1073 spin_unlock_irq (&hmidi->lock);
1078 static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream *substream)
1080 struct hdspm_midi *hmidi;
1082 snd_hdspm_midi_output_trigger (substream, 0);
1084 hmidi = (struct hdspm_midi *) substream->rmidi->private_data;
1085 spin_lock_irq (&hmidi->lock);
1086 hmidi->output = NULL;
1087 spin_unlock_irq (&hmidi->lock);
1092 static struct snd_rawmidi_ops snd_hdspm_midi_output =
1094 .open = snd_hdspm_midi_output_open,
1095 .close = snd_hdspm_midi_output_close,
1096 .trigger = snd_hdspm_midi_output_trigger,
1099 static struct snd_rawmidi_ops snd_hdspm_midi_input =
1101 .open = snd_hdspm_midi_input_open,
1102 .close = snd_hdspm_midi_input_close,
1103 .trigger = snd_hdspm_midi_input_trigger,
1106 static int __devinit snd_hdspm_create_midi (struct snd_card *card, struct hdspm *hdspm, int id)
1111 hdspm->midi[id].id = id;
1112 hdspm->midi[id].rmidi = NULL;
1113 hdspm->midi[id].input = NULL;
1114 hdspm->midi[id].output = NULL;
1115 hdspm->midi[id].hdspm = hdspm;
1116 hdspm->midi[id].istimer = 0;
1117 hdspm->midi[id].pending = 0;
1118 spin_lock_init (&hdspm->midi[id].lock);
1120 sprintf (buf, "%s MIDI %d", card->shortname, id+1);
1121 if ((err = snd_rawmidi_new (card, buf, id, 1, 1, &hdspm->midi[id].rmidi)) < 0)
1124 sprintf (hdspm->midi[id].rmidi->name, "%s MIDI %d", card->id, id+1);
1125 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id];
1127 snd_rawmidi_set_ops (hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_hdspm_midi_output);
1128 snd_rawmidi_set_ops (hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_hdspm_midi_input);
1130 hdspm->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT |
1131 SNDRV_RAWMIDI_INFO_INPUT |
1132 SNDRV_RAWMIDI_INFO_DUPLEX;
1138 static void hdspm_midi_tasklet(unsigned long arg)
1140 struct hdspm *hdspm = (struct hdspm *)arg;
1142 if (hdspm->midi[0].pending)
1143 snd_hdspm_midi_input_read (&hdspm->midi[0]);
1144 if (hdspm->midi[1].pending)
1145 snd_hdspm_midi_input_read (&hdspm->midi[1]);
1149 /*-----------------------------------------------------------------------------
1151 ----------------------------------------------------------------------------*/
1153 /* get the system sample rate which is set */
1155 #define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \
1156 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1159 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1160 .info = snd_hdspm_info_system_sample_rate, \
1161 .get = snd_hdspm_get_system_sample_rate \
1164 static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol *kcontrol,
1165 struct snd_ctl_elem_info *uinfo)
1167 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1172 static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol *kcontrol,
1173 struct snd_ctl_elem_value *
1176 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1178 ucontrol->value.enumerated.item[0] = hdspm->system_sample_rate;
1182 #define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \
1183 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1186 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1187 .info = snd_hdspm_info_autosync_sample_rate, \
1188 .get = snd_hdspm_get_autosync_sample_rate \
1191 static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol *kcontrol,
1192 struct snd_ctl_elem_info *uinfo)
1194 static char *texts[] = { "32000", "44100", "48000",
1195 "64000", "88200", "96000",
1196 "128000", "176400", "192000",
1199 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1201 uinfo->value.enumerated.items = 10;
1202 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1203 uinfo->value.enumerated.item =
1204 uinfo->value.enumerated.items - 1;
1205 strcpy(uinfo->value.enumerated.name,
1206 texts[uinfo->value.enumerated.item]);
1210 static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol,
1211 struct snd_ctl_elem_value *
1214 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1216 switch (hdspm_external_sample_rate(hdspm)) {
1218 ucontrol->value.enumerated.item[0] = 0;
1221 ucontrol->value.enumerated.item[0] = 1;
1224 ucontrol->value.enumerated.item[0] = 2;
1227 ucontrol->value.enumerated.item[0] = 3;
1230 ucontrol->value.enumerated.item[0] = 4;
1233 ucontrol->value.enumerated.item[0] = 5;
1236 ucontrol->value.enumerated.item[0] = 6;
1239 ucontrol->value.enumerated.item[0] = 7;
1242 ucontrol->value.enumerated.item[0] = 8;
1246 ucontrol->value.enumerated.item[0] = 9;
1251 #define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \
1252 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1255 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1256 .info = snd_hdspm_info_system_clock_mode, \
1257 .get = snd_hdspm_get_system_clock_mode, \
1262 static int hdspm_system_clock_mode(struct hdspm * hdspm)
1264 /* Always reflect the hardware info, rme is never wrong !!!! */
1266 if (hdspm->control_register & HDSPM_ClockModeMaster)
1271 static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol *kcontrol,
1272 struct snd_ctl_elem_info *uinfo)
1274 static char *texts[] = { "Master", "Slave" };
1276 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1278 uinfo->value.enumerated.items = 2;
1279 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1280 uinfo->value.enumerated.item =
1281 uinfo->value.enumerated.items - 1;
1282 strcpy(uinfo->value.enumerated.name,
1283 texts[uinfo->value.enumerated.item]);
1287 static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol *kcontrol,
1288 struct snd_ctl_elem_value *ucontrol)
1290 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1292 ucontrol->value.enumerated.item[0] =
1293 hdspm_system_clock_mode(hdspm);
1297 #define HDSPM_CLOCK_SOURCE(xname, xindex) \
1298 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1301 .info = snd_hdspm_info_clock_source, \
1302 .get = snd_hdspm_get_clock_source, \
1303 .put = snd_hdspm_put_clock_source \
1306 static int hdspm_clock_source(struct hdspm * hdspm)
1308 if (hdspm->control_register & HDSPM_ClockModeMaster) {
1309 switch (hdspm->system_sample_rate) {
1336 static int hdspm_set_clock_source(struct hdspm * hdspm, int mode)
1341 case HDSPM_CLOCK_SOURCE_AUTOSYNC:
1342 if (hdspm_external_sample_rate(hdspm) != 0) {
1343 hdspm->control_register &= ~HDSPM_ClockModeMaster;
1344 hdspm_write(hdspm, HDSPM_controlRegister,
1345 hdspm->control_register);
1349 case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ:
1352 case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ:
1355 case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ:
1358 case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ:
1361 case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ:
1364 case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ:
1367 case HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ:
1370 case HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ:
1373 case HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ:
1380 hdspm->control_register |= HDSPM_ClockModeMaster;
1381 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1382 hdspm_set_rate(hdspm, rate, 1);
1386 static int snd_hdspm_info_clock_source(struct snd_kcontrol *kcontrol,
1387 struct snd_ctl_elem_info *uinfo)
1389 static char *texts[] = { "AutoSync",
1390 "Internal 32.0 kHz", "Internal 44.1 kHz",
1391 "Internal 48.0 kHz",
1392 "Internal 64.0 kHz", "Internal 88.2 kHz",
1393 "Internal 96.0 kHz",
1394 "Internal 128.0 kHz", "Internal 176.4 kHz",
1395 "Internal 192.0 kHz"
1398 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1400 uinfo->value.enumerated.items = 10;
1402 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1403 uinfo->value.enumerated.item =
1404 uinfo->value.enumerated.items - 1;
1406 strcpy(uinfo->value.enumerated.name,
1407 texts[uinfo->value.enumerated.item]);
1412 static int snd_hdspm_get_clock_source(struct snd_kcontrol *kcontrol,
1413 struct snd_ctl_elem_value *ucontrol)
1415 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1417 ucontrol->value.enumerated.item[0] = hdspm_clock_source(hdspm);
1421 static int snd_hdspm_put_clock_source(struct snd_kcontrol *kcontrol,
1422 struct snd_ctl_elem_value *ucontrol)
1424 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1428 if (!snd_hdspm_use_is_exclusive(hdspm))
1430 val = ucontrol->value.enumerated.item[0];
1435 spin_lock_irq(&hdspm->lock);
1436 if (val != hdspm_clock_source(hdspm))
1437 change = (hdspm_set_clock_source(hdspm, val) == 0) ? 1 : 0;
1440 spin_unlock_irq(&hdspm->lock);
1444 #define HDSPM_PREF_SYNC_REF(xname, xindex) \
1445 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1448 .info = snd_hdspm_info_pref_sync_ref, \
1449 .get = snd_hdspm_get_pref_sync_ref, \
1450 .put = snd_hdspm_put_pref_sync_ref \
1453 static int hdspm_pref_sync_ref(struct hdspm * hdspm)
1455 /* Notice that this looks at the requested sync source,
1456 not the one actually in use.
1458 switch (hdspm->control_register & HDSPM_SyncRefMask) {
1459 case HDSPM_SyncRef_Word:
1460 return HDSPM_SYNC_FROM_WORD;
1461 case HDSPM_SyncRef_MADI:
1462 return HDSPM_SYNC_FROM_MADI;
1465 return HDSPM_SYNC_FROM_WORD;
1468 static int hdspm_set_pref_sync_ref(struct hdspm * hdspm, int pref)
1470 hdspm->control_register &= ~HDSPM_SyncRefMask;
1473 case HDSPM_SYNC_FROM_MADI:
1474 hdspm->control_register |= HDSPM_SyncRef_MADI;
1476 case HDSPM_SYNC_FROM_WORD:
1477 hdspm->control_register |= HDSPM_SyncRef_Word;
1482 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1486 static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol *kcontrol,
1487 struct snd_ctl_elem_info *uinfo)
1489 static char *texts[] = { "Word", "MADI" };
1491 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1494 uinfo->value.enumerated.items = 2;
1496 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1497 uinfo->value.enumerated.item =
1498 uinfo->value.enumerated.items - 1;
1499 strcpy(uinfo->value.enumerated.name,
1500 texts[uinfo->value.enumerated.item]);
1504 static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol *kcontrol,
1505 struct snd_ctl_elem_value *ucontrol)
1507 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1509 ucontrol->value.enumerated.item[0] = hdspm_pref_sync_ref(hdspm);
1513 static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol *kcontrol,
1514 struct snd_ctl_elem_value *ucontrol)
1516 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1522 if (!snd_hdspm_use_is_exclusive(hdspm))
1525 val = ucontrol->value.enumerated.item[0] % max;
1527 spin_lock_irq(&hdspm->lock);
1528 change = (int) val != hdspm_pref_sync_ref(hdspm);
1529 hdspm_set_pref_sync_ref(hdspm, val);
1530 spin_unlock_irq(&hdspm->lock);
1534 #define HDSPM_AUTOSYNC_REF(xname, xindex) \
1535 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1538 .access = SNDRV_CTL_ELEM_ACCESS_READ, \
1539 .info = snd_hdspm_info_autosync_ref, \
1540 .get = snd_hdspm_get_autosync_ref, \
1543 static int hdspm_autosync_ref(struct hdspm * hdspm)
1545 /* This looks at the autosync selected sync reference */
1546 unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
1548 switch (status2 & HDSPM_SelSyncRefMask) {
1550 case HDSPM_SelSyncRef_WORD:
1551 return HDSPM_AUTOSYNC_FROM_WORD;
1553 case HDSPM_SelSyncRef_MADI:
1554 return HDSPM_AUTOSYNC_FROM_MADI;
1556 case HDSPM_SelSyncRef_NVALID:
1557 return HDSPM_AUTOSYNC_FROM_NONE;
1566 static int snd_hdspm_info_autosync_ref(struct snd_kcontrol *kcontrol,
1567 struct snd_ctl_elem_info *uinfo)
1569 static char *texts[] = { "WordClock", "MADI", "None" };
1571 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1573 uinfo->value.enumerated.items = 3;
1574 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1575 uinfo->value.enumerated.item =
1576 uinfo->value.enumerated.items - 1;
1577 strcpy(uinfo->value.enumerated.name,
1578 texts[uinfo->value.enumerated.item]);
1582 static int snd_hdspm_get_autosync_ref(struct snd_kcontrol *kcontrol,
1583 struct snd_ctl_elem_value *ucontrol)
1585 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1587 ucontrol->value.enumerated.item[0] = hdspm_pref_sync_ref(hdspm);
1591 #define HDSPM_LINE_OUT(xname, xindex) \
1592 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1595 .info = snd_hdspm_info_line_out, \
1596 .get = snd_hdspm_get_line_out, \
1597 .put = snd_hdspm_put_line_out \
1600 static int hdspm_line_out(struct hdspm * hdspm)
1602 return (hdspm->control_register & HDSPM_LineOut) ? 1 : 0;
1606 static int hdspm_set_line_output(struct hdspm * hdspm, int out)
1609 hdspm->control_register |= HDSPM_LineOut;
1611 hdspm->control_register &= ~HDSPM_LineOut;
1612 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1617 static int snd_hdspm_info_line_out(struct snd_kcontrol *kcontrol,
1618 struct snd_ctl_elem_info *uinfo)
1620 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1622 uinfo->value.integer.min = 0;
1623 uinfo->value.integer.max = 1;
1627 static int snd_hdspm_get_line_out(struct snd_kcontrol *kcontrol,
1628 struct snd_ctl_elem_value *ucontrol)
1630 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1632 spin_lock_irq(&hdspm->lock);
1633 ucontrol->value.integer.value[0] = hdspm_line_out(hdspm);
1634 spin_unlock_irq(&hdspm->lock);
1638 static int snd_hdspm_put_line_out(struct snd_kcontrol *kcontrol,
1639 struct snd_ctl_elem_value *ucontrol)
1641 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1645 if (!snd_hdspm_use_is_exclusive(hdspm))
1647 val = ucontrol->value.integer.value[0] & 1;
1648 spin_lock_irq(&hdspm->lock);
1649 change = (int) val != hdspm_line_out(hdspm);
1650 hdspm_set_line_output(hdspm, val);
1651 spin_unlock_irq(&hdspm->lock);
1655 #define HDSPM_TX_64(xname, xindex) \
1656 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1659 .info = snd_hdspm_info_tx_64, \
1660 .get = snd_hdspm_get_tx_64, \
1661 .put = snd_hdspm_put_tx_64 \
1664 static int hdspm_tx_64(struct hdspm * hdspm)
1666 return (hdspm->control_register & HDSPM_TX_64ch) ? 1 : 0;
1669 static int hdspm_set_tx_64(struct hdspm * hdspm, int out)
1672 hdspm->control_register |= HDSPM_TX_64ch;
1674 hdspm->control_register &= ~HDSPM_TX_64ch;
1675 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1680 static int snd_hdspm_info_tx_64(struct snd_kcontrol *kcontrol,
1681 struct snd_ctl_elem_info *uinfo)
1683 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1685 uinfo->value.integer.min = 0;
1686 uinfo->value.integer.max = 1;
1690 static int snd_hdspm_get_tx_64(struct snd_kcontrol *kcontrol,
1691 struct snd_ctl_elem_value *ucontrol)
1693 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1695 spin_lock_irq(&hdspm->lock);
1696 ucontrol->value.integer.value[0] = hdspm_tx_64(hdspm);
1697 spin_unlock_irq(&hdspm->lock);
1701 static int snd_hdspm_put_tx_64(struct snd_kcontrol *kcontrol,
1702 struct snd_ctl_elem_value *ucontrol)
1704 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1708 if (!snd_hdspm_use_is_exclusive(hdspm))
1710 val = ucontrol->value.integer.value[0] & 1;
1711 spin_lock_irq(&hdspm->lock);
1712 change = (int) val != hdspm_tx_64(hdspm);
1713 hdspm_set_tx_64(hdspm, val);
1714 spin_unlock_irq(&hdspm->lock);
1718 #define HDSPM_C_TMS(xname, xindex) \
1719 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1722 .info = snd_hdspm_info_c_tms, \
1723 .get = snd_hdspm_get_c_tms, \
1724 .put = snd_hdspm_put_c_tms \
1727 static int hdspm_c_tms(struct hdspm * hdspm)
1729 return (hdspm->control_register & HDSPM_clr_tms) ? 1 : 0;
1732 static int hdspm_set_c_tms(struct hdspm * hdspm, int out)
1735 hdspm->control_register |= HDSPM_clr_tms;
1737 hdspm->control_register &= ~HDSPM_clr_tms;
1738 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1743 static int snd_hdspm_info_c_tms(struct snd_kcontrol *kcontrol,
1744 struct snd_ctl_elem_info *uinfo)
1746 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1748 uinfo->value.integer.min = 0;
1749 uinfo->value.integer.max = 1;
1753 static int snd_hdspm_get_c_tms(struct snd_kcontrol *kcontrol,
1754 struct snd_ctl_elem_value *ucontrol)
1756 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1758 spin_lock_irq(&hdspm->lock);
1759 ucontrol->value.integer.value[0] = hdspm_c_tms(hdspm);
1760 spin_unlock_irq(&hdspm->lock);
1764 static int snd_hdspm_put_c_tms(struct snd_kcontrol *kcontrol,
1765 struct snd_ctl_elem_value *ucontrol)
1767 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1771 if (!snd_hdspm_use_is_exclusive(hdspm))
1773 val = ucontrol->value.integer.value[0] & 1;
1774 spin_lock_irq(&hdspm->lock);
1775 change = (int) val != hdspm_c_tms(hdspm);
1776 hdspm_set_c_tms(hdspm, val);
1777 spin_unlock_irq(&hdspm->lock);
1781 #define HDSPM_SAFE_MODE(xname, xindex) \
1782 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1785 .info = snd_hdspm_info_safe_mode, \
1786 .get = snd_hdspm_get_safe_mode, \
1787 .put = snd_hdspm_put_safe_mode \
1790 static int hdspm_safe_mode(struct hdspm * hdspm)
1792 return (hdspm->control_register & HDSPM_AutoInp) ? 1 : 0;
1795 static int hdspm_set_safe_mode(struct hdspm * hdspm, int out)
1798 hdspm->control_register |= HDSPM_AutoInp;
1800 hdspm->control_register &= ~HDSPM_AutoInp;
1801 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1806 static int snd_hdspm_info_safe_mode(struct snd_kcontrol *kcontrol,
1807 struct snd_ctl_elem_info *uinfo)
1809 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1811 uinfo->value.integer.min = 0;
1812 uinfo->value.integer.max = 1;
1816 static int snd_hdspm_get_safe_mode(struct snd_kcontrol *kcontrol,
1817 struct snd_ctl_elem_value *ucontrol)
1819 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1821 spin_lock_irq(&hdspm->lock);
1822 ucontrol->value.integer.value[0] = hdspm_safe_mode(hdspm);
1823 spin_unlock_irq(&hdspm->lock);
1827 static int snd_hdspm_put_safe_mode(struct snd_kcontrol *kcontrol,
1828 struct snd_ctl_elem_value *ucontrol)
1830 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1834 if (!snd_hdspm_use_is_exclusive(hdspm))
1836 val = ucontrol->value.integer.value[0] & 1;
1837 spin_lock_irq(&hdspm->lock);
1838 change = (int) val != hdspm_safe_mode(hdspm);
1839 hdspm_set_safe_mode(hdspm, val);
1840 spin_unlock_irq(&hdspm->lock);
1844 #define HDSPM_INPUT_SELECT(xname, xindex) \
1845 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1848 .info = snd_hdspm_info_input_select, \
1849 .get = snd_hdspm_get_input_select, \
1850 .put = snd_hdspm_put_input_select \
1853 static int hdspm_input_select(struct hdspm * hdspm)
1855 return (hdspm->control_register & HDSPM_InputSelect0) ? 1 : 0;
1858 static int hdspm_set_input_select(struct hdspm * hdspm, int out)
1861 hdspm->control_register |= HDSPM_InputSelect0;
1863 hdspm->control_register &= ~HDSPM_InputSelect0;
1864 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
1869 static int snd_hdspm_info_input_select(struct snd_kcontrol *kcontrol,
1870 struct snd_ctl_elem_info *uinfo)
1872 static char *texts[] = { "optical", "coaxial" };
1874 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1876 uinfo->value.enumerated.items = 2;
1878 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1879 uinfo->value.enumerated.item =
1880 uinfo->value.enumerated.items - 1;
1881 strcpy(uinfo->value.enumerated.name,
1882 texts[uinfo->value.enumerated.item]);
1887 static int snd_hdspm_get_input_select(struct snd_kcontrol *kcontrol,
1888 struct snd_ctl_elem_value *ucontrol)
1890 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1892 spin_lock_irq(&hdspm->lock);
1893 ucontrol->value.enumerated.item[0] = hdspm_input_select(hdspm);
1894 spin_unlock_irq(&hdspm->lock);
1898 static int snd_hdspm_put_input_select(struct snd_kcontrol *kcontrol,
1899 struct snd_ctl_elem_value *ucontrol)
1901 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1905 if (!snd_hdspm_use_is_exclusive(hdspm))
1907 val = ucontrol->value.integer.value[0] & 1;
1908 spin_lock_irq(&hdspm->lock);
1909 change = (int) val != hdspm_input_select(hdspm);
1910 hdspm_set_input_select(hdspm, val);
1911 spin_unlock_irq(&hdspm->lock);
1916 deprecated since to much faders ???
1917 MIXER interface says output (source, destination, value)
1918 where source > MAX_channels are playback channels
1920 - playback mixer matrix: [channelout+64] [output] [value]
1921 - input(thru) mixer matrix: [channelin] [output] [value]
1922 (better do 2 kontrols for seperation ?)
1925 #define HDSPM_MIXER(xname, xindex) \
1926 { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \
1930 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1931 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
1932 .info = snd_hdspm_info_mixer, \
1933 .get = snd_hdspm_get_mixer, \
1934 .put = snd_hdspm_put_mixer \
1937 static int snd_hdspm_info_mixer(struct snd_kcontrol *kcontrol,
1938 struct snd_ctl_elem_info *uinfo)
1940 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1942 uinfo->value.integer.min = 0;
1943 uinfo->value.integer.max = 65535;
1944 uinfo->value.integer.step = 1;
1948 static int snd_hdspm_get_mixer(struct snd_kcontrol *kcontrol,
1949 struct snd_ctl_elem_value *ucontrol)
1951 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1955 source = ucontrol->value.integer.value[0];
1958 else if (source >= 2 * HDSPM_MAX_CHANNELS)
1959 source = 2 * HDSPM_MAX_CHANNELS - 1;
1961 destination = ucontrol->value.integer.value[1];
1962 if (destination < 0)
1964 else if (destination >= HDSPM_MAX_CHANNELS)
1965 destination = HDSPM_MAX_CHANNELS - 1;
1967 spin_lock_irq(&hdspm->lock);
1968 if (source >= HDSPM_MAX_CHANNELS)
1969 ucontrol->value.integer.value[2] =
1970 hdspm_read_pb_gain(hdspm, destination,
1971 source - HDSPM_MAX_CHANNELS);
1973 ucontrol->value.integer.value[2] =
1974 hdspm_read_in_gain(hdspm, destination, source);
1976 spin_unlock_irq(&hdspm->lock);
1981 static int snd_hdspm_put_mixer(struct snd_kcontrol *kcontrol,
1982 struct snd_ctl_elem_value *ucontrol)
1984 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
1990 if (!snd_hdspm_use_is_exclusive(hdspm))
1993 source = ucontrol->value.integer.value[0];
1994 destination = ucontrol->value.integer.value[1];
1996 if (source < 0 || source >= 2 * HDSPM_MAX_CHANNELS)
1998 if (destination < 0 || destination >= HDSPM_MAX_CHANNELS)
2001 gain = ucontrol->value.integer.value[2];
2003 spin_lock_irq(&hdspm->lock);
2005 if (source >= HDSPM_MAX_CHANNELS)
2006 change = gain != hdspm_read_pb_gain(hdspm, destination,
2008 HDSPM_MAX_CHANNELS);
2011 gain != hdspm_read_in_gain(hdspm, destination, source);
2014 if (source >= HDSPM_MAX_CHANNELS)
2015 hdspm_write_pb_gain(hdspm, destination,
2016 source - HDSPM_MAX_CHANNELS,
2019 hdspm_write_in_gain(hdspm, destination, source,
2022 spin_unlock_irq(&hdspm->lock);
2027 /* The simple mixer control(s) provide gain control for the
2028 basic 1:1 mappings of playback streams to output
2032 #define HDSPM_PLAYBACK_MIXER \
2033 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2034 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \
2035 SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2036 .info = snd_hdspm_info_playback_mixer, \
2037 .get = snd_hdspm_get_playback_mixer, \
2038 .put = snd_hdspm_put_playback_mixer \
2041 static int snd_hdspm_info_playback_mixer(struct snd_kcontrol *kcontrol,
2042 struct snd_ctl_elem_info *uinfo)
2044 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2046 uinfo->value.integer.min = 0;
2047 uinfo->value.integer.max = 65536;
2048 uinfo->value.integer.step = 1;
2052 static int snd_hdspm_get_playback_mixer(struct snd_kcontrol *kcontrol,
2053 struct snd_ctl_elem_value *ucontrol)
2055 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2059 channel = ucontrol->id.index - 1;
2061 snd_assert(channel >= 0
2062 || channel < HDSPM_MAX_CHANNELS, return -EINVAL);
2064 if ((mapped_channel = hdspm->channel_map[channel]) < 0)
2067 spin_lock_irq(&hdspm->lock);
2068 ucontrol->value.integer.value[0] =
2069 hdspm_read_pb_gain(hdspm, mapped_channel, mapped_channel);
2070 spin_unlock_irq(&hdspm->lock);
2072 /* snd_printdd("get pb mixer index %d, channel %d, mapped_channel %d, value %d\n",
2073 ucontrol->id.index, channel, mapped_channel, ucontrol->value.integer.value[0]);
2079 static int snd_hdspm_put_playback_mixer(struct snd_kcontrol *kcontrol,
2080 struct snd_ctl_elem_value *ucontrol)
2082 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2088 if (!snd_hdspm_use_is_exclusive(hdspm))
2091 channel = ucontrol->id.index - 1;
2093 snd_assert(channel >= 0
2094 || channel < HDSPM_MAX_CHANNELS, return -EINVAL);
2096 if ((mapped_channel = hdspm->channel_map[channel]) < 0)
2099 gain = ucontrol->value.integer.value[0];
2101 spin_lock_irq(&hdspm->lock);
2103 gain != hdspm_read_pb_gain(hdspm, mapped_channel,
2106 hdspm_write_pb_gain(hdspm, mapped_channel, mapped_channel,
2108 spin_unlock_irq(&hdspm->lock);
2112 #define HDSPM_WC_SYNC_CHECK(xname, xindex) \
2113 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2116 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2117 .info = snd_hdspm_info_sync_check, \
2118 .get = snd_hdspm_get_wc_sync_check \
2121 static int snd_hdspm_info_sync_check(struct snd_kcontrol *kcontrol,
2122 struct snd_ctl_elem_info *uinfo)
2124 static char *texts[] = { "No Lock", "Lock", "Sync" };
2125 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2127 uinfo->value.enumerated.items = 3;
2128 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2129 uinfo->value.enumerated.item =
2130 uinfo->value.enumerated.items - 1;
2131 strcpy(uinfo->value.enumerated.name,
2132 texts[uinfo->value.enumerated.item]);
2136 static int hdspm_wc_sync_check(struct hdspm * hdspm)
2138 int status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
2139 if (status2 & HDSPM_wcLock) {
2140 if (status2 & HDSPM_wcSync)
2148 static int snd_hdspm_get_wc_sync_check(struct snd_kcontrol *kcontrol,
2149 struct snd_ctl_elem_value *ucontrol)
2151 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2153 ucontrol->value.enumerated.item[0] = hdspm_wc_sync_check(hdspm);
2158 #define HDSPM_MADI_SYNC_CHECK(xname, xindex) \
2159 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2162 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
2163 .info = snd_hdspm_info_sync_check, \
2164 .get = snd_hdspm_get_madisync_sync_check \
2167 static int hdspm_madisync_sync_check(struct hdspm * hdspm)
2169 int status = hdspm_read(hdspm, HDSPM_statusRegister);
2170 if (status & HDSPM_madiLock) {
2171 if (status & HDSPM_madiSync)
2179 static int snd_hdspm_get_madisync_sync_check(struct snd_kcontrol *kcontrol,
2180 struct snd_ctl_elem_value *
2183 struct hdspm *hdspm = snd_kcontrol_chip(kcontrol);
2185 ucontrol->value.enumerated.item[0] =
2186 hdspm_madisync_sync_check(hdspm);
2193 static struct snd_kcontrol_new snd_hdspm_controls[] = {
2195 HDSPM_MIXER("Mixer", 0),
2196 /* 'Sample Clock Source' complies with the alsa control naming scheme */
2197 HDSPM_CLOCK_SOURCE("Sample Clock Source", 0),
2199 HDSPM_SYSTEM_CLOCK_MODE("System Clock Mode", 0),
2200 HDSPM_PREF_SYNC_REF("Preferred Sync Reference", 0),
2201 HDSPM_AUTOSYNC_REF("AutoSync Reference", 0),
2202 HDSPM_SYSTEM_SAMPLE_RATE("System Sample Rate", 0),
2203 /* 'External Rate' complies with the alsa control naming scheme */
2204 HDSPM_AUTOSYNC_SAMPLE_RATE("External Rate", 0),
2205 HDSPM_WC_SYNC_CHECK("Word Clock Lock Status", 0),
2206 HDSPM_MADI_SYNC_CHECK("MADI Sync Lock Status", 0),
2207 HDSPM_LINE_OUT("Line Out", 0),
2208 HDSPM_TX_64("TX 64 channels mode", 0),
2209 HDSPM_C_TMS("Clear Track Marker", 0),
2210 HDSPM_SAFE_MODE("Safe Mode", 0),
2211 HDSPM_INPUT_SELECT("Input Select", 0),
2214 static struct snd_kcontrol_new snd_hdspm_playback_mixer = HDSPM_PLAYBACK_MIXER;
2217 static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm)
2221 for (i = hdspm->ds_channels; i < hdspm->ss_channels; ++i) {
2222 if (hdspm->system_sample_rate > 48000) {
2223 hdspm->playback_mixer_ctls[i]->vd[0].access =
2224 SNDRV_CTL_ELEM_ACCESS_INACTIVE |
2225 SNDRV_CTL_ELEM_ACCESS_READ |
2226 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
2228 hdspm->playback_mixer_ctls[i]->vd[0].access =
2229 SNDRV_CTL_ELEM_ACCESS_READWRITE |
2230 SNDRV_CTL_ELEM_ACCESS_VOLATILE;
2232 snd_ctl_notify(hdspm->card, SNDRV_CTL_EVENT_MASK_VALUE |
2233 SNDRV_CTL_EVENT_MASK_INFO,
2234 &hdspm->playback_mixer_ctls[i]->id);
2241 static int snd_hdspm_create_controls(struct snd_card *card, struct hdspm * hdspm)
2243 unsigned int idx, limit;
2245 struct snd_kcontrol *kctl;
2247 /* add control list first */
2249 for (idx = 0; idx < ARRAY_SIZE(snd_hdspm_controls); idx++) {
2251 snd_ctl_add(card, kctl =
2252 snd_ctl_new1(&snd_hdspm_controls[idx],
2258 /* Channel playback mixer as default control
2259 Note: the whole matrix would be 128*HDSPM_MIXER_CHANNELS Faders, thats too big for any alsamixer
2260 they are accesible via special IOCTL on hwdep
2261 and the mixer 2dimensional mixer control */
2263 snd_hdspm_playback_mixer.name = "Chn";
2264 limit = HDSPM_MAX_CHANNELS;
2266 /* The index values are one greater than the channel ID so that alsamixer
2267 will display them correctly. We want to use the index for fast lookup
2268 of the relevant channel, but if we use it at all, most ALSA software
2269 does the wrong thing with it ...
2272 for (idx = 0; idx < limit; ++idx) {
2273 snd_hdspm_playback_mixer.index = idx + 1;
2274 if ((err = snd_ctl_add(card,
2277 (&snd_hdspm_playback_mixer,
2281 hdspm->playback_mixer_ctls[idx] = kctl;
2287 /*------------------------------------------------------------
2289 ------------------------------------------------------------*/
2292 snd_hdspm_proc_read(struct snd_info_entry * entry, struct snd_info_buffer *buffer)
2294 struct hdspm *hdspm = (struct hdspm *) entry->private_data;
2295 unsigned int status;
2296 unsigned int status2;
2297 char *pref_sync_ref;
2299 char *system_clock_mode;
2305 status = hdspm_read(hdspm, HDSPM_statusRegister);
2306 status2 = hdspm_read(hdspm, HDSPM_statusRegister2);
2308 snd_iprintf(buffer, "%s (Card #%d) Rev.%x Status2first3bits: %x\n",
2309 hdspm->card_name, hdspm->card->number + 1,
2310 hdspm->firmware_rev,
2311 (status2 & HDSPM_version0) |
2312 (status2 & HDSPM_version1) | (status2 &
2315 snd_iprintf(buffer, "IRQ: %d Registers bus: 0x%lx VM: 0x%lx\n",
2316 hdspm->irq, hdspm->port, (unsigned long)hdspm->iobase);
2318 snd_iprintf(buffer, "--- System ---\n");
2321 "IRQ Pending: Audio=%d, MIDI0=%d, MIDI1=%d, IRQcount=%d\n",
2322 status & HDSPM_audioIRQPending,
2323 (status & HDSPM_midi0IRQPending) ? 1 : 0,
2324 (status & HDSPM_midi1IRQPending) ? 1 : 0,
2327 "HW pointer: id = %d, rawptr = %d (%d->%d) estimated= %ld (bytes)\n",
2328 ((status & HDSPM_BufferID) ? 1 : 0),
2329 (status & HDSPM_BufferPositionMask),
2330 (status & HDSPM_BufferPositionMask) % (2 *
2333 ((status & HDSPM_BufferPositionMask) -
2334 64) % (2 * (int)hdspm->period_bytes),
2335 (long) hdspm_hw_pointer(hdspm) * 4);
2338 "MIDI FIFO: Out1=0x%x, Out2=0x%x, In1=0x%x, In2=0x%x \n",
2339 hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xFF,
2340 hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xFF,
2341 hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xFF,
2342 hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xFF);
2344 "Register: ctrl1=0x%x, ctrl2=0x%x, status1=0x%x, status2=0x%x\n",
2345 hdspm->control_register, hdspm->control2_register,
2348 snd_iprintf(buffer, "--- Settings ---\n");
2351 hdspm_decode_latency(hdspm->
2353 HDSPM_LatencyMask));
2356 "Size (Latency): %d samples (2 periods of %lu bytes)\n",
2357 x, (unsigned long) hdspm->period_bytes);
2359 snd_iprintf(buffer, "Line out: %s, Precise Pointer: %s\n",
2361 control_register & HDSPM_LineOut) ? "on " : "off",
2362 (hdspm->precise_ptr) ? "on" : "off");
2364 switch (hdspm->control_register & HDSPM_InputMask) {
2365 case HDSPM_InputOptical:
2368 case HDSPM_InputCoaxial:
2375 switch (hdspm->control_register & HDSPM_SyncRefMask) {
2376 case HDSPM_SyncRef_Word:
2377 syncref = "WordClock";
2379 case HDSPM_SyncRef_MADI:
2385 snd_iprintf(buffer, "Inputsel = %s, SyncRef = %s\n", insel,
2389 "ClearTrackMarker = %s, Transmit in %s Channel Mode, Auto Input %s\n",
2391 control_register & HDSPM_clr_tms) ? "on" : "off",
2393 control_register & HDSPM_TX_64ch) ? "64" : "56",
2395 control_register & HDSPM_AutoInp) ? "on" : "off");
2397 switch (hdspm_clock_source(hdspm)) {
2398 case HDSPM_CLOCK_SOURCE_AUTOSYNC:
2399 clock_source = "AutoSync";
2401 case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ:
2402 clock_source = "Internal 32 kHz";
2404 case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ:
2405 clock_source = "Internal 44.1 kHz";
2407 case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ:
2408 clock_source = "Internal 48 kHz";
2410 case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ:
2411 clock_source = "Internal 64 kHz";
2413 case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ:
2414 clock_source = "Internal 88.2 kHz";
2416 case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ:
2417 clock_source = "Internal 96 kHz";
2420 clock_source = "Error";
2422 snd_iprintf(buffer, "Sample Clock Source: %s\n", clock_source);
2423 if (!(hdspm->control_register & HDSPM_ClockModeMaster)) {
2424 system_clock_mode = "Slave";
2426 system_clock_mode = "Master";
2428 snd_iprintf(buffer, "System Clock Mode: %s\n", system_clock_mode);
2430 switch (hdspm_pref_sync_ref(hdspm)) {
2431 case HDSPM_SYNC_FROM_WORD:
2432 pref_sync_ref = "Word Clock";
2434 case HDSPM_SYNC_FROM_MADI:
2435 pref_sync_ref = "MADI Sync";
2438 pref_sync_ref = "XXXX Clock";
2441 snd_iprintf(buffer, "Preferred Sync Reference: %s\n",
2444 snd_iprintf(buffer, "System Clock Frequency: %d\n",
2445 hdspm->system_sample_rate);
2448 snd_iprintf(buffer, "--- Status:\n");
2450 x = status & HDSPM_madiSync;
2451 x2 = status2 & HDSPM_wcSync;
2453 snd_iprintf(buffer, "Inputs MADI=%s, WordClock=%s\n",
2454 (status & HDSPM_madiLock) ? (x ? "Sync" : "Lock") :
2456 (status2 & HDSPM_wcLock) ? (x2 ? "Sync" : "Lock") :
2459 switch (hdspm_autosync_ref(hdspm)) {
2460 case HDSPM_AUTOSYNC_FROM_WORD:
2461 autosync_ref = "Word Clock";
2463 case HDSPM_AUTOSYNC_FROM_MADI:
2464 autosync_ref = "MADI Sync";
2466 case HDSPM_AUTOSYNC_FROM_NONE:
2467 autosync_ref = "Input not valid";
2470 autosync_ref = "---";
2474 "AutoSync: Reference= %s, Freq=%d (MADI = %d, Word = %d)\n",
2475 autosync_ref, hdspm_external_sample_rate(hdspm),
2476 (status & HDSPM_madiFreqMask) >> 22,
2477 (status2 & HDSPM_wcFreqMask) >> 5);
2479 snd_iprintf(buffer, "Input: %s, Mode=%s\n",
2480 (status & HDSPM_AB_int) ? "Coax" : "Optical",
2481 (status & HDSPM_RX_64ch) ? "64 channels" :
2484 snd_iprintf(buffer, "\n");
2487 static void __devinit snd_hdspm_proc_init(struct hdspm * hdspm)
2489 struct snd_info_entry *entry;
2491 if (!snd_card_proc_new(hdspm->card, "hdspm", &entry))
2492 snd_info_set_text_ops(entry, hdspm,
2493 snd_hdspm_proc_read);
2496 /*------------------------------------------------------------
2498 ------------------------------------------------------------*/
2500 static int snd_hdspm_set_defaults(struct hdspm * hdspm)
2504 /* ASSUMPTION: hdspm->lock is either held, or there is no need to
2505 hold it (e.g. during module initalization).
2510 hdspm->control_register = HDSPM_ClockModeMaster | /* Master Cloack Mode on */
2511 hdspm_encode_latency(7) | /* latency maximum = 8192 samples */
2512 HDSPM_InputCoaxial | /* Input Coax not Optical */
2513 HDSPM_SyncRef_MADI | /* Madi is syncclock */
2514 HDSPM_LineOut | /* Analog output in */
2515 HDSPM_TX_64ch | /* transmit in 64ch mode */
2516 HDSPM_AutoInp; /* AutoInput chossing (takeover) */
2518 /* ! HDSPM_Frequency0|HDSPM_Frequency1 = 44.1khz */
2519 /* ! HDSPM_DoubleSpeed HDSPM_QuadSpeed = normal speed */
2520 /* ! HDSPM_clr_tms = do not clear bits in track marks */
2522 hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register);
2524 #ifdef SNDRV_BIG_ENDIAN
2525 hdspm->control2_register = HDSPM_BIGENDIAN_MODE;
2527 hdspm->control2_register = 0;
2530 hdspm_write(hdspm, HDSPM_control2Reg, hdspm->control2_register);
2531 hdspm_compute_period_size(hdspm);
2533 /* silence everything */
2535 all_in_all_mixer(hdspm, 0 * UNITY_GAIN);
2537 if (line_outs_monitor[hdspm->dev]) {
2539 snd_printk(KERN_INFO "HDSPM: sending all playback streams to line outs.\n");
2541 for (i = 0; i < HDSPM_MIXER_CHANNELS; i++) {
2542 if (hdspm_write_pb_gain(hdspm, i, i, UNITY_GAIN))
2547 /* set a default rate so that the channel map is set up. */
2548 hdspm->channel_map = channel_map_madi_ss;
2549 hdspm_set_rate(hdspm, 44100, 1);
2555 /*------------------------------------------------------------
2557 ------------------------------------------------------------*/
2559 static irqreturn_t snd_hdspm_interrupt(int irq, void *dev_id)
2561 struct hdspm *hdspm = (struct hdspm *) dev_id;
2562 unsigned int status;
2566 unsigned int midi0status;
2567 unsigned int midi1status;
2570 status = hdspm_read(hdspm, HDSPM_statusRegister);
2572 audio = status & HDSPM_audioIRQPending;
2573 midi0 = status & HDSPM_midi0IRQPending;
2574 midi1 = status & HDSPM_midi1IRQPending;
2576 if (!audio && !midi0 && !midi1)
2579 hdspm_write(hdspm, HDSPM_interruptConfirmation, 0);
2582 midi0status = hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xff;
2583 midi1status = hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xff;
2587 if (hdspm->capture_substream)
2588 snd_pcm_period_elapsed(hdspm->pcm->
2590 [SNDRV_PCM_STREAM_CAPTURE].
2593 if (hdspm->playback_substream)
2594 snd_pcm_period_elapsed(hdspm->pcm->
2596 [SNDRV_PCM_STREAM_PLAYBACK].
2600 if (midi0 && midi0status) {
2601 /* we disable interrupts for this input until processing is done */
2602 hdspm->control_register &= ~HDSPM_Midi0InterruptEnable;
2603 hdspm_write(hdspm, HDSPM_controlRegister,
2604 hdspm->control_register);
2605 hdspm->midi[0].pending = 1;
2608 if (midi1 && midi1status) {
2609 /* we disable interrupts for this input until processing is done */
2610 hdspm->control_register &= ~HDSPM_Midi1InterruptEnable;
2611 hdspm_write(hdspm, HDSPM_controlRegister,
2612 hdspm->control_register);
2613 hdspm->midi[1].pending = 1;
2617 tasklet_hi_schedule(&hdspm->midi_tasklet);
2621 /*------------------------------------------------------------
2623 ------------------------------------------------------------*/
2626 static snd_pcm_uframes_t snd_hdspm_hw_pointer(struct snd_pcm_substream *
2629 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2630 return hdspm_hw_pointer(hdspm);
2633 static char *hdspm_channel_buffer_location(struct hdspm * hdspm,
2634 int stream, int channel)
2638 snd_assert(channel >= 0
2639 || channel < HDSPM_MAX_CHANNELS, return NULL);
2641 if ((mapped_channel = hdspm->channel_map[channel]) < 0)
2644 if (stream == SNDRV_PCM_STREAM_CAPTURE) {
2645 return hdspm->capture_buffer +
2646 mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
2648 return hdspm->playback_buffer +
2649 mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
2654 /* dont know why need it ??? */
2655 static int snd_hdspm_playback_copy(struct snd_pcm_substream *substream,
2656 int channel, snd_pcm_uframes_t pos,
2657 void __user *src, snd_pcm_uframes_t count)
2659 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2662 snd_assert(pos + count <= HDSPM_CHANNEL_BUFFER_BYTES / 4,
2665 channel_buf = hdspm_channel_buffer_location(hdspm,
2669 snd_assert(channel_buf != NULL, return -EIO);
2671 return copy_from_user(channel_buf + pos * 4, src, count * 4);
2674 static int snd_hdspm_capture_copy(struct snd_pcm_substream *substream,
2675 int channel, snd_pcm_uframes_t pos,
2676 void __user *dst, snd_pcm_uframes_t count)
2678 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2681 snd_assert(pos + count <= HDSPM_CHANNEL_BUFFER_BYTES / 4,
2684 channel_buf = hdspm_channel_buffer_location(hdspm,
2687 snd_assert(channel_buf != NULL, return -EIO);
2688 return copy_to_user(dst, channel_buf + pos * 4, count * 4);
2691 static int snd_hdspm_hw_silence(struct snd_pcm_substream *substream,
2692 int channel, snd_pcm_uframes_t pos,
2693 snd_pcm_uframes_t count)
2695 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2699 hdspm_channel_buffer_location(hdspm, substream->pstr->stream,
2701 snd_assert(channel_buf != NULL, return -EIO);
2702 memset(channel_buf + pos * 4, 0, count * 4);
2706 static int snd_hdspm_reset(struct snd_pcm_substream *substream)
2708 struct snd_pcm_runtime *runtime = substream->runtime;
2709 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2710 struct snd_pcm_substream *other;
2712 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2713 other = hdspm->capture_substream;
2715 other = hdspm->playback_substream;
2718 runtime->status->hw_ptr = hdspm_hw_pointer(hdspm);
2720 runtime->status->hw_ptr = 0;
2722 struct list_head *pos;
2723 struct snd_pcm_substream *s;
2724 struct snd_pcm_runtime *oruntime = other->runtime;
2725 snd_pcm_group_for_each(pos, substream) {
2726 s = snd_pcm_group_substream_entry(pos);
2728 oruntime->status->hw_ptr =
2729 runtime->status->hw_ptr;
2737 static int snd_hdspm_hw_params(struct snd_pcm_substream *substream,
2738 struct snd_pcm_hw_params *params)
2740 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2745 struct snd_sg_buf *sgbuf;
2748 spin_lock_irq(&hdspm->lock);
2750 if (substream->pstr->stream == SNDRV_PCM_STREAM_PLAYBACK) {
2751 this_pid = hdspm->playback_pid;
2752 other_pid = hdspm->capture_pid;
2754 this_pid = hdspm->capture_pid;
2755 other_pid = hdspm->playback_pid;
2758 if ((other_pid > 0) && (this_pid != other_pid)) {
2760 /* The other stream is open, and not by the same
2761 task as this one. Make sure that the parameters
2762 that matter are the same.
2765 if (params_rate(params) != hdspm->system_sample_rate) {
2766 spin_unlock_irq(&hdspm->lock);
2767 _snd_pcm_hw_param_setempty(params,
2768 SNDRV_PCM_HW_PARAM_RATE);
2772 if (params_period_size(params) != hdspm->period_bytes / 4) {
2773 spin_unlock_irq(&hdspm->lock);
2774 _snd_pcm_hw_param_setempty(params,
2775 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2781 spin_unlock_irq(&hdspm->lock);
2783 /* how to make sure that the rate matches an externally-set one ? */
2785 spin_lock_irq(&hdspm->lock);
2786 if ((err = hdspm_set_rate(hdspm, params_rate(params), 0)) < 0) {
2787 spin_unlock_irq(&hdspm->lock);
2788 _snd_pcm_hw_param_setempty(params,
2789 SNDRV_PCM_HW_PARAM_RATE);
2792 spin_unlock_irq(&hdspm->lock);
2795 hdspm_set_interrupt_interval(hdspm,
2796 params_period_size(params))) <
2798 _snd_pcm_hw_param_setempty(params,
2799 SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2803 /* Memory allocation, takashi's method, dont know if we should spinlock */
2804 /* malloc all buffer even if not enabled to get sure */
2805 /* malloc only needed bytes */
2807 snd_pcm_lib_malloc_pages(substream,
2808 HDSPM_CHANNEL_BUFFER_BYTES *
2809 params_channels(params));
2813 sgbuf = snd_pcm_substream_sgbuf(substream);
2815 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
2817 hdspm_set_sgbuf(hdspm, sgbuf, HDSPM_pageAddressBufferOut,
2818 params_channels(params));
2820 for (i = 0; i < params_channels(params); ++i)
2821 snd_hdspm_enable_out(hdspm, i, 1);
2823 hdspm->playback_buffer =
2824 (unsigned char *) substream->runtime->dma_area;
2826 hdspm_set_sgbuf(hdspm, sgbuf, HDSPM_pageAddressBufferIn,
2827 params_channels(params));
2829 for (i = 0; i < params_channels(params); ++i)
2830 snd_hdspm_enable_in(hdspm, i, 1);
2832 hdspm->capture_buffer =
2833 (unsigned char *) substream->runtime->dma_area;
2838 static int snd_hdspm_hw_free(struct snd_pcm_substream *substream)
2841 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2843 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
2845 /* params_channels(params) should be enough,
2846 but to get sure in case of error */
2847 for (i = 0; i < HDSPM_MAX_CHANNELS; ++i)
2848 snd_hdspm_enable_out(hdspm, i, 0);
2850 hdspm->playback_buffer = NULL;
2852 for (i = 0; i < HDSPM_MAX_CHANNELS; ++i)
2853 snd_hdspm_enable_in(hdspm, i, 0);
2855 hdspm->capture_buffer = NULL;
2859 snd_pcm_lib_free_pages(substream);
2864 static int snd_hdspm_channel_info(struct snd_pcm_substream *substream,
2865 struct snd_pcm_channel_info * info)
2867 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2870 snd_assert(info->channel < HDSPM_MAX_CHANNELS, return -EINVAL);
2872 if ((mapped_channel = hdspm->channel_map[info->channel]) < 0)
2875 info->offset = mapped_channel * HDSPM_CHANNEL_BUFFER_BYTES;
2881 static int snd_hdspm_ioctl(struct snd_pcm_substream *substream,
2882 unsigned int cmd, void *arg)
2885 case SNDRV_PCM_IOCTL1_RESET:
2887 return snd_hdspm_reset(substream);
2890 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
2892 struct snd_pcm_channel_info *info = arg;
2893 return snd_hdspm_channel_info(substream, info);
2899 return snd_pcm_lib_ioctl(substream, cmd, arg);
2902 static int snd_hdspm_trigger(struct snd_pcm_substream *substream, int cmd)
2904 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
2905 struct snd_pcm_substream *other;
2908 spin_lock(&hdspm->lock);
2909 running = hdspm->running;
2911 case SNDRV_PCM_TRIGGER_START:
2912 running |= 1 << substream->stream;
2914 case SNDRV_PCM_TRIGGER_STOP:
2915 running &= ~(1 << substream->stream);
2919 spin_unlock(&hdspm->lock);
2922 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2923 other = hdspm->capture_substream;
2925 other = hdspm->playback_substream;
2928 struct list_head *pos;
2929 struct snd_pcm_substream *s;
2930 snd_pcm_group_for_each(pos, substream) {
2931 s = snd_pcm_group_substream_entry(pos);
2933 snd_pcm_trigger_done(s, substream);
2934 if (cmd == SNDRV_PCM_TRIGGER_START)
2935 running |= 1 << s->stream;
2937 running &= ~(1 << s->stream);
2941 if (cmd == SNDRV_PCM_TRIGGER_START) {
2942 if (!(running & (1 << SNDRV_PCM_STREAM_PLAYBACK))
2943 && substream->stream ==
2944 SNDRV_PCM_STREAM_CAPTURE)
2945 hdspm_silence_playback(hdspm);
2948 substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2949 hdspm_silence_playback(hdspm);
2952 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2953 hdspm_silence_playback(hdspm);
2956 snd_pcm_trigger_done(substream, substream);
2957 if (!hdspm->running && running)
2958 hdspm_start_audio(hdspm);
2959 else if (hdspm->running && !running)
2960 hdspm_stop_audio(hdspm);
2961 hdspm->running = running;
2962 spin_unlock(&hdspm->lock);
2967 static int snd_hdspm_prepare(struct snd_pcm_substream *substream)
2972 static unsigned int period_sizes[] =
2973 { 64, 128, 256, 512, 1024, 2048, 4096, 8192 };
2975 static struct snd_pcm_hardware snd_hdspm_playback_subinfo = {
2976 .info = (SNDRV_PCM_INFO_MMAP |
2977 SNDRV_PCM_INFO_MMAP_VALID |
2978 SNDRV_PCM_INFO_NONINTERLEAVED |
2979 SNDRV_PCM_INFO_SYNC_START | SNDRV_PCM_INFO_DOUBLE),
2980 .formats = SNDRV_PCM_FMTBIT_S32_LE,
2981 .rates = (SNDRV_PCM_RATE_32000 |
2982 SNDRV_PCM_RATE_44100 |
2983 SNDRV_PCM_RATE_48000 |
2984 SNDRV_PCM_RATE_64000 |
2985 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000),
2989 .channels_max = HDSPM_MAX_CHANNELS,
2991 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
2992 .period_bytes_min = (64 * 4),
2993 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
2999 static struct snd_pcm_hardware snd_hdspm_capture_subinfo = {
3000 .info = (SNDRV_PCM_INFO_MMAP |
3001 SNDRV_PCM_INFO_MMAP_VALID |
3002 SNDRV_PCM_INFO_NONINTERLEAVED |
3003 SNDRV_PCM_INFO_SYNC_START),
3004 .formats = SNDRV_PCM_FMTBIT_S32_LE,
3005 .rates = (SNDRV_PCM_RATE_32000 |
3006 SNDRV_PCM_RATE_44100 |
3007 SNDRV_PCM_RATE_48000 |
3008 SNDRV_PCM_RATE_64000 |
3009 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000),
3013 .channels_max = HDSPM_MAX_CHANNELS,
3015 HDSPM_CHANNEL_BUFFER_BYTES * HDSPM_MAX_CHANNELS,
3016 .period_bytes_min = (64 * 4),
3017 .period_bytes_max = (8192 * 4) * HDSPM_MAX_CHANNELS,
3023 static struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = {
3024 .count = ARRAY_SIZE(period_sizes),
3025 .list = period_sizes,
3030 static int snd_hdspm_hw_rule_channels_rate(struct snd_pcm_hw_params *params,
3031 struct snd_pcm_hw_rule * rule)
3033 struct hdspm *hdspm = rule->private;
3034 struct snd_interval *c =
3035 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
3036 struct snd_interval *r =
3037 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
3039 if (r->min > 48000) {
3040 struct snd_interval t = {
3042 .max = hdspm->ds_channels,
3045 return snd_interval_refine(c, &t);
3046 } else if (r->max < 64000) {
3047 struct snd_interval t = {
3049 .max = hdspm->ss_channels,
3052 return snd_interval_refine(c, &t);
3057 static int snd_hdspm_hw_rule_rate_channels(struct snd_pcm_hw_params *params,
3058 struct snd_pcm_hw_rule * rule)
3060 struct hdspm *hdspm = rule->private;
3061 struct snd_interval *c =
3062 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
3063 struct snd_interval *r =
3064 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
3066 if (c->min <= hdspm->ss_channels) {
3067 struct snd_interval t = {
3072 return snd_interval_refine(r, &t);
3073 } else if (c->max > hdspm->ss_channels) {
3074 struct snd_interval t = {
3080 return snd_interval_refine(r, &t);
3085 static int snd_hdspm_playback_open(struct snd_pcm_substream *substream)
3087 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3088 struct snd_pcm_runtime *runtime = substream->runtime;
3090 snd_printdd("Open device substream %d\n", substream->stream);
3092 spin_lock_irq(&hdspm->lock);
3094 snd_pcm_set_sync(substream);
3096 runtime->hw = snd_hdspm_playback_subinfo;
3098 if (hdspm->capture_substream == NULL)
3099 hdspm_stop_audio(hdspm);
3101 hdspm->playback_pid = current->pid;
3102 hdspm->playback_substream = substream;
3104 spin_unlock_irq(&hdspm->lock);
3106 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
3108 snd_pcm_hw_constraint_list(runtime, 0,
3109 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
3110 &hw_constraints_period_sizes);
3112 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
3113 snd_hdspm_hw_rule_channels_rate, hdspm,
3114 SNDRV_PCM_HW_PARAM_RATE, -1);
3116 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
3117 snd_hdspm_hw_rule_rate_channels, hdspm,
3118 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
3123 static int snd_hdspm_playback_release(struct snd_pcm_substream *substream)
3125 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3127 spin_lock_irq(&hdspm->lock);
3129 hdspm->playback_pid = -1;
3130 hdspm->playback_substream = NULL;
3132 spin_unlock_irq(&hdspm->lock);
3138 static int snd_hdspm_capture_open(struct snd_pcm_substream *substream)
3140 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3141 struct snd_pcm_runtime *runtime = substream->runtime;
3143 spin_lock_irq(&hdspm->lock);
3144 snd_pcm_set_sync(substream);
3145 runtime->hw = snd_hdspm_capture_subinfo;
3147 if (hdspm->playback_substream == NULL)
3148 hdspm_stop_audio(hdspm);
3150 hdspm->capture_pid = current->pid;
3151 hdspm->capture_substream = substream;
3153 spin_unlock_irq(&hdspm->lock);
3155 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
3156 snd_pcm_hw_constraint_list(runtime, 0,
3157 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
3158 &hw_constraints_period_sizes);
3160 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
3161 snd_hdspm_hw_rule_channels_rate, hdspm,
3162 SNDRV_PCM_HW_PARAM_RATE, -1);
3164 snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
3165 snd_hdspm_hw_rule_rate_channels, hdspm,
3166 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
3170 static int snd_hdspm_capture_release(struct snd_pcm_substream *substream)
3172 struct hdspm *hdspm = snd_pcm_substream_chip(substream);
3174 spin_lock_irq(&hdspm->lock);
3176 hdspm->capture_pid = -1;
3177 hdspm->capture_substream = NULL;
3179 spin_unlock_irq(&hdspm->lock);
3183 static int snd_hdspm_hwdep_dummy_op(struct snd_hwdep * hw, struct file *file)
3185 /* we have nothing to initialize but the call is required */
3190 static int snd_hdspm_hwdep_ioctl(struct snd_hwdep * hw, struct file *file,
3191 unsigned int cmd, unsigned long arg)
3193 struct hdspm *hdspm = (struct hdspm *) hw->private_data;
3194 struct hdspm_mixer_ioctl mixer;
3195 struct hdspm_config_info info;
3196 struct hdspm_version hdspm_version;
3197 struct hdspm_peak_rms_ioctl rms;
3202 case SNDRV_HDSPM_IOCTL_GET_PEAK_RMS:
3203 if (copy_from_user(&rms, (void __user *)arg, sizeof(rms)))
3205 /* maybe there is a chance to memorymap in future so dont touch just copy */
3206 if(copy_to_user_fromio((void __user *)rms.peak,
3207 hdspm->iobase+HDSPM_MADI_peakrmsbase,
3208 sizeof(struct hdspm_peak_rms)) != 0 )
3214 case SNDRV_HDSPM_IOCTL_GET_CONFIG_INFO:
3216 spin_lock_irq(&hdspm->lock);
3217 info.pref_sync_ref =
3218 (unsigned char) hdspm_pref_sync_ref(hdspm);
3219 info.wordclock_sync_check =
3220 (unsigned char) hdspm_wc_sync_check(hdspm);
3222 info.system_sample_rate = hdspm->system_sample_rate;
3223 info.autosync_sample_rate =
3224 hdspm_external_sample_rate(hdspm);
3225 info.system_clock_mode =
3226 (unsigned char) hdspm_system_clock_mode(hdspm);
3228 (unsigned char) hdspm_clock_source(hdspm);
3230 (unsigned char) hdspm_autosync_ref(hdspm);
3231 info.line_out = (unsigned char) hdspm_line_out(hdspm);
3233 spin_unlock_irq(&hdspm->lock);
3234 if (copy_to_user((void __user *) arg, &info, sizeof(info)))
3238 case SNDRV_HDSPM_IOCTL_GET_VERSION:
3239 hdspm_version.firmware_rev = hdspm->firmware_rev;
3240 if (copy_to_user((void __user *) arg, &hdspm_version,
3241 sizeof(hdspm_version)))
3245 case SNDRV_HDSPM_IOCTL_GET_MIXER:
3246 if (copy_from_user(&mixer, (void __user *)arg, sizeof(mixer)))
3249 ((void __user *)mixer.mixer, hdspm->mixer, sizeof(struct hdspm_mixer)))
3259 static struct snd_pcm_ops snd_hdspm_playback_ops = {
3260 .open = snd_hdspm_playback_open,
3261 .close = snd_hdspm_playback_release,
3262 .ioctl = snd_hdspm_ioctl,
3263 .hw_params = snd_hdspm_hw_params,
3264 .hw_free = snd_hdspm_hw_free,
3265 .prepare = snd_hdspm_prepare,
3266 .trigger = snd_hdspm_trigger,
3267 .pointer = snd_hdspm_hw_pointer,
3268 .copy = snd_hdspm_playback_copy,
3269 .silence = snd_hdspm_hw_silence,
3270 .page = snd_pcm_sgbuf_ops_page,
3273 static struct snd_pcm_ops snd_hdspm_capture_ops = {
3274 .open = snd_hdspm_capture_open,
3275 .close = snd_hdspm_capture_release,
3276 .ioctl = snd_hdspm_ioctl,
3277 .hw_params = snd_hdspm_hw_params,
3278 .hw_free = snd_hdspm_hw_free,
3279 .prepare = snd_hdspm_prepare,
3280 .trigger = snd_hdspm_trigger,
3281 .pointer = snd_hdspm_hw_pointer,
3282 .copy = snd_hdspm_capture_copy,
3283 .page = snd_pcm_sgbuf_ops_page,
3286 static int __devinit snd_hdspm_create_hwdep(struct snd_card *card,
3287 struct hdspm * hdspm)
3289 struct snd_hwdep *hw;
3292 if ((err = snd_hwdep_new(card, "HDSPM hwdep", 0, &hw)) < 0)
3296 hw->private_data = hdspm;
3297 strcpy(hw->name, "HDSPM hwdep interface");
3299 hw->ops.open = snd_hdspm_hwdep_dummy_op;
3300 hw->ops.ioctl = snd_hdspm_hwdep_ioctl;
3301 hw->ops.release = snd_hdspm_hwdep_dummy_op;
3307 /*------------------------------------------------------------
3309 ------------------------------------------------------------*/
3310 static int __devinit snd_hdspm_preallocate_memory(struct hdspm * hdspm)
3313 struct snd_pcm *pcm;
3318 wanted = HDSPM_DMA_AREA_BYTES + 4096; /* dont know why, but it works */
3321 snd_pcm_lib_preallocate_pages_for_all(pcm,
3322 SNDRV_DMA_TYPE_DEV_SG,
3323 snd_dma_pci_data(hdspm->pci),
3326 snd_printdd("Could not preallocate %zd Bytes\n", wanted);
3330 snd_printdd(" Preallocated %zd Bytes\n", wanted);
3335 static void hdspm_set_sgbuf(struct hdspm * hdspm, struct snd_sg_buf *sgbuf,
3336 unsigned int reg, int channels)
3339 for (i = 0; i < (channels * 16); i++)
3340 hdspm_write(hdspm, reg + 4 * i,
3341 snd_pcm_sgbuf_get_addr(sgbuf,
3342 (size_t) 4096 * i));
3345 /* ------------- ALSA Devices ---------------------------- */
3346 static int __devinit snd_hdspm_create_pcm(struct snd_card *card,
3347 struct hdspm * hdspm)
3349 struct snd_pcm *pcm;
3352 if ((err = snd_pcm_new(card, hdspm->card_name, 0, 1, 1, &pcm)) < 0)
3356 pcm->private_data = hdspm;
3357 strcpy(pcm->name, hdspm->card_name);
3359 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
3360 &snd_hdspm_playback_ops);
3361 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
3362 &snd_hdspm_capture_ops);
3364 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
3366 if ((err = snd_hdspm_preallocate_memory(hdspm)) < 0)
3372 static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm)
3374 snd_hdspm_flush_midi_input(hdspm, 0);
3375 snd_hdspm_flush_midi_input(hdspm, 1);
3378 static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card,
3379 struct hdspm * hdspm)
3383 snd_printdd("Create card...\n");
3384 if ((err = snd_hdspm_create_pcm(card, hdspm)) < 0)
3387 if ((err = snd_hdspm_create_midi(card, hdspm, 0)) < 0)
3390 if ((err = snd_hdspm_create_midi(card, hdspm, 1)) < 0)
3393 if ((err = snd_hdspm_create_controls(card, hdspm)) < 0)
3396 if ((err = snd_hdspm_create_hwdep(card, hdspm)) < 0)
3399 snd_printdd("proc init...\n");
3400 snd_hdspm_proc_init(hdspm);
3402 hdspm->system_sample_rate = -1;
3403 hdspm->last_external_sample_rate = -1;
3404 hdspm->last_internal_sample_rate = -1;
3405 hdspm->playback_pid = -1;
3406 hdspm->capture_pid = -1;
3407 hdspm->capture_substream = NULL;
3408 hdspm->playback_substream = NULL;
3410 snd_printdd("Set defaults...\n");
3411 if ((err = snd_hdspm_set_defaults(hdspm)) < 0)
3414 snd_printdd("Update mixer controls...\n");
3415 hdspm_update_simple_mixer_controls(hdspm);
3417 snd_printdd("Initializeing complete ???\n");
3419 if ((err = snd_card_register(card)) < 0) {
3420 snd_printk(KERN_ERR "HDSPM: error registering card\n");
3424 snd_printdd("... yes now\n");
3429 static int __devinit snd_hdspm_create(struct snd_card *card, struct hdspm * hdspm,
3430 int precise_ptr, int enable_monitor)
3432 struct pci_dev *pci = hdspm->pci;
3436 unsigned long io_extent;
3439 hdspm->irq_count = 0;
3441 hdspm->midi[0].rmidi = NULL;
3442 hdspm->midi[1].rmidi = NULL;
3443 hdspm->midi[0].input = NULL;
3444 hdspm->midi[1].input = NULL;
3445 hdspm->midi[0].output = NULL;
3446 hdspm->midi[1].output = NULL;
3447 spin_lock_init(&hdspm->midi[0].lock);
3448 spin_lock_init(&hdspm->midi[1].lock);
3449 hdspm->iobase = NULL;
3450 hdspm->control_register = 0;
3451 hdspm->control2_register = 0;
3453 hdspm->playback_buffer = NULL;
3454 hdspm->capture_buffer = NULL;
3456 for (i = 0; i < HDSPM_MAX_CHANNELS; ++i)
3457 hdspm->playback_mixer_ctls[i] = NULL;
3458 hdspm->mixer = NULL;
3462 spin_lock_init(&hdspm->lock);
3464 tasklet_init(&hdspm->midi_tasklet,
3465 hdspm_midi_tasklet, (unsigned long) hdspm);
3467 pci_read_config_word(hdspm->pci,
3468 PCI_CLASS_REVISION, &hdspm->firmware_rev);
3470 strcpy(card->driver, "HDSPM");
3471 strcpy(card->mixername, "Xilinx FPGA");
3472 hdspm->card_name = "RME HDSPM MADI";
3474 if ((err = pci_enable_device(pci)) < 0)
3477 pci_set_master(hdspm->pci);
3479 if ((err = pci_request_regions(pci, "hdspm")) < 0)
3482 hdspm->port = pci_resource_start(pci, 0);
3483 io_extent = pci_resource_len(pci, 0);
3485 snd_printdd("grabbed memory region 0x%lx-0x%lx\n",
3486 hdspm->port, hdspm->port + io_extent - 1);
3489 if ((hdspm->iobase = ioremap_nocache(hdspm->port, io_extent)) == NULL) {
3490 snd_printk(KERN_ERR "HDSPM: unable to remap region 0x%lx-0x%lx\n",
3491 hdspm->port, hdspm->port + io_extent - 1);
3494 snd_printdd("remapped region (0x%lx) 0x%lx-0x%lx\n",
3495 (unsigned long)hdspm->iobase, hdspm->port,
3496 hdspm->port + io_extent - 1);
3498 if (request_irq(pci->irq, snd_hdspm_interrupt,
3499 IRQF_DISABLED | IRQF_SHARED, "hdspm",
3501 snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq);
3505 snd_printdd("use IRQ %d\n", pci->irq);
3507 hdspm->irq = pci->irq;
3508 hdspm->precise_ptr = precise_ptr;
3510 hdspm->monitor_outs = enable_monitor;
3512 snd_printdd("kmalloc Mixer memory of %zd Bytes\n",
3513 sizeof(struct hdspm_mixer));
3514 if ((hdspm->mixer = kmalloc(sizeof(struct hdspm_mixer), GFP_KERNEL))
3516 snd_printk(KERN_ERR "HDSPM: unable to kmalloc Mixer memory of %d Bytes\n",
3517 (int)sizeof(struct hdspm_mixer));
3521 hdspm->ss_channels = MADI_SS_CHANNELS;
3522 hdspm->ds_channels = MADI_DS_CHANNELS;
3523 hdspm->qs_channels = MADI_QS_CHANNELS;
3525 snd_printdd("create alsa devices.\n");
3526 if ((err = snd_hdspm_create_alsa_devices(card, hdspm)) < 0)
3529 snd_hdspm_initialize_midi_flush(hdspm);
3534 static int snd_hdspm_free(struct hdspm * hdspm)
3539 /* stop th audio, and cancel all interrupts */
3540 hdspm->control_register &=
3541 ~(HDSPM_Start | HDSPM_AudioInterruptEnable
3542 | HDSPM_Midi0InterruptEnable |
3543 HDSPM_Midi1InterruptEnable);
3544 hdspm_write(hdspm, HDSPM_controlRegister,
3545 hdspm->control_register);
3548 if (hdspm->irq >= 0)
3549 free_irq(hdspm->irq, (void *) hdspm);
3552 kfree(hdspm->mixer);
3555 iounmap(hdspm->iobase);
3558 pci_release_regions(hdspm->pci);
3560 pci_disable_device(hdspm->pci);
3564 static void snd_hdspm_card_free(struct snd_card *card)
3566 struct hdspm *hdspm = (struct hdspm *) card->private_data;
3569 snd_hdspm_free(hdspm);
3572 static int __devinit snd_hdspm_probe(struct pci_dev *pci,
3573 const struct pci_device_id *pci_id)
3576 struct hdspm *hdspm;
3577 struct snd_card *card;
3580 if (dev >= SNDRV_CARDS)
3587 if (!(card = snd_card_new(index[dev], id[dev],
3588 THIS_MODULE, sizeof(struct hdspm))))
3591 hdspm = (struct hdspm *) card->private_data;
3592 card->private_free = snd_hdspm_card_free;
3597 snd_hdspm_create(card, hdspm, precise_ptr[dev],
3598 enable_monitor[dev])) < 0) {
3599 snd_card_free(card);
3603 strcpy(card->shortname, "HDSPM MADI");
3604 sprintf(card->longname, "%s at 0x%lx, irq %d", hdspm->card_name,
3605 hdspm->port, hdspm->irq);
3607 if ((err = snd_card_register(card)) < 0) {
3608 snd_card_free(card);
3612 pci_set_drvdata(pci, card);
3618 static void __devexit snd_hdspm_remove(struct pci_dev *pci)
3620 snd_card_free(pci_get_drvdata(pci));
3621 pci_set_drvdata(pci, NULL);
3624 static struct pci_driver driver = {
3625 .name = "RME Hammerfall DSP MADI",
3626 .id_table = snd_hdspm_ids,
3627 .probe = snd_hdspm_probe,
3628 .remove = __devexit_p(snd_hdspm_remove),
3632 static int __init alsa_card_hdspm_init(void)
3634 return pci_register_driver(&driver);
3637 static void __exit alsa_card_hdspm_exit(void)
3639 pci_unregister_driver(&driver);
3642 module_init(alsa_card_hdspm_init)
3643 module_exit(alsa_card_hdspm_exit)