2 * Driver for generic MPU-401 boards (UART mode only)
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 * Copyright (c) 2004 by Castet Matthieu <castet.matthieu@free.fr>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/init.h>
24 #include <linux/pnp.h>
25 #include <linux/err.h>
26 #include <linux/platform_device.h>
27 #include <linux/module.h>
28 #include <sound/core.h>
29 #include <sound/mpu401.h>
30 #include <sound/initval.h>
32 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
33 MODULE_DESCRIPTION("MPU-401 UART");
34 MODULE_LICENSE("GPL");
36 static int index
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = -2}; /* exclude the first card */
37 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
38 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE
; /* Enable this card */
40 static bool pnp
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 1};
42 static long port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* MPU-401 port number */
43 static int irq
[SNDRV_CARDS
] = SNDRV_DEFAULT_IRQ
; /* MPU-401 IRQ */
44 static bool uart_enter
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 1};
46 module_param_array(index
, int, NULL
, 0444);
47 MODULE_PARM_DESC(index
, "Index value for MPU-401 device.");
48 module_param_array(id
, charp
, NULL
, 0444);
49 MODULE_PARM_DESC(id
, "ID string for MPU-401 device.");
50 module_param_array(enable
, bool, NULL
, 0444);
51 MODULE_PARM_DESC(enable
, "Enable MPU-401 device.");
53 module_param_array(pnp
, bool, NULL
, 0444);
54 MODULE_PARM_DESC(pnp
, "PnP detection for MPU-401 device.");
56 module_param_array(port
, long, NULL
, 0444);
57 MODULE_PARM_DESC(port
, "Port # for MPU-401 device.");
58 module_param_array(irq
, int, NULL
, 0444);
59 MODULE_PARM_DESC(irq
, "IRQ # for MPU-401 device.");
60 module_param_array(uart_enter
, bool, NULL
, 0444);
61 MODULE_PARM_DESC(uart_enter
, "Issue UART_ENTER command at open.");
63 static struct platform_device
*platform_devices
[SNDRV_CARDS
];
64 static int pnp_registered
;
65 static unsigned int snd_mpu401_devices
;
67 static int snd_mpu401_create(struct device
*devptr
, int dev
,
68 struct snd_card
**rcard
)
70 struct snd_card
*card
;
74 snd_printk(KERN_ERR
"the uart_enter option is obsolete; remove it\n");
77 err
= snd_card_new(devptr
, index
[dev
], id
[dev
], THIS_MODULE
,
81 strcpy(card
->driver
, "MPU-401 UART");
82 strcpy(card
->shortname
, card
->driver
);
83 sprintf(card
->longname
, "%s at %#lx, ", card
->shortname
, port
[dev
]);
85 sprintf(card
->longname
+ strlen(card
->longname
), "irq %d", irq
[dev
]);
87 strcat(card
->longname
, "polled");
90 err
= snd_mpu401_uart_new(card
, 0, MPU401_HW_MPU401
, port
[dev
], 0,
93 printk(KERN_ERR
"MPU401 not detected at 0x%lx\n", port
[dev
]);
105 static int snd_mpu401_probe(struct platform_device
*devptr
)
107 int dev
= devptr
->id
;
109 struct snd_card
*card
;
111 if (port
[dev
] == SNDRV_AUTO_PORT
) {
112 snd_printk(KERN_ERR
"specify port\n");
115 if (irq
[dev
] == SNDRV_AUTO_IRQ
) {
116 snd_printk(KERN_ERR
"specify or disable IRQ\n");
119 err
= snd_mpu401_create(&devptr
->dev
, dev
, &card
);
122 if ((err
= snd_card_register(card
)) < 0) {
126 platform_set_drvdata(devptr
, card
);
130 static int snd_mpu401_remove(struct platform_device
*devptr
)
132 snd_card_free(platform_get_drvdata(devptr
));
136 #define SND_MPU401_DRIVER "snd_mpu401"
138 static struct platform_driver snd_mpu401_driver
= {
139 .probe
= snd_mpu401_probe
,
140 .remove
= snd_mpu401_remove
,
142 .name
= SND_MPU401_DRIVER
,
143 .owner
= THIS_MODULE
,
152 static struct pnp_device_id snd_mpu401_pnpids
[] = {
157 MODULE_DEVICE_TABLE(pnp
, snd_mpu401_pnpids
);
159 static int snd_mpu401_pnp(int dev
, struct pnp_dev
*device
,
160 const struct pnp_device_id
*id
)
162 if (!pnp_port_valid(device
, 0) ||
163 pnp_port_flags(device
, 0) & IORESOURCE_DISABLED
) {
164 snd_printk(KERN_ERR
"no PnP port\n");
167 if (pnp_port_len(device
, 0) < IO_EXTENT
) {
168 snd_printk(KERN_ERR
"PnP port length is %llu, expected %d\n",
169 (unsigned long long)pnp_port_len(device
, 0),
173 port
[dev
] = pnp_port_start(device
, 0);
175 if (!pnp_irq_valid(device
, 0) ||
176 pnp_irq_flags(device
, 0) & IORESOURCE_DISABLED
) {
177 snd_printk(KERN_WARNING
"no PnP irq, using polling\n");
180 irq
[dev
] = pnp_irq(device
, 0);
185 static int snd_mpu401_pnp_probe(struct pnp_dev
*pnp_dev
,
186 const struct pnp_device_id
*id
)
189 struct snd_card
*card
;
192 for ( ; dev
< SNDRV_CARDS
; ++dev
) {
193 if (!enable
[dev
] || !pnp
[dev
])
195 err
= snd_mpu401_pnp(dev
, pnp_dev
, id
);
198 err
= snd_mpu401_create(&pnp_dev
->dev
, dev
, &card
);
201 if ((err
= snd_card_register(card
)) < 0) {
205 pnp_set_drvdata(pnp_dev
, card
);
206 snd_mpu401_devices
++;
213 static void snd_mpu401_pnp_remove(struct pnp_dev
*dev
)
215 struct snd_card
*card
= (struct snd_card
*) pnp_get_drvdata(dev
);
217 snd_card_disconnect(card
);
218 snd_card_free_when_closed(card
);
221 static struct pnp_driver snd_mpu401_pnp_driver
= {
223 .id_table
= snd_mpu401_pnpids
,
224 .probe
= snd_mpu401_pnp_probe
,
225 .remove
= snd_mpu401_pnp_remove
,
228 static struct pnp_driver snd_mpu401_pnp_driver
;
231 static void snd_mpu401_unregister_all(void)
236 pnp_unregister_driver(&snd_mpu401_pnp_driver
);
237 for (i
= 0; i
< ARRAY_SIZE(platform_devices
); ++i
)
238 platform_device_unregister(platform_devices
[i
]);
239 platform_driver_unregister(&snd_mpu401_driver
);
242 static int __init
alsa_card_mpu401_init(void)
246 if ((err
= platform_driver_register(&snd_mpu401_driver
)) < 0)
249 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
250 struct platform_device
*device
;
257 device
= platform_device_register_simple(SND_MPU401_DRIVER
,
261 if (!platform_get_drvdata(device
)) {
262 platform_device_unregister(device
);
265 platform_devices
[i
] = device
;
266 snd_mpu401_devices
++;
268 err
= pnp_register_driver(&snd_mpu401_pnp_driver
);
272 if (!snd_mpu401_devices
) {
274 printk(KERN_ERR
"MPU-401 device not found or device busy\n");
276 snd_mpu401_unregister_all();
282 static void __exit
alsa_card_mpu401_exit(void)
284 snd_mpu401_unregister_all();
287 module_init(alsa_card_mpu401_init
)
288 module_exit(alsa_card_mpu401_exit
)