Blame include/sound/asequencer.h

Packit 4a16fb
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
Packit 4a16fb
/*
Packit 4a16fb
 *  Main header file for the ALSA sequencer
Packit 4a16fb
 *  Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
Packit 4a16fb
 *            (c) 1998-1999 by Jaroslav Kysela <perex@perex.cz>
Packit 4a16fb
 *
Packit 4a16fb
 *
Packit 4a16fb
 *   This program is free software; you can redistribute it and/or modify
Packit 4a16fb
 *   it under the terms of the GNU General Public License as published by
Packit 4a16fb
 *   the Free Software Foundation; either version 2 of the License, or
Packit 4a16fb
 *   (at your option) any later version.
Packit 4a16fb
 *
Packit 4a16fb
 *   This program is distributed in the hope that it will be useful,
Packit 4a16fb
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 4a16fb
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 4a16fb
 *   GNU General Public License for more details.
Packit 4a16fb
 *
Packit 4a16fb
 *   You should have received a copy of the GNU General Public License
Packit 4a16fb
 *   along with this program; if not, write to the Free Software
Packit 4a16fb
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
Packit 4a16fb
 *
Packit 4a16fb
 */
Packit 4a16fb
#ifndef _UAPI__SOUND_ASEQUENCER_H
Packit 4a16fb
#define _UAPI__SOUND_ASEQUENCER_H
Packit 4a16fb
Packit 4a16fb
#include <sound/asound.h>
Packit 4a16fb
Packit 4a16fb
/** version of the sequencer */
Packit 4a16fb
#define SNDRV_SEQ_VERSION SNDRV_PROTOCOL_VERSION(1, 0, 2)
Packit 4a16fb
Packit 4a16fb
/**
Packit 4a16fb
 * definition of sequencer event types
Packit 4a16fb
 */
Packit 4a16fb
Packit 4a16fb
/** system messages
Packit 4a16fb
 * event data type = #snd_seq_result
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SYSTEM		0
Packit 4a16fb
#define SNDRV_SEQ_EVENT_RESULT		1
Packit 4a16fb
Packit 4a16fb
/** note messages (channel specific)
Packit 4a16fb
 * event data type = #snd_seq_ev_note
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_NOTE		5
Packit 4a16fb
#define SNDRV_SEQ_EVENT_NOTEON		6
Packit 4a16fb
#define SNDRV_SEQ_EVENT_NOTEOFF		7
Packit 4a16fb
#define SNDRV_SEQ_EVENT_KEYPRESS	8
Packit 4a16fb
	
Packit 4a16fb
/** control messages (channel specific)
Packit 4a16fb
 * event data type = #snd_seq_ev_ctrl
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CONTROLLER	10
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PGMCHANGE	11
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CHANPRESS	12
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PITCHBEND	13	/**< from -8192 to 8191 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CONTROL14	14	/**< 14 bit controller value */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_NONREGPARAM	15	/**< 14 bit NRPN address + 14 bit unsigned value */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_REGPARAM	16	/**< 14 bit RPN address + 14 bit unsigned value */
Packit 4a16fb
Packit 4a16fb
/** synchronisation messages
Packit 4a16fb
 * event data type = #snd_seq_ev_ctrl
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SONGPOS		20	/* Song Position Pointer with LSB and MSB values */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SONGSEL		21	/* Song Select with song ID number */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_QFRAME		22	/* midi time code quarter frame */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_TIMESIGN	23	/* SMF Time Signature event */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_KEYSIGN		24	/* SMF Key Signature event */
Packit 4a16fb
	        
Packit 4a16fb
/** timer messages
Packit 4a16fb
 * event data type = snd_seq_ev_queue_control
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_START		30	/* midi Real Time Start message */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CONTINUE	31	/* midi Real Time Continue message */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_STOP		32	/* midi Real Time Stop message */	
Packit 4a16fb
#define	SNDRV_SEQ_EVENT_SETPOS_TICK	33	/* set tick queue position */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SETPOS_TIME	34	/* set realtime queue position */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_TEMPO		35	/* (SMF) Tempo event */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CLOCK		36	/* midi Real Time Clock message */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_TICK		37	/* midi Real Time Tick message */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_QUEUE_SKEW	38	/* skew queue tempo */
Packit 4a16fb
Packit 4a16fb
/** others
Packit 4a16fb
 * event data type = none
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_TUNE_REQUEST	40	/* tune request */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_RESET		41	/* reset to power-on state */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SENSING		42	/* "active sensing" event */
Packit 4a16fb
Packit 4a16fb
/** echo back, kernel private messages
Packit 4a16fb
 * event data type = any type
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_ECHO		50	/* echo event */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_OSS		51	/* OSS raw event */
Packit 4a16fb
Packit 4a16fb
/** system status messages (broadcast for subscribers)
Packit 4a16fb
 * event data type = snd_seq_addr
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CLIENT_START	60	/* new client has connected */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CLIENT_EXIT	61	/* client has left the system */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_CLIENT_CHANGE	62	/* client status/info has changed */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PORT_START	63	/* new port was created */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PORT_EXIT	64	/* port was deleted from system */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PORT_CHANGE	65	/* port status/info has changed */
Packit 4a16fb
Packit 4a16fb
/** port connection changes
Packit 4a16fb
 * event data type = snd_seq_connect
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PORT_SUBSCRIBED	66	/* ports connected */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED 67	/* ports disconnected */
Packit 4a16fb
Packit 4a16fb
/* 70-89:  synthesizer events - obsoleted */
Packit 4a16fb
Packit 4a16fb
/** user-defined events with fixed length
Packit 4a16fb
 * event data type = any
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR0		90
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR1		91
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR2		92
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR3		93
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR4		94
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR5		95
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR6		96
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR7		97
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR8		98
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR9		99
Packit 4a16fb
Packit 4a16fb
/* 100-118: instrument layer - obsoleted */
Packit 4a16fb
/* 119-129: reserved */
Packit 4a16fb
Packit 4a16fb
/* 130-139: variable length events
Packit 4a16fb
 * event data type = snd_seq_ev_ext
Packit 4a16fb
 * (SNDRV_SEQ_EVENT_LENGTH_VARIABLE must be set)
Packit 4a16fb
 */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_SYSEX		130	/* system exclusive data (variable length) */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_BOUNCE		131	/* error event */
Packit 4a16fb
/* 132-134: reserved */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR_VAR0	135
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR_VAR1	136
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR_VAR2	137
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR_VAR3	138
Packit 4a16fb
#define SNDRV_SEQ_EVENT_USR_VAR4	139
Packit 4a16fb
Packit 4a16fb
/* 150-151: kernel events with quote - DO NOT use in user clients */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_KERNEL_ERROR	150
Packit 4a16fb
#define SNDRV_SEQ_EVENT_KERNEL_QUOTE	151	/* obsolete */
Packit 4a16fb
Packit 4a16fb
/* 152-191: reserved */
Packit 4a16fb
Packit 4a16fb
/* 192-254: hardware specific events */
Packit 4a16fb
Packit 4a16fb
/* 255: special event */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_NONE		255
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
typedef unsigned char snd_seq_event_type_t;
Packit 4a16fb
Packit 4a16fb
/** event address */
Packit 4a16fb
struct snd_seq_addr {
Packit 4a16fb
	unsigned char client;	/**< Client number:         0..255, 255 = broadcast to all clients */
Packit 4a16fb
	unsigned char port;	/**< Port within client:    0..255, 255 = broadcast to all ports */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
/** port connection */
Packit 4a16fb
struct snd_seq_connect {
Packit 4a16fb
	struct snd_seq_addr sender;
Packit 4a16fb
	struct snd_seq_addr dest;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_ADDRESS_UNKNOWN	253	/* unknown source */
Packit 4a16fb
#define SNDRV_SEQ_ADDRESS_SUBSCRIBERS	254	/* send event to all subscribed ports */
Packit 4a16fb
#define SNDRV_SEQ_ADDRESS_BROADCAST	255	/* send event to all queues/clients/ports/channels */
Packit 4a16fb
#define SNDRV_SEQ_QUEUE_DIRECT		253	/* direct dispatch */
Packit 4a16fb
Packit 4a16fb
	/* event mode flag - NOTE: only 8 bits available! */
Packit 4a16fb
#define SNDRV_SEQ_TIME_STAMP_TICK	(0<<0) /* timestamp in clock ticks */
Packit 4a16fb
#define SNDRV_SEQ_TIME_STAMP_REAL	(1<<0) /* timestamp in real time */
Packit 4a16fb
#define SNDRV_SEQ_TIME_STAMP_MASK	(1<<0)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_TIME_MODE_ABS		(0<<1)	/* absolute timestamp */
Packit 4a16fb
#define SNDRV_SEQ_TIME_MODE_REL		(1<<1)	/* relative to current time */
Packit 4a16fb
#define SNDRV_SEQ_TIME_MODE_MASK	(1<<1)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_EVENT_LENGTH_FIXED	(0<<2)	/* fixed event size */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_LENGTH_VARIABLE	(1<<2)	/* variable event size */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_LENGTH_VARUSR	(2<<2)	/* variable event size - user memory space */
Packit 4a16fb
#define SNDRV_SEQ_EVENT_LENGTH_MASK	(3<<2)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_PRIORITY_NORMAL	(0<<4)	/* normal priority */
Packit 4a16fb
#define SNDRV_SEQ_PRIORITY_HIGH		(1<<4)	/* event should be processed before others */
Packit 4a16fb
#define SNDRV_SEQ_PRIORITY_MASK		(1<<4)
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* note event */
Packit 4a16fb
struct snd_seq_ev_note {
Packit 4a16fb
	unsigned char channel;
Packit 4a16fb
	unsigned char note;
Packit 4a16fb
	unsigned char velocity;
Packit 4a16fb
	unsigned char off_velocity;	/* only for SNDRV_SEQ_EVENT_NOTE */
Packit 4a16fb
	unsigned int duration;		/* only for SNDRV_SEQ_EVENT_NOTE */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* controller event */
Packit 4a16fb
struct snd_seq_ev_ctrl {
Packit 4a16fb
	unsigned char channel;
Packit 4a16fb
	unsigned char unused1, unused2, unused3;	/* pad */
Packit 4a16fb
	unsigned int param;
Packit 4a16fb
	signed int value;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* generic set of bytes (12x8 bit) */
Packit 4a16fb
struct snd_seq_ev_raw8 {
Packit 4a16fb
	unsigned char d[12];	/* 8 bit value */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* generic set of integers (3x32 bit) */
Packit 4a16fb
struct snd_seq_ev_raw32 {
Packit 4a16fb
	unsigned int d[3];	/* 32 bit value */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* external stored data */
Packit 4a16fb
struct snd_seq_ev_ext {
Packit 4a16fb
	unsigned int len;	/* length of data */
Packit 4a16fb
	void *ptr;		/* pointer to data (note: maybe 64-bit) */
Packit 4a16fb
} __attribute__((packed));
Packit 4a16fb
Packit 4a16fb
struct snd_seq_result {
Packit 4a16fb
	int event;		/* processed event type */
Packit 4a16fb
	int result;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
struct snd_seq_real_time {
Packit 4a16fb
	unsigned int tv_sec;	/* seconds */
Packit 4a16fb
	unsigned int tv_nsec;	/* nanoseconds */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
typedef unsigned int snd_seq_tick_time_t;	/* midi ticks */
Packit 4a16fb
Packit 4a16fb
union snd_seq_timestamp {
Packit 4a16fb
	snd_seq_tick_time_t tick;
Packit 4a16fb
	struct snd_seq_real_time time;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
struct snd_seq_queue_skew {
Packit 4a16fb
	unsigned int value;
Packit 4a16fb
	unsigned int base;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* queue timer control */
Packit 4a16fb
struct snd_seq_ev_queue_control {
Packit 4a16fb
	unsigned char queue;			/* affected queue */
Packit 4a16fb
	unsigned char pad[3];			/* reserved */
Packit 4a16fb
	union {
Packit 4a16fb
		signed int value;		/* affected value (e.g. tempo) */
Packit 4a16fb
		union snd_seq_timestamp time;	/* time */
Packit 4a16fb
		unsigned int position;		/* sync position */
Packit 4a16fb
		struct snd_seq_queue_skew skew;
Packit 4a16fb
		unsigned int d32[2];
Packit 4a16fb
		unsigned char d8[8];
Packit 4a16fb
	} param;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
	/* quoted event - inside the kernel only */
Packit 4a16fb
struct snd_seq_ev_quote {
Packit 4a16fb
	struct snd_seq_addr origin;		/* original sender */
Packit 4a16fb
	unsigned short value;		/* optional data */
Packit 4a16fb
	struct snd_seq_event *event;		/* quoted event */
Packit 4a16fb
} __attribute__((packed));
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* sequencer event */
Packit 4a16fb
struct snd_seq_event {
Packit 4a16fb
	snd_seq_event_type_t type;	/* event type */
Packit 4a16fb
	unsigned char flags;		/* event flags */
Packit 4a16fb
	char tag;
Packit 4a16fb
	
Packit 4a16fb
	unsigned char queue;		/* schedule queue */
Packit 4a16fb
	union snd_seq_timestamp time;	/* schedule time */
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	struct snd_seq_addr source;	/* source address */
Packit 4a16fb
	struct snd_seq_addr dest;	/* destination address */
Packit 4a16fb
Packit 4a16fb
	union {				/* event data... */
Packit 4a16fb
		struct snd_seq_ev_note note;
Packit 4a16fb
		struct snd_seq_ev_ctrl control;
Packit 4a16fb
		struct snd_seq_ev_raw8 raw8;
Packit 4a16fb
		struct snd_seq_ev_raw32 raw32;
Packit 4a16fb
		struct snd_seq_ev_ext ext;
Packit 4a16fb
		struct snd_seq_ev_queue_control queue;
Packit 4a16fb
		union snd_seq_timestamp time;
Packit 4a16fb
		struct snd_seq_addr addr;
Packit 4a16fb
		struct snd_seq_connect connect;
Packit 4a16fb
		struct snd_seq_result result;
Packit 4a16fb
		struct snd_seq_ev_quote quote;
Packit 4a16fb
	} data;
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/*
Packit 4a16fb
 * bounce event - stored as variable size data
Packit 4a16fb
 */
Packit 4a16fb
struct snd_seq_event_bounce {
Packit 4a16fb
	int err;
Packit 4a16fb
	struct snd_seq_event event;
Packit 4a16fb
	/* external data follows here. */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* system information */
Packit 4a16fb
struct snd_seq_system_info {
Packit 4a16fb
	int queues;			/* maximum queues count */
Packit 4a16fb
	int clients;			/* maximum clients count */
Packit 4a16fb
	int ports;			/* maximum ports per client */
Packit 4a16fb
	int channels;			/* maximum channels per port */
Packit 4a16fb
	int cur_clients;		/* current clients */
Packit 4a16fb
	int cur_queues;			/* current queues */
Packit 4a16fb
	char reserved[24];
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* system running information */
Packit 4a16fb
struct snd_seq_running_info {
Packit 4a16fb
	unsigned char client;		/* client id */
Packit 4a16fb
	unsigned char big_endian;	/* 1 = big-endian */
Packit 4a16fb
	unsigned char cpu_mode;		/* 4 = 32bit, 8 = 64bit */
Packit 4a16fb
	unsigned char pad;		/* reserved */
Packit 4a16fb
	unsigned char reserved[12];
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* known client numbers */
Packit 4a16fb
#define SNDRV_SEQ_CLIENT_SYSTEM		0
Packit 4a16fb
	/* internal client numbers */
Packit 4a16fb
#define SNDRV_SEQ_CLIENT_DUMMY		14	/* midi through */
Packit 4a16fb
#define SNDRV_SEQ_CLIENT_OSS		15	/* oss sequencer emulator */
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* client types */
Packit 4a16fb
typedef int __bitwise snd_seq_client_type_t;
Packit 4a16fb
#define	NO_CLIENT	((__force snd_seq_client_type_t) 0)
Packit 4a16fb
#define	USER_CLIENT	((__force snd_seq_client_type_t) 1)
Packit 4a16fb
#define	KERNEL_CLIENT	((__force snd_seq_client_type_t) 2)
Packit 4a16fb
                        
Packit 4a16fb
	/* event filter flags */
Packit 4a16fb
#define SNDRV_SEQ_FILTER_BROADCAST	(1<<0)	/* accept broadcast messages */
Packit 4a16fb
#define SNDRV_SEQ_FILTER_MULTICAST	(1<<1)	/* accept multicast messages */
Packit 4a16fb
#define SNDRV_SEQ_FILTER_BOUNCE		(1<<2)	/* accept bounce event in error */
Packit 4a16fb
#define SNDRV_SEQ_FILTER_USE_EVENT	(1<<31)	/* use event filter */
Packit 4a16fb
Packit 4a16fb
struct snd_seq_client_info {
Packit 4a16fb
	int client;			/* client number to inquire */
Packit 4a16fb
	snd_seq_client_type_t type;	/* client type */
Packit 4a16fb
	char name[64];			/* client name */
Packit 4a16fb
	unsigned int filter;		/* filter flags */
Packit 4a16fb
	unsigned char multicast_filter[8]; /* multicast filter bitmap */
Packit 4a16fb
	unsigned char event_filter[32];	/* event filter bitmap */
Packit 4a16fb
	int num_ports;			/* RO: number of ports */
Packit 4a16fb
	int event_lost;			/* number of lost events */
Packit 4a16fb
	int card;			/* RO: card number[kernel] */
Packit 4a16fb
	int pid;			/* RO: pid[user] */
Packit 4a16fb
	char reserved[56];		/* for future use */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/* client pool size */
Packit 4a16fb
struct snd_seq_client_pool {
Packit 4a16fb
	int client;			/* client number to inquire */
Packit 4a16fb
	int output_pool;		/* outgoing (write) pool size */
Packit 4a16fb
	int input_pool;			/* incoming (read) pool size */
Packit 4a16fb
	int output_room;		/* minimum free pool size for select/blocking mode */
Packit 4a16fb
	int output_free;		/* unused size */
Packit 4a16fb
	int input_free;			/* unused size */
Packit 4a16fb
	char reserved[64];
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/* Remove events by specified criteria */
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_INPUT		(1<<0)	/* Flush input queues */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_OUTPUT		(1<<1)	/* Flush output queues */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_DEST		(1<<2)	/* Restrict by destination q:client:port */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_DEST_CHANNEL	(1<<3)	/* Restrict by channel */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_TIME_BEFORE	(1<<4)	/* Restrict to before time */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_TIME_AFTER	(1<<5)	/* Restrict to time or after */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_TIME_TICK	(1<<6)	/* Time is in ticks */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_EVENT_TYPE	(1<<7)	/* Restrict to event type */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_IGNORE_OFF 	(1<<8)	/* Do not flush off events */
Packit 4a16fb
#define SNDRV_SEQ_REMOVE_TAG_MATCH 	(1<<9)	/* Restrict to events with given tag */
Packit 4a16fb
Packit 4a16fb
struct snd_seq_remove_events {
Packit 4a16fb
	unsigned int  remove_mode;	/* Flags that determine what gets removed */
Packit 4a16fb
Packit 4a16fb
	union snd_seq_timestamp time;
Packit 4a16fb
Packit 4a16fb
	unsigned char queue;	/* Queue for REMOVE_DEST */
Packit 4a16fb
	struct snd_seq_addr dest;	/* Address for REMOVE_DEST */
Packit 4a16fb
	unsigned char channel;	/* Channel for REMOVE_DEST */
Packit 4a16fb
Packit 4a16fb
	int  type;	/* For REMOVE_EVENT_TYPE */
Packit 4a16fb
	char  tag;	/* Tag for REMOVE_TAG */
Packit 4a16fb
Packit 4a16fb
	int  reserved[10];	/* To allow for future binary compatibility */
Packit 4a16fb
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
	/* known port numbers */
Packit 4a16fb
#define SNDRV_SEQ_PORT_SYSTEM_TIMER	0
Packit 4a16fb
#define SNDRV_SEQ_PORT_SYSTEM_ANNOUNCE	1
Packit 4a16fb
Packit 4a16fb
	/* port capabilities (32 bits) */
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_READ		(1<<0)	/* readable from this port */
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_WRITE	(1<<1)	/* writable to this port */
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_SYNC_READ	(1<<2)
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_SYNC_WRITE	(1<<3)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_DUPLEX	(1<<4)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_SUBS_READ	(1<<5)	/* allow read subscription */
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_SUBS_WRITE	(1<<6)	/* allow write subscription */
Packit 4a16fb
#define SNDRV_SEQ_PORT_CAP_NO_EXPORT	(1<<7)	/* routing not allowed */
Packit 4a16fb
Packit 4a16fb
	/* port type */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_SPECIFIC	(1<<0)	/* hardware specific */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC (1<<1)	/* generic MIDI device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_GM	(1<<2)	/* General MIDI compatible device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_GS	(1<<3)	/* GS compatible device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_XG	(1<<4)	/* XG compatible device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_MT32	(1<<5)	/* MT-32 compatible device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_MIDI_GM2	(1<<6)	/* General MIDI 2 compatible device */
Packit 4a16fb
Packit 4a16fb
/* other standards...*/
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_SYNTH	(1<<10)	/* Synth device (no MIDI compatible - direct wavetable) */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_DIRECT_SAMPLE (1<<11)	/* Sampling device (support sample download) */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_SAMPLE	(1<<12)	/* Sampling device (sample can be downloaded at any time) */
Packit 4a16fb
/*...*/
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_HARDWARE	(1<<16)	/* driver for a hardware device */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_SOFTWARE	(1<<17)	/* implemented in software */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_SYNTHESIZER	(1<<18)	/* generates sound */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_PORT	(1<<19)	/* connects to other device(s) */
Packit 4a16fb
#define SNDRV_SEQ_PORT_TYPE_APPLICATION	(1<<20)	/* application (sequencer/editor) */
Packit 4a16fb
Packit 4a16fb
/* misc. conditioning flags */
Packit 4a16fb
#define SNDRV_SEQ_PORT_FLG_GIVEN_PORT	(1<<0)
Packit 4a16fb
#define SNDRV_SEQ_PORT_FLG_TIMESTAMP	(1<<1)
Packit 4a16fb
#define SNDRV_SEQ_PORT_FLG_TIME_REAL	(1<<2)
Packit 4a16fb
Packit 4a16fb
struct snd_seq_port_info {
Packit 4a16fb
	struct snd_seq_addr addr;	/* client/port numbers */
Packit 4a16fb
	char name[64];			/* port name */
Packit 4a16fb
Packit 4a16fb
	unsigned int capability;	/* port capability bits */
Packit 4a16fb
	unsigned int type;		/* port type bits */
Packit 4a16fb
	int midi_channels;		/* channels per MIDI port */
Packit 4a16fb
	int midi_voices;		/* voices per MIDI port */
Packit 4a16fb
	int synth_voices;		/* voices per SYNTH port */
Packit 4a16fb
Packit 4a16fb
	int read_use;			/* R/O: subscribers for output (from this port) */
Packit 4a16fb
	int write_use;			/* R/O: subscribers for input (to this port) */
Packit 4a16fb
Packit 4a16fb
	void *kernel;			/* reserved for kernel use (must be NULL) */
Packit 4a16fb
	unsigned int flags;		/* misc. conditioning */
Packit 4a16fb
	unsigned char time_queue;	/* queue # for timestamping */
Packit 4a16fb
	char reserved[59];		/* for future use */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/* queue flags */
Packit 4a16fb
#define SNDRV_SEQ_QUEUE_FLG_SYNC	(1<<0)	/* sync enabled */
Packit 4a16fb
Packit 4a16fb
/* queue information */
Packit 4a16fb
struct snd_seq_queue_info {
Packit 4a16fb
	int queue;		/* queue id */
Packit 4a16fb
Packit 4a16fb
	/*
Packit 4a16fb
	 *  security settings, only owner of this queue can start/stop timer
Packit 4a16fb
	 *  etc. if the queue is locked for other clients
Packit 4a16fb
	 */
Packit 4a16fb
	int owner;		/* client id for owner of the queue */
Packit 4a16fb
	unsigned locked:1;	/* timing queue locked for other queues */
Packit 4a16fb
	char name[64];		/* name of this queue */
Packit 4a16fb
	unsigned int flags;	/* flags */
Packit 4a16fb
	char reserved[60];	/* for future use */
Packit 4a16fb
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
/* queue info/status */
Packit 4a16fb
struct snd_seq_queue_status {
Packit 4a16fb
	int queue;			/* queue id */
Packit 4a16fb
	int events;			/* read-only - queue size */
Packit 4a16fb
	snd_seq_tick_time_t tick;	/* current tick */
Packit 4a16fb
	struct snd_seq_real_time time;	/* current time */
Packit 4a16fb
	int running;			/* running state of queue */
Packit 4a16fb
	int flags;			/* various flags */
Packit 4a16fb
	char reserved[64];		/* for the future */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/* queue tempo */
Packit 4a16fb
struct snd_seq_queue_tempo {
Packit 4a16fb
	int queue;			/* sequencer queue */
Packit 4a16fb
	unsigned int tempo;		/* current tempo, us/tick */
Packit 4a16fb
	int ppq;			/* time resolution, ticks/quarter */
Packit 4a16fb
	unsigned int skew_value;	/* queue skew */
Packit 4a16fb
	unsigned int skew_base;		/* queue skew base */
Packit 4a16fb
	char reserved[24];		/* for the future */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/* sequencer timer sources */
Packit 4a16fb
#define SNDRV_SEQ_TIMER_ALSA		0	/* ALSA timer */
Packit 4a16fb
#define SNDRV_SEQ_TIMER_MIDI_CLOCK	1	/* Midi Clock (CLOCK event) */
Packit 4a16fb
#define SNDRV_SEQ_TIMER_MIDI_TICK	2	/* Midi Timer Tick (TICK event) */
Packit 4a16fb
Packit 4a16fb
/* queue timer info */
Packit 4a16fb
struct snd_seq_queue_timer {
Packit 4a16fb
	int queue;			/* sequencer queue */
Packit 4a16fb
	int type;			/* source timer type */
Packit 4a16fb
	union {
Packit 4a16fb
		struct {
Packit 4a16fb
			struct snd_timer_id id;	/* ALSA's timer ID */
Packit 4a16fb
			unsigned int resolution;	/* resolution in Hz */
Packit 4a16fb
		} alsa;
Packit 4a16fb
	} u;
Packit 4a16fb
	char reserved[64];		/* for the future use */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
struct snd_seq_queue_client {
Packit 4a16fb
	int queue;		/* sequencer queue */
Packit 4a16fb
	int client;		/* sequencer client */
Packit 4a16fb
	int used;		/* queue is used with this client
Packit 4a16fb
				   (must be set for accepting events) */
Packit 4a16fb
	/* per client watermarks */
Packit 4a16fb
	char reserved[64];	/* for future use */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_PORT_SUBS_EXCLUSIVE	(1<<0)	/* exclusive connection */
Packit 4a16fb
#define SNDRV_SEQ_PORT_SUBS_TIMESTAMP	(1<<1)
Packit 4a16fb
#define SNDRV_SEQ_PORT_SUBS_TIME_REAL	(1<<2)
Packit 4a16fb
Packit 4a16fb
struct snd_seq_port_subscribe {
Packit 4a16fb
	struct snd_seq_addr sender;	/* sender address */
Packit 4a16fb
	struct snd_seq_addr dest;	/* destination address */
Packit 4a16fb
	unsigned int voices;		/* number of voices to be allocated (0 = don't care) */
Packit 4a16fb
	unsigned int flags;		/* modes */
Packit 4a16fb
	unsigned char queue;		/* input time-stamp queue (optional) */
Packit 4a16fb
	unsigned char pad[3];		/* reserved */
Packit 4a16fb
	char reserved[64];
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
/* type of query subscription */
Packit 4a16fb
#define SNDRV_SEQ_QUERY_SUBS_READ	0
Packit 4a16fb
#define SNDRV_SEQ_QUERY_SUBS_WRITE	1
Packit 4a16fb
Packit 4a16fb
struct snd_seq_query_subs {
Packit 4a16fb
	struct snd_seq_addr root;	/* client/port id to be searched */
Packit 4a16fb
	int type;		/* READ or WRITE */
Packit 4a16fb
	int index;		/* 0..N-1 */
Packit 4a16fb
	int num_subs;		/* R/O: number of subscriptions on this port */
Packit 4a16fb
	struct snd_seq_addr addr;	/* R/O: result */
Packit 4a16fb
	unsigned char queue;	/* R/O: result */
Packit 4a16fb
	unsigned int flags;	/* R/O: result */
Packit 4a16fb
	char reserved[64];	/* for future use */
Packit 4a16fb
};
Packit 4a16fb
Packit 4a16fb
Packit 4a16fb
/*
Packit 4a16fb
 *  IOCTL commands
Packit 4a16fb
 */
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_PVERSION	_IOR ('S', 0x00, int)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_CLIENT_ID	_IOR ('S', 0x01, int)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SYSTEM_INFO	_IOWR('S', 0x02, struct snd_seq_system_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_RUNNING_MODE	_IOWR('S', 0x03, struct snd_seq_running_info)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_CLIENT_INFO	_IOWR('S', 0x10, struct snd_seq_client_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_CLIENT_INFO	_IOW ('S', 0x11, struct snd_seq_client_info)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_CREATE_PORT	_IOWR('S', 0x20, struct snd_seq_port_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_DELETE_PORT	_IOW ('S', 0x21, struct snd_seq_port_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_PORT_INFO	_IOWR('S', 0x22, struct snd_seq_port_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_PORT_INFO	_IOW ('S', 0x23, struct snd_seq_port_info)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT	_IOW ('S', 0x30, struct snd_seq_port_subscribe)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT _IOW ('S', 0x31, struct snd_seq_port_subscribe)
Packit 4a16fb
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_CREATE_QUEUE	_IOWR('S', 0x32, struct snd_seq_queue_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_DELETE_QUEUE	_IOW ('S', 0x33, struct snd_seq_queue_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_QUEUE_INFO	_IOWR('S', 0x34, struct snd_seq_queue_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_QUEUE_INFO	_IOWR('S', 0x35, struct snd_seq_queue_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE	_IOWR('S', 0x36, struct snd_seq_queue_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS _IOWR('S', 0x40, struct snd_seq_queue_status)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO	_IOWR('S', 0x41, struct snd_seq_queue_tempo)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO	_IOW ('S', 0x42, struct snd_seq_queue_tempo)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER	_IOWR('S', 0x45, struct snd_seq_queue_timer)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER	_IOW ('S', 0x46, struct snd_seq_queue_timer)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_QUEUE_CLIENT	_IOWR('S', 0x49, struct snd_seq_queue_client)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT	_IOW ('S', 0x4a, struct snd_seq_queue_client)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_CLIENT_POOL	_IOWR('S', 0x4b, struct snd_seq_client_pool)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_SET_CLIENT_POOL	_IOW ('S', 0x4c, struct snd_seq_client_pool)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_REMOVE_EVENTS	_IOW ('S', 0x4e, struct snd_seq_remove_events)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_QUERY_SUBS	_IOWR('S', 0x4f, struct snd_seq_query_subs)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION	_IOWR('S', 0x50, struct snd_seq_port_subscribe)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT	_IOWR('S', 0x51, struct snd_seq_client_info)
Packit 4a16fb
#define SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT	_IOWR('S', 0x52, struct snd_seq_port_info)
Packit 4a16fb
Packit 4a16fb
#endif /* _UAPI__SOUND_ASEQUENCER_H */