]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/frv/cb70/v2_0/cdl/cb70_eth_driver.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / frv / cb70 / v2_0 / cdl / cb70_eth_driver.cdl
1 # ====================================================================
2 #
3 #       cb70_eth_driver.cdl
4 #
5 #       Ethernet driver
6 #       CB70 w/DM9000 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:  msalter
46 # Contributors:   
47 # Date:           2004-03-22
48 #
49 #####DESCRIPTIONEND####
50 #
51 # ====================================================================
52
53 cdl_package CYGPKG_DEVS_ETH_FRV_CB70 {
54     display       "cb70 CPU board with Davicom DM9000 ethernet driver"
55     parent        CYGPKG_IO_ETH_DRIVERS
56     active_if     CYGPKG_IO_ETH_DRIVERS
57     active_if     CYGPKG_HAL_FRV_MB93091
58
59     include_dir   cyg/io
60
61     # FIXME: This really belongs in the DM9000 package
62     cdl_interface CYGINT_DEVS_ETH_DAVICOM_DM9000_REQUIRED {
63         display   "Davicom DM9000 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_DAVICOM_DM9000_INL <cyg/io/cb70_eth_driver.inl>"
69  
70         puts $::cdl_system_header "#define CYGDAT_DEVS_ETH_DAVICOM_DM9000_CFG <pkgconf/devs_eth_frv_cb70.h>"
71
72         puts $::cdl_system_header "/*****  ethernet driver proc output end  *****/"
73     }
74
75
76     cdl_component CYGPKG_DEVS_ETH_FRV_CB70_ETH0 {
77         display       "cb70 ethernet port driver for builtin Davicom DM9000"
78         flavor        bool
79         default_value 1
80         description   "
81             This option includes the Davicom DM9000 ethernet device driver for a
82             CB70 CPU board."
83
84         implements CYGHWR_NET_DRIVERS
85         implements CYGHWR_NET_DRIVER_ETH0
86         implements CYGINT_DEVS_ETH_DAVICOM_DM9000_REQUIRED
87
88         cdl_option CYGDAT_DEVS_ETH_FRV_CB70_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                 DM9000-based CB70 CPU card."
95         }
96     }
97
98
99     cdl_component CYGPKG_DEVS_ETH_DM9000_ETH_REDBOOT_HOLDS_ESA {
100         display         "RedBoot manages ESA initialization data"
101         flavor          bool
102         default_value   0
103
104         active_if     CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
105
106         description   "Enabling this option will allow the ethernet
107         station address to be acquired from RedBoot's configuration data,
108         stored in flash memory.  It can be overridden individually by the
109         'Set the ethernet station address' option for each interface."
110
111         cdl_component CYGPKG_DEVS_ETH_DM9000_ETH_REDBOOT_HOLDS_ESA_VARS {
112             display        "Build-in flash config fields for ESAs"
113             flavor         bool
114             default_value  0
115
116             active_if       CYGPKG_REDBOOT
117             active_if       CYGPKG_REDBOOT_FLASH
118             active_if       CYGSEM_REDBOOT_FLASH_CONFIG
119             active_if       CYGPKG_REDBOOT_NETWORKING
120
121             description "
122             This option controls the presence of RedBoot flash
123             configuration fields for the ESAs of the interfaces when you
124             are building RedBoot.  It is independent of whether RedBoot
125             itself uses the network or any particular interface; this
126             support is more for the application to use than for RedBoot
127             itself, though the application gets at the data by vector
128             calls; this option cannot be enabled outside of building
129             RedBoot."
130         
131             cdl_option CYGVAR_ETH_DM9000_REDBOOT_HOLDS_ESA_ETH0 {
132                 display         "RedBoot manages ESA for eth0"
133                 flavor          bool
134                 default_value   0
135             }
136
137             cdl_option CYGDAT_DEVS_ETH_FRV_CB70_ETH0_DEFAULT_ESA {
138                 display       "The ethernet station address"
139                 flavor        data
140                 default_value {"{0x00, 0x03, 0x47, 0xdf, 0x32, 0xa8}"}
141                 description   "The default ethernet station address. This is the
142                                address used as the default value in the RedBoot
143                                flash configuration field."
144             }
145         }
146     }
147 }
148