Source
1
+
// SPDX-License-Identifier: GPL-2.0+
1
2
/*
2
3
dm9000.c: Version 1.2 12/15/2003
3
4
4
5
A Davicom DM9000 ISA NIC fast Ethernet driver for Linux.
5
6
Copyright (C) 1997 Sten Wang
6
7
7
-
* SPDX-License-Identifier: GPL-2.0+
8
-
9
8
(C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
10
9
11
10
V0.11 06/20/2001 REG_0A bit3=1, default enable BP with DA match
12
11
06/22/2001 Support DM9801 progrmming
13
12
E3: R25 = ((R24 + NF) & 0x00ff) | 0xf000
14
13
E4: R25 = ((R24 + NF) & 0x00ff) | 0xc200
15
14
R17 = (R17 & 0xfff0) | NF + 3
16
15
E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200
17
16
R17 = (R17 & 0xfff0) | NF
18
17