2 * Driver for Digigram VX soundcards
4 * DSP firmware management
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <sound/driver.h>
24 #include <linux/device.h>
25 #include <linux/firmware.h>
26 #include <linux/vmalloc.h>
27 #include <sound/core.h>
28 #include <sound/hwdep.h>
29 #include <sound/vx_core.h>
31 #ifdef SND_VX_FW_LOADER
33 MODULE_FIRMWARE("vx/bx_1_vxp.b56");
34 MODULE_FIRMWARE("vx/bx_1_vp4.b56");
35 MODULE_FIRMWARE("vx/x1_1_vx2.xlx");
36 MODULE_FIRMWARE("vx/x1_2_v22.xlx");
37 MODULE_FIRMWARE("vx/x1_1_vxp.xlx");
38 MODULE_FIRMWARE("vx/x1_1_vp4.xlx");
39 MODULE_FIRMWARE("vx/bd56002.boot");
40 MODULE_FIRMWARE("vx/bd563v2.boot");
41 MODULE_FIRMWARE("vx/bd563s3.boot");
42 MODULE_FIRMWARE("vx/l_1_vx2.d56");
43 MODULE_FIRMWARE("vx/l_1_v22.d56");
44 MODULE_FIRMWARE("vx/l_1_vxp.d56");
45 MODULE_FIRMWARE("vx/l_1_vp4.d56");
47 int snd_vx_setup_firmware(struct vx_core *chip)
49 static char *fw_files[VX_TYPE_NUMS][4] = {
51 NULL, "x1_1_vx2.xlx", "bd56002.boot", "l_1_vx2.d56",
54 NULL, "x1_2_v22.xlx", "bd563v2.boot", "l_1_v22.d56",
57 NULL, "x1_2_v22.xlx", "bd563v2.boot", "l_1_v22.d56",
59 [VX_TYPE_VXPOCKET] = {
60 "bx_1_vxp.b56", "x1_1_vxp.xlx", "bd563s3.boot", "l_1_vxp.d56"
63 "bx_1_vp4.b56", "x1_1_vp4.xlx", "bd563s3.boot", "l_1_vp4.d56"
69 for (i = 0; i < 4; i++) {
71 const struct firmware *fw;
72 if (! fw_files[chip->type][i])
74 sprintf(path, "vx/%s", fw_files[chip->type][i]);
75 if (request_firmware(&fw, path, chip->dev)) {
76 snd_printk(KERN_ERR "vx: can't load firmware %s\n", path);
79 err = chip->ops->load_dsp(chip, i, fw);
85 chip->chip_status |= VX_STAT_XILINX_LOADED;
87 chip->firmware[i] = fw;
93 /* ok, we reached to the last one */
94 /* create the devices if not built yet */
95 if ((err = snd_vx_pcm_new(chip)) < 0)
98 if ((err = snd_vx_mixer_new(chip)) < 0)
101 if (chip->ops->add_controls)
102 if ((err = chip->ops->add_controls(chip)) < 0)
105 chip->chip_status |= VX_STAT_DEVICE_INIT;
106 chip->chip_status |= VX_STAT_CHIP_INIT;
108 return snd_card_register(chip->card);
112 void snd_vx_free_firmware(struct vx_core *chip)
116 for (i = 0; i < 4; i++)
117 release_firmware(chip->firmware[i]);
121 #else /* old style firmware loading */
123 static int vx_hwdep_open(struct snd_hwdep *hw, struct file *file)
128 static int vx_hwdep_release(struct snd_hwdep *hw, struct file *file)
133 static int vx_hwdep_dsp_status(struct snd_hwdep *hw,
134 struct snd_hwdep_dsp_status *info)
136 static char *type_ids[VX_TYPE_NUMS] = {
137 [VX_TYPE_BOARD] = "vxboard",
138 [VX_TYPE_V2] = "vx222",
139 [VX_TYPE_MIC] = "vx222",
140 [VX_TYPE_VXPOCKET] = "vxpocket",
141 [VX_TYPE_VXP440] = "vxp440",
143 struct vx_core *vx = hw->private_data;
145 snd_assert(type_ids[vx->type], return -EINVAL);
146 strcpy(info->id, type_ids[vx->type]);
147 if (vx_is_pcmcia(vx))
151 if (vx->chip_status & VX_STAT_CHIP_INIT)
152 info->chip_ready = 1;
153 info->version = VX_DRIVER_VERSION;
157 static void free_fw(const struct firmware *fw)
165 static int vx_hwdep_dsp_load(struct snd_hwdep *hw,
166 struct snd_hwdep_dsp_image *dsp)
168 struct vx_core *vx = hw->private_data;
172 snd_assert(vx->ops->load_dsp, return -ENXIO);
174 fw = kmalloc(sizeof(*fw), GFP_KERNEL);
176 snd_printk(KERN_ERR "cannot allocate firmware\n");
179 fw->size = dsp->length;
180 fw->data = vmalloc(fw->size);
182 snd_printk(KERN_ERR "cannot allocate firmware image (length=%d)\n",
187 if (copy_from_user(fw->data, dsp->image, dsp->length)) {
193 if (! vx_is_pcmcia(vx))
195 err = vx->ops->load_dsp(vx, index, fw);
201 vx->firmware[index] = fw;
207 vx->chip_status |= VX_STAT_XILINX_LOADED;
211 /* ok, we reached to the last one */
212 /* create the devices if not built yet */
213 if (! (vx->chip_status & VX_STAT_DEVICE_INIT)) {
214 if ((err = snd_vx_pcm_new(vx)) < 0)
217 if ((err = snd_vx_mixer_new(vx)) < 0)
220 if (vx->ops->add_controls)
221 if ((err = vx->ops->add_controls(vx)) < 0)
224 if ((err = snd_card_register(vx->card)) < 0)
227 vx->chip_status |= VX_STAT_DEVICE_INIT;
229 vx->chip_status |= VX_STAT_CHIP_INIT;
235 int snd_vx_setup_firmware(struct vx_core *chip)
238 struct snd_hwdep *hw;
240 if ((err = snd_hwdep_new(chip->card, SND_VX_HWDEP_ID, 0, &hw)) < 0)
243 hw->iface = SNDRV_HWDEP_IFACE_VX;
244 hw->private_data = chip;
245 hw->ops.open = vx_hwdep_open;
246 hw->ops.release = vx_hwdep_release;
247 hw->ops.dsp_status = vx_hwdep_dsp_status;
248 hw->ops.dsp_load = vx_hwdep_dsp_load;
250 sprintf(hw->name, "VX Loader (%s)", chip->card->driver);
253 return snd_card_register(chip->card);
257 void snd_vx_free_firmware(struct vx_core *chip)
261 for (i = 0; i < 4; i++)
262 free_fw(chip->firmware[i]);
266 #endif /* SND_VX_FW_LOADER */
268 EXPORT_SYMBOL(snd_vx_setup_firmware);
269 EXPORT_SYMBOL(snd_vx_free_firmware);