]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/frv/cb70/v2_0/include/cb70_eth_driver.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / frv / cb70 / v2_0 / include / cb70_eth_driver.inl
1 //==========================================================================
2 //
3 //      cb70_eth_drivers.inl
4 //
5 //      cb70's DM9000 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, 2003 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):   
44 // Contributors:msalter
45 // Date:        2004-03-22
46 // Purpose:     dm9000 ethernet definitions
47 //####DESCRIPTIONEND####
48 //==========================================================================
49
50 #include <cyg/hal/hal_intr.h>           // CYGNUM_HAL_INTERRUPT_ETHERNET
51 #include <cyg/hal/hal_cache.h>          // HAL_DCACHE_LINE_SIZE
52 #include <cyg/hal/plf_io.h>             // CYGARC_UNCACHED_ADDRESS
53
54 extern int cyg_hal_dm9000_present(void);
55
56 #define CYG_HAL_DM9000_PRESENT() cyg_hal_dm9000_present()
57
58 #ifdef CYGPKG_DEVS_ETH_FRV_CB70_ETH0
59
60 static struct dm9000 dm9000_eth0_priv_data = {
61 #if defined(CYGPKG_REDBOOT) && defined(CYGVAR_ETH_DM9000_REDBOOT_HOLDS_ESA_ETH0)
62     mac_address: CYGDAT_DEVS_ETH_FRV_CB70_ETH0_DEFAULT_ESA,
63 #endif
64     io_addr: (volatile unsigned char *)0xf0600300,
65     io_data: (volatile unsigned char *)0xf0600304
66 };
67
68 ETH_DRV_SC(dm9000_sc0,
69            &dm9000_eth0_priv_data,      // Driver specific data
70            CYGDAT_DEVS_ETH_FRV_CB70_ETH0_NAME, // Name for device
71            dm9000_start,
72            dm9000_stop,
73            dm9000_ioctl,
74            dm9000_can_send,
75            dm9000_send,
76            dm9000_recv,
77            dm9000_deliver,
78            dm9000_poll,
79            dm9000_int_vector
80     );
81
82 NETDEVTAB_ENTRY(dm9000_netdev0, 
83                 "dm9000_" CYGDAT_DEVS_ETH_FRV_CB70_ETH0_NAME,
84                 dm9000_init, 
85                 &dm9000_sc0);
86 #endif // CYGPKG_DEVS_ETH_FRV_CB70_ETH0
87
88
89 // These arrays are used for sanity checking of pointers
90 struct dm9000 *
91 dm9000_priv_array[CYGNUM_DEVS_ETH_DAVICOM_DM9000_DEV_COUNT] = {
92 #ifdef CYGPKG_DEVS_ETH_FRV_CB70_ETH0
93     &dm9000_eth0_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 dm9000_netdev_array[CYGNUM_DEVS_ETH_DAVICOM_DM9000_DEV_COUNT] = {
101 #ifdef CYGPKG_DEVS_ETH_FRV_CB70_ETH0
102     &dm9000_netdev0,
103 #endif
104 };
105
106 struct eth_drv_sc *
107 dm9000_sc_array[CYGNUM_DEVS_ETH_DAVICOM_DM9000_DEV_COUNT] = {
108 #ifdef CYGPKG_DEVS_ETH_FRV_CB70_ETH0
109     &dm9000_sc0,
110 #endif
111 };
112 #endif // CYGDBG_USE_ASSERTS
113
114 // --------------------------------------------------------------
115 // RedBoot configuration options for managing ESAs for us
116
117 // Decide whether to have redboot config vars for it...
118 #ifdef CYGPKG_REDBOOT
119 #include <pkgconf/redboot.h>
120 #ifdef CYGSEM_REDBOOT_FLASH_CONFIG
121 #ifdef CYGPKG_REDBOOT_NETWORKING
122 #include <redboot.h>
123 #include <flash_config.h>
124
125 #ifdef CYGVAR_DEVS_ETH_DM9000_REDBOOT_HOLDS_ESA_ETH0
126 RedBoot_config_option("Network hardware address [MAC] for eth0",
127                       eth0_esa,
128                       ALWAYS_ENABLED, true,
129                       CONFIG_ESA, dm9000_eth0_priv_data.mac_address
130     );
131 #endif
132
133 #endif  // CYGPKG_REDBOOT_NETWORKING
134 #endif  // CYGSEM_REDBOOT_FLASH_CONFIG
135 #endif  // CYGPKG_REDBOOT
136
137 // and initialization code to read them
138 // - independent of whether we are building RedBoot right now:
139 #ifdef CYGPKG_DEVS_ETH_DM9000_ETH_REDBOOT_HOLDS_ESA
140
141 #include <cyg/hal/hal_if.h>
142
143 #ifndef CONFIG_ESA
144 #define CONFIG_ESA (6)
145 #endif
146
147 #define CYGHWR_DEVS_ETH_DAVICOM_DM9000_GET_ESA( p_dm9000, mac_address, ok )       \
148 CYG_MACRO_START                                                                 \
149     ok = false;                                                                 \
150     if ( 0 == p_dm9000->index )                                                 \
151         ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,         \
152                                           "eth0_esa", mac_address, CONFIG_ESA); \
153     else if ( 1 == p_dm9000->index )                                            \
154         ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,         \
155                                           "eth1_esa", mac_address, CONFIG_ESA); \
156 CYG_MACRO_END
157
158 #endif // CYGPKG_DEVS_ETH_DM9000_ETH_REDBOOT_HOLDS_ESA