[PATCH] pcmcia: remove references to pcmcia/version.h
[linux-2.6/mini2440.git] / sound / pcmcia / vx / vxpocket.c
blob62d6fa1281487c335320b88a8582022f44e56a35
1 /*
2 * Driver for Digigram VXpocket V2/440 soundcards
4 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
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.
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.
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
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/moduleparam.h>
25 #include <sound/core.h>
26 #include "vxpocket.h"
27 #include <sound/initval.h>
32 #ifdef COMPILE_VXP440
33 #define CARD_NAME "VXPocket440"
34 #else
35 #define CARD_NAME "VXPocket"
36 #endif
38 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
39 MODULE_DESCRIPTION("Digigram " CARD_NAME);
40 MODULE_LICENSE("GPL");
41 MODULE_SUPPORTED_DEVICE("{{Digigram," CARD_NAME "}}");
43 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
44 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
45 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
46 static int ibl[SNDRV_CARDS];
48 module_param_array(index, int, NULL, 0444);
49 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
50 module_param_array(id, charp, NULL, 0444);
51 MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
52 module_param_array(enable, bool, NULL, 0444);
53 MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
54 module_param_array(ibl, int, NULL, 0444);
55 MODULE_PARM_DESC(ibl, "Capture IBL size for " CARD_NAME " soundcard.");
61 #ifdef COMPILE_VXP440
63 /* 1 DSP, 1 sync UER, 1 sync World Clock (NIY) */
64 /* SMPTE (NIY) */
65 /* 2 stereo analog input (line/micro) */
66 /* 2 stereo analog output */
67 /* Only output levels can be modified */
68 /* UER, but only for the first two inputs and outputs. */
70 #define NUM_CODECS 2
71 #define CARD_TYPE VX_TYPE_VXP440
72 #define DEV_INFO "snd-vxp440"
74 #else
76 /* 1 DSP, 1 sync UER */
77 /* 1 programmable clock (NIY) */
78 /* 1 stereo analog input (line/micro) */
79 /* 1 stereo analog output */
80 /* Only output levels can be modified */
82 #define NUM_CODECS 1
83 #define CARD_TYPE VX_TYPE_VXPOCKET
84 #define DEV_INFO "snd-vxpocket"
86 #endif
88 static dev_info_t dev_info = DEV_INFO;
90 static struct snd_vx_hardware vxp_hw = {
91 .name = CARD_NAME,
92 .type = CARD_TYPE,
94 /* hardware specs */
95 .num_codecs = NUM_CODECS,
96 .num_ins = NUM_CODECS,
97 .num_outs = NUM_CODECS,
98 .output_level_max = VX_ANALOG_OUT_LEVEL_MAX,
99 };
101 static struct snd_vxp_entry hw_entry = {
102 .dev_info = &dev_info,
104 /* module parameters */
105 .index_table = index,
106 .id_table = id,
107 .enable_table = enable,
108 .ibl = ibl,
110 /* h/w config */
111 .hardware = &vxp_hw,
112 .ops = &snd_vxpocket_ops,
117 static dev_link_t *vxp_attach(void)
119 return snd_vxpocket_attach(&hw_entry);
122 static void vxp_detach(dev_link_t *link)
124 snd_vxpocket_detach(&hw_entry, link);
128 * Module entry points
131 static struct pcmcia_device_id vxp_ids[] = {
132 PCMCIA_DEVICE_MANF_CARD(0x01f1, 0x0100),
133 PCMCIA_DEVICE_NULL
135 MODULE_DEVICE_TABLE(pcmcia, vxp_ids);
137 static struct pcmcia_driver vxp_cs_driver = {
138 .owner = THIS_MODULE,
139 .drv = {
140 .name = DEV_INFO,
142 .attach = vxp_attach,
143 .detach = vxp_detach,
144 .id_table = vxp_ids,
147 static int __init init_vxpocket(void)
149 return pcmcia_register_driver(&vxp_cs_driver);
152 static void __exit exit_vxpocket(void)
154 pcmcia_unregister_driver(&vxp_cs_driver);
155 BUG_ON(hw_entry.dev_list != NULL);
158 module_init(init_vxpocket);
159 module_exit(exit_vxpocket);