]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/phy/v2_0/cdl/phy_eth_drivers.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / phy / v2_0 / cdl / phy_eth_drivers.cdl
1 #====================================================================
2 #
3 #      phy_eth_drivers.cdl
4 #
5 #      API support for ethernet transceivers (PHY)
6 #
7 #====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 2003 Gary Thomas
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):      gthomas
44 # Original data:  gthomas
45 # Contributors:   gthomas
46 # Date:           2003-08-01
47 #
48 #####DESCRIPTIONEND####
49 #
50 #====================================================================
51
52 cdl_package CYGPKG_DEVS_ETH_PHY {
53     display       "Ethernet transceiver (PHY) support"
54     description   "API for ethernet PHY devices"
55
56     parent        CYGPKG_IO_ETH_DRIVERS
57     active_if     CYGPKG_IO_ETH_DRIVERS
58     requires      CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
59
60     include_dir   cyg/io
61
62     compile eth_phy.c
63
64     cdl_option CYGINT_DEVS_ETH_PHY_AUTO_NEGOTIATION_TIME {
65         display       "Time period (seconds) to wait for auto-negotiation"
66         flavor        data
67         default_value 5
68         description "
69            The length of time to wait for auto-negotiation to complete
70            before giving up and declaring the link dead/missing."
71     }
72
73     cdl_option CYGHWR_DEVS_ETH_PHY_DP83847 {
74         display       "NSDP83847"
75         flavor        bool
76         default_value 0
77         compile       -library=libextras.a DP83847.c
78         description "
79           Include support for National Semiconductor DP83847 DsPHYTER II"
80     }
81
82     cdl_option CYGHWR_DEVS_ETH_PHY_AM79C874 {
83         display       "AMD 79C874"
84         flavor        bool
85         default_value 0
86         compile       -library=libextras.a AM79C874.c
87         description "
88           Include support for AMD 79C874 NetPHY"
89     }
90
91     cdl_option CYGHWR_DEVS_ETH_PHY_INLXT972 {
92         display       "Intel LXT972"
93         flavor        bool
94         default_value 0
95         compile       -library=libextras.a INLXT972.c
96         description "
97           Include support for Intel LXT972xxx PHY"
98     }
99
100     cdl_option CYGHWR_DEVS_ETH_PHY_LAN8700 {
101         display       "SMSC LAN8700"
102         flavor        bool
103         default_value 0
104         compile       -library=libextras.a LAN8700.c
105         description "
106           Include support for SMSC LAN8700 NetPHY"
107     }
108
109 }