summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/sound/mpu401.c
blob: 60b0c292221d79be882e857b62544e0f0e3531e7 (plain)
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
/*
 * sound/mpu401.c
 * 
 * The low level driver for Roland MPU-401 compatible Midi cards.
 * 
 * Copyright by Hannu Savolainen 1993
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met: 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer. 2.
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * Modified: Riccardo Facchetti  24 Mar 1995 - Added the Audio Excel DSP 16
 * initialization routine.
 */

#define USE_SEQ_MACROS
#define USE_SIMPLE_MACROS

#include <i386/isa/sound/sound_config.h>

#if (defined(CONFIG_MPU401) || defined(CONFIG_MPU_EMU)) && defined(CONFIG_MIDI)
#include <i386/isa/sound/coproc.h>

static int      init_sequence[20];	/* NOTE! pos 0 = len, start pos 1. */

#ifdef CONFIG_SEQUENCER
static int      timer_mode = TMR_INTERNAL, timer_caps = TMR_INTERNAL;

#endif

struct mpu_config {
	int             base;	/* I/O base */
	int             irq;
	int             opened;	/* Open mode */
	int             devno;
	int             synthno;
	int             uart_mode;
	int             initialized;
	int             mode;
#define MODE_MIDI	1
#define MODE_SYNTH	2
	u_char   version, revision;
	u_int    capabilities;
#define MPU_CAP_INTLG	0x10000000
#define MPU_CAP_SYNC	0x00000010
#define MPU_CAP_FSK	0x00000020
#define MPU_CAP_CLS	0x00000040
#define MPU_CAP_SMPTE 	0x00000080
#define MPU_CAP_2PORT	0x00000001
	int             timer_flag;

#define MBUF_MAX	10
#define BUFTEST(dc) if (dc->m_ptr >= MBUF_MAX || dc->m_ptr < 0) \
	{printf("MPU: Invalid buffer pointer %d/%d, s=%d\n", dc->m_ptr, dc->m_left, dc->m_state);dc->m_ptr--;}
	int             m_busy;
	u_char   m_buf[MBUF_MAX];
	int             m_ptr;
	int             m_state;
	int             m_left;
	u_char   last_status;
	void            (*inputintr) (int dev, u_char data);
	int             shared_irq;
	sound_os_info  *osp;
};

#define	DATAPORT(base)   (base)
#define	COMDPORT(base)   (base+1)
#define	STATPORT(base)   (base+1)

#define mpu401_status(devc)		inb( STATPORT(devc->base))
#define input_avail(devc)		(!(mpu401_status(devc)&INPUT_AVAIL))
#define output_ready(devc)		(!(mpu401_status(devc)&OUTPUT_READY))
#define write_command(devc, cmd)	outb( COMDPORT(devc->base),  cmd)
#define read_data(devc)		inb( DATAPORT(devc->base))

#define write_data(devc, byte)	outb( DATAPORT(devc->base),  byte)

#define	OUTPUT_READY	0x40
#define	INPUT_AVAIL	0x80
#define	MPU_ACK		0xFE
#define	MPU_RESET	0xFF
#define	UART_MODE_ON	0x3F

static struct mpu_config dev_conf[MAX_MIDI_DEV] = { {0}};

static int      n_mpu_devs = 0;
static volatile int irq2dev[17] =
	{-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1};

static int      reset_mpu401(struct mpu_config * devc);
static void     set_uart_mode(int dev, struct mpu_config * devc, int arg);

static void     mpu_timer_init(int midi_dev);
static void     mpu_timer_interrupt(void);
static void     timer_ext_event(struct mpu_config * devc, int event, int parm);

static struct synth_info mpu_synth_info_proto =
{"MPU-401 MIDI interface", 0, SYNTH_TYPE_MIDI, 0, 0, 128, 0, 128, SYNTH_CAP_INPUT};

static struct synth_info mpu_synth_info[MAX_MIDI_DEV];

/*
 * States for the input scanner
 */

#define ST_INIT			0	/* Ready for timing byte or msg */
#define ST_TIMED		1	/* Leading timing byte rcvd */
#define ST_DATABYTE		2	/* Waiting for (nr_left) data bytes */

#define ST_SYSMSG		100	/* System message (sysx etc). */
#define ST_SYSEX		101	/* System exclusive msg */
#define ST_MTC			102	/* Midi Time Code (MTC) qframe msg */
#define ST_SONGSEL		103	/* Song select */
#define ST_SONGPOS		104	/* Song position pointer */

static u_char len_tab[] =/* # of data bytes following a status */
{
	2,			/* 8x */
	2,			/* 9x */
	2,			/* Ax */
	2,			/* Bx */
	1,			/* Cx */
	1,			/* Dx */
	2,			/* Ex */
	0			/* Fx */
};

#ifndef CONFIG_SEQUENCER
#define STORE(cmd)
#else
#define STORE(cmd) \
{ \
  int len; \
  u_char obuf[8]; \
  cmd; \
  seq_input_event(obuf, len); \
}
#endif

#define _seqbuf obuf
#define _seqbufptr 0
#define _SEQ_ADVBUF(x) len=x

static int
mpu_input_scanner(struct mpu_config * devc, u_char midic)
{

    switch (devc->m_state) {
    case ST_INIT:
	switch (midic) {
	case 0xf8:
	    /* Timer overflow */
	    break;

	case 0xfc:
	    printf("<all end>");
	    break;

	case 0xfd:
	    if (devc->timer_flag)
		mpu_timer_interrupt();
	    break;

	case 0xfe:
	    return MPU_ACK;
	    break;

	case 0xf0:
	case 0xf1:
	case 0xf2:
	case 0xf3:
	case 0xf4:
	case 0xf5:
	case 0xf6:
	case 0xf7:
	    printf("<Trk data rq #%d>", midic & 0x0f);
	    break;

	case 0xf9:
	    printf("<conductor rq>");
	    break;

	case 0xff:
	    devc->m_state = ST_SYSMSG;
	    break;

	default:
	    if (midic <= 0xef) {
		/* printf("mpu time: %d ", midic); */
		devc->m_state = ST_TIMED;
	    } else
		printf("<MPU: Unknown event %02x> ", midic);
	}
	break;

    case ST_TIMED:
	{
	    int             msg = ((int) (midic & 0xf0) >> 4);

	    devc->m_state = ST_DATABYTE;

	    if (msg < 8) {	/* Data byte */
		/* printf("midi msg (running status) "); */
		msg = ((int) (devc->last_status & 0xf0) >> 4);
		msg -= 8;
		devc->m_left = len_tab[msg] - 1;

		devc->m_ptr = 2;
		devc->m_buf[0] = devc->last_status;
		devc->m_buf[1] = midic;

		if (devc->m_left <= 0) {
		    devc->m_state = ST_INIT;
		    do_midi_msg(devc->synthno, devc->m_buf, devc->m_ptr);
		    devc->m_ptr = 0;
		}
	    } else if (msg == 0xf) {	/* MPU MARK */
		devc->m_state = ST_INIT;

		switch (midic) {
		case 0xf8:
		    /* printf("NOP "); */
		    break;

		case 0xf9:
		    /* printf("meas end "); */
		    break;

		case 0xfc:
		    /* printf("data end "); */
		    break;

		default:
		    printf("Unknown MPU mark %02x\n", midic);
		}
	    } else {
		devc->last_status = midic;
		/* printf ("midi msg "); */
		msg -= 8;
		devc->m_left = len_tab[msg];

		devc->m_ptr = 1;
		devc->m_buf[0] = midic;

		if (devc->m_left <= 0) {
		    devc->m_state = ST_INIT;
		    do_midi_msg(devc->synthno, devc->m_buf, devc->m_ptr);
		    devc->m_ptr = 0;
		}
	    }
	}
	break;

    case ST_SYSMSG:
	switch (midic) {
	case 0xf0:
	    printf("<SYX>");
	    devc->m_state = ST_SYSEX;
	    break;

	case 0xf1:
	    devc->m_state = ST_MTC;
	    break;

	case 0xf2:
	    devc->m_state = ST_SONGPOS;
	    devc->m_ptr = 0;
	    break;

	case 0xf3:
	    devc->m_state = ST_SONGSEL;
	    break;

	case 0xf6:
	    /* printf("tune_request\n"); */
	    devc->m_state = ST_INIT;
	    /* XXX do we need a break here ? - lr 970710 */

	    /*
	     * Real time messages
	     */
	case 0xf8:
	    /* midi clock */
	    devc->m_state = ST_INIT;
	    timer_ext_event(devc, TMR_CLOCK, 0);
	    break;

	case 0xfA:
	    devc->m_state = ST_INIT;
	    timer_ext_event(devc, TMR_START, 0);
	    break;

	case 0xFB:
	    devc->m_state = ST_INIT;
	    timer_ext_event(devc, TMR_CONTINUE, 0);
	    break;

	case 0xFC:
	    devc->m_state = ST_INIT;
	    timer_ext_event(devc, TMR_STOP, 0);
	    break;

	case 0xFE:
	    /* active sensing */
	    devc->m_state = ST_INIT;
	    break;

	case 0xff:
	    /* printf("midi hard reset"); */
	    devc->m_state = ST_INIT;
	    break;

	default:
	    printf("unknown MIDI sysmsg %0x\n", midic);
	    devc->m_state = ST_INIT;
	}
	break;

    case ST_MTC:
	devc->m_state = ST_INIT;
	printf("MTC frame %x02\n", midic);
	break;

    case ST_SYSEX:
	if (midic == 0xf7) {
	    printf("<EOX>");
	    devc->m_state = ST_INIT;
	} else
	    printf("%02x ", midic);
	break;

    case ST_SONGPOS:
	BUFTEST(devc);
	devc->m_buf[devc->m_ptr++] = midic;
	if (devc->m_ptr == 2) {
	    devc->m_state = ST_INIT;
	    devc->m_ptr = 0;
	    timer_ext_event(devc, TMR_SPP,
		((devc->m_buf[1] & 0x7f) << 7) | (devc->m_buf[0] & 0x7f));
	}
	break;

    case ST_DATABYTE:
	BUFTEST(devc);
	devc->m_buf[devc->m_ptr++] = midic;
	if ((--devc->m_left) <= 0) {
	    devc->m_state = ST_INIT;
	    do_midi_msg(devc->synthno, devc->m_buf, devc->m_ptr);
	    devc->m_ptr = 0;
	}
	break;

    default:
	printf("Bad state %d ", devc->m_state);
	devc->m_state = ST_INIT;
    }

    return 1;
}

static void
mpu401_input_loop(struct mpu_config * devc)
{
    u_long   flags;
    int  n, busy;

    flags = splhigh();
    busy = devc->m_busy;
    devc->m_busy = 1;
    splx(flags);

    if (busy)		/* Already inside the scanner */
	return;

    n = 50;

    while (input_avail(devc) && n-- > 0) {
	u_char   c = read_data(devc);

	if (devc->mode == MODE_SYNTH) {
	    mpu_input_scanner(devc, c);
	} else if (devc->opened & OPEN_READ && devc->inputintr != NULL)
	    devc->inputintr(devc->devno, c);
    }

    devc->m_busy = 0;
}

void
mpuintr(int irq)
{
    struct mpu_config *devc;
    int             dev;

    /*
     * FreeBSD (and some others) pass unit number to the interrupt
     * handler. In this case we have to scan the table for first handler.
     */

    if (irq < 1 || irq > 15) {
	dev = -1;
    } else
	dev = irq2dev[irq];

    if (dev == -1) {
	int             origirq = irq;

	for (irq = 0; irq <= 16; irq++)
	    if (irq2dev[irq] != -1)
		break;
	if (irq > 15) {
	    printf("MPU-401: Bogus interrupt #%d?\n", origirq);
	    return;
	}
	dev = irq2dev[irq];
	devc = &dev_conf[dev];
    } else
	devc = &dev_conf[dev];

    if (input_avail(devc))
	if (devc->base != 0 && (devc->opened & OPEN_READ || devc->mode == MODE_SYNTH))
	    mpu401_input_loop(devc);
	else {
	    /* Dummy read (just to acknowledge the interrupt) */
	    read_data(devc);
	}

}

static int
mpu401_open(int dev, int mode,
	    void (*input) (int dev, u_char data), void (*output) (int dev))
{
    int             err;
    struct mpu_config *devc;

    if (dev < 0 || dev >= num_midis)
	return -(ENXIO);

    devc = &dev_conf[dev];

    if (devc->opened) {
	printf("MPU-401: Midi busy\n");
	return -(EBUSY);
    }
    /*
     * Verify that the device is really running. Some devices (such as
     * Ensoniq SoundScape don't work before the on board processor (OBP)
     * is initialized by downloadin it's microcode.
     */

    if (!devc->initialized) {
	if (mpu401_status(devc) == 0xff) {	/* Bus float */
	    printf("MPU-401: Device not initialized properly\n");
	    return -(EIO);
	}
	reset_mpu401(devc);
    }
    irq2dev[devc->irq] = dev;

    if (midi_devs[dev]->coproc)
	if ((err = midi_devs[dev]->coproc->
		 open(midi_devs[dev]->coproc->devc, COPR_MIDI)) < 0) {
	    printf("MPU-401: Can't access coprocessor device\n");

	    return err;
	}
    set_uart_mode(dev, devc, 1);
    devc->mode = MODE_MIDI;
    devc->synthno = 0;

    mpu401_input_loop(devc);

    devc->inputintr = input;
    devc->opened = mode;

    return 0;
}

static void
mpu401_close(int dev)
{
    struct mpu_config *devc;

    devc = &dev_conf[dev];

    if (devc->uart_mode)
	reset_mpu401(devc);	/* This disables the UART mode */
    devc->mode = 0;

    devc->inputintr = NULL;

    if (midi_devs[dev]->coproc)
	midi_devs[dev]->coproc->close(midi_devs[dev]->coproc->devc, COPR_MIDI);
    devc->opened = 0;
}

static int
mpu401_out(int dev, u_char midi_byte)
{
    int             timeout;
    u_long   flags;

    struct mpu_config *devc;

    devc = &dev_conf[dev];

    /*
     * Sometimes it takes about 13000 loops before the output becomes
     * ready (After reset). Normally it takes just about 10 loops.
     */

    for (timeout = 3000; timeout > 0 && !output_ready(devc); timeout--);

    flags = splhigh();
    if (!output_ready(devc)) {
	printf("MPU-401: Send data timeout\n");
	splx(flags);
	return 0;
    }
    write_data(devc, midi_byte);
    splx(flags);
    return 1;
}

static int
mpu401_command(int dev, mpu_command_rec * cmd)
{
    int             i, timeout, ok;
    int             ret = 0;
    u_long   flags;
    struct mpu_config *devc;

    devc = &dev_conf[dev];

    if (devc->uart_mode) {	/* Not possible in UART mode */
	printf("MPU-401 commands not possible in the UART mode\n");
	return -(EINVAL);
    }
    /*
     * Test for input since pending input seems to block the output.
     */
    if (input_avail(devc))
	mpu401_input_loop(devc);

    /*
     * Sometimes it takes about 30000 loops before the output becomes
     * ready (After reset). Normally it takes just about 10 loops.
     */

    timeout = 30000;
retry:
    if (timeout-- <= 0) {
	printf("MPU-401: Command (0x%x) timeout\n", (int) cmd->cmd);
	return -(EIO);
    }
    flags = splhigh();

    if (!output_ready(devc)) {
	splx(flags);
	goto retry;
    }
    write_command(devc, cmd->cmd);
    ok = 0;
    for (timeout = 50000; timeout > 0 && !ok; timeout--)
	if (input_avail(devc))
	    if (devc->opened && devc->mode == MODE_SYNTH) {
		if (mpu_input_scanner(devc, read_data(devc)) == MPU_ACK)
		    ok = 1;
	    } else {/* Device is not currently open. Use simplier method */
		if (read_data(devc) == MPU_ACK)
		    ok = 1;
	    }

    if (!ok) {
	splx(flags);
	/* printf ("MPU: No ACK to command (0x%x)\n", (int) cmd->cmd); */
	return -(EIO);
    }
    if (cmd->nr_args)
	for (i = 0; i < cmd->nr_args; i++) {
	    for (timeout = 3000; timeout > 0 && !output_ready(devc); timeout--);
	    if (!mpu401_out(dev, cmd->data[i])) {
		splx(flags);
		printf("MPU: Command (0x%x), parm send failed.\n", (int) cmd->cmd);
		return -(EIO);
	    }
	}

    ret = 0;
    cmd->data[0] = 0;

    if (cmd->nr_returns)
	for (i = 0; i < cmd->nr_returns; i++) {
	    ok = 0;
	    for (timeout = 5000; timeout > 0 && !ok; timeout--)
		if (input_avail(devc)) {
		    cmd->data[i] = read_data(devc);
		    ok = 1;
		}
		if (!ok) {
		    splx(flags);
		    /* printf ("MPU: No response(%d) to command (0x%x)\n",
		     *	i, (int) cmd->cmd);
		     */
		    return -(EIO);
		}
	}

    splx(flags);

    return ret;
}

static int
mpu_cmd(int dev, int cmd, int data)
{
	int             ret;

	static mpu_command_rec rec;

	rec.cmd = cmd & 0xff;
	rec.nr_args = ((cmd & 0xf0) == 0xE0);
	rec.nr_returns = ((cmd & 0xf0) == 0xA0);
	rec.data[0] = data & 0xff;

	if ((ret = mpu401_command(dev, &rec)) < 0) {
		return ret;
	}
	return (u_char) rec.data[0];
}

static int
mpu401_prefix_cmd(int dev, u_char status)
{
	struct mpu_config *devc = &dev_conf[dev];

	if (devc->uart_mode)
		return 1;

	if (status < 0xf0) {
		if (mpu_cmd(dev, 0xD0, 0) < 0) {
			return 0;
		}
		return 1;
	}
	switch (status) {
	case 0xF0:
		if (mpu_cmd(dev, 0xDF, 0) < 0) {
			return 0;
		}
		return 1;
		break;

	default:
		return 0;
	}

}

static int
mpu401_start_read(int dev)
{
    return 0;
}

static int
mpu401_end_read(int dev)
{
    return 0;
}

static int
mpu401_ioctl(int dev, u_int cmd, ioctl_arg arg)
{
    struct mpu_config *devc;

    devc = &dev_conf[dev];

    switch (cmd) {
    case 1:
	bcopy(&(((char *) arg)[0]), (char *) init_sequence, sizeof(init_sequence));
	return 0;
	break;

    case SNDCTL_MIDI_MPUMODE:
	if (!(devc->capabilities & MPU_CAP_INTLG)) {	/* No intelligent mode */
	    printf("MPU-401: Intelligent mode not supported by the HW\n");
	    return -(EINVAL);
	}
	set_uart_mode(dev, devc, !(*(int *) arg));
	return 0;
	break;

    case SNDCTL_MIDI_MPUCMD:
	{
	    int             ret;
	    mpu_command_rec rec;

	    bcopy(&(((char *) arg)[0]), (char *) &rec, sizeof(rec));

	    if ((ret = mpu401_command(dev, &rec)) < 0)
		return ret;
	    bcopy((char *) &rec, &(((char *) arg)[0]), sizeof(rec));
	    return 0;
	}
	break;

    default:
	return -(EINVAL);
    }
}

static void
mpu401_kick(int dev)
{
}

static int
mpu401_buffer_status(int dev)
{
	return 0;		/* No data in buffers */
}

static int
mpu_synth_ioctl(int dev,
		u_int cmd, ioctl_arg arg)
{
    int             midi_dev;
    struct mpu_config *devc;

    midi_dev = synth_devs[dev]->midi_dev;

    if (midi_dev < 0 || midi_dev > num_midis)
	return -(ENXIO);

    devc = &dev_conf[midi_dev];

    switch (cmd) {

    case SNDCTL_SYNTH_INFO:
	bcopy(&mpu_synth_info[midi_dev], &(((char *) arg)[0]), sizeof(struct synth_info));
	return 0;
	break;

    case SNDCTL_SYNTH_MEMAVL:
	return 0x7fffffff;
	break;

    default:
	return -(EINVAL);
    }
}

static int
mpu_synth_open(int dev, int mode)
{
    int             midi_dev, err;
    struct mpu_config *devc;

    midi_dev = synth_devs[dev]->midi_dev;

    if (midi_dev < 0 || midi_dev > num_midis) {
	return -(ENXIO);
    }
    devc = &dev_conf[midi_dev];

    /*
     * Verify that the device is really running. Some devices (such as
     * Ensoniq SoundScape don't work before the on board processor (OBP)
     * is initialized by downloadin it's microcode.
     */

    if (!devc->initialized) {
	if (mpu401_status(devc) == 0xff) {	/* Bus float */
	    printf("MPU-401: Device not initialized properly\n");
	    return -(EIO);
	}
	reset_mpu401(devc);
    }
    if (devc->opened) {
	printf("MPU-401: Midi busy\n");
	return -(EBUSY);
    }
    devc->mode = MODE_SYNTH;
    devc->synthno = dev;

    devc->inputintr = NULL;
    irq2dev[devc->irq] = midi_dev;

    if (midi_devs[midi_dev]->coproc)
	if ((err = midi_devs[midi_dev]->coproc->
	  open(midi_devs[midi_dev]->coproc->devc, COPR_MIDI)) < 0) {
	    printf("MPU-401: Can't access coprocessor device\n");

	    return err;
	}
    devc->opened = mode;
    reset_mpu401(devc);

    if (mode & OPEN_READ) {
	mpu_cmd(midi_dev, 0x8B, 0);	/* Enable data in stop mode */
	mpu_cmd(midi_dev, 0x34, 0);	/* Return timing bytes in stop mode */
    }
    return 0;
}

static void
mpu_synth_close(int dev)
{
    int             midi_dev;
    struct mpu_config *devc;

    midi_dev = synth_devs[dev]->midi_dev;

    devc = &dev_conf[midi_dev];
    mpu_cmd(midi_dev, 0x15, 0);	/* Stop recording, playback and MIDI */
    mpu_cmd(midi_dev, 0x8a, 0);	/* Disable data in stopped mode */

    devc->inputintr = NULL;

    if (midi_devs[midi_dev]->coproc)
	midi_devs[midi_dev]->coproc->close(midi_devs[midi_dev]->coproc->devc, COPR_MIDI);
    devc->opened = 0;
    devc->mode = 0;
}

#define MIDI_SYNTH_NAME	"MPU-401 UART Midi"
#define MIDI_SYNTH_CAPS	SYNTH_CAP_INPUT
#include <i386/isa/sound/midi_synth.h>

static struct synth_operations mpu401_synth_proto =
{
	NULL,
	0,
	SYNTH_TYPE_MIDI,
	0,
	mpu_synth_open,
	mpu_synth_close,
	mpu_synth_ioctl,
	midi_synth_kill_note,
	midi_synth_start_note,
	midi_synth_set_instr,
	midi_synth_reset,
	midi_synth_hw_control,
	midi_synth_load_patch,
	midi_synth_aftertouch,
	midi_synth_controller,
	midi_synth_panning,
	NULL,
	midi_synth_patchmgr,
	midi_synth_bender,
	NULL,			/* alloc */
	midi_synth_setup_voice,
	midi_synth_send_sysex
};

static struct synth_operations *mpu401_synth_operations[MAX_MIDI_DEV];

static struct midi_operations mpu401_midi_proto =
{
	{"MPU-401 Midi", 0, MIDI_CAP_MPU401, SNDCARD_MPU401},
	NULL,
	{0},
	mpu401_open,
	mpu401_close,
	mpu401_ioctl,
	mpu401_out,
	mpu401_start_read,
	mpu401_end_read,
	mpu401_kick,
	NULL,
	mpu401_buffer_status,
	mpu401_prefix_cmd
};

static struct midi_operations mpu401_midi_operations[MAX_MIDI_DEV];

static void
mpu401_chk_version(struct mpu_config * devc)
{
    int             tmp;

    devc->version = devc->revision = 0;

    if ((tmp = mpu_cmd(num_midis, 0xAC, 0)) < 0)
	return;

    if ((tmp & 0xf0) > 0x20)/* Why it's larger than 2.x ??? */
	return;

    devc->version = tmp;

    if ((tmp = mpu_cmd(num_midis, 0xAD, 0)) < 0) {
	devc->version = 0;
	return;
    }
    devc->revision = tmp;
}

void
attach_mpu401(struct address_info * hw_config)
{
    u_long   flags;
    char            revision_char;

    struct mpu_config *devc;

    if (num_midis >= MAX_MIDI_DEV) {
	printf("MPU-401: Too many midi devices detected\n");
	return ;
    }
    devc = &dev_conf[num_midis];

    devc->base = hw_config->io_base;
    devc->osp = hw_config->osp;
    devc->irq = hw_config->irq;
    devc->opened = 0;
    devc->uart_mode = 0;
    devc->initialized = 0;
    devc->version = 0;
    devc->revision = 0;
    devc->capabilities = 0;
    devc->timer_flag = 0;
    devc->m_busy = 0;
    devc->m_state = ST_INIT;
    devc->shared_irq = hw_config->always_detect;
    devc->irq = hw_config->irq;

    if (devc->irq < 0) {
	devc->irq *= -1;
	devc->shared_irq = 1;
    }
    irq2dev[devc->irq] = num_midis;

    if (!hw_config->always_detect) {
	/* Verify the hardware again */
	if (!reset_mpu401(devc))
	    return ;

	if (!devc->shared_irq)
	    if (snd_set_irq_handler(devc->irq, mpuintr, devc->osp) < 0) {
		return ;
	    }
	flags = splhigh();
	mpu401_chk_version(devc);
	if (devc->version == 0)
	    mpu401_chk_version(devc);
	splx(flags);
    };

    if (devc->version != 0)
	if (mpu_cmd(num_midis, 0xC5, 0) >= 0)	/* Set timebase OK */
	    if (mpu_cmd(num_midis, 0xE0, 120) >= 0)	/* Set tempo OK */
		devc->capabilities |= MPU_CAP_INTLG;	/* Supports intelligent
							 * mode */

    mpu401_synth_operations[num_midis] = (struct synth_operations *) malloc(sizeof(struct synth_operations), M_DEVBUF, M_NOWAIT);

    if (!mpu401_synth_operations[num_midis])
	panic("SOUND: Cannot allocate memory\n");

    if (mpu401_synth_operations[num_midis] == NULL) {
	printf("mpu401: Can't allocate memory\n");
	return ;
    }
    if (!(devc->capabilities & MPU_CAP_INTLG)) {	/* No intelligent mode */
	bcopy((char *) &std_midi_synth, (char *) mpu401_synth_operations[num_midis], sizeof(struct synth_operations));
    } else {
	bcopy((char *) &mpu401_synth_proto, (char *) mpu401_synth_operations[num_midis], sizeof(struct synth_operations));
    }

    bcopy((char *) &mpu401_midi_proto, (char *) &mpu401_midi_operations[num_midis], sizeof(struct midi_operations));

    mpu401_midi_operations[num_midis].converter =
	    mpu401_synth_operations[num_midis];

    bcopy((char *) &mpu_synth_info_proto, (char *) &mpu_synth_info[num_midis], sizeof(struct synth_info));

    n_mpu_devs++;

    if (devc->version == 0x20 && devc->revision >= 0x07) {	/* MusicQuest interface */
	int             ports = (devc->revision & 0x08) ? 32 : 16;

	devc->capabilities |= MPU_CAP_SYNC | MPU_CAP_SMPTE |
			MPU_CAP_CLS | MPU_CAP_2PORT;

	revision_char = (devc->revision == 0x7f) ? 'M' : ' ';
	sprintf(mpu_synth_info[num_midis].name,
		"MQX-%d%c MIDI Interface #%d",
		ports,
		revision_char,
		n_mpu_devs);
    } else {

	revision_char = devc->revision ? devc->revision + '@' : ' ';
	if ((int) devc->revision > ('Z' - '@'))
	    revision_char = '+';

	devc->capabilities |= MPU_CAP_SYNC | MPU_CAP_FSK;

	sprintf(mpu_synth_info[num_midis].name,
	    "MPU-401 %d.%d%c Midi interface #%d",
	    (int) (devc->version & 0xf0) >> 4,
	    devc->version & 0x0f,
	    revision_char,
	    n_mpu_devs);
    }

    strcpy(mpu401_midi_operations[num_midis].info.name,
       mpu_synth_info[num_midis].name);

    conf_printf(mpu_synth_info[num_midis].name, hw_config);

    mpu401_synth_operations[num_midis]->midi_dev = devc->devno = num_midis;
    mpu401_synth_operations[devc->devno]->info =
	&mpu_synth_info[devc->devno];

    if (devc->capabilities & MPU_CAP_INTLG)	/* Intelligent mode */
	mpu_timer_init(num_midis);

    irq2dev[devc->irq] = num_midis;
    midi_devs[num_midis++] = &mpu401_midi_operations[devc->devno];
    return ;
}

static int
reset_mpu401(struct mpu_config * devc)
{
    u_long   flags;
    int             ok, timeout, n;
    int             timeout_limit;

    /*
     * Send the RESET command. Try again if no success at the first time.
     * (If the device is in the UART mode, it will not ack the reset
     * cmd).
     */

    ok = 0;

    timeout_limit = devc->initialized ? 30000 : 100000;
    devc->initialized = 1;

    for (n = 0; n < 2 && !ok; n++) {
	for (timeout = timeout_limit; timeout > 0 && !ok; timeout--)
	    ok = output_ready(devc);

	write_command(devc, MPU_RESET);	/* Send MPU-401 RESET Command */

	/*
	 * Wait at least 25 msec. This method is not accurate so
	 * let's make the loop bit longer. Cannot sleep since this is
	 * called during boot.
	 */

	for (timeout = timeout_limit * 2; timeout > 0 && !ok; timeout--) {
	    flags = splhigh();
	    if ( (input_avail(devc)) && (read_data(devc) == MPU_ACK) )
		ok = 1;
	    splx(flags);
	}

    }

    devc->m_state = ST_INIT;
    devc->m_ptr = 0;
    devc->m_left = 0;
    devc->last_status = 0;
    devc->uart_mode = 0;

    return ok;
}

static void
set_uart_mode(int dev, struct mpu_config * devc, int arg)
{
    if (!arg && (devc->capabilities & MPU_CAP_INTLG))
	return;
    if ((devc->uart_mode == 0) == (arg == 0))
	return;		/* Already set */
    reset_mpu401(devc);	/* This exits the uart mode */

    if (arg && (mpu_cmd(dev, UART_MODE_ON, 0) < 0) ) {
	printf("MPU%d: Can't enter UART mode\n", devc->devno);
	devc->uart_mode = 0;
	return;
    }
    devc->uart_mode = arg;
}

int
probe_mpu401(struct address_info * hw_config)
{
    int             ok = 0;
    struct mpu_config tmp_devc;

    tmp_devc.base = hw_config->io_base;
    tmp_devc.irq = hw_config->irq;
    tmp_devc.initialized = 0;
    tmp_devc.opened = 0;
    tmp_devc.osp = hw_config->osp;

#if defined(CONFIG_AEDSP16) && defined(AEDSP16_MPU401)
    /*
     * Initialize Audio Excel DSP 16 to MPU-401, before any operation.
     */
    InitAEDSP16_MPU401(hw_config);
#endif

    if (hw_config->always_detect)
	return 1;

    if (inb(hw_config->io_base + 1) == 0xff) {
	DDB(printf("MPU401: Port %x looks dead.\n", hw_config->io_base));
	return 0;	/* Just bus float? */
    }
    ok = reset_mpu401(&tmp_devc);

    if (!ok) {
	DDB(printf("MPU401: Reset failed on port %x\n", hw_config->io_base));
    }
    return ok;
}


/*
 *      Timer stuff
 */

#if defined(CONFIG_SEQUENCER)

static volatile int timer_initialized = 0, timer_open = 0, tmr_running = 0;
static volatile int curr_tempo, curr_timebase, hw_timebase;
static int      max_timebase = 8;	/* 8*24=192 ppqn */
static volatile u_long next_event_time;
static volatile u_long curr_ticks, curr_clocks;
static u_long prev_event_time;
static int      metronome_mode;

static u_long
clocks2ticks(u_long clocks)
{
    /*
     * The MPU-401 supports just a limited set of possible timebase
     * values. Since the applications require more choices, the driver
     * has to program the HW to do it's best and to convert between the
     * HW and actual timebases.
     */

    return ((clocks * curr_timebase) + (hw_timebase / 2)) / hw_timebase;
}

static void
set_timebase(int midi_dev, int val)
{
    int             hw_val;

    if (val < 48)
	val = 48;
    if (val > 1000)
	val = 1000;

    hw_val = val;
    hw_val = (hw_val + 12) / 24;
    if (hw_val > max_timebase)
	hw_val = max_timebase;

    if (mpu_cmd(midi_dev, 0xC0 | (hw_val & 0x0f), 0) < 0) {
	printf("MPU: Can't set HW timebase to %d\n", hw_val * 24);
	return;
    }
    hw_timebase = hw_val * 24;
    curr_timebase = val;
}

static void
tmr_reset(void)
{
    u_long   flags;

    flags = splhigh();
    next_event_time = 0xffffffff;
    prev_event_time = 0;
    curr_ticks = curr_clocks = 0;
    splx(flags);
}

static void
set_timer_mode(int midi_dev)
{
    if (timer_mode & TMR_MODE_CLS)
	mpu_cmd(midi_dev, 0x3c, 0);	/* Use CLS sync */
    else if (timer_mode & TMR_MODE_SMPTE)
	mpu_cmd(midi_dev, 0x3d, 0);	/* Use SMPTE sync */

    if (timer_mode & TMR_INTERNAL)
	mpu_cmd(midi_dev, 0x80, 0);	/* Use MIDI sync */
    else {
	if (timer_mode & (TMR_MODE_MIDI | TMR_MODE_CLS)) {
	    mpu_cmd(midi_dev, 0x82, 0);	/* Use MIDI sync */
	    mpu_cmd(midi_dev, 0x91, 0);	/* Enable ext MIDI ctrl */
	} else if (timer_mode & TMR_MODE_FSK)
	    mpu_cmd(midi_dev, 0x81, 0);	/* Use FSK sync */
    }
}

static void
stop_metronome(int midi_dev)
{
    mpu_cmd(midi_dev, 0x84, 0);	/* Disable metronome */
}

static void
setup_metronome(int midi_dev)
{
    int             numerator, denominator;
    int             clks_per_click, num_32nds_per_beat;
    int             beats_per_measure;

    numerator = ((u_int) metronome_mode >> 24) & 0xff;
    denominator = ((u_int) metronome_mode >> 16) & 0xff;
    clks_per_click = ((u_int) metronome_mode >> 8) & 0xff;
    num_32nds_per_beat = (u_int) metronome_mode & 0xff;
    beats_per_measure = (numerator * 4) >> denominator;

    if (!metronome_mode)
	mpu_cmd(midi_dev, 0x84, 0);	/* Disable metronome */
    else {
	mpu_cmd(midi_dev, 0xE4, clks_per_click);
	mpu_cmd(midi_dev, 0xE6, beats_per_measure);
	mpu_cmd(midi_dev, 0x83, 0);	/* Enable metronome without
					 * accents */
    }
}

static int
mpu_start_timer(int midi_dev)
{
    tmr_reset();
    set_timer_mode(midi_dev);

    if (tmr_running)
	return TIMER_NOT_ARMED;	/* Already running */

    if (timer_mode & TMR_INTERNAL) {
	mpu_cmd(midi_dev, 0x02, 0);	/* Send MIDI start */
	tmr_running = 1;
	return TIMER_NOT_ARMED;
    } else {
	mpu_cmd(midi_dev, 0x35, 0);	/* Enable mode messages to PC */
	mpu_cmd(midi_dev, 0x38, 0);	/* Enable sys common messages to PC */
	mpu_cmd(midi_dev, 0x39, 0);	/* Enable real time messages to PC */
	mpu_cmd(midi_dev, 0x97, 0);	/* Enable system exclusive
					 * messages to PC */
    }

    return TIMER_ARMED;
}

static int
mpu_timer_open(int dev, int mode)
{
    int             midi_dev = sound_timer_devs[dev]->devlink;

    if (timer_open)
	return -(EBUSY);

    tmr_reset();
    curr_tempo = 50;
    mpu_cmd(midi_dev, 0xE0, 50);
    curr_timebase = hw_timebase = 120;
    set_timebase(midi_dev, 120);
    timer_open = 1;
    metronome_mode = 0;
    set_timer_mode(midi_dev);

    mpu_cmd(midi_dev, 0xe7, 0x04);	/* Send all clocks to host */
    mpu_cmd(midi_dev, 0x95, 0);	/* Enable clock to host */

    return 0;
}

static void
mpu_timer_close(int dev)
{
    int             midi_dev = sound_timer_devs[dev]->devlink;

    timer_open = tmr_running = 0;
    mpu_cmd(midi_dev, 0x15, 0);	/* Stop all */
    mpu_cmd(midi_dev, 0x94, 0);	/* Disable clock to host */
    mpu_cmd(midi_dev, 0x8c, 0);	/* Disable measure end messages to
					 * host */
    stop_metronome(midi_dev);
}

static int
mpu_timer_event(int dev, u_char *event)
{
    u_char   command = event[1];
    u_long   parm = *(u_int *) &event[4];
    int             midi_dev = sound_timer_devs[dev]->devlink;

    switch (command) {
    case TMR_WAIT_REL:
	parm += prev_event_time;
    case TMR_WAIT_ABS:
	if (parm > 0) {
	    long            time;

	    if (parm <= curr_ticks)	/* It's the time */
		return TIMER_NOT_ARMED;

	    time = parm;
	    next_event_time = prev_event_time = time;

	    return TIMER_ARMED;
	}
	break;

    case TMR_START:
	if (tmr_running)
	    break;
	return mpu_start_timer(midi_dev);
	break;

    case TMR_STOP:
	mpu_cmd(midi_dev, 0x01, 0);	/* Send MIDI stop */
	stop_metronome(midi_dev);
	tmr_running = 0;
	break;

    case TMR_CONTINUE:
	if (tmr_running)
	    break;
	mpu_cmd(midi_dev, 0x03, 0);	/* Send MIDI continue */
	setup_metronome(midi_dev);
	tmr_running = 1;
	break;

    case TMR_TEMPO:
	if (parm) {
	    if (parm < 8)
		parm = 8;
	    if (parm > 250)
		parm = 250;

	    if (mpu_cmd(midi_dev, 0xE0, parm) < 0)
		printf("MPU: Can't set tempo to %d\n", (int) parm);
	    curr_tempo = parm;
	}
	break;

    case TMR_ECHO:
	seq_copy_to_input(event, 8);
	break;

    case TMR_TIMESIG:
	if (metronome_mode) {	/* Metronome enabled */
	    metronome_mode = parm;
	    setup_metronome(midi_dev);
	}
	break;

    default:;
    }

    return TIMER_NOT_ARMED;
}

static u_long
mpu_timer_get_time(int dev)
{
    if (!timer_open)
	return 0;

    return curr_ticks;
}

static int
mpu_timer_ioctl(int dev, u_int command, ioctl_arg arg)
{
    int             midi_dev = sound_timer_devs[dev]->devlink;

    switch (command) {
    case SNDCTL_TMR_SOURCE:
	{
	    int             parm = (int) (*(int *) arg) & timer_caps;

	    if (parm != 0) {
		timer_mode = parm;

		if (timer_mode & TMR_MODE_CLS)
		    mpu_cmd(midi_dev, 0x3c, 0);	/* Use CLS sync */
		else if (timer_mode & TMR_MODE_SMPTE)
		    mpu_cmd(midi_dev, 0x3d, 0);	/* Use SMPTE sync */
	    }
	    return *(int *) arg = timer_mode;
	}
	break;

    case SNDCTL_TMR_START:
	mpu_start_timer(midi_dev);
	return 0;
	break;

    case SNDCTL_TMR_STOP:
	tmr_running = 0;
	mpu_cmd(midi_dev, 0x01, 0);	/* Send MIDI stop */
	stop_metronome(midi_dev);
	return 0;
	break;

    case SNDCTL_TMR_CONTINUE:
	if (tmr_running)
	    return 0;
	tmr_running = 1;
	mpu_cmd(midi_dev, 0x03, 0);	/* Send MIDI continue */
	return 0;
	break;

    case SNDCTL_TMR_TIMEBASE:
	{
	    int             val = (int) (*(int *) arg);

	    if (val)
		set_timebase(midi_dev, val);

	    return *(int *) arg = curr_timebase;
	}
	break;

    case SNDCTL_TMR_TEMPO:
	{
	    int             val = (int) (*(int *) arg);
	    int             ret;

	    if (val) {
		RANGE (val, 8 , 250 );
		if ((ret = mpu_cmd(midi_dev, 0xE0, val)) < 0) {
		    printf("MPU: Can't set tempo to %d\n", (int) val);
		    return ret;
		}
		curr_tempo = val;
	    }
	    return *(int *) arg = curr_tempo;
	}
	break;

    case SNDCTL_SEQ_CTRLRATE:
	if ((*(int *) arg) != 0)	/* Can't change */
	    return -(EINVAL);

	return *(int *) arg = ((curr_tempo * curr_timebase) + 30) / 60;
	break;

    case SNDCTL_TMR_METRONOME:
	metronome_mode = (int) (*(int *) arg);
	setup_metronome(midi_dev);
	return 0;
	break;

    default:;
    }

    return -(EINVAL);
}

static void
mpu_timer_arm(int dev, long time)
{
    if (time < 0)
	time = curr_ticks + 1;
    else if (time <= curr_ticks)	/* It's the time */
	return;

    next_event_time = prev_event_time = time;

    return;
}

static struct sound_timer_operations mpu_timer =
{
	{"MPU-401 Timer", 0},
	10,			/* Priority */
	0,			/* Local device link */
	mpu_timer_open,
	mpu_timer_close,
	mpu_timer_event,
	mpu_timer_get_time,
	mpu_timer_ioctl,
	mpu_timer_arm
};

static void
mpu_timer_interrupt(void)
{

    if (!timer_open)
	return;

    if (!tmr_running)
	return;

    curr_clocks++;
    curr_ticks = clocks2ticks(curr_clocks);

    if (curr_ticks >= next_event_time) {
	next_event_time = 0xffffffff;
	sequencer_timer(0);
    }
}

static void
timer_ext_event(struct mpu_config * devc, int event, int parm)
{
    int             midi_dev = devc->devno;

    if (!devc->timer_flag)
	return;

    switch (event) {
    case TMR_CLOCK:
	printf("<MIDI clk>");
	break;

    case TMR_START:
	printf("Ext MIDI start\n");
	if (!tmr_running)
	    if (timer_mode & TMR_EXTERNAL) {
		tmr_running = 1;
		setup_metronome(midi_dev);
		next_event_time = 0;
		STORE(SEQ_START_TIMER());
	    }
	break;

    case TMR_STOP:
	printf("Ext MIDI stop\n");
	if (timer_mode & TMR_EXTERNAL) {
	    tmr_running = 0;
	    stop_metronome(midi_dev);
	    STORE(SEQ_STOP_TIMER());
	}
	break;

    case TMR_CONTINUE:
	printf("Ext MIDI continue\n");
	if (timer_mode & TMR_EXTERNAL) {
	    tmr_running = 1;
	    setup_metronome(midi_dev);
	    STORE(SEQ_CONTINUE_TIMER());
	}
	break;

    case TMR_SPP:
	printf("Songpos: %d\n", parm);
	if (timer_mode & TMR_EXTERNAL) {
	    STORE(SEQ_SONGPOS(parm));
	}
	break;
    }
}

static void
mpu_timer_init(int midi_dev)
{
    struct mpu_config *devc;
    int             n;

    devc = &dev_conf[midi_dev];

    if (timer_initialized)
	return;		/* There is already a similar timer */

    timer_initialized = 1;

    mpu_timer.devlink = midi_dev;
    dev_conf[midi_dev].timer_flag = 1;

    if (num_sound_timers >= MAX_TIMER_DEV)
	n = 0;		/* Overwrite the system timer */
    else
	n = num_sound_timers++;
    sound_timer_devs[n] = &mpu_timer;

    if (devc->version < 0x20)	/* Original MPU-401 */
	timer_caps = TMR_INTERNAL | TMR_EXTERNAL | TMR_MODE_FSK | TMR_MODE_MIDI;
    else {
	/*
	 * The version number 2.0 is used (at least) by the
	 * MusicQuest cards and the Roland Super-MPU.
	 * 
	 * MusicQuest has given a special meaning to the bits of the
	 * revision number. The Super-MPU returns 0.
	 */

	if (devc->revision)
	    timer_caps |= TMR_EXTERNAL | TMR_MODE_MIDI;

	if (devc->revision & 0x02)
	    timer_caps |= TMR_MODE_CLS;


	if (devc->revision & 0x40)
	    max_timebase = 10;	/* Has the 216 and 240 ppqn modes */
    }
    timer_mode = (TMR_INTERNAL | TMR_MODE_MIDI) & timer_caps;
}

#endif

#endif
OpenPOWER on IntegriCloud