Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __SOUND_SEQ_KERNEL_H |
| 3 | #define __SOUND_SEQ_KERNEL_H |
| 4 | |
| 5 | /* |
| 6 | * Main kernel header file for the ALSA sequencer |
| 7 | * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | #include <linux/time.h> |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 10 | #include <sound/asequencer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 12 | typedef struct snd_seq_real_time snd_seq_real_time_t; |
| 13 | typedef union snd_seq_timestamp snd_seq_timestamp_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | /* maximum number of queues */ |
Clemens Ladisch | 1001fb8 | 2015-01-25 14:36:46 +0100 | [diff] [blame] | 16 | #define SNDRV_SEQ_MAX_QUEUES 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | /* max number of concurrent clients */ |
| 19 | #define SNDRV_SEQ_MAX_CLIENTS 192 |
| 20 | |
| 21 | /* max number of concurrent ports */ |
| 22 | #define SNDRV_SEQ_MAX_PORTS 254 |
| 23 | |
| 24 | /* max number of events in memory pool */ |
| 25 | #define SNDRV_SEQ_MAX_EVENTS 2000 |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | /* default number of events in memory pool */ |
| 28 | #define SNDRV_SEQ_DEFAULT_EVENTS 500 |
| 29 | |
| 30 | /* max number of events in memory pool for one client (outqueue) */ |
| 31 | #define SNDRV_SEQ_MAX_CLIENT_EVENTS 2000 |
| 32 | |
| 33 | /* default number of events in memory pool for one client (outqueue) */ |
| 34 | #define SNDRV_SEQ_DEFAULT_CLIENT_EVENTS 200 |
| 35 | |
| 36 | /* max delivery path length */ |
Takashi Iwai | 3510c7a | 2017-11-06 20:16:50 +0100 | [diff] [blame] | 37 | /* NOTE: this shouldn't be greater than MAX_LOCKDEP_SUBCLASSES */ |
| 38 | #define SNDRV_SEQ_MAX_HOPS 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | /* max size of event size */ |
| 41 | #define SNDRV_SEQ_MAX_EVENT_LEN 0x3fffffff |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* call-backs for kernel port */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 44 | struct snd_seq_port_callback { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct module *owner; |
| 46 | void *private_data; |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 47 | int (*subscribe)(void *private_data, struct snd_seq_port_subscribe *info); |
| 48 | int (*unsubscribe)(void *private_data, struct snd_seq_port_subscribe *info); |
| 49 | int (*use)(void *private_data, struct snd_seq_port_subscribe *info); |
| 50 | int (*unuse)(void *private_data, struct snd_seq_port_subscribe *info); |
| 51 | int (*event_input)(struct snd_seq_event *ev, int direct, void *private_data, int atomic, int hop); |
| 52 | void (*private_free)(void *private_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /*...*/ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 54 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* interface for kernel client */ |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 57 | __printf(3, 4) |
Clemens Ladisch | 7b6d924 | 2005-12-12 09:33:37 +0100 | [diff] [blame] | 58 | int snd_seq_create_kernel_client(struct snd_card *card, int client_index, |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 59 | const char *name_fmt, ...); |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 60 | int snd_seq_delete_kernel_client(int client); |
Takashi Iwai | 6740ea6 | 2019-04-12 12:10:14 +0200 | [diff] [blame] | 61 | int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event *ev, |
| 62 | struct file *file, bool blocking); |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 63 | int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event *ev, int atomic, int hop); |
| 64 | int snd_seq_kernel_client_ctl(int client, unsigned int cmd, void *arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | #define SNDRV_SEQ_EXT_MASK 0xc0000000 |
| 67 | #define SNDRV_SEQ_EXT_USRPTR 0x80000000 |
| 68 | #define SNDRV_SEQ_EXT_CHAINED 0x40000000 |
| 69 | |
| 70 | typedef int (*snd_seq_dump_func_t)(void *ptr, void *buf, int count); |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 71 | int snd_seq_expand_var_event(const struct snd_seq_event *event, int count, char *buf, |
| 72 | int in_kernel, int size_aligned); |
| 73 | int snd_seq_dump_var_event(const struct snd_seq_event *event, |
| 74 | snd_seq_dump_func_t func, void *private_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | /* interface for OSS emulation */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 77 | int snd_seq_set_queue_tempo(int client, struct snd_seq_queue_tempo *tempo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | /* port callback routines */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 80 | void snd_port_init_callback(struct snd_seq_port_callback *p); |
| 81 | struct snd_seq_port_callback *snd_port_alloc_callback(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | /* port attach/detach */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 84 | int snd_seq_event_port_attach(int client, struct snd_seq_port_callback *pcbp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | int cap, int type, int midi_channels, int midi_voices, char *portname); |
| 86 | int snd_seq_event_port_detach(int client, int port); |
| 87 | |
Johannes Berg | ee2da99 | 2008-07-09 10:28:41 +0200 | [diff] [blame] | 88 | #ifdef CONFIG_MODULES |
Takashi Iwai | 68ab610 | 2014-10-15 14:06:25 +0200 | [diff] [blame] | 89 | void snd_seq_autoload_init(void); |
Takashi Iwai | 54a721a | 2015-02-12 14:20:24 +0100 | [diff] [blame] | 90 | void snd_seq_autoload_exit(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #else |
Takashi Iwai | 68ab610 | 2014-10-15 14:06:25 +0200 | [diff] [blame] | 92 | #define snd_seq_autoload_init() |
| 93 | #define snd_seq_autoload_exit() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #endif |
| 95 | |
| 96 | #endif /* __SOUND_SEQ_KERNEL_H */ |