/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* Copyright (c) by Jaroslav Kysela <[email protected]>,3* Creative Labs, Inc.4* Definitions for EMU10K1 (SB Live!) chips5*/6#ifndef __SOUND_EMU10K1_H7#define __SOUND_EMU10K1_H8910#include <sound/pcm.h>11#include <sound/rawmidi.h>12#include <sound/hwdep.h>13#include <sound/ac97_codec.h>14#include <sound/util_mem.h>15#include <sound/pcm-indirect.h>16#include <sound/timer.h>17#include <linux/interrupt.h>18#include <linux/mutex.h>19#include <linux/firmware.h>20#include <linux/io.h>2122#include <uapi/sound/emu10k1.h>2324/* ------------------- DEFINES -------------------- */2526#define EMUPAGESIZE 409627#define MAXPAGES0 4096 /* 32 bit mode */28#define MAXPAGES1 8192 /* 31 bit mode */29#define NUM_G 64 /* use all channels */30#define NUM_EFX_PLAYBACK 163132/* FIXME? - according to the OSS driver the EMU10K1 needs a 29 bit DMA mask */33#define EMU10K1_DMA_MASK 0x7fffffffUL /* 31bit */34#define AUDIGY_DMA_MASK 0xffffffffUL /* 32bit mode */3536#define TMEMSIZE 256*10243738#define IP_TO_CP(ip) ((ip == 0) ? 0 : (((0x00001000uL | (ip & 0x00000FFFL)) << (((ip >> 12) & 0x000FL) + 4)) & 0xFFFF0000uL))3940// This is used to define hardware bit-fields (sub-registers) by combining41// the bit shift and count with the actual register address. The passed42// mask must represent a single run of adjacent bits.43// The non-concatenating (_NC) variant should be used directly only for44// sub-registers that do not follow the <register>_<field> naming pattern.45#define SUB_REG_NC(reg, field, mask) \46enum { \47field ## _MASK = mask, \48field = reg | \49(__builtin_ctz(mask) << 16) | \50(__builtin_popcount(mask) << 24), \51};52#define SUB_REG(reg, field, mask) SUB_REG_NC(reg, reg ## _ ## field, mask)5354// Macros for manipulating values of bit-fields declared using the above macros.55// Best used with constant register addresses, as otherwise quite some code is56// generated. The actual register read/write functions handle combined addresses57// automatically, so use of these macros conveys no advantage when accessing a58// single sub-register at a time.59#define REG_SHIFT(r) (((r) >> 16) & 0x1f)60#define REG_SIZE(r) (((r) >> 24) & 0x1f)61#define REG_MASK0(r) ((1U << REG_SIZE(r)) - 1U)62#define REG_MASK(r) (REG_MASK0(r) << REG_SHIFT(r))63#define REG_VAL_GET(r, v) ((v & REG_MASK(r)) >> REG_SHIFT(r))64#define REG_VAL_PUT(r, v) ((v) << REG_SHIFT(r))6566// List terminator for snd_emu10k1_ptr_write_multiple()67#define REGLIST_END ~06869// Audigy specify registers are prefixed with 'A_'7071/************************************************************************************************/72/* PCI function 0 registers, address = <val> + PCIBASE0 */73/************************************************************************************************/7475#define PTR 0x00 /* Indexed register set pointer register */76/* NOTE: The CHANNELNUM and ADDRESS words can */77/* be modified independently of each other. */78#define PTR_CHANNELNUM_MASK 0x0000003f /* For each per-channel register, indicates the */79/* channel number of the register to be */80/* accessed. For non per-channel registers the */81/* value should be set to zero. */82#define PTR_ADDRESS_MASK 0x07ff0000 /* Register index */83#define A_PTR_ADDRESS_MASK 0x0fff00008485#define DATA 0x04 /* Indexed register set data register */8687#define IPR 0x08 /* Global interrupt pending register */88/* Clear pending interrupts by writing a 1 to */89/* the relevant bits and zero to the other bits */90#define IPR_P16V 0x80000000 /* Bit set when the CA0151 P16V chip wishes91to interrupt */92#define IPR_WATERMARK_REACHED 0x4000000093#define IPR_A_GPIO 0x20000000 /* GPIO input pin change */9495/* The next two interrupts are for the midi port on the Audigy Drive (A_MPU1) */96#define IPR_A_MIDITRANSBUFEMPTY2 0x10000000 /* MIDI UART transmit buffer empty */97#define IPR_A_MIDIRECVBUFEMPTY2 0x08000000 /* MIDI UART receive buffer empty */9899#define IPR_SPDIFBUFFULL 0x04000000 /* SPDIF capture related, 10k2 only? (RE) */100#define IPR_SPDIFBUFHALFFULL 0x02000000 /* SPDIF capture related? (RE) */101102#define IPR_SAMPLERATETRACKER 0x01000000 /* Sample rate tracker lock status change */103#define IPR_FXDSP 0x00800000 /* Enable FX DSP interrupts */104#define IPR_FORCEINT 0x00400000 /* Force Sound Blaster interrupt */105#define IPR_PCIERROR 0x00200000 /* PCI bus error */106#define IPR_VOLINCR 0x00100000 /* Volume increment button pressed */107#define IPR_VOLDECR 0x00080000 /* Volume decrement button pressed */108#define IPR_MUTE 0x00040000 /* Mute button pressed */109#define IPR_MICBUFFULL 0x00020000 /* Microphone buffer full */110#define IPR_MICBUFHALFFULL 0x00010000 /* Microphone buffer half full */111#define IPR_ADCBUFFULL 0x00008000 /* ADC buffer full */112#define IPR_ADCBUFHALFFULL 0x00004000 /* ADC buffer half full */113#define IPR_EFXBUFFULL 0x00002000 /* Effects buffer full */114#define IPR_EFXBUFHALFFULL 0x00001000 /* Effects buffer half full */115#define IPR_GPSPDIFSTATUSCHANGE 0x00000800 /* GPSPDIF channel status change */116#define IPR_CDROMSTATUSCHANGE 0x00000400 /* CD-ROM channel status change */117#define IPR_INTERVALTIMER 0x00000200 /* Interval timer terminal count */118#define IPR_MIDITRANSBUFEMPTY 0x00000100 /* MIDI UART transmit buffer empty */119#define IPR_MIDIRECVBUFEMPTY 0x00000080 /* MIDI UART receive buffer empty */120#define IPR_CHANNELLOOP 0x00000040 /* Channel (half) loop interrupt(s) pending */121/* The interrupt is triggered shortly after */122/* CCR_READADDRESS has crossed the boundary; */123/* due to the cache, this runs ahead of the */124/* actual playback position. */125#define IPR_CHANNELNUMBERMASK 0x0000003f /* When IPR_CHANNELLOOP is set, indicates the */126/* highest set channel in CLIPL, CLIPH, HLIPL, */127/* or HLIPH. When IPR is written with CL set, */128/* the bit in H/CLIPL or H/CLIPH corresponding */129/* to the CN value written will be cleared. */130131#define INTE 0x0c /* Interrupt enable register */132#define INTE_VIRTUALSB_MASK 0xc0000000 /* Virtual Soundblaster I/O port capture */133#define INTE_VIRTUALSB_220 0x00000000 /* Capture at I/O base address 0x220-0x22f */134#define INTE_VIRTUALSB_240 0x40000000 /* Capture at I/O base address 0x240 */135#define INTE_VIRTUALSB_260 0x80000000 /* Capture at I/O base address 0x260 */136#define INTE_VIRTUALSB_280 0xc0000000 /* Capture at I/O base address 0x280 */137#define INTE_VIRTUALMPU_MASK 0x30000000 /* Virtual MPU I/O port capture */138#define INTE_VIRTUALMPU_300 0x00000000 /* Capture at I/O base address 0x300-0x301 */139#define INTE_VIRTUALMPU_310 0x10000000 /* Capture at I/O base address 0x310 */140#define INTE_VIRTUALMPU_320 0x20000000 /* Capture at I/O base address 0x320 */141#define INTE_VIRTUALMPU_330 0x30000000 /* Capture at I/O base address 0x330 */142#define INTE_MASTERDMAENABLE 0x08000000 /* Master DMA emulation at 0x000-0x00f */143#define INTE_SLAVEDMAENABLE 0x04000000 /* Slave DMA emulation at 0x0c0-0x0df */144#define INTE_MASTERPICENABLE 0x02000000 /* Master PIC emulation at 0x020-0x021 */145#define INTE_SLAVEPICENABLE 0x01000000 /* Slave PIC emulation at 0x0a0-0x0a1 */146#define INTE_VSBENABLE 0x00800000 /* Enable virtual Soundblaster */147#define INTE_ADLIBENABLE 0x00400000 /* Enable AdLib emulation at 0x388-0x38b */148#define INTE_MPUENABLE 0x00200000 /* Enable virtual MPU */149#define INTE_FORCEINT 0x00100000 /* Continuously assert INTAN */150151#define INTE_MRHANDENABLE 0x00080000 /* Enable the "Mr. Hand" logic */152/* NOTE: There is no reason to use this under */153/* Linux, and it will cause odd hardware */154/* behavior and possibly random segfaults and */155/* lockups if enabled. */156157#define INTE_A_GPIOENABLE 0x00040000 /* Enable GPIO input change interrupts */158159/* The next two interrupts are for the midi port on the Audigy Drive (A_MPU1) */160#define INTE_A_MIDITXENABLE2 0x00020000 /* Enable MIDI transmit-buffer-empty interrupts */161#define INTE_A_MIDIRXENABLE2 0x00010000 /* Enable MIDI receive-buffer-empty interrupts */162163#define INTE_A_SPDIF_BUFFULL_ENABLE 0x00008000164#define INTE_A_SPDIF_HALFBUFFULL_ENABLE 0x00004000165166#define INTE_SAMPLERATETRACKER 0x00002000 /* Enable sample rate tracker interrupts */167/* NOTE: This bit must always be enabled */168#define INTE_FXDSPENABLE 0x00001000 /* Enable FX DSP interrupts */169#define INTE_PCIERRORENABLE 0x00000800 /* Enable PCI bus error interrupts */170#define INTE_VOLINCRENABLE 0x00000400 /* Enable volume increment button interrupts */171#define INTE_VOLDECRENABLE 0x00000200 /* Enable volume decrement button interrupts */172#define INTE_MUTEENABLE 0x00000100 /* Enable mute button interrupts */173#define INTE_MICBUFENABLE 0x00000080 /* Enable microphone buffer interrupts */174#define INTE_ADCBUFENABLE 0x00000040 /* Enable ADC buffer interrupts */175#define INTE_EFXBUFENABLE 0x00000020 /* Enable Effects buffer interrupts */176#define INTE_GPSPDIFENABLE 0x00000010 /* Enable GPSPDIF status interrupts */177#define INTE_CDSPDIFENABLE 0x00000008 /* Enable CDSPDIF status interrupts */178#define INTE_INTERVALTIMERENB 0x00000004 /* Enable interval timer interrupts */179#define INTE_MIDITXENABLE 0x00000002 /* Enable MIDI transmit-buffer-empty interrupts */180#define INTE_MIDIRXENABLE 0x00000001 /* Enable MIDI receive-buffer-empty interrupts */181182#define WC 0x10 /* Wall Clock register */183SUB_REG(WC, SAMPLECOUNTER, 0x03FFFFC0) /* Sample periods elapsed since reset */184SUB_REG(WC, CURRENTCHANNEL, 0x0000003F) /* Channel [0..63] currently being serviced */185/* NOTE: Each channel takes 1/64th of a sample */186/* period to be serviced. */187188#define HCFG 0x14 /* Hardware config register */189/* NOTE: There is no reason to use the legacy */190/* SoundBlaster emulation stuff described below */191/* under Linux, and all kinds of weird hardware */192/* behavior can result if you try. Don't. */193#define HCFG_LEGACYFUNC_MASK 0xe0000000 /* Legacy function number */194#define HCFG_LEGACYFUNC_MPU 0x00000000 /* Legacy MPU */195#define HCFG_LEGACYFUNC_SB 0x40000000 /* Legacy SB */196#define HCFG_LEGACYFUNC_AD 0x60000000 /* Legacy AD */197#define HCFG_LEGACYFUNC_MPIC 0x80000000 /* Legacy MPIC */198#define HCFG_LEGACYFUNC_MDMA 0xa0000000 /* Legacy MDMA */199#define HCFG_LEGACYFUNC_SPCI 0xc0000000 /* Legacy SPCI */200#define HCFG_LEGACYFUNC_SDMA 0xe0000000 /* Legacy SDMA */201#define HCFG_IOCAPTUREADDR 0x1f000000 /* The 4 LSBs of the captured I/O address. */202#define HCFG_LEGACYWRITE 0x00800000 /* 1 = write, 0 = read */203#define HCFG_LEGACYWORD 0x00400000 /* 1 = word, 0 = byte */204#define HCFG_LEGACYINT 0x00200000 /* 1 = legacy event captured. Write 1 to clear. */205/* NOTE: The rest of the bits in this register */206/* _are_ relevant under Linux. */207#define HCFG_PUSH_BUTTON_ENABLE 0x00100000 /* Enables Volume Inc/Dec and Mute functions */208#define HCFG_BAUD_RATE 0x00080000 /* 0 = 48kHz, 1 = 44.1kHz */209#define HCFG_EXPANDED_MEM 0x00040000 /* 1 = any 16M of 4G addr, 0 = 32M of 2G addr */210#define HCFG_CODECFORMAT_MASK 0x00030000 /* CODEC format */211212/* Specific to Alice2, CA0102 */213214#define HCFG_CODECFORMAT_AC97_1 0x00000000 /* AC97 CODEC format -- Ver 1.03 */215#define HCFG_CODECFORMAT_AC97_2 0x00010000 /* AC97 CODEC format -- Ver 2.1 */216#define HCFG_AUTOMUTE_ASYNC 0x00008000 /* When set, the async sample rate convertors */217/* will automatically mute their output when */218/* they are not rate-locked to the external */219/* async audio source */220#define HCFG_AUTOMUTE_SPDIF 0x00004000 /* When set, the async sample rate convertors */221/* will automatically mute their output when */222/* the SPDIF V-bit indicates invalid audio */223#define HCFG_EMU32_SLAVE 0x00002000 /* 0 = Master, 1 = Slave. Slave for EMU1010 */224#define HCFG_SLOW_RAMP 0x00001000 /* Increases Send Smoothing time constant */225/* 0x00000800 not used on Alice2 */226#define HCFG_PHASE_TRACK_MASK 0x00000700 /* When set, forces corresponding input to */227/* phase track the previous input. */228/* I2S0 can phase track the last S/PDIF input */229#define HCFG_I2S_ASRC_ENABLE 0x00000070 /* When set, enables asynchronous sample rate */230/* conversion for the corresponding */231/* I2S format input */232/* Rest of HCFG 0x0000000f same as below. LOCKSOUNDCACHE etc. */233234/* Older chips */235236#define HCFG_CODECFORMAT_AC97 0x00000000 /* AC97 CODEC format -- Primary Output */237#define HCFG_CODECFORMAT_I2S 0x00010000 /* I2S CODEC format -- Secondary (Rear) Output */238#define HCFG_GPINPUT0 0x00004000 /* External pin112 */239#define HCFG_GPINPUT1 0x00002000 /* External pin110 */240#define HCFG_GPOUTPUT_MASK 0x00001c00 /* External pins which may be controlled */241#define HCFG_GPOUT0 0x00001000 /* External pin? (spdif enable on 5.1) */242#define HCFG_GPOUT1 0x00000800 /* External pin? (IR) */243#define HCFG_GPOUT2 0x00000400 /* External pin? (IR) */244#define HCFG_JOYENABLE 0x00000200 /* Internal joystick enable */245#define HCFG_PHASETRACKENABLE 0x00000100 /* Phase tracking enable */246/* 1 = Force all 3 async digital inputs to use */247/* the same async sample rate tracker (ZVIDEO) */248#define HCFG_AC3ENABLE_MASK 0x000000e0 /* AC3 async input control - Not implemented */249#define HCFG_AC3ENABLE_ZVIDEO 0x00000080 /* Channels 0 and 1 replace ZVIDEO */250#define HCFG_AC3ENABLE_CDSPDIF 0x00000040 /* Channels 0 and 1 replace CDSPDIF */251#define HCFG_AC3ENABLE_GPSPDIF 0x00000020 /* Channels 0 and 1 replace GPSPDIF */252#define HCFG_AUTOMUTE 0x00000010 /* When set, the async sample rate convertors */253/* will automatically mute their output when */254/* they are not rate-locked to the external */255/* async audio source */256#define HCFG_LOCKSOUNDCACHE 0x00000008 /* 1 = Cancel bustmaster accesses to soundcache */257/* NOTE: This should generally never be used. */258SUB_REG(HCFG, LOCKTANKCACHE, 0x00000004) /* 1 = Cancel bustmaster accesses to tankcache */259/* NOTE: This should generally never be used. */260#define HCFG_MUTEBUTTONENABLE 0x00000002 /* 1 = Master mute button sets AUDIOENABLE = 0. */261/* NOTE: This is a 'cheap' way to implement a */262/* master mute function on the mute button, and */263/* in general should not be used unless a more */264/* sophisticated master mute function has not */265/* been written. */266#define HCFG_AUDIOENABLE 0x00000001 /* 0 = CODECs transmit zero-valued samples */267/* Should be set to 1 when the EMU10K1 is */268/* completely initialized. */269270// On Audigy, the MPU port moved to the 0x70-0x74 ptr registers271272#define MUDATA 0x18 /* MPU401 data register (8 bits) */273274#define MUCMD 0x19 /* MPU401 command register (8 bits) */275#define MUCMD_RESET 0xff /* RESET command */276#define MUCMD_ENTERUARTMODE 0x3f /* Enter_UART_mode command */277/* NOTE: All other commands are ignored */278279#define MUSTAT MUCMD /* MPU401 status register (8 bits) */280#define MUSTAT_IRDYN 0x80 /* 0 = MIDI data or command ACK */281#define MUSTAT_ORDYN 0x40 /* 0 = MUDATA can accept a command or data */282283#define A_GPIO 0x18 /* GPIO on Audigy card (16bits) */284#define A_GPINPUT_MASK 0xff00 /* Alice/2 has 8 input pins */285#define A3_GPINPUT_MASK 0x3f00 /* ... while Tina/2 has only 6 */286#define A_GPOUTPUT_MASK 0x00ff287288// The GPIO port is used for I/O config on Sound Blasters;289// card-specific info can be found in the emu_chip_details table.290// On E-MU cards the port is used as the interface to the FPGA.291292// Audigy output/GPIO stuff taken from the kX drivers293#define A_IOCFG A_GPIO294#define A_IOCFG_GPOUT0 0x0044 /* analog/digital */295#define A_IOCFG_DISABLE_ANALOG 0x0040 /* = 'enable' for Audigy2 (chiprev=4) */296#define A_IOCFG_ENABLE_DIGITAL 0x0004297#define A_IOCFG_ENABLE_DIGITAL_AUDIGY4 0x0080298#define A_IOCFG_UNKNOWN_20 0x0020299#define A_IOCFG_DISABLE_AC97_FRONT 0x0080 /* turn off ac97 front -> front (10k2.1) */300#define A_IOCFG_GPOUT1 0x0002 /* IR? drive's internal bypass (?) */301#define A_IOCFG_GPOUT2 0x0001 /* IR */302#define A_IOCFG_MULTIPURPOSE_JACK 0x2000 /* center+lfe+rear_center (a2/a2ex) */303/* + digital for generic 10k2 */304#define A_IOCFG_DIGITAL_JACK 0x1000 /* digital for a2 platinum */305#define A_IOCFG_FRONT_JACK 0x4000306#define A_IOCFG_REAR_JACK 0x8000307#define A_IOCFG_PHONES_JACK 0x0100 /* LiveDrive */308309#define TIMER 0x1a /* Timer terminal count register */310/* NOTE: After the rate is changed, a maximum */311/* of 1024 sample periods should be allowed */312/* before the new rate is guaranteed accurate. */313#define TIMER_RATE_MASK 0x03ff /* Timer interrupt rate in sample periods */314/* 0 == 1024 periods, [1..4] are not useful */315316#define AC97DATA 0x1c /* AC97 register set data register (16 bit) */317318#define AC97ADDRESS 0x1e /* AC97 register set address register (8 bit) */319#define AC97ADDRESS_READY 0x80 /* Read-only bit, reflects CODEC READY signal */320#define AC97ADDRESS_ADDRESS 0x7f /* Address of indexed AC97 register */321322/* Available on the Audigy 2 and Audigy 4 only. This is the P16V chip. */323#define PTR2 0x20 /* Indexed register set pointer register */324#define DATA2 0x24 /* Indexed register set data register */325#define IPR2 0x28 /* P16V interrupt pending register */326#define IPR2_PLAYBACK_CH_0_LOOP 0x00001000 /* Playback Channel 0 loop */327#define IPR2_PLAYBACK_CH_0_HALF_LOOP 0x00000100 /* Playback Channel 0 half loop */328#define IPR2_CAPTURE_CH_0_LOOP 0x00100000 /* Capture Channel 0 loop */329#define IPR2_CAPTURE_CH_0_HALF_LOOP 0x00010000 /* Capture Channel 0 half loop */330/* 0x00000100 Playback. Only in once per period.331* 0x00110000 Capture. Int on half buffer.332*/333#define INTE2 0x2c /* P16V Interrupt enable register. */334#define INTE2_PLAYBACK_CH_0_LOOP 0x00001000 /* Playback Channel 0 loop */335#define INTE2_PLAYBACK_CH_0_HALF_LOOP 0x00000100 /* Playback Channel 0 half loop */336#define INTE2_PLAYBACK_CH_1_LOOP 0x00002000 /* Playback Channel 1 loop */337#define INTE2_PLAYBACK_CH_1_HALF_LOOP 0x00000200 /* Playback Channel 1 half loop */338#define INTE2_PLAYBACK_CH_2_LOOP 0x00004000 /* Playback Channel 2 loop */339#define INTE2_PLAYBACK_CH_2_HALF_LOOP 0x00000400 /* Playback Channel 2 half loop */340#define INTE2_PLAYBACK_CH_3_LOOP 0x00008000 /* Playback Channel 3 loop */341#define INTE2_PLAYBACK_CH_3_HALF_LOOP 0x00000800 /* Playback Channel 3 half loop */342#define INTE2_CAPTURE_CH_0_LOOP 0x00100000 /* Capture Channel 0 loop */343#define INTE2_CAPTURE_CH_0_HALF_LOOP 0x00010000 /* Caputre Channel 0 half loop */344#define HCFG2 0x34 /* Defaults: 0, win2000 sets it to 00004201 */345/* 0x00000000 2-channel output. */346/* 0x00000200 8-channel output. */347/* 0x00000004 pauses stream/irq fail. */348/* Rest of bits do nothing to sound output */349/* bit 0: Enable P16V audio.350* bit 1: Lock P16V record memory cache.351* bit 2: Lock P16V playback memory cache.352* bit 3: Dummy record insert zero samples.353* bit 8: Record 8-channel in phase.354* bit 9: Playback 8-channel in phase.355* bit 11-12: Playback mixer attenuation: 0=0dB, 1=-6dB, 2=-12dB, 3=Mute.356* bit 13: Playback mixer enable.357* bit 14: Route SRC48 mixer output to fx engine.358* bit 15: Enable IEEE 1394 chip.359*/360#define IPR3 0x38 /* Cdif interrupt pending register */361#define INTE3 0x3c /* Cdif interrupt enable register. */362363/************************************************************************************************/364/* PCI function 1 registers, address = <val> + PCIBASE1 */365/************************************************************************************************/366367#define JOYSTICK1 0x00 /* Analog joystick port register */368#define JOYSTICK2 0x01 /* Analog joystick port register */369#define JOYSTICK3 0x02 /* Analog joystick port register */370#define JOYSTICK4 0x03 /* Analog joystick port register */371#define JOYSTICK5 0x04 /* Analog joystick port register */372#define JOYSTICK6 0x05 /* Analog joystick port register */373#define JOYSTICK7 0x06 /* Analog joystick port register */374#define JOYSTICK8 0x07 /* Analog joystick port register */375376/* When writing, any write causes JOYSTICK_COMPARATOR output enable to be pulsed on write. */377/* When reading, use these bitfields: */378#define JOYSTICK_BUTTONS 0x0f /* Joystick button data */379#define JOYSTICK_COMPARATOR 0xf0 /* Joystick comparator data */380381/********************************************************************************************************/382/* Emu10k1 pointer-offset register set, accessed through the PTR and DATA registers */383/********************************************************************************************************/384385// No official documentation was released for EMU10K1, but some info386// about playback can be extrapolated from the EMU8K documents:387// "AWE32/EMU8000 Programmer’s Guide" (emu8kpgm.pdf) - registers388// "AWE32 Developer's Information Pack" (adip301.pdf) - high-level view389390// The short version:391// - The engine has 64 playback channels, also called voices. The channels392// operate independently, except when paired for stereo (see below).393// - PCM samples are fetched into the cache; see description of CD0 below.394// - Samples are consumed at the rate CPF_CURRENTPITCH.395// - 8-bit samples are transformed upon use: cooked = (raw ^ 0x80) << 8396// - 8 samples are read at CCR_READADDRESS:CPF_FRACADDRESS and interpolated397// according to CCCA_INTERPROM_*. With CCCA_INTERPROM_0 selected and a zero398// CPF_FRACADDRESS, this results in CCR_READADDRESS[3] being used verbatim.399// - The value is multiplied by CVCF_CURRENTVOL.400// - The value goes through a filter with cutoff CVCF_CURRENTFILTER;401// delay stages Z1 and Z2.402// - The value is added by so-called `sends` to 4 (EMU10K1) / 8 (EMU10K2)403// of the 16 (EMU10K1) / 64 (EMU10K2) FX bus accumulators via FXRT*,404// multiplied by a per-send amount (*_FXSENDAMOUNT_*).405// The scaling of the send amounts is exponential-ish.406// - The DSP has a go at FXBUS* and outputs the values to EXTOUT* or EMU32OUT*.407// - The pitch, volume, and filter cutoff can be modulated by two envelope408// engines and two low frequency oscillators.409// - To avoid abrupt changes to the parameters (which may cause audible410// distortion), the modulation engine sets the target registers, towards411// which the current registers "swerve" gradually.412413// For the odd channel in a stereo pair, these registers are meaningless:414// CPF_STEREO, CPF_CURRENTPITCH, PTRX_PITCHTARGET, CCR_CACHEINVALIDSIZE,415// PSST_LOOPSTARTADDR, DSL_LOOPENDADDR, CCCA_CURRADDR416// The somewhat non-obviously still meaningful ones are:417// CPF_STOP, CPF_FRACADDRESS, CCR_READADDRESS (!),418// CCCA_INTERPROM, CCCA_8BITSELECT (!)419// (The envelope engine is ignored here, as stereo matters only for verbatim playback.)420421#define CPF 0x00 /* Current pitch and fraction register */422SUB_REG(CPF, CURRENTPITCH, 0xffff0000) /* Current pitch (linear, 0x4000 == unity pitch shift) */423#define CPF_STEREO_MASK 0x00008000 /* 1 = Even channel interleave, odd channel locked */424SUB_REG(CPF, STOP, 0x00004000) /* 1 = Current pitch forced to 0 */425/* Can be set only while matching bit in SOLEx is 1 */426#define CPF_FRACADDRESS_MASK 0x00003fff /* Linear fractional address of the current channel */427428#define PTRX 0x01 /* Pitch target and send A/B amounts register */429SUB_REG(PTRX, PITCHTARGET, 0xffff0000) /* Pitch target of specified channel */430SUB_REG(PTRX, FXSENDAMOUNT_A, 0x0000ff00) /* Linear level of channel output sent to FX send bus A */431SUB_REG(PTRX, FXSENDAMOUNT_B, 0x000000ff) /* Linear level of channel output sent to FX send bus B */432433// Note: the volumes are raw multpliers, so real 100% is impossible.434#define CVCF 0x02 /* Current volume and filter cutoff register */435SUB_REG(CVCF, CURRENTVOL, 0xffff0000) /* Current linear volume of specified channel */436SUB_REG(CVCF, CURRENTFILTER, 0x0000ffff) /* Current filter cutoff frequency of specified channel */437438#define VTFT 0x03 /* Volume target and filter cutoff target register */439SUB_REG(VTFT, VOLUMETARGET, 0xffff0000) /* Volume target of specified channel */440SUB_REG(VTFT, FILTERTARGET, 0x0000ffff) /* Filter cutoff target of specified channel */441442#define Z1 0x05 /* Filter delay memory 1 register */443444#define Z2 0x04 /* Filter delay memory 2 register */445446#define PSST 0x06 /* Send C amount and loop start address register */447SUB_REG(PSST, FXSENDAMOUNT_C, 0xff000000) /* Linear level of channel output sent to FX send bus C */448SUB_REG(PSST, LOOPSTARTADDR, 0x00ffffff) /* Loop start address of the specified channel */449450#define DSL 0x07 /* Send D amount and loop end address register */451SUB_REG(DSL, FXSENDAMOUNT_D, 0xff000000) /* Linear level of channel output sent to FX send bus D */452SUB_REG(DSL, LOOPENDADDR, 0x00ffffff) /* Loop end address of the specified channel */453454#define CCCA 0x08 /* Filter Q, interp. ROM, byte size, cur. addr register */455SUB_REG(CCCA, RESONANCE, 0xf0000000) /* Lowpass filter resonance (Q) height */456#define CCCA_INTERPROM_MASK 0x0e000000 /* Selects passband of interpolation ROM */457/* 1 == full band, 7 == lowpass */458/* ROM 0 is used when pitch shifting downward or less */459/* then 3 semitones upward. Increasingly higher ROM */460/* numbers are used, typically in steps of 3 semitones, */461/* as upward pitch shifting is performed. */462#define CCCA_INTERPROM_0 0x00000000 /* Select interpolation ROM 0 */463#define CCCA_INTERPROM_1 0x02000000 /* Select interpolation ROM 1 */464#define CCCA_INTERPROM_2 0x04000000 /* Select interpolation ROM 2 */465#define CCCA_INTERPROM_3 0x06000000 /* Select interpolation ROM 3 */466#define CCCA_INTERPROM_4 0x08000000 /* Select interpolation ROM 4 */467#define CCCA_INTERPROM_5 0x0a000000 /* Select interpolation ROM 5 */468#define CCCA_INTERPROM_6 0x0c000000 /* Select interpolation ROM 6 */469#define CCCA_INTERPROM_7 0x0e000000 /* Select interpolation ROM 7 */470#define CCCA_8BITSELECT 0x01000000 /* 1 = Sound memory for this channel uses 8-bit samples */471/* 8-bit samples are unsigned, 16-bit ones signed */472SUB_REG(CCCA, CURRADDR, 0x00ffffff) /* Current address of the selected channel */473474#define CCR 0x09 /* Cache control register */475SUB_REG(CCR, CACHEINVALIDSIZE, 0xfe000000) /* Number of invalid samples before the read address */476#define CCR_CACHELOOPFLAG 0x01000000 /* 1 = Cache has a loop service pending */477#define CCR_INTERLEAVEDSAMPLES 0x00800000 /* 1 = A cache service will fetch interleaved samples */478/* Auto-set from CPF_STEREO_MASK */479#define CCR_WORDSIZEDSAMPLES 0x00400000 /* 1 = A cache service will fetch word sized samples */480/* Auto-set from CCCA_8BITSELECT */481SUB_REG(CCR, READADDRESS, 0x003f0000) /* Next cached sample to play */482SUB_REG(CCR, LOOPINVALSIZE, 0x0000fe00) /* Number of invalid samples in cache prior to loop */483/* NOTE: This is valid only if CACHELOOPFLAG is set */484#define CCR_LOOPFLAG 0x00000100 /* Set for a single sample period when a loop occurs */485SUB_REG(CCR, CACHELOOPADDRHI, 0x000000ff) /* CLP_LOOPSTARTADDR's hi byte if CACHELOOPFLAG is set */486487#define CLP 0x0a /* Cache loop register (valid if CCR_CACHELOOPFLAG = 1) */488/* NOTE: This register is normally not used */489SUB_REG(CLP, CACHELOOPADDR, 0x0000ffff) /* Cache loop address low word */490491#define FXRT 0x0b /* Effects send routing register */492/* NOTE: It is illegal to assign the same routing to */493/* two effects sends. */494#define FXRT_CHANNELA 0x000f0000 /* Effects send bus number for channel's effects send A */495#define FXRT_CHANNELB 0x00f00000 /* Effects send bus number for channel's effects send B */496#define FXRT_CHANNELC 0x0f000000 /* Effects send bus number for channel's effects send C */497#define FXRT_CHANNELD 0xf0000000 /* Effects send bus number for channel's effects send D */498499#define MAPA 0x0c /* Cache map A */500#define MAPB 0x0d /* Cache map B */501502#define MAP_PTE_MASK0 0xfffff000 /* The 20 MSBs of the PTE indexed by the PTI */503#define MAP_PTI_MASK0 0x00000fff /* The 12 bit index to one of the 4096 PTE dwords */504505#define MAP_PTE_MASK1 0xffffe000 /* The 19 MSBs of the PTE indexed by the PTI */506#define MAP_PTI_MASK1 0x00001fff /* The 13 bit index to one of the 8192 PTE dwords */507508/* 0x0e, 0x0f: Internal state, at least on Audigy */509510#define ENVVOL 0x10 /* Volume envelope register */511#define ENVVOL_MASK 0x0000ffff /* Current value of volume envelope state variable */512/* 0x8000-n == 666*n usec delay */513514#define ATKHLDV 0x11 /* Volume envelope hold and attack register */515#define ATKHLDV_PHASE0_MASK 0x00008000 /* 0 = Begin attack phase */516#define ATKHLDV_HOLDTIME_MASK 0x00007f00 /* Envelope hold time (127-n == n*88.2msec) */517#define ATKHLDV_ATTACKTIME_MASK 0x0000007f /* Envelope attack time, log encoded */518/* 0 = infinite, 1 = 10.9msec, ... 0x7f = 5.5msec */519520#define DCYSUSV 0x12 /* Volume envelope sustain and decay register */521#define DCYSUSV_PHASE1_MASK 0x00008000 /* 0 = Begin decay phase, 1 = begin release phase */522#define DCYSUSV_SUSTAINLEVEL_MASK 0x00007f00 /* 127 = full, 0 = off, 0.75dB increments */523#define DCYSUSV_CHANNELENABLE_MASK 0x00000080 /* 0 = Inhibit envelope engine from writing values in */524/* this channel and from writing to pitch, filter and */525/* volume targets. */526#define DCYSUSV_DECAYTIME_MASK 0x0000007f /* Volume envelope decay time, log encoded */527/* 0 = 43.7msec, 1 = 21.8msec, 0x7f = 22msec */528529#define LFOVAL1 0x13 /* Modulation LFO value */530#define LFOVAL_MASK 0x0000ffff /* Current value of modulation LFO state variable */531/* 0x8000-n == 666*n usec delay */532533#define ENVVAL 0x14 /* Modulation envelope register */534#define ENVVAL_MASK 0x0000ffff /* Current value of modulation envelope state variable */535/* 0x8000-n == 666*n usec delay */536537#define ATKHLDM 0x15 /* Modulation envelope hold and attack register */538#define ATKHLDM_PHASE0_MASK 0x00008000 /* 0 = Begin attack phase */539#define ATKHLDM_HOLDTIME 0x00007f00 /* Envelope hold time (127-n == n*42msec) */540#define ATKHLDM_ATTACKTIME 0x0000007f /* Envelope attack time, log encoded */541/* 0 = infinite, 1 = 11msec, ... 0x7f = 5.5msec */542543#define DCYSUSM 0x16 /* Modulation envelope decay and sustain register */544#define DCYSUSM_PHASE1_MASK 0x00008000 /* 0 = Begin decay phase, 1 = begin release phase */545#define DCYSUSM_SUSTAINLEVEL_MASK 0x00007f00 /* 127 = full, 0 = off, 0.75dB increments */546#define DCYSUSM_DECAYTIME_MASK 0x0000007f /* Envelope decay time, log encoded */547/* 0 = 43.7msec, 1 = 21.8msec, 0x7f = 22msec */548549#define LFOVAL2 0x17 /* Vibrato LFO register */550#define LFOVAL2_MASK 0x0000ffff /* Current value of vibrato LFO state variable */551/* 0x8000-n == 666*n usec delay */552553#define IP 0x18 /* Initial pitch register */554#define IP_MASK 0x0000ffff /* Exponential initial pitch shift */555/* 4 bits of octave, 12 bits of fractional octave */556#define IP_UNITY 0x0000e000 /* Unity pitch shift */557558#define IFATN 0x19 /* Initial filter cutoff and attenuation register */559SUB_REG(IFATN, FILTERCUTOFF, 0x0000ff00) /* Initial filter cutoff frequency in exponential units */560/* 6 most significant bits are semitones */561/* 2 least significant bits are fractions */562SUB_REG(IFATN, ATTENUATION, 0x000000ff) /* Initial attenuation in 0.375dB steps */563564#define PEFE 0x1a /* Pitch envelope and filter envelope amount register */565SUB_REG(PEFE, PITCHAMOUNT, 0x0000ff00) /* Pitch envlope amount */566/* Signed 2's complement, +/- one octave peak extremes */567SUB_REG(PEFE, FILTERAMOUNT, 0x000000ff) /* Filter envlope amount */568/* Signed 2's complement, +/- six octaves peak extremes */569570571#define FMMOD 0x1b /* Vibrato/filter modulation from LFO register */572#define FMMOD_MODVIBRATO 0x0000ff00 /* Vibrato LFO modulation depth */573/* Signed 2's complement, +/- one octave extremes */574#define FMMOD_MOFILTER 0x000000ff /* Filter LFO modulation depth */575/* Signed 2's complement, +/- three octave extremes */576577#define TREMFRQ 0x1c /* Tremolo amount and modulation LFO frequency register */578#define TREMFRQ_DEPTH 0x0000ff00 /* Tremolo depth */579/* Signed 2's complement, with +/- 12dB extremes */580#define TREMFRQ_FREQUENCY 0x000000ff /* Tremolo LFO frequency */581/* ??Hz steps, maximum of ?? Hz. */582583#define FM2FRQ2 0x1d /* Vibrato amount and vibrato LFO frequency register */584#define FM2FRQ2_DEPTH 0x0000ff00 /* Vibrato LFO vibrato depth */585/* Signed 2's complement, +/- one octave extremes */586#define FM2FRQ2_FREQUENCY 0x000000ff /* Vibrato LFO frequency */587/* 0.039Hz steps, maximum of 9.85 Hz. */588589#define TEMPENV 0x1e /* Tempory envelope register */590#define TEMPENV_MASK 0x0000ffff /* 16-bit value */591/* NOTE: All channels contain internal variables; do */592/* not write to these locations. */593594/* 0x1f: not used */595596// 32 cache registers (== 128 bytes) per channel follow.597// In stereo mode, the two channels' caches are concatenated into one,598// and hold the interleaved frames.599// The cache holds 64 frames, so the upper half is not used in 8-bit mode.600// All registers mentioned below count in frames. Shortcuts:601// CA = CCCA_CURRADDR, CRA = CCR_READADDRESS,602// CLA = CCR_CACHELOOPADDRHI:CLP_CACHELOOPADDR,603// CIS = CCR_CACHEINVALIDSIZE, LIS = CCR_LOOPINVALSIZE,604// CLF = CCR_CACHELOOPFLAG, LF = CCR_LOOPFLAG605// The cache is a ring buffer; CRA operates modulo 64.606// The cache is filled from (CA - CIS) into (CRA - CIS).607// The engine has a fetch threshold of 32 bytes, so it tries to keep608// CIS below 8 (16-bit stereo), 16 (16-bit mono, 8-bit stereo), or609// 32 (8-bit mono). The actual transfers are pretty unpredictable,610// especially if several voices are running.611// Frames are consumed at CRA, which is incremented afterwards,612// along with CA and CIS. This implies that the actual playback613// position always lags CA by exactly 64 frames.614// When CA reaches DSL_LOOPENDADDR, LF is set for one frame's time.615// LF's rising edge causes the current values of CA and CIS to be616// copied into CLA and LIS, resp., and CLF to be set.617// If CLF is set, the first LIS of the CIS frames are instead618// filled from (CLA - LIS), and CLF is subsequently reset.619#define CD0 0x20 /* Cache data registers 0 .. 0x1f */620621#define PTB 0x40 /* Page table base register */622#define PTB_MASK 0xfffff000 /* Physical address of the page table in host memory */623624#define TCB 0x41 /* Tank cache base register */625#define TCB_MASK 0xfffff000 /* Physical address of the bottom of host based TRAM */626627#define ADCCR 0x42 /* ADC sample rate/stereo control register */628#define ADCCR_RCHANENABLE 0x00000010 /* Enables right channel for writing to the host */629#define ADCCR_LCHANENABLE 0x00000008 /* Enables left channel for writing to the host */630/* NOTE: To guarantee phase coherency, both channels */631/* must be disabled prior to enabling both channels. */632#define A_ADCCR_RCHANENABLE 0x00000020633#define A_ADCCR_LCHANENABLE 0x00000010634635#define A_ADCCR_SAMPLERATE_MASK 0x0000000F /* Audigy sample rate convertor output rate */636#define ADCCR_SAMPLERATE_MASK 0x00000007 /* Sample rate convertor output rate */637#define ADCCR_SAMPLERATE_48 0x00000000 /* 48kHz sample rate */638#define ADCCR_SAMPLERATE_44 0x00000001 /* 44.1kHz sample rate */639#define ADCCR_SAMPLERATE_32 0x00000002 /* 32kHz sample rate */640#define ADCCR_SAMPLERATE_24 0x00000003 /* 24kHz sample rate */641#define ADCCR_SAMPLERATE_22 0x00000004 /* 22.05kHz sample rate */642#define ADCCR_SAMPLERATE_16 0x00000005 /* 16kHz sample rate */643#define ADCCR_SAMPLERATE_11 0x00000006 /* 11.025kHz sample rate */644#define ADCCR_SAMPLERATE_8 0x00000007 /* 8kHz sample rate */645#define A_ADCCR_SAMPLERATE_12 0x00000006 /* 12kHz sample rate */646#define A_ADCCR_SAMPLERATE_11 0x00000007 /* 11.025kHz sample rate */647#define A_ADCCR_SAMPLERATE_8 0x00000008 /* 8kHz sample rate */648649#define FXWC 0x43 /* FX output write channels register */650/* When set, each bit enables the writing of the */651/* corresponding FX output channel (internal registers */652/* 0x20-0x3f) to host memory. This mode of recording */653/* is 16bit, 48KHz only. All 32 channels can be enabled */654/* simultaneously. */655656#define A_TBLSZ 0x43 /* Effects Tank Internal Table Size. Only low byte or register used */657658#define TCBS 0x44 /* Tank cache buffer size register */659#define TCBS_MASK 0x00000007 /* Tank cache buffer size field */660#define TCBS_BUFFSIZE_16K 0x00000000661#define TCBS_BUFFSIZE_32K 0x00000001662#define TCBS_BUFFSIZE_64K 0x00000002663#define TCBS_BUFFSIZE_128K 0x00000003664#define TCBS_BUFFSIZE_256K 0x00000004665#define TCBS_BUFFSIZE_512K 0x00000005666#define TCBS_BUFFSIZE_1024K 0x00000006667#define TCBS_BUFFSIZE_2048K 0x00000007668669#define MICBA 0x45 /* AC97 microphone buffer address register */670#define MICBA_MASK 0xfffff000 /* 20 bit base address */671672#define ADCBA 0x46 /* ADC buffer address register */673#define ADCBA_MASK 0xfffff000 /* 20 bit base address */674675#define FXBA 0x47 /* FX Buffer Address */676#define FXBA_MASK 0xfffff000 /* 20 bit base address */677678#define A_HWM 0x48 /* High PCI Water Mark - word access, defaults to 3f */679680#define MICBS 0x49 /* Microphone buffer size register */681682#define ADCBS 0x4a /* ADC buffer size register */683684#define FXBS 0x4b /* FX buffer size register */685686/* The following mask values define the size of the ADC, MIC and FX buffers in bytes */687#define ADCBS_BUFSIZE_NONE 0x00000000688#define ADCBS_BUFSIZE_384 0x00000001689#define ADCBS_BUFSIZE_448 0x00000002690#define ADCBS_BUFSIZE_512 0x00000003691#define ADCBS_BUFSIZE_640 0x00000004692#define ADCBS_BUFSIZE_768 0x00000005693#define ADCBS_BUFSIZE_896 0x00000006694#define ADCBS_BUFSIZE_1024 0x00000007695#define ADCBS_BUFSIZE_1280 0x00000008696#define ADCBS_BUFSIZE_1536 0x00000009697#define ADCBS_BUFSIZE_1792 0x0000000a698#define ADCBS_BUFSIZE_2048 0x0000000b699#define ADCBS_BUFSIZE_2560 0x0000000c700#define ADCBS_BUFSIZE_3072 0x0000000d701#define ADCBS_BUFSIZE_3584 0x0000000e702#define ADCBS_BUFSIZE_4096 0x0000000f703#define ADCBS_BUFSIZE_5120 0x00000010704#define ADCBS_BUFSIZE_6144 0x00000011705#define ADCBS_BUFSIZE_7168 0x00000012706#define ADCBS_BUFSIZE_8192 0x00000013707#define ADCBS_BUFSIZE_10240 0x00000014708#define ADCBS_BUFSIZE_12288 0x00000015709#define ADCBS_BUFSIZE_14366 0x00000016710#define ADCBS_BUFSIZE_16384 0x00000017711#define ADCBS_BUFSIZE_20480 0x00000018712#define ADCBS_BUFSIZE_24576 0x00000019713#define ADCBS_BUFSIZE_28672 0x0000001a714#define ADCBS_BUFSIZE_32768 0x0000001b715#define ADCBS_BUFSIZE_40960 0x0000001c716#define ADCBS_BUFSIZE_49152 0x0000001d717#define ADCBS_BUFSIZE_57344 0x0000001e718#define ADCBS_BUFSIZE_65536 0x0000001f719720// On Audigy, the FX send amounts are not applied instantly, but determine721// targets towards which the following registers swerve gradually.722#define A_CSBA 0x4c /* FX send B & A current amounts */723#define A_CSDC 0x4d /* FX send D & C current amounts */724#define A_CSFE 0x4e /* FX send F & E current amounts */725#define A_CSHG 0x4f /* FX send H & G current amounts */726727// NOTE: 0x50,51,52: 64-bit (split over voices 0 & 1)728#define CDCS 0x50 /* CD-ROM digital channel status register */729730#define GPSCS 0x51 /* General Purpose SPDIF channel status register */731732// Corresponding EMU10K1_DBG_* constants are in the public header733#define DBG 0x52734735#define A_SPSC 0x52 /* S/PDIF Input C Channel Status */736737#define REG53 0x53 /* DO NOT PROGRAM THIS REGISTER!!! MAY DESTROY CHIP */738739// Corresponding A_DBG_* constants are in the public header740#define A_DBG 0x53741742// NOTE: 0x54,55,56: 64-bit (split over voices 0 & 1)743#define SPCS0 0x54 /* SPDIF output Channel Status 0 register */744745#define SPCS1 0x55 /* SPDIF output Channel Status 1 register */746747#define SPCS2 0x56 /* SPDIF output Channel Status 2 register */748749#define SPCS_CLKACCYMASK 0x30000000 /* Clock accuracy */750#define SPCS_CLKACCY_1000PPM 0x00000000 /* 1000 parts per million */751#define SPCS_CLKACCY_50PPM 0x10000000 /* 50 parts per million */752#define SPCS_CLKACCY_VARIABLE 0x20000000 /* Variable accuracy */753#define SPCS_SAMPLERATEMASK 0x0f000000 /* Sample rate */754#define SPCS_SAMPLERATE_44 0x00000000 /* 44.1kHz sample rate */755#define SPCS_SAMPLERATE_48 0x02000000 /* 48kHz sample rate */756#define SPCS_SAMPLERATE_32 0x03000000 /* 32kHz sample rate */757#define SPCS_CHANNELNUMMASK 0x00f00000 /* Channel number */758#define SPCS_CHANNELNUM_UNSPEC 0x00000000 /* Unspecified channel number */759#define SPCS_CHANNELNUM_LEFT 0x00100000 /* Left channel */760#define SPCS_CHANNELNUM_RIGHT 0x00200000 /* Right channel */761#define SPCS_SOURCENUMMASK 0x000f0000 /* Source number */762#define SPCS_SOURCENUM_UNSPEC 0x00000000 /* Unspecified source number */763#define SPCS_GENERATIONSTATUS 0x00008000 /* Originality flag (see IEC-958 spec) */764#define SPCS_CATEGORYCODEMASK 0x00007f00 /* Category code (see IEC-958 spec) */765#define SPCS_MODEMASK 0x000000c0 /* Mode (see IEC-958 spec) */766#define SPCS_EMPHASISMASK 0x00000038 /* Emphasis */767#define SPCS_EMPHASIS_NONE 0x00000000 /* No emphasis */768#define SPCS_EMPHASIS_50_15 0x00000008 /* 50/15 usec 2 channel */769#define SPCS_COPYRIGHT 0x00000004 /* Copyright asserted flag -- do not modify */770#define SPCS_NOTAUDIODATA 0x00000002 /* 0 = Digital audio, 1 = not audio */771#define SPCS_PROFESSIONAL 0x00000001 /* 0 = Consumer (IEC-958), 1 = pro (AES3-1992) */772773/* 0x57: Not used */774775/* The 32-bit CLIx and SOLEx registers all have one bit per channel control/status */776#define CLIEL 0x58 /* Channel loop interrupt enable low register */777#define CLIEH 0x59 /* Channel loop interrupt enable high register */778779#define CLIPL 0x5a /* Channel loop interrupt pending low register */780#define CLIPH 0x5b /* Channel loop interrupt pending high register */781782// These cause CPF_STOP_MASK to be set shortly after CCCA_CURRADDR passes DSL_LOOPENDADDR.783// Subsequent changes to the address registers don't resume; clearing the bit here or in CPF does.784// The registers are NOT synchronized; the next serviced channel picks up immediately.785#define SOLEL 0x5c /* Stop on loop enable low register */786#define SOLEH 0x5d /* Stop on loop enable high register */787788#define SPBYPASS 0x5e /* SPDIF BYPASS mode register */789#define SPBYPASS_SPDIF0_MASK 0x00000003 /* SPDIF 0 bypass mode */790#define SPBYPASS_SPDIF1_MASK 0x0000000c /* SPDIF 1 bypass mode */791/* bypass mode: 0 - DSP; 1 - SPDIF A, 2 - SPDIF B, 3 - SPDIF C */792#define SPBYPASS_FORMAT 0x00000f00 /* If 1, SPDIF XX uses 24 bit, if 0 - 20 bit */793794#define AC97SLOT 0x5f /* additional AC97 slots enable bits */795#define AC97SLOT_REAR_RIGHT 0x01 /* Rear left */796#define AC97SLOT_REAR_LEFT 0x02 /* Rear right */797#define AC97SLOT_CNTR 0x10 /* Center enable */798#define AC97SLOT_LFE 0x20 /* LFE enable */799800#define A_PCB 0x5f /* PCB Revision */801802// NOTE: 0x60,61,62: 64-bit803#define CDSRCS 0x60 /* CD-ROM Sample Rate Converter status register */804805#define GPSRCS 0x61 /* General Purpose SPDIF sample rate cvt status */806807#define ZVSRCS 0x62 /* ZVideo sample rate converter status */808/* NOTE: This one has no SPDIFLOCKED field */809/* Assumes sample lock */810811/* These three bitfields apply to CDSRCS, GPSRCS, and (except as noted) ZVSRCS. */812#define SRCS_SPDIFVALID 0x04000000 /* SPDIF stream valid */813#define SRCS_SPDIFLOCKED 0x02000000 /* SPDIF stream locked */814#define SRCS_RATELOCKED 0x01000000 /* Sample rate locked */815#define SRCS_ESTSAMPLERATE 0x0007ffff /* Do not modify this field. */816817/* Note that these values can vary +/- by a small amount */818#define SRCS_SPDIFRATE_44 0x0003acd9819#define SRCS_SPDIFRATE_48 0x00040000820#define SRCS_SPDIFRATE_96 0x00080000821822#define MICIDX 0x63 /* Microphone recording buffer index register */823SUB_REG(MICIDX, IDX, 0x0000ffff)824825#define ADCIDX 0x64 /* ADC recording buffer index register */826SUB_REG(ADCIDX, IDX, 0x0000ffff)827828#define A_ADCIDX 0x63829SUB_REG(A_ADCIDX, IDX, 0x0000ffff)830831#define A_MICIDX 0x64832SUB_REG(A_MICIDX, IDX, 0x0000ffff)833834#define FXIDX 0x65 /* FX recording buffer index register */835SUB_REG(FXIDX, IDX, 0x0000ffff)836837/* The 32-bit HLIEx and HLIPx registers all have one bit per channel control/status */838#define HLIEL 0x66 /* Channel half loop interrupt enable low register */839#define HLIEH 0x67 /* Channel half loop interrupt enable high register */840841#define HLIPL 0x68 /* Channel half loop interrupt pending low register */842#define HLIPH 0x69 /* Channel half loop interrupt pending high register */843844#define A_SPRI 0x6a /* S/PDIF Host Record Index (bypasses SRC) */845#define A_SPRA 0x6b /* S/PDIF Host Record Address */846#define A_SPRC 0x6c /* S/PDIF Host Record Control */847848#define A_DICE 0x6d /* Delayed Interrupt Counter & Enable */849850#define A_TTB 0x6e /* Tank Table Base */851#define A_TDOF 0x6f /* Tank Delay Offset */852853/* This is the MPU port on the card (via the game port) */854#define A_MUDATA1 0x70855#define A_MUCMD1 0x71856#define A_MUSTAT1 A_MUCMD1857858/* This is the MPU port on the Audigy Drive */859#define A_MUDATA2 0x72860#define A_MUCMD2 0x73861#define A_MUSTAT2 A_MUCMD2862863/* The next two are the Audigy equivalent of FXWC */864/* the Audigy can record any output (16bit, 48kHz, up to 64 channels simultaneously) */865/* Each bit selects a channel for recording */866#define A_FXWC1 0x74 /* Selects 0x7f-0x60 for FX recording */867#define A_FXWC2 0x75 /* Selects 0x9f-0x80 for FX recording */868869#define A_EHC 0x76 /* Extended Hardware Control */870871#define A_SPDIF_SAMPLERATE A_EHC /* Set the sample rate of SPDIF output */872#define A_SPDIF_RATE_MASK 0x000000e0 /* Any other values for rates, just use 48000 */873#define A_SPDIF_48000 0x00000000 /* kX calls this BYPASS */874#define A_SPDIF_192000 0x00000020875#define A_SPDIF_96000 0x00000040876#define A_SPDIF_44100 0x00000080877#define A_SPDIF_MUTED 0x000000c0878879SUB_REG_NC(A_EHC, A_I2S_CAPTURE_RATE, 0x00000e00) /* This sets the capture PCM rate, but it is */880/* unclear if this sets the ADC rate as well. */881#define A_I2S_CAPTURE_48000 0x0882#define A_I2S_CAPTURE_192000 0x1883#define A_I2S_CAPTURE_96000 0x2884#define A_I2S_CAPTURE_44100 0x4885886#define A_EHC_SRC48_MASK 0x0000e000 /* This sets the playback PCM rate on the P16V */887#define A_EHC_SRC48_BYPASS 0x00000000888#define A_EHC_SRC48_192 0x00002000889#define A_EHC_SRC48_96 0x00004000890#define A_EHC_SRC48_44 0x00008000891#define A_EHC_SRC48_MUTED 0x0000c000892893#define A_EHC_P17V_TVM 0x00000001 /* Tank virtual memory mode */894#define A_EHC_P17V_SEL0_MASK 0x00030000 /* Aka A_EHC_P16V_PB_RATE; 00: 48, 01: 44.1, 10: 96, 11: 192 */895#define A_EHC_P17V_SEL1_MASK 0x000c0000896#define A_EHC_P17V_SEL2_MASK 0x00300000897#define A_EHC_P17V_SEL3_MASK 0x00c00000898899#define A_EHC_ASYNC_BYPASS 0x80000000900901#define A_SRT3 0x77 /* I2S0 Sample Rate Tracker Status */902#define A_SRT4 0x78 /* I2S1 Sample Rate Tracker Status */903#define A_SRT5 0x79 /* I2S2 Sample Rate Tracker Status */904/* - default to 0x01080000 on my audigy 2 ZS --rlrevell */905906#define A_SRT_ESTSAMPLERATE 0x001fffff907#define A_SRT_RATELOCKED 0x01000000908909#define A_TTDA 0x7a /* Tank Table DMA Address */910#define A_TTDD 0x7b /* Tank Table DMA Data */911912// In A_FXRT1 & A_FXRT2, the 0x80 bit of each byte completely disables the913// filter (CVCF_CURRENTFILTER) for the corresponding channel. There is no914// effect on the volume (CVCF_CURRENTVOLUME) or the interpolator's filter915// (CCCA_INTERPROM_MASK).916917#define A_FXRT2 0x7c918#define A_FXRT_CHANNELE 0x0000003f /* Effects send bus number for channel's effects send E */919#define A_FXRT_CHANNELF 0x00003f00 /* Effects send bus number for channel's effects send F */920#define A_FXRT_CHANNELG 0x003f0000 /* Effects send bus number for channel's effects send G */921#define A_FXRT_CHANNELH 0x3f000000 /* Effects send bus number for channel's effects send H */922923#define A_SENDAMOUNTS 0x7d924#define A_FXSENDAMOUNT_E_MASK 0xFF000000925#define A_FXSENDAMOUNT_F_MASK 0x00FF0000926#define A_FXSENDAMOUNT_G_MASK 0x0000FF00927#define A_FXSENDAMOUNT_H_MASK 0x000000FF928929/* The send amounts for this one are the same as used with the emu10k1 */930#define A_FXRT1 0x7e931#define A_FXRT_CHANNELA 0x0000003f932#define A_FXRT_CHANNELB 0x00003f00933#define A_FXRT_CHANNELC 0x003f0000934#define A_FXRT_CHANNELD 0x3f000000935936/* 0x7f: Not used */937938/* The public header defines the GPR and TRAM base addresses that939* are valid for _both_ CPU and DSP addressing. */940941/* Each DSP microcode instruction is mapped into 2 doublewords */942/* NOTE: When writing, always write the LO doubleword first. Reads can be in either order. */943#define MICROCODEBASE 0x400 /* Microcode data base address */944#define A_MICROCODEBASE 0x600945946947/************************************************************************************************/948/* E-MU Digital Audio System overview */949/************************************************************************************************/950951// - These cards use a regular PCI-attached Audigy chip (Alice2/Tina/Tina2);952// the PCIe variants simply put the Audigy chip behind a PCI bridge.953// - All physical PCM I/O is routed through an additional FPGA; the regular954// EXTIN/EXTOUT ports are unconnected.955// - The FPGA has a signal routing matrix, to connect each destination (output956// socket or capture channel) to a source (input socket or playback channel).957// - The FPGA is controlled via Audigy's GPIO port, while sample data is958// transmitted via proprietary EMU32 serial links. On first-generation959// E-MU 1010 cards, Audigy's I2S inputs are also used for sample data.960// - The Audio/Micro Dock is attached to Hana via EDI, a "network" link.961// - The Audigy chip operates in slave mode; the clock is supplied by the FPGA.962// Gen1 E-MU 1010 cards have two crystals (for 44.1 kHz and 48 kHz multiples),963// while the later cards use a single crystal and a PLL chip.964// - The whole card is switched to 2x/4x mode to achieve 88.2/96/176.4/192 kHz965// sample rates. Alice2/Tina keeps running at 44.1/48 kHz, but multiple channels966// are bundled.967// - The number of available EMU32/EDI channels is hit in 2x/4x mode, so the total968// number of usable inputs/outputs is limited, esp. with ADAT in use.969// - S/PDIF is unavailable in 4x mode (only over TOSLINK on newer 1010 cards) due970// to being unspecified at 176.4/192 kHz. Therefore, the Dock's S/PDIF channels971// can overlap with the Dock's ADC/DAC's high channels.972// - The code names are mentioned below and in the emu_chip_details table.973974/************************************************************************************************/975/* EMU1010 FPGA registers */976/************************************************************************************************/977978#define EMU_HANA_DESTHI 0x00 /* 0000xxx 3 bits Link Destination */979#define EMU_HANA_DESTLO 0x01 /* 00xxxxx 5 bits */980981#define EMU_HANA_SRCHI 0x02 /* 0000xxx 3 bits Link Source */982#define EMU_HANA_SRCLO 0x03 /* 00xxxxx 5 bits */983984#define EMU_HANA_DOCK_PWR 0x04 /* 000000x 1 bits Audio Dock power */985#define EMU_HANA_DOCK_PWR_ON 0x01 /* Audio Dock power on */986987#define EMU_HANA_WCLOCK 0x05 /* 0000xxx 3 bits Word Clock source select */988/* Must be written after power on to reset DLL */989/* One is unable to detect the Audio dock without this */990#define EMU_HANA_WCLOCK_SRC_MASK 0x07991#define EMU_HANA_WCLOCK_INT_48K 0x00992#define EMU_HANA_WCLOCK_INT_44_1K 0x01993#define EMU_HANA_WCLOCK_HANA_SPDIF_IN 0x02994#define EMU_HANA_WCLOCK_HANA_ADAT_IN 0x03995#define EMU_HANA_WCLOCK_SYNC_BNC 0x04996#define EMU_HANA_WCLOCK_2ND_HANA 0x05997#define EMU_HANA_WCLOCK_SRC_RESERVED 0x06998#define EMU_HANA_WCLOCK_OFF 0x07 /* For testing, forces fallback to DEFCLOCK */999#define EMU_HANA_WCLOCK_MULT_MASK 0x181000#define EMU_HANA_WCLOCK_1X 0x001001#define EMU_HANA_WCLOCK_2X 0x081002#define EMU_HANA_WCLOCK_4X 0x101003#define EMU_HANA_WCLOCK_MULT_RESERVED 0x1810041005// If the selected external clock source is/becomes invalid or incompatible1006// with the clock multiplier, the clock source is reset to this value, and1007// a WCLK_CHANGED interrupt is raised.1008#define EMU_HANA_DEFCLOCK 0x06 /* 000000x 1 bits Default Word Clock */1009#define EMU_HANA_DEFCLOCK_48K 0x001010#define EMU_HANA_DEFCLOCK_44_1K 0x0110111012#define EMU_HANA_UNMUTE 0x07 /* 000000x 1 bits Mute all audio outputs */1013#define EMU_MUTE 0x001014#define EMU_UNMUTE 0x0110151016#define EMU_HANA_FPGA_CONFIG 0x08 /* 00000xx 2 bits Config control of FPGAs */1017#define EMU_HANA_FPGA_CONFIG_AUDIODOCK 0x01 /* Set in order to program FPGA on Audio Dock */1018#define EMU_HANA_FPGA_CONFIG_HANA 0x02 /* Set in order to program FPGA on Hana */10191020#define EMU_HANA_IRQ_ENABLE 0x09 /* 000xxxx 4 bits IRQ Enable */1021#define EMU_HANA_IRQ_WCLK_CHANGED 0x011022#define EMU_HANA_IRQ_ADAT 0x021023#define EMU_HANA_IRQ_DOCK 0x041024#define EMU_HANA_IRQ_DOCK_LOST 0x0810251026#define EMU_HANA_SPDIF_MODE 0x0a /* 00xxxxx 5 bits SPDIF MODE */1027#define EMU_HANA_SPDIF_MODE_TX_CONSUMER 0x001028#define EMU_HANA_SPDIF_MODE_TX_PRO 0x011029#define EMU_HANA_SPDIF_MODE_TX_NOCOPY 0x021030#define EMU_HANA_SPDIF_MODE_RX_CONSUMER 0x001031#define EMU_HANA_SPDIF_MODE_RX_PRO 0x041032#define EMU_HANA_SPDIF_MODE_RX_NOCOPY 0x081033#define EMU_HANA_SPDIF_MODE_RX_INVALID 0x1010341035#define EMU_HANA_OPTICAL_TYPE 0x0b /* 00000xx 2 bits ADAT or SPDIF in/out */1036#define EMU_HANA_OPTICAL_IN_SPDIF 0x001037#define EMU_HANA_OPTICAL_IN_ADAT 0x011038#define EMU_HANA_OPTICAL_OUT_SPDIF 0x001039#define EMU_HANA_OPTICAL_OUT_ADAT 0x0210401041#define EMU_HANA_MIDI_IN 0x0c /* 000000x 1 bit Control MIDI */1042#define EMU_HANA_MIDI_INA_FROM_HAMOA 0x01 /* HAMOA MIDI in to Alice 2 MIDI A */1043#define EMU_HANA_MIDI_INA_FROM_DOCK1 0x02 /* Audio Dock-1 MIDI in to Alice 2 MIDI A */1044#define EMU_HANA_MIDI_INA_FROM_DOCK2 0x03 /* Audio Dock-2 MIDI in to Alice 2 MIDI A */1045#define EMU_HANA_MIDI_INB_FROM_HAMOA 0x08 /* HAMOA MIDI in to Alice 2 MIDI B */1046#define EMU_HANA_MIDI_INB_FROM_DOCK1 0x10 /* Audio Dock-1 MIDI in to Alice 2 MIDI B */1047#define EMU_HANA_MIDI_INB_FROM_DOCK2 0x18 /* Audio Dock-2 MIDI in to Alice 2 MIDI B */10481049#define EMU_HANA_DOCK_LEDS_1 0x0d /* 000xxxx 4 bit Audio Dock LEDs */1050#define EMU_HANA_DOCK_LEDS_1_MIDI1 0x01 /* MIDI 1 LED on */1051#define EMU_HANA_DOCK_LEDS_1_MIDI2 0x02 /* MIDI 2 LED on */1052#define EMU_HANA_DOCK_LEDS_1_SMPTE_IN 0x04 /* SMPTE IN LED on */1053#define EMU_HANA_DOCK_LEDS_1_SMPTE_OUT 0x08 /* SMPTE OUT LED on */10541055#define EMU_HANA_DOCK_LEDS_2 0x0e /* 0xxxxxx 6 bit Audio Dock LEDs */1056#define EMU_HANA_DOCK_LEDS_2_44K 0x01 /* 44.1 kHz LED on */1057#define EMU_HANA_DOCK_LEDS_2_48K 0x02 /* 48 kHz LED on */1058#define EMU_HANA_DOCK_LEDS_2_96K 0x04 /* 96 kHz LED on */1059#define EMU_HANA_DOCK_LEDS_2_192K 0x08 /* 192 kHz LED on */1060#define EMU_HANA_DOCK_LEDS_2_LOCK 0x10 /* LOCK LED on */1061#define EMU_HANA_DOCK_LEDS_2_EXT 0x20 /* EXT LED on */10621063#define EMU_HANA_DOCK_LEDS_3 0x0f /* 0xxxxxx 6 bit Audio Dock LEDs */1064#define EMU_HANA_DOCK_LEDS_3_CLIP_A 0x01 /* Mic A Clip LED on */1065#define EMU_HANA_DOCK_LEDS_3_CLIP_B 0x02 /* Mic B Clip LED on */1066#define EMU_HANA_DOCK_LEDS_3_SIGNAL_A 0x04 /* Signal A Clip LED on */1067#define EMU_HANA_DOCK_LEDS_3_SIGNAL_B 0x08 /* Signal B Clip LED on */1068#define EMU_HANA_DOCK_LEDS_3_MANUAL_CLIP 0x10 /* Manual Clip detection */1069#define EMU_HANA_DOCK_LEDS_3_MANUAL_SIGNAL 0x20 /* Manual Signal detection */10701071#define EMU_HANA_ADC_PADS 0x10 /* 0000xxx 3 bit Audio Dock ADC 14dB pads */1072#define EMU_HANA_DOCK_ADC_PAD1 0x01 /* 14dB Attenuation on Audio Dock ADC 1 */1073#define EMU_HANA_DOCK_ADC_PAD2 0x02 /* 14dB Attenuation on Audio Dock ADC 2 */1074#define EMU_HANA_DOCK_ADC_PAD3 0x04 /* 14dB Attenuation on Audio Dock ADC 3 */1075#define EMU_HANA_0202_ADC_PAD1 0x08 /* 14dB Attenuation on 0202 ADC 1 */10761077#define EMU_HANA_DOCK_MISC 0x11 /* 0xxxxxx 6 bit Audio Dock misc bits */1078#define EMU_HANA_DOCK_DAC1_MUTE 0x01 /* DAC 1 Mute */1079#define EMU_HANA_DOCK_DAC2_MUTE 0x02 /* DAC 2 Mute */1080#define EMU_HANA_DOCK_DAC3_MUTE 0x04 /* DAC 3 Mute */1081#define EMU_HANA_DOCK_DAC4_MUTE 0x08 /* DAC 4 Mute */1082#define EMU_HANA_DOCK_PHONES_192_DAC1 0x00 /* DAC 1 Headphones source at 192kHz */1083#define EMU_HANA_DOCK_PHONES_192_DAC2 0x10 /* DAC 2 Headphones source at 192kHz */1084#define EMU_HANA_DOCK_PHONES_192_DAC3 0x20 /* DAC 3 Headphones source at 192kHz */1085#define EMU_HANA_DOCK_PHONES_192_DAC4 0x30 /* DAC 4 Headphones source at 192kHz */10861087#define EMU_HANA_MIDI_OUT 0x12 /* 00xxxxx 5 bit Source for each MIDI out port */1088#define EMU_HANA_MIDI_OUT_0202 0x01 /* 0202 MIDI from Alice 2. 0 = A, 1 = B */1089#define EMU_HANA_MIDI_OUT_DOCK1 0x02 /* Audio Dock MIDI1 front, from Alice 2. 0 = A, 1 = B */1090#define EMU_HANA_MIDI_OUT_DOCK2 0x04 /* Audio Dock MIDI2 rear, from Alice 2. 0 = A, 1 = B */1091#define EMU_HANA_MIDI_OUT_SYNC2 0x08 /* Sync card. Not the actual MIDI out jack. 0 = A, 1 = B */1092#define EMU_HANA_MIDI_OUT_LOOP 0x10 /* 0 = bits (3:0) normal. 1 = MIDI loopback enabled. */10931094#define EMU_HANA_DAC_PADS 0x13 /* 00xxxxx 5 bit DAC 14dB attenuation pads */1095#define EMU_HANA_DOCK_DAC_PAD1 0x01 /* 14dB Attenuation on AudioDock DAC 1. Left and Right */1096#define EMU_HANA_DOCK_DAC_PAD2 0x02 /* 14dB Attenuation on AudioDock DAC 2. Left and Right */1097#define EMU_HANA_DOCK_DAC_PAD3 0x04 /* 14dB Attenuation on AudioDock DAC 3. Left and Right */1098#define EMU_HANA_DOCK_DAC_PAD4 0x08 /* 14dB Attenuation on AudioDock DAC 4. Left and Right */1099#define EMU_HANA_0202_DAC_PAD1 0x10 /* 14dB Attenuation on 0202 DAC 1. Left and Right */11001101/* 0x14 - 0x1f Unused R/W registers */11021103#define EMU_HANA_IRQ_STATUS 0x20 /* 00xxxxx 5 bits IRQ Status */1104/* Same bits as for EMU_HANA_IRQ_ENABLE */1105/* Reading the register resets it. */11061107#define EMU_HANA_OPTION_CARDS 0x21 /* 000xxxx 4 bits Presence of option cards */1108#define EMU_HANA_OPTION_HAMOA 0x01 /* Hamoa (analog I/O) card present */1109#define EMU_HANA_OPTION_SYNC 0x02 /* Sync card present */1110#define EMU_HANA_OPTION_DOCK_ONLINE 0x04 /* Audio/Micro dock present and FPGA configured */1111#define EMU_HANA_OPTION_DOCK_OFFLINE 0x08 /* Audio/Micro dock present and FPGA not configured */11121113#define EMU_HANA_ID 0x22 /* 1010101 7 bits ID byte & 0x7f = 0x55 with Alice2 */1114/* 0010101 5 bits ID byte & 0x1f = 0x15 with Tina/2 */11151116#define EMU_HANA_MAJOR_REV 0x23 /* 0000xxx 3 bit Hana FPGA Major rev */1117#define EMU_HANA_MINOR_REV 0x24 /* 0000xxx 3 bit Hana FPGA Minor rev */11181119#define EMU_DOCK_MAJOR_REV 0x25 /* 0000xxx 3 bit Audio Dock FPGA Major rev */1120#define EMU_DOCK_MINOR_REV 0x26 /* 0000xxx 3 bit Audio Dock FPGA Minor rev */11211122#define EMU_DOCK_BOARD_ID 0x27 /* 00000xx 2 bits Audio Dock ID pins */1123#define EMU_DOCK_BOARD_ID0 0x00 /* ID bit 0 */1124#define EMU_DOCK_BOARD_ID1 0x03 /* ID bit 1 */11251126// The actual code disagrees about the bit width of the registers -1127// the formula used is freq = 0x1770000 / (((X_HI << 5) | X_LO) + 1)11281129#define EMU_HANA_WC_SPDIF_HI 0x28 /* 0xxxxxx 6 bit SPDIF IN Word clock, upper 6 bits */1130#define EMU_HANA_WC_SPDIF_LO 0x29 /* 0xxxxxx 6 bit SPDIF IN Word clock, lower 6 bits */11311132#define EMU_HANA_WC_ADAT_HI 0x2a /* 0xxxxxx 6 bit ADAT IN Word clock, upper 6 bits */1133#define EMU_HANA_WC_ADAT_LO 0x2b /* 0xxxxxx 6 bit ADAT IN Word clock, lower 6 bits */11341135#define EMU_HANA_WC_BNC_LO 0x2c /* 0xxxxxx 6 bit BNC IN Word clock, lower 6 bits */1136#define EMU_HANA_WC_BNC_HI 0x2d /* 0xxxxxx 6 bit BNC IN Word clock, upper 6 bits */11371138#define EMU_HANA2_WC_SPDIF_HI 0x2e /* 0xxxxxx 6 bit HANA2 SPDIF IN Word clock, upper 6 bits */1139#define EMU_HANA2_WC_SPDIF_LO 0x2f /* 0xxxxxx 6 bit HANA2 SPDIF IN Word clock, lower 6 bits */11401141/* 0x30 - 0x3f Unused Read only registers */11421143// The meaning of this is not clear; kX-project just calls it "lock" in some info-only code.1144#define EMU_HANA_LOCK_STS_LO 0x38 /* 0xxxxxx lower 6 bits */1145#define EMU_HANA_LOCK_STS_HI 0x39 /* 0xxxxxx upper 6 bits */11461147/************************************************************************************************/1148/* EMU1010 Audio Destinations */1149/************************************************************************************************/1150/* Hana, original 1010,1212m,1820[m] using Alice21151* 0x00, 0x00-0x0f: 16 EMU32 channels to Alice21152* 0x01, 0x00-0x1f: 32 EDI channels to Audio Dock1153* 0x00: Dock DAC 1 Left1154* 0x04: Dock DAC 1 Right1155* 0x08: Dock DAC 2 Left1156* 0x0c: Dock DAC 2 Right1157* 0x10: Dock DAC 3 Left1158* 0x12: PHONES Left (n/a in 2x/4x mode; output mirrors DAC4 Left)1159* 0x14: Dock DAC 3 Right1160* 0x16: PHONES Right (n/a in 2x/4x mode; output mirrors DAC4 Right)1161* 0x18: Dock DAC 4 Left1162* 0x1a: S/PDIF Left1163* 0x1c: Dock DAC 4 Right1164* 0x1e: S/PDIF Right1165* 0x02, 0x00: Hana S/PDIF Left1166* 0x02, 0x01: Hana S/PDIF Right1167* 0x03, 0x00: Hamoa DAC Left1168* 0x03, 0x01: Hamoa DAC Right1169* 0x04, 0x00-0x07: Hana ADAT1170* 0x05, 0x00: I2S0 Left to Alice21171* 0x05, 0x01: I2S0 Right to Alice21172* 0x06, 0x00: I2S0 Left to Alice21173* 0x06, 0x01: I2S0 Right to Alice21174* 0x07, 0x00: I2S0 Left to Alice21175* 0x07, 0x01: I2S0 Right to Alice21176*1177* Hana2 never released, but used Tina1178* Not needed.1179*1180* Hana3, rev2 1010,1212m,1616[m] using Tina1181* 0x00, 0x00-0x0f: 16 EMU32A channels to Tina1182* 0x01, 0x00-0x1f: 32 EDI channels to Micro Dock1183* 0x00: Dock DAC 1 Left1184* 0x04: Dock DAC 1 Right1185* 0x08: Dock DAC 2 Left1186* 0x0c: Dock DAC 2 Right1187* 0x10: Dock DAC 3 Left1188* 0x12: Dock S/PDIF Left1189* 0x14: Dock DAC 3 Right1190* 0x16: Dock S/PDIF Right1191* 0x18-0x1f: Dock ADAT 0-71192* 0x02, 0x00: Hana3 S/PDIF Left1193* 0x02, 0x01: Hana3 S/PDIF Right1194* 0x03, 0x00: Hamoa DAC Left1195* 0x03, 0x01: Hamoa DAC Right1196* 0x04, 0x00-0x07: Hana3 ADAT 0-71197* 0x05, 0x00-0x0f: 16 EMU32B channels to Tina1198* 0x06-0x07: Not used1199*1200* HanaLite, rev1 0404 using Alice21201* HanaLiteLite, rev2 0404 using Tina1202* 0x00, 0x00-0x0f: 16 EMU32 channels to Alice2/Tina1203* 0x01: Not used1204* 0x02, 0x00: S/PDIF Left1205* 0x02, 0x01: S/PDIF Right1206* 0x03, 0x00: DAC Left1207* 0x03, 0x01: DAC Right1208* 0x04-0x07: Not used1209*1210* Mana, Cardbus 1616 using Tina21211* 0x00, 0x00-0x0f: 16 EMU32A channels to Tina21212* 0x01, 0x00-0x1f: 32 EDI channels to Micro Dock1213* (same as rev2 1010)1214* 0x02: Not used1215* 0x03, 0x00: Mana DAC Left1216* 0x03, 0x01: Mana DAC Right1217* 0x04, 0x00-0x0f: 16 EMU32B channels to Tina21218* 0x05-0x07: Not used1219*/12201221/* 32-bit destinations of signal in the Hana FPGA. Destinations are either1222* physical outputs of Hana, or outputs going to Alice2/Tina for capture -1223* 16 x EMU_DST_ALICE2_EMU32_X (2x on rev2 boards). Which data is fed into1224* a channel depends on the mixer control setting for each destination - see1225* the register arrays in emumixer.c.1226*/1227#define EMU_DST_ALICE2_EMU32_0 0x000f /* 16 EMU32 channels to Alice2 +0 to +0xf */1228/* This channel is delayed by one sample. */1229#define EMU_DST_ALICE2_EMU32_1 0x0000 /* 16 EMU32 channels to Alice2 +0 to +0xf */1230#define EMU_DST_ALICE2_EMU32_2 0x0001 /* 16 EMU32 channels to Alice2 +0 to +0xf */1231#define EMU_DST_ALICE2_EMU32_3 0x0002 /* 16 EMU32 channels to Alice2 +0 to +0xf */1232#define EMU_DST_ALICE2_EMU32_4 0x0003 /* 16 EMU32 channels to Alice2 +0 to +0xf */1233#define EMU_DST_ALICE2_EMU32_5 0x0004 /* 16 EMU32 channels to Alice2 +0 to +0xf */1234#define EMU_DST_ALICE2_EMU32_6 0x0005 /* 16 EMU32 channels to Alice2 +0 to +0xf */1235#define EMU_DST_ALICE2_EMU32_7 0x0006 /* 16 EMU32 channels to Alice2 +0 to +0xf */1236#define EMU_DST_ALICE2_EMU32_8 0x0007 /* 16 EMU32 channels to Alice2 +0 to +0xf */1237#define EMU_DST_ALICE2_EMU32_9 0x0008 /* 16 EMU32 channels to Alice2 +0 to +0xf */1238#define EMU_DST_ALICE2_EMU32_A 0x0009 /* 16 EMU32 channels to Alice2 +0 to +0xf */1239#define EMU_DST_ALICE2_EMU32_B 0x000a /* 16 EMU32 channels to Alice2 +0 to +0xf */1240#define EMU_DST_ALICE2_EMU32_C 0x000b /* 16 EMU32 channels to Alice2 +0 to +0xf */1241#define EMU_DST_ALICE2_EMU32_D 0x000c /* 16 EMU32 channels to Alice2 +0 to +0xf */1242#define EMU_DST_ALICE2_EMU32_E 0x000d /* 16 EMU32 channels to Alice2 +0 to +0xf */1243#define EMU_DST_ALICE2_EMU32_F 0x000e /* 16 EMU32 channels to Alice2 +0 to +0xf */1244#define EMU_DST_DOCK_DAC1_LEFT1 0x0100 /* Audio Dock DAC1 Left, 1st or 48kHz only */1245#define EMU_DST_DOCK_DAC1_LEFT2 0x0101 /* Audio Dock DAC1 Left, 2nd or 96kHz */1246#define EMU_DST_DOCK_DAC1_LEFT3 0x0102 /* Audio Dock DAC1 Left, 3rd or 192kHz */1247#define EMU_DST_DOCK_DAC1_LEFT4 0x0103 /* Audio Dock DAC1 Left, 4th or 192kHz */1248#define EMU_DST_DOCK_DAC1_RIGHT1 0x0104 /* Audio Dock DAC1 Right, 1st or 48kHz only */1249#define EMU_DST_DOCK_DAC1_RIGHT2 0x0105 /* Audio Dock DAC1 Right, 2nd or 96kHz */1250#define EMU_DST_DOCK_DAC1_RIGHT3 0x0106 /* Audio Dock DAC1 Right, 3rd or 192kHz */1251#define EMU_DST_DOCK_DAC1_RIGHT4 0x0107 /* Audio Dock DAC1 Right, 4th or 192kHz */1252#define EMU_DST_DOCK_DAC2_LEFT1 0x0108 /* Audio Dock DAC2 Left, 1st or 48kHz only */1253#define EMU_DST_DOCK_DAC2_LEFT2 0x0109 /* Audio Dock DAC2 Left, 2nd or 96kHz */1254#define EMU_DST_DOCK_DAC2_LEFT3 0x010a /* Audio Dock DAC2 Left, 3rd or 192kHz */1255#define EMU_DST_DOCK_DAC2_LEFT4 0x010b /* Audio Dock DAC2 Left, 4th or 192kHz */1256#define EMU_DST_DOCK_DAC2_RIGHT1 0x010c /* Audio Dock DAC2 Right, 1st or 48kHz only */1257#define EMU_DST_DOCK_DAC2_RIGHT2 0x010d /* Audio Dock DAC2 Right, 2nd or 96kHz */1258#define EMU_DST_DOCK_DAC2_RIGHT3 0x010e /* Audio Dock DAC2 Right, 3rd or 192kHz */1259#define EMU_DST_DOCK_DAC2_RIGHT4 0x010f /* Audio Dock DAC2 Right, 4th or 192kHz */1260#define EMU_DST_DOCK_DAC3_LEFT1 0x0110 /* Audio Dock DAC1 Left, 1st or 48kHz only */1261#define EMU_DST_DOCK_DAC3_LEFT2 0x0111 /* Audio Dock DAC1 Left, 2nd or 96kHz */1262#define EMU_DST_DOCK_DAC3_LEFT3 0x0112 /* Audio Dock DAC1 Left, 3rd or 192kHz */1263#define EMU_DST_DOCK_DAC3_LEFT4 0x0113 /* Audio Dock DAC1 Left, 4th or 192kHz */1264#define EMU_DST_DOCK_PHONES_LEFT1 0x0112 /* Audio Dock PHONES Left, 1st or 48kHz only */1265#define EMU_DST_DOCK_PHONES_LEFT2 0x0113 /* Audio Dock PHONES Left, 2nd or 96kHz */1266#define EMU_DST_DOCK_DAC3_RIGHT1 0x0114 /* Audio Dock DAC1 Right, 1st or 48kHz only */1267#define EMU_DST_DOCK_DAC3_RIGHT2 0x0115 /* Audio Dock DAC1 Right, 2nd or 96kHz */1268#define EMU_DST_DOCK_DAC3_RIGHT3 0x0116 /* Audio Dock DAC1 Right, 3rd or 192kHz */1269#define EMU_DST_DOCK_DAC3_RIGHT4 0x0117 /* Audio Dock DAC1 Right, 4th or 192kHz */1270#define EMU_DST_DOCK_PHONES_RIGHT1 0x0116 /* Audio Dock PHONES Right, 1st or 48kHz only */1271#define EMU_DST_DOCK_PHONES_RIGHT2 0x0117 /* Audio Dock PHONES Right, 2nd or 96kHz */1272#define EMU_DST_DOCK_DAC4_LEFT1 0x0118 /* Audio Dock DAC2 Left, 1st or 48kHz only */1273#define EMU_DST_DOCK_DAC4_LEFT2 0x0119 /* Audio Dock DAC2 Left, 2nd or 96kHz */1274#define EMU_DST_DOCK_DAC4_LEFT3 0x011a /* Audio Dock DAC2 Left, 3rd or 192kHz */1275#define EMU_DST_DOCK_DAC4_LEFT4 0x011b /* Audio Dock DAC2 Left, 4th or 192kHz */1276#define EMU_DST_DOCK_SPDIF_LEFT1 0x011a /* Audio Dock SPDIF Left, 1st or 48kHz only */1277#define EMU_DST_DOCK_SPDIF_LEFT2 0x011b /* Audio Dock SPDIF Left, 2nd or 96kHz */1278#define EMU_DST_DOCK_DAC4_RIGHT1 0x011c /* Audio Dock DAC2 Right, 1st or 48kHz only */1279#define EMU_DST_DOCK_DAC4_RIGHT2 0x011d /* Audio Dock DAC2 Right, 2nd or 96kHz */1280#define EMU_DST_DOCK_DAC4_RIGHT3 0x011e /* Audio Dock DAC2 Right, 3rd or 192kHz */1281#define EMU_DST_DOCK_DAC4_RIGHT4 0x011f /* Audio Dock DAC2 Right, 4th or 192kHz */1282#define EMU_DST_DOCK_SPDIF_RIGHT1 0x011e /* Audio Dock SPDIF Right, 1st or 48kHz only */1283#define EMU_DST_DOCK_SPDIF_RIGHT2 0x011f /* Audio Dock SPDIF Right, 2nd or 96kHz */1284#define EMU_DST_HANA_SPDIF_LEFT1 0x0200 /* Hana SPDIF Left, 1st or 48kHz only */1285#define EMU_DST_HANA_SPDIF_LEFT2 0x0202 /* Hana SPDIF Left, 2nd or 96kHz */1286#define EMU_DST_HANA_SPDIF_LEFT3 0x0204 /* Hana SPDIF Left, 3rd or 192kHz */1287#define EMU_DST_HANA_SPDIF_LEFT4 0x0206 /* Hana SPDIF Left, 4th or 192kHz */1288#define EMU_DST_HANA_SPDIF_RIGHT1 0x0201 /* Hana SPDIF Right, 1st or 48kHz only */1289#define EMU_DST_HANA_SPDIF_RIGHT2 0x0203 /* Hana SPDIF Right, 2nd or 96kHz */1290#define EMU_DST_HANA_SPDIF_RIGHT3 0x0205 /* Hana SPDIF Right, 3rd or 192kHz */1291#define EMU_DST_HANA_SPDIF_RIGHT4 0x0207 /* Hana SPDIF Right, 4th or 192kHz */1292#define EMU_DST_HAMOA_DAC_LEFT1 0x0300 /* Hamoa DAC Left, 1st or 48kHz only */1293#define EMU_DST_HAMOA_DAC_LEFT2 0x0302 /* Hamoa DAC Left, 2nd or 96kHz */1294#define EMU_DST_HAMOA_DAC_LEFT3 0x0304 /* Hamoa DAC Left, 3rd or 192kHz */1295#define EMU_DST_HAMOA_DAC_LEFT4 0x0306 /* Hamoa DAC Left, 4th or 192kHz */1296#define EMU_DST_HAMOA_DAC_RIGHT1 0x0301 /* Hamoa DAC Right, 1st or 48kHz only */1297#define EMU_DST_HAMOA_DAC_RIGHT2 0x0303 /* Hamoa DAC Right, 2nd or 96kHz */1298#define EMU_DST_HAMOA_DAC_RIGHT3 0x0305 /* Hamoa DAC Right, 3rd or 192kHz */1299#define EMU_DST_HAMOA_DAC_RIGHT4 0x0307 /* Hamoa DAC Right, 4th or 192kHz */1300// In S/MUX mode, the samples of one channel are adjacent.1301#define EMU_DST_HANA_ADAT 0x0400 /* Hana ADAT 8 channel out +0 to +7 */1302#define EMU_DST_ALICE_I2S0_LEFT 0x0500 /* Alice2 I2S0 Left */1303#define EMU_DST_ALICE_I2S0_RIGHT 0x0501 /* Alice2 I2S0 Right */1304#define EMU_DST_ALICE_I2S1_LEFT 0x0600 /* Alice2 I2S1 Left */1305#define EMU_DST_ALICE_I2S1_RIGHT 0x0601 /* Alice2 I2S1 Right */1306#define EMU_DST_ALICE_I2S2_LEFT 0x0700 /* Alice2 I2S2 Left */1307#define EMU_DST_ALICE_I2S2_RIGHT 0x0701 /* Alice2 I2S2 Right */13081309/* Additional destinations for 1616(M)/Microdock */13101311#define EMU_DST_MDOCK_SPDIF_LEFT1 0x0112 /* Microdock S/PDIF OUT Left, 1st or 48kHz only */1312#define EMU_DST_MDOCK_SPDIF_LEFT2 0x0113 /* Microdock S/PDIF OUT Left, 2nd or 96kHz */1313#define EMU_DST_MDOCK_SPDIF_RIGHT1 0x0116 /* Microdock S/PDIF OUT Right, 1st or 48kHz only */1314#define EMU_DST_MDOCK_SPDIF_RIGHT2 0x0117 /* Microdock S/PDIF OUT Right, 2nd or 96kHz */1315#define EMU_DST_MDOCK_ADAT 0x0118 /* Microdock S/PDIF ADAT 8 channel out +8 to +f */13161317#define EMU_DST_MANA_DAC_LEFT 0x0300 /* Headphone jack on 1010 cardbus? 44.1/48kHz only? */1318#define EMU_DST_MANA_DAC_RIGHT 0x0301 /* Headphone jack on 1010 cardbus? 44.1/48kHz only? */13191320/************************************************************************************************/1321/* EMU1010 Audio Sources */1322/************************************************************************************************/1323/* Hana, original 1010,1212m,1820[m] using Alice21324* 0x00, 0x00-0x1f: Silence1325* 0x01, 0x00-0x1f: 32 EDI channels from Audio Dock1326* 0x00: Dock Mic A1327* 0x04: Dock Mic B1328* 0x08: Dock ADC 1 Left1329* 0x0c: Dock ADC 1 Right1330* 0x10: Dock ADC 2 Left1331* 0x14: Dock ADC 2 Right1332* 0x18: Dock ADC 3 Left1333* 0x1c: Dock ADC 3 Right1334* 0x02, 0x00: Hamoa ADC Left1335* 0x02, 0x01: Hamoa ADC Right1336* 0x03, 0x00-0x0f: 16 inputs from Alice2 Emu32A output1337* 0x03, 0x10-0x1f: 16 inputs from Alice2 Emu32B output1338* 0x04, 0x00-0x07: Hana ADAT1339* 0x05, 0x00: Hana S/PDIF Left1340* 0x05, 0x01: Hana S/PDIF Right1341* 0x06-0x07: Not used1342*1343* Hana2 never released, but used Tina1344* Not needed.1345*1346* Hana3, rev2 1010,1212m,1616[m] using Tina1347* 0x00, 0x00-0x1f: Silence1348* 0x01, 0x00-0x1f: 32 EDI channels from Micro Dock1349* 0x00: Dock Mic A1350* 0x04: Dock Mic B1351* 0x08: Dock ADC 1 Left1352* 0x0c: Dock ADC 1 Right1353* 0x10: Dock ADC 2 Left1354* 0x12: Dock S/PDIF Left1355* 0x14: Dock ADC 2 Right1356* 0x16: Dock S/PDIF Right1357* 0x18-0x1f: Dock ADAT 0-71358* 0x02, 0x00: Hamoa ADC Left1359* 0x02, 0x01: Hamoa ADC Right1360* 0x03, 0x00-0x0f: 16 inputs from Tina Emu32A output1361* 0x03, 0x10-0x1f: 16 inputs from Tina Emu32B output1362* 0x04, 0x00-0x07: Hana3 ADAT1363* 0x05, 0x00: Hana3 S/PDIF Left1364* 0x05, 0x01: Hana3 S/PDIF Right1365* 0x06-0x07: Not used1366*1367* HanaLite, rev1 0404 using Alice21368* HanaLiteLite, rev2 0404 using Tina1369* 0x00, 0x00-0x1f: Silence1370* 0x01: Not used1371* 0x02, 0x00: ADC Left1372* 0x02, 0x01: ADC Right1373* 0x03, 0x00-0x0f: 16 inputs from Alice2/Tina Emu32A output1374* 0x03, 0x10-0x1f: 16 inputs from Alice2/Tina Emu32B output1375* 0x04: Not used1376* 0x05, 0x00: S/PDIF Left1377* 0x05, 0x01: S/PDIF Right1378* 0x06-0x07: Not used1379*1380* Mana, Cardbus 1616 using Tina21381* 0x00, 0x00-0x1f: Silence1382* 0x01, 0x00-0x1f: 32 EDI channels from Micro Dock1383* (same as rev2 1010)1384* 0x02: Not used1385* 0x03, 0x00-0x0f: 16 inputs from Tina2 Emu32A output1386* 0x03, 0x10-0x1f: 16 inputs from Tina2 Emu32B output1387* 0x04-0x07: Not used1388*/13891390/* 32-bit sources of signal in the Hana FPGA. The sources are routed to1391* destinations using a mixer control for each destination - see emumixer.c.1392* Sources are either physical inputs of Hana, or inputs from Alice2/Tina -1393* 16 x EMU_SRC_ALICE_EMU32A + 16 x EMU_SRC_ALICE_EMU32B.1394*/1395#define EMU_SRC_SILENCE 0x0000 /* Silence */1396#define EMU_SRC_DOCK_MIC_A1 0x0100 /* Audio Dock Mic A, 1st or 48kHz only */1397#define EMU_SRC_DOCK_MIC_A2 0x0101 /* Audio Dock Mic A, 2nd or 96kHz */1398#define EMU_SRC_DOCK_MIC_A3 0x0102 /* Audio Dock Mic A, 3rd or 192kHz */1399#define EMU_SRC_DOCK_MIC_A4 0x0103 /* Audio Dock Mic A, 4th or 192kHz */1400#define EMU_SRC_DOCK_MIC_B1 0x0104 /* Audio Dock Mic B, 1st or 48kHz only */1401#define EMU_SRC_DOCK_MIC_B2 0x0105 /* Audio Dock Mic B, 2nd or 96kHz */1402#define EMU_SRC_DOCK_MIC_B3 0x0106 /* Audio Dock Mic B, 3rd or 192kHz */1403#define EMU_SRC_DOCK_MIC_B4 0x0107 /* Audio Dock Mic B, 4th or 192kHz */1404#define EMU_SRC_DOCK_ADC1_LEFT1 0x0108 /* Audio Dock ADC1 Left, 1st or 48kHz only */1405#define EMU_SRC_DOCK_ADC1_LEFT2 0x0109 /* Audio Dock ADC1 Left, 2nd or 96kHz */1406#define EMU_SRC_DOCK_ADC1_LEFT3 0x010a /* Audio Dock ADC1 Left, 3rd or 192kHz */1407#define EMU_SRC_DOCK_ADC1_LEFT4 0x010b /* Audio Dock ADC1 Left, 4th or 192kHz */1408#define EMU_SRC_DOCK_ADC1_RIGHT1 0x010c /* Audio Dock ADC1 Right, 1st or 48kHz only */1409#define EMU_SRC_DOCK_ADC1_RIGHT2 0x010d /* Audio Dock ADC1 Right, 2nd or 96kHz */1410#define EMU_SRC_DOCK_ADC1_RIGHT3 0x010e /* Audio Dock ADC1 Right, 3rd or 192kHz */1411#define EMU_SRC_DOCK_ADC1_RIGHT4 0x010f /* Audio Dock ADC1 Right, 4th or 192kHz */1412#define EMU_SRC_DOCK_ADC2_LEFT1 0x0110 /* Audio Dock ADC2 Left, 1st or 48kHz only */1413#define EMU_SRC_DOCK_ADC2_LEFT2 0x0111 /* Audio Dock ADC2 Left, 2nd or 96kHz */1414#define EMU_SRC_DOCK_ADC2_LEFT3 0x0112 /* Audio Dock ADC2 Left, 3rd or 192kHz */1415#define EMU_SRC_DOCK_ADC2_LEFT4 0x0113 /* Audio Dock ADC2 Left, 4th or 192kHz */1416#define EMU_SRC_DOCK_ADC2_RIGHT1 0x0114 /* Audio Dock ADC2 Right, 1st or 48kHz only */1417#define EMU_SRC_DOCK_ADC2_RIGHT2 0x0115 /* Audio Dock ADC2 Right, 2nd or 96kHz */1418#define EMU_SRC_DOCK_ADC2_RIGHT3 0x0116 /* Audio Dock ADC2 Right, 3rd or 192kHz */1419#define EMU_SRC_DOCK_ADC2_RIGHT4 0x0117 /* Audio Dock ADC2 Right, 4th or 192kHz */1420#define EMU_SRC_DOCK_ADC3_LEFT1 0x0118 /* Audio Dock ADC3 Left, 1st or 48kHz only */1421#define EMU_SRC_DOCK_ADC3_LEFT2 0x0119 /* Audio Dock ADC3 Left, 2nd or 96kHz */1422#define EMU_SRC_DOCK_ADC3_LEFT3 0x011a /* Audio Dock ADC3 Left, 3rd or 192kHz */1423#define EMU_SRC_DOCK_ADC3_LEFT4 0x011b /* Audio Dock ADC3 Left, 4th or 192kHz */1424#define EMU_SRC_DOCK_ADC3_RIGHT1 0x011c /* Audio Dock ADC3 Right, 1st or 48kHz only */1425#define EMU_SRC_DOCK_ADC3_RIGHT2 0x011d /* Audio Dock ADC3 Right, 2nd or 96kHz */1426#define EMU_SRC_DOCK_ADC3_RIGHT3 0x011e /* Audio Dock ADC3 Right, 3rd or 192kHz */1427#define EMU_SRC_DOCK_ADC3_RIGHT4 0x011f /* Audio Dock ADC3 Right, 4th or 192kHz */1428#define EMU_SRC_HAMOA_ADC_LEFT1 0x0200 /* Hamoa ADC Left, 1st or 48kHz only */1429#define EMU_SRC_HAMOA_ADC_LEFT2 0x0202 /* Hamoa ADC Left, 2nd or 96kHz */1430#define EMU_SRC_HAMOA_ADC_LEFT3 0x0204 /* Hamoa ADC Left, 3rd or 192kHz */1431#define EMU_SRC_HAMOA_ADC_LEFT4 0x0206 /* Hamoa ADC Left, 4th or 192kHz */1432#define EMU_SRC_HAMOA_ADC_RIGHT1 0x0201 /* Hamoa ADC Right, 1st or 48kHz only */1433#define EMU_SRC_HAMOA_ADC_RIGHT2 0x0203 /* Hamoa ADC Right, 2nd or 96kHz */1434#define EMU_SRC_HAMOA_ADC_RIGHT3 0x0205 /* Hamoa ADC Right, 3rd or 192kHz */1435#define EMU_SRC_HAMOA_ADC_RIGHT4 0x0207 /* Hamoa ADC Right, 4th or 192kHz */1436#define EMU_SRC_ALICE_EMU32A 0x0300 /* Alice2 EMU32a 16 outputs. +0 to +0xf */1437#define EMU_SRC_ALICE_EMU32B 0x0310 /* Alice2 EMU32b 16 outputs. +0 to +0xf */1438// In S/MUX mode, the samples of one channel are adjacent.1439#define EMU_SRC_HANA_ADAT 0x0400 /* Hana ADAT 8 channel in +0 to +7 */1440#define EMU_SRC_HANA_SPDIF_LEFT1 0x0500 /* Hana SPDIF Left, 1st or 48kHz only */1441#define EMU_SRC_HANA_SPDIF_LEFT2 0x0502 /* Hana SPDIF Left, 2nd or 96kHz */1442#define EMU_SRC_HANA_SPDIF_LEFT3 0x0504 /* Hana SPDIF Left, 3rd or 192kHz */1443#define EMU_SRC_HANA_SPDIF_LEFT4 0x0506 /* Hana SPDIF Left, 4th or 192kHz */1444#define EMU_SRC_HANA_SPDIF_RIGHT1 0x0501 /* Hana SPDIF Right, 1st or 48kHz only */1445#define EMU_SRC_HANA_SPDIF_RIGHT2 0x0503 /* Hana SPDIF Right, 2nd or 96kHz */1446#define EMU_SRC_HANA_SPDIF_RIGHT3 0x0505 /* Hana SPDIF Right, 3rd or 192kHz */1447#define EMU_SRC_HANA_SPDIF_RIGHT4 0x0507 /* Hana SPDIF Right, 4th or 192kHz */14481449/* Additional inputs for 1616(M)/Microdock */14501451#define EMU_SRC_MDOCK_SPDIF_LEFT1 0x0112 /* Microdock S/PDIF Left, 1st or 48kHz only */1452#define EMU_SRC_MDOCK_SPDIF_LEFT2 0x0113 /* Microdock S/PDIF Left, 2nd or 96kHz */1453#define EMU_SRC_MDOCK_SPDIF_RIGHT1 0x0116 /* Microdock S/PDIF Right, 1st or 48kHz only */1454#define EMU_SRC_MDOCK_SPDIF_RIGHT2 0x0117 /* Microdock S/PDIF Right, 2nd or 96kHz */1455#define EMU_SRC_MDOCK_ADAT 0x0118 /* Microdock ADAT 8 channel in +8 to +f */14561457/* 0x600 and 0x700 no used */145814591460/* ------------------- CONSTANTS -------------------- */14611462extern const char * const snd_emu10k1_fxbus[32];1463extern const char * const snd_emu10k1_sblive_ins[16];1464extern const char * const snd_emu10k1_audigy_ins[16];1465extern const char * const snd_emu10k1_sblive_outs[32];1466extern const char * const snd_emu10k1_audigy_outs[32];1467extern const s8 snd_emu10k1_sblive51_fxbus2_map[16];14681469/* ------------------- STRUCTURES -------------------- */14701471enum {1472EMU10K1_UNUSED, // This must be zero1473EMU10K1_EFX,1474EMU10K1_EFX_IRQ,1475EMU10K1_PCM,1476EMU10K1_PCM_IRQ,1477EMU10K1_SYNTH,1478EMU10K1_NUM_TYPES1479};14801481struct snd_emu10k1;14821483struct snd_emu10k1_voice {1484unsigned char number;1485unsigned char use;1486unsigned char dirty;1487unsigned char last;1488void (*interrupt)(struct snd_emu10k1 *emu, struct snd_emu10k1_voice *pvoice);14891490struct snd_emu10k1_pcm *epcm;1491};14921493enum {1494PLAYBACK_EMUVOICE,1495PLAYBACK_EFX,1496CAPTURE_AC97ADC,1497CAPTURE_AC97MIC,1498CAPTURE_EFX1499};15001501struct snd_emu10k1_pcm {1502struct snd_emu10k1 *emu;1503int type;1504struct snd_pcm_substream *substream;1505struct snd_emu10k1_voice *voices[NUM_EFX_PLAYBACK];1506struct snd_emu10k1_voice *extra;1507unsigned short running;1508unsigned short first_ptr;1509snd_pcm_uframes_t resume_pos;1510struct snd_util_memblk *memblk;1511unsigned int pitch_target;1512unsigned int start_addr;1513unsigned int ccca_start_addr;1514unsigned int capture_ipr; /* interrupt acknowledge mask */1515unsigned int capture_inte; /* interrupt enable mask */1516unsigned int capture_ba_reg; /* buffer address register */1517unsigned int capture_bs_reg; /* buffer size register */1518unsigned int capture_idx_reg; /* buffer index register */1519unsigned int capture_cr_val; /* control value */1520unsigned int capture_cr_val2; /* control value2 (for audigy) */1521unsigned int capture_bs_val; /* buffer size value */1522unsigned int capture_bufsize; /* buffer size in bytes */1523};15241525struct snd_emu10k1_pcm_mixer {1526/* mono, left, right x 8 sends (4 on emu10k1) */1527unsigned char send_routing[3][8];1528unsigned char send_volume[3][8];1529// 0x8000 is neutral. The mixer code rescales it to 0xffff to maintain1530// backwards compatibility with user space.1531unsigned short attn[3];1532struct snd_emu10k1_pcm *epcm;1533};15341535#define snd_emu10k1_compose_send_routing(route) \1536((route[0] | (route[1] << 4) | (route[2] << 8) | (route[3] << 12)) << 16)15371538#define snd_emu10k1_compose_audigy_fxrt1(route) \1539((unsigned int)route[0] | ((unsigned int)route[1] << 8) | ((unsigned int)route[2] << 16) | ((unsigned int)route[3] << 24) | 0x80808080)15401541#define snd_emu10k1_compose_audigy_fxrt2(route) \1542((unsigned int)route[4] | ((unsigned int)route[5] << 8) | ((unsigned int)route[6] << 16) | ((unsigned int)route[7] << 24) | 0x80808080)15431544#define snd_emu10k1_compose_audigy_sendamounts(vol) \1545(((unsigned int)vol[4] << 24) | ((unsigned int)vol[5] << 16) | ((unsigned int)vol[6] << 8) | (unsigned int)vol[7])15461547struct snd_emu10k1_memblk {1548struct snd_util_memblk mem;1549/* private part */1550int first_page, last_page, pages, mapped_page;1551unsigned int map_locked;1552struct list_head mapped_link;1553struct list_head mapped_order_link;1554};15551556#define snd_emu10k1_memblk_offset(blk) (((blk)->mapped_page << PAGE_SHIFT) | ((blk)->mem.offset & (PAGE_SIZE - 1)))15571558#define EMU10K1_MAX_TRAM_BLOCKS_PER_CODE 1615591560struct snd_emu10k1_fx8010_ctl {1561struct list_head list; /* list link container */1562unsigned int vcount;1563unsigned int count; /* count of GPR (1..16) */1564unsigned short gpr[32]; /* GPR number(s) */1565int value[32];1566int min; /* minimum range */1567int max; /* maximum range */1568unsigned int translation; /* translation type (EMU10K1_GPR_TRANSLATION*) */1569struct snd_kcontrol *kcontrol;1570};15711572typedef void (snd_fx8010_irq_handler_t)(struct snd_emu10k1 *emu, void *private_data);15731574struct snd_emu10k1_fx8010_irq {1575struct snd_emu10k1_fx8010_irq *next;1576snd_fx8010_irq_handler_t *handler;1577unsigned short gpr_running;1578void *private_data;1579};15801581struct snd_emu10k1_fx8010_pcm {1582unsigned int valid: 1,1583opened: 1,1584active: 1;1585unsigned int channels; /* 16-bit channels count */1586unsigned int tram_start; /* initial ring buffer position in TRAM (in samples) */1587unsigned int buffer_size; /* count of buffered samples */1588unsigned short gpr_size; /* GPR containing size of ring buffer in samples (host) */1589unsigned short gpr_ptr; /* GPR containing current pointer in the ring buffer (host = reset, FX8010) */1590unsigned short gpr_count; /* GPR containing count of samples between two interrupts (host) */1591unsigned short gpr_tmpcount; /* GPR containing current count of samples to interrupt (host = set, FX8010) */1592unsigned short gpr_trigger; /* GPR containing trigger (activate) information (host) */1593unsigned short gpr_running; /* GPR containing info if PCM is running (FX8010) */1594unsigned char etram[32]; /* external TRAM address & data */1595struct snd_pcm_indirect pcm_rec;1596unsigned int tram_pos;1597unsigned int tram_shift;1598struct snd_emu10k1_fx8010_irq irq;1599};16001601struct snd_emu10k1_fx8010 {1602unsigned short extin_mask; /* used external inputs (bitmask); not used for Audigy */1603unsigned short extout_mask; /* used external outputs (bitmask); not used for Audigy */1604unsigned int itram_size; /* internal TRAM size in samples */1605struct snd_dma_buffer etram_pages; /* external TRAM pages and size */1606unsigned int dbg; /* FX debugger register */1607unsigned char name[128];1608int gpr_size; /* size of allocated GPR controls */1609int gpr_count; /* count of used kcontrols */1610struct list_head gpr_ctl; /* GPR controls */1611struct mutex lock;1612struct snd_emu10k1_fx8010_pcm pcm[8];1613spinlock_t irq_lock;1614struct snd_emu10k1_fx8010_irq *irq_handlers;1615};16161617struct snd_emu10k1_midi {1618struct snd_emu10k1 *emu;1619struct snd_rawmidi *rmidi;1620struct snd_rawmidi_substream *substream_input;1621struct snd_rawmidi_substream *substream_output;1622unsigned int midi_mode;1623spinlock_t input_lock;1624spinlock_t output_lock;1625spinlock_t open_lock;1626int tx_enable, rx_enable;1627int port;1628int ipr_tx, ipr_rx;1629void (*interrupt)(struct snd_emu10k1 *emu, unsigned int status);1630};16311632enum {1633EMU_MODEL_SB,1634EMU_MODEL_EMU1010,1635EMU_MODEL_EMU1010B,1636EMU_MODEL_EMU1616,1637EMU_MODEL_EMU0404,1638};16391640// Chip-o-logy:1641// - All SB Live! cards use EMU10K1 chips1642// - All SB Audigy cards use CA* chips, termed "emu10k2" by the driver1643// - Original Audigy uses CA0100 "Alice"1644// - Audigy 2 uses CA0102/CA10200 "Alice2"1645// - Has an interface for CA0151 (P16V) "Alice3"1646// - Audigy 2 Value uses CA0108/CA10300 "Tina"1647// - Approximately a CA0102 with an on-chip CA0151 (P17V)1648// - Audigy 2 ZS NB uses CA0109 "Tina2"1649// - Cardbus version of CA01081650struct snd_emu_chip_details {1651u32 vendor;1652u32 device;1653u32 subsystem;1654unsigned char revision;1655unsigned char emu_model; /* EMU model type */1656unsigned int emu10k1_chip:1; /* Original SB Live. Not SB Live 24bit. */1657/* Redundant with emu10k2_chip being unset. */1658unsigned int emu10k2_chip:1; /* Audigy 1 or Audigy 2. */1659unsigned int ca0102_chip:1; /* Audigy 1 or Audigy 2. Not SB Audigy 2 Value. */1660/* Redundant with ca0108_chip being unset. */1661unsigned int ca0108_chip:1; /* Audigy 2 Value */1662unsigned int ca_cardbus_chip:1; /* Audigy 2 ZS Notebook */1663unsigned int ca0151_chip:1; /* P16V */1664unsigned int spk20:1; /* Stereo only */1665unsigned int spk71:1; /* Has 7.1 speakers */1666unsigned int no_adat:1; /* Has no ADAT, only SPDIF */1667unsigned int sblive51:1; /* SBLive! 5.1 - extout 0x11 -> center, 0x12 -> lfe */1668unsigned int spdif_bug:1; /* Has Spdif phasing bug */1669unsigned int ac97_chip:2; /* Has an AC97 chip: 1 = mandatory, 2 = optional */1670unsigned int ecard:1; /* APS EEPROM */1671unsigned int spi_dac:1; /* SPI interface for DAC; requires ca0108_chip */1672unsigned int i2c_adc:1; /* I2C interface for ADC; requires ca0108_chip */1673unsigned int adc_1361t:1; /* Use Philips 1361T ADC */1674unsigned int invert_shared_spdif:1; /* analog/digital switch inverted */1675const char *driver;1676const char *name;1677const char *id; /* for backward compatibility - can be NULL if not needed */1678};16791680#define NUM_OUTPUT_DESTS 281681#define NUM_INPUT_DESTS 2216821683struct snd_emu1010 {1684unsigned char output_source[NUM_OUTPUT_DESTS];1685unsigned char input_source[NUM_INPUT_DESTS];1686unsigned int adc_pads; /* bit mask */1687unsigned int dac_pads; /* bit mask */1688unsigned int wclock; /* Cached register value */1689unsigned int word_clock; /* Cached effective value */1690unsigned int clock_source;1691unsigned int clock_fallback;1692unsigned int optical_in; /* 0:SPDIF, 1:ADAT */1693unsigned int optical_out; /* 0:SPDIF, 1:ADAT */1694struct work_struct work;1695struct mutex lock;1696};16971698struct snd_emu10k1 {1699int irq;17001701unsigned long port; /* I/O port number */1702unsigned int tos_link: 1, /* tos link detected */1703rear_ac97: 1, /* rear channels are on AC'97 */1704enable_ir: 1;1705unsigned int support_tlv :1;1706/* Contains profile of card capabilities */1707const struct snd_emu_chip_details *card_capabilities;1708unsigned int audigy; /* is Audigy? */1709unsigned int revision; /* chip revision */1710unsigned int serial; /* serial number */1711unsigned short model; /* subsystem id */1712unsigned int ecard_ctrl; /* ecard control bits */1713unsigned int address_mode; /* address mode */1714unsigned long dma_mask; /* PCI DMA mask */1715bool iommu_workaround; /* IOMMU workaround needed */1716int max_cache_pages; /* max memory size / PAGE_SIZE */1717struct snd_dma_buffer silent_page; /* silent page */1718struct snd_dma_buffer ptb_pages; /* page table pages */1719struct snd_dma_device p16v_dma_dev;1720struct snd_dma_buffer *p16v_buffer;17211722struct snd_util_memhdr *memhdr; /* page allocation list */17231724struct list_head mapped_link_head;1725struct list_head mapped_order_link_head;1726void **page_ptr_table;1727unsigned long *page_addr_table;1728spinlock_t memblk_lock;17291730unsigned int spdif_bits[3]; /* s/pdif out setup */1731unsigned int i2c_capture_source;1732u8 i2c_capture_volume[4][2];17331734struct snd_emu10k1_fx8010 fx8010; /* FX8010 info */1735int gpr_base;17361737struct snd_ac97 *ac97;17381739struct pci_dev *pci;1740struct snd_card *card;1741struct snd_pcm *pcm;1742struct snd_pcm *pcm_mic;1743struct snd_pcm *pcm_efx;1744struct snd_pcm *pcm_multi;1745struct snd_pcm *pcm_p16v;17461747spinlock_t synth_lock;1748void *synth;1749int (*get_synth_voice)(struct snd_emu10k1 *emu);17501751spinlock_t reg_lock; // high-level driver lock1752spinlock_t emu_lock; // low-level i/o lock1753spinlock_t voice_lock; // voice allocator lock1754spinlock_t spi_lock; /* serialises access to spi port */1755spinlock_t i2c_lock; /* serialises access to i2c port */17561757struct snd_emu10k1_voice voices[NUM_G];1758int p16v_device_offset;1759u32 p16v_capture_source;1760u32 p16v_capture_channel;1761struct snd_emu1010 emu1010;1762struct snd_emu10k1_pcm_mixer pcm_mixer[32];1763struct snd_emu10k1_pcm_mixer efx_pcm_mixer[NUM_EFX_PLAYBACK];1764struct snd_kcontrol *ctl_send_routing;1765struct snd_kcontrol *ctl_send_volume;1766struct snd_kcontrol *ctl_attn;1767struct snd_kcontrol *ctl_efx_send_routing;1768struct snd_kcontrol *ctl_efx_send_volume;1769struct snd_kcontrol *ctl_efx_attn;1770struct snd_kcontrol *ctl_clock_source;17711772void (*hwvol_interrupt)(struct snd_emu10k1 *emu, unsigned int status);1773void (*capture_interrupt)(struct snd_emu10k1 *emu, unsigned int status);1774void (*capture_mic_interrupt)(struct snd_emu10k1 *emu, unsigned int status);1775void (*capture_efx_interrupt)(struct snd_emu10k1 *emu, unsigned int status);1776void (*spdif_interrupt)(struct snd_emu10k1 *emu, unsigned int status);1777void (*dsp_interrupt)(struct snd_emu10k1 *emu);1778void (*gpio_interrupt)(struct snd_emu10k1 *emu);1779void (*p16v_interrupt)(struct snd_emu10k1 *emu);17801781struct snd_pcm_substream *pcm_capture_substream;1782struct snd_pcm_substream *pcm_capture_mic_substream;1783struct snd_pcm_substream *pcm_capture_efx_substream;17841785struct snd_timer *timer;17861787struct snd_emu10k1_midi midi;1788struct snd_emu10k1_midi midi2; /* for audigy */17891790unsigned int efx_voices_mask[2];1791unsigned int next_free_voice;17921793const struct firmware *firmware;1794const struct firmware *dock_fw;17951796#ifdef CONFIG_PM_SLEEP1797unsigned int *saved_ptr;1798unsigned int *saved_gpr;1799unsigned int *tram_val_saved;1800unsigned int *tram_addr_saved;1801unsigned int *saved_icode;1802unsigned int *p16v_saved;1803unsigned int saved_a_iocfg, saved_hcfg;1804bool suspend;1805#endif18061807};18081809int snd_emu10k1_create(struct snd_card *card,1810struct pci_dev *pci,1811unsigned short extin_mask,1812unsigned short extout_mask,1813long max_cache_bytes,1814int enable_ir,1815uint subsystem);18161817int snd_emu10k1_pcm(struct snd_emu10k1 *emu, int device);1818int snd_emu10k1_pcm_mic(struct snd_emu10k1 *emu, int device);1819int snd_emu10k1_pcm_efx(struct snd_emu10k1 *emu, int device);1820int snd_p16v_pcm(struct snd_emu10k1 *emu, int device);1821int snd_p16v_mixer(struct snd_emu10k1 * emu);1822int snd_emu10k1_pcm_multi(struct snd_emu10k1 *emu, int device);1823int snd_emu10k1_fx8010_pcm(struct snd_emu10k1 *emu, int device);1824int snd_emu10k1_mixer(struct snd_emu10k1 * emu, int pcm_device, int multi_device);1825int snd_emu10k1_timer(struct snd_emu10k1 * emu, int device);1826int snd_emu10k1_fx8010_new(struct snd_emu10k1 *emu, int device);18271828irqreturn_t snd_emu10k1_interrupt(int irq, void *dev_id);18291830void snd_emu10k1_voice_init(struct snd_emu10k1 * emu, int voice);1831int snd_emu10k1_init_efx(struct snd_emu10k1 *emu);1832void snd_emu10k1_free_efx(struct snd_emu10k1 *emu);1833int snd_emu10k1_fx8010_tram_setup(struct snd_emu10k1 *emu, u32 size);1834int snd_emu10k1_done(struct snd_emu10k1 * emu);18351836/* I/O functions */1837unsigned int snd_emu10k1_ptr_read(struct snd_emu10k1 * emu, unsigned int reg, unsigned int chn);1838void snd_emu10k1_ptr_write(struct snd_emu10k1 *emu, unsigned int reg, unsigned int chn, unsigned int data);1839void snd_emu10k1_ptr_write_multiple(struct snd_emu10k1 *emu, unsigned int chn, ...);1840unsigned int snd_emu10k1_ptr20_read(struct snd_emu10k1 * emu, unsigned int reg, unsigned int chn);1841void snd_emu10k1_ptr20_write(struct snd_emu10k1 *emu, unsigned int reg, unsigned int chn, unsigned int data);1842int snd_emu10k1_spi_write(struct snd_emu10k1 * emu, unsigned int data);1843int snd_emu10k1_i2c_write(struct snd_emu10k1 *emu, u32 reg, u32 value);1844static inline void snd_emu1010_fpga_lock(struct snd_emu10k1 *emu) { mutex_lock(&emu->emu1010.lock); };1845static inline void snd_emu1010_fpga_unlock(struct snd_emu10k1 *emu) { mutex_unlock(&emu->emu1010.lock); };1846void snd_emu1010_fpga_write_lock(struct snd_emu10k1 *emu, u32 reg, u32 value);1847void snd_emu1010_fpga_write(struct snd_emu10k1 *emu, u32 reg, u32 value);1848void snd_emu1010_fpga_read(struct snd_emu10k1 *emu, u32 reg, u32 *value);1849void snd_emu1010_fpga_link_dst_src_write(struct snd_emu10k1 *emu, u32 dst, u32 src);1850u32 snd_emu1010_fpga_link_dst_src_read(struct snd_emu10k1 *emu, u32 dst);1851int snd_emu1010_get_raw_rate(struct snd_emu10k1 *emu, u8 src);1852void snd_emu1010_update_clock(struct snd_emu10k1 *emu);1853void snd_emu1010_load_firmware_entry(struct snd_emu10k1 *emu, int dock, const struct firmware *fw_entry);1854unsigned int snd_emu10k1_efx_read(struct snd_emu10k1 *emu, unsigned int pc);1855void snd_emu10k1_intr_enable(struct snd_emu10k1 *emu, unsigned int intrenb);1856void snd_emu10k1_intr_disable(struct snd_emu10k1 *emu, unsigned int intrenb);1857void snd_emu10k1_voice_intr_enable(struct snd_emu10k1 *emu, unsigned int voicenum);1858void snd_emu10k1_voice_intr_disable(struct snd_emu10k1 *emu, unsigned int voicenum);1859void snd_emu10k1_voice_intr_ack(struct snd_emu10k1 *emu, unsigned int voicenum);1860void snd_emu10k1_voice_half_loop_intr_enable(struct snd_emu10k1 *emu, unsigned int voicenum);1861void snd_emu10k1_voice_half_loop_intr_disable(struct snd_emu10k1 *emu, unsigned int voicenum);1862void snd_emu10k1_voice_half_loop_intr_ack(struct snd_emu10k1 *emu, unsigned int voicenum);1863#if 01864void snd_emu10k1_voice_set_loop_stop(struct snd_emu10k1 *emu, unsigned int voicenum);1865void snd_emu10k1_voice_clear_loop_stop(struct snd_emu10k1 *emu, unsigned int voicenum);1866#endif1867void snd_emu10k1_voice_set_loop_stop_multiple(struct snd_emu10k1 *emu, u64 voices);1868void snd_emu10k1_voice_clear_loop_stop_multiple(struct snd_emu10k1 *emu, u64 voices);1869int snd_emu10k1_voice_clear_loop_stop_multiple_atomic(struct snd_emu10k1 *emu, u64 voices);1870void snd_emu10k1_wait(struct snd_emu10k1 *emu, unsigned int wait);1871static inline unsigned int snd_emu10k1_wc(struct snd_emu10k1 *emu) { return (inl(emu->port + WC) >> 6) & 0xfffff; }1872unsigned short snd_emu10k1_ac97_read(struct snd_ac97 *ac97, unsigned short reg);1873void snd_emu10k1_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short data);18741875#ifdef CONFIG_PM_SLEEP1876void snd_emu10k1_suspend_regs(struct snd_emu10k1 *emu);1877void snd_emu10k1_resume_init(struct snd_emu10k1 *emu);1878void snd_emu10k1_resume_regs(struct snd_emu10k1 *emu);1879int snd_emu10k1_efx_alloc_pm_buffer(struct snd_emu10k1 *emu);1880void snd_emu10k1_efx_free_pm_buffer(struct snd_emu10k1 *emu);1881void snd_emu10k1_efx_suspend(struct snd_emu10k1 *emu);1882void snd_emu10k1_efx_resume(struct snd_emu10k1 *emu);1883int snd_p16v_alloc_pm_buffer(struct snd_emu10k1 *emu);1884void snd_p16v_free_pm_buffer(struct snd_emu10k1 *emu);1885void snd_p16v_suspend(struct snd_emu10k1 *emu);1886void snd_p16v_resume(struct snd_emu10k1 *emu);1887#endif18881889/* memory allocation */1890struct snd_util_memblk *snd_emu10k1_alloc_pages(struct snd_emu10k1 *emu, struct snd_pcm_substream *substream);1891int snd_emu10k1_free_pages(struct snd_emu10k1 *emu, struct snd_util_memblk *blk);1892int snd_emu10k1_alloc_pages_maybe_wider(struct snd_emu10k1 *emu, size_t size,1893struct snd_dma_buffer *dmab);1894struct snd_util_memblk *snd_emu10k1_synth_alloc(struct snd_emu10k1 *emu, unsigned int size);1895int snd_emu10k1_synth_free(struct snd_emu10k1 *emu, struct snd_util_memblk *blk);1896int snd_emu10k1_synth_memset(struct snd_emu10k1 *emu, struct snd_util_memblk *blk, int offset, int size, u8 value);1897int snd_emu10k1_synth_copy_from_user(struct snd_emu10k1 *emu, struct snd_util_memblk *blk, int offset, const char __user *data, int size, u32 xor);1898int snd_emu10k1_memblk_map(struct snd_emu10k1 *emu, struct snd_emu10k1_memblk *blk);18991900/* voice allocation */1901int snd_emu10k1_voice_alloc(struct snd_emu10k1 *emu, int type, int count, int channels,1902struct snd_emu10k1_pcm *epcm, struct snd_emu10k1_voice **rvoice);1903int snd_emu10k1_voice_free(struct snd_emu10k1 *emu, struct snd_emu10k1_voice *pvoice);19041905/* MIDI uart */1906int snd_emu10k1_midi(struct snd_emu10k1 * emu);1907int snd_emu10k1_audigy_midi(struct snd_emu10k1 * emu);19081909/* proc interface */1910int snd_emu10k1_proc_init(struct snd_emu10k1 * emu);19111912/* fx8010 irq handler */1913int snd_emu10k1_fx8010_register_irq_handler(struct snd_emu10k1 *emu,1914snd_fx8010_irq_handler_t *handler,1915unsigned char gpr_running,1916void *private_data,1917struct snd_emu10k1_fx8010_irq *irq);1918int snd_emu10k1_fx8010_unregister_irq_handler(struct snd_emu10k1 *emu,1919struct snd_emu10k1_fx8010_irq *irq);19201921#endif /* __SOUND_EMU10K1_H */192219231924