]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/smsc/lan91cxx/v2_0/cdl/smsc_lan91cxx_eth_drivers.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / devs / eth / smsc / lan91cxx / v2_0 / cdl / smsc_lan91cxx_eth_drivers.cdl
1 # ====================================================================
2 #
3 #      smsc_lan91cxx_eth_drivers.cdl
4 #
5 #      Ethernet drivers - support for LAN91CXX compatible ethernet controllers
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 ## Copyright (C) 2004 Andrew Lunn
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):      gthomas
45 # Contributors:   gthomas, jskov
46 # Date:           2000-11-22
47 #
48 #####DESCRIPTIONEND####
49 #
50 # ====================================================================
51
52 cdl_package CYGPKG_DEVS_ETH_SMSC_LAN91CXX {
53     display       "SMSC LAN91CXX compatible ethernet driver"
54     description   "Ethernet driver for SMSC LAN91CXX compatible controllers."
55
56     parent        CYGPKG_IO_ETH_DRIVERS
57     active_if     CYGPKG_IO_ETH_DRIVERS
58
59     active_if     CYGINT_DEVS_ETH_SMSC_LAN91CXX_REQUIRED
60
61     include_dir   .
62     include_files ; # none _exported_ whatsoever
63     compile       -library=libextras.a if_lan91cxx.c
64
65     define_proc {
66         puts $::cdl_header "#include <pkgconf/system.h>";
67         puts $::cdl_header "#include CYGDAT_DEVS_ETH_SMSC_LAN91CXX_CFG";
68     }
69
70     cdl_option CYGSEM_DEVS_ETH_SMSC_LAN91CXX_WRITE_EEPROM {
71         display "SIOCSIFHWADDR records ESA (MAC address) in EEPROM"
72         default_value 0
73         description   "
74             The ioctl() socket call with operand SIOCSIFHWADDR sets the
75             interface hardware address - the MAC address or Ethernet Station
76             Address (ESA).  This option causes the new MAC address to be written
77             into the EEPROM associated with the interface, so that the new
78             MAC address is permanently recorded.  Doing this should be a
79             carefully chosen decision, hence this option."
80     }
81
82     cdl_option CYGNUM_DEVS_ETH_SMSC_LAN91CXX_INT_PRIO {
83         display "Interrupt priority when registering interrupt handler"
84         flavor  data
85         default_value 3
86         description "
87             When registering the interrupt handler this specifies the 
88             priority of the interrupt. Some hardware platforms require
89             values other than the default given here. Such platforms
90             can then override this value in the hardware specific package. "
91     }
92
93     cdl_interface CYGINT_DEVS_ETH_SMSC_LAN91CXX_STATIC_ESA {
94         display "ESA is statically configured"
95         description "
96             If this is nonzero, then the ESA (MAC address) is statically
97             configured in the platform-specific package which instantiates
98             this driver with all its details.
99
100             Note that use of this option is deprecated in favor of a
101             CYGSEM_DEVS_ETH_..._SET_ESA option in the platform specific
102             driver."
103     }
104
105     cdl_interface CYGINT_DEVS_ETH_SMSC_LAN91CXX_PCMCIA_MODE {
106         display "Chip is wired in PCMCIA mode"
107         description "
108             If this is nonzero, then the chip is assumed to be hardware
109             configured in PCMCIA mode."
110     }
111
112     cdl_component CYGPKG_DEVS_ETH_SMSC_LAN91CXX_OPTIONS {
113         display "LAN91CXX ethernet driver build options"
114         flavor  none
115         no_define
116
117         cdl_option CYGPKG_DEVS_ETH_SMSC_LAN91CXX_CFLAGS_ADD {
118             display "Additional compiler flags"
119             flavor  data
120             no_define
121             default_value { "-D_KERNEL -D__ECOS" }
122             description   "
123                 This option modifies the set of compiler flags for
124                 building the LAN91CXX ethernet driver package.
125                 These flags are used in addition
126                 to the set of global flags."
127         }
128     }
129 }