/* SPDX-License-Identifier: GPL-2.0-or-later */1#ifndef __EMU10K1_SYNTH_H2#define __EMU10K1_SYNTH_H3/*4* Defines for the Emu10k1 WaveTable synth5*6* Copyright (C) 2000 Takashi Iwai <[email protected]>7*/89#include <sound/emu10k1.h>10#include <sound/emux_synth.h>1112/* sequencer device id */13#define SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH "emu10k1-synth"1415/* argument for snd_seq_device_new */16struct snd_emu10k1_synth_arg {17struct snd_emu10k1 *hwptr; /* chip */18int index; /* sequencer client index */19int seq_ports; /* number of sequencer ports to be created */20int max_voices; /* maximum number of voices for wavetable */21};2223#define EMU10K1_MAX_MEMSIZE (32 * 1024 * 1024) /* 32MB */2425#endif262728