1 // SPDX-License-Identifier: GPL-2.0-or-later
4 card-als100.c - driver for Avance Logic ALS100 based soundcards.
5 Copyright (C) 1999-2000 by Massimo Piccioni <dafastidio@libero.it>
6 Copyright (C) 1999-2002 by Massimo Piccioni <dafastidio@libero.it>
8 Thanks to Pierfrancesco 'qM2' Passerini.
10 Generalised for soundcards based on DT-0196 and ALS-007 chips
11 by Jonathan Woithe <jwoithe@just42.net>: June 2002.
15 #include <linux/init.h>
16 #include <linux/wait.h>
17 #include <linux/time.h>
18 #include <linux/pnp.h>
19 #include <linux/module.h>
20 #include <sound/core.h>
21 #include <sound/initval.h>
22 #include <sound/mpu401.h>
23 #include <sound/opl3.h>
26 #define PFX "als100: "
28 MODULE_DESCRIPTION("Avance Logic ALS007/ALS1X0");
29 MODULE_SUPPORTED_DEVICE("{{Diamond Technologies DT-019X},"
30 "{Avance Logic ALS-007}}"
31 "{{Avance Logic,ALS100 - PRO16PNP},"
32 "{Avance Logic,ALS110},"
33 "{Avance Logic,ALS120},"
34 "{Avance Logic,ALS200},"
36 "{Digimate,3D Sound},"
37 "{Avance Logic,ALS120},"
40 MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>");
41 MODULE_LICENSE("GPL");
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 bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE
; /* Enable this card */
46 static long port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* PnP setup */
47 static long mpu_port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* PnP setup */
48 static long fm_port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* PnP setup */
49 static int irq
[SNDRV_CARDS
] = SNDRV_DEFAULT_IRQ
; /* PnP setup */
50 static int mpu_irq
[SNDRV_CARDS
] = SNDRV_DEFAULT_IRQ
; /* PnP setup */
51 static int dma8
[SNDRV_CARDS
] = SNDRV_DEFAULT_DMA
; /* PnP setup */
52 static int dma16
[SNDRV_CARDS
] = SNDRV_DEFAULT_DMA
; /* PnP setup */
54 module_param_array(index
, int, NULL
, 0444);
55 MODULE_PARM_DESC(index
, "Index value for Avance Logic based soundcard.");
56 module_param_array(id
, charp
, NULL
, 0444);
57 MODULE_PARM_DESC(id
, "ID string for Avance Logic based soundcard.");
58 module_param_array(enable
, bool, NULL
, 0444);
59 MODULE_PARM_DESC(enable
, "Enable Avance Logic based soundcard.");
61 MODULE_ALIAS("snd-dt019x");
63 struct snd_card_als100
{
65 struct pnp_dev
*devmpu
;
66 struct pnp_dev
*devopl
;
70 static const struct pnp_card_device_id snd_als100_pnpids
[] = {
73 .devs
= { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
74 .driver_data
= SB_HW_DT019X
},
75 /* DT0196 / ALS-007 */
77 .devs
= { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
78 .driver_data
= SB_HW_DT019X
},
79 /* ALS100 - PRO16PNP */
81 .devs
= { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } },
82 .driver_data
= SB_HW_ALS100
},
83 /* ALS110 - MF1000 - Digimate 3D Sound */
85 .devs
= { { "@@@1001" }, { "@X@1001" }, { "@H@1001" } },
86 .driver_data
= SB_HW_ALS100
},
89 .devs
= { { "@@@2001" }, { "@X@2001" }, { "@H@2001" } },
90 .driver_data
= SB_HW_ALS100
},
93 .devs
= { { "@@@0020" }, { "@X@0020" }, { "@H@0001" } },
94 .driver_data
= SB_HW_ALS100
},
97 .devs
= { { "@@@0020" }, { "@X@0020" }, { "@H@0020" } },
98 .driver_data
= SB_HW_ALS100
},
101 .devs
= { { "@@@2001" }, { "@X@2001" }, { "@H@2001" } },
102 .driver_data
= SB_HW_ALS100
},
103 { .id
= "" } /* end */
106 MODULE_DEVICE_TABLE(pnp_card
, snd_als100_pnpids
);
108 static int snd_card_als100_pnp(int dev
, struct snd_card_als100
*acard
,
109 struct pnp_card_link
*card
,
110 const struct pnp_card_device_id
*id
)
112 struct pnp_dev
*pdev
;
115 acard
->dev
= pnp_request_card_device(card
, id
->devs
[0].id
, NULL
);
116 if (acard
->dev
== NULL
)
119 acard
->devmpu
= pnp_request_card_device(card
, id
->devs
[1].id
, acard
->dev
);
120 acard
->devopl
= pnp_request_card_device(card
, id
->devs
[2].id
, acard
->dev
);
124 err
= pnp_activate_dev(pdev
);
126 snd_printk(KERN_ERR PFX
"AUDIO pnp configure failure\n");
129 port
[dev
] = pnp_port_start(pdev
, 0);
130 if (id
->driver_data
== SB_HW_DT019X
)
131 dma8
[dev
] = pnp_dma(pdev
, 0);
133 dma8
[dev
] = pnp_dma(pdev
, 1);
134 dma16
[dev
] = pnp_dma(pdev
, 0);
136 irq
[dev
] = pnp_irq(pdev
, 0);
138 pdev
= acard
->devmpu
;
140 err
= pnp_activate_dev(pdev
);
143 mpu_port
[dev
] = pnp_port_start(pdev
, 0);
144 mpu_irq
[dev
] = pnp_irq(pdev
, 0);
148 pnp_release_card_device(pdev
);
149 snd_printk(KERN_ERR PFX
"MPU401 pnp configure failure, skipping\n");
151 acard
->devmpu
= NULL
;
155 pdev
= acard
->devopl
;
157 err
= pnp_activate_dev(pdev
);
160 fm_port
[dev
] = pnp_port_start(pdev
, 0);
164 pnp_release_card_device(pdev
);
165 snd_printk(KERN_ERR PFX
"OPL3 pnp configure failure, skipping\n");
167 acard
->devopl
= NULL
;
174 static int snd_card_als100_probe(int dev
,
175 struct pnp_card_link
*pcard
,
176 const struct pnp_card_device_id
*pid
)
180 struct snd_card
*card
;
181 struct snd_card_als100
*acard
;
182 struct snd_opl3
*opl3
;
184 error
= snd_card_new(&pcard
->card
->dev
,
185 index
[dev
], id
[dev
], THIS_MODULE
,
186 sizeof(struct snd_card_als100
), &card
);
189 acard
= card
->private_data
;
191 if ((error
= snd_card_als100_pnp(dev
, acard
, pcard
, pid
))) {
196 if (pid
->driver_data
== SB_HW_DT019X
)
199 error
= snd_sbdsp_create(card
, port
[dev
], irq
[dev
],
200 snd_sb16dsp_interrupt
,
201 dma8
[dev
], dma16
[dev
],
210 if (pid
->driver_data
== SB_HW_DT019X
) {
211 strcpy(card
->driver
, "DT-019X");
212 strcpy(card
->shortname
, "Diamond Tech. DT-019X");
213 snprintf(card
->longname
, sizeof(card
->longname
),
214 "Diamond Tech. DT-019X, %s at 0x%lx, irq %d, dma %d",
215 chip
->name
, chip
->port
, irq
[dev
], dma8
[dev
]);
217 strcpy(card
->driver
, "ALS100");
218 strcpy(card
->shortname
, "Avance Logic ALS100");
219 snprintf(card
->longname
, sizeof(card
->longname
),
220 "Avance Logic ALS100, %s at 0x%lx, irq %d, dma %d&%d",
221 chip
->name
, chip
->port
, irq
[dev
], dma8
[dev
],
225 if ((error
= snd_sb16dsp_pcm(chip
, 0)) < 0) {
230 if ((error
= snd_sbmixer_new(chip
)) < 0) {
235 if (mpu_port
[dev
] > 0 && mpu_port
[dev
] != SNDRV_AUTO_PORT
) {
236 int mpu_type
= MPU401_HW_ALS100
;
238 if (mpu_irq
[dev
] == SNDRV_AUTO_IRQ
)
241 if (pid
->driver_data
== SB_HW_DT019X
)
242 mpu_type
= MPU401_HW_MPU401
;
244 if (snd_mpu401_uart_new(card
, 0,
249 snd_printk(KERN_ERR PFX
"no MPU-401 device at 0x%lx\n", mpu_port
[dev
]);
252 if (fm_port
[dev
] > 0 && fm_port
[dev
] != SNDRV_AUTO_PORT
) {
253 if (snd_opl3_create(card
,
254 fm_port
[dev
], fm_port
[dev
] + 2,
255 OPL3_HW_AUTO
, 0, &opl3
) < 0) {
256 snd_printk(KERN_ERR PFX
"no OPL device at 0x%lx-0x%lx\n",
257 fm_port
[dev
], fm_port
[dev
] + 2);
259 if ((error
= snd_opl3_timer_new(opl3
, 0, 1)) < 0) {
263 if ((error
= snd_opl3_hwdep_new(opl3
, 0, 1, NULL
)) < 0) {
270 if ((error
= snd_card_register(card
)) < 0) {
274 pnp_set_card_drvdata(pcard
, card
);
278 static unsigned int als100_devices
;
280 static int snd_als100_pnp_detect(struct pnp_card_link
*card
,
281 const struct pnp_card_device_id
*id
)
286 for ( ; dev
< SNDRV_CARDS
; dev
++) {
289 res
= snd_card_als100_probe(dev
, card
, id
);
299 static void snd_als100_pnp_remove(struct pnp_card_link
*pcard
)
301 snd_card_free(pnp_get_card_drvdata(pcard
));
302 pnp_set_card_drvdata(pcard
, NULL
);
306 static int snd_als100_pnp_suspend(struct pnp_card_link
*pcard
, pm_message_t state
)
308 struct snd_card
*card
= pnp_get_card_drvdata(pcard
);
309 struct snd_card_als100
*acard
= card
->private_data
;
310 struct snd_sb
*chip
= acard
->chip
;
312 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
313 snd_sbmixer_suspend(chip
);
317 static int snd_als100_pnp_resume(struct pnp_card_link
*pcard
)
319 struct snd_card
*card
= pnp_get_card_drvdata(pcard
);
320 struct snd_card_als100
*acard
= card
->private_data
;
321 struct snd_sb
*chip
= acard
->chip
;
323 snd_sbdsp_reset(chip
);
324 snd_sbmixer_resume(chip
);
325 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
330 static struct pnp_card_driver als100_pnpc_driver
= {
331 .flags
= PNP_DRIVER_RES_DISABLE
,
333 .id_table
= snd_als100_pnpids
,
334 .probe
= snd_als100_pnp_detect
,
335 .remove
= snd_als100_pnp_remove
,
337 .suspend
= snd_als100_pnp_suspend
,
338 .resume
= snd_als100_pnp_resume
,
342 static int __init
alsa_card_als100_init(void)
346 err
= pnp_register_card_driver(&als100_pnpc_driver
);
350 if (!als100_devices
) {
351 pnp_unregister_card_driver(&als100_pnpc_driver
);
353 snd_printk(KERN_ERR
"no Avance Logic based soundcards found\n");
360 static void __exit
alsa_card_als100_exit(void)
362 pnp_unregister_card_driver(&als100_pnpc_driver
);
365 module_init(alsa_card_als100_init
)
366 module_exit(alsa_card_als100_exit
)