]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/xsengine/v2_0/include/devs_eth_xsengine.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / arm / xsengine / v2_0 / include / devs_eth_xsengine.inl
1 //==========================================================================
2 //
3 //
4 //      XSEngine ethernet I/O definitions.
5 //
6 //==========================================================================
7 //####ECOSGPLCOPYRIGHTBEGIN####
8 // -------------------------------------------
9 // This file is part of eCos, the Embedded Configurable Operating System.
10 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
11 // Copyright (C) 2003 Nick Garnett 
12 // Copyright (C) 2005 eCosCentric Ltd
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 // -------------------------------------------
38 //####ECOSGPLCOPYRIGHTEND####
39 //==========================================================================
40 //#####DESCRIPTIONBEGIN####
41 //
42 // Author(s):    Kurt Stremerch
43 // Contributors: Jordi Colomer, nickg
44 // Date:         2005-02-23
45 // Purpose:      XSEngine ethernet definitions
46 //####DESCRIPTIONEND####
47 //==========================================================================
48
49 #include <pkgconf/system.h>
50 #include <pkgconf/devs_eth_arm_xscale_xsengine.h>
51 #include <cyg/hal/hal_intr.h>          
52
53 #ifdef CYGPKG_REDBOOT
54 # include <pkgconf/redboot.h>
55 # ifdef CYGSEM_REDBOOT_FLASH_CONFIG
56 #  include <redboot.h>
57 #  include <flash_config.h>
58 # endif
59 #endif
60
61 #define LAN91CXX_IS_LAN91C111
62 #define CYGNUM_DEVS_ETH_SMSC_LAN91CXX_SHIFT_ADDR 1
63
64 #ifdef CYGPKG_DEVS_ETH_XSENGINE_ETH0
65
66 #if defined(CYGPKG_REDBOOT) && defined(CYGSEM_REDBOOT_FLASH_CONFIG)
67 RedBoot_config_option("Set " CYGDAT_DEVS_ETH_XSENGINE_ETH0_NAME " network hardware address [MAC]",
68                        eth0_esa,
69                        ALWAYS_ENABLED, true,
70                        CONFIG_BOOL, false
71 );
72 RedBoot_config_option(CYGDAT_DEVS_ETH_XSENGINE_ETH0_NAME " network hardware address [MAC]",
73                        eth0_esa_data,
74                        "eth0_esa", true,
75                        CONFIG_ESA, 0
76 );
77 #endif // CYGPKG_REDBOOT && CYGSEM_REDBOOT_FLASH_CONFIG
78
79 #ifdef CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
80 // Note that this section *is* active in an application, outside RedBoot,
81 // where the above section is not included.
82
83 # include <cyg/hal/hal_if.h>
84
85 # ifndef CONFIG_ESA
86 #  define CONFIG_ESA (6)
87 # endif
88 # ifndef CONFIG_BOOL
89 #  define CONFIG_BOOL (1)
90 # endif
91
92 cyg_bool
93 _xsengine_provide_eth0_esa(struct lan91cxx_priv_data* cpd)
94 {
95     cyg_bool set_esa;
96     int ok;
97     ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,
98                                       "eth0_esa", &set_esa, CONFIG_BOOL);
99     if (ok && set_esa) {
100         ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,
101                                           "eth0_esa_data", cpd->enaddr, CONFIG_ESA);
102     }
103     return ok && set_esa;
104 }
105
106 #endif // CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
107
108 static lan91cxx_priv_data lan91cxx_eth0_priv_data = { 
109     base : (unsigned short *) 0x60000000,
110 #ifdef CYGSEM_DEVS_ETH_XSENGINE_ETH0_SET_ESA
111     enaddr        : CYGDAT_DEVS_ETH_XSENGINE_ETH0_ESA,
112     hardwired_esa : true,
113 #else
114     hardwired_esa : false,
115 #endif
116 #ifdef CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
117     provide_esa   : &_xsengine_provide_eth0_esa,
118 #else
119     provide_esa   : NULL,
120 #endif
121 };
122
123 ETH_DRV_SC(lan91cxx_sc,
124            &lan91cxx_eth0_priv_data,          // Driver specific data
125            CYGDAT_DEVS_ETH_XSENGINE_ETH0_NAME, // Name for device
126            lan91cxx_start,
127            lan91cxx_stop,
128            lan91cxx_control,
129            lan91cxx_can_send,
130            lan91cxx_send,
131            lan91cxx_recv,
132            lan91cxx_deliver,
133            lan91cxx_poll,
134            lan91cxx_int_vector
135 );
136
137 NETDEVTAB_ENTRY(lan91cxx_netdev, 
138                 "lan91cxx_" CYGDAT_DEVS_ETH_XSENGINE_ETH0_NAME,
139                 smsc_lan91cxx_init,
140                 &lan91cxx_sc);
141
142 #endif // CYGPKG_DEVS_ETH_XSENGINE_ETH0