]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/phy/v2_0/cdl/phy_eth_drivers.cdl
unified MX27, MX25, MX37 trees
[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 CYGDBG_DEVS_ETH_PHY {
65         display       "Enable driver debugging"
66         flavor        bool
67         default_value 0
68         description   "Enables the diagnostic debug messages on the
69                        console device."
70     }
71
72     cdl_option CYGINT_DEVS_ETH_PHY_AUTO_NEGOTIATION_TIME {
73         display       "Time period (seconds) to wait for auto-negotiation"
74         flavor        data
75         default_value 5
76         description "
77            The length of time to wait for auto-negotiation to complete
78            before giving up and declaring the link dead/missing."
79     }
80
81     cdl_option CYGHWR_DEVS_ETH_PHY_DP83847 {
82         display       "NSDP83847"
83         flavor        bool
84         default_value 0
85         compile       -library=libextras.a DP83847.c
86         description "
87           Include support for National Semiconductor DP83847 DsPHYTER II"
88     }
89
90     cdl_option CYGHWR_DEVS_ETH_PHY_AM79C874 {
91         display       "AMD 79C874"
92         flavor        bool
93         default_value 0
94         compile       -library=libextras.a AM79C874.c
95         description "
96           Include support for AMD 79C874 NetPHY"
97     }
98
99     cdl_option CYGHWR_DEVS_ETH_PHY_INLXT972 {
100         display       "Intel LXT972"
101         flavor        bool
102         default_value 0
103         compile       -library=libextras.a INLXT972.c
104         description "
105           Include support for Intel LXT972xxx PHY"
106     }
107
108     cdl_option CYGHWR_DEVS_ETH_PHY_ICS1890 {
109         display       "ICS 1890"
110         flavor        bool
111         default_value 0
112         compile       -library=libextras.a ics189x.c
113         description "
114           Include support for ICS 1890 PHY"
115     }
116
117     cdl_option CYGHWR_DEVS_ETH_PHY_ICS1892 {
118         display       "ICS 1892"
119         flavor        bool
120         default_value 0
121         compile       -library=libextras.a ics189x.c
122         description "
123           Include support for ICS 1892 PHY"
124     }
125
126     cdl_option CYGHWR_DEVS_ETH_PHY_ICS1893 {
127         display       "ICS 1893"
128         flavor        bool
129         default_value 0
130         compile       -library=libextras.a ics189x.c
131         description "
132           Include support for ICS 1893 and 1893AF PHY"
133     }
134
135     cdl_option CYGHWR_DEVS_ETH_PHY_DM9161A {
136         display       "Davicom DM9161A"
137         flavor        bool
138         default_value 0
139         compile       -library=libextras.a DM9161A.c
140         description "
141           Include support for the Davicom DM9161A PHY"
142     }
143     
144     cdl_option CYGHWR_DEVS_ETH_PHY_KS8721 {
145         display       "Micrel KS8721"
146         flavor        bool
147         default_value 0
148         compile       -library=libextras.a KS8721.c
149         description "
150           Include support for the Micrel KS8721 PHY"
151     }
152
153     cdl_option CYGHWR_DEVS_ETH_PHY_LAN8700 {
154         display       "SMSC LAN8700"
155         flavor        bool
156         default_value 0
157         compile       -library=libextras.a LAN8700.c
158         description "
159           Include support for SMSC LAN8700 NetPHY"
160     }
161 }