2 * FM (OPL2/3) Instrument routines
3 * Copyright (c) 2000 Uros Bizjak <uros@kss-loka.si>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <sound/driver.h>
22 #include <linux/init.h>
23 #include <sound/core.h>
24 #include <sound/ainstr_fm.h>
25 #include <sound/initval.h>
26 #include <asm/uaccess.h>
28 MODULE_AUTHOR("Uros Bizjak <uros@kss-loka.si>");
29 MODULE_DESCRIPTION("Advanced Linux Sound Architecture FM Instrument support.");
30 MODULE_LICENSE("GPL");
32 static int snd_seq_fm_put(void *private_data
, struct snd_seq_kinstr
*instr
,
33 char __user
*instr_data
, long len
, int atomic
, int cmd
)
35 struct fm_instrument
*ip
;
36 struct fm_xinstrument ix
;
39 if (cmd
!= SNDRV_SEQ_INSTR_PUT_CMD_CREATE
)
41 /* copy instrument data */
42 if (len
< (long)sizeof(ix
))
44 if (copy_from_user(&ix
, instr_data
, sizeof(ix
)))
46 if (ix
.stype
!= FM_STRU_INSTR
)
48 ip
= (struct fm_instrument
*)KINSTR_DATA(instr
);
49 ip
->share_id
[0] = le32_to_cpu(ix
.share_id
[0]);
50 ip
->share_id
[1] = le32_to_cpu(ix
.share_id
[1]);
51 ip
->share_id
[2] = le32_to_cpu(ix
.share_id
[2]);
52 ip
->share_id
[3] = le32_to_cpu(ix
.share_id
[3]);
54 for (idx
= 0; idx
< 4; idx
++) {
55 ip
->op
[idx
].am_vib
= ix
.op
[idx
].am_vib
;
56 ip
->op
[idx
].ksl_level
= ix
.op
[idx
].ksl_level
;
57 ip
->op
[idx
].attack_decay
= ix
.op
[idx
].attack_decay
;
58 ip
->op
[idx
].sustain_release
= ix
.op
[idx
].sustain_release
;
59 ip
->op
[idx
].wave_select
= ix
.op
[idx
].wave_select
;
61 for (idx
= 0; idx
< 2; idx
++) {
62 ip
->feedback_connection
[idx
] = ix
.feedback_connection
[idx
];
64 ip
->echo_delay
= ix
.echo_delay
;
65 ip
->echo_atten
= ix
.echo_atten
;
66 ip
->chorus_spread
= ix
.chorus_spread
;
67 ip
->trnsps
= ix
.trnsps
;
68 ip
->fix_dur
= ix
.fix_dur
;
70 ip
->fix_key
= ix
.fix_key
;
74 static int snd_seq_fm_get(void *private_data
, struct snd_seq_kinstr
*instr
,
75 char __user
*instr_data
, long len
, int atomic
,
78 struct fm_instrument
*ip
;
79 struct fm_xinstrument ix
;
82 if (cmd
!= SNDRV_SEQ_INSTR_GET_CMD_FULL
)
84 if (len
< (long)sizeof(ix
))
86 memset(&ix
, 0, sizeof(ix
));
87 ip
= (struct fm_instrument
*)KINSTR_DATA(instr
);
88 ix
.stype
= FM_STRU_INSTR
;
89 ix
.share_id
[0] = cpu_to_le32(ip
->share_id
[0]);
90 ix
.share_id
[1] = cpu_to_le32(ip
->share_id
[1]);
91 ix
.share_id
[2] = cpu_to_le32(ip
->share_id
[2]);
92 ix
.share_id
[3] = cpu_to_le32(ip
->share_id
[3]);
94 for (idx
= 0; idx
< 4; idx
++) {
95 ix
.op
[idx
].am_vib
= ip
->op
[idx
].am_vib
;
96 ix
.op
[idx
].ksl_level
= ip
->op
[idx
].ksl_level
;
97 ix
.op
[idx
].attack_decay
= ip
->op
[idx
].attack_decay
;
98 ix
.op
[idx
].sustain_release
= ip
->op
[idx
].sustain_release
;
99 ix
.op
[idx
].wave_select
= ip
->op
[idx
].wave_select
;
101 for (idx
= 0; idx
< 2; idx
++) {
102 ix
.feedback_connection
[idx
] = ip
->feedback_connection
[idx
];
104 if (copy_to_user(instr_data
, &ix
, sizeof(ix
)))
106 ix
.echo_delay
= ip
->echo_delay
;
107 ix
.echo_atten
= ip
->echo_atten
;
108 ix
.chorus_spread
= ip
->chorus_spread
;
109 ix
.trnsps
= ip
->trnsps
;
110 ix
.fix_dur
= ip
->fix_dur
;
111 ix
.modes
= ip
->modes
;
112 ix
.fix_key
= ip
->fix_key
;
116 static int snd_seq_fm_get_size(void *private_data
, struct snd_seq_kinstr
*instr
,
119 *size
= sizeof(struct fm_xinstrument
);
123 int snd_seq_fm_init(struct snd_seq_kinstr_ops
*ops
,
124 struct snd_seq_kinstr_ops
*next
)
126 memset(ops
, 0, sizeof(*ops
));
127 // ops->private_data = private_data;
128 ops
->add_len
= sizeof(struct fm_instrument
);
129 ops
->instr_type
= SNDRV_SEQ_INSTR_ID_OPL2_3
;
130 ops
->put
= snd_seq_fm_put
;
131 ops
->get
= snd_seq_fm_get
;
132 ops
->get_size
= snd_seq_fm_get_size
;
133 // ops->remove = snd_seq_fm_remove;
134 // ops->notify = snd_seq_fm_notify;
143 static int __init
alsa_ainstr_fm_init(void)
148 static void __exit
alsa_ainstr_fm_exit(void)
152 module_init(alsa_ainstr_fm_init
)
153 module_exit(alsa_ainstr_fm_exit
)
155 EXPORT_SYMBOL(snd_seq_fm_init
);