]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/triton/v2_0/cdl/triton_eth_cs8900_drivers.cdl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / arm / triton / v2_0 / cdl / triton_eth_cs8900_drivers.cdl
1 # ====================================================================
2 #
3 #      triton_eth_drivers.cdl
4 #
5 #      Ethernet drivers - support for CS8900A ethernet controller
6 #      on the Ka-RO TRITON board.
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 cdl_package CYGPKG_DEVS_ETH_CL_CS8900_ARM_XSCALE_TRITON {
43
44     display       "TRITON CS8900A ethernet driver"
45
46     parent        CYGPKG_IO_ETH_DRIVERS
47     active_if     CYGPKG_IO_ETH_DRIVERS
48 #    active_if     CYGPKG_HAL_ARM_XSCALE_TRITON_STK
49     
50
51     # chip wired in 16-bit mode, no EEPROM
52     implements    CYGHWR_NET_DRIVERS
53     implements    CYGHWR_NET_DRIVER_ETH0
54     implements    CYGINT_DEVS_ETH_CL_CS8900A_REQUIRED
55     implements    CYGINT_DEVS_ETH_CL_CS8900A_STATIC_ESA
56     
57     requires      CYGPKG_DEVS_ETH_CL_CS8900A
58     description   "Ethernet driver for TRITON boards."
59
60     include_dir   cyg/io
61
62     define_proc {
63         puts $::cdl_system_header "/***** ethernet driver proc output start *****/"
64         puts $::cdl_system_header "#define CYGDAT_DEVS_ETH_CL_CS8900A_INL <cyg/io/devs_eth_cs8900a_triton.inl>"
65         puts $::cdl_system_header "#define CYGDAT_DEVS_ETH_CL_CS8900A_CFG <pkgconf/devs_eth_cl_cs8900_arm_xscale_triton.h>"
66         puts $::cdl_system_header "/*****  ethernet driver proc output end  *****/"
67     }
68     
69     # Arguably this should do in the generic package
70     # but then there is a logic loop so you can never enable it.
71
72     cdl_interface CYGINT_DEVS_ETH_CL_CS8900A_REQUIRED {
73         display   "CL CS8900A driver required"
74     }
75
76     cdl_option CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_NAME {
77         display       "Device name for the ethernet driver"
78         flavor        data
79         default_value {"\"eth0\""}
80         description   "
81             This option sets the name of the ethernet device for the
82             ethernet port."
83     }
84
85     cdl_option CYGDAT_DEVS_ETH_ARM_XSCALE_TRITON_ESA {
86         display       "The ethernet station address (MAC)"
87         flavor        data
88         default_value {"{0x00, 0x0C, 0xC6, 0x70, 0x00, 0x00}"}
89         description   "A static ethernet station address. 
90             Caution: Booting two systems with the same MAC on the same
91             network, will cause severe conflicts."
92         active_if     !CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA
93     }
94     
95     
96    
97     
98      cdl_option CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_1WIRE_ESA {
99         display "Use the 1-WIRE device ESA (MAC address)"
100         default_value 1
101         flavor        bool
102         description   "
103             Use the ESA that is stored in the 1wire device instead of
104             a static ESA." 
105     }
106    
107     
108     
109     
110
111     cdl_option CYGSEM_DEVS_ETH_ARM_XSCALE_TRITON_REDBOOT_ESA {
112         display "Use the RedBoot ESA (MAC address)"
113         default_value 0
114         flavor        bool
115         description   "
116             Use the ESA that is stored as a RedBoot variable instead of
117             a static ESA." 
118     }
119
120 }
121
122 # EOF triton_eth_drivers.cdl