linux/sound/firewire/dice/dice-interface.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef SOUND_FIREWIRE_DICE_INTERFACE_H_INCLUDED
#define SOUND_FIREWIRE_DICE_INTERFACE_H_INCLUDED

/*
 * DICE device interface definitions
 */

/*
 * Generally, all registers can be read like memory, i.e., with quadlet read or
 * block read transactions with at least quadlet-aligned offset and length.
 * Writes are not allowed except where noted; quadlet-sized registers must be
 * written with a quadlet write transaction.
 *
 * All values are in big endian.  The DICE firmware runs on a little-endian CPU
 * and just byte-swaps _all_ quadlets on the bus, so values without endianness
 * (e.g. strings) get scrambled and must be byte-swapped again by the driver.
 */

/*
 * Streaming is handled by the "DICE driver" interface.  Its registers are
 * located in this private address space.
 */
#define DICE_PRIVATE_SPACE

/*
 * The registers are organized in several sections, which are organized
 * separately to allow them to be extended individually.  Whether a register is
 * supported can be detected by checking its offset against its section's size.
 *
 * The section offset values are relative to DICE_PRIVATE_SPACE; the offset/
 * size values are measured in quadlets.  Read-only.
 */
#define DICE_GLOBAL_OFFSET
#define DICE_GLOBAL_SIZE
#define DICE_TX_OFFSET
#define DICE_TX_SIZE
#define DICE_RX_OFFSET
#define DICE_RX_SIZE
#define DICE_EXT_SYNC_OFFSET
#define DICE_EXT_SYNC_SIZE
#define DICE_UNUSED2_OFFSET
#define DICE_UNUSED2_SIZE

/*
 * Global settings.
 */

/*
 * Stores the full 64-bit address (node ID and offset in the node's address
 * space) where the device will send notifications.  Must be changed with
 * a compare/swap transaction by the owner.  This register is automatically
 * cleared on a bus reset.
 */
#define GLOBAL_OWNER
#define OWNER_NO_OWNER
#define OWNER_NODE_SHIFT

/*
 * A bitmask with asynchronous events; read-only.  When any event(s) happen,
 * the bits of previous events are cleared, and the value of this register is
 * also written to the address stored in the owner register.
 */
#define GLOBAL_NOTIFICATION
/* Some registers in the Rx/Tx sections may have changed. */
#define NOTIFY_RX_CFG_CHG
#define NOTIFY_TX_CFG_CHG
/* Lock status of the current clock source may have changed. */
#define NOTIFY_LOCK_CHG
/* Write to the clock select register has been finished. */
#define NOTIFY_CLOCK_ACCEPTED
/* Lock status of some clock source has changed. */
#define NOTIFY_EXT_STATUS
/* Other bits may be used for device-specific events. */

/*
 * A name that can be customized for each device; read/write.  Padded with zero
 * bytes.  Quadlets are byte-swapped.  The encoding is whatever the host driver
 * happens to be using.
 */
#define GLOBAL_NICK_NAME
#define NICK_NAME_SIZE

/*
 * The current sample rate and clock source; read/write.  Whether a clock
 * source or sample rate is supported is device-specific; the internal clock
 * source is always available.  Low/mid/high = up to 48/96/192 kHz.  This
 * register can be changed even while streams are running.
 */
#define GLOBAL_CLOCK_SELECT
#define CLOCK_SOURCE_MASK
#define CLOCK_SOURCE_AES1
#define CLOCK_SOURCE_AES2
#define CLOCK_SOURCE_AES3
#define CLOCK_SOURCE_AES4
#define CLOCK_SOURCE_AES_ANY
#define CLOCK_SOURCE_ADAT
#define CLOCK_SOURCE_TDIF
#define CLOCK_SOURCE_WC
#define CLOCK_SOURCE_ARX1
#define CLOCK_SOURCE_ARX2
#define CLOCK_SOURCE_ARX3
#define CLOCK_SOURCE_ARX4
#define CLOCK_SOURCE_INTERNAL
#define CLOCK_RATE_MASK
#define CLOCK_RATE_32000
#define CLOCK_RATE_44100
#define CLOCK_RATE_48000
#define CLOCK_RATE_88200
#define CLOCK_RATE_96000
#define CLOCK_RATE_176400
#define CLOCK_RATE_192000
#define CLOCK_RATE_ANY_LOW
#define CLOCK_RATE_ANY_MID
#define CLOCK_RATE_ANY_HIGH
#define CLOCK_RATE_NONE
#define CLOCK_RATE_SHIFT

/*
 * Enable streaming; read/write.  Writing a non-zero value (re)starts all
 * streams that have a valid iso channel set; zero stops all streams.  The
 * streams' parameters must be configured before starting.  This register is
 * automatically cleared on a bus reset.
 */
#define GLOBAL_ENABLE

/*
 * Status of the sample clock; read-only.
 */
#define GLOBAL_STATUS
/* The current clock source is locked. */
#define STATUS_SOURCE_LOCKED
/* The actual sample rate; CLOCK_RATE_32000-_192000 or _NONE. */
#define STATUS_NOMINAL_RATE_MASK

/*
 * Status of all clock sources; read-only.
 */
#define GLOBAL_EXTENDED_STATUS
/*
 * The _LOCKED bits always show the current status; any change generates
 * a notification.
 */
#define EXT_STATUS_AES1_LOCKED
#define EXT_STATUS_AES2_LOCKED
#define EXT_STATUS_AES3_LOCKED
#define EXT_STATUS_AES4_LOCKED
#define EXT_STATUS_ADAT_LOCKED
#define EXT_STATUS_TDIF_LOCKED
#define EXT_STATUS_ARX1_LOCKED
#define EXT_STATUS_ARX2_LOCKED
#define EXT_STATUS_ARX3_LOCKED
#define EXT_STATUS_ARX4_LOCKED
#define EXT_STATUS_WC_LOCKED
/*
 * The _SLIP bits do not generate notifications; a set bit indicates that an
 * error occurred since the last time when this register was read with
 * a quadlet read transaction.
 */
#define EXT_STATUS_AES1_SLIP
#define EXT_STATUS_AES2_SLIP
#define EXT_STATUS_AES3_SLIP
#define EXT_STATUS_AES4_SLIP
#define EXT_STATUS_ADAT_SLIP
#define EXT_STATUS_TDIF_SLIP
#define EXT_STATUS_ARX1_SLIP
#define EXT_STATUS_ARX2_SLIP
#define EXT_STATUS_ARX3_SLIP
#define EXT_STATUS_ARX4_SLIP
#define EXT_STATUS_WC_SLIP

/*
 * The measured rate of the current clock source, in Hz; read-only.
 */
#define GLOBAL_SAMPLE_RATE

/*
 * Some old firmware versions do not have the following global registers.
 * Windows drivers produced by TCAT lost backward compatibility in its
 * early release because they can handle firmware only which supports the
 * following registers.
 */

/*
 * The version of the DICE driver specification that this device conforms to;
 * read-only.
 */
#define GLOBAL_VERSION

/*
 * Supported sample rates and clock sources; read-only.
 */
#define GLOBAL_CLOCK_CAPABILITIES
#define CLOCK_CAP_RATE_32000
#define CLOCK_CAP_RATE_44100
#define CLOCK_CAP_RATE_48000
#define CLOCK_CAP_RATE_88200
#define CLOCK_CAP_RATE_96000
#define CLOCK_CAP_RATE_176400
#define CLOCK_CAP_RATE_192000
#define CLOCK_CAP_SOURCE_AES1
#define CLOCK_CAP_SOURCE_AES2
#define CLOCK_CAP_SOURCE_AES3
#define CLOCK_CAP_SOURCE_AES4
#define CLOCK_CAP_SOURCE_AES_ANY
#define CLOCK_CAP_SOURCE_ADAT
#define CLOCK_CAP_SOURCE_TDIF
#define CLOCK_CAP_SOURCE_WC
#define CLOCK_CAP_SOURCE_ARX1
#define CLOCK_CAP_SOURCE_ARX2
#define CLOCK_CAP_SOURCE_ARX3
#define CLOCK_CAP_SOURCE_ARX4
#define CLOCK_CAP_SOURCE_INTERNAL

/*
 * Names of all clock sources; read-only.  Quadlets are byte-swapped.  Names
 * are separated with one backslash, the list is terminated with two
 * backslashes.  Unused clock sources are included.
 */
#define GLOBAL_CLOCK_SOURCE_NAMES
#define CLOCK_SOURCE_NAMES_SIZE

/*
 * Capture stream settings.  This section includes the number/size registers
 * and the registers of all streams.
 */

/*
 * The number of supported capture streams; read-only.
 */
#define TX_NUMBER

/*
 * The size of one stream's register block, in quadlets; read-only.  The
 * registers of the first stream follow immediately afterwards; the registers
 * of the following streams are offset by this register's value.
 */
#define TX_SIZE

/*
 * The isochronous channel number on which packets are sent, or -1 if the
 * stream is not to be used; read/write.
 */
#define TX_ISOCHRONOUS

/*
 * The number of audio channels; read-only.  There will be one quadlet per
 * channel; the first channel is the first quadlet in a data block.
 */
#define TX_NUMBER_AUDIO

/*
 * The number of MIDI ports, 0-8; read-only.  If > 0, there will be one
 * additional quadlet in each data block, following the audio quadlets.
 */
#define TX_NUMBER_MIDI

/*
 * The speed at which the packets are sent, SCODE_100-_400; read/write.
 * SCODE_800 is only available in Dice III.
 */
#define TX_SPEED

/*
 * Names of all audio channels; read-only.  Quadlets are byte-swapped.  Names
 * are separated with one backslash, the list is terminated with two
 * backslashes.
 */
#define TX_NAMES
#define TX_NAMES_SIZE

/*
 * Audio IEC60958 capabilities; read-only.  Bitmask with one bit per audio
 * channel.
 */
#define TX_AC3_CAPABILITIES

/*
 * Send audio data with IEC60958 label; read/write.  Bitmask with one bit per
 * audio channel.  This register can be changed even while the stream is
 * running.
 */
#define TX_AC3_ENABLE

/*
 * Playback stream settings.  This section includes the number/size registers
 * and the registers of all streams.
 */

/*
 * The number of supported playback streams; read-only.
 */
#define RX_NUMBER

/*
 * The size of one stream's register block, in quadlets; read-only.  The
 * registers of the first stream follow immediately afterwards; the registers
 * of the following streams are offset by this register's value.
 */
#define RX_SIZE

/*
 * The isochronous channel number on which packets are received, or -1 if the
 * stream is not to be used; read/write.
 */
#define RX_ISOCHRONOUS

/*
 * Index of first quadlet to be interpreted; read/write.  If > 0, that many
 * quadlets at the beginning of each data block will be ignored, and all the
 * audio and MIDI quadlets will follow.
 */
#define RX_SEQ_START

/*
 * The number of audio channels; read-only.  There will be one quadlet per
 * channel.
 */
#define RX_NUMBER_AUDIO

/*
 * The number of MIDI ports, 0-8; read-only.  If > 0, there will be one
 * additional quadlet in each data block, following the audio quadlets.
 */
#define RX_NUMBER_MIDI

/*
 * Names of all audio channels; read-only.  Quadlets are byte-swapped.  Names
 * are separated with one backslash, the list is terminated with two
 * backslashes.
 */
#define RX_NAMES
#define RX_NAMES_SIZE

/*
 * Audio IEC60958 capabilities; read-only.  Bitmask with one bit per audio
 * channel.
 */
#define RX_AC3_CAPABILITIES

/*
 * Receive audio data with IEC60958 label; read/write.  Bitmask with one bit
 * per audio channel.  This register can be changed even while the stream is
 * running.
 */
#define RX_AC3_ENABLE

/*
 * Extended synchronization information.
 * This section can be read completely with a block read request.
 */

/*
 * Current clock source; read-only.
 */
#define EXT_SYNC_CLOCK_SOURCE

/*
 * Clock source is locked (boolean); read-only.
 */
#define EXT_SYNC_LOCKED

/*
 * Current sample rate (CLOCK_RATE_* >> CLOCK_RATE_SHIFT), _32000-_192000 or
 * _NONE; read-only.
 */
#define EXT_SYNC_RATE

/*
 * ADAT user data bits; read-only.
 */
#define EXT_SYNC_ADAT_USER_DATA
/* The data bits, if available. */
#define ADAT_USER_DATA_MASK
/* The data bits are not available. */
#define ADAT_USER_DATA_NO_DATA

#endif