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
|
/*
* hp100.c: Hewlett Packard HP10/100VG ANY LAN ethernet driver for Linux.
*
* Author: Jaroslav Kysela, <perex@pf.jcu.cz>
*
* Supports only the following Hewlett Packard cards:
*
* HP J2577 10/100 EISA card with REVA Cascade chip
* HP J2573 10/100 ISA card with REVA Cascade chip
* HP 27248B 10 only EISA card with Cascade chip
* HP J2577 10/100 EISA card with Cascade chip
* HP J2573 10/100 ISA card with Cascade chip
* HP J2585 10/100 PCI card
*
* Other ATT2MD01 Chip based boards might be supported in the future
* (there are some minor changes needed).
*
* This driver is based on the 'hpfepkt' crynwr packet driver.
*
* This source/code is public free; you can distribute it and/or modify
* it under terms of the GNU General Public License (published by the
* Free Software Foundation) either version two of this License, or any
* later version.
* ----------------------------------------------------------------------------
*
* Note: Some routines (interrupt handling, transmit) assumes that
* there is the PERFORMANCE page selected...
*
* ----------------------------------------------------------------------------
*
* If you are going to use the module version of this driver, you may
* change this values at the "insert time" :
*
* Variable Description
*
* hp100_rx_ratio Range 1-99 - onboard memory used for RX
* packets in %.
* hp100_priority_tx If this variable is nonzero - all outgoing
* packets will be transmitted as priority.
* hp100_port Adapter port (for example 0x380).
*
* ----------------------------------------------------------------------------
* MY BEST REGARDS GOING TO:
*
* IPEX s.r.o which lend me two HP J2573 cards and
* the HP AdvanceStack 100VG Hub-15 for debugging.
*
* Russel Nellson <nelson@crynwr.com> for help with obtaining sources
* of the 'hpfepkt' packet driver.
*
* Also thanks to Abacus Electric s.r.o which let me to use their
* motherboard for my second computer.
*
* ----------------------------------------------------------------------------
*
* TO DO:
* ======
* - ioctl handling - some runtime setup things
* - 100Mb/s Voice Grade AnyLAN network adapter/hub services support
* - 802.5 frames
* - promiscuous mode
* - bridge mode
* - cascaded repeater mode
* - 100Mbit MAC
*
* Revision history:
* =================
*
* Version Date Description
*
* 0.1 14-May-95 Initial writing. ALPHA code was released.
* Only HP J2573 on 10Mb/s (two machines) tested.
* 0.11 14-Jun-95 Reset interface bug fixed?
* Little bug in hp100_close function fixed.
* 100Mb/s connection debugged.
* 0.12 14-Jul-95 Link down is now handled better.
* 0.20 01-Aug-95 Added PCI support for HP J2585A card.
* Statistics bug fixed.
* 0.21 04-Aug-95 Memory mapped access support for PCI card.
* Added priority transmit support for 100Mb/s
* Voice Grade AnyLAN network.
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/malloc.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/bios32.h>
#include <asm/bitops.h>
#include <asm/io.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/types.h>
#include <linux/config.h> /* for CONFIG_PCI */
#include "hp100.h"
/*
* defines
*/
#define HP100_BUS_ISA 0
#define HP100_BUS_EISA 1
#define HP100_BUS_PCI 2
#define HP100_REGION_SIZE 0x20
#define HP100_MAX_PACKET_SIZE (1536+4)
#define HP100_MIN_PACKET_SIZE 60
#ifndef HP100_DEFAULT_RX_RATIO
/* default - 65% onboard memory on the card are used for RX packets */
#define HP100_DEFAULT_RX_RATIO 65
#endif
#ifndef HP100_DEFAULT_PRIORITY_TX
/* default - don't enable transmit outgoing packets as priority */
#define HP100_DEFAULT_PRIORITY_TX 0
#endif
#ifdef MACH
#define HP100_IO_MAPPED
#endif
/*
* structures
*/
struct hp100_eisa_id {
u_int id;
const char *name;
u_char bus;
};
struct hp100_private {
struct hp100_eisa_id *id;
u_short soft_model;
u_int memory_size;
u_short rx_ratio; /* 1 - 99 */
u_short priority_tx; /* != 0 - priority tx */
short mem_mapped; /* memory mapped access */
u_char *mem_ptr_virt; /* virtual memory mapped area, maybe NULL */
u_char *mem_ptr_phys; /* physical memory mapped area */
short lan_type; /* 10Mb/s, 100Mb/s or -1 (error) */
int hub_status; /* login to hub was successfull? */
u_char mac1_mode;
u_char mac2_mode;
struct enet_statistics stats;
};
/*
* variables
*/
static struct hp100_eisa_id hp100_eisa_ids[] = {
/* 10/100 EISA card with REVA Cascade chip */
{ 0x080F1F022, "HP J2577 rev A", HP100_BUS_EISA },
/* 10/100 ISA card with REVA Cascade chip */
{ 0x050F1F022, "HP J2573 rev A", HP100_BUS_ISA },
/* 10 only EISA card with Cascade chip */
{ 0x02019F022, "HP 27248B", HP100_BUS_EISA },
/* 10/100 EISA card with Cascade chip */
{ 0x04019F022, "HP J2577", HP100_BUS_EISA },
/* 10/100 ISA card with Cascade chip */
{ 0x05019F022, "HP J2573", HP100_BUS_ISA },
/* 10/100 PCI card */
/* Note: ID for this card is same as PCI vendor/device numbers. */
{ 0x01030103c, "HP J2585", HP100_BUS_PCI },
};
int hp100_rx_ratio = HP100_DEFAULT_RX_RATIO;
int hp100_priority_tx = HP100_DEFAULT_PRIORITY_TX;
/*
* prototypes
*/
static int hp100_probe1( struct device *dev, int ioaddr, int bus );
static int hp100_open( struct device *dev );
static int hp100_close( struct device *dev );
static int hp100_start_xmit( struct sk_buff *skb, struct device *dev );
static void hp100_rx( struct device *dev );
static struct enet_statistics *hp100_get_stats( struct device *dev );
static void hp100_update_stats( struct device *dev );
static void hp100_clear_stats( int ioaddr );
static void hp100_set_multicast_list( struct device *dev);
static void hp100_interrupt( int irq, struct pt_regs *regs );
static void hp100_start_interface( struct device *dev );
static void hp100_stop_interface( struct device *dev );
static void hp100_load_eeprom( struct device *dev );
static int hp100_sense_lan( struct device *dev );
static int hp100_login_to_vg_hub( struct device *dev );
static int hp100_down_vg_link( struct device *dev );
/*
* probe functions
*/
int hp100_probe( struct device *dev )
{
int base_addr = dev ? dev -> base_addr : 0;
int ioaddr;
#ifdef CONFIG_PCI
int pci_start_index = 0;
#endif
if ( base_addr > 0xff ) /* Check a single specified location. */
{
if ( check_region( base_addr, HP100_REGION_SIZE ) ) return -EINVAL;
if ( base_addr < 0x400 )
return hp100_probe1( dev, base_addr, HP100_BUS_ISA );
else
return hp100_probe1( dev, base_addr, HP100_BUS_EISA );
}
else
#ifdef CONFIG_PCI
if ( base_addr > 0 && base_addr < 8 + 1 )
pci_start_index = 0x100 | ( base_addr - 1 );
else
#endif
if ( base_addr != 0 ) return -ENXIO;
/* at first - scan PCI bus(es) */
#ifdef CONFIG_PCI
if ( pcibios_present() )
{
int pci_index;
#ifdef HP100_DEBUG_PCI
printk( "hp100: PCI BIOS is present, checking for devices..\n" );
#endif
for ( pci_index = pci_start_index & 7; pci_index < 8; pci_index++ )
{
u_char pci_bus, pci_device_fn;
u_short pci_command;
if ( pcibios_find_device( PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_J2585A,
pci_index, &pci_bus,
&pci_device_fn ) != 0 ) break;
pcibios_read_config_dword( pci_bus, pci_device_fn,
PCI_BASE_ADDRESS_0, &ioaddr );
ioaddr &= ~3; /* remove I/O space marker in bit 0. */
if ( check_region( ioaddr, HP100_REGION_SIZE ) ) continue;
pcibios_read_config_word( pci_bus, pci_device_fn,
PCI_COMMAND, &pci_command );
if ( !( pci_command & PCI_COMMAND_MASTER ) )
{
#ifdef HP100_DEBUG_PCI
printk( "hp100: PCI Master Bit has not been set. Setting...\n" );
#endif
pci_command |= PCI_COMMAND_MASTER;
pcibios_write_config_word( pci_bus, pci_device_fn,
PCI_COMMAND, pci_command );
}
#ifdef HP100_DEBUG_PCI
printk( "hp100: PCI adapter found at 0x%x\n", ioaddr );
#endif
if ( hp100_probe1( dev, ioaddr, HP100_BUS_PCI ) == 0 ) return 0;
}
}
if ( pci_start_index > 0 ) return -ENODEV;
#endif /* CONFIG_PCI */
/* at second - probe all EISA possible port regions (if EISA bus present) */
for ( ioaddr = 0x1c38; EISA_bus && ioaddr < 0x10000; ioaddr += 0x400 )
{
if ( check_region( ioaddr, HP100_REGION_SIZE ) ) continue;
if ( hp100_probe1( dev, ioaddr, HP100_BUS_EISA ) == 0 ) return 0;
}
/* at third - probe all ISA possible port regions */
for ( ioaddr = 0x100; ioaddr < 0x400; ioaddr += 0x20 )
{
if ( check_region( ioaddr, HP100_REGION_SIZE ) ) continue;
if ( hp100_probe1( dev, ioaddr, HP100_BUS_ISA ) == 0 ) return 0;
}
return -ENODEV;
}
static int hp100_probe1( struct device *dev, int ioaddr, int bus )
{
int i;
u_char uc, uc_1;
u_int eisa_id;
short mem_mapped;
u_char *mem_ptr_phys, *mem_ptr_virt;
struct hp100_private *lp;
struct hp100_eisa_id *eid;
if ( dev == NULL )
{
#ifdef HP100_DEBUG
printk( "hp100_probe1: dev == NULL ?\n" );
#endif
return EIO;
}
if ( bus != HP100_BUS_PCI ) /* don't check PCI cards again */
if ( inb( ioaddr + 0 ) != HP100_HW_ID_0 ||
inb( ioaddr + 1 ) != HP100_HW_ID_1 ||
( inb( ioaddr + 2 ) & 0xf0 ) != HP100_HW_ID_2_REVA ||
inb( ioaddr + 3 ) != HP100_HW_ID_3 )
return -ENODEV;
dev -> base_addr = ioaddr;
#ifdef HP100_DEBUG_PROBE1
printk( "hp100_probe1: card found at port 0x%x\n", ioaddr );
#endif
hp100_page( ID_MAC_ADDR );
for ( i = uc = eisa_id = 0; i < 4; i++ )
{
eisa_id >>= 8;
uc_1 = hp100_inb( BOARD_ID + i );
eisa_id |= uc_1 << 24;
uc += uc_1;
}
uc += hp100_inb( BOARD_ID + 4 );
#ifdef HP100_DEBUG_PROBE1
printk( "hp100_probe1: EISA ID = 0x%08x checksum = 0x%02x\n", eisa_id, uc );
#endif
if ( uc != 0xff ) /* bad checksum? */
{
printk( "hp100_probe: bad EISA ID checksum at base port 0x%x\n", ioaddr );
return -ENODEV;
}
for ( i = 0; i < sizeof( hp100_eisa_ids ) / sizeof( struct hp100_eisa_id ); i++ )
if ( ( hp100_eisa_ids[ i ].id & 0xf0ffffff ) == ( eisa_id & 0xf0ffffff ) )
break;
if ( i >= sizeof( hp100_eisa_ids ) / sizeof( struct hp100_eisa_id ) )
{
printk( "hp100_probe1: card at port 0x%x isn't known (id = 0x%x)\n", ioaddr, eisa_id );
return -ENODEV;
}
eid = &hp100_eisa_ids[ i ];
if ( ( eid -> id & 0x0f000000 ) < ( eisa_id & 0x0f000000 ) )
{
printk( "hp100_probe1: newer version of card %s at port 0x%x - unsupported\n",
eid -> name, ioaddr );
return -ENODEV;
}
for ( i = uc = 0; i < 7; i++ )
uc += hp100_inb( LAN_ADDR + i );
if ( uc != 0xff )
{
printk( "hp100_probe1: bad lan address checksum (card %s at port 0x%x)\n",
eid -> name, ioaddr );
return -EIO;
}
#ifndef HP100_IO_MAPPED
hp100_page( HW_MAP );
mem_mapped = ( hp100_inw( OPTION_LSW ) &
( HP100_MEM_EN | HP100_BM_WRITE | HP100_BM_READ ) ) != 0;
mem_ptr_phys = mem_ptr_virt = NULL;
if ( mem_mapped )
{
mem_ptr_phys = (u_char *)( hp100_inw( MEM_MAP_LSW ) |
( hp100_inw( MEM_MAP_MSW ) << 16 ) );
(u_int)mem_ptr_phys &= ~0x1fff; /* 8k aligment */
if ( bus == HP100_BUS_ISA && ( (u_long)mem_ptr_phys & ~0xfffff ) != 0 )
{
mem_ptr_phys = NULL;
mem_mapped = 0;
}
if ( mem_mapped && bus == HP100_BUS_PCI )
{
if ( ( mem_ptr_virt = vremap( (u_long)mem_ptr_phys, 0x2000 ) ) == NULL )
{
printk( "hp100: vremap for high PCI memory at 0x%lx failed\n", (u_long)mem_ptr_phys );
mem_ptr_phys = NULL;
mem_mapped = 0;
}
}
}
#else
mem_mapped = 0;
mem_ptr_phys = mem_ptr_virt = NULL;
#endif
if ( ( dev -> priv = kmalloc( sizeof( struct hp100_private ), GFP_KERNEL ) ) == NULL )
return -ENOMEM;
memset( dev -> priv, 0, sizeof( struct hp100_private ) );
lp = (struct hp100_private *)dev -> priv;
lp -> id = eid;
lp -> mem_mapped = mem_mapped;
lp -> mem_ptr_phys = mem_ptr_phys;
lp -> mem_ptr_virt = mem_ptr_virt;
hp100_page( ID_MAC_ADDR );
lp -> soft_model = hp100_inb( SOFT_MODEL );
lp -> mac1_mode = HP100_MAC1MODE3;
lp -> mac2_mode = HP100_MAC2MODE3;
dev -> base_addr = ioaddr;
hp100_page( HW_MAP );
dev -> irq = hp100_inb( IRQ_CHANNEL ) & HP100_IRQ_MASK;
if ( dev -> irq == 2 ) dev -> irq = 9;
lp -> memory_size = 0x200 << ( ( hp100_inb( SRAM ) & 0xe0 ) >> 5 );
lp -> rx_ratio = hp100_rx_ratio;
dev -> open = hp100_open;
dev -> stop = hp100_close;
dev -> hard_start_xmit = hp100_start_xmit;
dev -> get_stats = hp100_get_stats;
dev -> set_multicast_list = &hp100_set_multicast_list;
request_region( dev -> base_addr, HP100_REGION_SIZE, eid -> name );
hp100_page( ID_MAC_ADDR );
for ( i = uc = 0; i < 6; i++ )
dev -> dev_addr[ i ] = hp100_inb( LAN_ADDR + i );
hp100_clear_stats( ioaddr );
ether_setup( dev );
lp -> lan_type = hp100_sense_lan( dev );
printk( "%s: %s at 0x%x, IRQ %d, ",
dev -> name, lp -> id -> name, ioaddr, dev -> irq );
switch ( bus ) {
case HP100_BUS_EISA: printk( "EISA" ); break;
case HP100_BUS_PCI: printk( "PCI" ); break;
default: printk( "ISA" ); break;
}
printk( " bus, %dk SRAM (rx/tx %d%%).\n",
lp -> memory_size >> ( 10 - 4 ), lp -> rx_ratio );
if ( mem_mapped )
{
printk( "%s: Memory area at 0x%lx-0x%lx",
dev -> name, (u_long)mem_ptr_phys, (u_long)mem_ptr_phys + 0x1fff );
if ( mem_ptr_virt )
printk( " (virtual base 0x%lx)", (u_long)mem_ptr_virt );
printk( ".\n" );
}
printk( "%s: ", dev -> name );
if ( lp -> lan_type != HP100_LAN_ERR )
printk( "Adapter is attached to " );
switch ( lp -> lan_type ) {
case HP100_LAN_100:
printk( "100Mb/s Voice Grade AnyLAN network.\n" );
break;
case HP100_LAN_10:
printk( "10Mb/s network.\n" );
break;
default:
printk( "Warning! Link down.\n" );
}
hp100_stop_interface( dev );
return 0;
}
/*
* open/close functions
*/
static int hp100_open( struct device *dev )
{
int i;
int ioaddr = dev -> base_addr;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
if ( request_irq( dev -> irq, hp100_interrupt, SA_INTERRUPT, lp -> id -> name ) )
{
printk( "%s: unable to get IRQ %d\n", dev -> name, dev -> irq );
return -EAGAIN;
}
irq2dev_map[ dev -> irq ] = dev;
MOD_INC_USE_COUNT;
dev -> tbusy = 0;
dev -> trans_start = jiffies;
dev -> interrupt = 0;
dev -> start = 1;
lp -> lan_type = hp100_sense_lan( dev );
lp -> mac1_mode = HP100_MAC1MODE3;
lp -> mac2_mode = HP100_MAC2MODE3;
hp100_page( MAC_CTRL );
hp100_orw( HP100_LINK_BEAT_DIS | HP100_RESET_LB, LAN_CFG_10 );
hp100_stop_interface( dev );
hp100_load_eeprom( dev );
hp100_outw( HP100_MMAP_DIS | HP100_SET_HB |
HP100_IO_EN | HP100_SET_LB, OPTION_LSW );
hp100_outw( HP100_DEBUG_EN | HP100_RX_HDR | HP100_EE_EN | HP100_RESET_HB |
HP100_FAKE_INT | HP100_RESET_LB, OPTION_LSW );
hp100_outw( HP100_ADV_NXT_PKT | HP100_TX_CMD | HP100_RESET_LB |
HP100_PRIORITY_TX | ( hp100_priority_tx ? HP100_SET_HB : HP100_RESET_HB ),
OPTION_MSW );
hp100_page( MAC_ADDRESS );
for ( i = 0; i < 6; i++ )
hp100_outb( dev -> dev_addr[ i ], MAC_ADDR + i );
for ( i = 0; i < 8; i++ ) /* setup multicast filter to receive all */
hp100_outb( 0xff, HASH_BYTE0 + i );
hp100_page( PERFORMANCE );
hp100_outw( 0xfefe, IRQ_MASK ); /* mask off all ints */
hp100_outw( 0xffff, IRQ_STATUS ); /* ack IRQ */
hp100_outw( (HP100_RX_PACKET | HP100_RX_ERROR | HP100_SET_HB) |
(HP100_TX_ERROR | HP100_SET_LB ), IRQ_MASK );
/* and enable few */
hp100_reset_card();
hp100_page( MMU_CFG );
hp100_outw( ( lp -> memory_size * lp -> rx_ratio ) / 100, RX_MEM_STOP );
hp100_outw( lp -> memory_size - 1, TX_MEM_STOP );
hp100_unreset_card();
if ( lp -> lan_type == HP100_LAN_100 )
lp -> hub_status = hp100_login_to_vg_hub( dev );
hp100_start_interface( dev );
return 0;
}
static int hp100_close( struct device *dev )
{
int ioaddr = dev -> base_addr;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
hp100_page( PERFORMANCE );
hp100_outw( 0xfefe, IRQ_MASK ); /* mask off all IRQs */
hp100_stop_interface( dev );
if ( lp -> lan_type == HP100_LAN_100 ) /* relogin */
hp100_login_to_vg_hub( dev );
dev -> tbusy = 1;
dev -> start = 0;
free_irq( dev -> irq );
irq2dev_map[ dev -> irq ] = NULL;
MOD_DEC_USE_COUNT;
return 0;
}
/*
* transmit
*/
static int hp100_start_xmit( struct sk_buff *skb, struct device *dev )
{
int i, ok_flag;
int ioaddr = dev -> base_addr;
u_short val;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
if ( lp -> lan_type < 0 )
{
hp100_stop_interface( dev );
if ( ( lp -> lan_type = hp100_sense_lan( dev ) ) < 0 )
{
printk( "%s: no connection found - check wire\n", dev -> name );
hp100_start_interface( dev ); /* 10Mb/s RX packets maybe handled */
return -EIO;
}
if ( lp -> lan_type == HP100_LAN_100 )
lp -> hub_status = hp100_login_to_vg_hub( dev );
hp100_start_interface( dev );
}
if ( ( i = ( hp100_inl( TX_MEM_FREE ) & ~0x7fffffff ) ) < skb -> len + 16 )
{
#ifdef HP100_DEBUG
printk( "hp100_start_xmit: rx free mem = 0x%x\n", i );
#endif
if ( jiffies - dev -> trans_start < 2 * HZ ) return -EAGAIN;
if ( lp -> lan_type == HP100_LAN_100 && lp -> hub_status < 0 )
/* 100Mb/s adapter isn't connected to hub */
{
printk( "%s: login to 100Mb/s hub retry\n", dev -> name );
hp100_stop_interface( dev );
lp -> hub_status = hp100_login_to_vg_hub( dev );
hp100_start_interface( dev );
}
else
{
hp100_ints_off();
i = hp100_sense_lan( dev );
hp100_page( PERFORMANCE );
hp100_ints_on();
if ( i == HP100_LAN_ERR )
printk( "%s: link down detected\n", dev -> name );
else
if ( lp -> lan_type != i )
{
/* it's very heavy - all network setting must be changed!!! */
printk( "%s: cable change 10Mb/s <-> 100Mb/s detected\n", dev -> name );
lp -> lan_type = i;
hp100_stop_interface( dev );
if ( lp -> lan_type == HP100_LAN_100 )
lp -> hub_status = hp100_login_to_vg_hub( dev );
hp100_start_interface( dev );
}
else
{
printk( "%s: interface reset\n", dev -> name );
hp100_stop_interface( dev );
hp100_start_interface( dev );
}
}
dev -> trans_start = jiffies;
return -EAGAIN;
}
if ( skb == NULL )
{
dev_tint( dev );
return 0;
}
if ( skb -> len <= 0 ) return 0;
for ( i = 0; i < 6000 && ( hp100_inw( OPTION_MSW ) & HP100_TX_CMD ); i++ )
{
#ifdef HP100_DEBUG_TX
printk( "hp100_start_xmit: busy\n" );
#endif
}
hp100_ints_off();
val = hp100_inw( IRQ_STATUS );
hp100_outw( val & HP100_TX_COMPLETE, IRQ_STATUS );
#ifdef HP100_DEBUG_TX
printk( "hp100_start_xmit: irq_status = 0x%x, len = %d\n", val, (int)skb -> len );
#endif
ok_flag = skb -> len >= HP100_MIN_PACKET_SIZE;
i = ok_flag ? skb -> len : HP100_MIN_PACKET_SIZE;
hp100_outw( i, DATA32 ); /* length to memory manager */
hp100_outw( i, FRAGMENT_LEN );
if ( lp -> mem_mapped )
{
if ( lp -> mem_ptr_virt )
{
memcpy( lp -> mem_ptr_virt, skb -> data, skb -> len );
if ( !ok_flag )
memset( lp -> mem_ptr_virt, 0, HP100_MIN_PACKET_SIZE - skb -> len );
}
else
{
memcpy_toio( lp -> mem_ptr_phys, skb -> data, skb -> len );
if ( !ok_flag )
memset_io( lp -> mem_ptr_phys, 0, HP100_MIN_PACKET_SIZE - skb -> len );
}
}
else
{
outsl( ioaddr + HP100_REG_DATA32, skb -> data, ( skb -> len + 3 ) >> 2 );
if ( !ok_flag )
for ( i = ( skb -> len + 3 ) & ~3; i < HP100_MIN_PACKET_SIZE; i += 4 )
hp100_outl( 0, DATA32 );
}
hp100_outw( HP100_TX_CMD | HP100_SET_LB, OPTION_MSW ); /* send packet */
lp -> stats.tx_packets++;
dev -> trans_start = jiffies;
hp100_ints_on();
dev_kfree_skb( skb, FREE_WRITE );
#ifdef HP100_DEBUG_TX
printk( "hp100_start_xmit: end\n" );
#endif
return 0;
}
/*
* receive - called from interrupt handler
*/
static void hp100_rx( struct device *dev )
{
int packets, pkt_len;
int ioaddr = dev -> base_addr;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
u_int header;
struct sk_buff *skb;
#if 0
if ( lp -> lan_type < 0 )
{
if ( ( lp -> lan_type = hp100_sense_lan( dev ) ) == HP100_LAN_100 )
lp -> hub_status = hp100_login_to_vg_hub( dev );
hp100_page( PERFORMANCE );
}
#endif
packets = hp100_inb( RX_PKT_CNT );
#ifdef HP100_DEBUG
if ( packets > 1 )
printk( "hp100_rx: waiting packets = %d\n", packets );
#endif
while ( packets-- > 0 )
{
for ( pkt_len = 0; pkt_len < 6000 && ( hp100_inw( OPTION_MSW ) & HP100_ADV_NXT_PKT ); pkt_len++ )
{
#ifdef HP100_DEBUG_TX
printk( "hp100_rx: busy, remaining packets = %d\n", packets );
#endif
}
if ( lp -> mem_mapped )
{
if ( lp -> mem_ptr_virt )
header = *(__u32 *)lp -> mem_ptr_virt;
else
header = readl( lp -> mem_ptr_phys );
}
else
header = hp100_inl( DATA32 );
pkt_len = header & HP100_PKT_LEN_MASK;
#ifdef HP100_DEBUG_RX
printk( "hp100_rx: new packet - length = %d, errors = 0x%x, dest = 0x%x\n",
header & HP100_PKT_LEN_MASK, ( header >> 16 ) & 0xfff8, ( header >> 16 ) & 7 );
#endif
/*
* NOTE! This (and the skb_put() below) depends on the skb-functions
* allocating more than asked (notably, aligning the request up to
* the next 16-byte length).
*/
skb = dev_alloc_skb( pkt_len );
if ( skb == NULL )
{
#ifdef HP100_DEBUG
printk( "hp100_rx: couldn't allocate a sk_buff of size %d\n", pkt_len );
#endif
lp -> stats.rx_dropped++;
}
else
{
u_char *ptr;
skb -> dev = dev;
ptr = (u_char *)skb_put( skb, pkt_len );
if ( lp -> mem_mapped )
{
if ( lp -> mem_ptr_virt )
memcpy( ptr, lp -> mem_ptr_virt, ( pkt_len + 3 ) & ~3 );
else
memcpy_fromio( ptr, lp -> mem_ptr_phys, ( pkt_len + 3 ) & ~3 );
}
else
insl( ioaddr + HP100_REG_DATA32, ptr, ( pkt_len + 3 ) >> 2 );
skb -> protocol = eth_type_trans( skb, dev );
netif_rx( skb );
lp -> stats.rx_packets++;
#ifdef HP100_DEBUG_RX
printk( "rx: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
ptr[ 0 ], ptr[ 1 ], ptr[ 2 ], ptr[ 3 ], ptr[ 4 ], ptr[ 5 ],
ptr[ 6 ], ptr[ 7 ], ptr[ 8 ], ptr[ 9 ], ptr[ 10 ], ptr[ 11 ] );
#endif
}
hp100_outw( HP100_ADV_NXT_PKT | HP100_SET_LB, OPTION_MSW );
switch ( header & 0x00070000 ) {
case (HP100_MULTI_ADDR_HASH<<16):
case (HP100_MULTI_ADDR_NO_HASH<<16):
lp -> stats.multicast++; break;
}
}
#ifdef HP100_DEBUG_RX
printk( "hp100_rx: end\n" );
#endif
}
/*
* statistics
*/
static struct enet_statistics *hp100_get_stats( struct device *dev )
{
int ioaddr = dev -> base_addr;
hp100_ints_off();
hp100_update_stats( dev );
hp100_ints_on();
return &((struct hp100_private *)dev -> priv) -> stats;
}
static void hp100_update_stats( struct device *dev )
{
int ioaddr = dev -> base_addr;
u_short val;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
hp100_page( MAC_CTRL ); /* get all statistics bytes */
val = hp100_inw( DROPPED ) & 0x0fff;
lp -> stats.rx_errors += val;
lp -> stats.rx_over_errors += val;
val = hp100_inb( CRC );
lp -> stats.rx_errors += val;
lp -> stats.rx_crc_errors += val;
val = hp100_inb( ABORT );
lp -> stats.tx_errors += val;
lp -> stats.tx_aborted_errors += val;
hp100_page( PERFORMANCE );
}
static void hp100_clear_stats( int ioaddr )
{
cli();
hp100_page( MAC_CTRL ); /* get all statistics bytes */
hp100_inw( DROPPED );
hp100_inb( CRC );
hp100_inb( ABORT );
hp100_page( PERFORMANCE );
sti();
}
/*
* multicast setup
*/
/*
* Set or clear the multicast filter for this adapter.
*/
static void hp100_set_multicast_list( struct device *dev)
{
int ioaddr = dev -> base_addr;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
#ifdef HP100_DEBUG_MULTI
printk( "hp100_set_multicast_list: num_addrs = %d\n", dev->mc_count);
#endif
cli();
hp100_ints_off();
hp100_page( MAC_CTRL );
hp100_andb( ~(HP100_RX_EN | HP100_TX_EN), MAC_CFG_1 ); /* stop rx/tx */
if ( dev->flags&IFF_PROMISC)
{
lp -> mac2_mode = HP100_MAC2MODE6; /* promiscuous mode, all good */
lp -> mac1_mode = HP100_MAC1MODE6; /* packets on the net */
}
else
if ( dev->mc_count || dev->flags&IFF_ALLMULTI )
{
lp -> mac2_mode = HP100_MAC2MODE5; /* multicast mode, packets for me */
lp -> mac1_mode = HP100_MAC1MODE5; /* broadcasts and all multicasts */
}
else
{
lp -> mac2_mode = HP100_MAC2MODE3; /* normal mode, packets for me */
lp -> mac1_mode = HP100_MAC1MODE3; /* and broadcasts */
}
hp100_outb( lp -> mac2_mode, MAC_CFG_2 );
hp100_andb( HP100_MAC1MODEMASK, MAC_CFG_1 );
hp100_orb( lp -> mac1_mode |
HP100_RX_EN | HP100_RX_IDLE | /* enable rx */
HP100_TX_EN | HP100_TX_IDLE, MAC_CFG_1 ); /* enable tx */
hp100_page( PERFORMANCE );
hp100_ints_on();
sti();
}
/*
* hardware interrupt handling
*/
static void hp100_interrupt( int irq, struct pt_regs *regs )
{
struct device *dev = (struct device *)irq2dev_map[ irq ];
struct hp100_private *lp;
int ioaddr;
u_short val;
if ( dev == NULL ) return;
ioaddr = dev -> base_addr;
if ( dev -> interrupt )
printk( "%s: re-entering the interrupt handler\n", dev -> name );
hp100_ints_off();
dev -> interrupt = 1;
hp100_page( PERFORMANCE );
val = hp100_inw( IRQ_STATUS );
#ifdef HP100_DEBUG_IRQ
printk( "hp100_interrupt: irq_status = 0x%x\n", val );
#endif
if ( val & HP100_RX_PACKET )
{
hp100_rx( dev );
hp100_outw( HP100_RX_PACKET, IRQ_STATUS );
}
if ( val & (HP100_TX_SPACE_AVAIL | HP100_TX_COMPLETE) )
{
hp100_outw( val & (HP100_TX_SPACE_AVAIL | HP100_TX_COMPLETE), IRQ_STATUS );
}
if ( val & ( HP100_TX_ERROR | HP100_RX_ERROR ) )
{
lp = (struct hp100_private *)dev -> priv;
hp100_update_stats( dev );
hp100_outw( val & (HP100_TX_ERROR | HP100_RX_ERROR), IRQ_STATUS );
}
#ifdef HP100_DEBUG_IRQ
printk( "hp100_interrupt: end\n" );
#endif
dev -> interrupt = 0;
hp100_ints_on();
}
/*
* some misc functions
*/
static void hp100_start_interface( struct device *dev )
{
int ioaddr = dev -> base_addr;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
cli();
hp100_unreset_card();
hp100_page( MAC_CTRL );
hp100_outb( lp -> mac2_mode, MAC_CFG_2 );
hp100_andb( HP100_MAC1MODEMASK, MAC_CFG_1 );
hp100_orb( lp -> mac1_mode |
HP100_RX_EN | HP100_RX_IDLE |
HP100_TX_EN | HP100_TX_IDLE, MAC_CFG_1 );
hp100_page( PERFORMANCE );
hp100_outw( HP100_INT_EN | HP100_SET_LB, OPTION_LSW );
hp100_outw( HP100_TRI_INT | HP100_RESET_HB, OPTION_LSW );
if ( lp -> mem_mapped )
{
/* enable memory mapping */
hp100_outw( HP100_MMAP_DIS | HP100_RESET_HB, OPTION_LSW );
}
sti();
}
static void hp100_stop_interface( struct device *dev )
{
int ioaddr = dev -> base_addr;
u_short val;
hp100_outw( HP100_INT_EN | HP100_RESET_LB |
HP100_TRI_INT | HP100_MMAP_DIS | HP100_SET_HB, OPTION_LSW );
val = hp100_inw( OPTION_LSW );
hp100_page( HW_MAP );
hp100_andb( HP100_BM_SLAVE, BM );
hp100_page( MAC_CTRL );
hp100_andb( ~(HP100_RX_EN | HP100_TX_EN), MAC_CFG_1 );
if ( !(val & HP100_HW_RST) ) return;
for ( val = 0; val < 6000; val++ )
if ( ( hp100_inb( MAC_CFG_1 ) & (HP100_TX_IDLE | HP100_RX_IDLE) ) ==
(HP100_TX_IDLE | HP100_RX_IDLE) )
return;
printk( "%s: hp100_stop_interface - timeout\n", dev -> name );
}
static void hp100_load_eeprom( struct device *dev )
{
int i;
int ioaddr = dev -> base_addr;
hp100_page( EEPROM_CTRL );
hp100_andw( ~HP100_EEPROM_LOAD, EEPROM_CTRL );
hp100_orw( HP100_EEPROM_LOAD, EEPROM_CTRL );
for ( i = 0; i < 6000; i++ )
if ( !( hp100_inw( OPTION_MSW ) & HP100_EE_LOAD ) ) return;
printk( "%s: hp100_load_eeprom - timeout\n", dev -> name );
}
/* return values: LAN_10, LAN_100 or LAN_ERR (not connected or hub is down)... */
static int hp100_sense_lan( struct device *dev )
{
int i;
int ioaddr = dev -> base_addr;
u_short val_VG, val_10;
struct hp100_private *lp = (struct hp100_private *)dev -> priv;
hp100_page( MAC_CTRL );
hp100_orw( HP100_VG_RESET, LAN_CFG_VG );
val_10 = hp100_inw( LAN_CFG_10 );
val_VG = hp100_inw( LAN_CFG_VG );
#ifdef HP100_DEBUG_SENSE
printk( "hp100_sense_lan: val_VG = 0x%04x, val_10 = 0x%04x\n", val_VG, val_10 );
#endif
if ( val_10 & HP100_LINK_BEAT_ST ) return HP100_LAN_10;
if ( lp -> id -> id == 0x02019F022 ) /* HP J27248B doesn't have 100Mb/s interface */
return HP100_LAN_ERR;
for ( i = 0; i < 2500; i++ )
{
val_VG = hp100_inw( LAN_CFG_VG );
if ( val_VG & HP100_LINK_CABLE_ST ) return HP100_LAN_100;
}
return HP100_LAN_ERR;
}
static int hp100_down_vg_link( struct device *dev )
{
int ioaddr = dev -> base_addr;
unsigned long time;
int i;
hp100_page( MAC_CTRL );
for ( i = 2500; i > 0; i-- )
if ( hp100_inw( LAN_CFG_VG ) & HP100_LINK_CABLE_ST ) break;
if ( i <= 0 ) /* not signal - not logout */
return 0;
hp100_andw( ~HP100_LINK_CMD, LAN_CFG_VG );
time = jiffies + 10;
while ( time > jiffies )
if ( !( hp100_inw( LAN_CFG_VG ) & ( HP100_LINK_UP_ST |
HP100_LINK_CABLE_ST |
HP100_LINK_GOOD_ST ) ) )
return 0;
#ifdef HP100_DEBUG
printk( "hp100_down_vg_link: timeout\n" );
#endif
return -EIO;
}
static int hp100_login_to_vg_hub( struct device *dev )
{
int i;
int ioaddr = dev -> base_addr;
u_short val;
unsigned long time;
hp100_page( MAC_CTRL );
hp100_orw( HP100_VG_RESET, LAN_CFG_VG );
time = jiffies + ( HZ / 2 );
do {
if ( hp100_inw( LAN_CFG_VG ) & HP100_LINK_CABLE_ST ) break;
} while ( time > jiffies );
if ( time <= jiffies )
{
#ifdef HP100_DEBUG
printk( "hp100_login_to_vg_hub: timeout for link\n" );
#endif
return -EIO;
}
if ( hp100_down_vg_link( dev ) < 0 ) /* if fail, try reset VG link */
{
hp100_andw( ~HP100_VG_RESET, LAN_CFG_VG );
hp100_orw( HP100_VG_RESET, LAN_CFG_VG );
}
/* bring up link */
hp100_orw( HP100_LOAD_ADDR | HP100_LINK_CMD, LAN_CFG_VG );
for ( i = 2500; i > 0; i-- )
if ( hp100_inw( LAN_CFG_VG ) & HP100_LINK_CABLE_ST ) break;
if ( i <= 0 )
{
#ifdef HP100_DEBUG
printk( "hp100_login_to_vg_hub: timeout for link (bring up)\n" );
#endif
goto down_link;
}
time = jiffies + ( HZ / 2 );
do {
val = hp100_inw( LAN_CFG_VG );
if ( ( val & ( HP100_LINK_UP_ST | HP100_LINK_GOOD_ST ) ) ==
( HP100_LINK_UP_ST | HP100_LINK_GOOD_ST ) )
return 0; /* success */
} while ( time > jiffies );
if ( val & HP100_LINK_GOOD_ST )
printk( "%s: 100Mb cable training failed, check cable.\n", dev -> name );
else
printk( "%s: 100Mb node not accepted by hub, check frame type or security.\n", dev -> name );
down_link:
hp100_down_vg_link( dev );
hp100_page( MAC_CTRL );
hp100_andw( ~( HP100_LOAD_ADDR | HP100_PROM_MODE ), LAN_CFG_VG );
hp100_orw( HP100_LINK_CMD, LAN_CFG_VG );
return -EIO;
}
/*
* module section
*/
#ifdef MODULE
static int hp100_port = -1;
static char devicename[9] = { 0, };
static struct device dev_hp100 = {
devicename, /* device name is inserted by linux/drivers/net/net_init.c */
0, 0, 0, 0,
0, 0,
0, 0, 0, NULL, hp100_probe
};
int init_module( void )
{
if (hp100_port == 0 && !EISA_bus)
printk("HP100: You should not use auto-probing with insmod!\n");
if ( hp100_port > 0 )
dev_hp100.base_addr = hp100_port;
if ( register_netdev( &dev_hp100 ) != 0 )
return -EIO;
return 0;
}
void cleanup_module( void )
{
unregister_netdev( &dev_hp100 );
release_region( dev_hp100.base_addr, HP100_REGION_SIZE );
if ( ((struct hp100_private *)dev_hp100.priv) -> mem_ptr_virt )
vfree( ((struct hp100_private *)dev_hp100.priv) -> mem_ptr_virt );
kfree_s( dev_hp100.priv, sizeof( struct hp100_private ) );
dev_hp100.priv = NULL;
}
#endif
|