]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/ixdp425/i82559/v2_0/cdl/ixdp425_i82559_eth_driver.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / arm / ixdp425 / i82559 / v2_0 / cdl / ixdp425_i82559_eth_driver.cdl
1 # ====================================================================
2 #
3 #       ixdp425_i82559_eth_driver.cdl
4 #
5 #       Ethernet driver
6 #       IXDP425 and Intel PRO/100+ platform specific support
7 #
8 # ====================================================================
9 #####ECOSGPLCOPYRIGHTBEGIN####
10 ## -------------------------------------------
11 ## This file is part of eCos, the Embedded Configurable Operating System.
12 ## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc.
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):      
45 # Original data:  hmt
46 # Contributors:   gthomas
47 # Date:           2002-04-01
48 #
49 #####DESCRIPTIONEND####
50 #
51 # ====================================================================
52
53 cdl_package CYGPKG_DEVS_ETH_ARM_IXDP425_I82559 {
54     display       "IXDP425 with Intel PRO/100+ (PCI) ethernet driver"
55     parent        CYGPKG_IO_ETH_DRIVERS
56     active_if     CYGPKG_IO_ETH_DRIVERS
57     active_if     CYGPKG_HAL_ARM_XSCALE_IXDP425
58
59     include_dir   cyg/io
60
61     # FIXME: This really belongs in the INTEL_I82559 package
62     cdl_interface CYGINT_DEVS_ETH_INTEL_I82559_REQUIRED {
63         display   "Intel i82559 ethernet driver required"
64     }
65
66     define_proc {
67         puts $::cdl_system_header "/***** ethernet driver proc output start *****/"
68         puts $::cdl_system_header "#define CYGDAT_DEVS_ETH_INTEL_I82559_INL <cyg/io/ixdp425_i82559.inl>"
69  
70         puts $::cdl_system_header "#define CYGDAT_DEVS_ETH_INTEL_I82559_CFG <pkgconf/devs_eth_arm_ixdp425_i82559.h>"
71
72         puts $::cdl_system_header "/*****  ethernet driver proc output end  *****/"
73     }
74
75
76     cdl_component CYGPKG_DEVS_ETH_ARM_IXDP425_I82559_ETH0 {
77         display       "IXDP425 ethernet port driver for an I82559-based ethernet NIC card"
78         flavor        bool
79         default_value 1
80         description   "
81             This option includes the IXDP425 ethernet device driver for a
82             I82559-based ethernet PCI card."
83
84         implements CYGHWR_NET_DRIVERS
85         implements CYGHWR_NET_DRIVER_ETH0
86         implements CYGINT_DEVS_ETH_INTEL_I82559_REQUIRED
87
88         cdl_option CYGDAT_DEVS_ETH_ARM_IXDP425_I82559_ETH0_NAME {
89             display       "Device name for the ETH0 ethernet port driver"
90             flavor        data
91             default_value {"\"eth0\""}
92             description   "
93                 This option sets the name of the ethernet device for a
94                 I82559-based ethernet NIC card."
95         }
96     }
97
98
99     # note that this option's name is NOT ixdp-specific, but i82559
100     # generic - other instantiations can set these also.
101     cdl_component CYGPKG_DEVS_ETH_I82559_ETH_REDBOOT_HOLDS_ESA {
102         display         "RedBoot manages ESA initialization data"
103         flavor          bool
104         default_value   0
105
106         active_if     CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
107
108         description   "Enabling this option will allow the ethernet
109         station address to be acquired from RedBoot's configuration data,
110         stored in flash memory.  It can be overridden individually by the
111         'Set the ethernet station address' option for each interface."
112
113         cdl_component CYGPKG_DEVS_ETH_I82559_ETH_REDBOOT_HOLDS_ESA_VARS {
114             display        "Build-in flash config fields for ESAs"
115             flavor         bool
116             default_value  1
117
118             active_if       CYGPKG_REDBOOT
119             active_if       CYGPKG_REDBOOT_FLASH
120             active_if       CYGSEM_REDBOOT_FLASH_CONFIG
121             active_if       CYGPKG_REDBOOT_NETWORKING
122
123             description "
124             This option controls the presence of RedBoot flash
125             configuration fields for the ESAs of the interfaces when you
126             are building RedBoot.  It is independent of whether RedBoot
127             itself uses the network or any particular interface; this
128             support is more for the application to use than for RedBoot
129             itself, though the application gets at the data by vector
130             calls; this option cannot be enabled outside of building
131             RedBoot."
132         
133             cdl_option CYGVAR_DEVS_ETH_I82559_ETH_REDBOOT_HOLDS_ESA_ETH0 {
134                 display         "RedBoot manages ESA for eth0"
135                 flavor          bool
136                 default_value   1
137             }
138
139             cdl_option CYGDAT_DEVS_ETH_ARM_IXDP425_ETH0_DEFAULT_ESA {
140                 display       "The ethernet station address"
141                 flavor        data
142                 default_value {"{0x00, 0x03, 0x47, 0xdf, 0x32, 0xa8}"}
143                 description   "The default ethernet station address. This is the
144                                address used as the default value in the RedBoot
145                                flash configuration field."
146             }
147         }
148     }
149 }
150