]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/triton/v2_0/include/devs_eth_cs8900a_triton.inl
RedBoot TX53 Release 2012-02-15
[karo-tx-redboot.git] / packages / devs / eth / arm / triton / v2_0 / include / devs_eth_cs8900a_triton.inl
1 //==========================================================================
2 //
3 //      devs/eth/arm/triton/..../include/devs_eth_triton.inl
4 //
5 //      Triton 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):    Jordi Colomer <jco@ict.es>, usteinkohl
44 // Contributors: Jordi Colomer, usteinkohl
45 // Date:         14th January 2003
46 // Purpose:      Triton ethernet definitions
47 //####DESCRIPTIONEND####
48 //==========================================================================
49
50 #ifdef __WANT_DEVS
51
52
53
54 #include <pkgconf/system.h>
55 #include <pkgconf/devs_eth_cl_cs8900_arm_xscale_triton.h>
56 #include <cyg/hal/hal_intr.h>          
57 #include <cyg/hal/hal_triton.h>
58
59 // MAC address is stored as a Redboot config option
60 #ifdef CYGPKG_REDBOOT
61 #include <pkgconf/redboot.h>
62 #ifdef CYGSEM_REDBOOT_FLASH_CONFIG
63 #include <redboot.h>
64 #include <flash_config.h>
65 #include <cyg/hal/triton_1w_dev.inl>
66
67
68
69
70
71
72
73
74 static __inline__ void 
75 post_reset(cyg_addrword_t base)
76 {
77         cyg_uint8       value;
78     // Toggle  SBHE (connected to DQM1) line on the Crystal chip.
79     HAL_WRITE_UINT8(base-0x100, 0);
80     HAL_WRITE_UINT8(base-0x101, 0);
81     HAL_WRITE_UINT8(base-0x102, 0);
82     HAL_WRITE_UINT8(base-0x103, 0);
83     HAL_READ_UINT8(base-0x100, value);          // dummy read
84     
85 }
86
87 #undef  CYGHWR_CL_CS8900A_PLF_POST_RESET
88 #define CYGHWR_CL_CS8900A_PLF_POST_RESET(base) post_reset(base)
89
90
91
92
93
94
95
96
97
98
99
100 // ESA (Ethernet Station Address), when constant
101 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA
102 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA
103         static unsigned char static_esa[] = CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_ESA;
104 #endif
105 #endif
106
107
108 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA
109 RedBoot_config_option("Network hardware address [MAC]",
110                       triton_esa,
111                       ALWAYS_ENABLED, true,
112                       CONFIG_ESA, (unsigned long long)0x000000c60c00
113     );
114 #endif    
115     
116     
117     
118     
119     
120     
121 #endif
122 #endif
123
124
125
126
127
128
129
130
131
132 // ESA address fetch function
133 cyg_bool triton_get_ESA(struct cs8900a_priv_data *cpd)
134 {
135 #if defined(CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA)
136         // fetch hardware address from 1-wire device
137         cpd->hardwired_esa = false;
138         return get_esa_1w(cpd->esa);
139         
140         
141         
142     // Fetch hardware address from RedBoot config
143 #elif defined(CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA)
144         #if defined(CYGPKG_REDBOOT) && defined(CYGSEM_REDBOOT_FLASH_CONFIG)
145         flash_get_config("triton_esa", cpd->esa, CONFIG_ESA);
146         return 1;
147         #else
148                 #error "No RedBoot flash configuration to store ESA"
149         #endif
150 #else
151     memcpy(cpd->esa, static_esa, 6);
152 #endif
153 }
154
155
156
157
158
159
160
161
162 static cs8900a_priv_data_t cs8900a_eth0_priv_data = { 
163
164     provide_esa : &triton_get_ESA,
165 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA    
166     esa: CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_ESA,
167     hardwired_esa : true,
168 #else
169     hardwired_esa : false,
170 #endif
171     base : (cyg_addrword_t) CS8900A_ETH_IOBASE,
172     interrupt : IRQ_GPIO_CS8900A 
173 };
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191 ETH_DRV_SC(cs8900a_sc,
192            &cs8900a_eth0_priv_data,          // Driver specific data
193            CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_NAME, // Name for device
194            cs8900a_start,
195            cs8900a_stop,
196            cs8900a_control,
197            cs8900a_can_send,
198            cs8900a_send,
199            cs8900a_recv,
200            cs8900a_deliver,
201            cs8900a_poll,
202            cs8900a_int_vector
203 );
204
205 NETDEVTAB_ENTRY(cs8900a_netdev, 
206                 "cs8900a_" CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_NAME,
207                 cs8900a_init,
208                 &cs8900a_sc);
209
210
211
212
213 #endif // __WANT_DEVS
214
215
216
217 //EOF devs_eth_triton.inl
218
219