/*1* Driver for Digigram pcxhr compatible soundcards2*3* definitions and makros for basic card access4*5* Copyright (c) 2004 by Digigram <[email protected]>6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, write to the Free Software19* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA20*/2122#ifndef __SOUND_PCXHR_HWDEP_H23#define __SOUND_PCXHR_HWDEP_H242526/* firmware status codes */27#define PCXHR_FIRMWARE_XLX_INT_INDEX 028#define PCXHR_FIRMWARE_XLX_COM_INDEX 129#define PCXHR_FIRMWARE_DSP_EPRM_INDEX 230#define PCXHR_FIRMWARE_DSP_BOOT_INDEX 331#define PCXHR_FIRMWARE_DSP_MAIN_INDEX 432#define PCXHR_FIRMWARE_FILES_MAX_INDEX 5333435/* exported */36int pcxhr_setup_firmware(struct pcxhr_mgr *mgr);37void pcxhr_reset_board(struct pcxhr_mgr *mgr);3839#endif /* __SOUND_PCXHR_HWDEP_H */404142