mona.c (5a84d159061d914c8dd4aa372ac6e9529c2be453) mona.c (7e0af29d6f3964bec3d72c6caeb87a603e660fdf)
1/*
2 * ALSA driver for Echoaudio soundcards.
3 * Copyright (C) 2003-2004 Giuliano Pochini <pochini@shiny.it>
4 *
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; version 2 of the License.
8 *

--- 50 unchanged lines hidden (view full) ---

59#include <sound/pcm.h>
60#include <sound/pcm_params.h>
61#include <sound/asoundef.h>
62#include <sound/initval.h>
63#include <asm/io.h>
64#include <asm/atomic.h>
65#include "echoaudio.h"
66
1/*
2 * ALSA driver for Echoaudio soundcards.
3 * Copyright (C) 2003-2004 Giuliano Pochini <pochini@shiny.it>
4 *
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; version 2 of the License.
8 *

--- 50 unchanged lines hidden (view full) ---

59#include <sound/pcm.h>
60#include <sound/pcm_params.h>
61#include <sound/asoundef.h>
62#include <sound/initval.h>
63#include <asm/io.h>
64#include <asm/atomic.h>
65#include "echoaudio.h"
66
67MODULE_FIRMWARE("ea/loader_dsp.fw");
68MODULE_FIRMWARE("ea/mona_301_dsp.fw");
69MODULE_FIRMWARE("ea/mona_361_dsp.fw");
70MODULE_FIRMWARE("ea/mona_301_1_asic_48.fw");
71MODULE_FIRMWARE("ea/mona_301_1_asic_96.fw");
72MODULE_FIRMWARE("ea/mona_361_1_asic_48.fw");
73MODULE_FIRMWARE("ea/mona_361_1_asic_96.fw");
74MODULE_FIRMWARE("ea/mona_2_asic.fw");
75
67#define FW_361_LOADER 0
68#define FW_MONA_301_DSP 1
69#define FW_MONA_361_DSP 2
70#define FW_MONA_301_1_ASIC48 3
71#define FW_MONA_301_1_ASIC96 4
72#define FW_MONA_361_1_ASIC48 5
73#define FW_MONA_361_1_ASIC96 6
74#define FW_MONA_2_ASIC 7

--- 56 unchanged lines hidden ---
76#define FW_361_LOADER 0
77#define FW_MONA_301_DSP 1
78#define FW_MONA_361_DSP 2
79#define FW_MONA_301_1_ASIC48 3
80#define FW_MONA_301_1_ASIC96 4
81#define FW_MONA_361_1_ASIC48 5
82#define FW_MONA_361_1_ASIC96 6
83#define FW_MONA_2_ASIC 7

--- 56 unchanged lines hidden ---