vserver 1.9.3
[linux-2.6.git] / sound / pcmcia / vx / vxpocket.c
1 /*
2  * Driver for Digigram VXpocket V2/440 soundcards
3  *
4  * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19  */
20
21 /*
22  please add the following as /etc/pcmcia/vxpocket.conf:
23  
24   device "snd-vxpocket"
25      class "audio" module "snd-vxpocket"
26
27   card "Digigram VX-POCKET"
28     manfid 0x01f1, 0x0100
29     bind "snd-vxpocket"
30
31  */
32
33 #include <sound/driver.h>
34 #include <linux/init.h>
35 #include <linux/moduleparam.h>
36 #include <sound/core.h>
37 #include <pcmcia/version.h>
38 #include "vxpocket.h"
39 #include <sound/initval.h>
40
41 /*
42  */
43
44 #ifdef COMPILE_VXP440
45 #define CARD_NAME       "VXPocket440"
46 #else
47 #define CARD_NAME       "VXPocket"
48 #endif
49
50 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
51 MODULE_DESCRIPTION("Digigram " CARD_NAME);
52 MODULE_LICENSE("GPL");
53 MODULE_SUPPORTED_DEVICE("{{Digigram," CARD_NAME "}}");
54
55 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
56 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
57 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;      /* Enable switches */
58 static unsigned int irq_mask = 0xffff;
59 static int irq_list[4] = { -1 };
60 static int ibl[SNDRV_CARDS];
61 static int boot_devs;
62
63 module_param_array(index, int, boot_devs, 0444);
64 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
65 module_param_array(id, charp, boot_devs, 0444);
66 MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
67 module_param_array(enable, bool, boot_devs, 0444);
68 MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
69 module_param(irq_mask, int, 0444);
70 MODULE_PARM_DESC(irq_mask, "IRQ bitmask for " CARD_NAME " soundcard.");
71 module_param_array(irq_list, int, boot_devs, 0444);
72 MODULE_PARM_DESC(irq_list, "List of Available interrupts for " CARD_NAME " soundcard.");
73 module_param_array(ibl, int, boot_devs, 0444);
74 MODULE_PARM_DESC(ibl, "Capture IBL size for " CARD_NAME " soundcard.");
75  
76
77 /*
78  */
79
80 #ifdef COMPILE_VXP440
81
82 /* 1 DSP, 1 sync UER, 1 sync World Clock (NIY) */
83 /* SMPTE (NIY) */
84 /* 2 stereo analog input (line/micro) */
85 /* 2 stereo analog output */
86 /* Only output levels can be modified */
87 /* UER, but only for the first two inputs and outputs. */
88
89 #define NUM_CODECS      2
90 #define CARD_TYPE       VX_TYPE_VXP440
91 #define DEV_INFO        "snd-vxp440"
92
93 #else
94
95 /* 1 DSP, 1 sync UER */
96 /* 1 programmable clock (NIY) */
97 /* 1 stereo analog input (line/micro) */
98 /* 1 stereo analog output */
99 /* Only output levels can be modified */
100
101 #define NUM_CODECS      1
102 #define CARD_TYPE       VX_TYPE_VXPOCKET
103 #define DEV_INFO        "snd-vxpocket"
104
105 #endif
106
107 static dev_info_t dev_info = DEV_INFO;
108
109 static struct snd_vx_hardware vxp_hw = {
110         .name = CARD_NAME,
111         .type = CARD_TYPE,
112
113         /* hardware specs */
114         .num_codecs = NUM_CODECS,
115         .num_ins = NUM_CODECS,
116         .num_outs = NUM_CODECS,
117         .output_level_max = VX_ANALOG_OUT_LEVEL_MAX,
118 };      
119
120 static struct snd_vxp_entry hw_entry = {
121         .dev_info = &dev_info,
122
123         /* module parameters */
124         .index_table = index,
125         .id_table = id,
126         .enable_table = enable,
127         .irq_mask_p = &irq_mask,
128         .irq_list = irq_list,
129         .ibl = ibl,
130
131         /* h/w config */
132         .hardware = &vxp_hw,
133         .ops = &snd_vxpocket_ops,
134 };
135
136 /*
137  */
138 static dev_link_t *vxp_attach(void)
139 {
140         return snd_vxpocket_attach(&hw_entry);
141 }
142
143 static void vxp_detach(dev_link_t *link)
144 {
145         snd_vxpocket_detach(&hw_entry, link);
146 }
147
148 /*
149  * Module entry points
150  */
151
152 static struct pcmcia_driver vxp_cs_driver = {
153         .owner          = THIS_MODULE,
154         .drv            = {
155                 .name   = DEV_INFO,
156         },
157         .attach         = vxp_attach,
158         .detach         = vxp_detach
159 };
160
161 static int __init init_vxpocket(void)
162 {
163         return pcmcia_register_driver(&vxp_cs_driver);
164 }
165
166 static void __exit exit_vxpocket(void)
167 {
168         pcmcia_unregister_driver(&vxp_cs_driver);
169         snd_vxpocket_detach_all(&hw_entry);
170 }
171
172 module_init(init_vxpocket);
173 module_exit(exit_vxpocket);