Blame view

sound/pci/emu10k1/emu10k1_synth.c 3.19 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   *  Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
   *
   *  Routines for control of EMU10K1 WaveTable synth
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   */
  
  #include "emu10k1_synth_local.h"
  #include <linux/init.h>
da155d5b4   Paul Gortmaker   sound: Add module...
23
  #include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
28
29
30
31
  
  MODULE_AUTHOR("Takashi Iwai");
  MODULE_DESCRIPTION("Routines for control of EMU10K1 WaveTable synth");
  MODULE_LICENSE("GPL");
  
  /*
   * create a new hardware dependent device for Emu10k1
   */
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
32
  static int snd_emu10k1_synth_new_device(struct snd_seq_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
  {
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
34
  	struct snd_emux *emux;
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
35
36
  	struct snd_emu10k1 *hw;
  	struct snd_emu10k1_synth_arg *arg;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
39
40
41
42
43
44
45
46
47
48
  	unsigned long flags;
  
  	arg = SNDRV_SEQ_DEVICE_ARGPTR(dev);
  	if (arg == NULL)
  		return -EINVAL;
  
  	if (arg->seq_ports <= 0)
  		return 0; /* nothing */
  	if (arg->max_voices < 1)
  		arg->max_voices = 1;
  	else if (arg->max_voices > 64)
  		arg->max_voices = 64;
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
49
  	if (snd_emux_new(&emux) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
  		return -ENOMEM;
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  	snd_emu10k1_ops_setup(emux);
  	hw = arg->hwptr;
  	emux->hw = hw;
  	emux->max_voices = arg->max_voices;
  	emux->num_ports = arg->seq_ports;
  	emux->pitch_shift = -501;
  	emux->memhdr = hw->memhdr;
  	/* maximum two ports */
  	emux->midi_ports = arg->seq_ports < 2 ? arg->seq_ports : 2;
  	/* audigy has two external midis */
  	emux->midi_devidx = hw->audigy ? 2 : 1;
  	emux->linear_panning = 0;
  	emux->hwdep_idx = 2; /* FIXED */
  
  	if (snd_emux_register(emux, dev->card, arg->index, "Emu10k1") < 0) {
  		snd_emux_free(emux);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67
68
69
70
  		return -ENOMEM;
  	}
  
  	spin_lock_irqsave(&hw->voice_lock, flags);
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
71
  	hw->synth = emux;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
73
  	hw->get_synth_voice = snd_emu10k1_synth_get_voice;
  	spin_unlock_irqrestore(&hw->voice_lock, flags);
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
74
  	dev->driver_data = emux;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
  
  	return 0;
  }
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
78
  static int snd_emu10k1_synth_delete_device(struct snd_seq_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
  {
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
80
  	struct snd_emux *emux;
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
81
  	struct snd_emu10k1 *hw;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
  	unsigned long flags;
  
  	if (dev->driver_data == NULL)
  		return 0; /* not registered actually */
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
86
  	emux = dev->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87

c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
88
  	hw = emux->hw;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
91
92
  	spin_lock_irqsave(&hw->voice_lock, flags);
  	hw->synth = NULL;
  	hw->get_synth_voice = NULL;
  	spin_unlock_irqrestore(&hw->voice_lock, flags);
c94fa4c91   James Courtier-Dutton   [ALSA] emu10k1: G...
93
  	snd_emux_free(emux);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
99
100
101
102
103
  	return 0;
  }
  
  /*
   *  INIT part
   */
  
  static int __init alsa_emu10k1_synth_init(void)
  {
  	
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
104
  	static struct snd_seq_dev_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
106
107
  		snd_emu10k1_synth_new_device,
  		snd_emu10k1_synth_delete_device,
  	};
eb4698f34   Takashi Iwai   [ALSA] Remove xxx...
108
109
  	return snd_seq_device_register_driver(SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH, &ops,
  					      sizeof(struct snd_emu10k1_synth_arg));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
111
112
113
114
115
116
117
118
  }
  
  static void __exit alsa_emu10k1_synth_exit(void)
  {
  	snd_seq_device_unregister_driver(SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH);
  }
  
  module_init(alsa_emu10k1_synth_init)
  module_exit(alsa_emu10k1_synth_exit)