OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [devs/] [eth/] [mips/] [vrc4375/] [v2_0/] [include/] [devs_eth_vrc4375.inl] - Blame information for rev 27

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      devs/eth/mips/vrc4375/..../include/devs_eth_vrc4375.inl
4
//
5
//      vrc4375 ethernet I/O definitions.
6
//
7
//==========================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):    hmt
44
// Contributors:
45
// Date:         2001-09-17
46
// Purpose:      vrc4375 ethernet defintions
47
//####DESCRIPTIONEND####
48
//==========================================================================
49
 
50
// --------------------------------------------------------------
51
// Construct the interface
52
 
53
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH0
54
 
55
static I21143 i21143_eth0_priv_data = {
56
#ifdef CYGSEM_DEVS_ETH_MIPS_VRC4375_ETH0_SET_ESA
57
    hardwired_esa: 1,
58
    mac_address: CYGDAT_DEVS_ETH_MIPS_VRC4375_ETH0_ESA
59
#else
60
    hardwired_esa: 0,
61
#endif
62
};
63
 
64
ETH_DRV_SC(i21143_sc0,
65
           &i21143_eth0_priv_data,      // Driver specific data
66
           CYGDAT_DEVS_ETH_MIPS_VRC4375_ETH0_NAME, // Name for device
67
           i21143_start,
68
           i21143_stop,
69
           i21143_ioctl,
70
           i21143_can_send,
71
           i21143_send,
72
           i21143_recv,
73
           i21143_deliver,
74
           i21143_poll,
75
           i21143_int_vector
76
    );
77
 
78
NETDEVTAB_ENTRY(i21143_netdev0,
79
                "i21143_" CYGDAT_DEVS_ETH_MIPS_VRC4375_ETH0_NAME,
80
                i21143_init,
81
                &i21143_sc0);
82
 
83
#endif // CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH0
84
 
85
// --------------------------------------------------------------
86
// These arrays are used for sanity checking of pointers
87
I21143 *
88
i21143_priv_array[CYGNUM_DEVS_ETH_INTEL_I21143_DEV_COUNT] = {
89
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH0
90
    &i21143_eth0_priv_data,
91
#endif
92
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH1
93
    &i21143_eth1_priv_data,
94
#endif
95
};
96
 
97
#ifdef CYGDBG_USE_ASSERTS
98
// These are only used when assertions are enabled
99
cyg_netdevtab_entry_t *
100
i21143_netdev_array[CYGNUM_DEVS_ETH_INTEL_I21143_DEV_COUNT] = {
101
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH0
102
    &i21143_netdev0,
103
#endif
104
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH1
105
    &i21143_netdev1,
106
#endif
107
};
108
 
109
struct eth_drv_sc *
110
i21143_sc_array[CYGNUM_DEVS_ETH_INTEL_I21143_DEV_COUNT] = {
111
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH0
112
    &i21143_sc0,
113
#endif
114
#ifdef CYGPKG_DEVS_ETH_MIPS_VRC4375_ETH1
115
    &i21143_sc1,
116
#endif
117
};
118
#endif // CYGDBG_USE_ASSERTS
119
 
120
// --------------------------------------------------------------
121
// Debugging
122
 
123
//#define CYGDBG_DEVS_ETH_INTEL_I21143_CHATTER 1
124
 
125
// --------------------------------------------------------------
126
 
127
// EOF devs_eth_vrc4375.inl

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.