Mercurial > flash_v2
annotate packages/io/serial/current/include/pkgconf/io_serial.h @ 10:d3fbcdfa1b2f ecos-sw-1999-05-29
Merge from eCos master repository on 1999-05-29-00:13:11-BST
| author | jlarmour |
|---|---|
| date | Fri, 28 May 1999 16:43:09 +0000 |
| parents | d376b777e2ce |
| children | 7253dcc42a09 |
| rev | line source |
|---|---|
| 2 | 1 #ifndef CYGONCE_PKGCONF_IO_SERIAL_H |
| 2 #define CYGONCE_PKGCONF_IO_SERIAL_H | |
| 3 // ==================================================================== | |
| 4 // | |
| 5 // pkgconf/io_serial.h | |
| 6 // | |
| 7 // Device configuration file | |
| 8 // | |
| 9 // ==================================================================== | |
| 10 //####COPYRIGHTBEGIN#### | |
| 11 // | |
| 12 // ------------------------------------------- | |
| 13 // The contents of this file are subject to the Cygnus eCos Public License | |
| 14 // Version 1.0 (the "License"); you may not use this file except in | |
| 15 // compliance with the License. You may obtain a copy of the License at | |
| 16 // http://sourceware.cygnus.com/ecos | |
| 17 // | |
| 18 // Software distributed under the License is distributed on an "AS IS" | |
| 19 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the | |
| 20 // License for the specific language governing rights and limitations under | |
| 21 // the License. | |
| 22 // | |
| 23 // The Original Code is eCos - Embedded Cygnus Operating System, released | |
| 24 // September 30, 1998. | |
| 25 // | |
| 26 // The Initial Developer of the Original Code is Cygnus. Portions created | |
| 27 // by Cygnus are Copyright (C) 1998,1999 Cygnus Solutions. All Rights Reserved. | |
| 28 // ------------------------------------------- | |
| 29 // | |
| 30 //####COPYRIGHTEND#### | |
| 31 // ==================================================================== | |
| 32 //#####DESCRIPTIONBEGIN#### | |
| 33 // | |
| 34 // Author(s): gthomas | |
| 35 // Contributors: gthomas | |
| 36 // Date: 1999-02-04 | |
| 37 // Purpose: To allow the user to edit device configuration options. | |
| 38 // Description: | |
| 39 // | |
| 40 //####DESCRIPTIONEND#### | |
| 41 // | |
| 42 // ==================================================================== | |
| 43 | |
| 44 #include <pkgconf/system.h> | |
| 45 | |
| 46 /* ---------------------------------------------------------------------------- | |
| 47 {{CFG_DATA | |
| 48 | |
| 49 cdl_package CYGPKG_IO_SERIAL { | |
| 50 display "Serial device drivers" | |
| 51 type bool | |
| 52 requires CYGPKG_IO | |
| 53 parent CYGPKG_IO | |
| 54 description " | |
| 55 This option enables drivers for basic I/O services on | |
| 56 serial devices." | |
| 57 doc ref/ecos-ref/ecos-device-drivers.html | |
| 58 } | |
| 59 }}CFG_DATA */ | |
| 60 | |
| 61 /* ---------------------------------------------------------------------------- | |
| 62 {{CFG_DATA | |
| 63 cdl_component CYGPKG_IO_SERIAL_TTY { | |
| 64 display "TTY-mode serial device drivers" | |
| 65 type bool | |
| 66 requires CYGPKG_IO_SERIAL | |
| 67 description " | |
| 68 This option enables the terminal-like device driver | |
| 69 used for serial devices that interact with humans, | |
| 70 such as a system console." | |
| 71 doc ref/ecos-ref/ecos-device-drivers.html | |
| 72 } | |
| 73 | |
| 74 cdl_option CYGDAT_IO_SERIAL_TTY_CONSOLE { | |
| 75 display "Console device name" | |
| 76 type string | |
| 77 requires CYGPKG_IO_SERIAL_TTY | |
| 78 description " | |
| 79 This option selects the TTY device to use for the console." | |
| 80 doc ref/ecos-ref/ecos-device-drivers.html | |
| 81 } | |
| 82 | |
| 83 }}CFG_DATA */ | |
| 84 | |
| 85 #define CYGPKG_IO_SERIAL_TTY | |
| 86 #define CYGDAT_IO_SERIAL_TTY_CONSOLE "/dev/ttydiag" | |
| 87 | |
| 88 /* ---------------------------------------------------------------------------- | |
| 89 {{CFG_DATA | |
| 90 cdl_component CYGPKG_IO_SERIAL_HALDIAG { | |
| 91 display "HAL/diag serial device driver" | |
| 92 type bool | |
| 93 requires CYGPKG_IO_SERIAL_TTY | |
| 94 parent CYGPKG_IO_SERIAL_TTY | |
| 95 description " | |
| 96 This option enables the use of the HAL diagnostic channel | |
| 97 via the standard I/O drivers." | |
| 98 doc ref/ecos-ref/ecos-device-drivers.html | |
| 99 } | |
| 100 | |
| 101 }}CFG_DATA */ | |
| 102 | |
| 103 #define CYGPKG_IO_SERIAL_HALDIAG | |
| 104 | |
| 105 | |
| 106 /* ---------------------------------------------------------------------------- | |
| 107 {{CFG_DATA | |
| 108 cdl_component CYGPKG_IO_SERIAL_TTY_TTYDIAG { | |
| 109 display "TTY mode HAL/diag channel" | |
| 110 type bool | |
| 111 requires CYGPKG_IO_SERIAL_TTY | |
| 112 parent CYGPKG_IO_SERIAL_TTY | |
| 113 description " | |
| 114 This option causes '/dev/ttydiag' to be included in the standard drivers." | |
| 115 doc ref/ecos-ref/ecos-device-drivers.html | |
| 116 } | |
| 117 | |
| 118 cdl_component CYGPKG_IO_SERIAL_TTY_TTY0 { | |
| 119 display "TTY mode channel #0" | |
| 120 type bool | |
| 121 requires CYGPKG_IO_SERIAL_TTY | |
| 122 parent CYGPKG_IO_SERIAL_TTY | |
| 123 description " | |
| 124 This option causes '/dev/tty0' to be included in the standard drivers." | |
| 125 doc ref/ecos-ref/ecos-device-drivers.html | |
| 126 } | |
| 127 | |
| 128 cdl_option CYGDAT_IO_SERIAL_TTY_TTY0_DEV { | |
| 129 display "TTY mode channel #0 device" | |
| 130 type string | |
| 131 requires CYGPKG_IO_SERIAL_TTY_TTY0 | |
| 132 description " | |
| 133 This option selects the physical device to use for '/dev/tty0'." | |
| 134 doc ref/ecos-ref/ecos-device-drivers.html | |
| 135 } | |
| 136 | |
| 137 cdl_component CYGPKG_IO_SERIAL_TTY_TTY1 { | |
| 138 display "TTY mode channel #1" | |
| 139 type bool | |
| 140 requires CYGPKG_IO_SERIAL_TTY | |
| 141 parent CYGPKG_IO_SERIAL_TTY | |
| 142 description " | |
| 143 This option causes '/dev/tty1' to be included in the standard drivers." | |
| 144 doc ref/ecos-ref/ecos-device-drivers.html | |
| 145 } | |
| 146 | |
| 147 cdl_option CYGDAT_IO_SERIAL_TTY_TTY1_DEV { | |
| 148 display "TTY mode channel #1 device" | |
| 149 type string | |
| 150 requires CYGPKG_IO_SERIAL_TTY_TTY1 | |
| 151 description " | |
| 152 This option selects the physical device to use for '/dev/tty1'." | |
| 153 doc ref/ecos-ref/ecos-device-drivers.html | |
| 154 } | |
| 155 | |
| 156 cdl_component CYGPKG_IO_SERIAL_TTY_TTY2 { | |
| 157 display "TTY mode channel #2" | |
| 158 type bool | |
| 159 requires CYGPKG_IO_SERIAL_TTY | |
| 160 parent CYGPKG_IO_SERIAL_TTY | |
| 161 description " | |
| 162 This option causes '/dev/tty2' to be included in the standard drivers." | |
| 163 doc ref/ecos-ref/ecos-device-drivers.html | |
| 164 } | |
| 165 | |
| 166 cdl_option CYGDAT_IO_SERIAL_TTY_TTY2_DEV { | |
| 167 display "TTY mode channel #2 device" | |
| 168 type string | |
| 169 requires CYGPKG_IO_SERIAL_TTY_TTY2 | |
| 170 description " | |
| 171 This option selects the physical device to use for '/dev/tty2'." | |
| 172 doc ref/ecos-ref/ecos-device-drivers.html | |
| 173 } | |
| 174 | |
| 175 }}CFG_DATA */ | |
| 176 | |
| 177 #define CYGPKG_IO_SERIAL_TTY_TTYDIAG | |
| 178 #undef CYGPKG_IO_SERIAL_TTY_TTY0 | |
| 179 #define CYGDAT_IO_SERIAL_TTY_TTY0_DEV "/dev/ser0" | |
| 180 #undef CYGPKG_IO_SERIAL_TTY_TTY1 | |
| 181 #define CYGDAT_IO_SERIAL_TTY_TTY1_DEV "/dev/ser1" | |
| 182 #undef CYGPKG_IO_SERIAL_TTY_TTY2 | |
| 183 #define CYGDAT_IO_SERIAL_TTY_TTY2_DEV "/dev/ser2" | |
| 184 | |
|
6
d376b777e2ce
Merge from eCos master repository on 1999-05-14-19:27:43-BST
jlarmour
parents:
4
diff
changeset
|
185 |
| 2 | 186 /* ---------------------------------------------------------------------------- |
| 187 {{CFG_DATA | |
| 188 cdl_component CYGPKG_IO_SERIAL_ARM_PID { | |
| 189 display "ARM PID serial device drivers" | |
| 190 type bool | |
| 191 requires CYGPKG_IO_SERIAL | |
| 192 # parent CYGPKG_IO_SERIAL | |
| 193 parent CYGPKG_HAL_ARM_PID | |
| 194 description " | |
| 195 This option enables the serial device drivers for the ARM PID." | |
| 196 doc ref/ecos-ref/ecos-device-drivers.html | |
| 197 } | |
| 198 | |
| 199 cdl_component CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 { | |
| 200 display "ARM PID serial port 0 driver" | |
| 201 type bool | |
| 202 parent CYGPKG_IO_SERIAL_ARM_PID | |
| 203 description " | |
| 204 This option includes the serial device driver for the ARM PID port 0." | |
| 205 doc ref/ecos-ref/ecos-device-drivers.html | |
| 206 } | |
| 207 | |
| 208 cdl_option CYGDAT_IO_SERIAL_ARM_PID_SERIAL0_NAME { | |
| 209 display "Device name for ARM PID serial port 0 driver" | |
| 210 type string | |
| 211 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 212 description " | |
| 213 This option specifies the name of the serial device for the ARM PID port 0." | |
| 214 doc ref/ecos-ref/ecos-device-drivers.html | |
| 215 } | |
| 216 | |
| 217 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BAUD { | |
| 218 display "Baud rate for the ARM PID serial port 0 driver" | |
| 219 type enum | |
| 220 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 221 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 222 description " | |
| 223 This option specifies the default baud rate (speed) for the ARM PID port 0." | |
| 224 doc ref/ecos-ref/ecos-device-drivers.html | |
| 225 } | |
| 226 | |
| 227 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BUFSIZE { | |
| 228 display "Buffer size for the ARM PID serial port 0 driver" | |
| 229 type count | |
| 230 legal_values 0 to 8192 | |
| 231 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 232 description " | |
| 233 This option specifies the size of the internal buffers used for the ARM PID port 0." | |
| 234 doc ref/ecos-ref/ecos-device-drivers.html | |
| 235 } | |
| 236 | |
| 237 cdl_component CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 { | |
| 238 display "ARM PID serial port 1 driver" | |
| 239 type bool | |
| 240 parent CYGPKG_IO_SERIAL_ARM_PID | |
| 241 description " | |
| 242 This option includes the serial device driver for the ARM PID port 1." | |
| 243 doc ref/ecos-ref/ecos-device-drivers.html | |
| 244 } | |
| 245 | |
| 246 cdl_option CYGDAT_IO_SERIAL_ARM_PID_SERIAL1_NAME { | |
| 247 display "Device name for ARM PID serial port 1 driver" | |
| 248 type string | |
| 249 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 250 description " | |
| 251 This option specifies the name of the serial device for the ARM PID port 1." | |
| 252 doc ref/ecos-ref/ecos-device-drivers.html | |
| 253 } | |
| 254 | |
| 255 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BAUD { | |
| 256 display "Baud rate for the ARM PID serial port 1 driver" | |
| 257 type enum | |
| 258 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 259 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 260 description " | |
| 261 This option specifies the default baud rate (speed) for the ARM PID port 1." | |
| 262 doc ref/ecos-ref/ecos-device-drivers.html | |
| 263 } | |
| 264 | |
| 265 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BUFSIZE { | |
| 266 display "Buffer size for the ARM PID serial port 1 driver" | |
| 267 type count | |
| 268 legal_values 0 to 8192 | |
| 269 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 270 description " | |
| 271 This option specifies the size of the internal buffers used for the ARM PID port 1." | |
| 272 doc ref/ecos-ref/ecos-device-drivers.html | |
| 273 } | |
| 274 | |
| 275 }}CFG_DATA */ | |
| 276 | |
| 277 #undef CYGPKG_IO_SERIAL_ARM_PID | |
| 278 #undef CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 279 #define CYGDAT_IO_SERIAL_ARM_PID_SERIAL0_NAME "/dev/ser0" | |
| 280 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BAUD 38400 | |
| 281 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BUFSIZE 128 | |
| 282 #define CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 283 #define CYGDAT_IO_SERIAL_ARM_PID_SERIAL1_NAME "/dev/ser1" | |
| 284 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BAUD 38400 | |
| 285 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BUFSIZE 128 | |
| 286 | |
| 287 /* ---------------------------------------------------------------------------- | |
| 288 {{CFG_DATA | |
| 289 cdl_component CYGPKG_IO_SERIAL_ARM_AEB { | |
| 290 display "ARM AEB-1 serial device drivers" | |
| 291 type bool | |
| 292 requires CYGPKG_IO_SERIAL | |
| 293 # parent CYGPKG_IO_SERIAL | |
| 294 parent CYGPKG_HAL_ARM_AEB | |
| 295 description " | |
| 296 This option enables the serial device drivers for the ARM AEB-1." | |
| 297 doc ref/ecos-ref/ecos-device-drivers.html | |
| 298 } | |
| 299 | |
| 300 cdl_component CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 { | |
| 301 display "ARM AEB-1 serial port 0 driver" | |
| 302 type bool | |
| 303 parent CYGPKG_IO_SERIAL_ARM_AEB | |
| 304 description " | |
| 305 This option includes the serial device driver for the ARM AEB-1 port 0." | |
| 306 doc ref/ecos-ref/ecos-device-drivers.html | |
| 307 } | |
| 308 | |
| 309 cdl_option CYGDAT_IO_SERIAL_ARM_AEB_SERIAL0_NAME { | |
| 310 display "Device name for the ARM AEB-1 serial port 0 driver" | |
| 311 type string | |
| 312 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 313 description " | |
| 314 This option sets the name of the serial device for the ARM AEB-1 port 0." | |
| 315 doc ref/ecos-ref/ecos-device-drivers.html | |
| 316 } | |
| 317 | |
| 318 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BAUD { | |
| 319 display "Baud rate for the ARM AEB-1 serial port 0 driver" | |
| 320 type enum | |
| 321 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 322 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 323 description " | |
| 324 This option specifies the default baud rate (speed) for the ARM AEB-1 port 0." | |
| 325 doc ref/ecos-ref/ecos-device-drivers.html | |
| 326 } | |
| 327 | |
| 328 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BUFSIZE { | |
| 329 display "Buffer size for the ARM AEB-1 serial port 0 driver" | |
| 330 type count | |
| 331 legal_values 0 to 8192 | |
| 332 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 333 description " | |
| 334 This option specifies the size of the internal buffers used for the ARM AEB-1 port 0." | |
| 335 doc ref/ecos-ref/ecos-device-drivers.html | |
| 336 } | |
| 337 | |
| 338 cdl_component CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 { | |
| 339 display "ARM AEB-1 serial port 1 driver" | |
| 340 type bool | |
| 341 parent CYGPKG_IO_SERIAL_ARM_AEB | |
| 342 description " | |
| 343 This option includes the serial device driver for the ARM AEB-1 port 1." | |
| 344 doc ref/ecos-ref/ecos-device-drivers.html | |
| 345 } | |
| 346 | |
| 347 cdl_option CYGDAT_IO_SERIAL_ARM_AEB_SERIAL1_NAME { | |
| 348 display "Device name for the ARM AEB-1 serial port 1 driver" | |
| 349 type string | |
| 350 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 351 description " | |
| 352 This option specifies the name of serial device for the ARM AEB-1 port 1." | |
| 353 doc ref/ecos-ref/ecos-device-drivers.html | |
| 354 } | |
| 355 | |
| 356 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BAUD { | |
| 357 display "Baud rate for the ARM AEB-1 serial port 1 driver" | |
| 358 type enum | |
| 359 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 360 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 361 description " | |
| 362 This option specifies the default baud rate (speed) for the ARM AEB-1 port 1." | |
| 363 doc ref/ecos-ref/ecos-device-drivers.html | |
| 364 } | |
| 365 | |
| 366 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BUFSIZE { | |
| 367 display "Buffer size for the ARM AEB-1 serial port 1 driver" | |
| 368 type count | |
| 369 legal_values 0 to 8192 | |
| 370 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 371 description " | |
| 372 This option specifies the size of the internal buffers used for the ARM AEB-1 port 1." | |
| 373 doc ref/ecos-ref/ecos-device-drivers.html | |
| 374 } | |
| 375 | |
| 376 }}CFG_DATA */ | |
| 377 #undef CYGPKG_IO_SERIAL_ARM_AEB | |
| 378 #undef CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 379 #define CYGDAT_IO_SERIAL_ARM_AEB_SERIAL0_NAME "/dev/ser0" | |
| 380 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BAUD 38400 | |
| 381 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BUFSIZE 128 | |
| 382 #undef CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 383 #define CYGDAT_IO_SERIAL_ARM_AEB_SERIAL1_NAME "/dev/ser1" | |
| 384 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BAUD 38400 | |
| 385 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BUFSIZE 128 | |
| 386 | |
| 387 | |
|
4
1d7f19c9e4d1
Merge from eCos master repository on 1999-05-11-21:11:10-BST
jlarmour
parents:
2
diff
changeset
|
388 |
| 2 | 389 /* ---------------------------------------------------------------------------- |
| 390 {{CFG_DATA | |
| 391 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT { | |
| 392 display "Cogent PowerPC serial device drivers" | |
| 393 type bool | |
| 394 requires CYGPKG_IO_SERIAL | |
| 395 # parent CYGPKG_IO_SERIAL | |
| 396 parent CYGPKG_HAL_POWERPC_COGENT | |
| 397 description " | |
| 398 This option enables the serial device drivers for the Cogent PowerPC." | |
| 399 doc ref/ecos-ref/ecos-device-drivers.html | |
| 400 } | |
| 401 | |
| 402 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A { | |
| 403 display "Cogent PowerPC serial port A driver" | |
| 404 type bool | |
| 405 requires CYGPKG_IO_SERIAL | |
| 406 parent CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 407 description " | |
| 408 This option includes the serial device driver for the Cogent PowerPC port A." | |
| 409 doc ref/ecos-ref/ecos-device-drivers.html | |
| 410 } | |
| 411 | |
| 412 cdl_option CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_A_NAME { | |
| 413 display "Device name for Cogent PowerPC serial port A" | |
| 414 type string | |
| 415 requires CYGPKG_IO_SERIAL | |
| 416 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 417 description " | |
| 418 This option specifies the device name for the Cogent PowerPC port A." | |
| 419 doc ref/ecos-ref/ecos-device-drivers.html | |
| 420 } | |
| 421 | |
| 422 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BAUD { | |
| 423 display "Baud rate for the Cogent PowerPC serial port A driver" | |
| 424 type enum | |
| 425 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 426 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 427 description " | |
| 428 This option specifies the default baud rate (speed) for the Cogent PowerPC port A." | |
| 429 doc ref/ecos-ref/ecos-device-drivers.html | |
| 430 } | |
| 431 | |
| 432 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BUFSIZE { | |
| 433 display "Buffer size for the Cogent PowerPC serial port A driver" | |
| 434 type count | |
| 435 legal_values 0 to 8192 | |
| 436 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 437 description " | |
| 438 This option specifies the size of the internal buffers used for the Cogent PowerPC port A." | |
| 439 doc ref/ecos-ref/ecos-device-drivers.html | |
| 440 } | |
| 441 | |
| 442 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B { | |
| 443 display "Cogent PowerPC serial port B driver" | |
| 444 type bool | |
| 445 requires CYGPKG_IO_SERIAL | |
| 446 parent CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 447 description " | |
| 448 This option includes the serial device driver for the Cogent PowerPC port B." | |
| 449 doc ref/ecos-ref/ecos-device-drivers.html | |
| 450 } | |
| 451 | |
| 452 cdl_option CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_B_NAME { | |
| 453 display "Device name for Cogent PowerPC serial port B" | |
| 454 type string | |
| 455 requires CYGPKG_IO_SERIAL | |
| 456 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 457 description " | |
| 458 This option specifies the device name for the Cogent PowerPC port B." | |
| 459 doc ref/ecos-ref/ecos-device-drivers.html | |
| 460 } | |
| 461 | |
| 462 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BAUD { | |
| 463 display "Baud rate for the Cogent PowerPC serial port B driver" | |
| 464 type enum | |
| 465 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 466 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 467 description " | |
| 468 This option specifies the default baud rate (speed) for the Cogent PowerPC port B." | |
| 469 doc ref/ecos-ref/ecos-device-drivers.html | |
| 470 } | |
| 471 | |
| 472 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BUFSIZE { | |
| 473 display "Buffer size for the Cogent PowerPC serial port B driver" | |
| 474 type count | |
| 475 legal_values 0 to 8192 | |
| 476 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 477 description " | |
| 478 This option specifies the size of the internal buffers used for the Cogent PowerPC port B." | |
| 479 doc ref/ecos-ref/ecos-device-drivers.html | |
| 480 } | |
| 481 | |
| 482 }}CFG_DATA */ | |
| 483 #undef CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 484 // Only enable both ports if interrupt chaining is enabled. | |
| 485 #undef CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 486 #define CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_A_NAME "/dev/ser1" | |
| 487 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BAUD 38400 | |
| 488 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BUFSIZE 128 | |
| 489 #define CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 490 #define CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_B_NAME "/dev/ser2" | |
| 491 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BAUD 38400 | |
| 492 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BUFSIZE 128 | |
| 493 | |
| 494 /* ---------------------------------------------------------------------------- | |
| 495 {{CFG_DATA | |
| 496 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB { | |
| 497 display "SPARClite SLEB serial device drivers" | |
| 498 type bool | |
| 499 requires CYGPKG_IO_SERIAL | |
| 500 # parent CYGPKG_IO_SERIAL | |
| 501 parent CYGPKG_HAL_SPARCLITE_SLEB | |
| 502 description " | |
| 503 This option enables the serial device drivers for the SPARClite SLEB." | |
| 504 doc ref/ecos-ref/ecos-device-drivers.html | |
| 505 } | |
| 506 | |
| 507 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 { | |
| 508 display "SPARClite SLEB serial CON1 port driver" | |
| 509 type bool | |
| 510 requires CYGPKG_IO_SERIAL | |
| 511 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 512 description " | |
| 513 This option includes the serial device driver for the SPARClite SLEB CON1 port." | |
| 514 doc ref/ecos-ref/ecos-device-drivers.html | |
| 515 } | |
| 516 | |
| 517 cdl_option CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON1_NAME { | |
| 518 display "Device name for SPARClite SLEB serial CON1 port" | |
| 519 type string | |
| 520 requires CYGPKG_IO_SERIAL | |
| 521 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 522 description " | |
| 523 This option specifies the device name for the SPARClite SLEB CON1 port." | |
| 524 doc ref/ecos-ref/ecos-device-drivers.html | |
| 525 } | |
| 526 | |
| 527 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BAUD { | |
| 528 display "Baud rate for the SPARClite SLEB serial CON1 driver" | |
| 529 type enum | |
| 530 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 531 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 532 description " | |
| 533 This option specifies the default baud rate (speed) for the SPARClite SLEB CON1." | |
| 534 doc ref/ecos-ref/ecos-device-drivers.html | |
| 535 } | |
| 536 | |
| 537 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BUFSIZE { | |
| 538 display "Buffer size for the SPARClite SLEB serial CON1 driver" | |
| 539 type count | |
| 540 legal_values 0 to 8192 | |
| 541 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 542 description " | |
| 543 This option specifies the size of the internal buffers used for the SPARClite SLEB CON1." | |
| 544 doc ref/ecos-ref/ecos-device-drivers.html | |
| 545 } | |
| 546 | |
| 547 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 { | |
| 548 display "SPARClite SLEB serial CON2 port driver" | |
| 549 type bool | |
| 550 requires CYGPKG_IO_SERIAL | |
| 551 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 552 description " | |
| 553 This option includes the serial device driver for the SPARClite SLEB CON2 port." | |
| 554 doc ref/ecos-ref/ecos-device-drivers.html | |
| 555 } | |
| 556 | |
| 557 cdl_option CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON2_NAME { | |
| 558 display "Device name for SPARClite SLEB serial CON2 port" | |
| 559 type string | |
| 560 requires CYGPKG_IO_SERIAL | |
| 561 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 562 description " | |
| 563 This option specifies the device name for the SPARClite SLEB CON2 port." | |
| 564 doc ref/ecos-ref/ecos-device-drivers.html | |
| 565 } | |
| 566 | |
| 567 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BAUD { | |
| 568 display "Baud rate for the SPARClite SLEB serial CON2 driver" | |
| 569 type enum | |
| 570 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 571 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 572 description " | |
| 573 This option specifies the default baud rate (speed) for the SPARClite SLEB CON2." | |
| 574 doc ref/ecos-ref/ecos-device-drivers.html | |
| 575 } | |
| 576 | |
| 577 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BUFSIZE { | |
| 578 display "Buffer size for the SPARClite SLEB serial CON2 driver" | |
| 579 type count | |
| 580 legal_values 0 to 8192 | |
| 581 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 582 description " | |
| 583 This option specifies the size of the internal buffers used for the SPARClite SLEB CON2." | |
| 584 doc ref/ecos-ref/ecos-device-drivers.html | |
| 585 } | |
| 586 | |
| 587 }}CFG_DATA */ | |
| 588 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 589 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 590 #define CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON1_NAME "/dev/ser0" | |
| 591 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BAUD 19200 | |
| 592 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BUFSIZE 128 | |
| 593 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 594 #define CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON2_NAME "/dev/ser1" | |
| 595 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BAUD 19200 | |
| 596 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BUFSIZE 128 | |
| 597 | |
| 598 /* ---------------------------------------------------------------------------- | |
| 599 {{CFG_DATA | |
| 600 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904 { | |
| 601 display "TX39 JMR3904 serial device drivers" | |
| 602 type bool | |
| 603 requires CYGPKG_IO_SERIAL | |
| 604 # parent CYGPKG_IO_SERIAL | |
|
6
d376b777e2ce
Merge from eCos master repository on 1999-05-14-19:27:43-BST
jlarmour
parents:
4
diff
changeset
|
605 parent CYGPKG_HAL_MIPS_TX39_JMR3904 |
| 2 | 606 description " |
| 607 This option enables the serial device drivers for the TX39 JMR3904." | |
| 608 doc ref/ecos-ref/ecos-device-drivers.html | |
| 609 } | |
| 610 | |
| 611 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_POLLED_MODE { | |
| 612 display "TX39 JMR3904 polled mode serial drivers" | |
| 613 type bool | |
| 614 requires CYGPKG_IO_SERIAL | |
| 615 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 616 description " | |
| 617 If asserted, this option specifies that the serial device drivers for | |
| 618 the TX39 JMR3904 should be polled-mode instead of interrupt driven." | |
| 619 doc ref/ecos-ref/ecos-device-drivers.html | |
| 620 } | |
| 621 | |
| 622 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 { | |
| 623 display "TX39 JMR3904 serial port 0 driver" | |
| 624 type bool | |
| 625 requires CYGPKG_IO_SERIAL | |
| 626 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 627 description " | |
| 628 This option includes the serial device driver for port 0 on the TX39 JMR3904." | |
| 629 doc ref/ecos-ref/ecos-device-drivers.html | |
| 630 } | |
| 631 | |
| 632 cdl_option CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL0_NAME { | |
| 633 display "Device name for TX39 JMR3904 serial port 0" | |
| 634 type string | |
| 635 requires CYGPKG_IO_SERIAL | |
| 636 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 637 description " | |
| 638 This option specifies the device name port 0 on the TX39 JMR3904." | |
| 639 doc ref/ecos-ref/ecos-device-drivers.html | |
| 640 } | |
| 641 | |
| 642 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BAUD { | |
| 643 display "Baud rate for the TX39 JMR3904 serial port 0 driver" | |
| 644 type enum | |
| 645 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 646 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 647 description " | |
| 648 This option specifies the default baud rate (speed) for the TX39 JMR3904 port 0." | |
| 649 doc ref/ecos-ref/ecos-device-drivers.html | |
| 650 } | |
| 651 | |
| 652 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BUFSIZE { | |
| 653 display "Buffer size for the TX39 JMR3904 serial port 0 driver" | |
| 654 type count | |
| 655 legal_values 0 to 8192 | |
| 656 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 657 description " | |
| 658 This option specifies the size of the internal buffers used for the TX39 JMR3904 port 0." | |
| 659 doc ref/ecos-ref/ecos-device-drivers.html | |
| 660 } | |
| 661 | |
| 662 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 { | |
| 663 display "TX39 JMR3904 serial port 1 driver" | |
| 664 type bool | |
| 665 requires CYGPKG_IO_SERIAL | |
| 666 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 667 description " | |
| 668 This option includes the serial device driver for port 1 on the TX39 JMR3904." | |
| 669 doc ref/ecos-ref/ecos-device-drivers.html | |
| 670 } | |
| 671 | |
| 672 cdl_option CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL1_NAME { | |
| 673 display "Device name for TX39 JMR3904 serial port 1" | |
| 674 type string | |
| 675 requires CYGPKG_IO_SERIAL | |
| 676 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 677 description " | |
| 678 This option specifies the device name port 1 on the TX39 JMR3904." | |
| 679 doc ref/ecos-ref/ecos-device-drivers.html | |
| 680 } | |
| 681 | |
| 682 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BAUD { | |
| 683 display "Baud rate for the TX39 JMR3904 serial port 1 driver" | |
| 684 type enum | |
| 685 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 686 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 687 description " | |
| 688 This option specifies the default baud rate (speed) for the TX39 JMR3904 port 1." | |
| 689 doc ref/ecos-ref/ecos-device-drivers.html | |
| 690 } | |
| 691 | |
| 692 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BUFSIZE { | |
| 693 display "Buffer size for the TX39 JMR3904 serial port 1 driver" | |
| 694 type count | |
| 695 legal_values 0 to 8192 | |
| 696 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 697 description " | |
| 698 This option specifies the size of the internal buffers used for the TX39 JMR3904 port 1." | |
| 699 doc ref/ecos-ref/ecos-device-drivers.html | |
| 700 } | |
| 701 | |
| 702 }}CFG_DATA */ | |
| 703 #undef CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 704 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_POLLED_MODE | |
| 705 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 706 #define CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL0_NAME "/dev/ser1" | |
| 707 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BAUD 38400 | |
| 708 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BUFSIZE 128 | |
| 709 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 710 #define CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL1_NAME "/dev/ser2" | |
| 711 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BAUD 38400 | |
| 712 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BUFSIZE 128 | |
| 713 | |
|
6
d376b777e2ce
Merge from eCos master repository on 1999-05-14-19:27:43-BST
jlarmour
parents:
4
diff
changeset
|
714 |
| 2 | 715 // Note: this is not currently tied to a specific board since the ports are "on chip" |
| 716 | |
| 717 /* ---------------------------------------------------------------------------- | |
| 718 {{CFG_DATA | |
| 719 cdl_component CYGPKG_IO_SERIAL_MN10300 { | |
| 720 display "MN10300 serial device drivers" | |
| 721 type bool | |
| 722 requires CYGPKG_IO_SERIAL | |
| 723 # parent CYGPKG_IO_SERIAL | |
| 724 parent CYGPKG_HAL_MN10300 | |
| 725 description " | |
| 726 This option enables the serial device drivers for the MN10300." | |
| 727 doc ref/ecos-ref/ecos-device-drivers.html | |
| 728 } | |
| 729 | |
| 730 cdl_component CYGPKG_IO_SERIAL_MN10300_POLLED_MODE { | |
| 731 display "MN10300 polled mode serial drivers" | |
| 732 type bool | |
| 733 requires CYGPKG_IO_SERIAL | |
| 734 parent CYGPKG_IO_SERIAL_MN10300 | |
| 735 description " | |
| 736 If asserted, this option specifies that the serial device drivers for | |
| 737 the MN10300 should be polled-mode instead of interrupt driven." | |
| 738 doc ref/ecos-ref/ecos-device-drivers.html | |
| 739 } | |
| 740 | |
| 741 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL0 { | |
| 742 display "MN10300 serial port 0 driver" | |
| 743 type bool | |
| 744 requires CYGPKG_IO_SERIAL | |
| 745 parent CYGPKG_IO_SERIAL_MN10300 | |
| 746 description " | |
| 747 This option includes the serial device driver for port 0 on the MN10300." | |
| 748 doc ref/ecos-ref/ecos-device-drivers.html | |
| 749 } | |
| 750 | |
| 751 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL0_NAME { | |
| 752 display "Device name for MN10300 serial port 0" | |
| 753 type string | |
| 754 requires CYGPKG_IO_SERIAL | |
| 755 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 756 description " | |
| 757 This option specifies the device name port 0 on the MN10300." | |
| 758 doc ref/ecos-ref/ecos-device-drivers.html | |
| 759 } | |
| 760 | |
| 761 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BAUD { | |
| 762 display "Baud rate for the MN10300 serial port 0 driver" | |
| 763 type enum | |
| 764 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 765 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 766 description " | |
| 767 This option specifies the default baud rate (speed) for the MN10300 port 0." | |
| 768 doc ref/ecos-ref/ecos-device-drivers.html | |
| 769 } | |
| 770 | |
| 771 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BUFSIZE { | |
| 772 display "Buffer size for the MN10300 serial port 0 driver" | |
| 773 type count | |
| 774 legal_values 0 to 8192 | |
| 775 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 776 description " | |
| 777 This option specifies the size of the internal buffers used for the MN10300 port 0." | |
| 778 doc ref/ecos-ref/ecos-device-drivers.html | |
| 779 } | |
| 780 | |
| 781 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL1 { | |
| 782 display "MN10300 serial port 1 driver" | |
| 783 type bool | |
| 784 requires CYGPKG_IO_SERIAL | |
| 785 parent CYGPKG_IO_SERIAL_MN10300 | |
| 786 description " | |
| 787 This option includes the serial device driver for port 1 on the MN10300." | |
| 788 doc ref/ecos-ref/ecos-device-drivers.html | |
| 789 } | |
| 790 | |
| 791 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL1_NAME { | |
| 792 display "Device name for MN10300 serial port 1" | |
| 793 type string | |
| 794 requires CYGPKG_IO_SERIAL | |
| 795 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 796 description " | |
| 797 This option specifies the device name port 1 on the MN10300." | |
| 798 doc ref/ecos-ref/ecos-device-drivers.html | |
| 799 } | |
| 800 | |
| 801 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BAUD { | |
| 802 display "Baud rate for the MN10300 serial port 1 driver" | |
| 803 type enum | |
| 804 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 805 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 806 description " | |
| 807 This option specifies the default baud rate (speed) for the MN10300 port 1." | |
| 808 doc ref/ecos-ref/ecos-device-drivers.html | |
| 809 } | |
| 810 | |
| 811 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BUFSIZE { | |
| 812 display "Buffer size for the MN10300 serial port 1 driver" | |
| 813 type count | |
| 814 legal_values 0 to 8192 | |
| 815 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 816 description " | |
| 817 This option specifies the size of the internal buffers used for the MN10300 port 1." | |
| 818 doc ref/ecos-ref/ecos-device-drivers.html | |
| 819 } | |
| 820 | |
| 821 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL2 { | |
| 822 display "MN10300 serial port 2 driver" | |
| 823 type bool | |
| 824 requires CYGPKG_IO_SERIAL | |
| 825 parent CYGPKG_IO_SERIAL_MN10300 | |
| 826 description " | |
| 827 This option includes the serial device driver for port 2 on the MN10300." | |
| 828 doc ref/ecos-ref/ecos-device-drivers.html | |
| 829 } | |
| 830 | |
| 831 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL2_NAME { | |
| 832 display "Device name for MN10300 serial port 2" | |
| 833 type string | |
| 834 requires CYGPKG_IO_SERIAL | |
| 835 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 836 description " | |
| 837 This option specifies the device name port 2 on the MN10300." | |
| 838 doc ref/ecos-ref/ecos-device-drivers.html | |
| 839 } | |
| 840 | |
| 841 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BAUD { | |
| 842 display "Baud rate for the MN10300 serial port 2 driver" | |
| 843 type enum | |
| 844 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 845 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 846 description " | |
| 847 This option specifies the default baud rate (speed) for the MN10300 port 2." | |
| 848 doc ref/ecos-ref/ecos-device-drivers.html | |
| 849 } | |
| 850 | |
| 851 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BUFSIZE { | |
| 852 display "Buffer size for the MN10300 serial port 2 driver" | |
| 853 type count | |
| 854 legal_values 0 to 8192 | |
| 855 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 856 description " | |
| 857 This option specifies the size of the internal buffers used for the MN10300 port 2." | |
| 858 doc ref/ecos-ref/ecos-device-drivers.html | |
| 859 } | |
| 860 | |
| 861 }}CFG_DATA */ | |
| 862 #undef CYGPKG_IO_SERIAL_MN10300 | |
| 863 #undef CYGPKG_IO_SERIAL_MN10300_POLLED_MODE | |
| 864 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 865 #define CYGDAT_IO_SERIAL_MN10300_SERIAL0_NAME "/dev/ser0" | |
| 866 #define CYGNUM_IO_SERIAL_MN10300_SERIAL0_BAUD 38400 | |
| 867 #define CYGNUM_IO_SERIAL_MN10300_SERIAL0_BUFSIZE 128 | |
| 868 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 869 #define CYGDAT_IO_SERIAL_MN10300_SERIAL1_NAME "/dev/ser1" | |
| 870 #define CYGNUM_IO_SERIAL_MN10300_SERIAL1_BAUD 38400 | |
| 871 #define CYGNUM_IO_SERIAL_MN10300_SERIAL1_BUFSIZE 128 | |
| 872 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 873 #define CYGDAT_IO_SERIAL_MN10300_SERIAL2_NAME "/dev/ser2" | |
| 874 #define CYGNUM_IO_SERIAL_MN10300_SERIAL2_BAUD 38400 | |
| 875 #define CYGNUM_IO_SERIAL_MN10300_SERIAL2_BUFSIZE 128 | |
| 876 | |
|
10
d3fbcdfa1b2f
Merge from eCos master repository on 1999-05-29-00:13:11-BST
jlarmour
parents:
6
diff
changeset
|
877 |
| 2 | 878 #endif /* CYGONCE_PKGCONF_IO_SERIAL_H */ |
| 879 /* EOF io_serial.h */ |
