1 |
786 |
skrzyp |
2005-07-18 David Vrabel
|
2 |
|
|
|
3 |
|
|
* src/if_dp83816.c: Use CYG_CPU_TO_LE32 and CYG_LE32_TO_CPU macros
|
4 |
|
|
instead of the _h2le and _le2h functions.
|
5 |
|
|
|
6 |
|
|
* src/dp83816.h: #define's for MEAR (EEPROM access) register.
|
7 |
|
|
|
8 |
|
|
* src/dp83816.c [CYGHWR_NS_DP83186_USE_EEPROM]: Read MAC address
|
9 |
|
|
from EEPROM.
|
10 |
|
|
|
11 |
|
|
2004-08-24 Gary Thomas
|
12 |
|
|
|
13 |
|
|
* src/if_dp83816.c: Enable start/stop functions (device was always
|
14 |
|
|
enabled once configured before)
|
15 |
|
|
|
16 |
|
|
2004-05-14 Nick Garnett
|
17 |
|
|
|
18 |
|
|
* src/if_dp83816.c (dp83816_init): Make ESA diag_printf()
|
19 |
|
|
controlled by DEBUG flag.
|
20 |
|
|
(dp83816_init):
|
21 |
|
|
(dp83816_poll): Fixed interrupt enable, masking and acknowledges
|
22 |
|
|
so that the driver correctly handles Ctrl-C interrupts in RedBoot.
|
23 |
|
|
|
24 |
|
|
2004-05-13 Nick Garnett
|
25 |
|
|
|
26 |
|
|
* src/if_dp83816.c (dp83816_poll): Removed test for locked up
|
27 |
|
|
transmit engine. This test triggers in otherwise normal situations
|
28 |
|
|
and the warm reset messes things up a lot in both the driver and
|
29 |
|
|
network stack.
|
30 |
|
|
(dp83816_recv): Avoid memcpy() when passed a NULL buffer, this can
|
31 |
|
|
happen when the stack runs out of MBUFs.
|
32 |
|
|
|
33 |
|
|
2003-10-14 Gary Thomas
|
34 |
|
|
|
35 |
|
|
* src/if_dp83816.c (dp83816_poll): Try to better detect condition
|
36 |
|
|
where device just stops. This seems to be related to Rx overruns,
|
37 |
|
|
but there is no status reported. The best that can be done is
|
38 |
|
|
detect the condition and then reset/restart the device.
|
39 |
|
|
|
40 |
|
|
2003-10-02 Gary Thomas
|
41 |
|
|
|
42 |
|
|
* src/dp83816.h: Let default ESA be a pointer, so platforms can more
|
43 |
|
|
easily set it a runtime.
|
44 |
|
|
|
45 |
|
|
2003-09-30 Gary Thomas
|
46 |
|
|
|
47 |
|
|
* src/if_dp83816.c:
|
48 |
|
|
* src/dp83816.h:
|
49 |
|
|
* cdl/ns_dp83816_eth_drivers.cdl: New package - ethernet driver for
|
50 |
|
|
National Semiconductor DP83816 PCI
|
51 |
|
|
|
52 |
|
|
//===========================================================================
|
53 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
54 |
|
|
// -------------------------------------------
|
55 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
56 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
|
57 |
|
|
//
|
58 |
|
|
// This program is free software; you can redistribute it and/or modify
|
59 |
|
|
// it under the terms of the GNU General Public License as published by
|
60 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
61 |
|
|
// later version.
|
62 |
|
|
//
|
63 |
|
|
// This program is distributed in the hope that it will be useful, but
|
64 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
65 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
66 |
|
|
// General Public License for more details.
|
67 |
|
|
//
|
68 |
|
|
// You should have received a copy of the GNU General Public License
|
69 |
|
|
// along with this program; if not, write to the
|
70 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
71 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
72 |
|
|
// -------------------------------------------
|
73 |
|
|
// ####GPLCOPYRIGHTEND####
|
74 |
|
|
//===========================================================================
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
|