]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/mips/atlas/v2_0/cdl/atlas_eth_drivers.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / mips / atlas / v2_0 / cdl / atlas_eth_drivers.cdl
1 # ====================================================================
2 #
3 #      atlas_eth_drivers.cdl
4 #
5 #      Ethernet drivers - platform dependent support for MIPS Atlas
6 #                         board using a Philips SAA9730 IO chip.
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 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):      msalter
45 # Original data:  msalter
46 # Contributors:
47 # Date:           2000-12-04
48 #
49 #####DESCRIPTIONEND####
50 #
51 # ====================================================================
52
53 cdl_package CYGPKG_DEVS_ETH_MIPS_ATLAS {
54     display       "MIPS Atlas ethernet driver"
55
56     parent        CYGPKG_IO_ETH_DRIVERS
57     active_if     CYGPKG_IO_ETH_DRIVERS
58     active_if     CYGPKG_HAL_MIPS_ATLAS
59
60     implements    CYGHWR_NET_DRIVERS
61     implements    CYGHWR_NET_DRIVER_ETH0
62     include_dir   .
63     include_files ; # none _exported_ whatsoever
64     description   "Ethernet driver for MIPS Atlas boards w/ SAA9730."
65     compile       -library=libextras.a if_atlas.c if_buffers.S
66
67     cdl_component CYGSEM_MIPS_ATLAS_SET_ESA {
68         display       "Set the ethernet station address"
69         flavor        bool
70         default_value 0
71         description   "Enabling this option will allow the ethernet
72           station address to be forced to the value set by the
73           configuration.  This may be required if the hardware does
74           not include a serial EEPROM for the ESA."
75
76         cdl_option CYGDAT_MIPS_ATLAS_ESA {
77           display       "The ethernet station address"
78           flavor        data
79           default_value {"{0x00, 0xd0, 0xa0, 0x00, 0x00, 0x10}"}
80           description   "The ethernet station address"
81         }
82     }
83
84     cdl_component CYGPKG_DEVS_ETH_MIPS_ATLAS_OPTIONS {
85         display "MIPS Atlas ethernet driver build options"
86         flavor  none
87         no_define
88
89         cdl_option CYGPKG_DEVS_ETH_MIPS_ATLAS_CFLAGS_ADD {
90             display "Additional compiler flags"
91             flavor  data
92             no_define
93             default_value { "-D_KERNEL -D__ECOS" }
94             description   "
95                 This option modifies the set of compiler flags for
96                 building the MIPS Atlas ethernet driver package.
97                 These flags are used in addition
98                 to the set of global flags."
99         }
100     }
101 }
102