OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
# ====================================================================
2
#
3
#      ser_mn10300.cdl
4
#
5
#      eCos serial MN10300 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):      jskov
44
# Original data:  gthomas
45
# Contributors:
46
# Date:           1999-07-07
47
#
48
#####DESCRIPTIONEND####
49
#
50
# ====================================================================
51
 
52
 
53
cdl_package CYGPKG_IO_SERIAL_MN10300 {
54
    display       "MN10300 serial device drivers"
55
 
56
    parent        CYGPKG_IO_SERIAL_DEVICES
57
    active_if     CYGPKG_IO_SERIAL
58
    active_if     CYGPKG_HAL_MN10300
59
 
60
    # Note: this is not currently tied to a specific board since the
61
    # ports are "on chip"
62
 
63
    requires      CYGPKG_ERROR
64
    include_dir   cyg/io
65
    include_files ; # none _exported_ whatsoever
66
    description   "
67
           This option enables the serial device drivers for the
68
           MN10300."
69
 
70
    compile       -library=libextras.a   mn10300_serial.c
71
 
72
    define_proc {
73
        puts $::cdl_system_header "/***** serial driver proc output start *****/"
74
        puts $::cdl_system_header "#define CYGDAT_IO_SERIAL_DEVICE_HEADER "
75
        puts $::cdl_system_header "/*****  serial driver proc output end  *****/"
76
    }
77
 
78
# FIXME: Bad name
79
cdl_option CYGPKG_IO_SERIAL_MN10300_POLLED_MODE {
80
    display       "MN10300 polled mode serial drivers"
81
    flavor        bool
82
    default_value 0
83
    description   "
84
        If asserted, this option specifies that the serial device
85
        drivers for the MN10300 should be polled-mode instead of
86
        interrupt driven."
87
}
88
 
89
cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL0 {
90
    display       "MN10300 serial port 0 driver"
91
    flavor        bool
92
    default_value 1
93
    description   "
94
        This option includes the serial device driver for port 0 on the
95
        MN10300."
96
 
97
    cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL0_NAME {
98
        display       "Device name for MN10300 serial port 0"
99
        flavor        data
100
        default_value {"\"/dev/ser0\""}
101
        description   "
102
            This option specifies the device name port 0 on the MN10300."
103
    }
104
 
105
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BAUD {
106
        display       "Baud rate for the MN10300 serial port 0 driver"
107
        flavor        data
108
        legal_values  { 50 75 110 "134_5" 150 200 300 600 1200 1800 2400 3600
109
                      4800 7200 9600 14400 19200 38400 57600 115200 230400
110
        }
111
        default_value 38400
112
        description   "
113
            This option specifies the default baud rate (speed) for the
114
            MN10300 port 0."
115
    }
116
 
117
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BUFSIZE {
118
        display       "Buffer size for the MN10300 serial port 0 driver"
119
        flavor        data
120
        legal_values  0 to 8192
121
        default_value 128
122
        description   "
123
            This option specifies the size of the internal buffers used
124
            for the MN10300 port 0."
125
    }
126
}
127
 
128
cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL1 {
129
    display       "MN10300 serial port 1 driver"
130
    flavor        bool
131
    default_value 1
132
    description   "
133
        This option includes the serial device driver for port 1 on
134
        the MN10300."
135
 
136
    cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL1_NAME {
137
        display       "Device name for MN10300 serial port 1"
138
        flavor        data
139
        default_value {"\"/dev/ser1\""}
140
        description   "
141
            This option specifies the device name port 1 on the MN10300."
142
    }
143
 
144
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BAUD {
145
        display       "Baud rate for the MN10300 serial port 1 driver"
146
        flavor        data
147
        legal_values  { 50 75 110 "134_5" 150 200 300 600 1200 1800 2400 3600
148
                      4800 7200 9600 14400 19200 38400 57600 115200 230400
149
        }
150
        default_value 38400
151
        description   "
152
            This option specifies the default baud rate (speed) for the
153
            MN10300 port 1."
154
    }
155
 
156
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BUFSIZE {
157
        display       "Buffer size for the MN10300 serial port 1 driver"
158
        flavor        data
159
        legal_values  0 to 8192
160
        default_value 128
161
        description   "
162
            This option specifies the size of the internal buffers used
163
            for the MN10300 port 1."
164
    }
165
}
166
cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL2 {
167
    display       "MN10300 serial port 2 driver"
168
    flavor        bool
169
    default_value 1
170
    description   "
171
        This option includes the serial device driver for port 2 on the
172
        MN10300."
173
 
174
    cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL2_NAME {
175
        display       "Device name for MN10300 serial port 2"
176
        flavor        data
177
        default_value {"\"/dev/ser2\""}
178
        description   "
179
            This option specifies the device name port 2 on the MN10300."
180
    }
181
 
182
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BAUD {
183
        display       "Baud rate for the MN10300 serial port 2 driver"
184
        flavor        data
185
        legal_values  { 50 75 110 "134_5" 150 200 300 600 1200 1800 2400 3600
186
                      4800 7200 9600 14400 19200 38400 57600 115200 230400
187
        }
188
        default_value 38400
189
        description   "
190
            This option specifies the default baud rate (speed) for the
191
            MN10300 port 2."
192
    }
193
 
194
    cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BUFSIZE {
195
        display       "Buffer size for the MN10300 serial port 2 driver"
196
        flavor        data
197
        legal_values  0 to 8192
198
        default_value 128
199
        description   "
200
            This option specifies the size of the internal buffers used
201
            for the MN10300 port 2."
202
    }
203
}
204
 
205
    cdl_component CYGPKG_IO_SERIAL_MN10300_OPTIONS {
206
        display "Serial device driver build options"
207
        flavor  none
208
        description   "
209
            Package specific build options including control over
210
            compiler flags used only in building this package,
211
            and details of which tests are built."
212
 
213
 
214
        cdl_option CYGPKG_IO_SERIAL_MN10300_CFLAGS_ADD {
215
            display "Additional compiler flags"
216
            flavor  data
217
            no_define
218
            default_value { "" }
219
            description   "
220
                This option modifies the set of compiler flags for
221
                building these serial device drivers. These flags are used in addition
222
                to the set of global flags."
223
        }
224
 
225
        cdl_option CYGPKG_IO_SERIAL_MN10300_CFLAGS_REMOVE {
226
            display "Suppressed compiler flags"
227
            flavor  data
228
            no_define
229
            default_value { "" }
230
            description   "
231
                This option modifies the set of compiler flags for
232
                building these serial device drivers. These flags are removed from
233
                the set of global flags if present."
234
        }
235
    }
236
}
237
 
238
# EOF ser_mn10300.cdl

powered by: WebSVN 2.1.0

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