1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <linux/init.h>
25#include <linux/err.h>
26#include <linux/isa.h>
27#include <linux/delay.h>
28#include <linux/pnp.h>
29#include <linux/spinlock.h>
30#include <linux/moduleparam.h>
31#include <asm/dma.h>
32#include <sound/core.h>
33#include <sound/hwdep.h>
34#include <sound/wss.h>
35#include <sound/mpu401.h>
36#include <sound/initval.h>
37
38#include <sound/sscape_ioctl.h>
39
40
41MODULE_AUTHOR("Chris Rankin");
42MODULE_DESCRIPTION("ENSONIQ SoundScape PnP driver");
43MODULE_LICENSE("GPL");
44
45static int index[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IDX;
46static char* id[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_STR;
47static long port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT;
48static long wss_port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT;
49static int irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ;
50static int mpu_irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ;
51static int dma[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA;
52static int dma2[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA;
53
54module_param_array(index, int, NULL, 0444);
55MODULE_PARM_DESC(index, "Index number for SoundScape soundcard");
56
57module_param_array(id, charp, NULL, 0444);
58MODULE_PARM_DESC(id, "Description for SoundScape card");
59
60module_param_array(port, long, NULL, 0444);
61MODULE_PARM_DESC(port, "Port # for SoundScape driver.");
62
63module_param_array(wss_port, long, NULL, 0444);
64MODULE_PARM_DESC(wss_port, "WSS Port # for SoundScape driver.");
65
66module_param_array(irq, int, NULL, 0444);
67MODULE_PARM_DESC(irq, "IRQ # for SoundScape driver.");
68
69module_param_array(mpu_irq, int, NULL, 0444);
70MODULE_PARM_DESC(mpu_irq, "MPU401 IRQ # for SoundScape driver.");
71
72module_param_array(dma, int, NULL, 0444);
73MODULE_PARM_DESC(dma, "DMA # for SoundScape driver.");
74
75module_param_array(dma2, int, NULL, 0444);
76MODULE_PARM_DESC(dma2, "DMA2 # for SoundScape driver.");
77
78#ifdef CONFIG_PNP
79static int isa_registered;
80static int pnp_registered;
81
82static struct pnp_card_device_id sscape_pnpids[] = {
83 { .id = "ENS3081", .devs = { { "ENS0000" } } },
84 { .id = "ENS4081", .devs = { { "ENS1011" } } },
85 { .id = "" }
86};
87
88MODULE_DEVICE_TABLE(pnp_card, sscape_pnpids);
89#endif
90
91
92#define MPU401_IO(i) ((i) + 0)
93#define MIDI_DATA_IO(i) ((i) + 0)
94#define MIDI_CTRL_IO(i) ((i) + 1)
95#define HOST_CTRL_IO(i) ((i) + 2)
96#define HOST_DATA_IO(i) ((i) + 3)
97#define ODIE_ADDR_IO(i) ((i) + 4)
98#define ODIE_DATA_IO(i) ((i) + 5)
99#define CODEC_IO(i) ((i) + 8)
100
101#define IC_ODIE 1
102#define IC_OPUS 2
103
104#define RX_READY 0x01
105#define TX_READY 0x02
106
107#define CMD_ACK 0x80
108#define CMD_SET_MIDI_VOL 0x84
109#define CMD_GET_MIDI_VOL 0x85
110#define CMD_XXX_MIDI_VOL 0x86
111#define CMD_SET_EXTMIDI 0x8a
112#define CMD_GET_EXTMIDI 0x8b
113#define CMD_SET_MT32 0x8c
114#define CMD_GET_MT32 0x8d
115
116enum GA_REG {
117 GA_INTSTAT_REG = 0,
118 GA_INTENA_REG,
119 GA_DMAA_REG,
120 GA_DMAB_REG,
121 GA_INTCFG_REG,
122 GA_DMACFG_REG,
123 GA_CDCFG_REG,
124 GA_SMCFGA_REG,
125 GA_SMCFGB_REG,
126 GA_HMCTL_REG
127};
128
129#define DMA_8BIT 0x80
130
131
132#define AD1845_FREQ_SEL_MSB 0x16
133#define AD1845_FREQ_SEL_LSB 0x17
134
135enum card_type {
136 SSCAPE,
137 SSCAPE_PNP,
138 SSCAPE_VIVO,
139};
140
141struct soundscape {
142 spinlock_t lock;
143 unsigned io_base;
144 unsigned wss_base;
145 int codec_type;
146 int ic_type;
147 enum card_type type;
148 struct resource *io_res;
149 struct resource *wss_res;
150 struct snd_wss *chip;
151 struct snd_mpu401 *mpu;
152 struct snd_hwdep *hw;
153
154
155
156
157
158 spinlock_t fwlock;
159 int hw_in_use;
160 unsigned long midi_usage;
161 unsigned char midi_vol;
162};
163
164#define INVALID_IRQ ((unsigned)-1)
165
166
167static inline struct soundscape *get_card_soundscape(struct snd_card *c)
168{
169 return (struct soundscape *) (c->private_data);
170}
171
172static inline struct soundscape *get_mpu401_soundscape(struct snd_mpu401 * mpu)
173{
174 return (struct soundscape *) (mpu->private_data);
175}
176
177static inline struct soundscape *get_hwdep_soundscape(struct snd_hwdep * hw)
178{
179 return (struct soundscape *) (hw->private_data);
180}
181
182
183
184
185
186
187
188static struct snd_dma_buffer *get_dmabuf(struct snd_dma_buffer *buf, unsigned long size)
189{
190 if (buf) {
191 if (snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV, snd_dma_isa_data(),
192 size, buf) < 0) {
193 snd_printk(KERN_ERR "sscape: Failed to allocate %lu bytes for DMA\n", size);
194 return NULL;
195 }
196 }
197
198 return buf;
199}
200
201
202
203
204static void free_dmabuf(struct snd_dma_buffer *buf)
205{
206 if (buf && buf->area)
207 snd_dma_free_pages(buf);
208}
209
210
211
212
213
214
215
216static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg, unsigned char val)
217{
218 outb(reg, ODIE_ADDR_IO(io_base));
219 outb(val, ODIE_DATA_IO(io_base));
220}
221
222
223
224
225
226static void sscape_write(struct soundscape *s, enum GA_REG reg, unsigned char val)
227{
228 unsigned long flags;
229
230 spin_lock_irqsave(&s->lock, flags);
231 sscape_write_unsafe(s->io_base, reg, val);
232 spin_unlock_irqrestore(&s->lock, flags);
233}
234
235
236
237
238
239static inline unsigned char sscape_read_unsafe(unsigned io_base, enum GA_REG reg)
240{
241 outb(reg, ODIE_ADDR_IO(io_base));
242 return inb(ODIE_DATA_IO(io_base));
243}
244
245
246
247
248static inline void set_host_mode_unsafe(unsigned io_base)
249{
250 outb(0x0, HOST_CTRL_IO(io_base));
251}
252
253
254
255
256static inline void set_midi_mode_unsafe(unsigned io_base)
257{
258 outb(0x3, HOST_CTRL_IO(io_base));
259}
260
261
262
263
264
265static inline int host_read_unsafe(unsigned io_base)
266{
267 int data = -1;
268 if ((inb(HOST_CTRL_IO(io_base)) & RX_READY) != 0) {
269 data = inb(HOST_DATA_IO(io_base));
270 }
271
272 return data;
273}
274
275
276
277
278
279
280static int host_read_ctrl_unsafe(unsigned io_base, unsigned timeout)
281{
282 int data;
283
284 while (((data = host_read_unsafe(io_base)) < 0) && (timeout != 0)) {
285 udelay(100);
286 --timeout;
287 }
288
289 return data;
290}
291
292
293
294
295
296static inline int host_write_unsafe(unsigned io_base, unsigned char data)
297{
298 if ((inb(HOST_CTRL_IO(io_base)) & TX_READY) != 0) {
299 outb(data, HOST_DATA_IO(io_base));
300 return 1;
301 }
302
303 return 0;
304}
305
306
307
308
309
310
311static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data,
312 unsigned timeout)
313{
314 int err;
315
316 while (!(err = host_write_unsafe(io_base, data)) && (timeout != 0)) {
317 udelay(100);
318 --timeout;
319 }
320
321 return err;
322}
323
324
325
326
327
328
329
330
331static inline int verify_mpu401(const struct snd_mpu401 * mpu)
332{
333 return ((inb(MIDI_CTRL_IO(mpu->port)) & 0xc0) == 0x80);
334}
335
336
337
338
339static inline void initialise_mpu401(const struct snd_mpu401 * mpu)
340{
341 outb(0, MIDI_DATA_IO(mpu->port));
342}
343
344
345
346
347
348
349static inline void activate_ad1845_unsafe(unsigned io_base)
350{
351 sscape_write_unsafe(io_base, GA_HMCTL_REG, (sscape_read_unsafe(io_base, GA_HMCTL_REG) & 0xcf) | 0x10);
352 sscape_write_unsafe(io_base, GA_CDCFG_REG, 0x80);
353}
354
355
356
357
358static void soundscape_free(struct snd_card *c)
359{
360 struct soundscape *sscape = get_card_soundscape(c);
361 release_and_free_resource(sscape->io_res);
362 release_and_free_resource(sscape->wss_res);
363 free_dma(sscape->chip->dma1);
364}
365
366
367
368
369
370static inline void sscape_start_dma_unsafe(unsigned io_base, enum GA_REG reg)
371{
372 sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) | 0x01);
373 sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) & 0xfe);
374}
375
376
377
378
379
380static int sscape_wait_dma_unsafe(unsigned io_base, enum GA_REG reg, unsigned timeout)
381{
382 while (!(sscape_read_unsafe(io_base, reg) & 0x01) && (timeout != 0)) {
383 udelay(100);
384 --timeout;
385 }
386
387 return (sscape_read_unsafe(io_base, reg) & 0x01);
388}
389
390
391
392
393
394
395
396
397static int obp_startup_ack(struct soundscape *s, unsigned timeout)
398{
399 while (timeout != 0) {
400 unsigned long flags;
401 unsigned char x;
402
403 schedule_timeout_uninterruptible(1);
404
405 spin_lock_irqsave(&s->lock, flags);
406 x = inb(HOST_DATA_IO(s->io_base));
407 spin_unlock_irqrestore(&s->lock, flags);
408 if ((x & 0xfe) == 0xfe)
409 return 1;
410
411 --timeout;
412 }
413
414 return 0;
415}
416
417
418
419
420
421
422
423
424static int host_startup_ack(struct soundscape *s, unsigned timeout)
425{
426 while (timeout != 0) {
427 unsigned long flags;
428 unsigned char x;
429
430 schedule_timeout_uninterruptible(1);
431
432 spin_lock_irqsave(&s->lock, flags);
433 x = inb(HOST_DATA_IO(s->io_base));
434 spin_unlock_irqrestore(&s->lock, flags);
435 if (x == 0xfe)
436 return 1;
437
438 --timeout;
439 }
440
441 return 0;
442}
443
444
445
446
447static int upload_dma_data(struct soundscape *s,
448 const unsigned char __user *data,
449 size_t size)
450{
451 unsigned long flags;
452 struct snd_dma_buffer dma;
453 int ret;
454
455 if (!get_dmabuf(&dma, PAGE_ALIGN(size)))
456 return -ENOMEM;
457
458 spin_lock_irqsave(&s->lock, flags);
459
460
461
462
463 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f);
464
465
466
467
468 sscape_write_unsafe(s->io_base, GA_DMACFG_REG, 0x50);
469 sscape_write_unsafe(s->io_base, GA_DMAA_REG, (s->chip->dma1 << 4) | DMA_8BIT);
470 sscape_write_unsafe(s->io_base, GA_DMAB_REG, 0x20);
471
472
473
474
475 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x80);
476
477
478
479
480
481 while (size != 0) {
482 unsigned long len;
483
484
485
486
487
488
489 spin_unlock_irqrestore(&s->lock, flags);
490
491
492
493
494
495
496 len = min(size, dma.bytes);
497 len -= __copy_from_user(dma.area, data, len);
498 data += len;
499 size -= len;
500
501
502
503
504
505 spin_lock_irqsave(&s->lock, flags);
506
507 snd_dma_program(s->chip->dma1, dma.addr, len, DMA_MODE_WRITE);
508 sscape_start_dma_unsafe(s->io_base, GA_DMAA_REG);
509 if (!sscape_wait_dma_unsafe(s->io_base, GA_DMAA_REG, 5000)) {
510
511
512
513 spin_unlock_irqrestore(&s->lock, flags);
514
515 snd_printk(KERN_ERR "sscape: DMA upload has timed out\n");
516 ret = -EAGAIN;
517 goto _release_dma;
518 }
519 }
520
521 set_host_mode_unsafe(s->io_base);
522
523
524
525
526 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x40);
527 spin_unlock_irqrestore(&s->lock, flags);
528
529
530
531
532
533
534 ret = 0;
535 if (!obp_startup_ack(s, 5)) {
536 snd_printk(KERN_ERR "sscape: No response from on-board processor after upload\n");
537 ret = -EAGAIN;
538 } else if (!host_startup_ack(s, 5)) {
539 snd_printk(KERN_ERR "sscape: SoundScape failed to initialise\n");
540 ret = -EAGAIN;
541 }
542
543_release_dma:
544
545
546
547 sscape_write(s, GA_DMAA_REG, (s->ic_type == IC_ODIE ? 0x70 : 0x40));
548 free_dmabuf(&dma);
549
550 return ret;
551}
552
553
554
555
556
557
558
559
560
561
562static int sscape_upload_bootblock(struct soundscape *sscape, struct sscape_bootblock __user *bb)
563{
564 unsigned long flags;
565 int data = 0;
566 int ret;
567
568 ret = upload_dma_data(sscape, bb->code, sizeof(bb->code));
569
570 spin_lock_irqsave(&sscape->lock, flags);
571 if (ret == 0) {
572 data = host_read_ctrl_unsafe(sscape->io_base, 100);
573 }
574 set_midi_mode_unsafe(sscape->io_base);
575 spin_unlock_irqrestore(&sscape->lock, flags);
576
577 if (ret == 0) {
578 if (data < 0) {
579 snd_printk(KERN_ERR "sscape: timeout reading firmware version\n");
580 ret = -EAGAIN;
581 }
582 else if (__copy_to_user(&bb->version, &data, sizeof(bb->version))) {
583 ret = -EFAULT;
584 }
585 }
586
587 return ret;
588}
589
590
591
592
593
594
595
596
597static int sscape_upload_microcode(struct soundscape *sscape,
598 const struct sscape_microcode __user *mc)
599{
600 unsigned long flags;
601 char __user *code;
602 int err;
603
604
605
606
607
608
609
610
611
612 if ( get_user(code, &mc->code) ||
613 !access_ok(VERIFY_READ, code, SSCAPE_MICROCODE_SIZE) )
614 return -EFAULT;
615
616 if ((err = upload_dma_data(sscape, code, SSCAPE_MICROCODE_SIZE)) == 0) {
617 snd_printk(KERN_INFO "sscape: MIDI firmware loaded\n");
618 }
619
620 spin_lock_irqsave(&sscape->lock, flags);
621 set_midi_mode_unsafe(sscape->io_base);
622 spin_unlock_irqrestore(&sscape->lock, flags);
623
624 initialise_mpu401(sscape->mpu);
625
626 return err;
627}
628
629
630
631
632
633
634
635
636
637static int sscape_hw_open(struct snd_hwdep * hw, struct file *file)
638{
639 register struct soundscape *sscape = get_hwdep_soundscape(hw);
640 unsigned long flags;
641 int err;
642
643 spin_lock_irqsave(&sscape->fwlock, flags);
644
645 if ((sscape->midi_usage != 0) || sscape->hw_in_use) {
646 err = -EBUSY;
647 } else {
648 sscape->hw_in_use = 1;
649 err = 0;
650 }
651
652 spin_unlock_irqrestore(&sscape->fwlock, flags);
653 return err;
654}
655
656static int sscape_hw_release(struct snd_hwdep * hw, struct file *file)
657{
658 register struct soundscape *sscape = get_hwdep_soundscape(hw);
659 unsigned long flags;
660
661 spin_lock_irqsave(&sscape->fwlock, flags);
662 sscape->hw_in_use = 0;
663 spin_unlock_irqrestore(&sscape->fwlock, flags);
664 return 0;
665}
666
667static int sscape_hw_ioctl(struct snd_hwdep * hw, struct file *file,
668 unsigned int cmd, unsigned long arg)
669{
670 struct soundscape *sscape = get_hwdep_soundscape(hw);
671 int err = -EBUSY;
672
673 switch (cmd) {
674 case SND_SSCAPE_LOAD_BOOTB:
675 {
676 register struct sscape_bootblock __user *bb = (struct sscape_bootblock __user *) arg;
677
678
679
680
681
682
683 if ( !access_ok(VERIFY_READ, bb->code, sizeof(bb->code)) )
684 return -EFAULT;
685
686
687
688
689 if ( !access_ok(VERIFY_WRITE, &bb->version, sizeof(bb->version)) )
690 return -EFAULT;
691
692 err = sscape_upload_bootblock(sscape, bb);
693 }
694 break;
695
696 case SND_SSCAPE_LOAD_MCODE:
697 {
698 register const struct sscape_microcode __user *mc = (const struct sscape_microcode __user *) arg;
699
700 err = sscape_upload_microcode(sscape, mc);
701 }
702 break;
703
704 default:
705 err = -EINVAL;
706 break;
707 }
708
709 return err;
710}
711
712
713
714
715
716static int sscape_midi_info(struct snd_kcontrol *ctl,
717 struct snd_ctl_elem_info *uinfo)
718{
719 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
720 uinfo->count = 1;
721 uinfo->value.integer.min = 0;
722 uinfo->value.integer.max = 127;
723 return 0;
724}
725
726static int sscape_midi_get(struct snd_kcontrol *kctl,
727 struct snd_ctl_elem_value *uctl)
728{
729 struct snd_wss *chip = snd_kcontrol_chip(kctl);
730 struct snd_card *card = chip->card;
731 register struct soundscape *s = get_card_soundscape(card);
732 unsigned long flags;
733
734 spin_lock_irqsave(&s->lock, flags);
735 set_host_mode_unsafe(s->io_base);
736
737 if (host_write_ctrl_unsafe(s->io_base, CMD_GET_MIDI_VOL, 100)) {
738 uctl->value.integer.value[0] = host_read_ctrl_unsafe(s->io_base, 100);
739 }
740
741 set_midi_mode_unsafe(s->io_base);
742 spin_unlock_irqrestore(&s->lock, flags);
743 return 0;
744}
745
746static int sscape_midi_put(struct snd_kcontrol *kctl,
747 struct snd_ctl_elem_value *uctl)
748{
749 struct snd_wss *chip = snd_kcontrol_chip(kctl);
750 struct snd_card *card = chip->card;
751 register struct soundscape *s = get_card_soundscape(card);
752 unsigned long flags;
753 int change;
754
755 spin_lock_irqsave(&s->lock, flags);
756
757
758
759
760
761 set_host_mode_unsafe(s->io_base);
762
763
764
765
766
767
768
769 if (s->midi_vol == ((unsigned char) uctl->value.integer. value[0] & 127)) {
770 change = 0;
771 goto __skip_change;
772 }
773 change = (host_write_ctrl_unsafe(s->io_base, CMD_SET_MIDI_VOL, 100)
774 && host_write_ctrl_unsafe(s->io_base, ((unsigned char) uctl->value.integer. value[0]) & 127, 100)
775 && host_write_ctrl_unsafe(s->io_base, CMD_XXX_MIDI_VOL, 100));
776 __skip_change:
777
778
779
780
781 set_midi_mode_unsafe(s->io_base);
782
783 spin_unlock_irqrestore(&s->lock, flags);
784 return change;
785}
786
787static struct snd_kcontrol_new midi_mixer_ctl = {
788 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
789 .name = "MIDI",
790 .info = sscape_midi_info,
791 .get = sscape_midi_get,
792 .put = sscape_midi_put
793};
794
795
796
797
798
799
800static unsigned __devinit get_irq_config(int irq)
801{
802 static const int valid_irq[] = { 9, 5, 7, 10 };
803 unsigned cfg;
804
805 for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg) {
806 if (irq == valid_irq[cfg])
807 return cfg;
808 }
809
810 return INVALID_IRQ;
811}
812
813
814
815
816
817
818static int __devinit detect_sscape(struct soundscape *s)
819{
820 unsigned long flags;
821 unsigned d;
822 int retval = 0;
823 int codec = s->wss_base;
824
825 spin_lock_irqsave(&s->lock, flags);
826
827
828
829
830
831
832 if ((inb(HOST_CTRL_IO(s->io_base)) & 0x78) != 0)
833 goto _done;
834
835 d = inb(ODIE_ADDR_IO(s->io_base)) & 0xf0;
836 if ((d & 0x80) != 0)
837 goto _done;
838
839 if (d == 0) {
840 s->codec_type = 1;
841 s->ic_type = IC_ODIE;
842 } else if ((d & 0x60) != 0) {
843 s->codec_type = 2;
844 s->ic_type = IC_OPUS;
845 } else
846 goto _done;
847
848 outb(0xfa, ODIE_ADDR_IO(s->io_base));
849 if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0a)
850 goto _done;
851
852 outb(0xfe, ODIE_ADDR_IO(s->io_base));
853 if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0e)
854 goto _done;
855
856 outb(0xfe, ODIE_ADDR_IO(s->io_base));
857 d = inb(ODIE_DATA_IO(s->io_base));
858 if (s->type != SSCAPE_VIVO && (d & 0x9f) != 0x0e)
859 goto _done;
860
861 d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f;
862 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0);
863
864 if (s->type == SSCAPE_VIVO)
865 codec += 4;
866
867 for (d = 0; d < 500; d++) {
868 if ((inb(codec) & 0x80) == 0)
869 break;
870 spin_unlock_irqrestore(&s->lock, flags);
871 msleep(1);
872 spin_lock_irqsave(&s->lock, flags);
873 }
874 snd_printd(KERN_INFO "init delay = %d ms\n", d);
875
876
877
878
879 retval = 1;
880
881 _done:
882 spin_unlock_irqrestore(&s->lock, flags);
883 return retval;
884}
885
886
887
888
889
890
891
892static int mpu401_open(struct snd_mpu401 * mpu)
893{
894 int err;
895
896 if (!verify_mpu401(mpu)) {
897 snd_printk(KERN_ERR "sscape: MIDI disabled, please load firmware\n");
898 err = -ENODEV;
899 } else {
900 register struct soundscape *sscape = get_mpu401_soundscape(mpu);
901 unsigned long flags;
902
903 spin_lock_irqsave(&sscape->fwlock, flags);
904
905 if (sscape->hw_in_use || (sscape->midi_usage == ULONG_MAX)) {
906 err = -EBUSY;
907 } else {
908 ++(sscape->midi_usage);
909 err = 0;
910 }
911
912 spin_unlock_irqrestore(&sscape->fwlock, flags);
913 }
914
915 return err;
916}
917
918static void mpu401_close(struct snd_mpu401 * mpu)
919{
920 register struct soundscape *sscape = get_mpu401_soundscape(mpu);
921 unsigned long flags;
922
923 spin_lock_irqsave(&sscape->fwlock, flags);
924 --(sscape->midi_usage);
925 spin_unlock_irqrestore(&sscape->fwlock, flags);
926}
927
928
929
930
931static int __devinit create_mpu401(struct snd_card *card, int devnum, unsigned long port, int irq)
932{
933 struct soundscape *sscape = get_card_soundscape(card);
934 struct snd_rawmidi *rawmidi;
935 int err;
936
937 if ((err = snd_mpu401_uart_new(card, devnum,
938 MPU401_HW_MPU401,
939 port, MPU401_INFO_INTEGRATED,
940 irq, IRQF_DISABLED,
941 &rawmidi)) == 0) {
942 struct snd_mpu401 *mpu = (struct snd_mpu401 *) rawmidi->private_data;
943 mpu->open_input = mpu401_open;
944 mpu->open_output = mpu401_open;
945 mpu->close_input = mpu401_close;
946 mpu->close_output = mpu401_close;
947 mpu->private_data = sscape;
948 sscape->mpu = mpu;
949
950 initialise_mpu401(mpu);
951 }
952
953 return err;
954}
955
956
957
958
959
960
961static void ad1845_playback_format(struct snd_wss *chip,
962 struct snd_pcm_hw_params *params,
963 unsigned char format)
964{
965 unsigned long flags;
966 unsigned rate = params_rate(params);
967
968
969
970
971
972 if (rate > 50000)
973 rate = 50000;
974 else if (rate < 4000)
975 rate = 4000;
976
977 spin_lock_irqsave(&chip->reg_lock, flags);
978
979
980
981
982
983
984
985
986
987
988 snd_wss_out(chip, CS4231_PLAYBK_FORMAT, (format & 0xf0));
989 snd_wss_out(chip, AD1845_FREQ_SEL_MSB, (unsigned char) (rate >> 8));
990 snd_wss_out(chip, AD1845_FREQ_SEL_LSB, (unsigned char) rate);
991
992 spin_unlock_irqrestore(&chip->reg_lock, flags);
993}
994
995
996
997
998
999static void ad1845_capture_format(struct snd_wss *chip,
1000 struct snd_pcm_hw_params *params,
1001 unsigned char format)
1002{
1003 unsigned long flags;
1004 unsigned rate = params_rate(params);
1005
1006
1007
1008
1009
1010 if (rate > 50000)
1011 rate = 50000;
1012 else if (rate < 4000)
1013 rate = 4000;
1014
1015 spin_lock_irqsave(&chip->reg_lock, flags);
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026 snd_wss_out(chip, CS4231_REC_FORMAT, (format & 0xf0));
1027 snd_wss_out(chip, AD1845_FREQ_SEL_MSB, (unsigned char) (rate >> 8));
1028 snd_wss_out(chip, AD1845_FREQ_SEL_LSB, (unsigned char) rate);
1029
1030 spin_unlock_irqrestore(&chip->reg_lock, flags);
1031}
1032
1033
1034
1035
1036
1037
1038
1039static int __devinit create_ad1845(struct snd_card *card, unsigned port,
1040 int irq, int dma1, int dma2)
1041{
1042 register struct soundscape *sscape = get_card_soundscape(card);
1043 struct snd_wss *chip;
1044 int err;
1045
1046 if (sscape->type == SSCAPE_VIVO)
1047 port += 4;
1048
1049 if (dma1 == dma2)
1050 dma2 = -1;
1051
1052 err = snd_wss_create(card, port, -1, irq, dma1, dma2,
1053 WSS_HW_DETECT, WSS_HWSHARE_DMA1, &chip);
1054 if (!err) {
1055 unsigned long flags;
1056 struct snd_pcm *pcm;
1057
1058#define AD1845_FREQ_SEL_ENABLE 0x08
1059
1060#define AD1845_PWR_DOWN_CTRL 0x1b
1061#define AD1845_CRYS_CLOCK_SEL 0x1d
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076 if (sscape->type != SSCAPE_VIVO) {
1077 int val;
1078
1079
1080
1081
1082
1083 snd_wss_mce_up(chip);
1084 spin_lock_irqsave(&chip->reg_lock, flags);
1085 snd_wss_out(chip, AD1845_CRYS_CLOCK_SEL, 0x20);
1086 spin_unlock_irqrestore(&chip->reg_lock, flags);
1087 snd_wss_mce_down(chip);
1088
1089
1090
1091
1092
1093
1094 spin_lock_irqsave(&chip->reg_lock, flags);
1095 snd_wss_out(chip, CS4231_MISC_INFO,
1096 CS4231_MODE2 | 0x10);
1097 val = snd_wss_in(chip, AD1845_PWR_DOWN_CTRL);
1098 snd_wss_out(chip, AD1845_PWR_DOWN_CTRL,
1099 val | AD1845_FREQ_SEL_ENABLE);
1100 spin_unlock_irqrestore(&chip->reg_lock, flags);
1101 }
1102
1103 err = snd_wss_pcm(chip, 0, &pcm);
1104 if (err < 0) {
1105 snd_printk(KERN_ERR "sscape: No PCM device "
1106 "for AD1845 chip\n");
1107 goto _error;
1108 }
1109
1110 err = snd_wss_mixer(chip);
1111 if (err < 0) {
1112 snd_printk(KERN_ERR "sscape: No mixer device "
1113 "for AD1845 chip\n");
1114 goto _error;
1115 }
1116 err = snd_wss_timer(chip, 0, NULL);
1117 if (err < 0) {
1118 snd_printk(KERN_ERR "sscape: No timer device "
1119 "for AD1845 chip\n");
1120 goto _error;
1121 }
1122
1123 if (sscape->type != SSCAPE_VIVO) {
1124 err = snd_ctl_add(card,
1125 snd_ctl_new1(&midi_mixer_ctl, chip));
1126 if (err < 0) {
1127 snd_printk(KERN_ERR "sscape: Could not create "
1128 "MIDI mixer control\n");
1129 goto _error;
1130 }
1131 chip->set_playback_format = ad1845_playback_format;
1132 chip->set_capture_format = ad1845_capture_format;
1133 }
1134
1135 strcpy(card->driver, "SoundScape");
1136 strcpy(card->shortname, pcm->name);
1137 snprintf(card->longname, sizeof(card->longname),
1138 "%s at 0x%lx, IRQ %d, DMA1 %d, DMA2 %d\n",
1139 pcm->name, chip->port, chip->irq,
1140 chip->dma1, chip->dma2);
1141
1142 sscape->chip = chip;
1143 }
1144
1145 _error:
1146 return err;
1147}
1148
1149
1150
1151
1152
1153
1154static int __devinit create_sscape(int dev, struct snd_card *card)
1155{
1156 struct soundscape *sscape = get_card_soundscape(card);
1157 unsigned dma_cfg;
1158 unsigned irq_cfg;
1159 unsigned mpu_irq_cfg;
1160 unsigned xport;
1161 struct resource *io_res;
1162 struct resource *wss_res;
1163 unsigned long flags;
1164 int err;
1165
1166
1167
1168
1169 irq_cfg = get_irq_config(irq[dev]);
1170 if (irq_cfg == INVALID_IRQ) {
1171 snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]);
1172 return -ENXIO;
1173 }
1174
1175 mpu_irq_cfg = get_irq_config(mpu_irq[dev]);
1176 if (mpu_irq_cfg == INVALID_IRQ) {
1177 printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]);
1178 return -ENXIO;
1179 }
1180 xport = port[dev];
1181
1182
1183
1184
1185
1186 io_res = request_region(xport, 8, "SoundScape");
1187 if (!io_res) {
1188 snd_printk(KERN_ERR "sscape: can't grab port 0x%x\n", xport);
1189 return -EBUSY;
1190 }
1191 wss_res = NULL;
1192 if (sscape->type == SSCAPE_VIVO) {
1193 wss_res = request_region(wss_port[dev], 4, "SoundScape");
1194 if (!wss_res) {
1195 snd_printk(KERN_ERR "sscape: can't grab port 0x%lx\n",
1196 wss_port[dev]);
1197 err = -EBUSY;
1198 goto _release_region;
1199 }
1200 }
1201
1202
1203
1204
1205 err = request_dma(dma[dev], "SoundScape");
1206 if (err < 0) {
1207 snd_printk(KERN_ERR "sscape: can't grab DMA %d\n", dma[dev]);
1208 goto _release_region;
1209 }
1210
1211 spin_lock_init(&sscape->lock);
1212 spin_lock_init(&sscape->fwlock);
1213 sscape->io_res = io_res;
1214 sscape->wss_res = wss_res;
1215 sscape->io_base = xport;
1216 sscape->wss_base = wss_port[dev];
1217
1218 if (!detect_sscape(sscape)) {
1219 printk(KERN_ERR "sscape: hardware not detected at 0x%x\n", sscape->io_base);
1220 err = -ENODEV;
1221 goto _release_dma;
1222 }
1223
1224 printk(KERN_INFO "sscape: hardware detected at 0x%x, using IRQ %d, DMA %d\n",
1225 sscape->io_base, irq[dev], dma[dev]);
1226
1227 if (sscape->type != SSCAPE_VIVO) {
1228
1229
1230
1231
1232
1233
1234 err = snd_hwdep_new(card, "MC68EC000", 0, &(sscape->hw));
1235 if (err < 0) {
1236 printk(KERN_ERR "sscape: Failed to create "
1237 "firmware device\n");
1238 goto _release_dma;
1239 }
1240 strlcpy(sscape->hw->name, "SoundScape M68K",
1241 sizeof(sscape->hw->name));
1242 sscape->hw->name[sizeof(sscape->hw->name) - 1] = '\0';
1243 sscape->hw->iface = SNDRV_HWDEP_IFACE_SSCAPE;
1244 sscape->hw->ops.open = sscape_hw_open;
1245 sscape->hw->ops.release = sscape_hw_release;
1246 sscape->hw->ops.ioctl = sscape_hw_ioctl;
1247 sscape->hw->private_data = sscape;
1248 }
1249
1250
1251
1252
1253
1254 spin_lock_irqsave(&sscape->lock, flags);
1255
1256 activate_ad1845_unsafe(sscape->io_base);
1257
1258 sscape_write_unsafe(sscape->io_base, GA_INTENA_REG, 0x00);
1259 sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2e);
1260 sscape_write_unsafe(sscape->io_base, GA_SMCFGB_REG, 0x00);
1261
1262
1263
1264
1265 sscape_write_unsafe(sscape->io_base, GA_DMACFG_REG, 0x50);
1266 dma_cfg = (sscape->ic_type == IC_ODIE ? 0x70 : 0x40);
1267 sscape_write_unsafe(sscape->io_base, GA_DMAA_REG, dma_cfg);
1268 sscape_write_unsafe(sscape->io_base, GA_DMAB_REG, 0x20);
1269
1270 sscape_write_unsafe(sscape->io_base,
1271 GA_INTCFG_REG, 0xf0 | (mpu_irq_cfg << 2) | mpu_irq_cfg);
1272 sscape_write_unsafe(sscape->io_base,
1273 GA_CDCFG_REG, 0x09 | DMA_8BIT
1274 | (dma[dev] << 4) | (irq_cfg << 1));
1275
1276 spin_unlock_irqrestore(&sscape->lock, flags);
1277
1278
1279
1280
1281
1282 err = create_ad1845(card, wss_port[dev], irq[dev],
1283 dma[dev], dma2[dev]);
1284 if (err < 0) {
1285 printk(KERN_ERR "sscape: No AD1845 device at 0x%lx, IRQ %d\n",
1286 wss_port[dev], irq[dev]);
1287 goto _release_dma;
1288 }
1289#define MIDI_DEVNUM 0
1290 if (sscape->type != SSCAPE_VIVO) {
1291 err = create_mpu401(card, MIDI_DEVNUM,
1292 MPU401_IO(xport), mpu_irq[dev]);
1293 if (err < 0) {
1294 printk(KERN_ERR "sscape: Failed to create "
1295 "MPU-401 device at 0x%x\n",
1296 MPU401_IO(xport));
1297 goto _release_dma;
1298 }
1299
1300
1301
1302
1303 sscape_write(sscape, GA_INTENA_REG, 0x80);
1304
1305
1306
1307
1308 sscape->midi_vol = 0;
1309 host_write_ctrl_unsafe(sscape->io_base, CMD_SET_MIDI_VOL, 100);
1310 host_write_ctrl_unsafe(sscape->io_base, 0, 100);
1311 host_write_ctrl_unsafe(sscape->io_base, CMD_XXX_MIDI_VOL, 100);
1312 }
1313
1314
1315
1316
1317
1318
1319
1320 card->private_free = soundscape_free;
1321
1322 return 0;
1323
1324_release_dma:
1325 free_dma(dma[dev]);
1326
1327_release_region:
1328 release_and_free_resource(wss_res);
1329 release_and_free_resource(io_res);
1330
1331 return err;
1332}
1333
1334
1335static int __devinit snd_sscape_match(struct device *pdev, unsigned int i)
1336{
1337
1338
1339
1340 if (port[i] == SNDRV_AUTO_PORT)
1341 return 0;
1342
1343 if (irq[i] == SNDRV_AUTO_IRQ ||
1344 mpu_irq[i] == SNDRV_AUTO_IRQ ||
1345 dma[i] == SNDRV_AUTO_DMA) {
1346 printk(KERN_INFO
1347 "sscape: insufficient parameters, need IO, IRQ, MPU-IRQ and DMA\n");
1348 return 0;
1349 }
1350
1351 return 1;
1352}
1353
1354static int __devinit snd_sscape_probe(struct device *pdev, unsigned int dev)
1355{
1356 struct snd_card *card;
1357 struct soundscape *sscape;
1358 int ret;
1359
1360 card = snd_card_new(index[dev], id[dev], THIS_MODULE,
1361 sizeof(struct soundscape));
1362 if (!card)
1363 return -ENOMEM;
1364
1365 sscape = get_card_soundscape(card);
1366 sscape->type = SSCAPE;
1367
1368 dma[dev] &= 0x03;
1369 ret = create_sscape(dev, card);
1370 if (ret < 0)
1371 goto _release_card;
1372
1373 snd_card_set_dev(card, pdev);
1374 if ((ret = snd_card_register(card)) < 0) {
1375 printk(KERN_ERR "sscape: Failed to register sound card\n");
1376 goto _release_card;
1377 }
1378 dev_set_drvdata(pdev, card);
1379 return 0;
1380
1381_release_card:
1382 snd_card_free(card);
1383 return ret;
1384}
1385
1386static int __devexit snd_sscape_remove(struct device *devptr, unsigned int dev)
1387{
1388 snd_card_free(dev_get_drvdata(devptr));
1389 dev_set_drvdata(devptr, NULL);
1390 return 0;
1391}
1392
1393#define DEV_NAME "sscape"
1394
1395static struct isa_driver snd_sscape_driver = {
1396 .match = snd_sscape_match,
1397 .probe = snd_sscape_probe,
1398 .remove = __devexit_p(snd_sscape_remove),
1399
1400 .driver = {
1401 .name = DEV_NAME
1402 },
1403};
1404
1405#ifdef CONFIG_PNP
1406static inline int __devinit get_next_autoindex(int i)
1407{
1408 while (i < SNDRV_CARDS && port[i] != SNDRV_AUTO_PORT)
1409 ++i;
1410 return i;
1411}
1412
1413
1414static int __devinit sscape_pnp_detect(struct pnp_card_link *pcard,
1415 const struct pnp_card_device_id *pid)
1416{
1417 static int idx = 0;
1418 struct pnp_dev *dev;
1419 struct snd_card *card;
1420 struct soundscape *sscape;
1421 int ret;
1422
1423
1424
1425
1426
1427 if ((idx = get_next_autoindex(idx)) >= SNDRV_CARDS)
1428 return -ENOSPC;
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450 dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL);
1451 if (! dev)
1452 return -ENODEV;
1453
1454 if (!pnp_is_active(dev)) {
1455 if (pnp_activate_dev(dev) < 0) {
1456 printk(KERN_INFO "sscape: device is inactive\n");
1457 return -EBUSY;
1458 }
1459 }
1460
1461
1462
1463
1464
1465 card = snd_card_new(index[idx], id[idx], THIS_MODULE,
1466 sizeof(struct soundscape));
1467 if (!card)
1468 return -ENOMEM;
1469
1470 sscape = get_card_soundscape(card);
1471
1472
1473
1474
1475 if (!strncmp("ENS4081", pid->id, 7))
1476 sscape->type = SSCAPE_VIVO;
1477 else
1478 sscape->type = SSCAPE_PNP;
1479
1480
1481
1482
1483 port[idx] = pnp_port_start(dev, 0);
1484 irq[idx] = pnp_irq(dev, 0);
1485 mpu_irq[idx] = pnp_irq(dev, 1);
1486 dma[idx] = pnp_dma(dev, 0) & 0x03;
1487 if (sscape->type == SSCAPE_PNP) {
1488 dma2[idx] = dma[idx];
1489 wss_port[idx] = CODEC_IO(port[idx]);
1490 } else {
1491 wss_port[idx] = pnp_port_start(dev, 1);
1492 dma2[idx] = pnp_dma(dev, 1);
1493 }
1494
1495 ret = create_sscape(idx, card);
1496 if (ret < 0)
1497 goto _release_card;
1498
1499 snd_card_set_dev(card, &pcard->card->dev);
1500 if ((ret = snd_card_register(card)) < 0) {
1501 printk(KERN_ERR "sscape: Failed to register sound card\n");
1502 goto _release_card;
1503 }
1504
1505 pnp_set_card_drvdata(pcard, card);
1506 ++idx;
1507 return 0;
1508
1509_release_card:
1510 snd_card_free(card);
1511 return ret;
1512}
1513
1514static void __devexit sscape_pnp_remove(struct pnp_card_link * pcard)
1515{
1516 snd_card_free(pnp_get_card_drvdata(pcard));
1517 pnp_set_card_drvdata(pcard, NULL);
1518}
1519
1520static struct pnp_card_driver sscape_pnpc_driver = {
1521 .flags = PNP_DRIVER_RES_DO_NOT_CHANGE,
1522 .name = "sscape",
1523 .id_table = sscape_pnpids,
1524 .probe = sscape_pnp_detect,
1525 .remove = __devexit_p(sscape_pnp_remove),
1526};
1527
1528#endif
1529
1530static int __init sscape_init(void)
1531{
1532 int err;
1533
1534 err = isa_register_driver(&snd_sscape_driver, SNDRV_CARDS);
1535#ifdef CONFIG_PNP
1536 if (!err)
1537 isa_registered = 1;
1538
1539 err = pnp_register_card_driver(&sscape_pnpc_driver);
1540 if (!err)
1541 pnp_registered = 1;
1542
1543 if (isa_registered)
1544 err = 0;
1545#endif
1546 return err;
1547}
1548
1549static void __exit sscape_exit(void)
1550{
1551#ifdef CONFIG_PNP
1552 if (pnp_registered)
1553 pnp_unregister_card_driver(&sscape_pnpc_driver);
1554 if (isa_registered)
1555#endif
1556 isa_unregister_driver(&snd_sscape_driver);
1557}
1558
1559module_init(sscape_init);
1560module_exit(sscape_exit);
1561