#include <asm/io.h>
#include <linux/init.h>
#include <linux/bug.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/gameport.h>
#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <sound/core.h>
#include <sound/control.h>
#include <sound/pcm.h>
#include <sound/rawmidi.h>
#include <sound/mpu401.h>
#include <sound/opl3.h>
#include <sound/initval.h>
#include <sound/ac97_codec.h>
#include "azt3328.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Andreas Mohr <andi AT lisas.de>") |
|
| MODULE_DESCRIPTION ("Aztech AZF3328 (PCI168)") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("{{Aztech,AZF3328}}") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for AZF3328 soundcard.") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for AZF3328 soundcard.") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable AZF3328 soundcard.") |
|
| module_param (seqtimer_scaling, int, 0444) |
|
| MODULE_PARM_DESC (seqtimer_scaling,"Set 1024000Hz sequencer timer scale factor (lockup danger!). Default 128.") |
|
| MODULE_DEVICE_TABLE (pci, snd_azf3328_ids) |
|
| module_pci_driver (azf3328_driver) |
|
#define AZF_AC97_REG_EMU_IO_READ 0x0400 |
#define AZF_AC97_REG_EMU_IO_WRITE 0x0200 |
#define AZF_AC97_REG_REAL_IO_READ 0x4000 |
#define AZF_AC97_REG_REAL_IO_WRITE 0x2000 |
#define AZF_AC97_REG_UNSUPPORTED 0x8000 |
#define AZF_MUTE_BIT 0x80 |
#define AZF_REG_MASK 0x3f |
#define AZF_USE_AC97_LAYER 1 |
#define snd_azf3328_dbgcallenter |
( |
| ) |
|
#define snd_azf3328_dbgcallleave |
( |
| ) |
|
#define snd_azf3328_dbgcalls |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbgcodec |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbggame |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbgmisc |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbgmixer |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbgpm |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define snd_azf3328_dbgtimer |
( |
|
format, |
|
|
|
args... |
|
) |
| |
#define SND_AZF3328_PM_OPS NULL |
- Enumerator:
AZF_CODEC_PLAYBACK |
|
AZF_CODEC_CAPTURE |
|
AZF_CODEC_I2S_OUT |
|
Definition at line 312 of file azt3328.c.
MODULE_AUTHOR |
( |
"Andreas Mohr <andi AT lisas.de>" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Aztech AZF3328 (PCI168)" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
snd_azf3328_ids |
|
|
) |
| |
module_param |
( |
seqtimer_scaling |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
index |
, |
|
|
"Index value for AZF3328 soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for AZF3328 soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable AZF3328 soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
seqtimer_scaling |
, |
|
|
"Set 1024000Hz sequencer timer scale factor (lockup danger!). Default 128." |
|
|
) |
| |
module_pci_driver |
( |
azf3328_driver |
| ) |
|
MODULE_SUPPORTED_DEVICE |
( |
"{{Aztech,AZF3328}}" |
| ) |
|