mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
125 lines
3.3 KiB
C
125 lines
3.3 KiB
C
/*
|
|
* hdsploader - firmware loader for RME Hammerfall DSP cards
|
|
*
|
|
* Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
|
|
*
|
|
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/ioctl.h>
|
|
#include <alsa/asoundlib.h>
|
|
#include <sound/hdsp.h>
|
|
|
|
#include "firmware/multiface_firmware.dat"
|
|
#include "firmware/digiface_firmware.dat"
|
|
#include "firmware/multiface_firmware_rev11.dat"
|
|
#include "firmware/digiface_firmware_rev11.dat"
|
|
|
|
void upload_firmware(int card)
|
|
{
|
|
int err, i;
|
|
snd_hwdep_t *hw;
|
|
snd_hwdep_info_t *info;
|
|
char card_name[6];
|
|
hdsp_version_t version;
|
|
unsigned long *fw;
|
|
|
|
hdsp_firmware_t firmware;
|
|
hdsp_config_info_t config_info;
|
|
|
|
snd_hwdep_info_alloca(&info);
|
|
snprintf(card_name, 6, "hw:%i", card);
|
|
|
|
printf("Upload firmware for card %s\n", card_name);
|
|
|
|
if ((err = snd_hwdep_open(&hw, card_name, SND_HWDEP_OPEN_DUPLEX)) != 0) {
|
|
fprintf(stderr, "Error opening hwdep device on card %s.\n", card_name);
|
|
return;
|
|
}
|
|
|
|
if ((err = snd_hwdep_ioctl(hw, SNDRV_HDSP_IOCTL_GET_VERSION, &version)) < 0) {
|
|
fprintf(stderr, "Hwdep ioctl error on card %s : %s.\n", card_name, snd_strerror(err));
|
|
snd_hwdep_close(hw);
|
|
return;
|
|
}
|
|
|
|
switch (version.io_type) {
|
|
case Multiface:
|
|
if (version.firmware_rev == 0xa) {
|
|
fw = multiface_firmware;
|
|
} else {
|
|
fw = multiface_firmware_rev11;
|
|
}
|
|
break;
|
|
case Digiface:
|
|
if (version.firmware_rev == 0xa) {
|
|
fw = digiface_firmware;
|
|
} else {
|
|
fw = digiface_firmware_rev11;
|
|
}
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Unknown iobox or firmware revision\n");
|
|
snd_hwdep_close(hw);
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < 24413; ++i) {
|
|
firmware.firmware_data[i] = fw[i];
|
|
}
|
|
|
|
if ((err = snd_hwdep_ioctl(hw, SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE, &firmware)) < 0) {
|
|
fprintf(stderr, "Hwdep ioctl error on card %s : %s.\n", card_name, snd_strerror(err));
|
|
snd_hwdep_close(hw);
|
|
return;
|
|
}
|
|
|
|
printf("Firmware uploaded for card %s\n", card_name);
|
|
|
|
snd_hwdep_close(hw);
|
|
|
|
return;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
char **name;
|
|
int card;
|
|
|
|
snd_ctl_card_info_t *info;
|
|
snd_pcm_info_t *pcminfo;
|
|
int cards = 0;
|
|
|
|
snd_ctl_card_info_alloca(&info);
|
|
snd_pcm_info_alloca(&pcminfo);
|
|
card = -1;
|
|
printf("hdsploader - firmware loader for RME Hammerfall DSP cards\n");
|
|
printf("Looking for HDSP + Multiface or Digiface cards :\n");
|
|
while (snd_card_next(&card) >= 0) {
|
|
if (card < 0) {
|
|
break;
|
|
} else {
|
|
snd_card_get_longname(card, name);
|
|
printf("Card %d : %s\n", card, *name);
|
|
if (!strncmp(*name, "RME Hammerfall DSP", 18)) {
|
|
upload_firmware(card);
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|