]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/i386/pc/i82559/v2_0/include/devs_eth_i386_pc_i82559.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / i386 / pc / i82559 / v2_0 / include / devs_eth_i386_pc_i82559.inl
1 //==========================================================================
2 //
3 //      devs/eth/mips/ocelot/include/devs_eth_mips_rm7000_ocelot.inl
4 //
5 //      PC i82559 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):   jskov
44 // Contributors:jskov
45 // Date:        2001-01-25
46 // Purpose:     PC i82559 ethernet defintions
47 //####DESCRIPTIONEND####
48 //==========================================================================
49
50 #include <cyg/hal/hal_intr.h>           // CYGNUM_HAL_INTERRUPT_ETHR
51
52 #ifdef CYGPKG_DEVS_ETH_I386_PC_I82559_ETH0
53
54 #define CYGHWR_INTEL_I82559_PCI_MEM_MAP_BASE (CYGARC_UNCACHED_ADDRESS(CYGMEM_SECTION_pci_window))
55 #define CYGHWR_INTEL_I82559_PCI_MEM_MAP_SIZE CYGMEM_SECTION_pci_window_SIZE
56
57 static I82559 i82559_eth0_priv_data = { 
58 #ifdef CYGSEM_DEVS_ETH_I386_PC_I82559_ETH0_SET_ESA
59     hardwired_esa: 1,
60     mac_address: CYGDAT_DEVS_ETH_I386_PC_I82559_ETH0_ESA
61 #else
62     hardwired_esa: 0,
63 #endif
64 };
65
66 ETH_DRV_SC(i82559_sc0,
67            &i82559_eth0_priv_data,      // Driver specific data
68            CYGDAT_DEVS_ETH_I386_PC_I82559_ETH0_NAME, // Name for device
69            i82559_start,
70            i82559_stop,
71            i82559_ioctl,
72            i82559_can_send,
73            i82559_send,
74            i82559_recv,
75            i82559_deliver,
76            i82559_poll,
77            i82559_int_vector
78     );
79
80 NETDEVTAB_ENTRY(i82559_netdev0, 
81                 "i82559_" CYGDAT_DEVS_ETH_I386_PC_I82559_ETH0_NAME,
82                 i82559_init, 
83                 &i82559_sc0);
84
85 #endif // CYGPKG_DEVS_ETH_I386_PC_I82559_ETH0
86
87
88 // These arrays are used for sanity checking of pointers
89 I82559 *
90 i82559_priv_array[CYGNUM_DEVS_ETH_INTEL_I82559_DEV_COUNT] = {
91 #ifdef CYGPKG_DEVS_ETH_I386_PC_I82559_ETH0
92     &i82559_eth0_priv_data,
93 #endif
94 };
95
96 #ifdef CYGDBG_USE_ASSERTS
97 // These are only used when assertions are enabled
98 cyg_netdevtab_entry_t *
99 i82559_netdev_array[CYGNUM_DEVS_ETH_INTEL_I82559_DEV_COUNT] = {
100 #ifdef CYGPKG_DEVS_ETH_I386_PC_I82559_ETH0
101     &i82559_netdev0,
102 #endif
103 };
104
105 struct eth_drv_sc *
106 i82559_sc_array[CYGNUM_DEVS_ETH_INTEL_I82559_DEV_COUNT] = {
107 #ifdef CYGPKG_DEVS_ETH_I386_PC_I82559_ETH0
108     &i82559_sc0,
109 #endif
110 };
111 #endif // CYGDBG_USE_ASSERTS
112
113 // EOF devs_eth_i386_pc_i82559.inl