1 |
27 |
unneback |
2003-03-27 Jay Foster
|
2 |
|
|
|
3 |
|
|
* src/ics1890.c: Added configurable PHY MII address.
|
4 |
|
|
* src/lxt970.c: Added configurable PHY MII address.
|
5 |
|
|
* src/lxt972.c: Added configurable PHY MII address.
|
6 |
|
|
* cdl/ks32c5000_eth.cdl: CDL to allow configuration of the PHY
|
7 |
|
|
MII address. Documented support for ICS1893AF PHY.
|
8 |
|
|
* src/ks5000_ether.c: Added configurable PHY MII address.
|
9 |
|
|
Fixed local definition of eth_drv_init() macro (produces no code
|
10 |
|
|
change). Fixed strncpy()s for the ETH_DRV_GET_IF_STATS IOCTL to
|
11 |
|
|
leave room for the NUL termination character and use parenthesis
|
12 |
|
|
with the 'sizeof' operator. Added ETH_DRV_SET_MAC_ADDRESS IOCTL
|
13 |
|
|
support to allow setting the MAC (ESA) address from the application.
|
14 |
|
|
Fixed to only attach the CYGNUM_HAL_INTERRUPT_EXT0 if the
|
15 |
|
|
HavePHYinterrupt conditional is defined. This prevents unhandled
|
16 |
|
|
interrupts from getting through when HavePHYinterrupt is not defined.
|
17 |
|
|
|
18 |
|
|
2003-03-26 Chris Garry
|
19 |
|
|
|
20 |
|
|
* cdl/ks32c5000_eth.cdl
|
21 |
|
|
* src/ks5000_ether.c: Added CDL control for level of driver
|
22 |
|
|
debug output.
|
23 |
|
|
|
24 |
|
|
2003-03-20 Chris Garry
|
25 |
|
|
|
26 |
|
|
* src/ks5000_ether.c:
|
27 |
|
|
Added volatile to *rxReadPointer, *txDonePointer and
|
28 |
|
|
*txWritePointer's definitions.
|
29 |
|
|
|
30 |
|
|
2003-02-20 Chris Garry
|
31 |
|
|
|
32 |
|
|
* src/ks5000_ether.c:
|
33 |
|
|
Removed line setting up programmable I/O pins as debug outputs.
|
34 |
|
|
|
35 |
|
|
2002-11-05 Jonathan Larmour
|
36 |
|
|
|
37 |
|
|
* cdl/ks32c5000_eth.cdl: Ensure exactly 1 PHY enabled.
|
38 |
|
|
|
39 |
|
|
2002-11-05 Chris Garry
|
40 |
|
|
|
41 |
|
|
* src/lxt972.c: New file. Added LXT972 PHY support.
|
42 |
|
|
* cdl/ks32c5000_eth.cdl: CDL to allow configuration of the above.
|
43 |
|
|
|
44 |
|
|
* src/ks5000_ether.c: (CYG_BYTEORDER == CYG_MSBFIRST) used to swap
|
45 |
|
|
endian in BDMARxConfigVar declaration and txWritePointer transmit
|
46 |
|
|
descriptor reserved fields setup.
|
47 |
|
|
(ks32c5000_eth_poll): Added call to BDMA Rx isr routine.
|
48 |
|
|
|
49 |
|
|
2002-10-10 Andrew Lunn
|
50 |
|
|
|
51 |
|
|
* cdl/ks32c5000_eth.cdl
|
52 |
|
|
* src/ks5000_ether.c (ks32c5000_eth_get_recv_buffer): Use the
|
53 |
|
|
cyg_crc32 function in the CRC package.
|
54 |
|
|
|
55 |
|
|
2002-07-10 Gary Thomas
|
56 |
|
|
2002-07-10 Simon Sudler
|
57 |
|
|
|
58 |
|
|
* src/ks5000_ether.c: Fix problems with interrupt names (spelling).
|
59 |
|
|
|
60 |
|
|
2002-06-14 Gary Thomas
|
61 |
|
|
|
62 |
|
|
* src/ks5000_ether.c:
|
63 |
|
|
Need to include for proper configuration
|
64 |
|
|
of stand-alone (polled) vs. system (interrupt driven) mode.
|
65 |
|
|
|
66 |
|
|
2002-05-30 Jonathan Larmour
|
67 |
|
|
|
68 |
|
|
* src/ks5000_ether.c (ks32c5000_eth_send): Conditionalize on
|
69 |
|
|
CYGPKG_KERNEL for presence of thread delay function.
|
70 |
|
|
(ks32c5000_eth_init): No need conditionalizing unmask on CYGPKG_NET.
|
71 |
|
|
|
72 |
|
|
//===========================================================================
|
73 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
74 |
|
|
// -------------------------------------------
|
75 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
76 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
77 |
|
|
//
|
78 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
79 |
|
|
// the terms of the GNU General Public License as published by the Free
|
80 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
81 |
|
|
//
|
82 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
83 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
84 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
85 |
|
|
// for more details.
|
86 |
|
|
//
|
87 |
|
|
// You should have received a copy of the GNU General Public License along
|
88 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
89 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
90 |
|
|
//
|
91 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
92 |
|
|
// or inline functions from this file, or you compile this file and link it
|
93 |
|
|
// with other works to produce a work based on this file, this file does not
|
94 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
95 |
|
|
// License. However the source code for this file must still be made available
|
96 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
97 |
|
|
//
|
98 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
99 |
|
|
// this file might be covered by the GNU General Public License.
|
100 |
|
|
//
|
101 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
102 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
103 |
|
|
// -------------------------------------------
|
104 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
105 |
|
|
//===========================================================================
|