1 |
27 |
unneback |
2001-05-02 Hugo Tyson
|
2 |
|
|
|
3 |
|
|
* include/devs_eth_nano.inl: Because we now arrange PCI window
|
4 |
|
|
memory distant from normal RAM, it can be scattered in physical
|
5 |
|
|
RAM. So define CYGHWR_DEVS_ETH_INTEL_I82559_PCIMEM_DISCONTIGUOUS.
|
6 |
|
|
This is not really needed by default with only 1Mb of PCI window,
|
7 |
|
|
but the overhead is small.
|
8 |
|
|
|
9 |
|
|
2001-03-15 Hugo Tyson
|
10 |
|
|
|
11 |
|
|
* cdl/nano_eth_drivers.cdl: New component defined here because
|
12 |
|
|
it's platform dependent whether it's relevent, to control
|
13 |
|
|
additional variables in RedBoot's flash config system.
|
14 |
|
|
(CYGPKG_DEVS_ETH_I82559_ETH_REDBOOT_HOLDS_ESA): the new component.
|
15 |
|
|
(CYGVAR_DEVS_ETH_I82559_ETH_REDBOOT_HOLDS_ESA_ETH0): and so on,
|
16 |
|
|
control whether we create flash config variables here.
|
17 |
|
|
|
18 |
|
|
* include/devs_eth_nano.inl: Define flash config variables, and
|
19 |
|
|
macro to access them from the generic driver, called
|
20 |
|
|
CYGHWR_DEVS_ETH_INTEL_I82559_GET_ESA(p_i82559,mac_address,ok).
|
21 |
|
|
|
22 |
|
|
2001-03-13 Hugo Tyson
|
23 |
|
|
|
24 |
|
|
* cdl/nano_eth_drivers.cdl (CYGPKG_DEVS_ETH_ARM_NANO_ETH1):
|
25 |
|
|
enabled by default; full demux ability now supported in generic
|
26 |
|
|
device.
|
27 |
|
|
|
28 |
|
|
2001-03-12 Hugo Tyson
|
29 |
|
|
|
30 |
|
|
* cdl/nano_eth_drivers.cdl (CYGPKG_DEVS_ETH_ARM_NANO_ETH1):
|
31 |
|
|
disabled by default. The DEMUXing stuff for dealing with the fact
|
32 |
|
|
that both devices are connected to GPIO0 is incomplete in the
|
33 |
|
|
generic driver.
|
34 |
|
|
|
35 |
|
|
* include/devs_eth_nano.inl: Add additional macros to get
|
36 |
|
|
platform-required behaviour:
|
37 |
|
|
(CYGHWR_DEVS_ETH_INTEL_I82559_MISSED_INTERRUPT): Poll for a missed
|
38 |
|
|
interrupt by examining the level-attached GPIO lines.
|
39 |
|
|
(CYGHWR_DEVS_ETH_INTEL_I82559_RESET_TIMEOUT):
|
40 |
|
|
(CYGHWR_DEVS_ETH_INTEL_I82559_TIMEOUT_FIRED): Set and test timing
|
41 |
|
|
compared to the ever-incrementing system OS timer *SA11X0_OSCR.
|
42 |
|
|
(CYGPRI_DEVS_ETH_INTEL_I82559_MASK_INTERRUPTS):
|
43 |
|
|
(CYGPRI_DEVS_ETH_INTEL_I82559_UNMASK_INTERRUPTS):
|
44 |
|
|
(CYGPRI_DEVS_ETH_INTEL_I82559_ACK_INTERRUPTS): Rename local
|
45 |
|
|
interrupt handing macros.
|
46 |
|
|
|
47 |
|
|
2001-03-01 Hugo Tyson
|
48 |
|
|
|
49 |
|
|
* include/devs_eth_nano.inl: New file.
|
50 |
|
|
* cdl/nano_eth_drivers.cdl: New file.
|
51 |
|
|
Platform specific information required to use the generic i82559
|
52 |
|
|
driver for the BSE nanoEngine/nanoBridge SA1110 platform.
|
53 |
|
|
This requires more configurability of the generic i82559
|
54 |
|
|
introduced on the same date.
|
55 |
|
|
|
56 |
|
|
//===========================================================================
|
57 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
58 |
|
|
// -------------------------------------------
|
59 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
60 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
61 |
|
|
//
|
62 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
63 |
|
|
// the terms of the GNU General Public License as published by the Free
|
64 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
65 |
|
|
//
|
66 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
67 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
68 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
69 |
|
|
// for more details.
|
70 |
|
|
//
|
71 |
|
|
// You should have received a copy of the GNU General Public License along
|
72 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
73 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
74 |
|
|
//
|
75 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
76 |
|
|
// or inline functions from this file, or you compile this file and link it
|
77 |
|
|
// with other works to produce a work based on this file, this file does not
|
78 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
79 |
|
|
// License. However the source code for this file must still be made available
|
80 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
81 |
|
|
//
|
82 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
83 |
|
|
// this file might be covered by the GNU General Public License.
|
84 |
|
|
//
|
85 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
86 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
87 |
|
|
// -------------------------------------------
|
88 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
89 |
|
|
//===========================================================================
|