]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/npwr/v2_0/include/devs_eth_npwr.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / arm / npwr / v2_0 / include / devs_eth_npwr.inl
1 //==========================================================================
2 //
3 //      devs/eth/arm/npwr/include/devs_eth_arm_npwr.inl
4 //
5 //      NPWR 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 // Copyright (C) 2002 Gary Thomas
13 //
14 // eCos is free software; you can redistribute it and/or modify it under
15 // the terms of the GNU General Public License as published by the Free
16 // Software Foundation; either version 2 or (at your option) any later version.
17 //
18 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 // for more details.
22 //
23 // You should have received a copy of the GNU General Public License along
24 // with eCos; if not, write to the Free Software Foundation, Inc.,
25 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 //
27 // As a special exception, if other files instantiate templates or use macros
28 // or inline functions from this file, or you compile this file and link it
29 // with other works to produce a work based on this file, this file does not
30 // by itself cause the resulting work to be covered by the GNU General Public
31 // License. However the source code for this file must still be made available
32 // in accordance with section (3) of the GNU General Public License.
33 //
34 // This exception does not invalidate any other reasons why a work based on
35 // this file might be covered by the GNU General Public License.
36 //
37 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
38 // at http://sources.redhat.com/ecos/ecos-license/
39 // -------------------------------------------
40 //####ECOSGPLCOPYRIGHTEND####
41 //==========================================================================
42 //#####DESCRIPTIONBEGIN####
43 //
44 // Author(s):   msalter
45 // Contributors:msalter, gthomas
46 // Date:        2002-01-10
47 // Purpose:     NPWR ethernet defintions
48 //####DESCRIPTIONEND####
49 //==========================================================================
50
51 #include <cyg/hal/hal_intr.h>           // CYGNUM_HAL_INTERRUPT_ETHERNET
52 #include <cyg/hal/hal_cache.h>          // HAL_DCACHE_LINE_SIZE
53 #include <cyg/hal/hal_io.h>             // CYGARC_UNCACHED_ADDRESS
54
55 #ifdef CYGPKG_DEVS_ETH_ARM_NPWR_I82544_ETH0
56
57 // Use auto speed detection
58 #define CYGHWR_DEVS_ETH_INTEL_I82544_USE_ASD
59
60 #define CYGHWR_INTEL_I82544_PCI_VIRT_TO_BUS( _x_ ) ((cyg_uint32)CYGARC_VIRT_TO_BUS(_x_))
61 #define CYGHWR_INTEL_I82544_PCI_BUS_TO_VIRT( _x_ ) ((cyg_uint32)CYGARC_BUS_TO_VIRT(_x_))
62
63 #define MAX_PACKET_SIZE   1536
64 #define SIZEOF_DESCRIPTOR 16
65
66 #define CYGHWR_INTEL_I82544_PCI_MEM_MAP_SIZE \
67   (((MAX_PACKET_SIZE + SIZEOF_DESCRIPTOR) * \
68      (MAX_TX_DESCRIPTORS + MAX_RX_DESCRIPTORS)) + 64)
69
70 static char pci_mem_buffer[CYGHWR_INTEL_I82544_PCI_MEM_MAP_SIZE + HAL_DCACHE_LINE_SIZE];
71
72 #define CYGHWR_INTEL_I82544_PCI_MEM_MAP_BASE \
73   (CYGARC_UNCACHED_ADDRESS(((unsigned)pci_mem_buffer + HAL_DCACHE_LINE_SIZE - 1) & ~(HAL_DCACHE_LINE_SIZE - 1)))
74
75 static I82544 i82544_eth0_priv_data = { 
76 #ifdef CYGSEM_DEVS_ETH_ARM_NPWR_I82544_ETH0_SET_ESA
77     hardwired_esa: 1,
78     mac_address: CYGDAT_DEVS_ETH_ARM_NPWR_I82544_ETH0_ESA
79 #else
80     hardwired_esa: 0,
81 #endif
82 };
83
84 ETH_DRV_SC(i82544_sc0,
85            &i82544_eth0_priv_data,      // Driver specific data
86            CYGDAT_DEVS_ETH_ARM_NPWR_I82544_ETH0_NAME, // Name for device
87            i82544_start,
88            i82544_stop,
89            i82544_ioctl,
90            i82544_can_send,
91            i82544_send,
92            i82544_recv,
93            i82544_deliver,
94            i82544_poll,
95            i82544_int_vector
96     );
97
98 NETDEVTAB_ENTRY(i82544_netdev0, 
99                 "i82544_" CYGDAT_DEVS_ETH_ARM_NPWR_I82544_ETH0_NAME,
100                 i82544_init, 
101                 &i82544_sc0);
102
103 #endif // CYGPKG_DEVS_ETH_ARM_NPWR_I82544_ETH0
104
105
106 // These arrays are used for sanity checking of pointers
107 I82544 *
108 i82544_priv_array[CYGNUM_DEVS_ETH_INTEL_I82544_DEV_COUNT] = {
109 #ifdef CYGPKG_DEVS_ETH_ARM_NPWR_I82544_ETH0
110     &i82544_eth0_priv_data,
111 #endif
112 };
113
114 #ifdef CYGDBG_USE_ASSERTS
115 // These are only used when assertions are enabled
116 cyg_netdevtab_entry_t *
117 i82544_netdev_array[CYGNUM_DEVS_ETH_INTEL_I82544_DEV_COUNT] = {
118 #ifdef CYGPKG_DEVS_ETH_ARM_NPWR_I82544_ETH0
119     &i82544_netdev0,
120 #endif
121 };
122
123 struct eth_drv_sc *
124 i82544_sc_array[CYGNUM_DEVS_ETH_INTEL_I82544_DEV_COUNT] = {
125 #ifdef CYGPKG_DEVS_ETH_ARM_NPWR_I82544_ETH0
126     &i82544_sc0,
127 #endif
128 };
129 #endif // CYGDBG_USE_ASSERTS
130
131 // EOF devs_eth_arm_npwr.inl