1 |
786 |
skrzyp |
2005-11-07 David Vrabel
|
2 |
|
|
|
3 |
|
|
* src/if_dm9000.c, include/dm9000_info.h: Support interrupts.
|
4 |
|
|
* cdl/davicom_dm9000_eth_drivers.cdl
|
5 |
|
|
(CYGPKG_DEVS_ETH_DAVICOM_DM9000_CFLAGS_ADD): Need _KERNEL and
|
6 |
|
|
__ECOS defined for non-stand-alone builds.
|
7 |
|
|
|
8 |
|
|
2005-10-25 David Vrabel
|
9 |
|
|
|
10 |
|
|
* src/if_dm9000.c (eeprom_read, eeprom_write, eeprom_reload):
|
11 |
|
|
Delay more when writing/reading eeprom (200 us isn't enough).
|
12 |
|
|
(phy_init): Turn on PHY before writing PHY registers. Wait for
|
13 |
|
|
auto negotiation to be complete.
|
14 |
|
|
(dm9000_send): Correctly write last words to Tx SRAM when using a
|
15 |
|
|
8/16 bit device. Clarify and comment code.
|
16 |
|
|
(dm9000_poll): Parse Rx packet header correctly on 8/16 bit
|
17 |
|
|
devices.
|
18 |
|
|
(dm9000_ioctl): Handle ETH_DRV_GET_MAC_ADDRESS and
|
19 |
|
|
ETH_DRV_SET_MAC_ADDRESS.
|
20 |
|
|
|
21 |
|
|
* cdl/davicom_dm9000_eth_drivers.cdl: New option
|
22 |
|
|
CYGSEM_DEVS_ETH_DAVICOM_DM9000_WRITE_EEPROM to enable/disable
|
23 |
|
|
writing to EEPROM.
|
24 |
|
|
|
25 |
|
|
2004-09-05 Mark Salter
|
26 |
|
|
|
27 |
|
|
Initial Checkin of DM9000 Ethernet driver (RedBoot only for now).
|
28 |
|
|
|
29 |
|
|
//===========================================================================
|
30 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
31 |
|
|
// -------------------------------------------
|
32 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
33 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
|
34 |
|
|
//
|
35 |
|
|
// This program is free software; you can redistribute it and/or modify
|
36 |
|
|
// it under the terms of the GNU General Public License as published by
|
37 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
38 |
|
|
// later version.
|
39 |
|
|
//
|
40 |
|
|
// This program is distributed in the hope that it will be useful, but
|
41 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
42 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
43 |
|
|
// General Public License for more details.
|
44 |
|
|
//
|
45 |
|
|
// You should have received a copy of the GNU General Public License
|
46 |
|
|
// along with this program; if not, write to the
|
47 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
48 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
49 |
|
|
// -------------------------------------------
|
50 |
|
|
// ####GPLCOPYRIGHTEND####
|
51 |
|
|
//===========================================================================
|