]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/triton/v2_0/include/devs_eth_triton.inl
RedBoot TX53 Release 2012-02-15
[karo-tx-redboot.git] / packages / devs / eth / arm / triton / v2_0 / include / devs_eth_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 #include <pkgconf/system.h>
51 #include <pkgconf/devs_eth_arm_xscale_triton.h>
52 #include <cyg/hal/hal_intr.h>          
53 #include <cyg/hal/hal_triton.h>
54
55 #define CYGNUM_DEVS_ETH_SMSC_LAN91C111_SHIFT_ADDR    0
56
57 // MAC address is stored as a Redboot config option
58 #ifdef CYGPKG_REDBOOT
59 #include <pkgconf/redboot.h>
60 #ifdef CYGSEM_REDBOOT_FLASH_CONFIG
61 #include <redboot.h>
62 #include <flash_config.h>
63 #include <cyg/hal/triton_1w_dev.inl>
64
65
66
67
68
69 // ESA (Ethernet Station Address), when constant
70 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA
71 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA
72         static unsigned char static_esa[] = CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_ESA;
73 #endif
74 #endif
75
76
77
78
79
80 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA
81 RedBoot_config_option("Network hardware address [MAC]",
82                       triton_esa,
83                       ALWAYS_ENABLED, true,
84                       CONFIG_ESA, (unsigned long long)0x000000c60c00
85     );
86 #endif    
87     
88     
89     
90     
91 #endif
92 #endif
93
94
95
96
97
98
99 // ESA address fetch function
100 cyg_bool triton_get_ESA(struct lan91c111_priv_data *cpd)
101 {
102 #if defined(CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA)
103         // fetch hardware address from 1-wire device
104         return get_esa_1w(cpd->enaddr);
105         
106         
107         
108     // Fetch hardware address from RedBoot config
109 #elif defined(CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA)
110         #if defined(CYGPKG_REDBOOT) && defined(CYGSEM_REDBOOT_FLASH_CONFIG)
111         flash_get_config("triton_esa", cpd->enaddr, CONFIG_ESA);
112         return 1;
113         #else
114                 #error "No RedBoot flash configuration to store ESA"
115         #endif
116 #else
117     memcpy(cpd->enaddr, static_esa, 6);
118 #endif
119 }
120
121
122
123
124
125
126 static lan91c111_priv_data lan91c111_eth0_priv_data = { 
127
128     config_enaddr : triton_get_ESA,
129 #ifndef CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA    
130     enaddr: CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_ESA,
131 #endif
132     base : (unsigned short *) SMC91C111_ETH_IOBASE,
133     interrupt : IRQ_GPIO_ETH 
134 };
135
136 ETH_DRV_SC(lan91c111_sc,
137            &lan91c111_eth0_priv_data,          // Driver specific data
138            CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_NAME, // Name for device
139            lan91c111_start,
140            lan91c111_stop,
141            lan91c111_control,
142            lan91c111_can_send,
143            lan91c111_send,
144            lan91c111_recv,
145            lan91c111_deliver,
146            lan91c111_poll,
147            lan91c111_int_vector
148 );
149
150 NETDEVTAB_ENTRY(lan91c111_netdev, 
151                 "lan91c111_" CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_NAME,
152                 smsc_lan91c111_init,
153                 &lan91c111_sc);
154
155 //EOF devs_eth_triton.inl
156
157