Do a major clean-up of the BUSDMA architecture. A large number of
[dragonfly.git] / sys / dev / sound / isa / gusc.c
1 /*
2  * Copyright (c) 1999 Seigo Tanimura
3  * Copyright (c) 1999 Ville-Pertti Keinonen
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/sound/isa/gusc.c,v 1.5.2.6 2002/04/22 15:49:30 cg Exp $
28  * $DragonFly: src/sys/dev/sound/isa/gusc.c,v 1.9 2006/10/25 20:56:02 dillon Exp $
29  */
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/bus.h>
35 #include <sys/malloc.h>
36 #include <sys/module.h>
37 #include <sys/rman.h>
38 #include <sys/soundcard.h>
39
40 #include <dev/sound/pcm/sound.h>
41 #include <dev/sound/chip.h>
42 #include "bus_if.h"
43
44 #include <bus/isa/isavar.h>
45 #include <bus/isa/isa_common.h>
46
47 SND_DECLARE_FILE("$DragonFly: src/sys/dev/sound/isa/gusc.c,v 1.9 2006/10/25 20:56:02 dillon Exp $");
48
49 #define LOGICALID_NOPNP 0
50 #define LOGICALID_PCM   0x0000561e
51 #define LOGICALID_OPL   0x0300561e
52 #define LOGICALID_MIDI  0x0400561e
53
54 /* PnP IDs */
55 static struct isa_pnp_id gusc_ids[] = {
56         {LOGICALID_PCM,  "GRV0000 Gravis UltraSound PnP PCM"},  /* GRV0000 */
57         {LOGICALID_OPL,  "GRV0003 Gravis UltraSound PnP OPL"},  /* GRV0003 */
58         {LOGICALID_MIDI, "GRV0004 Gravis UltraSound PnP MIDI"}, /* GRV0004 */
59 };
60
61 /* Interrupt handler.  */
62 struct gusc_ihandler {
63         void (*intr)(void *);
64         void *arg;
65 };
66
67 /* Here is the parameter structure per a device. */
68 struct gusc_softc {
69         device_t dev; /* device */
70         int io_rid[3]; /* io port rids */
71         struct resource *io[3]; /* io port resources */
72         int io_alloced[3]; /* io port alloc flag */
73         int irq_rid; /* irq rids */
74         struct resource *irq; /* irq resources */
75         int irq_alloced; /* irq alloc flag */
76         int drq_rid[2]; /* drq rids */
77         struct resource *drq[2]; /* drq resources */
78         int drq_alloced[2]; /* drq alloc flag */
79
80         /* Interrupts are shared (XXX non-PnP only?) */
81         struct gusc_ihandler midi_intr;
82         struct gusc_ihandler pcm_intr;
83 };
84
85 typedef struct gusc_softc *sc_p;
86
87 static int gusc_probe(device_t dev);
88 static int gusc_attach(device_t dev);
89 static int gusisa_probe(device_t dev);
90 static void gusc_intr(void *);
91 static struct resource *gusc_alloc_resource(device_t bus, device_t child, int type, int *rid,
92                                               u_long start, u_long end, u_long count, u_int flags);
93 static int gusc_release_resource(device_t bus, device_t child, int type, int rid,
94                                    struct resource *r);
95
96 static device_t find_masterdev(sc_p scp);
97 static int alloc_resource(sc_p scp);
98 static int release_resource(sc_p scp);
99
100 static devclass_t gusc_devclass;
101
102 static int
103 gusc_probe(device_t dev)
104 {
105         device_t child;
106         u_int32_t logical_id;
107         char *s;
108         struct sndcard_func *func;
109         int ret;
110
111         logical_id = isa_get_logicalid(dev);
112         s = NULL;
113
114         /* Check isapnp ids */
115         if (logical_id != 0 && (ret = ISA_PNP_PROBE(device_get_parent(dev), dev, gusc_ids)) != 0)
116                 return (ret);
117         else {
118                 if (logical_id == 0)
119                         return gusisa_probe(dev);
120         }
121
122         switch (logical_id) {
123         case LOGICALID_PCM:
124                 s = "Gravis UltraSound Plug & Play PCM";
125                 func = kmalloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
126                 if (func == NULL)
127                         return (ENOMEM);
128                 func->func = SCF_PCM;
129                 child = device_add_child(dev, "pcm", -1);
130                 device_set_ivars(child, func);
131                 break;
132         case LOGICALID_OPL:
133                 s = "Gravis UltraSound Plug & Play OPL";
134                 func = kmalloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
135                 if (func == NULL)
136                         return (ENOMEM);
137                 func->func = SCF_SYNTH;
138                 child = device_add_child(dev, "midi", -1);
139                 device_set_ivars(child, func);
140                 break;
141         case LOGICALID_MIDI:
142                 s = "Gravis UltraSound Plug & Play MIDI";
143                 func = kmalloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
144                 if (func == NULL)
145                         return (ENOMEM);
146                 func->func = SCF_MIDI;
147                 child = device_add_child(dev, "midi", -1);
148                 device_set_ivars(child, func);
149                 break;
150         }
151
152         if (s != NULL) {
153                 device_set_desc(dev, s);
154                 return (0);
155         }
156
157         return (ENXIO);
158 }
159
160 static void
161 port_wr(struct resource *r, int i, unsigned char v)
162 {
163         bus_space_write_1(rman_get_bustag(r), rman_get_bushandle(r), i, v);
164 }
165
166 static int
167 port_rd(struct resource *r, int i)
168 {
169         return bus_space_read_1(rman_get_bustag(r), rman_get_bushandle(r), i);
170 }
171
172 /*
173  * Probe for an old (non-PnP) GUS card on the ISA bus.
174  */
175
176 static int
177 gusisa_probe(device_t dev)
178 {
179         device_t child;
180         struct resource *res, *res2;
181         int base, rid, rid2, flags;
182         unsigned char val;
183
184         base = isa_get_port(dev);
185         flags = device_get_flags(dev);
186         rid = 1;
187         res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, base + 0x100,
188                                  base + 0x107, 8, RF_ACTIVE);
189
190         if (res == NULL)
191                 return ENXIO;
192
193         res2 = NULL;
194
195         /*
196          * Check for the presence of some GUS card.  Reset the card,
197          * then see if we can access the memory on it.
198          */
199
200         port_wr(res, 3, 0x4c);
201         port_wr(res, 5, 0);
202         DELAY(30 * 1000);
203
204         port_wr(res, 3, 0x4c);
205         port_wr(res, 5, 1);
206         DELAY(30 * 1000);
207
208         crit_enter();
209
210         /* Write to DRAM.  */
211
212         port_wr(res, 3, 0x43);          /* Register select */
213         port_wr(res, 4, 0);             /* Low addr */
214         port_wr(res, 5, 0);             /* Med addr */
215
216         port_wr(res, 3, 0x44);          /* Register select */
217         port_wr(res, 4, 0);             /* High addr */
218         port_wr(res, 7, 0x55);          /* DRAM */
219
220         /* Read from DRAM.  */
221
222         port_wr(res, 3, 0x43);          /* Register select */
223         port_wr(res, 4, 0);             /* Low addr */
224         port_wr(res, 5, 0);             /* Med addr */
225
226         port_wr(res, 3, 0x44);          /* Register select */
227         port_wr(res, 4, 0);             /* High addr */
228         val = port_rd(res, 7);          /* DRAM */
229
230         crit_exit();
231
232         if (val != 0x55)
233                 goto fail;
234
235         rid2 = 0;
236         res2 = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid2, base, base, 1,
237                                   RF_ACTIVE);
238
239         if (res2 == NULL)
240                 goto fail;
241
242         crit_enter();
243         port_wr(res2, 0x0f, 0x20);
244         val = port_rd(res2, 0x0f);
245         crit_exit();
246
247         if (val == 0xff || (val & 0x06) == 0)
248                 val = 0;
249         else {
250                 val = port_rd(res2, 0x506);     /* XXX Out of range.  */
251                 if (val == 0xff)
252                         val = 0;
253         }
254
255         bus_release_resource(dev, SYS_RES_IOPORT, rid2, res2);
256         bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
257
258         if (val >= 10) {
259                 struct sndcard_func *func;
260
261                 /* Looks like a GUS MAX.  Set the rest of the resources.  */
262
263                 bus_set_resource(dev, SYS_RES_IOPORT, 2, base + 0x10c, 8);
264
265                 if (flags & DV_F_DUAL_DMA)
266                         bus_set_resource(dev, SYS_RES_DRQ, 1,
267                                          flags & DV_F_DRQ_MASK, 1);
268
269                 /* We can support the CS4231 and MIDI devices.  */
270
271                 func = kmalloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
272                 if (func == NULL)
273                         return ENOMEM;
274                 func->func = SCF_MIDI;
275                 child = device_add_child(dev, "midi", -1);
276                 device_set_ivars(child, func);
277
278                 func = kmalloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
279                 if (func == NULL)
280                         printf("xxx: gus pcm not attached, out of memory\n");
281                 else {
282                         func->func = SCF_PCM;
283                         child = device_add_child(dev, "pcm", -1);
284                         device_set_ivars(child, func);
285                 }
286                 device_set_desc(dev, "Gravis UltraSound MAX");
287                 return 0;
288         } else {
289
290                 /*
291                  * TODO: Support even older GUS cards.  MIDI should work on
292                  * all models.
293                  */
294                 return ENXIO;
295         }
296
297 fail:
298         bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
299         return ENXIO;
300 }
301
302 static int
303 gusc_attach(device_t dev)
304 {
305         sc_p scp;
306         int unit;
307         void *ih;
308
309         scp = device_get_softc(dev);
310         unit = device_get_unit(dev);
311
312         bzero(scp, sizeof(*scp));
313
314         scp->dev = dev;
315         if (alloc_resource(scp)) {
316                 release_resource(scp);
317                 return (ENXIO);
318         }
319
320         if (scp->irq != NULL) {
321                 bus_setup_intr(dev, scp->irq, 0, gusc_intr, scp, &ih, NULL);
322         }
323         bus_generic_attach(dev);
324
325         return (0);
326 }
327
328 /*
329  * Handle interrupts on GUS devices until there aren't any left.
330  */
331 static void
332 gusc_intr(void *arg)
333 {
334         sc_p scp = (sc_p)arg;
335         int did_something;
336
337         do {
338                 did_something = 0;
339                 if (scp->pcm_intr.intr != NULL &&
340                     (port_rd(scp->io[2], 2) & 1)) {
341                         (*scp->pcm_intr.intr)(scp->pcm_intr.arg);
342                         did_something = 1;
343                 }
344                 if (scp->midi_intr.intr != NULL &&
345                     (port_rd(scp->io[1], 0) & 0x80)) {
346                         (*scp->midi_intr.intr)(scp->midi_intr.arg);
347                         did_something = 1;
348                 }
349         } while (did_something != 0);
350 }
351
352 static struct resource *
353 gusc_alloc_resource(device_t bus, device_t child, int type, int *rid,
354                       u_long start, u_long end, u_long count, u_int flags)
355 {
356         sc_p scp;
357         int *alloced, rid_max, alloced_max;
358         struct resource **res;
359
360         scp = device_get_softc(bus);
361         switch (type) {
362         case SYS_RES_IOPORT:
363                 alloced = scp->io_alloced;
364                 res = scp->io;
365                 rid_max = 2;
366                 alloced_max = 2; /* pcm + midi (more to include synth) */
367                 break;
368         case SYS_RES_IRQ:
369                 alloced = &scp->irq_alloced;
370                 res = &scp->irq;
371                 rid_max = 0;
372                 alloced_max = 2; /* pcm and midi share the single irq. */
373                 break;
374         case SYS_RES_DRQ:
375                 alloced = scp->drq_alloced;
376                 res = scp->drq;
377                 rid_max = 1;
378                 alloced_max = 1;
379                 break;
380         default:
381                 return (NULL);
382         }
383
384         if (*rid > rid_max || alloced[*rid] == alloced_max)
385                 return (NULL);
386
387         alloced[*rid]++;
388         return (res[*rid]);
389 }
390
391 static int
392 gusc_release_resource(device_t bus, device_t child, int type, int rid,
393                         struct resource *r)
394 {
395         sc_p scp;
396         int *alloced, rid_max;
397
398         scp = device_get_softc(bus);
399         switch (type) {
400         case SYS_RES_IOPORT:
401                 alloced = scp->io_alloced;
402                 rid_max = 2;
403                 break;
404         case SYS_RES_IRQ:
405                 alloced = &scp->irq_alloced;
406                 rid_max = 0;
407                 break;
408         case SYS_RES_DRQ:
409                 alloced = scp->drq_alloced;
410                 rid_max = 1;
411                 break;
412         default:
413                 return (1);
414         }
415
416         if (rid > rid_max || alloced[rid] == 0)
417                 return (1);
418
419         alloced[rid]--;
420         return (0);
421 }
422
423 static int
424 gusc_setup_intr(device_t dev, device_t child, struct resource *irq,
425                 int flags, driver_intr_t *intr, void *arg, 
426                 void **cookiep, lwkt_serialize_t serializer)
427 {
428         sc_p scp = (sc_p)device_get_softc(dev);
429         devclass_t devclass;
430
431         devclass = device_get_devclass(child);
432         if (strcmp(devclass_get_name(devclass), "midi") == 0) {
433                 scp->midi_intr.intr = intr;
434                 scp->midi_intr.arg = arg;
435                 return 0;
436         } else if (strcmp(devclass_get_name(devclass), "pcm") == 0) {
437                 scp->pcm_intr.intr = intr;
438                 scp->pcm_intr.arg = arg;
439                 return 0;
440         }
441         return bus_generic_setup_intr(dev, child, irq, flags, intr,
442                                       arg, cookiep, serializer);
443 }
444
445 static device_t
446 find_masterdev(sc_p scp)
447 {
448         int i, units;
449         devclass_t devclass;
450         device_t dev;
451
452         devclass = device_get_devclass(scp->dev);
453         units = devclass_get_maxunit(devclass);
454         dev = NULL;
455         for (i = 0 ; i < units ; i++) {
456                 dev = devclass_get_device(devclass, i);
457                 if (isa_get_vendorid(dev) == isa_get_vendorid(scp->dev)
458                     && isa_get_logicalid(dev) == LOGICALID_PCM
459                     && isa_get_serial(dev) == isa_get_serial(scp->dev))
460                         break;
461         }
462         if (i == units)
463                 return (NULL);
464
465         return (dev);
466 }
467
468 static int io_range[3]  = {0x10, 0x8  , 0x4  };
469 static int io_offset[3] = {0x0 , 0x100, 0x10c};
470 static int
471 alloc_resource(sc_p scp)
472 {
473         int i, base, lid, flags;
474         device_t dev;
475
476         flags = 0;
477         if (isa_get_vendorid(scp->dev))
478                 lid = isa_get_logicalid(scp->dev);
479         else {
480                 lid = LOGICALID_NOPNP;
481                 flags = device_get_flags(scp->dev);
482         }
483         switch(lid) {
484         case LOGICALID_PCM:
485         case LOGICALID_NOPNP:           /* XXX Non-PnP */
486                 if (lid == LOGICALID_NOPNP)
487                         base = isa_get_port(scp->dev);
488                 else
489                         base = 0;
490                 for (i = 0 ; i < sizeof(scp->io) / sizeof(*scp->io) ; i++) {
491                         if (scp->io[i] == NULL) {
492                                 scp->io_rid[i] = i;
493                                 if (base == 0)
494                                         scp->io[i] = bus_alloc_resource(scp->dev, SYS_RES_IOPORT, &scp->io_rid[i],
495                                                                         0, ~0, io_range[i], RF_ACTIVE);
496                                 else
497                                         scp->io[i] = bus_alloc_resource(scp->dev, SYS_RES_IOPORT, &scp->io_rid[i],
498                                                                         base + io_offset[i],
499                                                                         base + io_offset[i] + io_range[i] - 1
500                                                                         , io_range[i], RF_ACTIVE);
501                                 if (scp->io[i] == NULL)
502                                         return (1);
503                                 scp->io_alloced[i] = 0;
504                         }
505                 }
506                 if (scp->irq == NULL) {
507                         scp->irq_rid = 0;
508                         scp->irq = bus_alloc_resource(scp->dev, SYS_RES_IRQ, &scp->irq_rid,
509                                                       0, ~0, 1, RF_ACTIVE | RF_SHAREABLE);
510                         if (scp->irq == NULL)
511                                 return (1);
512                         scp->irq_alloced = 0;
513                 }
514                 for (i = 0 ; i < sizeof(scp->drq) / sizeof(*scp->drq) ; i++) {
515                         if (scp->drq[i] == NULL) {
516                                 scp->drq_rid[i] = i;
517                                 if (base == 0 || i == 0)
518                                         scp->drq[i] = bus_alloc_resource(scp->dev, SYS_RES_DRQ, &scp->drq_rid[i],
519                                                                          0, ~0, 1, RF_ACTIVE);
520                                 else if ((flags & DV_F_DUAL_DMA) != 0)
521                                         /* XXX The secondary drq is specified in the flag. */
522                                         scp->drq[i] = bus_alloc_resource(scp->dev, SYS_RES_DRQ, &scp->drq_rid[i],
523                                                                          flags & DV_F_DRQ_MASK,
524                                                                          flags & DV_F_DRQ_MASK, 1, RF_ACTIVE);
525                                 if (scp->drq[i] == NULL)
526                                         return (1);
527                                 scp->drq_alloced[i] = 0;
528                         }
529                 }
530                 break;
531         case LOGICALID_OPL:
532                 if (scp->io[0] == NULL) {
533                         scp->io_rid[0] = 0;
534                         scp->io[0] = bus_alloc_resource(scp->dev, SYS_RES_IOPORT, &scp->io_rid[0],
535                                                         0, ~0, io_range[0], RF_ACTIVE);
536                         if (scp->io[0] == NULL)
537                                 return (1);
538                         scp->io_alloced[0] = 0;
539                 }
540                 break;
541         case LOGICALID_MIDI:
542                 if (scp->io[0] == NULL) {
543                         scp->io_rid[0] = 0;
544                         scp->io[0] = bus_alloc_resource(scp->dev, SYS_RES_IOPORT, &scp->io_rid[0],
545                                                         0, ~0, io_range[0], RF_ACTIVE);
546                         if (scp->io[0] == NULL)
547                                 return (1);
548                         scp->io_alloced[0] = 0;
549                 }
550                 if (scp->irq == NULL) {
551                         /* The irq is shared with pcm audio. */
552                         dev = find_masterdev(scp);
553                         if (dev == NULL)
554                                 return (1);
555                         scp->irq_rid = 0;
556                         scp->irq = BUS_ALLOC_RESOURCE(dev, NULL, SYS_RES_IRQ, &scp->irq_rid,
557                                                       0, ~0, 1, RF_ACTIVE | RF_SHAREABLE);
558                         if (scp->irq == NULL)
559                                 return (1);
560                         scp->irq_alloced = 0;
561                 }
562                 break;
563         }
564         return (0);
565 }
566
567 static int
568 release_resource(sc_p scp)
569 {
570         int i, lid, flags;
571         device_t dev;
572
573         flags = 0;
574         if (isa_get_vendorid(scp->dev))
575                 lid = isa_get_logicalid(scp->dev);
576         else {
577                 lid = LOGICALID_NOPNP;
578                 flags = device_get_flags(scp->dev);
579         }
580         switch(lid) {
581         case LOGICALID_PCM:
582         case LOGICALID_NOPNP:           /* XXX Non-PnP */
583                 for (i = 0 ; i < sizeof(scp->io) / sizeof(*scp->io) ; i++) {
584                         if (scp->io[i] != NULL) {
585                                 bus_release_resource(scp->dev, SYS_RES_IOPORT, scp->io_rid[i], scp->io[i]);
586                                 scp->io[i] = NULL;
587                         }
588                 }
589                 if (scp->irq != NULL) {
590                         bus_release_resource(scp->dev, SYS_RES_IRQ, scp->irq_rid, scp->irq);
591                         scp->irq = NULL;
592                 }
593                 for (i = 0 ; i < sizeof(scp->drq) / sizeof(*scp->drq) ; i++) {
594                         if (scp->drq[i] != NULL) {
595                                 bus_release_resource(scp->dev, SYS_RES_DRQ, scp->drq_rid[i], scp->drq[i]);
596                                 scp->drq[i] = NULL;
597                         }
598                 }
599                 break;
600         case LOGICALID_OPL:
601                 if (scp->io[0] != NULL) {
602                         bus_release_resource(scp->dev, SYS_RES_IOPORT, scp->io_rid[0], scp->io[0]);
603                         scp->io[0] = NULL;
604                 }
605                 break;
606         case LOGICALID_MIDI:
607                 if (scp->io[0] != NULL) {
608                         bus_release_resource(scp->dev, SYS_RES_IOPORT, scp->io_rid[0], scp->io[0]);
609                         scp->io[0] = NULL;
610                 }
611                 if (scp->irq != NULL) {
612                         /* The irq is shared with pcm audio. */
613                         dev = find_masterdev(scp);
614                         if (dev == NULL)
615                                 return (1);
616                         BUS_RELEASE_RESOURCE(dev, NULL, SYS_RES_IOPORT, scp->irq_rid, scp->irq);
617                         scp->irq = NULL;
618                 }
619                 break;
620         }
621         return (0);
622 }
623
624 static device_method_t gusc_methods[] = {
625         /* Device interface */
626         DEVMETHOD(device_probe,         gusc_probe),
627         DEVMETHOD(device_attach,        gusc_attach),
628         DEVMETHOD(device_detach,        bus_generic_detach),
629         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
630         DEVMETHOD(device_suspend,       bus_generic_suspend),
631         DEVMETHOD(device_resume,        bus_generic_resume),
632
633         /* Bus interface */
634         DEVMETHOD(bus_print_child,      bus_generic_print_child),
635         DEVMETHOD(bus_alloc_resource,   gusc_alloc_resource),
636         DEVMETHOD(bus_release_resource, gusc_release_resource),
637         DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
638         DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
639         DEVMETHOD(bus_setup_intr,       gusc_setup_intr),
640         DEVMETHOD(bus_teardown_intr,    bus_generic_teardown_intr),
641
642         { 0, 0 }
643 };
644
645 static driver_t gusc_driver = {
646         "gusc",
647         gusc_methods,
648         sizeof(struct gusc_softc),
649 };
650
651 /*
652  * gusc can be attached to an isa bus.
653  */
654 DRIVER_MODULE(snd_gusc, isa, gusc_driver, gusc_devclass, 0, 0);
655 MODULE_DEPEND(snd_gusc, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER);
656 MODULE_VERSION(snd_gusc, 1);
657
658