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
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
|
/* $OpenBSD: maestro.c,v 1.56 2024/09/20 02:00:46 jsg Exp $ */
/* $FreeBSD: /c/ncvs/src/sys/dev/sound/pci/maestro.c,v 1.3 2000/11/21 12:22:11 julian Exp $ */
/*
* FreeBSD's ESS Agogo/Maestro driver
* Converted from FreeBSD's pcm to OpenBSD's audio.
* Copyright (c) 2000, 2001 David Leonard & Marc Espie
* All rights reserved.
*
* 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.
*/
/*-
* (FreeBSD) Credits:
* Copyright (c) 2000 Taku YAMAMOTO <taku@cent.saitama-u.ac.jp>
*
* Part of this code (especially in many magic numbers) was heavily inspired
* by the Linux driver originally written by
* Alan Cox <alan.cox@linux.org>, modified heavily by
* Zach Brown <zab@zabbo.net>.
*
* busdma()-ize and buffer size reduction were suggested by
* Cameron Grant <gandalf@vilnya.demon.co.uk>.
* Also he showed me the way to use busdma() suite.
*
* Internal speaker problems on NEC VersaPro's and Dell Inspiron 7500
* were looked at by
* Munehiro Matsuda <haro@tk.kubota.co.jp>,
* who brought patches based on the Linux driver with some simplification.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/queue.h>
#include <sys/fcntl.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/pcivar.h>
#include <sys/audioio.h>
#include <dev/audio_if.h>
#include <dev/ic/ac97.h>
/* -----------------------------
* PCI config registers
*/
/* Legacy emulation */
#define CONF_LEGACY 0x40
#define LEGACY_DISABLED 0x8000
/* Chip configurations */
#define CONF_MAESTRO 0x50
#define MAESTRO_CHIBUS 0x00100000
#define MAESTRO_POSTEDWRITE 0x00000080
#define MAESTRO_DMA_PCITIMING 0x00000040
#define MAESTRO_SWAP_LR 0x00000010
/* ACPI configurations */
#define CONF_ACPI_STOPCLOCK 0x54
#define ACPI_PART_2ndC_CLOCK 15
#define ACPI_PART_CODEC_CLOCK 14
#define ACPI_PART_978 13 /* Docking station or something */
#define ACPI_PART_SPDIF 12
#define ACPI_PART_GLUE 11 /* What? */
#define ACPI_PART_DAA 10
#define ACPI_PART_PCI_IF 9
#define ACPI_PART_HW_VOL 8
#define ACPI_PART_GPIO 7
#define ACPI_PART_ASSP 6
#define ACPI_PART_SB 5
#define ACPI_PART_FM 4
#define ACPI_PART_RINGBUS 3
#define ACPI_PART_MIDI 2
#define ACPI_PART_GAME_PORT 1
#define ACPI_PART_WP 0
/* -----------------------------
* I/O ports
*/
/* Direct Sound Processor (aka Wave Processor) */
#define PORT_DSP_DATA 0x00 /* WORD RW */
#define PORT_DSP_INDEX 0x02 /* WORD RW */
#define PORT_INT_STAT 0x04 /* WORD RW */
#define PORT_SAMPLE_CNT 0x06 /* WORD RO */
/* WaveCache */
#define PORT_WAVCACHE_INDEX 0x10 /* WORD RW */
#define PORT_WAVCACHE_DATA 0x12 /* WORD RW */
#define WAVCACHE_PCMBAR 0x1fc
#define WAVCACHE_WTBAR 0x1f0
#define WAVCACHE_BASEADDR_SHIFT 12
#define WAVCACHE_CHCTL_ADDRTAG_MASK 0xfff8
#define WAVCACHE_CHCTL_U8 0x0004
#define WAVCACHE_CHCTL_STEREO 0x0002
#define WAVCACHE_CHCTL_DECREMENTAL 0x0001
#define PORT_WAVCACHE_CTRL 0x14 /* WORD RW */
#define WAVCACHE_EXTRA_CH_ENABLED 0x0200
#define WAVCACHE_ENABLED 0x0100
#define WAVCACHE_CH_60_ENABLED 0x0080
#define WAVCACHE_WTSIZE_MASK 0x0060
#define WAVCACHE_WTSIZE_1MB 0x0000
#define WAVCACHE_WTSIZE_2MB 0x0020
#define WAVCACHE_WTSIZE_4MB 0x0040
#define WAVCACHE_WTSIZE_8MB 0x0060
#define WAVCACHE_SGC_MASK 0x000c
#define WAVCACHE_SGC_DISABLED 0x0000
#define WAVCACHE_SGC_40_47 0x0004
#define WAVCACHE_SGC_32_47 0x0008
#define WAVCACHE_TESTMODE 0x0001
/* Host Interruption */
#define PORT_HOSTINT_CTRL 0x18 /* WORD RW */
#define HOSTINT_CTRL_SOFT_RESET 0x8000
#define HOSTINT_CTRL_DSOUND_RESET 0x4000
#define HOSTINT_CTRL_HW_VOL_TO_PME 0x0400
#define HOSTINT_CTRL_CLKRUN_ENABLED 0x0100
#define HOSTINT_CTRL_HWVOL_ENABLED 0x0040
#define HOSTINT_CTRL_ASSP_INT_ENABLED 0x0010
#define HOSTINT_CTRL_ISDN_INT_ENABLED 0x0008
#define HOSTINT_CTRL_DSOUND_INT_ENABLED 0x0004
#define HOSTINT_CTRL_MPU401_INT_ENABLED 0x0002
#define HOSTINT_CTRL_SB_INT_ENABLED 0x0001
#define PORT_HOSTINT_STAT 0x1a /* BYTE RW */
#define HOSTINT_STAT_HWVOL 0x40
#define HOSTINT_STAT_ASSP 0x10
#define HOSTINT_STAT_ISDN 0x08
#define HOSTINT_STAT_DSOUND 0x04
#define HOSTINT_STAT_MPU401 0x02
#define HOSTINT_STAT_SB 0x01
/* Hardware volume */
#define PORT_HWVOL_VOICE_SHADOW 0x1c /* BYTE RW */
#define PORT_HWVOL_VOICE 0x1d /* BYTE RW */
#define PORT_HWVOL_MASTER_SHADOW 0x1e /* BYTE RW */
#define PORT_HWVOL_MASTER 0x1f /* BYTE RW */
/* CODEC */
#define PORT_CODEC_CMD 0x30 /* BYTE W */
#define CODEC_CMD_READ 0x80
#define CODEC_CMD_WRITE 0x00
#define CODEC_CMD_ADDR_MASK 0x7f
#define PORT_CODEC_STAT 0x30 /* BYTE R */
#define CODEC_STAT_MASK 0x01
#define CODEC_STAT_RW_DONE 0x00
#define CODEC_STAT_PROGLESS 0x01
#define PORT_CODEC_REG 0x32 /* WORD RW */
/* Ring bus control */
#define PORT_RINGBUS_CTRL 0x34 /* DWORD RW */
#define RINGBUS_CTRL_I2S_ENABLED 0x80000000
#define RINGBUS_CTRL_RINGBUS_ENABLED 0x20000000
#define RINGBUS_CTRL_ACLINK_ENABLED 0x10000000
#define RINGBUS_CTRL_AC97_SWRESET 0x08000000
#define RINGBUS_CTRL_IODMA_PLAYBACK_ENABLED 0x04000000
#define RINGBUS_CTRL_IODMA_RECORD_ENABLED 0x02000000
#define RINGBUS_SRC_MIC 20
#define RINGBUS_SRC_I2S 16
#define RINGBUS_SRC_ADC 12
#define RINGBUS_SRC_MODEM 8
#define RINGBUS_SRC_DSOUND 4
#define RINGBUS_SRC_ASSP 0
#define RINGBUS_DEST_MONORAL 000
#define RINGBUS_DEST_STEREO 010
#define RINGBUS_DEST_NONE 0
#define RINGBUS_DEST_DAC 1
#define RINGBUS_DEST_MODEM_IN 2
#define RINGBUS_DEST_RESERVED3 3
#define RINGBUS_DEST_DSOUND_IN 4
#define RINGBUS_DEST_ASSP_IN 5
/* General Purpose I/O */
#define PORT_GPIO_DATA 0x60 /* WORD RW */
#define PORT_GPIO_MASK 0x64 /* WORD RW */
#define PORT_GPIO_DIR 0x68 /* WORD RW */
/* Application Specific Signal Processor */
#define PORT_ASSP_MEM_INDEX 0x80 /* DWORD RW */
#define PORT_ASSP_MEM_DATA 0x84 /* WORD RW */
#define PORT_ASSP_CTRL_A 0xa2 /* BYTE RW */
#define PORT_ASSP_CTRL_B 0xa4 /* BYTE RW */
#define PORT_ASSP_CTRL_C 0xa6 /* BYTE RW */
#define PORT_ASSP_HOST_WR_INDEX 0xa8 /* BYTE W */
#define PORT_ASSP_HOST_WR_DATA 0xaa /* BYTE RW */
#define PORT_ASSP_INT_STAT 0xac /* BYTE RW */
/* -----------------------------
* Wave Processor Indexed Data Registers.
*/
#define WPREG_DATA_PORT 0
#define WPREG_CRAM_PTR 1
#define WPREG_CRAM_DATA 2
#define WPREG_WAVE_DATA 3
#define WPREG_WAVE_PTR_LOW 4
#define WPREG_WAVE_PTR_HIGH 5
#define WPREG_TIMER_FREQ 6
#define WP_TIMER_FREQ_PRESCALE_MASK 0x00e0 /* actual - 9 */
#define WP_TIMER_FREQ_PRESCALE_SHIFT 5
#define WP_TIMER_FREQ_DIVIDE_MASK 0x001f
#define WP_TIMER_FREQ_DIVIDE_SHIFT 0
#define WPREG_WAVE_ROMRAM 7
#define WP_WAVE_VIRTUAL_ENABLED 0x0400
#define WP_WAVE_8BITRAM_ENABLED 0x0200
#define WP_WAVE_DRAM_ENABLED 0x0100
#define WP_WAVE_RAMSPLIT_MASK 0x00ff
#define WP_WAVE_RAMSPLIT_SHIFT 0
#define WPREG_BASE 12
#define WP_PARAOUT_BASE_MASK 0xf000
#define WP_PARAOUT_BASE_SHIFT 12
#define WP_PARAIN_BASE_MASK 0x0f00
#define WP_PARAIN_BASE_SHIFT 8
#define WP_SERIAL0_BASE_MASK 0x00f0
#define WP_SERIAL0_BASE_SHIFT 4
#define WP_SERIAL1_BASE_MASK 0x000f
#define WP_SERIAL1_BASE_SHIFT 0
#define WPREG_TIMER_ENABLE 17
#define WPREG_TIMER_START 23
/* -----------------------------
* Audio Processing Unit.
*/
#define APUREG_APUTYPE 0
#define APU_DMA_ENABLED 0x4000
#define APU_INT_ON_LOOP 0x2000
#define APU_ENDCURVE 0x1000
#define APU_APUTYPE_MASK 0x00f0
#define APU_FILTERTYPE_MASK 0x000c
#define APU_FILTERQ_MASK 0x0003
/* APU types */
#define APU_APUTYPE_SHIFT 4
#define APUTYPE_INACTIVE 0
#define APUTYPE_16BITLINEAR 1
#define APUTYPE_16BITSTEREO 2
#define APUTYPE_8BITLINEAR 3
#define APUTYPE_8BITSTEREO 4
#define APUTYPE_8BITDIFF 5
#define APUTYPE_DIGITALDELAY 6
#define APUTYPE_DUALTAP_READER 7
#define APUTYPE_CORRELATOR 8
#define APUTYPE_INPUTMIXER 9
#define APUTYPE_WAVETABLE 10
#define APUTYPE_RATECONV 11
#define APUTYPE_16BITPINGPONG 12
/* APU type 13 through 15 are reserved. */
/* Filter types */
#define APU_FILTERTYPE_SHIFT 2
#define FILTERTYPE_2POLE_LOPASS 0
#define FILTERTYPE_2POLE_BANDPASS 1
#define FILTERTYPE_2POLE_HIPASS 2
#define FILTERTYPE_1POLE_LOPASS 3
#define FILTERTYPE_1POLE_HIPASS 4
#define FILTERTYPE_PASSTHROUGH 5
/* Filter Q */
#define APU_FILTERQ_SHIFT 0
#define FILTERQ_LESSQ 0
#define FILTERQ_MOREQ 3
/* APU register 2 */
#define APUREG_FREQ_LOBYTE 2
#define APU_FREQ_LOBYTE_MASK 0xff00
#define APU_plus6dB 0x0010
/* APU register 3 */
#define APUREG_FREQ_HIWORD 3
#define APU_FREQ_HIWORD_MASK 0x0fff
/* Frequency */
#define APU_FREQ_LOBYTE_SHIFT 8
#define APU_FREQ_HIWORD_SHIFT 0
#define FREQ_Hz2DIV(freq) (((u_int64_t)(freq) << 16) / 48000)
/* APU register 4 */
#define APUREG_WAVESPACE 4
#define APU_STEREO 0x8000
#define APU_USE_SYSMEM 0x4000
#define APU_PCMBAR_MASK 0x6000
#define APU_64KPAGE_MASK 0xff00
/* PCM Base Address Register selection */
#define APU_PCMBAR_SHIFT 13
/* 64KW (==128KB) Page */
#define APU_64KPAGE_SHIFT 8
/* APU register 5 - 7 */
#define APUREG_CURPTR 5
#define APUREG_ENDPTR 6
#define APUREG_LOOPLEN 7
/* APU register 9 */
#define APUREG_AMPLITUDE 9
#define APU_AMPLITUDE_NOW_MASK 0xff00
#define APU_AMPLITUDE_DEST_MASK 0x00ff
/* Amplitude now? */
#define APU_AMPLITUDE_NOW_SHIFT 8
/* APU register 10 */
#define APUREG_POSITION 10
#define APU_RADIUS_MASK 0x00c0
#define APU_PAN_MASK 0x003f
/* Radius control. */
#define APU_RADIUS_SHIFT 6
#define RADIUS_CENTERCIRCLE 0
#define RADIUS_MIDDLE 1
#define RADIUS_OUTSIDE 2
/* Polar pan. */
#define APU_PAN_SHIFT 0
#define PAN_RIGHT 0x00
#define PAN_FRONT 0x08
#define PAN_LEFT 0x10
/* -----------------------------
* Limits.
*/
#define WPWA_MAX ((1 << 22) - 1)
#define WPWA_MAXADDR ((1 << 23) - 1)
#define MAESTRO_MAXADDR ((1 << 28) - 1)
#ifdef AUDIO_DEBUG
#define DPRINTF(x) if (maestrodebug) printf x
#define DLPRINTF(i, x) if (maestrodebug & i) printf x
int maestrodebug = 0;
u_long maestrointr_called;
u_long maestrodma_effective;
#define MAESTRODEBUG_INTR 1
#define MAESTRODEBUG_TIMER 2
#else
#define DPRINTF(x)
#define DLPRINTF(i, x)
#endif
#define MAESTRO_BUFSIZ 0x4000
#define lengthof(array) (sizeof (array) / sizeof (array)[0])
#define STEP_VOLUME 0x22
#define MIDDLE_VOLUME (STEP_VOLUME * 4)
typedef struct salloc_pool {
struct salloc_zone {
SLIST_ENTRY(salloc_zone) link;
caddr_t addr;
size_t size;
} *zones;
SLIST_HEAD(salloc_head, salloc_zone) free, used, spare;
} *salloc_t;
struct maestro_softc;
#define MAESTRO_PLAY 1
#define MAESTRO_STEREO 2
#define MAESTRO_8BIT 4
#define MAESTRO_UNSIGNED 8
#define MAESTRO_RUNNING 16
struct maestro_channel {
struct maestro_softc *sc;
int num;
u_int32_t blocksize;
u_int16_t mode;
u_int32_t speed;
u_int32_t dv;
u_int16_t start;
u_int16_t threshold;
u_int16_t end;
u_int16_t current;
u_int wpwa;
void (*intr)(void *);
void *intr_arg;
};
struct maestro_softc {
struct device dev;
void *ih;
pci_chipset_tag_t pc;
pcitag_t pt;
#define MAESTRO_FLAG_SETUPGPIO 0x0001
int flags;
bus_space_tag_t iot;
bus_space_handle_t ioh;
bus_dma_tag_t dmat;
caddr_t dmabase;
bus_addr_t physaddr;
size_t dmasize;
bus_dmamap_t dmamap;
bus_dma_segment_t dmaseg;
salloc_t dmapool;
struct ac97_codec_if *codec_if;
struct ac97_host_if host_if;
int suspend;
struct maestro_channel play;
struct maestro_channel record;
};
typedef u_int16_t wpreg_t;
typedef u_int16_t wcreg_t;
salloc_t salloc_new(caddr_t, size_t, int);
void salloc_destroy(salloc_t);
caddr_t salloc_alloc(salloc_t, size_t);
void salloc_free(salloc_t, caddr_t);
void salloc_insert(salloc_t, struct salloc_head *,
struct salloc_zone *, int);
int maestro_match(struct device *, void *, void *);
void maestro_attach(struct device *, struct device *, void *);
int maestro_activate(struct device *, int);
int maestro_intr(void *);
int maestro_open(void *, int);
void maestro_close(void *);
int maestro_set_params(void *, int, int, struct audio_params *,
struct audio_params *);
int maestro_round_blocksize(void *, int);
int maestro_halt_output(void *);
int maestro_halt_input(void *);
int maestro_set_port(void *, mixer_ctrl_t *);
int maestro_get_port(void *, mixer_ctrl_t *);
int maestro_query_devinfo(void *, mixer_devinfo_t *);
void *maestro_malloc(void *, int, size_t, int, int);
void maestro_free(void *, void *, int);
int maestro_trigger_output(void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *);
int maestro_trigger_input(void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *);
int maestro_attach_codec(void *, struct ac97_codec_if *);
enum ac97_host_flags maestro_codec_flags(void *);
int maestro_read_codec(void *, u_int8_t, u_int16_t *);
int maestro_write_codec(void *, u_int8_t, u_int16_t);
void maestro_reset_codec(void *);
void maestro_initcodec(void *);
void maestro_set_speed(struct maestro_channel *, u_long *);
void maestro_init(struct maestro_softc *);
void maestro_channel_start(struct maestro_channel *);
void maestro_channel_stop(struct maestro_channel *);
void maestro_channel_advance_dma(struct maestro_channel *);
void maestro_channel_suppress_jitter(struct maestro_channel *);
int maestro_get_flags(struct pci_attach_args *);
void ringbus_setdest(struct maestro_softc *, int, int);
wpreg_t wp_reg_read(struct maestro_softc *, int);
void wp_reg_write(struct maestro_softc *, int, wpreg_t);
wpreg_t wp_apu_read(struct maestro_softc *, int, int);
void wp_apu_write(struct maestro_softc *, int, int, wpreg_t);
void wp_settimer(struct maestro_softc *, u_int);
void wp_starttimer(struct maestro_softc *);
void wp_stoptimer(struct maestro_softc *);
wcreg_t wc_reg_read(struct maestro_softc *, int);
void wc_reg_write(struct maestro_softc *, int, wcreg_t);
wcreg_t wc_ctrl_read(struct maestro_softc *, int);
void wc_ctrl_write(struct maestro_softc *, int, wcreg_t);
u_int maestro_calc_timer_freq(struct maestro_channel *);
void maestro_update_timer(struct maestro_softc *);
struct cfdriver maestro_cd = {
NULL, "maestro", DV_DULL
};
const struct cfattach maestro_ca = {
sizeof (struct maestro_softc), maestro_match, maestro_attach,
NULL, maestro_activate
};
const struct audio_hw_if maestro_hw_if = {
.open = maestro_open,
.close = maestro_close,
.set_params = maestro_set_params,
.round_blocksize = maestro_round_blocksize,
.halt_output = maestro_halt_output,
.halt_input = maestro_halt_input,
.set_port = maestro_set_port,
.get_port = maestro_get_port,
.query_devinfo = maestro_query_devinfo,
.allocm = maestro_malloc,
.freem = maestro_free,
.trigger_output = maestro_trigger_output,
.trigger_input = maestro_trigger_input,
};
const struct {
u_short vendor, product;
int flags;
} maestro_pcitab[] = {
{ PCI_VENDOR_ESSTECH, PCI_PRODUCT_ESSTECH_MAESTROII, 0 },
{ PCI_VENDOR_ESSTECH, PCI_PRODUCT_ESSTECH_MAESTRO2E, 0 },
{ PCI_VENDOR_PLATFORM, PCI_PRODUCT_PLATFORM_ES1849, 0 },
{ PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VERSAMAESTRO, MAESTRO_FLAG_SETUPGPIO },
{ PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VERSAPRONXVA26D, MAESTRO_FLAG_SETUPGPIO }
};
#define NMAESTRO_PCITAB lengthof(maestro_pcitab)
int
maestro_get_flags(struct pci_attach_args *pa)
{
int i;
/* Distinguish audio devices from modems with the same manfid */
if (PCI_CLASS(pa->pa_class) != PCI_CLASS_MULTIMEDIA)
return (-1);
if (PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_MULTIMEDIA_AUDIO)
return (-1);
for (i = 0; i < NMAESTRO_PCITAB; i++)
if (PCI_VENDOR(pa->pa_id) == maestro_pcitab[i].vendor &&
PCI_PRODUCT(pa->pa_id) == maestro_pcitab[i].product)
return (maestro_pcitab[i].flags);
return (-1);
}
/* -----------------------------
* Driver interface.
*/
int
maestro_match(struct device *parent, void *match, void *aux)
{
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
if (maestro_get_flags(pa) == -1)
return (0);
else
return (1);
}
void
maestro_attach(struct device *parent, struct device *self, void *aux)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
pci_chipset_tag_t pc = pa->pa_pc;
char const *intrstr;
pci_intr_handle_t ih;
int error;
u_int16_t cdata;
int dmastage = 0;
int rseg;
sc->flags = maestro_get_flags(pa);
sc->pc = pa->pa_pc;
sc->pt = pa->pa_tag;
sc->dmat = pa->pa_dmat;
/* Map interrupt */
if (pci_intr_map(pa, &ih)) {
printf(": can't map interrupt\n");
return;
}
intrstr = pci_intr_string(pc, ih);
sc->ih = pci_intr_establish(pc, ih, IPL_AUDIO | IPL_MPSAFE,
maestro_intr, sc, sc->dev.dv_xname);
if (sc->ih == NULL) {
printf(": can't establish interrupt");
if (intrstr != NULL)
printf(" at %s\n", intrstr);
return;
}
printf(": %s", intrstr);
pci_set_powerstate(pc, sc->pt, PCI_PMCSR_STATE_D0);
/* Map i/o */
if ((error = pci_mapreg_map(pa, PCI_MAPS, PCI_MAPREG_TYPE_IO,
0, &sc->iot, &sc->ioh, NULL, NULL, 0)) != 0) {
printf(", can't map i/o space\n");
goto bad;
}
/* Allocate fixed DMA segment :-( */
sc->dmasize = MAESTRO_BUFSIZ * 16;
if ((error = bus_dmamem_alloc(sc->dmat, sc->dmasize, NBPG, 0,
&sc->dmaseg, 1, &rseg, BUS_DMA_NOWAIT)) != 0) {
printf(", unable to alloc dma, error %d\n", error);
goto bad;
}
dmastage = 1;
if ((error = bus_dmamem_map(sc->dmat, &sc->dmaseg, 1,
sc->dmasize, &sc->dmabase, BUS_DMA_NOWAIT |
BUS_DMA_COHERENT)) != 0) {
printf(", unable to map dma, error %d\n", error);
goto bad;
}
dmastage = 2;
if ((error = bus_dmamap_create(sc->dmat, sc->dmasize, 1,
sc->dmasize, 0, BUS_DMA_NOWAIT, &sc->dmamap)) != 0) {
printf(", unable to create dma map, error %d\n", error);
goto bad;
}
dmastage = 3;
if ((error = bus_dmamap_load(sc->dmat, sc->dmamap,
sc->dmabase, sc->dmasize, NULL, BUS_DMA_NOWAIT)) != 0) {
printf(", unable to load dma map, error %d\n", error);
goto bad;
}
/* XXX
* The first byte of the allocated memory is not usable,
* the WP sometimes uses it to store status.
*/
/* Make DMA memory pool */
if ((sc->dmapool = salloc_new(sc->dmabase+16, sc->dmasize-16,
128/*overkill?*/)) == NULL) {
printf(", unable to make dma pool\n");
goto bad;
}
sc->physaddr = sc->dmamap->dm_segs[0].ds_addr;
printf("\n");
/* Kick device */
maestro_init(sc);
maestro_read_codec(sc, 0, &cdata);
if (cdata == 0x80) {
printf("%s: PT101 codec unsupported, no mixer\n",
sc->dev.dv_xname);
/* Init values from Linux, no idea what this does. */
maestro_write_codec(sc, 0x2a, 0x0001);
maestro_write_codec(sc, 0x2C, 0x0000);
maestro_write_codec(sc, 0x2C, 0xFFFF);
maestro_write_codec(sc, 0x10, 0x9F1F);
maestro_write_codec(sc, 0x12, 0x0808);
maestro_write_codec(sc, 0x14, 0x9F1F);
maestro_write_codec(sc, 0x16, 0x9F1F);
maestro_write_codec(sc, 0x18, 0x0404);
maestro_write_codec(sc, 0x1A, 0x0000);
maestro_write_codec(sc, 0x1C, 0x0000);
maestro_write_codec(sc, 0x02, 0x0404);
maestro_write_codec(sc, 0x04, 0x0808);
maestro_write_codec(sc, 0x0C, 0x801F);
maestro_write_codec(sc, 0x0E, 0x801F);
/* no control over the mixer, sorry */
sc->codec_if = NULL;
} else {
/* Attach the AC'97 */
sc->host_if.arg = sc;
sc->host_if.attach = maestro_attach_codec;
sc->host_if.flags = maestro_codec_flags;
sc->host_if.read = maestro_read_codec;
sc->host_if.write = maestro_write_codec;
sc->host_if.reset = maestro_reset_codec;
if (ac97_attach(&sc->host_if) != 0) {
printf("%s: can't attach codec\n", sc->dev.dv_xname);
goto bad;
}
}
sc->play.mode = MAESTRO_PLAY;
sc->play.sc = sc;
sc->play.num = 0;
sc->record.sc = sc;
sc->record.num = 2;
sc->record.mode = 0;
/* Attach audio */
audio_attach_mi(&maestro_hw_if, sc, NULL, &sc->dev);
return;
bad:
if (sc->ih)
pci_intr_disestablish(pc, sc->ih);
printf("%s: disabled\n", sc->dev.dv_xname);
if (sc->dmapool)
salloc_destroy(sc->dmapool);
if (dmastage >= 3)
bus_dmamap_destroy(sc->dmat, sc->dmamap);
if (dmastage >= 2)
bus_dmamem_unmap(sc->dmat, sc->dmabase, sc->dmasize);
if (dmastage >= 1)
bus_dmamem_free(sc->dmat, &sc->dmaseg, 1);
}
void
maestro_init(struct maestro_softc *sc)
{
int reg;
pcireg_t data;
/* Disable all legacy emulations. */
data = pci_conf_read(sc->pc, sc->pt, CONF_LEGACY);
data |= LEGACY_DISABLED;
pci_conf_write(sc->pc, sc->pt, CONF_LEGACY, data);
/* Disconnect from CHI. (Makes Dell inspiron 7500 work?)
* Enable posted write.
* Prefer PCI timing rather than that of ISA.
* Don't swap L/R. */
data = pci_conf_read(sc->pc, sc->pt, CONF_MAESTRO);
data |= MAESTRO_CHIBUS | MAESTRO_POSTEDWRITE | MAESTRO_DMA_PCITIMING;
data &= ~MAESTRO_SWAP_LR;
pci_conf_write(sc->pc, sc->pt, CONF_MAESTRO, data);
/* Reset direct sound. */
bus_space_write_2(sc->iot, sc->ioh, PORT_HOSTINT_CTRL,
HOSTINT_CTRL_DSOUND_RESET);
DELAY(10000); /* XXX - too long? */
bus_space_write_2(sc->iot, sc->ioh, PORT_HOSTINT_CTRL, 0);
DELAY(10000);
/* Enable direct sound and hardware volume control interruptions. */
bus_space_write_2(sc->iot, sc->ioh, PORT_HOSTINT_CTRL,
HOSTINT_CTRL_DSOUND_INT_ENABLED | HOSTINT_CTRL_HWVOL_ENABLED);
/* Setup Wave Processor. */
/* Enable WaveCache, set DMA base address. */
wp_reg_write(sc, WPREG_WAVE_ROMRAM,
WP_WAVE_VIRTUAL_ENABLED | WP_WAVE_DRAM_ENABLED);
bus_space_write_2(sc->iot, sc->ioh, PORT_WAVCACHE_CTRL,
WAVCACHE_ENABLED | WAVCACHE_WTSIZE_4MB);
for (reg = WAVCACHE_PCMBAR; reg < WAVCACHE_PCMBAR + 4; reg++)
wc_reg_write(sc, reg,
sc->physaddr >> WAVCACHE_BASEADDR_SHIFT);
/* Setup Codec/Ringbus. */
maestro_initcodec(sc);
bus_space_write_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL,
RINGBUS_CTRL_RINGBUS_ENABLED | RINGBUS_CTRL_ACLINK_ENABLED);
wp_reg_write(sc, WPREG_BASE, 0x8500); /* Parallel I/O */
ringbus_setdest(sc, RINGBUS_SRC_ADC,
RINGBUS_DEST_STEREO | RINGBUS_DEST_DSOUND_IN);
ringbus_setdest(sc, RINGBUS_SRC_DSOUND,
RINGBUS_DEST_STEREO | RINGBUS_DEST_DAC);
/* Setup ASSP. Needed for Dell Inspiron 7500? */
bus_space_write_1(sc->iot, sc->ioh, PORT_ASSP_CTRL_B, 0x00);
bus_space_write_1(sc->iot, sc->ioh, PORT_ASSP_CTRL_A, 0x03);
bus_space_write_1(sc->iot, sc->ioh, PORT_ASSP_CTRL_C, 0x00);
/*
* Reset hw volume to a known value so that we may handle diffs
* off to AC'97.
*/
bus_space_write_1(sc->iot, sc->ioh, PORT_HWVOL_MASTER, MIDDLE_VOLUME);
/* Setup GPIO if needed (NEC systems) */
if (sc->flags & MAESTRO_FLAG_SETUPGPIO) {
/* Matthew Braithwaite <matt@braithwaite.net> reported that
* NEC Versa LX doesn't need GPIO operation. */
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_MASK, 0x9ff);
bus_space_write_2(sc->iot, sc->ioh, PORT_GPIO_DIR,
bus_space_read_2(sc->iot, sc->ioh, PORT_GPIO_DIR) | 0x600);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DATA, 0x200);
}
}
/* -----------------------------
* Audio interface
*/
int
maestro_round_blocksize(void *self, int blk)
{
return ((blk + 0xf) & ~0xf);
}
void *
maestro_malloc(void *arg, int dir, size_t size, int pool, int flags)
{
struct maestro_softc *sc = (struct maestro_softc *)arg;
return (salloc_alloc(sc->dmapool, size));
}
void
maestro_free(void *self, void *ptr, int pool)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
salloc_free(sc->dmapool, ptr);
}
int
maestro_set_port(void *self, mixer_ctrl_t *cp)
{
struct ac97_codec_if *c = ((struct maestro_softc *)self)->codec_if;
int rc;
if (c) {
/* interrupts use the mixer */
mtx_enter(&audio_lock);
rc = c->vtbl->mixer_set_port(c, cp);
mtx_leave(&audio_lock);
return rc;
} else
return (ENXIO);
}
int
maestro_get_port(void *self, mixer_ctrl_t *cp)
{
struct ac97_codec_if *c = ((struct maestro_softc *)self)->codec_if;
int rc;
if (c) {
/* interrupts use the mixer */
mtx_enter(&audio_lock);
rc = c->vtbl->mixer_get_port(c, cp);
mtx_leave(&audio_lock);
return rc;
} else
return (ENXIO);
}
int
maestro_query_devinfo(void *self, mixer_devinfo_t *cp)
{
struct ac97_codec_if *c = ((struct maestro_softc *)self)->codec_if;
int rc;
if (c) {
/* interrupts use the mixer */
mtx_enter(&audio_lock);
rc = c->vtbl->query_devinfo(c, cp);
mtx_leave(&audio_lock);
return rc;
} else
return (ENXIO);
}
#define UNUSED __attribute__((unused))
void
maestro_set_speed(struct maestro_channel *ch, u_long *prate)
{
ch->speed = *prate;
if ((ch->mode & (MAESTRO_8BIT | MAESTRO_STEREO)) == MAESTRO_8BIT)
ch->speed /= 2;
/* special common case */
if (ch->speed == 48000) {
ch->dv = 0x10000;
} else {
/* compute 16 bits fixed point value of speed/48000,
* being careful not to overflow */
ch->dv = (((ch->speed % 48000) << 16U) + 24000) / 48000
+ ((ch->speed / 48000) << 16U);
/* And this is the real rate obtained */
ch->speed = (ch->dv >> 16U) * 48000 +
(((ch->dv & 0xffff)*48000)>>16U);
}
*prate = ch->speed;
if ((ch->mode & (MAESTRO_8BIT | MAESTRO_STEREO)) == MAESTRO_8BIT)
*prate *= 2;
}
u_int
maestro_calc_timer_freq(struct maestro_channel *ch)
{
u_int ss = 2;
if (ch->mode & MAESTRO_8BIT)
ss = 1;
return (ch->speed * ss) / ch->blocksize;
}
void
maestro_update_timer(struct maestro_softc *sc)
{
u_int freq = 0;
u_int n;
if (sc->play.mode & MAESTRO_RUNNING)
freq = maestro_calc_timer_freq(&sc->play);
if (sc->record.mode & MAESTRO_RUNNING) {
n = maestro_calc_timer_freq(&sc->record);
if (freq < n)
freq = n;
}
if (freq) {
wp_settimer(sc, freq);
wp_starttimer(sc);
} else
wp_stoptimer(sc);
}
int
maestro_set_params(void *hdl, int setmode, int usemode,
struct audio_params *play, struct audio_params *rec)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
if ((setmode & AUMODE_PLAY) == 0)
return (0);
/* Disallow parameter change on a running audio for now */
if (sc->play.mode & MAESTRO_RUNNING)
return (EINVAL);
if (play->sample_rate < 4000)
play->sample_rate = 4000;
else if (play->sample_rate > 48000)
play->sample_rate = 48000;
if (play->channels > 2)
play->channels = 2;
sc->play.mode = MAESTRO_PLAY;
if (play->channels == 2)
sc->play.mode |= MAESTRO_STEREO;
if (play->precision == 8) {
sc->play.mode |= MAESTRO_8BIT;
if (play->encoding == AUDIO_ENCODING_ULINEAR_LE ||
play->encoding == AUDIO_ENCODING_ULINEAR_BE)
sc->play.mode |= MAESTRO_UNSIGNED;
}
else if (play->encoding != AUDIO_ENCODING_SLINEAR_LE)
return (EINVAL);
play->bps = AUDIO_BPS(play->precision);
play->msb = 1;
maestro_set_speed(&sc->play, &play->sample_rate);
return (0);
}
int
maestro_open(void *hdl, int flags)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
DPRINTF(("%s: open(%d)\n", sc->dev.dv_xname, flags));
if ((flags & (FWRITE | FREAD)) == (FWRITE | FREAD))
return ENXIO; /* XXX */
/* XXX work around VM brokenness */
#if 0
if ((OFLAGS(flags) & O_ACCMODE) != O_WRONLY)
return (EINVAL);
#endif
sc->play.mode = MAESTRO_PLAY;
sc->record.mode = 0;
#ifdef AUDIO_DEBUG
maestrointr_called = 0;
maestrodma_effective = 0;
#endif
return (0);
}
void
maestro_close(void *hdl)
{
struct maestro_softc *sc UNUSED = (struct maestro_softc *)hdl;
/* nothing to do */
}
void
maestro_channel_stop(struct maestro_channel *ch)
{
wp_apu_write(ch->sc, ch->num, APUREG_APUTYPE,
APUTYPE_INACTIVE << APU_APUTYPE_SHIFT);
if (ch->mode & MAESTRO_STEREO)
wp_apu_write(ch->sc, ch->num+1, APUREG_APUTYPE,
APUTYPE_INACTIVE << APU_APUTYPE_SHIFT);
/* four channels for record... */
if (ch->mode & MAESTRO_PLAY)
return;
wp_apu_write(ch->sc, ch->num+2, APUREG_APUTYPE,
APUTYPE_INACTIVE << APU_APUTYPE_SHIFT);
if (ch->mode & MAESTRO_STEREO)
wp_apu_write(ch->sc, ch->num+3, APUREG_APUTYPE,
APUTYPE_INACTIVE << APU_APUTYPE_SHIFT);
}
int
maestro_halt_input(void *hdl)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
mtx_enter(&audio_lock);
maestro_channel_stop(&sc->record);
sc->record.mode &= ~MAESTRO_RUNNING;
maestro_update_timer(sc);
mtx_leave(&audio_lock);
return 0;
}
int
maestro_halt_output(void *hdl)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
mtx_enter(&audio_lock);
maestro_channel_stop(&sc->play);
sc->play.mode &= ~MAESTRO_RUNNING;
maestro_update_timer(sc);
mtx_leave(&audio_lock);
return 0;
}
int
maestro_trigger_input(void *hdl, void *start, void *end, int blksize,
void (*intr)(void *), void *arg, struct audio_params *param)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
mtx_enter(&audio_lock);
sc->record.mode |= MAESTRO_RUNNING;
sc->record.blocksize = blksize;
maestro_channel_start(&sc->record);
sc->record.threshold = sc->record.start;
maestro_update_timer(sc);
mtx_leave(&audio_lock);
return 0;
}
void
maestro_channel_start(struct maestro_channel *ch)
{
struct maestro_softc *sc = ch->sc;
int n = ch->num;
int aputype;
wcreg_t wcreg = (sc->physaddr - 16) & WAVCACHE_CHCTL_ADDRTAG_MASK;
switch(ch->mode & (MAESTRO_STEREO | MAESTRO_8BIT)) {
case 0:
aputype = APUTYPE_16BITLINEAR;
break;
case MAESTRO_STEREO:
aputype = APUTYPE_16BITSTEREO;
break;
case MAESTRO_8BIT:
aputype = APUTYPE_8BITLINEAR;
break;
case MAESTRO_8BIT|MAESTRO_STEREO:
aputype = APUTYPE_8BITSTEREO;
break;
}
if (ch->mode & MAESTRO_UNSIGNED)
wcreg |= WAVCACHE_CHCTL_U8;
if ((ch->mode & MAESTRO_STEREO) == 0) {
DPRINTF(("Setting mono parameters\n"));
wp_apu_write(sc, n, APUREG_WAVESPACE, ch->wpwa & 0xff00);
wp_apu_write(sc, n, APUREG_CURPTR, ch->current);
wp_apu_write(sc, n, APUREG_ENDPTR, ch->end);
wp_apu_write(sc, n, APUREG_LOOPLEN, ch->end - ch->start);
wp_apu_write(sc, n, APUREG_AMPLITUDE, 0xe800);
wp_apu_write(sc, n, APUREG_POSITION, 0x8f00
| (RADIUS_CENTERCIRCLE << APU_RADIUS_SHIFT)
| (PAN_FRONT << APU_PAN_SHIFT));
wp_apu_write(sc, n, APUREG_FREQ_LOBYTE, APU_plus6dB
| ((ch->dv & 0xff) << APU_FREQ_LOBYTE_SHIFT));
wp_apu_write(sc, n, APUREG_FREQ_HIWORD, ch->dv >> 8);
wc_ctrl_write(sc, n, wcreg);
wp_apu_write(sc, n, APUREG_APUTYPE,
(aputype << APU_APUTYPE_SHIFT) | APU_DMA_ENABLED | 0xf);
} else {
wcreg |= WAVCACHE_CHCTL_STEREO;
DPRINTF(("Setting stereo parameters\n"));
wp_apu_write(sc, n+1, APUREG_WAVESPACE, ch->wpwa & 0xff00);
wp_apu_write(sc, n+1, APUREG_CURPTR, ch->current);
wp_apu_write(sc, n+1, APUREG_ENDPTR, ch->end);
wp_apu_write(sc, n+1, APUREG_LOOPLEN, ch->end - ch->start);
wp_apu_write(sc, n+1, APUREG_AMPLITUDE, 0xe800);
wp_apu_write(sc, n+1, APUREG_POSITION, 0x8f00
| (RADIUS_CENTERCIRCLE << APU_RADIUS_SHIFT)
| (PAN_LEFT << APU_PAN_SHIFT));
wp_apu_write(sc, n+1, APUREG_FREQ_LOBYTE, APU_plus6dB
| ((ch->dv & 0xff) << APU_FREQ_LOBYTE_SHIFT));
wp_apu_write(sc, n+1, APUREG_FREQ_HIWORD, ch->dv >> 8);
if (ch->mode & MAESTRO_8BIT)
wp_apu_write(sc, n, APUREG_WAVESPACE,
ch->wpwa & 0xff00);
else
wp_apu_write(sc, n, APUREG_WAVESPACE,
(ch->wpwa|(APU_STEREO >> 1)) & 0xff00);
wp_apu_write(sc, n, APUREG_CURPTR, ch->current);
wp_apu_write(sc, n, APUREG_ENDPTR, ch->end);
wp_apu_write(sc, n, APUREG_LOOPLEN, ch->end - ch->start);
wp_apu_write(sc, n, APUREG_AMPLITUDE, 0xe800);
wp_apu_write(sc, n, APUREG_POSITION, 0x8f00
| (RADIUS_CENTERCIRCLE << APU_RADIUS_SHIFT)
| (PAN_RIGHT << APU_PAN_SHIFT));
wp_apu_write(sc, n, APUREG_FREQ_LOBYTE, APU_plus6dB
| ((ch->dv & 0xff) << APU_FREQ_LOBYTE_SHIFT));
wp_apu_write(sc, n, APUREG_FREQ_HIWORD, ch->dv >> 8);
wc_ctrl_write(sc, n, wcreg);
wc_ctrl_write(sc, n+1, wcreg);
wp_apu_write(sc, n, APUREG_APUTYPE,
(aputype << APU_APUTYPE_SHIFT) | APU_DMA_ENABLED | 0xf);
wp_apu_write(sc, n+1, APUREG_APUTYPE,
(aputype << APU_APUTYPE_SHIFT) | APU_DMA_ENABLED | 0xf);
}
}
int
maestro_trigger_output(void *hdl, void *start, void *end, int blksize,
void (*intr)(void *), void *arg, struct audio_params *param)
{
struct maestro_softc *sc = (struct maestro_softc *)hdl;
u_int offset = ((caddr_t)start - sc->dmabase) >> 1;
u_int size = ((char *)end - (char *)start) >> 1;
mtx_enter(&audio_lock);
sc->play.mode |= MAESTRO_RUNNING;
sc->play.wpwa = APU_USE_SYSMEM | (offset >> 8);
DPRINTF(("maestro_trigger_output: start=%p, end=%p, blksize=%x ",
start, end, blksize));
DPRINTF(("offset = %x, size=%x\n", offset, size));
sc->play.intr = intr;
sc->play.intr_arg = arg;
sc->play.blocksize = blksize;
sc->play.end = offset+size;
sc->play.start = offset;
sc->play.current = sc->play.start;
if ((sc->play.mode & (MAESTRO_STEREO | MAESTRO_8BIT)) == MAESTRO_STEREO) {
sc->play.wpwa >>= 1;
sc->play.start >>= 1;
sc->play.end >>= 1;
sc->play.blocksize >>= 1;
}
maestro_channel_start(&sc->play);
sc->play.threshold = sc->play.start;
maestro_update_timer(sc);
mtx_leave(&audio_lock);
return 0;
}
/* -----------------------------
* Codec interface
*/
enum ac97_host_flags
maestro_codec_flags(void *self)
{
return AC97_HOST_DONT_READ;
}
int
maestro_read_codec(void *self, u_int8_t regno, u_int16_t *datap)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
int t;
/* We have to wait for a SAFE time to write addr/data */
for (t = 0; t < 20; t++) {
if ((bus_space_read_1(sc->iot, sc->ioh, PORT_CODEC_STAT)
& CODEC_STAT_MASK) != CODEC_STAT_PROGLESS)
break;
DELAY(2); /* 20.8us / 13 */
}
if (t == 20)
printf("%s: maestro_read_codec() PROGLESS timed out.\n",
sc->dev.dv_xname);
/* XXX return 1 */
bus_space_write_1(sc->iot, sc->ioh, PORT_CODEC_CMD,
CODEC_CMD_READ | regno);
DELAY(21); /* AC97 cycle = 20.8usec */
/* Wait for data retrieve */
for (t = 0; t < 20; t++) {
if ((bus_space_read_1(sc->iot, sc->ioh, PORT_CODEC_STAT)
& CODEC_STAT_MASK) == CODEC_STAT_RW_DONE)
break;
DELAY(2); /* 20.8us / 13 */
}
if (t == 20)
/* Timed out, but perform dummy read. */
printf("%s: maestro_read_codec() RW_DONE timed out.\n",
sc->dev.dv_xname);
*datap = bus_space_read_2(sc->iot, sc->ioh, PORT_CODEC_REG);
return 0;
}
int
maestro_write_codec(void *self, u_int8_t regno, u_int16_t data)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
int t;
/* We have to wait for a SAFE time to write addr/data */
for (t = 0; t < 20; t++) {
if ((bus_space_read_1(sc->iot, sc->ioh, PORT_CODEC_STAT)
& CODEC_STAT_MASK) != CODEC_STAT_PROGLESS)
break;
DELAY(2); /* 20.8us / 13 */
}
if (t == 20) {
/* Timed out. Abort writing. */
printf("%s: maestro_write_codec() PROGLESS timed out.\n",
sc->dev.dv_xname);
return 1;
}
bus_space_write_2(sc->iot, sc->ioh, PORT_CODEC_REG, data);
bus_space_write_1(sc->iot, sc->ioh, PORT_CODEC_CMD,
CODEC_CMD_WRITE | regno);
return 0;
}
int
maestro_attach_codec(void *self, struct ac97_codec_if *cif)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
sc->codec_if = cif;
return 0;
}
void
maestro_reset_codec(void *self UNUSED)
{
}
void
maestro_initcodec(void *self)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
u_int16_t data;
if (bus_space_read_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL)
& RINGBUS_CTRL_ACLINK_ENABLED) {
bus_space_write_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL, 0);
DELAY(104); /* 20.8us * (4 + 1) */
}
/* XXX - 2nd codec should be looked at. */
bus_space_write_4(sc->iot, sc->ioh,
PORT_RINGBUS_CTRL, RINGBUS_CTRL_AC97_SWRESET);
DELAY(2);
bus_space_write_4(sc->iot, sc->ioh,
PORT_RINGBUS_CTRL, RINGBUS_CTRL_ACLINK_ENABLED);
DELAY(21);
maestro_read_codec(sc, 0, &data);
if ((bus_space_read_1(sc->iot, sc->ioh, PORT_CODEC_STAT)
& CODEC_STAT_MASK) != 0) {
bus_space_write_4(sc->iot, sc->ioh,
PORT_RINGBUS_CTRL, 0);
DELAY(21);
/* Try cold reset. */
printf("%s: resetting codec\n", sc->dev.dv_xname);
data = bus_space_read_2(sc->iot, sc->ioh, PORT_GPIO_DIR);
if (pci_conf_read(sc->pc, sc->pt, 0x58) & 1)
data |= 0x10;
data |= 0x009 &
~bus_space_read_2(sc->iot, sc->ioh, PORT_GPIO_DATA);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_MASK, 0xff6);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DIR, data | 0x009);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DATA, 0x000);
DELAY(2);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DATA, 0x001);
DELAY(1);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DATA, 0x009);
DELAY(500000);
bus_space_write_2(sc->iot, sc->ioh,
PORT_GPIO_DIR, data);
DELAY(84); /* 20.8us * 4 */
bus_space_write_4(sc->iot, sc->ioh,
PORT_RINGBUS_CTRL, RINGBUS_CTRL_ACLINK_ENABLED);
DELAY(21);
}
/* Check the codec to see is still busy */
if ((bus_space_read_1(sc->iot, sc->ioh, PORT_CODEC_STAT) &
CODEC_STAT_MASK) != 0) {
printf("%s: codec failure\n", sc->dev.dv_xname);
}
}
/* -----------------------------
* Power management interface
*/
int
maestro_activate(struct device *self, int act)
{
struct maestro_softc *sc = (struct maestro_softc *)self;
int rv;
switch (act) {
case DVACT_SUSPEND:
rv = config_activate_children(self, act);
/* Power down device on shutdown. */
DPRINTF(("maestro: power down\n"));
if (sc->record.mode & MAESTRO_RUNNING) {
sc->record.current = wp_apu_read(sc, sc->record.num, APUREG_CURPTR);
maestro_channel_stop(&sc->record);
}
if (sc->play.mode & MAESTRO_RUNNING) {
sc->play.current = wp_apu_read(sc, sc->play.num, APUREG_CURPTR);
maestro_channel_stop(&sc->play);
}
wp_stoptimer(sc);
/* Power down everything except clock. */
bus_space_write_2(sc->iot, sc->ioh, PORT_HOSTINT_CTRL, 0);
maestro_write_codec(sc, AC97_REG_POWER, 0xdf00);
DELAY(20);
bus_space_write_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL, 0);
DELAY(1);
break;
case DVACT_RESUME:
/* Power up device on resume. */
DPRINTF(("maestro: power resume\n"));
maestro_init(sc);
/* Restore codec settings */
if (sc->play.mode & MAESTRO_RUNNING)
maestro_channel_start(&sc->play);
if (sc->record.mode & MAESTRO_RUNNING)
maestro_channel_start(&sc->record);
maestro_update_timer(sc);
rv = config_activate_children(self, act);
break;
default:
rv = config_activate_children(self, act);
break;
}
return rv;
}
void
maestro_channel_advance_dma(struct maestro_channel *ch)
{
wpreg_t pos;
#ifdef AUDIO_DEBUG
maestrointr_called++;
#endif
for (;;) {
pos = wp_apu_read(ch->sc, ch->num, APUREG_CURPTR);
/* Are we still processing the current dma block ? */
if (pos >= ch->threshold &&
pos < ch->threshold + ch->blocksize/2)
break;
ch->threshold += ch->blocksize/2;
if (ch->threshold >= ch->end)
ch->threshold = ch->start;
(*ch->intr)(ch->intr_arg);
#ifdef AUDIO_DEBUG
maestrodma_effective++;
#endif
}
#ifdef AUDIO_DEBUG
if (maestrodebug && maestrointr_called % 64 == 0)
printf("maestro: dma advanced %lu for %lu calls\n",
maestrodma_effective, maestrointr_called);
#endif
}
/* Some maestro makes sometimes get desynchronized in stereo mode. */
void
maestro_channel_suppress_jitter(struct maestro_channel *ch)
{
int cp, diff;
/* Verify that both channels are not too far off. */
cp = wp_apu_read(ch->sc, ch->num, APUREG_CURPTR);
diff = wp_apu_read(ch->sc, ch->num+1, APUREG_CURPTR) - cp;
if (diff > 4 || diff < -4)
/* Otherwise, directly resynch the 2nd channel. */
bus_space_write_2(ch->sc->iot, ch->sc->ioh,
PORT_DSP_DATA, cp);
}
/* -----------------------------
* Interrupt handler interface
*/
int
maestro_intr(void *arg)
{
struct maestro_softc *sc = (struct maestro_softc *)arg;
u_int16_t status;
status = bus_space_read_1(sc->iot, sc->ioh, PORT_HOSTINT_STAT);
if (status == 0)
return 0; /* Not for us? */
mtx_enter(&audio_lock);
/* Acknowledge all. */
bus_space_write_2(sc->iot, sc->ioh, PORT_INT_STAT, 1);
bus_space_write_1(sc->iot, sc->ioh, PORT_HOSTINT_STAT, status);
/* Hardware volume support */
if (status & HOSTINT_STAT_HWVOL && sc->codec_if != NULL) {
int n, i, delta, v;
mixer_ctrl_t hwvol;
n = bus_space_read_1(sc->iot, sc->ioh, PORT_HWVOL_MASTER);
/* Special case: Mute key */
if (n & 0x11) {
hwvol.type = AUDIO_MIXER_ENUM;
hwvol.dev =
sc->codec_if->vtbl->get_portnum_by_name(sc->codec_if,
AudioCoutputs, AudioNmaster, AudioNmute);
sc->codec_if->vtbl->mixer_get_port(sc->codec_if, &hwvol);
hwvol.un.ord = !hwvol.un.ord;
} else {
hwvol.type = AUDIO_MIXER_VALUE;
hwvol.un.value.num_channels = 2;
hwvol.dev =
sc->codec_if->vtbl->get_portnum_by_name(
sc->codec_if, AudioCoutputs, AudioNmaster,
NULL);
sc->codec_if->vtbl->mixer_get_port(sc->codec_if, &hwvol);
/* XXX AC'97 yields five bits for master volume. */
delta = (n - MIDDLE_VOLUME)/STEP_VOLUME * 8;
for (i = 0; i < hwvol.un.value.num_channels; i++) {
v = ((int)hwvol.un.value.level[i]) + delta;
if (v < 0)
v = 0;
else if (v > 255)
v = 255;
hwvol.un.value.level[i] = v;
}
}
sc->codec_if->vtbl->mixer_set_port(sc->codec_if, &hwvol);
/* Reset to compute next diffs */
bus_space_write_1(sc->iot, sc->ioh, PORT_HWVOL_MASTER,
MIDDLE_VOLUME);
}
if (sc->play.mode & MAESTRO_RUNNING) {
maestro_channel_advance_dma(&sc->play);
if (sc->play.mode & MAESTRO_STEREO)
maestro_channel_suppress_jitter(&sc->play);
}
if (sc->record.mode & MAESTRO_RUNNING)
maestro_channel_advance_dma(&sc->record);
mtx_leave(&audio_lock);
return 1;
}
/* -----------------------------
* Hardware interface
*/
/* Codec/Ringbus */
void
ringbus_setdest(struct maestro_softc *sc, int src, int dest)
{
u_int32_t data;
data = bus_space_read_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL);
data &= ~(0xfU << src);
data |= (0xfU & dest) << src;
bus_space_write_4(sc->iot, sc->ioh, PORT_RINGBUS_CTRL, data);
}
/* Wave Processor */
wpreg_t
wp_reg_read(struct maestro_softc *sc, int reg)
{
bus_space_write_2(sc->iot, sc->ioh, PORT_DSP_INDEX, reg);
return bus_space_read_2(sc->iot, sc->ioh, PORT_DSP_DATA);
}
void
wp_reg_write(struct maestro_softc *sc, int reg, wpreg_t data)
{
bus_space_write_2(sc->iot, sc->ioh, PORT_DSP_INDEX, reg);
bus_space_write_2(sc->iot, sc->ioh, PORT_DSP_DATA, data);
}
static void
apu_setindex(struct maestro_softc *sc, int reg)
{
int t;
wp_reg_write(sc, WPREG_CRAM_PTR, reg);
/* Sometimes WP fails to set apu register index. */
for (t = 0; t < 1000; t++) {
if (bus_space_read_2(sc->iot, sc->ioh,
PORT_DSP_DATA) == reg)
break;
bus_space_write_2(sc->iot, sc->ioh, PORT_DSP_DATA, reg);
}
if (t == 1000)
printf("%s: apu_setindex() timeout\n", sc->dev.dv_xname);
}
wpreg_t
wp_apu_read(struct maestro_softc *sc, int ch, int reg)
{
wpreg_t ret;
apu_setindex(sc, ((unsigned)ch << 4) + reg);
ret = wp_reg_read(sc, WPREG_DATA_PORT);
return ret;
}
void
wp_apu_write(struct maestro_softc *sc, int ch, int reg, wpreg_t data)
{
int t;
apu_setindex(sc, ((unsigned)ch << 4) + reg);
wp_reg_write(sc, WPREG_DATA_PORT, data);
for (t = 0; t < 1000; t++) {
if (bus_space_read_2(sc->iot, sc->ioh, PORT_DSP_DATA) == data)
break;
bus_space_write_2(sc->iot, sc->ioh, PORT_DSP_DATA, data);
}
if (t == 1000)
printf("%s: wp_apu_write() timeout\n", sc->dev.dv_xname);
}
void
wp_settimer(struct maestro_softc *sc, u_int freq)
{
u_int clock = 48000 << 2;
u_int prescale = 0, divide = (freq != 0) ? (clock / freq) : ~0;
if (divide < 4)
divide = 4;
else if (divide > 32 << 8)
divide = 32 << 8;
for (; divide > 32 << 1; divide >>= 1)
prescale++;
divide = (divide + 1) >> 1;
for (; prescale < 7 && divide > 2 && !(divide & 1); divide >>= 1)
prescale++;
wp_reg_write(sc, WPREG_TIMER_ENABLE, 0);
wp_reg_write(sc, WPREG_TIMER_FREQ,
(prescale << WP_TIMER_FREQ_PRESCALE_SHIFT) | (divide - 1));
wp_reg_write(sc, WPREG_TIMER_ENABLE, 1);
}
void
wp_starttimer(struct maestro_softc *sc)
{
wp_reg_write(sc, WPREG_TIMER_START, 1);
}
void
wp_stoptimer(struct maestro_softc *sc)
{
wp_reg_write(sc, WPREG_TIMER_START, 0);
bus_space_write_2(sc->iot, sc->ioh, PORT_INT_STAT, 1);
}
/* WaveCache */
wcreg_t
wc_reg_read(struct maestro_softc *sc, int reg)
{
bus_space_write_2(sc->iot, sc->ioh, PORT_WAVCACHE_INDEX, reg);
return bus_space_read_2(sc->iot, sc->ioh, PORT_WAVCACHE_DATA);
}
void
wc_reg_write(struct maestro_softc *sc, int reg, wcreg_t data)
{
bus_space_write_2(sc->iot, sc->ioh, PORT_WAVCACHE_INDEX, reg);
bus_space_write_2(sc->iot, sc->ioh, PORT_WAVCACHE_DATA, data);
}
u_int16_t
wc_ctrl_read(struct maestro_softc *sc, int ch)
{
return wc_reg_read(sc, ch << 3);
}
void
wc_ctrl_write(struct maestro_softc *sc, int ch, wcreg_t data)
{
wc_reg_write(sc, ch << 3, data);
}
/* -----------------------------
* Simple zone allocator.
* (All memory allocated in advance)
*/
salloc_t
salloc_new(caddr_t addr, size_t size, int nzones)
{
struct salloc_pool *pool;
struct salloc_zone *space;
int i;
pool = malloc(sizeof *pool + nzones * sizeof pool->zones[0],
M_TEMP, M_NOWAIT);
if (pool == NULL)
return NULL;
SLIST_INIT(&pool->free);
SLIST_INIT(&pool->used);
SLIST_INIT(&pool->spare);
/* Espie says the following line is obvious */
pool->zones = (struct salloc_zone *)(pool + 1);
for (i = 1; i < nzones; i++)
SLIST_INSERT_HEAD(&pool->spare, &pool->zones[i], link);
space = &pool->zones[0];
space->addr = addr;
space->size = size;
SLIST_INSERT_HEAD(&pool->free, space, link);
return pool;
}
void
salloc_destroy(salloc_t pool)
{
free(pool, M_TEMP, 0);
}
void
salloc_insert(salloc_t pool, struct salloc_head *head, struct salloc_zone *zone,
int merge)
{
struct salloc_zone *prev, *next;
/*
* Insert a zone into an ordered list of zones, possibly
* merging adjacent zones.
*/
prev = NULL;
SLIST_FOREACH(next, head, link) {
if (next->addr > zone->addr)
break;
prev = next;
}
if (merge && prev && prev->addr + prev->size == zone->addr) {
prev->size += zone->size;
SLIST_INSERT_HEAD(&pool->spare, zone, link);
zone = prev;
} else if (prev)
SLIST_INSERT_AFTER(prev, zone, link);
else
SLIST_INSERT_HEAD(head, zone, link);
if (merge && next && zone->addr + zone->size == next->addr) {
zone->size += next->size;
SLIST_REMOVE(head, next, salloc_zone, link);
SLIST_INSERT_HEAD(&pool->spare, next, link);
}
}
caddr_t
salloc_alloc(salloc_t pool, size_t size)
{
struct salloc_zone *zone, *uzone;
SLIST_FOREACH(zone, &pool->free, link)
if (zone->size >= size)
break;
if (zone == NULL)
return NULL;
if (zone->size == size) {
SLIST_REMOVE(&pool->free, zone, salloc_zone, link);
uzone = zone;
} else {
uzone = SLIST_FIRST(&pool->spare);
if (uzone == NULL)
return NULL; /* XXX */
SLIST_REMOVE_HEAD(&pool->spare, link);
uzone->size = size;
uzone->addr = zone->addr;
zone->size -= size;
zone->addr += size;
}
salloc_insert(pool, &pool->used, uzone, 0);
return uzone->addr;
}
void
salloc_free(salloc_t pool, caddr_t addr)
{
struct salloc_zone *zone;
SLIST_FOREACH(zone, &pool->used, link)
if (zone->addr == addr)
break;
#ifdef DIAGNOSTIC
if (zone == NULL)
panic("salloc_free: freeing unallocated memory");
#endif
SLIST_REMOVE(&pool->used, zone, salloc_zone, link);
salloc_insert(pool, &pool->free, zone, 1);
}
|