Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | /* * Driver for generic MPU-401 boards (UART mode only) * Copyright (c) by Jaroslav Kysela <perex@suse.cz> * * ACPI PnP Copyright (c) 2004 by Clemens Ladisch <clemens@ladisch.de> * based on 8250_acpi.c * Copyright (c) 2002-2003 Matthew Wilcox for Hewlett-Packard * Copyright (C) 2004 Hewlett-Packard Co * Bjorn Helgaas <bjorn.helgaas@hp.com> * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include <sound/driver.h> #include <linux/init.h> #ifdef CONFIG_ACPI_BUS #include <acpi/acpi_bus.h> #endif #include <linux/moduleparam.h> #include <sound/core.h> #include <sound/mpu401.h> #include <sound/initval.h> #ifdef CONFIG_ACPI_BUS #define USE_ACPI_PNP #endif MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); MODULE_DESCRIPTION("MPU-401 UART"); MODULE_LICENSE("GPL"); MODULE_CLASSES("{sound}"); static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ #ifdef USE_ACPI_PNP static int acpipnp[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 1 }; #endif static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* MPU-401 port number */ static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* MPU-401 IRQ */ #ifdef CONFIG_X86_PC9800 static int pc98ii[SNDRV_CARDS]; /* PC98-II dauther board */ #endif static int boot_devs; module_param_array(index, int, boot_devs, 0444); MODULE_PARM_DESC(index, "Index value for MPU-401 device."); MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); module_param_array(id, charp, boot_devs, 0444); MODULE_PARM_DESC(id, "ID string for MPU-401 device."); MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); module_param_array(enable, bool, boot_devs, 0444); MODULE_PARM_DESC(enable, "Enable MPU-401 device."); MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); #ifdef USE_ACPI_PNP module_param_array(acpipnp, bool, boot_devs, 0444); MODULE_PARM_DESC(acpipnp, "ACPI PnP detection for MPU-401 device."); MODULE_PARM_SYNTAX(acpipnp, SNDRV_ENABLED "," SNDRV_BOOLEAN_TRUE_DESC); #endif module_param_array(port, long, boot_devs, 0444); MODULE_PARM_DESC(port, "Port # for MPU-401 device."); MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); module_param_array(irq, int, boot_devs, 0444); MODULE_PARM_DESC(irq, "IRQ # for MPU-401 device."); MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); #ifdef CONFIG_X86_PC9800 module_param_array(pc98ii, bool, boot_devs, 0444); MODULE_PARM_DESC(pc98ii, "Roland MPU-PC98II support."); MODULE_PARM_SYNTAX(pc98ii, SNDRV_BOOLEAN_FALSE_DESC); #endif #ifndef CONFIG_ACPI_BUS struct acpi_device; #endif static snd_card_t *snd_mpu401_legacy_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; static int cards; #ifdef USE_ACPI_PNP static int acpi_driver_registered; struct mpu401_resources { unsigned long port; int irq; }; static acpi_status __devinit snd_mpu401_acpi_resource(struct acpi_resource *res, void *data) { struct mpu401_resources *resources = (struct mpu401_resources *)data; if (res->id == ACPI_RSTYPE_IRQ) { if (res->data.irq.number_of_interrupts > 0) { #ifdef CONFIG_IA64 resources->irq = acpi_register_irq(res->data.irq.interrupts[0], res->data.irq.active_high_low, res->data.irq.edge_level); #else resources->irq = res->data.irq.interrupts[0]; #endif } } else if (res->id == ACPI_RSTYPE_IO) { if (res->data.io.range_length >= 2) { resources->port = res->data.io.min_base_address; } } return AE_OK; } static int __devinit snd_mpu401_acpi_pnp(int dev, struct acpi_device *device) { struct mpu401_resources res; acpi_status status; res.port = SNDRV_AUTO_PORT; res.irq = SNDRV_AUTO_IRQ; status = acpi_walk_resources(device->handle, METHOD_NAME__CRS, snd_mpu401_acpi_resource, &res); if (ACPI_FAILURE(status)) return -ENODEV; if (res.port == SNDRV_AUTO_PORT || res.irq == SNDRV_AUTO_IRQ) { snd_printk(KERN_ERR "no port or irq in %s _CRS\n", acpi_device_bid(device)); return -ENODEV; } port[dev] = res.port; irq[dev] = res.irq; return 0; } #endif /* USE_ACPI_PNP */ static int __devinit snd_card_mpu401_probe(int dev, struct acpi_device *device) { snd_card_t *card; int err; #ifdef USE_ACPI_PNP if (!device) { #endif if (port[dev] == SNDRV_AUTO_PORT) { snd_printk(KERN_ERR "specify port\n"); return -EINVAL; } if (irq[dev] == SNDRV_AUTO_IRQ) { snd_printk(KERN_ERR "specify or disable IRQ port\n"); return -EINVAL; } #ifdef USE_ACPI_PNP } #endif #ifdef USE_ACPI_PNP if (device && (err = snd_mpu401_acpi_pnp(dev, device)) < 0) return err; #endif card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); if (card == NULL) return -ENOMEM; strcpy(card->driver, "MPU-401 UART"); strcpy(card->shortname, card->driver); sprintf(card->longname, "%s at 0x%lx, ", card->shortname, port[dev]); if (irq[dev] >= 0) { sprintf(card->longname + strlen(card->longname), "IRQ %d", irq[dev]); } else { strcat(card->longname, "polled"); } #ifdef USE_ACPI_PNP if (device) { strcat(card->longname, ", bus id "); strlcat(card->longname, acpi_device_bid(device), sizeof(card->longname)); } #endif if (snd_mpu401_uart_new(card, 0, #ifdef CONFIG_X86_PC9800 pc98ii[dev] ? MPU401_HW_PC98II : #endif MPU401_HW_MPU401, port[dev], 0, irq[dev], irq[dev] >= 0 ? SA_INTERRUPT : 0, NULL) < 0) { printk(KERN_ERR "MPU401 not detected at 0x%lx\n", port[dev]); snd_card_free(card); return -ENODEV; } if ((err = snd_card_register(card)) < 0) { snd_card_free(card); return err; } #ifdef USE_ACPI_PNP if (device) acpi_driver_data(device) = card; else #endif snd_mpu401_legacy_cards[dev] = card; ++cards; return 0; } #ifdef USE_ACPI_PNP static int __devinit snd_mpu401_acpi_add(struct acpi_device *device) { static int dev; int err; for ( ; dev < SNDRV_CARDS; ++dev) { if (!enable[dev] || !acpipnp[dev]) continue; err = snd_card_mpu401_probe(dev, device); if (err < 0) return err; ++dev; return 0; } return -ENODEV; } static int __devexit snd_mpu401_acpi_remove(struct acpi_device *device, int type) { snd_card_t *card; if (!device) return -EINVAL; card = (snd_card_t *)acpi_driver_data(device); if (!card) return -EINVAL; snd_card_disconnect(card); snd_card_free_in_thread(card); acpi_driver_data(device) = NULL; return 0; } static struct acpi_driver snd_mpu401_acpi_driver = { .name = "MPU-401 Driver", .class = "mpu401", .ids = "PNPB006", .ops = { .add = snd_mpu401_acpi_add, .remove = __devexit_p(snd_mpu401_acpi_remove), }, }; #endif /* USE_ACPI_PNP */ static int __init alsa_card_mpu401_init(void) { int dev; #ifdef USE_ACPI_PNP if (acpi_bus_register_driver(&snd_mpu401_acpi_driver) >= 0) acpi_driver_registered = 1; #endif for (dev = 0; dev < SNDRV_CARDS; dev++) { if (!enable[dev]) continue; #ifdef USE_ACPI_PNP if (acpipnp[dev] && acpi_driver_registered) continue; #endif snd_card_mpu401_probe(dev, NULL); } if (!cards) { #ifdef MODULE printk(KERN_ERR "MPU-401 device not found or device busy\n"); #endif #ifdef USE_ACPI_PNP if (acpi_driver_registered) acpi_bus_unregister_driver(&snd_mpu401_acpi_driver); #endif return -ENODEV; } return 0; } static void __exit alsa_card_mpu401_exit(void) { int idx; #ifdef USE_ACPI_PNP if (acpi_driver_registered) acpi_bus_unregister_driver(&snd_mpu401_acpi_driver); #endif for (idx = 0; idx < SNDRV_CARDS; idx++) snd_card_free(snd_mpu401_legacy_cards[idx]); } module_init(alsa_card_mpu401_init) module_exit(alsa_card_mpu401_exit) |