| /* -*- linux-c -*- |
| * |
| * ALSA driver for RME Hammerfall DSP MADI audio interface(s) |
| * |
| * Copyright (c) 2003 Winfried Ritsch (IEM) |
| * code based on hdsp.c Paul Davis |
| * Marcus Andersson |
| * Thomas Charbonnel |
| * Modified 2006-06-01 for AES32 support by Remy Bruno |
| * <remy.bruno@trinnov.com> |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation; either version 2 of the License, or |
| * (at your option) any later version. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program; if not, write to the Free Software |
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| * |
| */ |
| #include <sound/driver.h> |
| #include <linux/init.h> |
| #include <linux/delay.h> |
| #include <linux/interrupt.h> |
| #include <linux/moduleparam.h> |
| #include <linux/slab.h> |
| #include <linux/pci.h> |
| #include <asm/io.h> |
| |
| #include <sound/core.h> |
| #include <sound/control.h> |
| #include <sound/pcm.h> |
| #include <sound/info.h> |
| #include <sound/asoundef.h> |
| #include <sound/rawmidi.h> |
| #include <sound/hwdep.h> |
| #include <sound/initval.h> |
| |
| #include <sound/hdspm.h> |
| |
| static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
| static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */ |
| |
| /* Disable precise pointer at start */ |
| static int precise_ptr[SNDRV_CARDS]; |
| |
| /* Send all playback to line outs */ |
| static int line_outs_monitor[SNDRV_CARDS]; |
| |
| /* Enable Analog Outs on Channel 63/64 by default */ |
| static int enable_monitor[SNDRV_CARDS]; |
| |
| module_param_array(index, int, NULL, 0444); |
| MODULE_PARM_DESC(index, "Index value for RME HDSPM interface."); |
| |
| module_param_array(id, charp, NULL, 0444); |
| MODULE_PARM_DESC(id, "ID string for RME HDSPM interface."); |
| |
| module_param_array(enable, bool, NULL, 0444); |
| MODULE_PARM_DESC(enable, "Enable/disable specific HDSPM soundcards."); |
| |
| module_param_array(precise_ptr, bool, NULL, 0444); |
| MODULE_PARM_DESC(precise_ptr, "Enable or disable precise pointer."); |
| |
| module_param_array(line_outs_monitor, bool, NULL, 0444); |
| MODULE_PARM_DESC(line_outs_monitor, |
| "Send playback streams to analog outs by default."); |
| |
| module_param_array(enable_monitor, bool, NULL, 0444); |
| MODULE_PARM_DESC(enable_monitor, |
| "Enable Analog Out on Channel 63/64 by default."); |
| |
| MODULE_AUTHOR |
| ("Winfried Ritsch <ritsch_AT_iem.at>, Paul Davis <paul@linuxaudiosystems.com>, " |
| "Marcus Andersson, Thomas Charbonnel <thomas@undata.org>, " |
| "Remy Bruno <remy.bruno@trinnov.com>"); |
| MODULE_DESCRIPTION("RME HDSPM"); |
| MODULE_LICENSE("GPL"); |
| MODULE_SUPPORTED_DEVICE("{{RME HDSPM-MADI}}"); |
| |
| /* --- Write registers. --- |
| These are defined as byte-offsets from the iobase value. */ |
| |
| #define HDSPM_controlRegister 64 |
| #define HDSPM_interruptConfirmation 96 |
| #define HDSPM_control2Reg 256 /* not in specs ???????? */ |
| #define HDSPM_freqReg 256 /* for AES32 */ |
| #define HDSPM_midiDataOut0 352 /* just believe in old code */ |
| #define HDSPM_midiDataOut1 356 |
| #define HDSPM_eeprom_wr 384 /* for AES32 */ |
| |
| /* DMA enable for 64 channels, only Bit 0 is relevant */ |
| #define HDSPM_outputEnableBase 512 /* 512-767 input DMA */ |
| #define HDSPM_inputEnableBase 768 /* 768-1023 output DMA */ |
| |
| /* 16 page addresses for each of the 64 channels DMA buffer in and out |
| (each 64k=16*4k) Buffer must be 4k aligned (which is default i386 ????) */ |
| #define HDSPM_pageAddressBufferOut 8192 |
| #define HDSPM_pageAddressBufferIn (HDSPM_pageAddressBufferOut+64*16*4) |
| |
| #define HDSPM_MADI_mixerBase 32768 /* 32768-65535 for 2x64x64 Fader */ |
| |
| #define HDSPM_MATRIX_MIXER_SIZE 8192 /* = 2*64*64 * 4 Byte => 32kB */ |
| |
| /* --- Read registers. --- |
| These are defined as byte-offsets from the iobase value */ |
| #define HDSPM_statusRegister 0 |
| /*#define HDSPM_statusRegister2 96 */ |
| /* after RME Windows driver sources, status2 is 4-byte word # 48 = word at |
| * offset 192, for AES32 *and* MADI |
| * => need to check that offset 192 is working on MADI */ |
| #define HDSPM_statusRegister2 192 |
| #define HDSPM_timecodeRegister 128 |
| |
| #define HDSPM_midiDataIn0 360 |
| #define HDSPM_midiDataIn1 364 |
| |
| /* status is data bytes in MIDI-FIFO (0-128) */ |
| #define HDSPM_midiStatusOut0 384 |
| #define HDSPM_midiStatusOut1 388 |
| #define HDSPM_midiStatusIn0 392 |
| #define HDSPM_midiStatusIn1 396 |
| |
| |
| /* the meters are regular i/o-mapped registers, but offset |
| considerably from the rest. the peak registers are reset |
| when read; the least-significant 4 bits are full-scale counters; |
| the actual peak value is in the most-significant 24 bits. |
| */ |
| #define HDSPM_MADI_peakrmsbase 4096 /* 4096-8191 2x64x32Bit Meters */ |
| |
| /* --- Control Register bits --------- */ |
| #define HDSPM_Start (1<<0) /* start engine */ |
| |
| #define HDSPM_Latency0 (1<<1) /* buffer size = 2^n */ |
| #define HDSPM_Latency1 (1<<2) /* where n is defined */ |
| #define HDSPM_Latency2 (1<<3) /* by Latency{2,1,0} */ |
| |
| #define HDSPM_ClockModeMaster (1<<4) /* 1=Master, 0=Slave/Autosync */ |
| |
| #define HDSPM_AudioInterruptEnable (1<<5) /* what do you think ? */ |
| |
| #define HDSPM_Frequency0 (1<<6) /* 0=44.1kHz/88.2kHz 1=48kHz/96kHz */ |
| #define HDSPM_Frequency1 (1<<7) /* 0=32kHz/64kHz */ |
| #define HDSPM_DoubleSpeed (1<<8) /* 0=normal speed, 1=double speed */ |
| #define HDSPM_QuadSpeed (1<<31) /* quad speed bit */ |
| |
| #define HDSPM_Professional (1<<9) /* Professional */ /* AES32 ONLY */ |
| #define HDSPM_TX_64ch (1<<10) /* Output 64channel MODE=1, |
| 56channelMODE=0 */ /* MADI ONLY*/ |
| #define HDSPM_Emphasis (1<<10) /* Emphasis */ /* AES32 ONLY */ |
| |
| #define HDSPM_AutoInp (1<<11) /* Auto Input (takeover) == Safe Mode, |
| 0=off, 1=on */ /* MADI ONLY */ |
| #define HDSPM_Dolby (1<<11) /* Dolby = "NonAudio" ?? */ /* AES32 ONLY */ |
| |
| #define HDSPM_InputSelect0 (1<<14) /* Input select 0= optical, 1=coax */ /* MADI ONLY*/ |
| #define HDSPM_InputSelect1 (1<<15) /* should be 0 */ |
| |
| #define HDSPM_SyncRef0 (1<<16) /* 0=WOrd, 1=MADI */ |
| #define HDSPM_SyncRef1 (1<<17) /* for AES32: SyncRefN codes the AES # */ |
| #define HDSPM_SyncRef2 (1<<13) |
| #define HDSPM_SyncRef3 (1<<25) |
| |
| #define HDSPM_SMUX (1<<18) /* Frame ??? */ /* MADI ONY */ |
| #define HDSPM_clr_tms (1<<19) /* clear track marker, do not use |
| AES additional bits in |
| lower 5 Audiodatabits ??? */ |
| #define HDSPM_taxi_reset (1<<20) /* ??? */ /* MADI ONLY ? */ |
| #define HDSPM_WCK48 (1<<20) /* Frame ??? = HDSPM_SMUX */ /* AES32 ONLY */ |
| |
| #define HDSPM_Midi0InterruptEnable (1<<22) |
| #define HDSPM_Midi1InterruptEnable (1<<23) |
| |
| #define HDSPM_LineOut (1<<24) /* Analog Out on channel 63/64 on=1, mute=0 */ |
| |
| #define HDSPM_DS_DoubleWire (1<<26) /* AES32 ONLY */ |
| #define HDSPM_QS_DoubleWire (1<<27) /* AES32 ONLY */ |
| #define HDSPM_QS_QuadWire (1<<28) /* AES32 ONLY */ |
| |
| #define HDSPM_wclk_sel (1<<30) |
| |
| /* --- bit helper defines */ |
| #define HDSPM_LatencyMask (HDSPM_Latency0|HDSPM_Latency1|HDSPM_Latency2) |
| #define HDSPM_FrequencyMask (HDSPM_Frequency0|HDSPM_Frequency1|HDSPM_DoubleSpeed|HDSPM_QuadSpeed) |
| #define HDSPM_InputMask (HDSPM_InputSelect0|HDSPM_InputSelect1) |
| #define HDSPM_InputOptical 0 |
| #define HDSPM_InputCoaxial (HDSPM_InputSelect0) |
| #define HDSPM_SyncRefMask (HDSPM_SyncRef0|HDSPM_SyncRef1|HDSPM_SyncRef2|HDSPM_SyncRef3) |
| #define HDSPM_SyncRef_Word 0 |
| #define HDSPM_SyncRef_MADI (HDSPM_SyncRef0) |
| |
| #define HDSPM_SYNC_FROM_WORD 0 /* Preferred sync reference */ |
| #define HDSPM_SYNC_FROM_MADI 1 /* choices - used by "pref_sync_ref" */ |
| |
| #define HDSPM_Frequency32KHz HDSPM_Frequency0 |
| #define HDSPM_Frequency44_1KHz HDSPM_Frequency1 |
| #define HDSPM_Frequency48KHz (HDSPM_Frequency1|HDSPM_Frequency0) |
| #define HDSPM_Frequency64KHz (HDSPM_DoubleSpeed|HDSPM_Frequency0) |
| #define HDSPM_Frequency88_2KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1) |
| #define HDSPM_Frequency96KHz (HDSPM_DoubleSpeed|HDSPM_Frequency1|HDSPM_Frequency0) |
| #define HDSPM_Frequency128KHz (HDSPM_QuadSpeed|HDSPM_Frequency0) |
| #define HDSPM_Frequency176_4KHz (HDSPM_QuadSpeed|HDSPM_Frequency1) |
| #define HDSPM_Frequency192KHz (HDSPM_QuadSpeed|HDSPM_Frequency1|HDSPM_Frequency0) |
| |
| /* --- for internal discrimination */ |
| #define HDSPM_CLOCK_SOURCE_AUTOSYNC 0 /* Sample Clock Sources */ |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ 1 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ 2 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ 3 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ 4 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ 5 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ 6 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ 7 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ 8 |
| #define HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ 9 |
| |
| /* Synccheck Status */ |
| #define HDSPM_SYNC_CHECK_NO_LOCK 0 |
| #define HDSPM_SYNC_CHECK_LOCK 1 |
| #define HDSPM_SYNC_CHECK_SYNC 2 |
| |
| /* AutoSync References - used by "autosync_ref" control switch */ |
| #define HDSPM_AUTOSYNC_FROM_WORD 0 |
| #define HDSPM_AUTOSYNC_FROM_MADI 1 |
| #define HDSPM_AUTOSYNC_FROM_NONE 2 |
| |
| /* Possible sources of MADI input */ |
| #define HDSPM_OPTICAL 0 /* optical */ |
| #define HDSPM_COAXIAL 1 /* BNC */ |
| |
| #define hdspm_encode_latency(x) (((x)<<1) & HDSPM_LatencyMask) |
| #define hdspm_decode_latency(x) (((x) & HDSPM_LatencyMask)>>1) |
| |
| #define hdspm_encode_in(x) (((x)&0x3)<<14) |
| #define hdspm_decode_in(x) (((x)>>14)&0x3) |
| |
| /* --- control2 register bits --- */ |
| #define HDSPM_TMS (1<<0) |
| #define HDSPM_TCK (1<<1) |
| #define HDSPM_TDI (1<<2) |
| #define HDSPM_JTAG (1<<3) |
| #define HDSPM_PWDN (1<<4) |
| #define HDSPM_PROGRAM (1<<5) |
| #define HDSPM_CONFIG_MODE_0 (1<<6) |
| #define HDSPM_CONFIG_MODE_1 (1<<7) |
| /*#define HDSPM_VERSION_BIT (1<<8) not defined any more*/ |
| #define HDSPM_BIGENDIAN_MODE (1<<9) |
| #define HDSPM_RD_MULTIPLE (1<<10) |
| |
| /* --- Status Register bits --- */ /* MADI ONLY */ /* Bits defined here and |
| that do not conflict with specific bits for AES32 seem to be valid also for the AES32 */ |
| #define HDSPM_audioIRQPending (1<<0) /* IRQ is high and pending */ |
| #define HDSPM_RX_64ch (1<<1) /* Input 64chan. MODE=1, 56chn. MODE=0 */ |
| #define HDSPM_AB_int (1<<2) /* InputChannel Opt=0, Coax=1 (like inp0) */ |
| #define HDSPM_madiLock (1<<3) /* MADI Locked =1, no=0 */ |
| |
| #define HDSPM_BufferPositionMask 0x000FFC0 /* Bit 6..15 : h/w buffer pointer */ |
| /* since 64byte accurate last 6 bits |
| are not used */ |
| |
| #define HDSPM_madiSync (1<<18) /* MADI is in sync */ |
| #define HDSPM_DoubleSpeedStatus (1<<19) /* (input) card in double speed */ |
| |
| #define HDSPM_madiFreq0 (1<<22) /* system freq 0=error */ |
| #define HDSPM_madiFreq1 (1<<23) /* 1=32, 2=44.1 3=48 */ |
| #define HDSPM_madiFreq2 (1<<24) /* 4=64, 5=88.2 6=96 */ |
| #define HDSPM_madiFreq3 (1<<25) /* 7=128, 8=176.4 9=192 */ |
| |
| #define HDSPM_BufferID (1<<26) /* (Double)Buffer ID toggles with Interrupt */ |
| #define HDSPM_midi0IRQPending (1<<30) /* MIDI IRQ is pending */ |
| #define HDSPM_midi1IRQPending (1<<31) /* and aktiv */ |
| |
| /* --- status bit helpers */ |
| #define HDSPM_madiFreqMask (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2|HDSPM_madiFreq3) |
| #define HDSPM_madiFreq32 (HDSPM_madiFreq0) |
| #define HDSPM_madiFreq44_1 (HDSPM_madiFreq1) |
| #define HDSPM_madiFreq48 (HDSPM_madiFreq0|HDSPM_madiFreq1) |
| #define HDSPM_madiFreq64 (HDSPM_madiFreq2) |
| #define HDSPM_madiFreq88_2 (HDSPM_madiFreq0|HDSPM_madiFreq2) |
| #define HDSPM_madiFreq96 (HDSPM_madiFreq1|HDSPM_madiFreq2) |
| #define HDSPM_madiFreq128 (HDSPM_madiFreq0|HDSPM_madiFreq1|HDSPM_madiFreq2) |
| #define HDSPM_madiFreq176_4 (HDSPM_madiFreq3) |
| #define HDSPM_madiFreq192 (HDSPM_madiFreq3|HDSPM_madiFreq0) |
| |
| /* Status2 Register bits */ /* MADI ONLY */ |
| |
| #define HDSPM_version0 (1<<0) /* not realy defined but I guess */ |
| #define HDSPM_version1 (1<<1) /* in former cards it was ??? */ |
| #define HDSPM_version2 (1<<2) |
| |
| #define HDSPM_wcLock (1<<3) /* Wordclock is detected and locked */ |
| #define HDSPM_wcSync (1<<4) /* Wordclock is in sync with systemclock */ |
| |
| #define HDSPM_wc_freq0 (1<<5) /* input freq detected via autosync */ |
| #define HDSPM_wc_freq1 (1<<6) /* 001=32, 010==44.1, 011=48, */ |
| #define HDSPM_wc_freq2 (1<<7) /* 100=64, 101=88.2, 110=96, */ |
| /* missing Bit for 111=128, 1000=176.4, 1001=192 */ |
| |
| #define HDSPM_SelSyncRef0 (1<<8) /* Sync Source in slave mode */ |
| #define HDSPM_SelSyncRef1 (1<<9) /* 000=word, 001=MADI, */ |
| #define HDSPM_SelSyncRef2 (1<<10) /* 111=no valid signal */ |
| |
| #define HDSPM_wc_valid (HDSPM_wcLock|HDSPM_wcSync) |
| |
| #define HDSPM_wcFreqMask (HDSPM_wc_freq0|HDSPM_wc_freq1|HDSPM_wc_freq2) |
| #define HDSPM_wcFreq32 (HDSPM_wc_freq0) |
| #define HDSPM_wcFreq44_1 (HDSPM_wc_freq1) |
| #define HDSPM_wcFreq48 (HDSPM_wc_freq0|HDSPM_wc_freq1) |
| #define HDSPM_wcFreq64 (HDSPM_wc_freq2) |
| #define HDSPM_wcFreq88_2 (HDSPM_wc_freq0|HDSPM_wc_freq2) |
| #define HDSPM_wcFreq96 (HDSPM_wc_freq1|HDSPM_wc_freq2) |
| |
| |
| #define HDSPM_SelSyncRefMask (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|HDSPM_SelSyncRef2) |
| #define HDSPM_SelSyncRef_WORD 0 |
| #define HDSPM_SelSyncRef_MADI (HDSPM_SelSyncRef0) |
| #define HDSPM_SelSyncRef_NVALID (HDSPM_SelSyncRef0|HDSPM_SelSyncRef1|HDSPM_SelSyncRef2) |
| |
| /* |
| For AES32, bits for status, status2 and timecode are different |
| */ |
| /* status */ |
| #define HDSPM_AES32_wcLock 0x0200000 |
| #define HDSPM_AES32_wcFreq_bit 22 |
| /* (status >> HDSPM_AES32_wcFreq_bit) & 0xF gives WC frequency (cf function |
| HDSPM_bit2freq */ |
| #define HDSPM_AES32_syncref_bit 16 |
| /* (status >> HDSPM_AES32_syncref_bit) & 0xF gives sync source */ |
| |
| #define HDSPM_AES32_AUTOSYNC_FROM_WORD 0 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES1 1 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES2 2 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES3 3 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES4 4 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES5 5 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES6 6 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES7 7 |
| #define HDSPM_AES32_AUTOSYNC_FROM_AES8 8 |
| #define HDSPM_AES32_AUTOSYNC_FROM_NONE -1 |
| |
| /* status2 */ |
| /* HDSPM_LockAES_bit is given by HDSPM_LockAES >> (AES# - 1) */ |
| #define HDSPM_LockAES 0x80 |
| #define HDSPM_LockAES1 0x80 |
| #define HDSPM_LockAES2 0x40 |
| #define HDSPM_LockAES3 0x20 |
| #define HDSPM_LockAES4 0x10 |
| #define HDSPM_LockAES5 0x8 |
| #define HDSPM_LockAES6 0x4 |
| #define HDSPM_LockAES7 0x2 |
| #define HDSPM_LockAES8 0x1 |
| /* |
| Timecode |
| After windows driver sources, bits 4*i to 4*i+3 give the input frequency on |
| AES i+1 |
| bits 3210 |
| 0001 32kHz |
| 0010 44.1kHz |
| 0011 48kHz |
| 0100 64kHz |
| 0101 88.2kHz |
| 0110 96kHz |
| 0111 128kHz |
| 1000 176.4kHz |
| 1001 192kHz |
| NB: Timecode register doesn't seem to work on AES32 card revision 230 |
| */ |
| |
| /* Mixer Values */ |
| #define UNITY_GAIN 32768 /* = 65536/2 */ |
| #define MINUS_INFINITY_GAIN 0 |
| |
| /* Number of channels for different Speed Modes */ |
| #define MADI_SS_CHANNELS 64 |
| #define MADI_DS_CHANNELS 32 |
| #define MADI_QS_CHANNELS 16 |
| |
| /* the size of a substream (1 mono data stream) */ |
| #define HDSPM_CHANNEL_BUFFER_SAMPLES (16*1024) |
| #define HDSPM_CHANNEL_BUFFER_BYTES (4*HDSPM_CHANNEL_BUFFER_SAMPLES) |
| |
| /* the size of the area we need to allocate for DMA transfers. the |
| size is the same regardless of the number of channels, and |
| also the latency to use. |
| for one direction !!! |
| */ |
| #define HDSPM_DMA_AREA_BYTES (HDSPM_MAX_CHANNELS * HDSPM_CHANNEL_BUFFER_BYTES) |
| #define HDSPM_DMA_AREA_KILOBYTES (HDSPM_DMA_AREA_BYTES/1024) |
| |
| /* revisions >= 230 indicate AES32 card */ |
| #define HDSPM_AESREVISION 230 |
| |
| struct hdspm_midi { |
| struct hdspm *hdspm; |
| int id; |
| struct snd_rawmidi *rmidi; |
| struct snd_rawmidi_substream *input; |
| struct snd_rawmidi_substream *output; |
| char istimer; /* timer in use */ |
| struct timer_list timer; |
| spinlock_t lock; |
| int pending; |
| }; |
| |
| struct hdspm { |
| spinlock_t lock; |
| struct snd_pcm_substream *capture_substream; /* only one playback */ |
| struct snd_pcm_substream *playback_substream; /* and/or capture stream */ |
| |
| char *card_name; /* for procinfo */ |
| unsigned short firmware_rev; /* dont know if relevant (yes if AES32)*/ |
| |
| unsigned char is_aes32; /* indicates if card is AES32 */ |
| |
| int precise_ptr; /* use precise pointers, to be tested */ |
| int monitor_outs; /* set up monitoring outs init flag */ |
| |
| u32 control_register; /* cached value */ |
| u32 control2_register; /* cached value */ |
| |
| struct hdspm_midi midi[2]; |
| struct tasklet_struct midi_tasklet; |
| |
| size_t period_bytes; |
| unsigned char ss_channels; /* channels of card in single speed */ |
| unsigned char ds_channels; /* Double Speed */ |
| unsigned char qs_channels; /* Quad Speed */ |
| |
| unsigned char *playback_buffer; /* suitably aligned address */ |
| unsigned char *capture_buffer; /* suitably aligned address */ |
| |
| pid_t capture_pid; /* process id which uses capture */ |
| pid_t playback_pid; /* process id which uses capture */ |
| int running; /* running status */ |
| |
| int last_external_sample_rate; /* samplerate mystic ... */ |
| int last_internal_sample_rate; |
| int system_sample_rate; |
| |
| char *channel_map; /* channel map for DS and Quadspeed */ |
| |
| int dev; /* Hardware vars... */ |
| int irq; |
| unsigned long port; |
| void __iomem *iobase; |
| |
| int irq_count; /* for debug */ |
| |
| struct snd_card *card; /* one card */ |
| struct snd_pcm *pcm; /* has one pcm */ |
| struct snd_hwdep *hwdep; /* and a hwdep for additional ioctl */ |
| struct pci_dev *pci; /* and an pci info */ |
| |
| /* Mixer vars */ |
| struct snd_kcontrol *playback_mixer_ctls[HDSPM_MAX_CHANNELS]; /* fast alsa mixer */ |
| struct snd_kcontrol *input_mixer_ctls[HDSPM_MAX_CHANNELS]; /* but input to much, so not used */ |
| struct hdspm_mixer *mixer; /* full mixer accessable over mixer ioctl or hwdep-device */ |
| |
| }; |
| |
| /* These tables map the ALSA channels 1..N to the channels that we |
| need to use in order to find the relevant channel buffer. RME |
| refer to this kind of mapping as between "the ADAT channel and |
| the DMA channel." We index it using the logical audio channel, |
| and the value is the DMA channel (i.e. channel buffer number) |
| where the data for that channel can be read/written from/to. |
| */ |
| |
| static char channel_map_madi_ss[HDSPM_MAX_CHANNELS] = { |
| 0, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, |
| 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 27, 28, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, |
| 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, 60, 61, 62, 63 |
| }; |
| |
| |
| static struct pci_device_id snd_hdspm_ids[] __devinitdata = { |
| { |
| .vendor = PCI_VENDOR_ID_XILINX, |
| .device = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP_MADI, |
| .subvendor = PCI_ANY_ID, |
| .subdevice = PCI_ANY_ID, |
| .class = 0, |
| .class_mask = 0, |
| .driver_data = 0}, |
| {0,} |
| }; |
| |
| MODULE_DEVICE_TABLE(pci, snd_hdspm_ids); |
| |
| /* prototypes */ |
| static int __devinit snd_hdspm_create_alsa_devices(struct snd_card *card, |
| struct hdspm * hdspm); |
| static int __devinit snd_hdspm_create_pcm(struct snd_card *card, |
| struct hdspm * hdspm); |
| |
| static inline void snd_hdspm_initialize_midi_flush(struct hdspm * hdspm); |
| static int hdspm_update_simple_mixer_controls(struct hdspm * hdspm); |
| static int hdspm_autosync_ref(struct hdspm * hdspm); |
| static int snd_hdspm_set_defaults(struct hdspm * hdspm); |
| static void hdspm_set_sgbuf(struct hdspm * hdspm, struct snd_sg_buf *sgbuf, |
| unsigned int reg, int channels); |
| |
| static inline int HDSPM_bit2freq(int n) |
| { |
| static int bit2freq_tab[] = { 0, 32000, 44100, 48000, 64000, 88200, |
| 96000, 128000, 176400, 192000 }; |
| if (n < 1 || n > 9) |
| return 0; |
| return bit2freq_tab[n]; |
| } |
| |
| /* Write/read to/from HDSPM with Adresses in Bytes |
| not words but only 32Bit writes are allowed */ |
| |
| static inline void hdspm_write(struct hdspm * hdspm, unsigned int reg, |
| unsigned int val) |
| { |
| writel(val, hdspm->iobase + reg); |
| } |
| |
| static inline unsigned int hdspm_read(struct hdspm * hdspm, unsigned int reg) |
| { |
| return readl(hdspm->iobase + reg); |
| } |
| |
| /* for each output channel (chan) I have an Input (in) and Playback (pb) Fader |
| mixer is write only on hardware so we have to cache him for read |
| each fader is a u32, but uses only the first 16 bit */ |
| |
| static inline int hdspm_read_in_gain(struct hdspm * hdspm, unsigned int chan, |
| unsigned int in) |
| { |
| if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS) |
| return 0; |
| |
| return hdspm->mixer->ch[chan].in[in]; |
| } |
| |
| static inline int hdspm_read_pb_gain(struct hdspm * hdspm, unsigned int chan, |
| unsigned int pb) |
| { |
| if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS) |
| return 0; |
| return hdspm->mixer->ch[chan].pb[pb]; |
| } |
| |
| static inline int hdspm_write_in_gain(struct hdspm * hdspm, unsigned int chan, |
| unsigned int in, unsigned short data) |
| { |
| if (chan >= HDSPM_MIXER_CHANNELS || in >= HDSPM_MIXER_CHANNELS) |
| return -1; |
| |
| hdspm_write(hdspm, |
| HDSPM_MADI_mixerBase + |
| ((in + 128 * chan) * sizeof(u32)), |
| (hdspm->mixer->ch[chan].in[in] = data & 0xFFFF)); |
| return 0; |
| } |
| |
| static inline int hdspm_write_pb_gain(struct hdspm * hdspm, unsigned int chan, |
| unsigned int pb, unsigned short data) |
| { |
| if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS) |
| return -1; |
| |
| hdspm_write(hdspm, |
| HDSPM_MADI_mixerBase + |
| ((64 + pb + 128 * chan) * sizeof(u32)), |
| (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF)); |
| return 0; |
| } |
| |
| |
| /* enable DMA for specific channels, now available for DSP-MADI */ |
| static inline void snd_hdspm_enable_in(struct hdspm * hdspm, int i, int v) |
| { |
| hdspm_write(hdspm, HDSPM_inputEnableBase + (4 * i), v); |
| } |
| |
| static inline void snd_hdspm_enable_out(struct hdspm * hdspm, int i, int v) |
| { |
| hdspm_write(hdspm, HDSPM_outputEnableBase + (4 * i), v); |
| } |
| |
| /* check if same process is writing and reading */ |
| static inline int snd_hdspm_use_is_exclusive(struct hdspm * hdspm) |
| { |
| unsigned long flags; |
| int ret = 1; |
| |
| spin_lock_irqsave(&hdspm->lock, flags); |
| if ((hdspm->playback_pid != hdspm->capture_pid) && |
| (hdspm->playback_pid >= 0) && (hdspm->capture_pid >= 0)) { |
| ret = 0; |
| } |
| spin_unlock_irqrestore(&hdspm->lock, flags); |
| return ret; |
| } |
| |
| /* check for external sample rate */ |
| static inline int hdspm_external_sample_rate(struct hdspm * hdspm) |
| { |
| if (hdspm->is_aes32) { |
| unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2); |
| unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister); |
| unsigned int timecode = hdspm_read(hdspm, HDSPM_timecodeRegister); |
| |
| int syncref = hdspm_autosync_ref(hdspm); |
| |
| if (syncref == HDSPM_AES32_AUTOSYNC_FROM_WORD && |
| status & HDSPM_AES32_wcLock) |
| return HDSPM_bit2freq((status >> HDSPM_AES32_wcFreq_bit) & 0xF); |
| if (syncref >= HDSPM_AES32_AUTOSYNC_FROM_AES1 && |
| syncref <= HDSPM_AES32_AUTOSYNC_FROM_AES8 && |
| status2 & (HDSPM_LockAES >> |
| (syncref - HDSPM_AES32_AUTOSYNC_FROM_AES1))) |
| return HDSPM_bit2freq((timecode >> |
| (4*(syncref-HDSPM_AES32_AUTOSYNC_FROM_AES1))) & 0xF); |
| return 0; |
| } else { |
| unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2); |
| unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister); |
| unsigned int rate_bits; |
| int rate = 0; |
| |
| /* if wordclock has synced freq and wordclock is valid */ |
| if ((status2 & HDSPM_wcLock) != 0 && |
| (status & HDSPM_SelSyncRef0) == 0) { |
| |
| rate_bits = status2 & HDSPM_wcFreqMask; |
| |
| switch (rate_bits) { |
| case HDSPM_wcFreq32: |
| rate = 32000; |
| break; |
| case HDSPM_wcFreq44_1: |
| rate = 44100; |
| break; |
| case HDSPM_wcFreq48: |
| rate = 48000; |
| break; |
| case HDSPM_wcFreq64: |
| rate = 64000; |
| break; |
| case HDSPM_wcFreq88_2: |
| rate = 88200; |
| break; |
| case HDSPM_wcFreq96: |
| rate = 96000; |
| break; |
| /* Quadspeed Bit missing ???? */ |
| default: |
| rate = 0; |
| break; |
| } |
| } |
| |
| /* if rate detected and Syncref is Word than have it, word has priority to MADI */ |
| if (rate != 0 && |
| (status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD) |
| return rate; |
| |
| /* maby a madi input (which is taken if sel sync is madi) */ |
| if (status & HDSPM_madiLock) { |
| rate_bits = status & HDSPM_madiFreqMask; |
| |
| switch (rate_bits) { |
| case HDSPM_madiFreq32: |
| rate = 32000; |
| break; |
| case HDSPM_madiFreq44_1: |
| rate = 44100; |
| break; |
| case HDSPM_madiFreq48: |
| rate = 48000; |
| break; |
| case HDSPM_madiFreq64: |
| rate = 64000; |
| break; |
| case HDSPM_madiFreq88_2: |
| rate = 88200; |
| break; |
| case HDSPM_madiFreq96: |
| rate = 96000; |
| break; |
| case HDSPM_madiFreq128: |
| rate = 128000; |
| break; |
| case HDSPM_madiFreq176_4: |
| rate = 176400; |
| break; |
| case HDSPM_madiFreq192: |
| rate = 192000; |
| break; |
| default: |
| rate = 0; |
| break; |
| } |
| } |
| return rate; |
| } |
| } |
| |
| /* Latency function */ |
| static inline void hdspm_compute_period_size(struct hdspm * hdspm) |
| { |
| hdspm->period_bytes = |
| 1 << ((hdspm_decode_latency(hdspm->control_register) + 8)); |
| } |
| |
| static snd_pcm_uframes_t hdspm_hw_pointer(struct hdspm * hdspm) |
| { |
| int position; |
| |
| position = hdspm_read(hdspm, HDSPM_statusRegister); |
| |
| if (!hdspm->precise_ptr) { |
| return (position & HDSPM_BufferID) ? (hdspm->period_bytes / |
| 4) : 0; |
| } |
| |
| /* hwpointer comes in bytes and is 64Bytes accurate (by docu since PCI Burst) |
| i have experimented that it is at most 64 Byte to much for playing |
| so substraction of 64 byte should be ok for ALSA, but use it only |
| for application where you know what you do since if you come to |
| near with record pointer it can be a disaster */ |
| |
| position &= HDSPM_BufferPositionMask; |
| position = ((position - 64) % (2 * hdspm->period_bytes)) / 4; |
| |
| return position; |
| } |
| |
| |
| static inline void hdspm_start_audio(struct hdspm * s) |
| { |
| s->control_register |= (HDSPM_AudioInterruptEnable | HDSPM_Start); |
| hdspm_write(s, HDSPM_controlRegister, s->control_register); |
| } |
| |
| static inline void hdspm_stop_audio(struct hdspm * s) |
| { |
| s->control_register &= ~(HDSPM_Start | HDSPM_AudioInterruptEnable); |
| hdspm_write(s, HDSPM_controlRegister, s->control_register); |
| } |
| |
| /* should I silence all or only opened ones ? doit all for first even is 4MB*/ |
| static inline void hdspm_silence_playback(struct hdspm * hdspm) |
| { |
| int i; |
| int n = hdspm->period_bytes; |
| void *buf = hdspm->playback_buffer; |
| |
| if (buf == NULL) |
| return; |
| |
| for (i = 0; i < HDSPM_MAX_CHANNELS; i++) { |
| memset(buf, 0, n); |
| buf += HDSPM_CHANNEL_BUFFER_BYTES; |
| } |
| } |
| |
| static int hdspm_set_interrupt_interval(struct hdspm * s, unsigned int frames) |
| { |
| int n; |
| |
| spin_lock_irq(&s->lock); |
| |
| frames >>= 7; |
| n = 0; |
| while (frames) { |
| n++; |
| frames >>= 1; |
| } |
| s->control_register &= ~HDSPM_LatencyMask; |
| s->control_register |= hdspm_encode_latency(n); |
| |
| hdspm_write(s, HDSPM_controlRegister, s->control_register); |
| |
| hdspm_compute_period_size(s); |
| |
| spin_unlock_irq(&s->lock); |
| |
| return 0; |
| } |
| |
| static void hdspm_set_dds_value(struct hdspm *hdspm, int rate) |
| { |
| u64 n; |
| u32 r; |
| |
| if (rate >= 112000) |
| rate /= 4; |
| else if (rate >= 56000) |
| rate /= 2; |
| |
| /* RME says n = 104857600000000, but in the windows MADI driver, I see: |
| // return 104857600000000 / rate; // 100 MHz |
| return 110100480000000 / rate; // 105 MHz |
| */ |
| //n = 104857600000000ULL; /* = 2^20 * 10^8 */ |
| n = 110100480000000ULL; /* Value checked for AES32 and MADI */ |
| div64_32(&n, rate, &r); |
| /* n should be less than 2^32 for being written to FREQ register */ |
| snd_assert((n >> 32) == 0); |
| hdspm_write(hdspm, HDSPM_freqReg, (u32)n); |
| } |
| |
| /* dummy set rate lets see what happens */ |
| static int hdspm_set_rate(struct hdspm * hdspm, int rate, int called_internally) |
| { |
| int reject_if_open = 0; |
| int current_rate; |
| int rate_bits; |
| int not_set = 0; |
| int is_single, is_double, is_quad; |
| |
| /* ASSUMPTION: hdspm->lock is either set, or there is no need for |
| it (e.g. during module initialization). |
| */ |
| |
| if (!(hdspm->control_register & HDSPM_ClockModeMaster)) { |
| |
| /* SLAVE --- */ |
| if (called_internally) { |
| |
| /* request from ctl or card initialization |
| just make a warning an remember setting |
| for future master mode switching */ |
| |
| snd_printk |
| (KERN_WARNING "HDSPM: Warning: device is not running as a clock master.\n"); |
| not_set = 1; |
| } else { |
| |
| /* hw_param request while in AutoSync mode */ |
| int external_freq = |
| hdspm_external_sample_rate(hdspm); |
| |
| if ((hdspm_autosync_ref(hdspm) == |
| HDSPM_AUTOSYNC_FROM_NONE)) { |
| |
| snd_printk(KERN_WARNING "HDSPM: Detected no Externel Sync \n"); |
| not_set = 1; |
| |
| } else if (rate != external_freq) { |
| |
| snd_printk |
| (KERN_WARNING "HDSPM: Warning: No AutoSync source for requested rate\n"); |
| not_set = 1; |
| } |
| } |
| } |
| |
| current_rate = hdspm->system_sample_rate; |
| |
| /* Changing between Singe, Double and Quad speed is not |
| allowed if any substreams are open. This is because such a change |
| causes a shift in the location of the DMA buffers and a reduction |
| in the number of available buffers. |
| |
| Note that a similar but essentially insoluble problem exists for |
| externally-driven rate changes. All we can do is to flag rate |
| changes in the read/write routines. |
| */ |
| |
| is_single = (current_rate <= 48000); |
| is_double = (current_rate > 48000 && current_rate <= 96000); |
| is_quad = (current_rate > 96000); |
| |
| switch (rate) { |
| case 32000: |
| if (!is_single) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency32KHz; |
| break; |
| case 44100: |
| if (!is_single) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency44_1KHz; |
| break; |
| case 48000: |
| if (!is_single) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency48KHz; |
| break; |
| case 64000: |
| if (!is_double) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency64KHz; |
| break; |
| case 88200: |
| if (!is_double) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency88_2KHz; |
| break; |
| case 96000: |
| if (!is_double) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency96KHz; |
| break; |
| case 128000: |
| if (!is_quad) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency128KHz; |
| break; |
| case 176400: |
| if (!is_quad) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency176_4KHz; |
| break; |
| case 192000: |
| if (!is_quad) |
| reject_if_open = 1; |
| rate_bits = HDSPM_Frequency192KHz; |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| if (reject_if_open |
| && (hdspm->capture_pid >= 0 || hdspm->playback_pid >= 0)) { |
| snd_printk |
| (KERN_ERR "HDSPM: cannot change between single- and double-speed mode (capture PID = %d, playback PID = %d)\n", |
| hdspm->capture_pid, hdspm->playback_pid); |
| return -EBUSY; |
| } |
| |
| hdspm->control_register &= ~HDSPM_FrequencyMask; |
| hdspm->control_register |= rate_bits; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| /* For AES32, need to set DDS value in FREQ register |
| For MADI, also apparently */ |
| hdspm_set_dds_value(hdspm, rate); |
| |
| if (hdspm->is_aes32 && rate != current_rate) |
| hdspm_write(hdspm, HDSPM_eeprom_wr, 0); |
| |
| /* For AES32 and for MADI (at least rev 204), channel_map needs to |
| * always be channel_map_madi_ss, whatever the sample rate */ |
| hdspm->channel_map = channel_map_madi_ss; |
| |
| hdspm->system_sample_rate = rate; |
| |
| if (not_set != 0) |
| return -1; |
| |
| return 0; |
| } |
| |
| /* mainly for init to 0 on load */ |
| static void all_in_all_mixer(struct hdspm * hdspm, int sgain) |
| { |
| int i, j; |
| unsigned int gain = |
| (sgain > UNITY_GAIN) ? UNITY_GAIN : (sgain < 0) ? 0 : sgain; |
| |
| for (i = 0; i < HDSPM_MIXER_CHANNELS; i++) |
| for (j = 0; j < HDSPM_MIXER_CHANNELS; j++) { |
| hdspm_write_in_gain(hdspm, i, j, gain); |
| hdspm_write_pb_gain(hdspm, i, j, gain); |
| } |
| } |
| |
| /*---------------------------------------------------------------------------- |
| MIDI |
| ----------------------------------------------------------------------------*/ |
| |
| static inline unsigned char snd_hdspm_midi_read_byte (struct hdspm *hdspm, int id) |
| { |
| /* the hardware already does the relevant bit-mask with 0xff */ |
| if (id) |
| return hdspm_read(hdspm, HDSPM_midiDataIn1); |
| else |
| return hdspm_read(hdspm, HDSPM_midiDataIn0); |
| } |
| |
| static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id, int val) |
| { |
| /* the hardware already does the relevant bit-mask with 0xff */ |
| if (id) |
| return hdspm_write(hdspm, HDSPM_midiDataOut1, val); |
| else |
| return hdspm_write(hdspm, HDSPM_midiDataOut0, val); |
| } |
| |
| static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id) |
| { |
| if (id) |
| return (hdspm_read(hdspm, HDSPM_midiStatusIn1) & 0xff); |
| else |
| return (hdspm_read(hdspm, HDSPM_midiStatusIn0) & 0xff); |
| } |
| |
| static inline int snd_hdspm_midi_output_possible (struct hdspm *hdspm, int id) |
| { |
| int fifo_bytes_used; |
| |
| if (id) |
| fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut1) & 0xff; |
| else |
| fifo_bytes_used = hdspm_read(hdspm, HDSPM_midiStatusOut0) & 0xff; |
| |
| if (fifo_bytes_used < 128) |
| return 128 - fifo_bytes_used; |
| else |
| return 0; |
| } |
| |
| static inline void snd_hdspm_flush_midi_input (struct hdspm *hdspm, int id) |
| { |
| while (snd_hdspm_midi_input_available (hdspm, id)) |
| snd_hdspm_midi_read_byte (hdspm, id); |
| } |
| |
| static int snd_hdspm_midi_output_write (struct hdspm_midi *hmidi) |
| { |
| unsigned long flags; |
| int n_pending; |
| int to_write; |
| int i; |
| unsigned char buf[128]; |
| |
| /* Output is not interrupt driven */ |
| |
| spin_lock_irqsave (&hmidi->lock, flags); |
| if (hmidi->output) { |
| if (!snd_rawmidi_transmit_empty (hmidi->output)) { |
| if ((n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm, hmidi->id)) > 0) { |
| if (n_pending > (int)sizeof (buf)) |
| n_pending = sizeof (buf); |
| |
| if ((to_write = snd_rawmidi_transmit (hmidi->output, buf, n_pending)) > 0) { |
| for (i = 0; i < to_write; ++i) |
| snd_hdspm_midi_write_byte (hmidi->hdspm, hmidi->id, buf[i]); |
| } |
| } |
| } |
| } |
| spin_unlock_irqrestore (&hmidi->lock, flags); |
| return 0; |
| } |
| |
| static int snd_hdspm_midi_input_read (struct hdspm_midi *hmidi) |
| { |
| unsigned char buf[128]; /* this buffer is designed to match the MIDI input FIFO size */ |
| unsigned long flags; |
| int n_pending; |
| int i; |
| |
| spin_lock_irqsave (&hmidi->lock, flags); |
| if ((n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id)) > 0) { |
| if (hmidi->input) { |
| if (n_pending > (int)sizeof (buf)) { |
| n_pending = sizeof (buf); |
| } |
| for (i = 0; i < n_pending; ++i) { |
| buf[i] = snd_hdspm_midi_read_byte (hmidi->hdspm, hmidi->id); |
| } |
| if (n_pending) { |
| snd_rawmidi_receive (hmidi->input, buf, n_pending); |
| } |
| } else { |
| /* flush the MIDI input FIFO */ |
| while (n_pending--) { |
| snd_hdspm_midi_read_byte (hmidi->hdspm, hmidi->id); |
| } |
| } |
| } |
| hmidi->pending = 0; |
| if (hmidi->id) { |
| hmidi->hdspm->control_register |= HDSPM_Midi1InterruptEnable; |
| } else { |
| hmidi->hdspm->control_register |= HDSPM_Midi0InterruptEnable; |
| } |
| hdspm_write(hmidi->hdspm, HDSPM_controlRegister, hmidi->hdspm->control_register); |
| spin_unlock_irqrestore (&hmidi->lock, flags); |
| return snd_hdspm_midi_output_write (hmidi); |
| } |
| |
| static void snd_hdspm_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) |
| { |
| struct hdspm *hdspm; |
| struct hdspm_midi *hmidi; |
| unsigned long flags; |
| u32 ie; |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| hdspm = hmidi->hdspm; |
| ie = hmidi->id ? HDSPM_Midi1InterruptEnable : HDSPM_Midi0InterruptEnable; |
| spin_lock_irqsave (&hdspm->lock, flags); |
| if (up) { |
| if (!(hdspm->control_register & ie)) { |
| snd_hdspm_flush_midi_input (hdspm, hmidi->id); |
| hdspm->control_register |= ie; |
| } |
| } else { |
| hdspm->control_register &= ~ie; |
| } |
| |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| spin_unlock_irqrestore (&hdspm->lock, flags); |
| } |
| |
| static void snd_hdspm_midi_output_timer(unsigned long data) |
| { |
| struct hdspm_midi *hmidi = (struct hdspm_midi *) data; |
| unsigned long flags; |
| |
| snd_hdspm_midi_output_write(hmidi); |
| spin_lock_irqsave (&hmidi->lock, flags); |
| |
| /* this does not bump hmidi->istimer, because the |
| kernel automatically removed the timer when it |
| expired, and we are now adding it back, thus |
| leaving istimer wherever it was set before. |
| */ |
| |
| if (hmidi->istimer) { |
| hmidi->timer.expires = 1 + jiffies; |
| add_timer(&hmidi->timer); |
| } |
| |
| spin_unlock_irqrestore (&hmidi->lock, flags); |
| } |
| |
| static void snd_hdspm_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) |
| { |
| struct hdspm_midi *hmidi; |
| unsigned long flags; |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| spin_lock_irqsave (&hmidi->lock, flags); |
| if (up) { |
| if (!hmidi->istimer) { |
| init_timer(&hmidi->timer); |
| hmidi->timer.function = snd_hdspm_midi_output_timer; |
| hmidi->timer.data = (unsigned long) hmidi; |
| hmidi->timer.expires = 1 + jiffies; |
| add_timer(&hmidi->timer); |
| hmidi->istimer++; |
| } |
| } else { |
| if (hmidi->istimer && --hmidi->istimer <= 0) { |
| del_timer (&hmidi->timer); |
| } |
| } |
| spin_unlock_irqrestore (&hmidi->lock, flags); |
| if (up) |
| snd_hdspm_midi_output_write(hmidi); |
| } |
| |
| static int snd_hdspm_midi_input_open(struct snd_rawmidi_substream *substream) |
| { |
| struct hdspm_midi *hmidi; |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| spin_lock_irq (&hmidi->lock); |
| snd_hdspm_flush_midi_input (hmidi->hdspm, hmidi->id); |
| hmidi->input = substream; |
| spin_unlock_irq (&hmidi->lock); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_midi_output_open(struct snd_rawmidi_substream *substream) |
| { |
| struct hdspm_midi *hmidi; |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| spin_lock_irq (&hmidi->lock); |
| hmidi->output = substream; |
| spin_unlock_irq (&hmidi->lock); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_midi_input_close(struct snd_rawmidi_substream *substream) |
| { |
| struct hdspm_midi *hmidi; |
| |
| snd_hdspm_midi_input_trigger (substream, 0); |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| spin_lock_irq (&hmidi->lock); |
| hmidi->input = NULL; |
| spin_unlock_irq (&hmidi->lock); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_midi_output_close(struct snd_rawmidi_substream *substream) |
| { |
| struct hdspm_midi *hmidi; |
| |
| snd_hdspm_midi_output_trigger (substream, 0); |
| |
| hmidi = (struct hdspm_midi *) substream->rmidi->private_data; |
| spin_lock_irq (&hmidi->lock); |
| hmidi->output = NULL; |
| spin_unlock_irq (&hmidi->lock); |
| |
| return 0; |
| } |
| |
| static struct snd_rawmidi_ops snd_hdspm_midi_output = |
| { |
| .open = snd_hdspm_midi_output_open, |
| .close = snd_hdspm_midi_output_close, |
| .trigger = snd_hdspm_midi_output_trigger, |
| }; |
| |
| static struct snd_rawmidi_ops snd_hdspm_midi_input = |
| { |
| .open = snd_hdspm_midi_input_open, |
| .close = snd_hdspm_midi_input_close, |
| .trigger = snd_hdspm_midi_input_trigger, |
| }; |
| |
| static int __devinit snd_hdspm_create_midi (struct snd_card *card, struct hdspm *hdspm, int id) |
| { |
| int err; |
| char buf[32]; |
| |
| hdspm->midi[id].id = id; |
| hdspm->midi[id].rmidi = NULL; |
| hdspm->midi[id].input = NULL; |
| hdspm->midi[id].output = NULL; |
| hdspm->midi[id].hdspm = hdspm; |
| hdspm->midi[id].istimer = 0; |
| hdspm->midi[id].pending = 0; |
| spin_lock_init (&hdspm->midi[id].lock); |
| |
| sprintf (buf, "%s MIDI %d", card->shortname, id+1); |
| if ((err = snd_rawmidi_new (card, buf, id, 1, 1, &hdspm->midi[id].rmidi)) < 0) |
| return err; |
| |
| sprintf (hdspm->midi[id].rmidi->name, "%s MIDI %d", card->id, id+1); |
| hdspm->midi[id].rmidi->private_data = &hdspm->midi[id]; |
| |
| snd_rawmidi_set_ops (hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_hdspm_midi_output); |
| snd_rawmidi_set_ops (hdspm->midi[id].rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_hdspm_midi_input); |
| |
| hdspm->midi[id].rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | |
| SNDRV_RAWMIDI_INFO_INPUT | |
| SNDRV_RAWMIDI_INFO_DUPLEX; |
| |
| return 0; |
| } |
| |
| |
| static void hdspm_midi_tasklet(unsigned long arg) |
| { |
| struct hdspm *hdspm = (struct hdspm *)arg; |
| |
| if (hdspm->midi[0].pending) |
| snd_hdspm_midi_input_read (&hdspm->midi[0]); |
| if (hdspm->midi[1].pending) |
| snd_hdspm_midi_input_read (&hdspm->midi[1]); |
| } |
| |
| |
| /*----------------------------------------------------------------------------- |
| Status Interface |
| ----------------------------------------------------------------------------*/ |
| |
| /* get the system sample rate which is set */ |
| |
| #define HDSPM_SYSTEM_SAMPLE_RATE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ, \ |
| .info = snd_hdspm_info_system_sample_rate, \ |
| .get = snd_hdspm_get_system_sample_rate \ |
| } |
| |
| static int snd_hdspm_info_system_sample_rate(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| uinfo->count = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_system_sample_rate(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value * |
| ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| ucontrol->value.enumerated.item[0] = hdspm->system_sample_rate; |
| return 0; |
| } |
| |
| #define HDSPM_AUTOSYNC_SAMPLE_RATE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ, \ |
| .info = snd_hdspm_info_autosync_sample_rate, \ |
| .get = snd_hdspm_get_autosync_sample_rate \ |
| } |
| |
| static int snd_hdspm_info_autosync_sample_rate(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "32000", "44100", "48000", |
| "64000", "88200", "96000", |
| "128000", "176400", "192000", |
| "None" |
| }; |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 10; |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| return 0; |
| } |
| |
| static int snd_hdspm_get_autosync_sample_rate(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value * |
| ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| switch (hdspm_external_sample_rate(hdspm)) { |
| case 32000: |
| ucontrol->value.enumerated.item[0] = 0; |
| break; |
| case 44100: |
| ucontrol->value.enumerated.item[0] = 1; |
| break; |
| case 48000: |
| ucontrol->value.enumerated.item[0] = 2; |
| break; |
| case 64000: |
| ucontrol->value.enumerated.item[0] = 3; |
| break; |
| case 88200: |
| ucontrol->value.enumerated.item[0] = 4; |
| break; |
| case 96000: |
| ucontrol->value.enumerated.item[0] = 5; |
| break; |
| case 128000: |
| ucontrol->value.enumerated.item[0] = 6; |
| break; |
| case 176400: |
| ucontrol->value.enumerated.item[0] = 7; |
| break; |
| case 192000: |
| ucontrol->value.enumerated.item[0] = 8; |
| break; |
| |
| default: |
| ucontrol->value.enumerated.item[0] = 9; |
| } |
| return 0; |
| } |
| |
| #define HDSPM_SYSTEM_CLOCK_MODE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ, \ |
| .info = snd_hdspm_info_system_clock_mode, \ |
| .get = snd_hdspm_get_system_clock_mode, \ |
| } |
| |
| |
| |
| static int hdspm_system_clock_mode(struct hdspm * hdspm) |
| { |
| /* Always reflect the hardware info, rme is never wrong !!!! */ |
| |
| if (hdspm->control_register & HDSPM_ClockModeMaster) |
| return 0; |
| return 1; |
| } |
| |
| static int snd_hdspm_info_system_clock_mode(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "Master", "Slave" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 2; |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| return 0; |
| } |
| |
| static int snd_hdspm_get_system_clock_mode(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| ucontrol->value.enumerated.item[0] = |
| hdspm_system_clock_mode(hdspm); |
| return 0; |
| } |
| |
| #define HDSPM_CLOCK_SOURCE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_clock_source, \ |
| .get = snd_hdspm_get_clock_source, \ |
| .put = snd_hdspm_put_clock_source \ |
| } |
| |
| static int hdspm_clock_source(struct hdspm * hdspm) |
| { |
| if (hdspm->control_register & HDSPM_ClockModeMaster) { |
| switch (hdspm->system_sample_rate) { |
| case 32000: |
| return 1; |
| case 44100: |
| return 2; |
| case 48000: |
| return 3; |
| case 64000: |
| return 4; |
| case 88200: |
| return 5; |
| case 96000: |
| return 6; |
| case 128000: |
| return 7; |
| case 176400: |
| return 8; |
| case 192000: |
| return 9; |
| default: |
| return 3; |
| } |
| } else { |
| return 0; |
| } |
| } |
| |
| static int hdspm_set_clock_source(struct hdspm * hdspm, int mode) |
| { |
| int rate; |
| switch (mode) { |
| |
| case HDSPM_CLOCK_SOURCE_AUTOSYNC: |
| if (hdspm_external_sample_rate(hdspm) != 0) { |
| hdspm->control_register &= ~HDSPM_ClockModeMaster; |
| hdspm_write(hdspm, HDSPM_controlRegister, |
| hdspm->control_register); |
| return 0; |
| } |
| return -1; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_32KHZ: |
| rate = 32000; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_44_1KHZ: |
| rate = 44100; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_48KHZ: |
| rate = 48000; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_64KHZ: |
| rate = 64000; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_88_2KHZ: |
| rate = 88200; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_96KHZ: |
| rate = 96000; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_128KHZ: |
| rate = 128000; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_176_4KHZ: |
| rate = 176400; |
| break; |
| case HDSPM_CLOCK_SOURCE_INTERNAL_192KHZ: |
| rate = 192000; |
| break; |
| |
| default: |
| rate = 44100; |
| } |
| hdspm->control_register |= HDSPM_ClockModeMaster; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| hdspm_set_rate(hdspm, rate, 1); |
| return 0; |
| } |
| |
| static int snd_hdspm_info_clock_source(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "AutoSync", |
| "Internal 32.0 kHz", "Internal 44.1 kHz", |
| "Internal 48.0 kHz", |
| "Internal 64.0 kHz", "Internal 88.2 kHz", |
| "Internal 96.0 kHz", |
| "Internal 128.0 kHz", "Internal 176.4 kHz", |
| "Internal 192.0 kHz" |
| }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 10; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_get_clock_source(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| ucontrol->value.enumerated.item[0] = hdspm_clock_source(hdspm); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_clock_source(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.enumerated.item[0]; |
| if (val < 0) |
| val = 0; |
| if (val > 6) |
| val = 6; |
| spin_lock_irq(&hdspm->lock); |
| if (val != hdspm_clock_source(hdspm)) |
| change = (hdspm_set_clock_source(hdspm, val) == 0) ? 1 : 0; |
| else |
| change = 0; |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_PREF_SYNC_REF(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_pref_sync_ref, \ |
| .get = snd_hdspm_get_pref_sync_ref, \ |
| .put = snd_hdspm_put_pref_sync_ref \ |
| } |
| |
| static int hdspm_pref_sync_ref(struct hdspm * hdspm) |
| { |
| /* Notice that this looks at the requested sync source, |
| not the one actually in use. |
| */ |
| if (hdspm->is_aes32) { |
| switch (hdspm->control_register & HDSPM_SyncRefMask) { |
| /* number gives AES index, except for 0 which |
| corresponds to WordClock */ |
| case 0: return 0; |
| case HDSPM_SyncRef0: return 1; |
| case HDSPM_SyncRef1: return 2; |
| case HDSPM_SyncRef1+HDSPM_SyncRef0: return 3; |
| case HDSPM_SyncRef2: return 4; |
| case HDSPM_SyncRef2+HDSPM_SyncRef0: return 5; |
| case HDSPM_SyncRef2+HDSPM_SyncRef1: return 6; |
| case HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0: return 7; |
| case HDSPM_SyncRef3: return 8; |
| } |
| } else { |
| switch (hdspm->control_register & HDSPM_SyncRefMask) { |
| case HDSPM_SyncRef_Word: |
| return HDSPM_SYNC_FROM_WORD; |
| case HDSPM_SyncRef_MADI: |
| return HDSPM_SYNC_FROM_MADI; |
| } |
| } |
| |
| return HDSPM_SYNC_FROM_WORD; |
| } |
| |
| static int hdspm_set_pref_sync_ref(struct hdspm * hdspm, int pref) |
| { |
| hdspm->control_register &= ~HDSPM_SyncRefMask; |
| |
| if (hdspm->is_aes32) { |
| switch (pref) { |
| case 0: |
| hdspm->control_register |= 0; |
| break; |
| case 1: |
| hdspm->control_register |= HDSPM_SyncRef0; |
| break; |
| case 2: |
| hdspm->control_register |= HDSPM_SyncRef1; |
| break; |
| case 3: |
| hdspm->control_register |= HDSPM_SyncRef1+HDSPM_SyncRef0; |
| break; |
| case 4: |
| hdspm->control_register |= HDSPM_SyncRef2; |
| break; |
| case 5: |
| hdspm->control_register |= HDSPM_SyncRef2+HDSPM_SyncRef0; |
| break; |
| case 6: |
| hdspm->control_register |= HDSPM_SyncRef2+HDSPM_SyncRef1; |
| break; |
| case 7: |
| hdspm->control_register |= HDSPM_SyncRef2+HDSPM_SyncRef1+HDSPM_SyncRef0; |
| break; |
| case 8: |
| hdspm->control_register |= HDSPM_SyncRef3; |
| break; |
| default: |
| return -1; |
| } |
| } else { |
| switch (pref) { |
| case HDSPM_SYNC_FROM_MADI: |
| hdspm->control_register |= HDSPM_SyncRef_MADI; |
| break; |
| case HDSPM_SYNC_FROM_WORD: |
| hdspm->control_register |= HDSPM_SyncRef_Word; |
| break; |
| default: |
| return -1; |
| } |
| } |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| return 0; |
| } |
| |
| static int snd_hdspm_info_pref_sync_ref(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| if (hdspm->is_aes32) { |
| static char *texts[] = { "Word", "AES1", "AES2", "AES3", |
| "AES4", "AES5", "AES6", "AES7", "AES8" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| |
| uinfo->value.enumerated.items = 9; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| } else { |
| static char *texts[] = { "Word", "MADI" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| |
| uinfo->value.enumerated.items = 2; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| } |
| return 0; |
| } |
| |
| static int snd_hdspm_get_pref_sync_ref(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| ucontrol->value.enumerated.item[0] = hdspm_pref_sync_ref(hdspm); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_pref_sync_ref(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change, max; |
| unsigned int val; |
| |
| max = hdspm->is_aes32 ? 9 : 2; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| |
| val = ucontrol->value.enumerated.item[0] % max; |
| |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_pref_sync_ref(hdspm); |
| hdspm_set_pref_sync_ref(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_AUTOSYNC_REF(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ, \ |
| .info = snd_hdspm_info_autosync_ref, \ |
| .get = snd_hdspm_get_autosync_ref, \ |
| } |
| |
| static int hdspm_autosync_ref(struct hdspm * hdspm) |
| { |
| if (hdspm->is_aes32) { |
| unsigned int status = hdspm_read(hdspm, HDSPM_statusRegister); |
| unsigned int syncref = (status >> HDSPM_AES32_syncref_bit) & 0xF; |
| if (syncref == 0) |
| return HDSPM_AES32_AUTOSYNC_FROM_WORD; |
| if (syncref <= 8) |
| return syncref; |
| return HDSPM_AES32_AUTOSYNC_FROM_NONE; |
| } else { |
| /* This looks at the autosync selected sync reference */ |
| unsigned int status2 = hdspm_read(hdspm, HDSPM_statusRegister2); |
| |
| switch (status2 & HDSPM_SelSyncRefMask) { |
| case HDSPM_SelSyncRef_WORD: |
| return HDSPM_AUTOSYNC_FROM_WORD; |
| case HDSPM_SelSyncRef_MADI: |
| return HDSPM_AUTOSYNC_FROM_MADI; |
| case HDSPM_SelSyncRef_NVALID: |
| return HDSPM_AUTOSYNC_FROM_NONE; |
| default: |
| return 0; |
| } |
| |
| return 0; |
| } |
| } |
| |
| static int snd_hdspm_info_autosync_ref(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| if (hdspm->is_aes32) { |
| static char *texts[] = { "WordClock", "AES1", "AES2", "AES3", |
| "AES4", "AES5", "AES6", "AES7", "AES8", "None"}; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 10; |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| } |
| else |
| { |
| static char *texts[] = { "WordClock", "MADI", "None" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 3; |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| } |
| return 0; |
| } |
| |
| static int snd_hdspm_get_autosync_ref(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| ucontrol->value.enumerated.item[0] = hdspm_pref_sync_ref(hdspm); |
| return 0; |
| } |
| |
| #define HDSPM_LINE_OUT(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_line_out, \ |
| .get = snd_hdspm_get_line_out, \ |
| .put = snd_hdspm_put_line_out \ |
| } |
| |
| static int hdspm_line_out(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_LineOut) ? 1 : 0; |
| } |
| |
| |
| static int hdspm_set_line_output(struct hdspm * hdspm, int out) |
| { |
| if (out) |
| hdspm->control_register |= HDSPM_LineOut; |
| else |
| hdspm->control_register &= ~HDSPM_LineOut; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_line_out(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_line_out(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.integer.value[0] = hdspm_line_out(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_line_out(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_line_out(hdspm); |
| hdspm_set_line_output(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_TX_64(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_tx_64, \ |
| .get = snd_hdspm_get_tx_64, \ |
| .put = snd_hdspm_put_tx_64 \ |
| } |
| |
| static int hdspm_tx_64(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_TX_64ch) ? 1 : 0; |
| } |
| |
| static int hdspm_set_tx_64(struct hdspm * hdspm, int out) |
| { |
| if (out) |
| hdspm->control_register |= HDSPM_TX_64ch; |
| else |
| hdspm->control_register &= ~HDSPM_TX_64ch; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_tx_64(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_tx_64(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.integer.value[0] = hdspm_tx_64(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_tx_64(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_tx_64(hdspm); |
| hdspm_set_tx_64(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_C_TMS(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_c_tms, \ |
| .get = snd_hdspm_get_c_tms, \ |
| .put = snd_hdspm_put_c_tms \ |
| } |
| |
| static int hdspm_c_tms(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_clr_tms) ? 1 : 0; |
| } |
| |
| static int hdspm_set_c_tms(struct hdspm * hdspm, int out) |
| { |
| if (out) |
| hdspm->control_register |= HDSPM_clr_tms; |
| else |
| hdspm->control_register &= ~HDSPM_clr_tms; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_c_tms(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_c_tms(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.integer.value[0] = hdspm_c_tms(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_c_tms(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_c_tms(hdspm); |
| hdspm_set_c_tms(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_SAFE_MODE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_safe_mode, \ |
| .get = snd_hdspm_get_safe_mode, \ |
| .put = snd_hdspm_put_safe_mode \ |
| } |
| |
| static int hdspm_safe_mode(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_AutoInp) ? 1 : 0; |
| } |
| |
| static int hdspm_set_safe_mode(struct hdspm * hdspm, int out) |
| { |
| if (out) |
| hdspm->control_register |= HDSPM_AutoInp; |
| else |
| hdspm->control_register &= ~HDSPM_AutoInp; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_safe_mode(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_safe_mode(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.integer.value[0] = hdspm_safe_mode(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_safe_mode(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_safe_mode(hdspm); |
| hdspm_set_safe_mode(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_EMPHASIS(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_emphasis, \ |
| .get = snd_hdspm_get_emphasis, \ |
| .put = snd_hdspm_put_emphasis \ |
| } |
| |
| static int hdspm_emphasis(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_Emphasis) ? 1 : 0; |
| } |
| |
| static int hdspm_set_emphasis(struct hdspm * hdspm, int emp) |
| { |
| if (emp) |
| hdspm->control_register |= HDSPM_Emphasis; |
| else |
| hdspm->control_register &= ~HDSPM_Emphasis; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_emphasis(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_emphasis(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_emphasis(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_emphasis(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_emphasis(hdspm); |
| hdspm_set_emphasis(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_DOLBY(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_dolby, \ |
| .get = snd_hdspm_get_dolby, \ |
| .put = snd_hdspm_put_dolby \ |
| } |
| |
| static int hdspm_dolby(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_Dolby) ? 1 : 0; |
| } |
| |
| static int hdspm_set_dolby(struct hdspm * hdspm, int dol) |
| { |
| if (dol) |
| hdspm->control_register |= HDSPM_Dolby; |
| else |
| hdspm->control_register &= ~HDSPM_Dolby; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_dolby(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_dolby(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_dolby(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_dolby(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_dolby(hdspm); |
| hdspm_set_dolby(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_PROFESSIONAL(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_professional, \ |
| .get = snd_hdspm_get_professional, \ |
| .put = snd_hdspm_put_professional \ |
| } |
| |
| static int hdspm_professional(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_Professional) ? 1 : 0; |
| } |
| |
| static int hdspm_set_professional(struct hdspm * hdspm, int dol) |
| { |
| if (dol) |
| hdspm->control_register |= HDSPM_Professional; |
| else |
| hdspm->control_register &= ~HDSPM_Professional; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_professional(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_professional(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_professional(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_professional(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_professional(hdspm); |
| hdspm_set_professional(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_INPUT_SELECT(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_input_select, \ |
| .get = snd_hdspm_get_input_select, \ |
| .put = snd_hdspm_put_input_select \ |
| } |
| |
| static int hdspm_input_select(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_InputSelect0) ? 1 : 0; |
| } |
| |
| static int hdspm_set_input_select(struct hdspm * hdspm, int out) |
| { |
| if (out) |
| hdspm->control_register |= HDSPM_InputSelect0; |
| else |
| hdspm->control_register &= ~HDSPM_InputSelect0; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_input_select(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "optical", "coaxial" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 2; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_get_input_select(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_input_select(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_input_select(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_input_select(hdspm); |
| hdspm_set_input_select(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_DS_WIRE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_ds_wire, \ |
| .get = snd_hdspm_get_ds_wire, \ |
| .put = snd_hdspm_put_ds_wire \ |
| } |
| |
| static int hdspm_ds_wire(struct hdspm * hdspm) |
| { |
| return (hdspm->control_register & HDSPM_DS_DoubleWire) ? 1 : 0; |
| } |
| |
| static int hdspm_set_ds_wire(struct hdspm * hdspm, int ds) |
| { |
| if (ds) |
| hdspm->control_register |= HDSPM_DS_DoubleWire; |
| else |
| hdspm->control_register &= ~HDSPM_DS_DoubleWire; |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_ds_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "Single", "Double" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 2; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_get_ds_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_ds_wire(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_ds_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| unsigned int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0] & 1; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_ds_wire(hdspm); |
| hdspm_set_ds_wire(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_QS_WIRE(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .info = snd_hdspm_info_qs_wire, \ |
| .get = snd_hdspm_get_qs_wire, \ |
| .put = snd_hdspm_put_qs_wire \ |
| } |
| |
| static int hdspm_qs_wire(struct hdspm * hdspm) |
| { |
| if (hdspm->control_register & HDSPM_QS_DoubleWire) |
| return 1; |
| if (hdspm->control_register & HDSPM_QS_QuadWire) |
| return 2; |
| return 0; |
| } |
| |
| static int hdspm_set_qs_wire(struct hdspm * hdspm, int mode) |
| { |
| hdspm->control_register &= ~(HDSPM_QS_DoubleWire | HDSPM_QS_QuadWire); |
| switch (mode) { |
| case 0: |
| break; |
| case 1: |
| hdspm->control_register |= HDSPM_QS_DoubleWire; |
| break; |
| case 2: |
| hdspm->control_register |= HDSPM_QS_QuadWire; |
| break; |
| } |
| hdspm_write(hdspm, HDSPM_controlRegister, hdspm->control_register); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_info_qs_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "Single", "Double", "Quad" }; |
| |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 3; |
| |
| if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) |
| uinfo->value.enumerated.item = |
| uinfo->value.enumerated.items - 1; |
| strcpy(uinfo->value.enumerated.name, |
| texts[uinfo->value.enumerated.item]); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_get_qs_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.enumerated.item[0] = hdspm_qs_wire(hdspm); |
| spin_unlock_irq(&hdspm->lock); |
| return 0; |
| } |
| |
| static int snd_hdspm_put_qs_wire(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| int val; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| val = ucontrol->value.integer.value[0]; |
| if (val < 0) |
| val = 0; |
| if (val > 2) |
| val = 2; |
| spin_lock_irq(&hdspm->lock); |
| change = (int) val != hdspm_qs_wire(hdspm); |
| hdspm_set_qs_wire(hdspm, val); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| /* Simple Mixer |
| deprecated since to much faders ??? |
| MIXER interface says output (source, destination, value) |
| where source > MAX_channels are playback channels |
| on MADICARD |
| - playback mixer matrix: [channelout+64] [output] [value] |
| - input(thru) mixer matrix: [channelin] [output] [value] |
| (better do 2 kontrols for seperation ?) |
| */ |
| |
| #define HDSPM_MIXER(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_HWDEP, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .device = 0, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ |
| SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ |
| .info = snd_hdspm_info_mixer, \ |
| .get = snd_hdspm_get_mixer, \ |
| .put = snd_hdspm_put_mixer \ |
| } |
| |
| static int snd_hdspm_info_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| uinfo->count = 3; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 65535; |
| uinfo->value.integer.step = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int source; |
| int destination; |
| |
| source = ucontrol->value.integer.value[0]; |
| if (source < 0) |
| source = 0; |
| else if (source >= 2 * HDSPM_MAX_CHANNELS) |
| source = 2 * HDSPM_MAX_CHANNELS - 1; |
| |
| destination = ucontrol->value.integer.value[1]; |
| if (destination < 0) |
| destination = 0; |
| else if (destination >= HDSPM_MAX_CHANNELS) |
| destination = HDSPM_MAX_CHANNELS - 1; |
| |
| spin_lock_irq(&hdspm->lock); |
| if (source >= HDSPM_MAX_CHANNELS) |
| ucontrol->value.integer.value[2] = |
| hdspm_read_pb_gain(hdspm, destination, |
| source - HDSPM_MAX_CHANNELS); |
| else |
| ucontrol->value.integer.value[2] = |
| hdspm_read_in_gain(hdspm, destination, source); |
| |
| spin_unlock_irq(&hdspm->lock); |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_put_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| int source; |
| int destination; |
| int gain; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| |
| source = ucontrol->value.integer.value[0]; |
| destination = ucontrol->value.integer.value[1]; |
| |
| if (source < 0 || source >= 2 * HDSPM_MAX_CHANNELS) |
| return -1; |
| if (destination < 0 || destination >= HDSPM_MAX_CHANNELS) |
| return -1; |
| |
| gain = ucontrol->value.integer.value[2]; |
| |
| spin_lock_irq(&hdspm->lock); |
| |
| if (source >= HDSPM_MAX_CHANNELS) |
| change = gain != hdspm_read_pb_gain(hdspm, destination, |
| source - |
| HDSPM_MAX_CHANNELS); |
| else |
| change = |
| gain != hdspm_read_in_gain(hdspm, destination, source); |
| |
| if (change) { |
| if (source >= HDSPM_MAX_CHANNELS) |
| hdspm_write_pb_gain(hdspm, destination, |
| source - HDSPM_MAX_CHANNELS, |
| gain); |
| else |
| hdspm_write_in_gain(hdspm, destination, source, |
| gain); |
| } |
| spin_unlock_irq(&hdspm->lock); |
| |
| return change; |
| } |
| |
| /* The simple mixer control(s) provide gain control for the |
| basic 1:1 mappings of playback streams to output |
| streams. |
| */ |
| |
| #define HDSPM_PLAYBACK_MIXER \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_WRITE | \ |
| SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ |
| .info = snd_hdspm_info_playback_mixer, \ |
| .get = snd_hdspm_get_playback_mixer, \ |
| .put = snd_hdspm_put_playback_mixer \ |
| } |
| |
| static int snd_hdspm_info_playback_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| uinfo->count = 1; |
| uinfo->value.integer.min = 0; |
| uinfo->value.integer.max = 65536; |
| uinfo->value.integer.step = 1; |
| return 0; |
| } |
| |
| static int snd_hdspm_get_playback_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int channel; |
| int mapped_channel; |
| |
| channel = ucontrol->id.index - 1; |
| |
| snd_assert(channel >= 0 |
| || channel < HDSPM_MAX_CHANNELS, return -EINVAL); |
| |
| if ((mapped_channel = hdspm->channel_map[channel]) < 0) |
| return -EINVAL; |
| |
| spin_lock_irq(&hdspm->lock); |
| ucontrol->value.integer.value[0] = |
| hdspm_read_pb_gain(hdspm, mapped_channel, mapped_channel); |
| spin_unlock_irq(&hdspm->lock); |
| |
| /* snd_printdd("get pb mixer index %d, channel %d, mapped_channel %d, value %d\n", |
| ucontrol->id.index, channel, mapped_channel, ucontrol->value.integer.value[0]); |
| */ |
| |
| return 0; |
| } |
| |
| static int snd_hdspm_put_playback_mixer(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct hdspm *hdspm = snd_kcontrol_chip(kcontrol); |
| int change; |
| int channel; |
| int mapped_channel; |
| int gain; |
| |
| if (!snd_hdspm_use_is_exclusive(hdspm)) |
| return -EBUSY; |
| |
| channel = ucontrol->id.index - 1; |
| |
| snd_assert(channel >= 0 |
| || channel < HDSPM_MAX_CHANNELS, return -EINVAL); |
| |
| if ((mapped_channel = hdspm->channel_map[channel]) < 0) |
| return -EINVAL; |
| |
| gain = ucontrol->value.integer.value[0]; |
| |
| spin_lock_irq(&hdspm->lock); |
| change = |
| gain != hdspm_read_pb_gain(hdspm, mapped_channel, |
| mapped_channel); |
| if (change) |
| hdspm_write_pb_gain(hdspm, mapped_channel, mapped_channel, |
| gain); |
| spin_unlock_irq(&hdspm->lock); |
| return change; |
| } |
| |
| #define HDSPM_WC_SYNC_CHECK(xname, xindex) \ |
| { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| .name = xname, \ |
| .index = xindex, \ |
| .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, \ |
| .info = snd_hdspm_info_sync_check, \ |
| .get = snd_hdspm_get_wc_sync_check \ |
| } |
| |
| static int snd_hdspm_info_sync_check(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_info *uinfo) |
| { |
| static char *texts[] = { "No Lock", "Lock", "Sync" }; |
| uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| uinfo->count = 1; |
| uinfo->value.enumerated.items = 3; |
| <
|