1 |
27 |
unneback |
2003-02-05 Nick Garnett
|
2 |
|
|
|
3 |
|
|
* src/if_i82544.c (BUS_TO_VIRT): Added default definition of this
|
4 |
|
|
macro.
|
5 |
|
|
|
6 |
|
|
2002-11-12 Gary Thomas
|
7 |
|
|
|
8 |
|
|
* src/if_i82544.c: Minor fixes - use HAL_DELAY_US(), additional
|
9 |
|
|
PCI device type (0x100D) which is present on the NPWR Linux Engine.
|
10 |
|
|
|
11 |
|
|
2002-06-14 Gary Thomas
|
12 |
|
|
|
13 |
|
|
* src/if_i82544.c:
|
14 |
|
|
Need to include for proper configuration
|
15 |
|
|
of stand-alone (polled) vs. system (interrupt driven) mode.
|
16 |
|
|
|
17 |
|
|
2002-02-25 Mark Salter
|
18 |
|
|
|
19 |
|
|
* src/if_i82544.c: Don't call PacketRxReady in standalone configuration
|
20 |
|
|
unless ready to accept a packet. Limit packet delivery to one packet at
|
21 |
|
|
a time in standalone configuration.
|
22 |
|
|
|
23 |
|
|
2002-02-22 Mark Salter
|
24 |
|
|
|
25 |
|
|
* src/if_i82544.c: Remove unnecessary eth_dsr declaration.
|
26 |
|
|
|
27 |
|
|
2002-02-19 Mark Salter
|
28 |
|
|
|
29 |
|
|
* src/if_i82544.c (pci_init_find_82544s): Don't use IRQ support if
|
30 |
|
|
CYGPKG_IO_ETH_DRIVERS_STAND_ALONE.
|
31 |
|
|
|
32 |
|
|
2002-01-22 Mark Salter
|
33 |
|
|
|
34 |
|
|
* src/if_i82544.c (i82544_send): Add HAL_DCACHE_STORE before passing
|
35 |
|
|
buffer to NIC.
|
36 |
|
|
|
37 |
|
|
2002-01-21 Mark Salter
|
38 |
|
|
|
39 |
|
|
* cdl/intel_i82544_eth_drivers.cdl: Add
|
40 |
|
|
CYGNUM_DEVS_ETH_INTEL_I82544_MAX_RX_DESCRIPTORS and
|
41 |
|
|
CYGNUM_DEVS_ETH_INTEL_I82544_MAX_TX_DESCRIPTORS.
|
42 |
|
|
|
43 |
|
|
* src/if_i82544.c: Add appropriate BUS_TO_VIRT and VIRT_TO_BUS
|
44 |
|
|
conversions.
|
45 |
|
|
Remove check that assumes driver owns entire PCI window.
|
46 |
|
|
(i82544_setup): Add option to use auto-speed detection.
|
47 |
|
|
|
48 |
|
|
2001-11-27 Nick Garnett
|
49 |
|
|
|
50 |
|
|
* cdl/intel_i82544_eth_drivers.cdl:
|
51 |
|
|
* include/i82544_info.h:
|
52 |
|
|
* src/if_i82544.c:
|
53 |
|
|
Created driver by copying i82559 driver and editing.
|
54 |
|
|
|
55 |
|
|
//===========================================================================
|
56 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
57 |
|
|
// -------------------------------------------
|
58 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
59 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
60 |
|
|
//
|
61 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
62 |
|
|
// the terms of the GNU General Public License as published by the Free
|
63 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
64 |
|
|
//
|
65 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
66 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
67 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
68 |
|
|
// for more details.
|
69 |
|
|
//
|
70 |
|
|
// You should have received a copy of the GNU General Public License along
|
71 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
72 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
73 |
|
|
//
|
74 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
75 |
|
|
// or inline functions from this file, or you compile this file and link it
|
76 |
|
|
// with other works to produce a work based on this file, this file does not
|
77 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
78 |
|
|
// License. However the source code for this file must still be made available
|
79 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
80 |
|
|
//
|
81 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
82 |
|
|
// this file might be covered by the GNU General Public License.
|
83 |
|
|
//
|
84 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
85 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
86 |
|
|
// -------------------------------------------
|
87 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
88 |
|
|
//===========================================================================
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
|