OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [devs/] [serial/] [powerpc/] [cme555/] [v2_0/] [cdl/] [ser_powerpc_cme555.cdl] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
# ====================================================================
2
#
3
#      ser_powerpc_cme555.cdl
4
#
5
#      eCos serial PowerPC/cme555 configuration data
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
##
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):      Bob Koninckx
44
# Original data:
45
# Contributors:
46
# Date:           1999-07-14
47
#
48
#####DESCRIPTIONEND####
49
#
50
# ====================================================================
51
 
52
cdl_package CYGPKG_IO_SERIAL_POWERPC_CME555 {
53
    display       "cme555 PowerPC serial device drivers"
54
 
55
    parent        CYGPKG_IO_SERIAL_DEVICES
56
    active_if     CYGPKG_IO_SERIAL
57
    active_if     CYGPKG_HAL_POWERPC_CME555
58
 
59
    requires      CYGPKG_ERROR
60
    include_dir   cyg/io
61
    include_files ; # none _exported_ whatsoever
62
    description   "
63
           This option enables the serial device drivers for the
64
           cme555 mpc555 development board."
65
 
66
    compile       -library=libextras.a   cme555_serial_with_ints.c
67
 
68
    define_proc {
69
        puts $::cdl_system_header "/***** serial driver proc output start *****/"
70
        puts $::cdl_system_header "#define CYGDAT_IO_SERIAL_DEVICE_HEADER "
71
        puts $::cdl_system_header "/*****  serial driver proc output end  *****/"
72
    }
73
 
74
cdl_component CYGPKG_IO_SERIAL_POWERPC_CME555_SERIAL_A {
75
    display       "cme555 PowerPC serial port A driver"
76
    flavor        bool
77
    default_value 0
78
    description   "
79
        This option includes the serial device driver for the cme555
80
        PowerPC port A."
81
 
82
    cdl_option CYGDAT_IO_SERIAL_POWERPC_CME555_SERIAL_A_NAME {
83
        display       "Device name for cme555 PowerPC serial port A"
84
        flavor        data
85
        default_value {"\"/dev/ser1\""}
86
        description   "
87
            This option specifies the device name for the cme555 PowerPC
88
            port A."
89
    }
90
 
91
    cdl_option CYGNUM_IO_SERIAL_POWERPC_CME555_SERIAL_A_BAUD {
92
        display       "Baud rate for the cme555 PowerPC serial port A driver"
93
        flavor        data
94
        legal_values  { 300 600 1200 2400 4800 9600 14400 19200 38400 57600 115200 }
95
        default_value 38400
96
        description "
97
            This option specifies the default baud rate (speed) for the
98
            cme555 PowerPC port A."
99
    }
100
 
101
    cdl_option CYGNUM_IO_SERIAL_POWERPC_CME555_SERIAL_A_BUFSIZE {
102
        display       "Buffer size for the cme555 PowerPC serial port A driver"
103
        flavor        data
104
        legal_values  0 to 8192
105
        default_value 128
106
        description   "
107
            This option specifies the size of the internal buffers used for
108
            the cme555 PowerPC port A."
109
    }
110
}
111
 
112
cdl_component CYGPKG_IO_SERIAL_POWERPC_CME555_SERIAL_B {
113
    display       "cme555 PowerPC serial port B driver"
114
    flavor        bool
115
    default_value 1
116
    description   "
117
        This option includes the serial device driver for the cme555
118
        PowerPC port B."
119
 
120
    cdl_option CYGDAT_IO_SERIAL_POWERPC_CME555_SERIAL_B_NAME {
121
        display       "Device name for cme555 PowerPC serial port B"
122
        flavor        data
123
        default_value {"\"/dev/ser2\""}
124
        description   "
125
            This option specifies the device name for the cme555 PowerPC
126
            port B."
127
    }
128
 
129
    cdl_option CYGNUM_IO_SERIAL_POWERPC_CME555_SERIAL_B_BAUD {
130
        display "Baud rate for the cme555 PowerPC serial port B driver"
131
        flavor        data
132
        legal_values  { 300 600 1200 2400 4800 9600 14400 19200 38400 57600 115200 }
133
        default_value 38400
134
        description   "
135
            This option specifies the default baud rate (speed) for the
136
            cme555 PowerPC port B."
137
    }
138
 
139
    cdl_option CYGNUM_IO_SERIAL_POWERPC_CME555_SERIAL_B_BUFSIZE {
140
        display       "Buffer size for the cme555 PowerPC serial port B driver"
141
        flavor        data
142
        legal_values  0 to 8192
143
        default_value 128
144
        description   "
145
            This option specifies the size of the internal buffers used
146
            for the cme555 PowerPC port B."
147
    }
148
}
149
 
150
    cdl_component CYGPKG_IO_SERIAL_POWERPC_CME555_OPTIONS {
151
        display "Serial device driver build options"
152
        flavor  none
153
        description   "
154
            Package specific build options including control over
155
            compiler flags used only in building this package,
156
            and details of which tests are built."
157
 
158
 
159
        cdl_option CYGPKG_IO_SERIAL_POWERPC_CME555_CFLAGS_ADD {
160
            display "Additional compiler flags"
161
            flavor  data
162
            no_define
163
            default_value { "" }
164
            description   "
165
                This option modifies the set of compiler flags for
166
                building these serial device drivers. These flags are used in addition
167
                to the set of global flags."
168
        }
169
 
170
        cdl_option CYGPKG_IO_SERIAL_POWERPC_CME555_CFLAGS_REMOVE {
171
            display "Suppressed compiler flags"
172
            flavor  data
173
            no_define
174
            default_value { "" }
175
            description   "
176
                This option modifies the set of compiler flags for
177
                building these serial device drivers. These flags are removed from
178
                the set of global flags if present."
179
        }
180
    }
181
 
182
}
183
 
184
# EOF ser_powerpc_cme555.cdl

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.