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
|
/*
* udmfE_usbgem.c : Davicom DM9601E USB to Fast Ethernet Driver for Solaris
*
* Copyright (c) 2009-2012 Masayuki Murayama. 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.
*
* 3. Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
* COPYRIGHT OWNER 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.
*/
UDMF LICENSE
/*
* Macro definitions for Davicom DM9601 USB to fast ethernet controler
* based on Davicom DM9601E data sheet
* This file is public domain. Coded by M.Murayama (KHF04453@nifty.com)
*/
#ifndef __DM9601_H__
#define __DM9601_H__
/*
* offset of registers
*/
#define NCR 0x00U /* network control register */
#define NSR 0x01U /* network status register */
#define TCR 0x02U /* tx control register */
#define TSR1 0x03U /* tx status register 1 */
#define TSR2 0x04U /* tx status register 2 */
#define RCR 0x05U /* rx control register */
#define RSR 0x06U /* rx status register */
#define ROCR 0x07U /* rx overflow counter register */
#define BPTR 0x08U /* back pressure threshold regster */
#define FCTR 0x09U /* flow control threshold regster */
#define FCR 0x0aU /* flow control threshold regster */
#define EPCR 0x0bU /* eeprom & phy control register */
#define EPAR 0x0cU /* eeprom & phy address register */
#define EPDR 0x0dU /* eeprom & phy data register (2byte) */
#define WCR 0x0fU /* wake up control register */
#define PAR 0x10U /* physical address register (6byte) */
#define MAR 0x16U /* multicast address register (8byte) */
#define GPCR 0x1eU /* general purpose control register */
#define GPR 0x1fU /* general purpose register */
#define VID 0x28U /* vendor ID (2byte) */
#define PID 0x2aU /* product ID (2byte) */
#define CHIPR 0x2cU /* chip revision */
#define USBDA 0xf0U /* usb device address register */
#define RXC 0xf1U /* received packet counter register */
#define TUSC 0xf2U /* tx packet counter/usb status register */
#define USBC 0xf4U /* usb control register */
/*
* register definitions
*/
/* network control register */
#define NCR_EXT_PHY 0x80U /* 1: select external phy */
#define NCR_WAKEEN 0x40U /* 1: wake up event enable */
#define NCR_FCOL 0x10U /* force collision mode for test */
#define NCR_FDX 0x08U /* 1: full duplex mode (for external phy) */
#define NCR_LBK 0x06U
#define NCR_LBK_SHIFT 1
#define NCR_LBK_NORMAL (0U << NCR_LBK_SHIFT)
#define NCR_LBK_MAC (1U << NCR_LBK_SHIFT)
#define NCR_LBK_PHY_D (2U << NCR_LBK_SHIFT)
#define NCR_LBK_PHY_A (3U << NCR_LBK_SHIFT)
#define NCR_RST 0x01U /* 1: reset, auto clear */
#define NCR_BITS \
"\020" \
"\010EXT_PHY" \
"\007WAKEEN" \
"\005FCOL" \
"\004FDX" \
"\001RST"
/* network status register */
#define NSR_SPEED 0x80U /* 1:10M 0:100M */
#define NSR_LINKST 0x40U /* 1:ok 0:fail */
#define NSR_WAKEST 0x20U /* 1:enabled */
#define NSR_TXFULL 0x10U /* 1:tx fifo full */
#define NSR_TX2END 0x08U /* tx packet2 complete status */
#define NSR_TX1END 0x04U /* tx packet1 complete status */
#define NSR_RXOV 0x02U /* rx fifo overflow */
#define NSR_RXRDY 0x01U /* rx packet ready */
#define NSR_BITS \
"\020" \
"\010SPEED_10" \
"\007LINKST_UP" \
"\006WAKEST" \
"\005TXFULL" \
"\004TX2END" \
"\003TX1END" \
"\002RXOV" \
"\001RXRDY"
/* tx control register */
#define TCR_TJDIS 0x40U /* tx jitter control */
#define TCR_EXCEDM 0x20U /* excessive collision mode */
#define TCR_PAD_DIS2 0x10U /* PAD appends disable for pkt2 */
#define TCR_CRC_DIS2 0x08U /* CRC appends disable for pkt2 */
#define TCR_PAD_DIS1 0x04U /* PAD appends disable for pkt1 */
#define TCR_CRC_DIS1 0x02U /* CRC appends disable for pkt1 */
#define TCR_BITS \
"\020" \
"\007TJDIS" \
"\006EXCEDM" \
"\005PAD_DIS2" \
"\004CRC_DIS2" \
"\003PAD_DIS1" \
"\002CRC_DIS1"
/* tx status register (ro) */
#define TSR_TJTO 0x80U /* tx jabber time out */
#define TSR_LC 0x40U /* loss of carrier */
#define TSR_NC 0x20U /* no carrier */
#define TSR_LATEC 0x10U /* late collision */
#define TSR_COL 0x08U /* late collision */
#define TSR_EL 0x04U /* excessive collision */
#define TSR_BITS \
"\020" \
"\010TJTO" \
"\007LC" \
"\006NC" \
"\005LATEC" \
"\004COL" \
"\003EL"
/* rx control register */
#define RCR_WTDIS 0x40U /* watch dog timer disable */
#define RCR_DIS_LONG 0x20U /* discard longer packets than 1522 */
#define RCR_DIS_CRC 0x10U /* discard crc error packets */
#define RCR_ALL 0x08U /* pass all multicast */
#define RCR_RUNT 0x04U /* pass runt packets */
#define RCR_PRMSC 0x02U /* promiscuous mode */
#define RCR_RXEN 0x01U /* rx enable */
#define RCR_BITS \
"\020" \
"\007WTDIS" \
"\006DIS_LONG" \
"\005DIS_CRC" \
"\004ALL" \
"\003RUNT" \
"\002PRMSC" \
"\001RXEN"
/* rx status register */
#define RSR_RF 0x80U /* runt frame */
#define RSR_MF 0x40U /* multicast frame */
#define RSR_LCS 0x20U /* late collision seen */
#define RSR_RWTO 0x10U /* receive watchdog timeout */
#define RSR_PLE 0x08U /* physical layer error */
#define RSR_AE 0x04U /* alignment error */
#define RSR_CE 0x02U /* crc error */
#define RSR_FOE 0x01U /* fifo overflow error */
#define RSR_BITS \
"\020" \
"\010RF" \
"\007MF" \
"\006LCS" \
"\005RWTO" \
"\004PLE" \
"\003AE" \
"\002CE" \
"\001FOE"
/* receive overflow counter register */
#define ROCR_RXFU 0x80U /* receive overflow counter overflow */
#define ROCR_ROC 0x7fU /* receive overflow counter */
#define ROCR_BITS \
"\020" \
"\010RXFU"
/* back pressure threshold register */
#define BPTR_BPHW 0xf0U /* high water overflow threshold */
#define BPTR_BPHW_SHIFT 4
#define BPTR_BPHW_UNIT 1024U
#define BPTR_BPHW_DEFAULT (3 << BPTR_BPHW_SHIFT) /* 3k */
#define BPTR_JPT 0x0fU /* jam pattern time */
#define BPTR_JPT_SHIFT 0
#define BPTR_JPT_5us (0U << BPTR_JPT_SHIFT)
#define BPTR_JPT_10us (1U << BPTR_JPT_SHIFT)
#define BPTR_JPT_15us (2U << BPTR_JPT_SHIFT)
#define BPTR_JPT_25us (3U << BPTR_JPT_SHIFT)
#define BPTR_JPT_50us (4U << BPTR_JPT_SHIFT)
#define BPTR_JPT_100us (5U << BPTR_JPT_SHIFT)
#define BPTR_JPT_150us (6U << BPTR_JPT_SHIFT)
#define BPTR_JPT_200us (7U << BPTR_JPT_SHIFT)
#define BPTR_JPT_250us (8U << BPTR_JPT_SHIFT)
#define BPTR_JPT_300us (9U << BPTR_JPT_SHIFT)
#define BPTR_JPT_350us (10U << BPTR_JPT_SHIFT)
#define BPTR_JPT_400us (11U << BPTR_JPT_SHIFT)
#define BPTR_JPT_450us (12U << BPTR_JPT_SHIFT)
#define BPTR_JPT_500us (13U << BPTR_JPT_SHIFT)
#define BPTR_JPT_550us (14U << BPTR_JPT_SHIFT)
#define BPTR_JPT_600us (15U << BPTR_JPT_SHIFT)
/* flow control threshold register */
#define FCTR_HWOT 0xf0U /* rx fifo high water overflow threshold */
#define FCTR_HWOT_SHIFT 4
#define FCTR_HWOT_UNIT 1024U
#define FCTR_LWOT 0x0fU /* rx fifo low water overflow threshold */
#define FCTR_LWOT_SHIFT 0
#define FCTR_LWOT_UNIT 1024U
/* rx/tx flow control register */
#define FCR_TXPO 0x80U /* tx pause packet */
#define FCR_TXPF 0x40U /* tx pause packet */
#define FCR_TXPEN 0x20U /* tx pause packet */
#define FCR_BKPA 0x10U /* back pressure mode */
#define FCR_BKPM 0x08U /* back pressure mode */
#define FCR_BKPS 0x04U /* rx pause packet current status (r/c) */
#define FCR_RXPCS 0x02U /* rx pause packet current status (ro) */
#define FCR_FLCE 0x01U /* flow control enbale */
#define FCR_BITS \
"\020" \
"\000TXPO" \
"\000TXPF" \
"\000TXPEN" \
"\000BKPA" \
"\000BKPM" \
"\000BKPS" \
"\000RXPCS" \
"\000FLCE"
/* EEPROM & PHY control register (0x0b) */
#define EPCR_REEP 0x20U /* reload eeprom */
#define EPCR_WEP 0x10U /* write eeprom enable */
#define EPCR_EPOS 0x08U /* select device, 0:eeprom, 1:phy */
#define EPCR_ERPRR 0x04U /* read command */
#define EPCR_ERPRW 0x02U /* write command */
#define EPCR_ERRE 0x01U /* eeprom/phy access in progress (ro) */
#define EPCR_BITS \
"\020" \
"\005REEP" \
"\004WEP" \
"\003EPOS" \
"\002ERPRR" \
"\001ERPRW" \
"\000ERRE"
/* EEPROM & PHY access register (0x0c) */
#define EPAR_PHYADR 0xc0U /* phy address, internal phy(1) or external */
#define EPAR_PHYADR_SHIFT 6
#define EPAR_EROA 0x3fU /* eeprom word addr or phy register addr */
#define EPAR_EROA_SHIFT 0
/* EEPROM & PHY data register (0x0d(low)-0x0e(hi)) */
/* wake up control register (0x0f) */
#define WCR_LINKEN 0x20U /* enable link status event */
#define WCR_SAMPLEEN 0x10U /* enable sample frame event */
#define WCR_MAGICEN 0x08U /* enable magic pkt event */
#define WCR_LINKST 0x04U /* link status change occur ro */
#define WCR_SAMPLEST 0x02U /* sample frame rx occur ro */
#define WCR_MAGICST 0x01U /* magic pkt rx occur ro */
#define WCR_BITS \
"\020" \
"\000LINKEN" \
"\000SAMPLEEN" \
"\000MAGICEN" \
"\000LINKST" \
"\000SAMPLEST" \
"\000MAGICST"
/* physical address register (0x10-0x15) */
/* multicast address register (0x16-0x1c) */
/* general purpose control register (0x1e) */
#define GPCR_GEPCTRL 0x7f
#define GPCR_OUT(n) (1U << (n))
#define GPCR_BITS \
"\020" \
"\006OUT5" \
"\005OUT4" \
"\004OUT3" \
"\003OUT2" \
"\002OUT1" \
"\001OUT0"
/* general purpose register (0x1f) */
#define GPR_GEPIO5 0x20U
#define GPR_GEPIO4 0x10U
#define GPR_GEPIO3 0x08U
#define GPR_GEPIO2 0x04U
#define GPR_GEPIO1 0x02U
#define GPR_GEPIO0 0x01U
#define GPR_BITS \
"\020" \
"\006GEPIO5" \
"\005GEPIO4" \
"\004GEPIO3" \
"\003GEPIO2" \
"\002GEPIO1" \
"\001GEPIO0"
/* vendor id register (0x28-0x29) */
/* product id register (0x2a-0x2b) */
/* chip revision register (0x2c) */
/* usb device address register (0xf0) */
#define USBDA_USBFA 0x3fU /* usb device address */
#define USBDA_USBFA_SHIFT 0
/* receive packet counter register (0xf1) */
/* transmitpacket counter/usb status register (0xf2) */
#define TUSR_RXFAULT 0x80U /* indicate rx has unexpected condition */
#define TUSR_SUSFLAG 0x40U /* indicate device has suspended condition */
#define TUSR_EP1RDY 0x20U /* ready for read from ep1 pipe */
#define TUSR_SRAM 0x18U /* sram size 0:32K, 1:48K, 2:16K, 3:64K */
#define TUSR_SRAM_SHIFT 3
#define TUSR_SRAM_32K (0U << TUSR_SRAM_SHIFT)
#define TUSR_SRAM_48K (1U << TUSR_SRAM_SHIFT)
#define TUSR_SRAM_16K (2U << TUSR_SRAM_SHIFT)
#define TUSR_SRAM_64K (3U << TUSR_SRAM_SHIFT)
#define TUSR_TXC2 0x04U /* two or more packets in tx buffer */
#define TUSR_TXC1 0x02U /* one packet in tx buffer */
#define TUSR_TXC0 0x01U /* no packet in tx buffer */
#define TUSR_BITS \
"\020" \
"\010RXFAULT" \
"\007SUSFLAG" \
"\006EP1RDY" \
"\003TXC2" \
"\002TXC1" \
"\001TXC0"
/* usb control register (0xf4) */
#define USBC_EP3ACK 0x20U /* ep3 will alway return 8byte data if NAK=0 */
#define USBC_EP3NACK 0x10U /* ep3 will alway return NAK */
#define USBC_MEMTST 0x01U
/* bulk message format */
#define TX_HEADER_SIZE 2
#define RX_HEADER_SIZE 3
/* interrupt msg format */
struct intr_msg {
uint8_t im_nsr;
uint8_t im_tsr1;
uint8_t im_tsr2;
uint8_t im_rsr;
uint8_t im_rocr;
uint8_t im_rxc;
uint8_t im_txc;
uint8_t im_gpr;
};
#endif /* __DM9601_H__ */
/*
* udmfE_usbgem.c : Davicom DM9601E USB to Fast Ethernet Driver for Solaris
*
* Copyright (c) 2009-2012 Masayuki Murayama. 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.
*
* 3. Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
* COPYRIGHT OWNER 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.
*/
/*
* Changelog:
*/
/*
* TODO
*/
/* ======================================================= */
/*
* Solaris system header files and macros
*/
/* minimum kernel headers for drivers */
#include <sys/types.h>
#include <sys/conf.h>
#include <sys/debug.h>
#include <sys/kmem.h>
#include <sys/modctl.h>
#include <sys/errno.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/byteorder.h>
/* ethernet stuff */
#include <sys/ethernet.h>
/* interface card depend stuff */
#include <sys/stropts.h>
#include <sys/stream.h>
#include <sys/strlog.h>
#include <sys/strsun.h>
#include <sys/usb/usba.h>
#include "usbgem.h"
/* hardware stuff */
#include "usbgem_mii.h"
#include "dm9601reg.h"
char ident[] = "dm9601 usbnic driver v" VERSION;
/*
* Useful macros
*/
#define CHECK_AND_JUMP(err, label) if (err != USB_SUCCESS) goto label
#define LE16P(p) ((((uint8_t *)(p))[1] << 8) | ((uint8_t *)(p))[0])
/*
* Debugging
*/
#ifdef DEBUG_LEVEL
static int udmf_debug = DEBUG_LEVEL;
#define DPRINTF(n, args) if (udmf_debug > (n)) cmn_err args
#else
#define DPRINTF(n, args)
#endif
/*
* Our configration for dm9601
*/
/* timeouts */
#define ONESEC (drv_usectohz(1*1000000))
/*
* Local device definitions
*/
struct udmf_dev {
/*
* Misc HW information
*/
uint8_t rcr;
uint8_t last_nsr;
uint8_t mac_addr[ETHERADDRL];
};
/*
* private functions
*/
/* mii operations */
static uint16_t udmf_mii_read(struct usbgem_dev *, uint_t, int *errp);
static void udmf_mii_write(struct usbgem_dev *, uint_t, uint16_t, int *errp);
/* nic operations */
static int udmf_reset_chip(struct usbgem_dev *);
static int udmf_init_chip(struct usbgem_dev *);
static int udmf_start_chip(struct usbgem_dev *);
static int udmf_stop_chip(struct usbgem_dev *);
static int udmf_set_media(struct usbgem_dev *);
static int udmf_set_rx_filter(struct usbgem_dev *);
static int udmf_get_stats(struct usbgem_dev *);
static void udmf_interrupt(struct usbgem_dev *, mblk_t *);
/* packet operations */
static mblk_t *udmf_tx_make_packet(struct usbgem_dev *, mblk_t *);
static mblk_t *udmf_rx_make_packet(struct usbgem_dev *, mblk_t *);
/* =============================================================== */
/*
* I/O functions
*/
/* =============================================================== */
#define OUT(dp, ix, len, buf, errp, label) \
if ((*(errp) = usbgem_ctrl_out((dp), \
/* bmRequestType */ USB_DEV_REQ_HOST_TO_DEV \
| USB_DEV_REQ_TYPE_VENDOR | USB_DEV_REQ_RCPT_DEV, \
/* bRequest */ 1, \
/* wValue */ 0, \
/* wIndex */ (ix), \
/* wLength */ (len), \
/* value */ (buf), \
/* size */ (len))) != USB_SUCCESS) goto label
#define OUTB(dp, ix, val, errp, label) \
if ((*(errp) = usbgem_ctrl_out((dp), \
/* bmRequestType */ USB_DEV_REQ_HOST_TO_DEV \
| USB_DEV_REQ_TYPE_VENDOR | USB_DEV_REQ_RCPT_DEV, \
/* bRequest */ 3, \
/* wValue */ (val), \
/* wIndex */ (ix), \
/* wLength */ 0, \
/* value */ NULL, \
/* size */ 0)) != USB_SUCCESS) goto label
#define IN(dp, ix, len, buf, errp, label) \
if ((*(errp) = usbgem_ctrl_in((dp), \
/* bmRequestType */ USB_DEV_REQ_DEV_TO_HOST \
| USB_DEV_REQ_TYPE_VENDOR | USB_DEV_REQ_RCPT_DEV, \
/* bRequest */ 0, \
/* wValue */ 0, \
/* wIndex */ (ix), \
/* wLength */ (len), \
/* valuep */ (buf), \
/* size */ (len))) != USB_SUCCESS) goto label
/* =============================================================== */
/*
* Hardware manupilation
*/
/* =============================================================== */
static void
udmf_enable_phy(struct usbgem_dev *dp)
{
int err = USB_SUCCESS;
/* de-assert reset signal to phy */
OUTB(dp, GPCR, GPCR_OUT(0), &err, usberr);
OUTB(dp, GPR, 0, &err, usberr);
usberr:
;
}
static int
udmf_reset_chip(struct usbgem_dev *dp)
{
int err = USB_SUCCESS;
DPRINTF(2, (CE_CONT, "!%s: %s: called", dp->name, __func__));
OUTB(dp, NCR, NCR_LBK_NORMAL | NCR_RST, &err, usberr);
drv_usecwait(100);
usberr:
return (err);
}
/*
* Setup dm9601
*/
static int
udmf_init_chip(struct usbgem_dev *dp)
{
int i;
uint32_t val;
int err = USB_SUCCESS;
uint16_t reg;
uint8_t buf[2];
struct udmf_dev *lp = dp->private;
DPRINTF(2, (CE_CONT, "!%s: %s: called", dp->name, __func__));
OUTB(dp, NCR, NCR_LBK_NORMAL, &err, usberr);
/* tx control regiser: enable padding and crc generation */
OUTB(dp, TCR, 0, &err, usberr);
/* rx control register: will be set later by udmf_set_rx_filer() */
lp->rcr = RCR_RUNT;
/* back pressure threshold: */
OUTB(dp, BPTR, (2 << BPTR_BPHW_SHIFT) | BPTR_JPT_200us,
&err, usberr);
/* flow control threshold: same as default */
OUTB(dp, FCTR, (3 << FCTR_HWOT_SHIFT) | (8 << FCTR_LWOT_SHIFT),
&err, usberr);
/* usb control register */
OUTB(dp, USBC, USBC_EP3ACK | 0x06, &err, usberr);
/* flow control: will be set later by udmf_set_media() */
/* wake up control register: */
OUTB(dp, WCR, 0, &err, usberr);
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
err, err == USB_SUCCESS ? "success" : "error"));
return (err);
}
static int
udmf_start_chip(struct usbgem_dev *dp)
{
int err = USB_SUCCESS;
struct udmf_dev *lp = dp->private;
/* enable Rx */
lp->rcr |= RCR_RXEN;
OUTB(dp, RCR, lp->rcr, &err, usberr);
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
err, err == USB_SUCCESS ? "success" : "error"));
return (err);
}
static int
udmf_stop_chip(struct usbgem_dev *dp)
{
int err = USB_SUCCESS;
struct udmf_dev *lp = dp->private;
/* disable rx */
lp->rcr &= ~RCR_RXEN;
OUTB(dp, RCR, lp->rcr, &err, usberr);
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
err, err == USB_SUCCESS ? "success" : "error"));
return (err);
}
static int
udmf_get_stats(struct usbgem_dev *dp)
{
/* empty */
return (USB_SUCCESS);
}
static uint_t
udmf_mcast_hash(struct usbgem_dev *dp, const uint8_t *addr)
{
return (usbgem_ether_crc_le(addr) & 0x3f);
}
static int
udmf_set_rx_filter(struct usbgem_dev *dp)
{
int i;
uint8_t rcr;
uint8_t mode;
uint8_t mhash[8];
uint8_t *mac;
uint_t h;
int err = USB_SUCCESS;
struct udmf_dev *lp = dp->private;
static uint8_t invalid_mac[ETHERADDRL] = {0, 0, 0, 0, 0, 0};
DPRINTF(2, (CE_CONT, "!%s: %s: called, rxmode:%x",
dp->name, __func__, dp->rxmode));
if (lp->rcr & RCR_RXEN) {
/* set promiscuous mode before changing rx filter mode */
OUTB(dp, RCR, lp->rcr | RCR_PRMSC, &err, usberr);
}
lp->rcr &= ~(RCR_ALL | RCR_PRMSC);
mode = 0;
bzero(mhash, sizeof (mhash));
mac = dp->cur_addr.ether_addr_octet;
if ((dp->rxmode & RXMODE_ENABLE) == 0) {
mac = invalid_mac;
} else if (dp->rxmode & RXMODE_PROMISC) {
/* promiscious mode implies all multicast and all physical */
mode |= RCR_PRMSC;
} else if ((dp->rxmode & RXMODE_ALLMULTI) || dp->mc_count > 32) {
/* accept all multicast packets */
mode |= RCR_ALL;
} else if (dp->mc_count > 0) {
/*
* make hash table to select interresting
* multicast address only.
*/
for (i = 0; i < dp->mc_count; i++) {
/* hash table is 64 = 2^6 bit width */
h = dp->mc_list[i].hash;
mhash[h / 8] |= 1 << (h % 8);
}
}
/* set node address */
if (bcmp(mac, lp->mac_addr, ETHERADDRL) != 0) {
OUT(dp, PAR, ETHERADDRL, dp->cur_addr.ether_addr_octet,
&err, usberr);
bcopy(mac, lp->mac_addr, ETHERADDRL);
}
/* set multicast hash table */
OUT(dp, MAR, sizeof (mhash), &mhash[0], &err, usberr);
/* update rcr */
lp->rcr |= mode;
OUTB(dp, RCR, lp->rcr, &err, usberr);
#if DEBUG_LEVEL > 1
/* verify rcr */
IN(dp, RCR, 1, &rcr, &err, usberr);
cmn_err(CE_CONT, "!%s: %s: rcr:%b returned",
dp->name, __func__, rcr, RCR_BITS);
#endif
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
err, err == USB_SUCCESS ? "success" : "error"));
return (err);
}
static int
udmf_set_media(struct usbgem_dev *dp)
{
int err = USB_SUCCESS;
uint8_t fcr;
struct udmf_dev *lp = dp->private;
DPRINTF(0, (CE_CONT, "!%s: %s: called", dp->name, __func__));
/* setup flow control */
fcr = 0;
if (dp->full_duplex) {
/* select flow control */
switch (dp->flow_control) {
case FLOW_CONTROL_RX_PAUSE:
fcr |= FCR_FLCE;
break;
case FLOW_CONTROL_TX_PAUSE:
fcr |= FCR_TXPEN;
break;
case FLOW_CONTROL_SYMMETRIC:
fcr |= FCR_FLCE | FCR_TXPEN;
break;
}
}
/* update flow control register */
OUTB(dp, FCR, fcr, &err, usberr);
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
err, err == USB_SUCCESS ? "success" : "error"));
return (err);
}
/*
* send/receive packet check
*/
static mblk_t *
udmf_tx_make_packet(struct usbgem_dev *dp, mblk_t *mp)
{
int n;
size_t pkt_size;
mblk_t *new;
mblk_t *tp;
uint8_t *bp;
uint8_t *last_pos;
uint_t align_mask;
pkt_size = msgdsize(mp);
align_mask = 63;
/*
* re-allocate the mp
*/
/* minimum ethernet packet size of ETHERMIN */
pkt_size = max(pkt_size, ETHERMIN);
#if 0 /* CONFIG_ADD_TX_DELIMITOR_ALWAYS */
pkt_size += TX_HEADER_SIZE;
#endif
if (((pkt_size + TX_HEADER_SIZE) & align_mask) == 0) {
/* padding is required in usb communication */
pkt_size += TX_HEADER_SIZE;
}
if ((new = allocb(TX_HEADER_SIZE + pkt_size, 0)) == NULL) {
return (NULL);
}
new->b_wptr = new->b_rptr + TX_HEADER_SIZE + pkt_size;
/* add a header */
bp = new->b_rptr;
bp[0] = (uint8_t)pkt_size;
bp[1] = (uint8_t)(pkt_size >> 8);
bp += TX_HEADER_SIZE;
/* copy contents of the buffer */
for (tp = mp; tp; tp = tp->b_cont) {
n = MBLKL(tp);
bcopy(tp->b_rptr, bp, n);
bp += n;
}
/* clear the rest including the next zero length header */
last_pos = new->b_wptr;
while (bp < last_pos) {
*bp++ = 0;
}
return (new);
}
static void
udmf_dump_packet(struct usbgem_dev *dp, uint8_t *bp, int n)
{
int i;
for (i = 0; i < n; i += 8, bp += 8) {
cmn_err(CE_CONT, "%02x %02x %02x %02x %02x %02x %02x %02x",
bp[0], bp[1], bp[2], bp[3], bp[4], bp[5], bp[6], bp[7]);
}
}
static mblk_t *
udmf_rx_make_packet(struct usbgem_dev *dp, mblk_t *mp)
{
size_t len;
uint8_t rx_stat;
len = MBLKL(mp);
if (len <= RX_HEADER_SIZE) {
/*
* the usb bulk-in frame doesn't include a valid
* ethernet packet.
*/
return (NULL);
}
/* remove rx header */
rx_stat = mp->b_rptr[0];
if (rx_stat & (RSR_RF | RSR_LCS | RSR_RWTO |
RSR_PLE | RSR_AE | RSR_CE | RSR_FOE)) {
if (rx_stat & RSR_RF) {
dp->stats.runt++;
}
if (rx_stat & RSR_LCS) {
/* late collision */
dp->stats.rcv_internal_err++;
}
if (rx_stat & RSR_RWTO) {
/* rx timeout */
dp->stats.rcv_internal_err++;
}
if (rx_stat & RSR_PLE) {
/* physical layer error */
dp->stats.rcv_internal_err++;
}
if (rx_stat & RSR_AE) {
/* alignment error */
dp->stats.frame++;
}
if (rx_stat & RSR_CE) {
/* crc error */
dp->stats.crc++;
}
if (rx_stat & RSR_FOE) {
/* fifo overflow error */
dp->stats.overflow++;
}
dp->stats.errrcv++;
}
len = LE16P(&mp->b_rptr[1]);
if (len >= ETHERFCSL) {
len -= ETHERFCSL;
}
mp->b_rptr += RX_HEADER_SIZE;
mp->b_wptr = mp->b_rptr + len;
return (mp);
}
/*
* MII Interfaces
*/
static uint16_t
udmf_ep_read(struct usbgem_dev *dp, uint_t which, uint_t addr, int *errp)
{
int i;
uint8_t epcr;
uint16_t val;
DPRINTF(4, (CE_CONT, "!%s: %s: called, ix:%d",
dp->name, __func__, addr));
OUTB(dp, EPAR, addr, errp, usberr);
OUTB(dp, EPCR, which | EPCR_ERPRR, errp, usberr);
for (i = 0; i < 100; i++) {
IN(dp, EPCR, sizeof (epcr), &epcr, errp, usberr);
if ((epcr & EPCR_ERRE) == 0) {
/* done */
IN(dp, EPDR, sizeof (val), &val, errp, usberr);
val = LE_16(val);
goto done;
}
drv_usecwait(10);
}
/* timeout */
cmn_err(CE_WARN, "!%s: %s: timeout", dp->name, __func__);
val = 0;
done:
OUTB(dp, EPCR, 0, errp, usberr);
return (val);
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
*errp, *errp == USB_SUCCESS ? "success" : "error"));
return (0);
}
static void
udmf_ep_write(struct usbgem_dev *dp, uint_t which, uint_t addr,
uint16_t val, int *errp)
{
int i;
uint8_t epcr;
DPRINTF(5, (CE_CONT, "!%s: %s called", dp->name, __func__));
val = LE_16(val);
OUT(dp, EPDR, sizeof (val), &val, errp, usberr);
OUTB(dp, EPAR, addr, errp, usberr);
OUTB(dp, EPCR, which | EPCR_WEP | EPCR_ERPRW, errp, usberr);
for (i = 0; i < 100; i++) {
IN(dp, EPCR, 1, &epcr, errp, usberr);
if ((epcr & EPCR_ERRE) == 0) {
/* done */
goto done;
}
drv_usecwait(10);
}
/* timeout */
cmn_err(CE_WARN, "!%s: %s: timeout", dp->name, __func__);
done:
OUTB(dp, EPCR, 0, errp, usberr);
return;
usberr:
DPRINTF(2, (CE_CONT, "!%s: %s: end err:%d(%s)",
dp->name, __func__,
*errp, *errp == USB_SUCCESS ? "success" : "error"));
}
static uint16_t
udmf_mii_read(struct usbgem_dev *dp, uint_t index, int *errp)
{
uint16_t val;
val = udmf_ep_read(dp, EPCR_EPOS,
(dp->mii_phy_addr << EPAR_PHYADR_SHIFT) | index, errp);
return (val);
}
static void
udmf_mii_write(struct usbgem_dev *dp, uint_t index, uint16_t val, int *errp)
{
udmf_ep_write(dp, EPCR_EPOS,
(dp->mii_phy_addr << EPAR_PHYADR_SHIFT) | index, val, errp);
}
static void
udmf_interrupt(struct usbgem_dev *dp, mblk_t *mp)
{
struct intr_msg *imp;
struct udmf_dev *lp = dp->private;
imp = (struct intr_msg *)&mp->b_rptr[0];
DPRINTF(4, (CE_CONT,
"!%s: %s: size:%d, nsr:%b tsr1:%b tsr2:%b"
" rsr:%b rocr:%b rxc:%02x txc:%b gpr:%b",
dp->name, __func__, mp->b_wptr - mp->b_rptr,
imp->im_nsr, NSR_BITS,
imp->im_tsr1, TSR_BITS,
imp->im_tsr2, TSR_BITS,
imp->im_rsr, RSR_BITS,
imp->im_rocr, ROCR_BITS,
imp->im_rxc,
imp->im_txc, TUSR_BITS,
imp->im_gpr, GPR_BITS));
if ((lp->last_nsr ^ imp->im_nsr) & NSR_LINKST) {
usbgem_mii_update_link(dp);
}
lp->last_nsr = imp->im_nsr;
}
/* ======================================================== */
/*
* OS depend (device driver DKI) routine
*/
/* ======================================================== */
static uint16_t
udmf_eeprom_read(struct usbgem_dev *dp, uint_t index, int *errp)
{
uint16_t val;
val = udmf_ep_read(dp, 0, index, errp);
return (val);
}
#ifdef DEBUG_LEVEL
static void
udmf_eeprom_dump(struct usbgem_dev *dp, int size)
{
int i;
int err;
uint16_t w0, w1, w2, w3;
cmn_err(CE_CONT, "!%s: eeprom dump:", dp->name);
err = USB_SUCCESS;
for (i = 0; i < size; i += 4) {
w0 = udmf_eeprom_read(dp, i + 0, &err);
w1 = udmf_eeprom_read(dp, i + 1, &err);
w2 = udmf_eeprom_read(dp, i + 2, &err);
w3 = udmf_eeprom_read(dp, i + 3, &err);
cmn_err(CE_CONT, "!0x%02x: 0x%04x 0x%04x 0x%04x 0x%04x",
i, w0, w1, w2, w3);
}
usberr:
;
}
#endif
static int
udmf_attach_chip(struct usbgem_dev *dp)
{
int i;
uint_t val;
uint8_t *m;
int err;
struct udmf_dev *lp = dp->private;
DPRINTF(0, (CE_CONT, "!%s: %s enter", dp->name, __func__));
/*
* get mac address from EEPROM
*/
m = dp->dev_addr.ether_addr_octet;
for (i = 0; i < ETHERADDRL; i += 2) {
val = udmf_eeprom_read(dp, i/2, &err);
m[i + 0] = (uint8_t)val;
m[i + 1] = (uint8_t)(val >> 8);
}
/* invalidate a private cache for mac addr */
bzero(lp->mac_addr, sizeof (lp->mac_addr));
#ifdef CONFIG_VLAN
dp->misc_flag = USBGEM_VLAN;
#endif
#if DEBUG_LEVEL > 0
udmf_eeprom_dump(dp, /* 0x3f + 1 */ 128);
#endif
static uint8_t bcst[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
DPRINTF(0, (CE_CONT, "!%s: %s: hash of bcast:%x",
dp->name, __func__, usbgem_ether_crc_be(bcst)));
return (USB_SUCCESS);
}
static int
udmf_mii_probe(struct usbgem_dev *dp)
{
DPRINTF(2, (CE_CONT, "!%s: %s: called", dp->name, __func__));
udmf_enable_phy(dp);
return (usbgem_mii_probe_default(dp));
}
static int
udmf_mii_init(struct usbgem_dev *dp)
{
DPRINTF(2, (CE_CONT, "!%s: %s: called", dp->name, __func__));
udmf_enable_phy(dp);
return (USB_SUCCESS);
}
static int
udmfattach(dev_info_t *dip, ddi_attach_cmd_t cmd)
{
int i;
ddi_iblock_cookie_t c;
int ret;
int revid;
int unit;
int len;
const char *drv_name;
struct usbgem_dev *dp;
void *base;
struct usbgem_conf *ugcp;
struct udmf_dev *lp;
unit = ddi_get_instance(dip);
drv_name = ddi_driver_name(dip);
DPRINTF(3, (CE_CONT, "!%s%d: %s: called, cmd:%d",
drv_name, unit, __func__, cmd));
if (cmd == DDI_ATTACH) {
/*
* construct usbgem configration
*/
ugcp = kmem_zalloc(sizeof (*ugcp), KM_SLEEP);
/* name */
/*
* softmac requires that ppa is the instance number
* of the device, otherwise it hangs in seaching the device.
*/
(void) sprintf(ugcp->usbgc_name, "%s%d", drv_name, unit);
ugcp->usbgc_ppa = unit;
ugcp->usbgc_ifnum = 0;
ugcp->usbgc_alt = 0;
ugcp->usbgc_tx_list_max = 64;
ugcp->usbgc_rx_header_len = RX_HEADER_SIZE;
ugcp->usbgc_rx_list_max = 64;
/* time out parameters */
ugcp->usbgc_tx_timeout = USBGEM_TX_TIMEOUT;
ugcp->usbgc_tx_timeout_interval = USBGEM_TX_TIMEOUT_INTERVAL;
#if 1
/* flow control */
ugcp->usbgc_flow_control = FLOW_CONTROL_RX_PAUSE;
#else
/*
* XXX - flow control caused link down frequently under
* heavy traffic
*/
ugcp->usbgc_flow_control = FLOW_CONTROL_NONE;
#endif
/* MII timeout parameters */
ugcp->usbgc_mii_link_watch_interval =
USBGEM_LINK_WATCH_INTERVAL;
ugcp->usbgc_mii_an_watch_interval =
USBGEM_LINK_WATCH_INTERVAL/5;
ugcp->usbgc_mii_reset_timeout = MII_RESET_TIMEOUT; /* 1 sec */
ugcp->usbgc_mii_an_timeout = MII_AN_TIMEOUT; /* 5 sec */
ugcp->usbgc_mii_an_wait = (25*ONESEC)/10;
ugcp->usbgc_mii_linkdown_timeout = MII_LINKDOWN_TIMEOUT;
ugcp->usbgc_mii_an_delay = ONESEC/10;
ugcp->usbgc_mii_linkdown_action = MII_ACTION_RSA;
ugcp->usbgc_mii_linkdown_timeout_action = MII_ACTION_RESET;
ugcp->usbgc_mii_dont_reset = B_FALSE;
ugcp->usbgc_mii_hw_link_detection = B_TRUE;
/* I/O methods */
/* mac operation */
ugcp->usbgc_attach_chip = &udmf_attach_chip;
ugcp->usbgc_reset_chip = &udmf_reset_chip;
ugcp->usbgc_init_chip = &udmf_init_chip;
ugcp->usbgc_start_chip = &udmf_start_chip;
ugcp->usbgc_stop_chip = &udmf_stop_chip;
ugcp->usbgc_multicast_hash = &udmf_mcast_hash;
ugcp->usbgc_set_rx_filter = &udmf_set_rx_filter;
ugcp->usbgc_set_media = &udmf_set_media;
ugcp->usbgc_get_stats = &udmf_get_stats;
ugcp->usbgc_interrupt = &udmf_interrupt;
/* packet operation */
ugcp->usbgc_tx_make_packet = &udmf_tx_make_packet;
ugcp->usbgc_rx_make_packet = &udmf_rx_make_packet;
/* mii operations */
ugcp->usbgc_mii_probe = &udmf_mii_probe;
ugcp->usbgc_mii_init = &udmf_mii_init;
ugcp->usbgc_mii_config = &usbgem_mii_config_default;
ugcp->usbgc_mii_read = &udmf_mii_read;
ugcp->usbgc_mii_write = &udmf_mii_write;
ugcp->usbgc_mii_addr_min = 1;
/* mtu */
ugcp->usbgc_min_mtu = ETHERMTU;
ugcp->usbgc_max_mtu = ETHERMTU;
ugcp->usbgc_default_mtu = ETHERMTU;
lp = kmem_zalloc(sizeof (struct udmf_dev), KM_SLEEP);
ddi_set_driver_private(dip, NULL);
dp = usbgem_do_attach(dip, ugcp, lp, sizeof (struct udmf_dev));
kmem_free(ugcp, sizeof (*ugcp));
if (dp != NULL) {
return (DDI_SUCCESS);
}
kmem_free(lp, sizeof (struct udmf_dev));
return (DDI_FAILURE);
}
if (cmd == DDI_RESUME) {
return (usbgem_resume(dip));
}
return (DDI_FAILURE);
}
static int
udmfdetach(dev_info_t *dip, ddi_detach_cmd_t cmd)
{
int ret;
if (cmd == DDI_DETACH) {
ret = usbgem_do_detach(dip);
if (ret != DDI_SUCCESS) {
return (DDI_FAILURE);
}
return (DDI_SUCCESS);
}
if (cmd == DDI_SUSPEND) {
return (usbgem_suspend(dip));
}
return (DDI_FAILURE);
}
/* ======================================================== */
/*
* OS depend (loadable streams driver) routine
*/
/* ======================================================== */
USBGEM_STREAM_OPS(udmf_ops, udmfattach, udmfdetach);
static struct modldrv modldrv = {
&mod_driverops, /* Type of module. This one is a driver */
ident,
&udmf_ops, /* driver ops */
};
static struct modlinkage modlinkage = {
MODREV_1, &modldrv, NULL
};
/* ======================================================== */
/*
* _init : done
*/
/* ======================================================== */
int
_init(void)
{
int status;
DPRINTF(2, (CE_CONT, "!udmf: _init: called"));
status = usbgem_mod_init(&udmf_ops, "udmf");
if (status != DDI_SUCCESS) {
return (status);
}
status = mod_install(&modlinkage);
if (status != DDI_SUCCESS) {
usbgem_mod_fini(&udmf_ops);
}
return (status);
}
/*
* _fini : done
*/
int
_fini(void)
{
int status;
DPRINTF(2, (CE_CONT, "!udmf: _fini: called"));
status = mod_remove(&modlinkage);
if (status == DDI_SUCCESS) {
usbgem_mod_fini(&udmf_ops);
}
return (status);
}
int
_info(struct modinfo *modinfop)
{
return (mod_info(&modlinkage, modinfop));
}
|