Merge tag 'ktest-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[sfrench/cifs-2.6.git] / sound / isa / sb / jazz16.c
1
2 /*
3  * jazz16.c - driver for Media Vision Jazz16 based soundcards.
4  * Copyright (C) 2009 Krzysztof Helt <krzysztof.h1@wp.pl>
5  * Based on patches posted by Rask Ingemann Lambertsen and Rene Herman.
6  * Based on OSS Sound Blaster driver.
7  *
8  * This file is subject to the terms and conditions of the GNU General Public
9  * License.  See the file COPYING in the main directory of this archive for
10  * more details.
11  *
12  */
13
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/io.h>
17 #include <linux/delay.h>
18 #include <asm/dma.h>
19 #include <linux/isa.h>
20 #include <sound/core.h>
21 #include <sound/mpu401.h>
22 #include <sound/opl3.h>
23 #include <sound/sb.h>
24 #define SNDRV_LEGACY_FIND_FREE_IRQ
25 #define SNDRV_LEGACY_FIND_FREE_DMA
26 #include <sound/initval.h>
27
28 #define PFX "jazz16: "
29
30 MODULE_DESCRIPTION("Media Vision Jazz16");
31 MODULE_AUTHOR("Krzysztof Helt <krzysztof.h1@wp.pl>");
32 MODULE_LICENSE("GPL");
33
34 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
35 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
36 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
37 static unsigned long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
38 static unsigned long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
39 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
40 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
41 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
42 static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
43
44 module_param_array(index, int, NULL, 0444);
45 MODULE_PARM_DESC(index, "Index value for Media Vision Jazz16 based soundcard.");
46 module_param_array(id, charp, NULL, 0444);
47 MODULE_PARM_DESC(id, "ID string for Media Vision Jazz16 based soundcard.");
48 module_param_array(enable, bool, NULL, 0444);
49 MODULE_PARM_DESC(enable, "Enable Media Vision Jazz16 based soundcard.");
50 module_param_hw_array(port, long, ioport, NULL, 0444);
51 MODULE_PARM_DESC(port, "Port # for jazz16 driver.");
52 module_param_hw_array(mpu_port, long, ioport, NULL, 0444);
53 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for jazz16 driver.");
54 module_param_hw_array(irq, int, irq, NULL, 0444);
55 MODULE_PARM_DESC(irq, "IRQ # for jazz16 driver.");
56 module_param_hw_array(mpu_irq, int, irq, NULL, 0444);
57 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for jazz16 driver.");
58 module_param_hw_array(dma8, int, dma, NULL, 0444);
59 MODULE_PARM_DESC(dma8, "DMA8 # for jazz16 driver.");
60 module_param_hw_array(dma16, int, dma, NULL, 0444);
61 MODULE_PARM_DESC(dma16, "DMA16 # for jazz16 driver.");
62
63 #define SB_JAZZ16_WAKEUP        0xaf
64 #define SB_JAZZ16_SET_PORTS     0x50
65 #define SB_DSP_GET_JAZZ_BRD_REV 0xfa
66 #define SB_JAZZ16_SET_DMAINTR   0xfb
67 #define SB_DSP_GET_JAZZ_MODEL   0xfe
68
69 struct snd_card_jazz16 {
70         struct snd_sb *chip;
71 };
72
73 static irqreturn_t jazz16_interrupt(int irq, void *chip)
74 {
75         return snd_sb8dsp_interrupt(chip);
76 }
77
78 static int jazz16_configure_ports(unsigned long port,
79                                   unsigned long mpu_port, int idx)
80 {
81         unsigned char val;
82
83         if (!request_region(0x201, 1, "jazz16 config")) {
84                 snd_printk(KERN_ERR "config port region is already in use.\n");
85                 return -EBUSY;
86         }
87         outb(SB_JAZZ16_WAKEUP - idx, 0x201);
88         udelay(100);
89         outb(SB_JAZZ16_SET_PORTS + idx, 0x201);
90         udelay(100);
91         val = port & 0x70;
92         val |= (mpu_port & 0x30) >> 4;
93         outb(val, 0x201);
94
95         release_region(0x201, 1);
96         return 0;
97 }
98
99 static int jazz16_detect_board(unsigned long port,
100                                unsigned long mpu_port)
101 {
102         int err;
103         int val;
104         struct snd_sb chip;
105
106         if (!request_region(port, 0x10, "jazz16")) {
107                 snd_printk(KERN_ERR "I/O port region is already in use.\n");
108                 return -EBUSY;
109         }
110         /* just to call snd_sbdsp_command/reset/get_byte() */
111         chip.port = port;
112
113         err = snd_sbdsp_reset(&chip);
114         if (err < 0)
115                 for (val = 0; val < 4; val++) {
116                         err = jazz16_configure_ports(port, mpu_port, val);
117                         if (err < 0)
118                                 break;
119
120                         err = snd_sbdsp_reset(&chip);
121                         if (!err)
122                                 break;
123                 }
124         if (err < 0) {
125                 err = -ENODEV;
126                 goto err_unmap;
127         }
128         if (!snd_sbdsp_command(&chip, SB_DSP_GET_JAZZ_BRD_REV)) {
129                 err = -EBUSY;
130                 goto err_unmap;
131         }
132         val = snd_sbdsp_get_byte(&chip);
133         if (val >= 0x30)
134                 snd_sbdsp_get_byte(&chip);
135
136         if ((val & 0xf0) != 0x10) {
137                 err = -ENODEV;
138                 goto err_unmap;
139         }
140         if (!snd_sbdsp_command(&chip, SB_DSP_GET_JAZZ_MODEL)) {
141                 err = -EBUSY;
142                 goto err_unmap;
143         }
144         snd_sbdsp_get_byte(&chip);
145         err = snd_sbdsp_get_byte(&chip);
146         snd_printd("Media Vision Jazz16 board detected: rev 0x%x, model 0x%x\n",
147                    val, err);
148
149         err = 0;
150
151 err_unmap:
152         release_region(port, 0x10);
153         return err;
154 }
155
156 static int jazz16_configure_board(struct snd_sb *chip, int mpu_irq)
157 {
158         static const unsigned char jazz_irq_bits[] = { 0, 0, 2, 3, 0, 1, 0, 4,
159                                                  0, 2, 5, 0, 0, 0, 0, 6 };
160         static const unsigned char jazz_dma_bits[] = { 0, 1, 0, 2, 0, 3, 0, 4 };
161
162         if (jazz_dma_bits[chip->dma8] == 0 ||
163             jazz_dma_bits[chip->dma16] == 0 ||
164             jazz_irq_bits[chip->irq] == 0)
165                 return -EINVAL;
166
167         if (!snd_sbdsp_command(chip, SB_JAZZ16_SET_DMAINTR))
168                 return -EBUSY;
169
170         if (!snd_sbdsp_command(chip,
171                                jazz_dma_bits[chip->dma8] |
172                                (jazz_dma_bits[chip->dma16] << 4)))
173                 return -EBUSY;
174
175         if (!snd_sbdsp_command(chip,
176                                jazz_irq_bits[chip->irq] |
177                                (jazz_irq_bits[mpu_irq] << 4)))
178                 return -EBUSY;
179
180         return 0;
181 }
182
183 static int snd_jazz16_match(struct device *devptr, unsigned int dev)
184 {
185         if (!enable[dev])
186                 return 0;
187         if (port[dev] == SNDRV_AUTO_PORT) {
188                 snd_printk(KERN_ERR "please specify port\n");
189                 return 0;
190         } else if (port[dev] == 0x200 || (port[dev] & ~0x270)) {
191                 snd_printk(KERN_ERR "incorrect port specified\n");
192                 return 0;
193         }
194         if (dma8[dev] != SNDRV_AUTO_DMA &&
195             dma8[dev] != 1 && dma8[dev] != 3) {
196                 snd_printk(KERN_ERR "dma8 must be 1 or 3\n");
197                 return 0;
198         }
199         if (dma16[dev] != SNDRV_AUTO_DMA &&
200             dma16[dev] != 5 && dma16[dev] != 7) {
201                 snd_printk(KERN_ERR "dma16 must be 5 or 7\n");
202                 return 0;
203         }
204         if (mpu_port[dev] != SNDRV_AUTO_PORT &&
205             (mpu_port[dev] & ~0x030) != 0x300) {
206                 snd_printk(KERN_ERR "incorrect mpu_port specified\n");
207                 return 0;
208         }
209         if (mpu_irq[dev] != SNDRV_AUTO_DMA &&
210             mpu_irq[dev] != 2 && mpu_irq[dev] != 3 &&
211             mpu_irq[dev] != 5 && mpu_irq[dev] != 7) {
212                 snd_printk(KERN_ERR "mpu_irq must be 2, 3, 5 or 7\n");
213                 return 0;
214         }
215         return 1;
216 }
217
218 static int snd_jazz16_probe(struct device *devptr, unsigned int dev)
219 {
220         struct snd_card *card;
221         struct snd_card_jazz16 *jazz16;
222         struct snd_sb *chip;
223         struct snd_opl3 *opl3;
224         static const int possible_irqs[] = {2, 3, 5, 7, 9, 10, 15, -1};
225         static const int possible_dmas8[] = {1, 3, -1};
226         static const int possible_dmas16[] = {5, 7, -1};
227         int err, xirq, xdma8, xdma16, xmpu_port, xmpu_irq;
228
229         err = snd_card_new(devptr, index[dev], id[dev], THIS_MODULE,
230                            sizeof(struct snd_card_jazz16), &card);
231         if (err < 0)
232                 return err;
233
234         jazz16 = card->private_data;
235
236         xirq = irq[dev];
237         if (xirq == SNDRV_AUTO_IRQ) {
238                 xirq = snd_legacy_find_free_irq(possible_irqs);
239                 if (xirq < 0) {
240                         snd_printk(KERN_ERR "unable to find a free IRQ\n");
241                         err = -EBUSY;
242                         goto err_free;
243                 }
244         }
245         xdma8 = dma8[dev];
246         if (xdma8 == SNDRV_AUTO_DMA) {
247                 xdma8 = snd_legacy_find_free_dma(possible_dmas8);
248                 if (xdma8 < 0) {
249                         snd_printk(KERN_ERR "unable to find a free DMA8\n");
250                         err = -EBUSY;
251                         goto err_free;
252                 }
253         }
254         xdma16 = dma16[dev];
255         if (xdma16 == SNDRV_AUTO_DMA) {
256                 xdma16 = snd_legacy_find_free_dma(possible_dmas16);
257                 if (xdma16 < 0) {
258                         snd_printk(KERN_ERR "unable to find a free DMA16\n");
259                         err = -EBUSY;
260                         goto err_free;
261                 }
262         }
263
264         xmpu_port = mpu_port[dev];
265         if (xmpu_port == SNDRV_AUTO_PORT)
266                 xmpu_port = 0;
267         err = jazz16_detect_board(port[dev], xmpu_port);
268         if (err < 0) {
269                 printk(KERN_ERR "Media Vision Jazz16 board not detected\n");
270                 goto err_free;
271         }
272         err = snd_sbdsp_create(card, port[dev], irq[dev],
273                                jazz16_interrupt,
274                                dma8[dev], dma16[dev],
275                                SB_HW_JAZZ16,
276                                &chip);
277         if (err < 0)
278                 goto err_free;
279
280         xmpu_irq = mpu_irq[dev];
281         if (xmpu_irq == SNDRV_AUTO_IRQ || mpu_port[dev] == SNDRV_AUTO_PORT)
282                 xmpu_irq = 0;
283         err = jazz16_configure_board(chip, xmpu_irq);
284         if (err < 0) {
285                 printk(KERN_ERR "Media Vision Jazz16 configuration failed\n");
286                 goto err_free;
287         }
288
289         jazz16->chip = chip;
290
291         strcpy(card->driver, "jazz16");
292         strcpy(card->shortname, "Media Vision Jazz16");
293         sprintf(card->longname,
294                 "Media Vision Jazz16 at 0x%lx, irq %d, dma8 %d, dma16 %d",
295                 port[dev], xirq, xdma8, xdma16);
296
297         err = snd_sb8dsp_pcm(chip, 0);
298         if (err < 0)
299                 goto err_free;
300         err = snd_sbmixer_new(chip);
301         if (err < 0)
302                 goto err_free;
303
304         err = snd_opl3_create(card, chip->port, chip->port + 2,
305                               OPL3_HW_AUTO, 1, &opl3);
306         if (err < 0)
307                 snd_printk(KERN_WARNING "no OPL device at 0x%lx-0x%lx\n",
308                            chip->port, chip->port + 2);
309         else {
310                 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL);
311                 if (err < 0)
312                         goto err_free;
313         }
314         if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) {
315                 if (mpu_irq[dev] == SNDRV_AUTO_IRQ)
316                         mpu_irq[dev] = -1;
317
318                 if (snd_mpu401_uart_new(card, 0,
319                                         MPU401_HW_MPU401,
320                                         mpu_port[dev], 0,
321                                         mpu_irq[dev],
322                                         NULL) < 0)
323                         snd_printk(KERN_ERR "no MPU-401 device at 0x%lx\n",
324                                         mpu_port[dev]);
325         }
326
327         err = snd_card_register(card);
328         if (err < 0)
329                 goto err_free;
330
331         dev_set_drvdata(devptr, card);
332         return 0;
333
334 err_free:
335         snd_card_free(card);
336         return err;
337 }
338
339 static void snd_jazz16_remove(struct device *devptr, unsigned int dev)
340 {
341         struct snd_card *card = dev_get_drvdata(devptr);
342
343         snd_card_free(card);
344 }
345
346 #ifdef CONFIG_PM
347 static int snd_jazz16_suspend(struct device *pdev, unsigned int n,
348                                pm_message_t state)
349 {
350         struct snd_card *card = dev_get_drvdata(pdev);
351         struct snd_card_jazz16 *acard = card->private_data;
352         struct snd_sb *chip = acard->chip;
353
354         snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
355         snd_sbmixer_suspend(chip);
356         return 0;
357 }
358
359 static int snd_jazz16_resume(struct device *pdev, unsigned int n)
360 {
361         struct snd_card *card = dev_get_drvdata(pdev);
362         struct snd_card_jazz16 *acard = card->private_data;
363         struct snd_sb *chip = acard->chip;
364
365         snd_sbdsp_reset(chip);
366         snd_sbmixer_resume(chip);
367         snd_power_change_state(card, SNDRV_CTL_POWER_D0);
368         return 0;
369 }
370 #endif
371
372 static struct isa_driver snd_jazz16_driver = {
373         .match          = snd_jazz16_match,
374         .probe          = snd_jazz16_probe,
375         .remove         = snd_jazz16_remove,
376 #ifdef CONFIG_PM
377         .suspend        = snd_jazz16_suspend,
378         .resume         = snd_jazz16_resume,
379 #endif
380         .driver         = {
381                 .name   = "jazz16"
382         },
383 };
384
385 module_isa_driver(snd_jazz16_driver, SNDRV_CARDS);