Mercurial > ecos
annotate packages/io/serial/current/include/pkgconf/io_serial.h @ 18:7253dcc42a09 ecos-sw-1999-06-25
Merge from eCos master repository on 1999-06-25-15:31:50-BST
| author | jlarmour |
|---|---|
| date | Fri, 25 Jun 1999 08:28:05 +0000 |
| parents | d3fbcdfa1b2f |
| children | 18ee5a9c102e |
| 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_HAL_ARM_PID | |
| 193 description " | |
| 194 This option enables the serial device drivers for the ARM PID." | |
| 195 doc ref/ecos-ref/ecos-device-drivers.html | |
| 196 } | |
| 197 | |
| 198 cdl_component CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 { | |
| 199 display "ARM PID serial port 0 driver" | |
| 200 type bool | |
| 201 parent CYGPKG_IO_SERIAL_ARM_PID | |
| 202 description " | |
| 203 This option includes the serial device driver for the ARM PID port 0." | |
| 204 doc ref/ecos-ref/ecos-device-drivers.html | |
| 205 } | |
| 206 | |
| 207 cdl_option CYGDAT_IO_SERIAL_ARM_PID_SERIAL0_NAME { | |
| 208 display "Device name for ARM PID serial port 0 driver" | |
| 209 type string | |
| 210 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 211 description " | |
| 212 This option specifies the name of the serial device for the ARM PID port 0." | |
| 213 doc ref/ecos-ref/ecos-device-drivers.html | |
| 214 } | |
| 215 | |
| 216 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BAUD { | |
| 217 display "Baud rate for the ARM PID serial port 0 driver" | |
| 218 type enum | |
| 219 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 220 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 221 description " | |
| 222 This option specifies the default baud rate (speed) for the ARM PID port 0." | |
| 223 doc ref/ecos-ref/ecos-device-drivers.html | |
| 224 } | |
| 225 | |
| 226 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BUFSIZE { | |
| 227 display "Buffer size for the ARM PID serial port 0 driver" | |
| 228 type count | |
| 229 legal_values 0 to 8192 | |
| 230 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 231 description " | |
| 232 This option specifies the size of the internal buffers used for the ARM PID port 0." | |
| 233 doc ref/ecos-ref/ecos-device-drivers.html | |
| 234 } | |
| 235 | |
| 236 cdl_component CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 { | |
| 237 display "ARM PID serial port 1 driver" | |
| 238 type bool | |
| 239 parent CYGPKG_IO_SERIAL_ARM_PID | |
| 240 description " | |
| 241 This option includes the serial device driver for the ARM PID port 1." | |
| 242 doc ref/ecos-ref/ecos-device-drivers.html | |
| 243 } | |
| 244 | |
| 245 cdl_option CYGDAT_IO_SERIAL_ARM_PID_SERIAL1_NAME { | |
| 246 display "Device name for ARM PID serial port 1 driver" | |
| 247 type string | |
| 248 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 249 description " | |
| 250 This option specifies the name of the serial device for the ARM PID port 1." | |
| 251 doc ref/ecos-ref/ecos-device-drivers.html | |
| 252 } | |
| 253 | |
| 254 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BAUD { | |
| 255 display "Baud rate for the ARM PID serial port 1 driver" | |
| 256 type enum | |
| 257 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 258 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 259 description " | |
| 260 This option specifies the default baud rate (speed) for the ARM PID port 1." | |
| 261 doc ref/ecos-ref/ecos-device-drivers.html | |
| 262 } | |
| 263 | |
| 264 cdl_option CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BUFSIZE { | |
| 265 display "Buffer size for the ARM PID serial port 1 driver" | |
| 266 type count | |
| 267 legal_values 0 to 8192 | |
| 268 parent CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 269 description " | |
| 270 This option specifies the size of the internal buffers used for the ARM PID port 1." | |
| 271 doc ref/ecos-ref/ecos-device-drivers.html | |
| 272 } | |
| 273 | |
| 274 }}CFG_DATA */ | |
| 275 | |
| 276 #undef CYGPKG_IO_SERIAL_ARM_PID | |
| 277 #undef CYGPKG_IO_SERIAL_ARM_PID_SERIAL0 | |
| 278 #define CYGDAT_IO_SERIAL_ARM_PID_SERIAL0_NAME "/dev/ser0" | |
| 279 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BAUD 38400 | |
| 280 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL0_BUFSIZE 128 | |
| 281 #define CYGPKG_IO_SERIAL_ARM_PID_SERIAL1 | |
| 282 #define CYGDAT_IO_SERIAL_ARM_PID_SERIAL1_NAME "/dev/ser1" | |
| 283 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BAUD 38400 | |
| 284 #define CYGNUM_IO_SERIAL_ARM_PID_SERIAL1_BUFSIZE 128 | |
| 285 | |
| 286 /* ---------------------------------------------------------------------------- | |
| 287 {{CFG_DATA | |
| 288 cdl_component CYGPKG_IO_SERIAL_ARM_AEB { | |
| 289 display "ARM AEB-1 serial device drivers" | |
| 290 type bool | |
| 291 requires CYGPKG_IO_SERIAL | |
| 292 parent CYGPKG_HAL_ARM_AEB | |
| 293 description " | |
| 294 This option enables the serial device drivers for the ARM AEB-1." | |
| 295 doc ref/ecos-ref/ecos-device-drivers.html | |
| 296 } | |
| 297 | |
| 298 cdl_component CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 { | |
| 299 display "ARM AEB-1 serial port 0 driver" | |
| 300 type bool | |
| 301 parent CYGPKG_IO_SERIAL_ARM_AEB | |
| 302 description " | |
| 303 This option includes the serial device driver for the ARM AEB-1 port 0." | |
| 304 doc ref/ecos-ref/ecos-device-drivers.html | |
| 305 } | |
| 306 | |
| 307 cdl_option CYGDAT_IO_SERIAL_ARM_AEB_SERIAL0_NAME { | |
| 308 display "Device name for the ARM AEB-1 serial port 0 driver" | |
| 309 type string | |
| 310 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 311 description " | |
| 312 This option sets the name of the serial device for the ARM AEB-1 port 0." | |
| 313 doc ref/ecos-ref/ecos-device-drivers.html | |
| 314 } | |
| 315 | |
| 316 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BAUD { | |
| 317 display "Baud rate for the ARM AEB-1 serial port 0 driver" | |
| 318 type enum | |
| 319 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 320 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 321 description " | |
| 322 This option specifies the default baud rate (speed) for the ARM AEB-1 port 0." | |
| 323 doc ref/ecos-ref/ecos-device-drivers.html | |
| 324 } | |
| 325 | |
| 326 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BUFSIZE { | |
| 327 display "Buffer size for the ARM AEB-1 serial port 0 driver" | |
| 328 type count | |
| 329 legal_values 0 to 8192 | |
| 330 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 331 description " | |
| 332 This option specifies the size of the internal buffers used for the ARM AEB-1 port 0." | |
| 333 doc ref/ecos-ref/ecos-device-drivers.html | |
| 334 } | |
| 335 | |
| 336 cdl_component CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 { | |
| 337 display "ARM AEB-1 serial port 1 driver" | |
| 338 type bool | |
| 339 parent CYGPKG_IO_SERIAL_ARM_AEB | |
| 340 description " | |
| 341 This option includes the serial device driver for the ARM AEB-1 port 1." | |
| 342 doc ref/ecos-ref/ecos-device-drivers.html | |
| 343 } | |
| 344 | |
| 345 cdl_option CYGDAT_IO_SERIAL_ARM_AEB_SERIAL1_NAME { | |
| 346 display "Device name for the ARM AEB-1 serial port 1 driver" | |
| 347 type string | |
| 348 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 349 description " | |
| 350 This option specifies the name of serial device for the ARM AEB-1 port 1." | |
| 351 doc ref/ecos-ref/ecos-device-drivers.html | |
| 352 } | |
| 353 | |
| 354 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BAUD { | |
| 355 display "Baud rate for the ARM AEB-1 serial port 1 driver" | |
| 356 type enum | |
| 357 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 358 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 359 description " | |
| 360 This option specifies the default baud rate (speed) for the ARM AEB-1 port 1." | |
| 361 doc ref/ecos-ref/ecos-device-drivers.html | |
| 362 } | |
| 363 | |
| 364 cdl_option CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BUFSIZE { | |
| 365 display "Buffer size for the ARM AEB-1 serial port 1 driver" | |
| 366 type count | |
| 367 legal_values 0 to 8192 | |
| 368 parent CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 369 description " | |
| 370 This option specifies the size of the internal buffers used for the ARM AEB-1 port 1." | |
| 371 doc ref/ecos-ref/ecos-device-drivers.html | |
| 372 } | |
| 373 | |
| 374 }}CFG_DATA */ | |
| 375 #undef CYGPKG_IO_SERIAL_ARM_AEB | |
| 376 #undef CYGPKG_IO_SERIAL_ARM_AEB_SERIAL0 | |
| 377 #define CYGDAT_IO_SERIAL_ARM_AEB_SERIAL0_NAME "/dev/ser0" | |
| 378 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BAUD 38400 | |
| 379 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL0_BUFSIZE 128 | |
| 380 #undef CYGPKG_IO_SERIAL_ARM_AEB_SERIAL1 | |
| 381 #define CYGDAT_IO_SERIAL_ARM_AEB_SERIAL1_NAME "/dev/ser1" | |
| 382 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BAUD 38400 | |
| 383 #define CYGNUM_IO_SERIAL_ARM_AEB_SERIAL1_BUFSIZE 128 | |
| 384 | |
| 385 | |
|
4
1d7f19c9e4d1
Merge from eCos master repository on 1999-05-11-21:11:10-BST
jlarmour
parents:
2
diff
changeset
|
386 |
| 2 | 387 /* ---------------------------------------------------------------------------- |
| 388 {{CFG_DATA | |
| 389 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT { | |
| 390 display "Cogent PowerPC serial device drivers" | |
| 391 type bool | |
| 392 requires CYGPKG_IO_SERIAL | |
| 393 parent CYGPKG_HAL_POWERPC_COGENT | |
| 394 description " | |
| 395 This option enables the serial device drivers for the Cogent PowerPC." | |
| 396 doc ref/ecos-ref/ecos-device-drivers.html | |
| 397 } | |
| 398 | |
| 399 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A { | |
| 400 display "Cogent PowerPC serial port A driver" | |
| 401 type bool | |
| 402 requires CYGPKG_IO_SERIAL | |
| 403 parent CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 404 description " | |
| 405 This option includes the serial device driver for the Cogent PowerPC port A." | |
| 406 doc ref/ecos-ref/ecos-device-drivers.html | |
| 407 } | |
| 408 | |
| 409 cdl_option CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_A_NAME { | |
| 410 display "Device name for Cogent PowerPC serial port A" | |
| 411 type string | |
| 412 requires CYGPKG_IO_SERIAL | |
| 413 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 414 description " | |
| 415 This option specifies the device name for the Cogent PowerPC port A." | |
| 416 doc ref/ecos-ref/ecos-device-drivers.html | |
| 417 } | |
| 418 | |
| 419 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BAUD { | |
| 420 display "Baud rate for the Cogent PowerPC serial port A driver" | |
| 421 type enum | |
| 422 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 423 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 424 description " | |
| 425 This option specifies the default baud rate (speed) for the Cogent PowerPC port A." | |
| 426 doc ref/ecos-ref/ecos-device-drivers.html | |
| 427 } | |
| 428 | |
| 429 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BUFSIZE { | |
| 430 display "Buffer size for the Cogent PowerPC serial port A driver" | |
| 431 type count | |
| 432 legal_values 0 to 8192 | |
| 433 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 434 description " | |
| 435 This option specifies the size of the internal buffers used for the Cogent PowerPC port A." | |
| 436 doc ref/ecos-ref/ecos-device-drivers.html | |
| 437 } | |
| 438 | |
| 439 cdl_component CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B { | |
| 440 display "Cogent PowerPC serial port B driver" | |
| 441 type bool | |
| 442 requires CYGPKG_IO_SERIAL | |
| 443 parent CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 444 description " | |
| 445 This option includes the serial device driver for the Cogent PowerPC port B." | |
| 446 doc ref/ecos-ref/ecos-device-drivers.html | |
| 447 } | |
| 448 | |
| 449 cdl_option CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_B_NAME { | |
| 450 display "Device name for Cogent PowerPC serial port B" | |
| 451 type string | |
| 452 requires CYGPKG_IO_SERIAL | |
| 453 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 454 description " | |
| 455 This option specifies the device name for the Cogent PowerPC port B." | |
| 456 doc ref/ecos-ref/ecos-device-drivers.html | |
| 457 } | |
| 458 | |
| 459 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BAUD { | |
| 460 display "Baud rate for the Cogent PowerPC serial port B driver" | |
| 461 type enum | |
| 462 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 463 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 464 description " | |
| 465 This option specifies the default baud rate (speed) for the Cogent PowerPC port B." | |
| 466 doc ref/ecos-ref/ecos-device-drivers.html | |
| 467 } | |
| 468 | |
| 469 cdl_option CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BUFSIZE { | |
| 470 display "Buffer size for the Cogent PowerPC serial port B driver" | |
| 471 type count | |
| 472 legal_values 0 to 8192 | |
| 473 parent CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 474 description " | |
| 475 This option specifies the size of the internal buffers used for the Cogent PowerPC port B." | |
| 476 doc ref/ecos-ref/ecos-device-drivers.html | |
| 477 } | |
| 478 | |
| 479 }}CFG_DATA */ | |
| 480 #undef CYGPKG_IO_SERIAL_POWERPC_COGENT | |
| 481 // Only enable both ports if interrupt chaining is enabled. | |
| 482 #undef CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_A | |
| 483 #define CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_A_NAME "/dev/ser1" | |
| 484 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BAUD 38400 | |
| 485 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_A_BUFSIZE 128 | |
| 486 #define CYGPKG_IO_SERIAL_POWERPC_COGENT_SERIAL_B | |
| 487 #define CYGDAT_IO_SERIAL_POWERPC_COGENT_SERIAL_B_NAME "/dev/ser2" | |
| 488 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BAUD 38400 | |
| 489 #define CYGNUM_IO_SERIAL_POWERPC_COGENT_SERIAL_B_BUFSIZE 128 | |
| 490 | |
|
18
7253dcc42a09
Merge from eCos master repository on 1999-06-25-15:31:50-BST
jlarmour
parents:
10
diff
changeset
|
491 |
| 2 | 492 /* ---------------------------------------------------------------------------- |
| 493 {{CFG_DATA | |
| 494 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB { | |
| 495 display "SPARClite SLEB serial device drivers" | |
| 496 type bool | |
| 497 requires CYGPKG_IO_SERIAL | |
| 498 parent CYGPKG_HAL_SPARCLITE_SLEB | |
| 499 description " | |
| 500 This option enables the serial device drivers for the SPARClite SLEB." | |
| 501 doc ref/ecos-ref/ecos-device-drivers.html | |
| 502 } | |
| 503 | |
| 504 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 { | |
| 505 display "SPARClite SLEB serial CON1 port driver" | |
| 506 type bool | |
| 507 requires CYGPKG_IO_SERIAL | |
| 508 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 509 description " | |
| 510 This option includes the serial device driver for the SPARClite SLEB CON1 port." | |
| 511 doc ref/ecos-ref/ecos-device-drivers.html | |
| 512 } | |
| 513 | |
| 514 cdl_option CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON1_NAME { | |
| 515 display "Device name for SPARClite SLEB serial CON1 port" | |
| 516 type string | |
| 517 requires CYGPKG_IO_SERIAL | |
| 518 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 519 description " | |
| 520 This option specifies the device name for the SPARClite SLEB CON1 port." | |
| 521 doc ref/ecos-ref/ecos-device-drivers.html | |
| 522 } | |
| 523 | |
| 524 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BAUD { | |
| 525 display "Baud rate for the SPARClite SLEB serial CON1 driver" | |
| 526 type enum | |
| 527 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 528 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 529 description " | |
| 530 This option specifies the default baud rate (speed) for the SPARClite SLEB CON1." | |
| 531 doc ref/ecos-ref/ecos-device-drivers.html | |
| 532 } | |
| 533 | |
| 534 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BUFSIZE { | |
| 535 display "Buffer size for the SPARClite SLEB serial CON1 driver" | |
| 536 type count | |
| 537 legal_values 0 to 8192 | |
| 538 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 539 description " | |
| 540 This option specifies the size of the internal buffers used for the SPARClite SLEB CON1." | |
| 541 doc ref/ecos-ref/ecos-device-drivers.html | |
| 542 } | |
| 543 | |
| 544 cdl_component CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 { | |
| 545 display "SPARClite SLEB serial CON2 port driver" | |
| 546 type bool | |
| 547 requires CYGPKG_IO_SERIAL | |
| 548 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 549 description " | |
| 550 This option includes the serial device driver for the SPARClite SLEB CON2 port." | |
| 551 doc ref/ecos-ref/ecos-device-drivers.html | |
| 552 } | |
| 553 | |
| 554 cdl_option CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON2_NAME { | |
| 555 display "Device name for SPARClite SLEB serial CON2 port" | |
| 556 type string | |
| 557 requires CYGPKG_IO_SERIAL | |
| 558 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 559 description " | |
| 560 This option specifies the device name for the SPARClite SLEB CON2 port." | |
| 561 doc ref/ecos-ref/ecos-device-drivers.html | |
| 562 } | |
| 563 | |
| 564 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BAUD { | |
| 565 display "Baud rate for the SPARClite SLEB serial CON2 driver" | |
| 566 type enum | |
| 567 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 568 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 569 description " | |
| 570 This option specifies the default baud rate (speed) for the SPARClite SLEB CON2." | |
| 571 doc ref/ecos-ref/ecos-device-drivers.html | |
| 572 } | |
| 573 | |
| 574 cdl_option CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BUFSIZE { | |
| 575 display "Buffer size for the SPARClite SLEB serial CON2 driver" | |
| 576 type count | |
| 577 legal_values 0 to 8192 | |
| 578 parent CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 579 description " | |
| 580 This option specifies the size of the internal buffers used for the SPARClite SLEB CON2." | |
| 581 doc ref/ecos-ref/ecos-device-drivers.html | |
| 582 } | |
| 583 | |
| 584 }}CFG_DATA */ | |
| 585 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB | |
| 586 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON1 | |
| 587 #define CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON1_NAME "/dev/ser0" | |
| 588 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BAUD 19200 | |
| 589 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON1_BUFSIZE 128 | |
| 590 #undef CYGPKG_IO_SERIAL_SPARCLITE_SLEB_CON2 | |
| 591 #define CYGDAT_IO_SERIAL_SPARCLITE_SLEB_CON2_NAME "/dev/ser1" | |
| 592 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BAUD 19200 | |
| 593 #define CYGNUM_IO_SERIAL_SPARCLITE_SLEB_CON2_BUFSIZE 128 | |
| 594 | |
| 595 /* ---------------------------------------------------------------------------- | |
| 596 {{CFG_DATA | |
| 597 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904 { | |
| 598 display "TX39 JMR3904 serial device drivers" | |
| 599 type bool | |
| 600 requires CYGPKG_IO_SERIAL | |
|
6
d376b777e2ce
Merge from eCos master repository on 1999-05-14-19:27:43-BST
jlarmour
parents:
4
diff
changeset
|
601 parent CYGPKG_HAL_MIPS_TX39_JMR3904 |
| 2 | 602 description " |
| 603 This option enables the serial device drivers for the TX39 JMR3904." | |
| 604 doc ref/ecos-ref/ecos-device-drivers.html | |
| 605 } | |
| 606 | |
| 607 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_POLLED_MODE { | |
| 608 display "TX39 JMR3904 polled mode serial drivers" | |
| 609 type bool | |
| 610 requires CYGPKG_IO_SERIAL | |
| 611 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 612 description " | |
| 613 If asserted, this option specifies that the serial device drivers for | |
| 614 the TX39 JMR3904 should be polled-mode instead of interrupt driven." | |
| 615 doc ref/ecos-ref/ecos-device-drivers.html | |
| 616 } | |
| 617 | |
| 618 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 { | |
| 619 display "TX39 JMR3904 serial port 0 driver" | |
| 620 type bool | |
| 621 requires CYGPKG_IO_SERIAL | |
| 622 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 623 description " | |
| 624 This option includes the serial device driver for port 0 on the TX39 JMR3904." | |
| 625 doc ref/ecos-ref/ecos-device-drivers.html | |
| 626 } | |
| 627 | |
| 628 cdl_option CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL0_NAME { | |
| 629 display "Device name for TX39 JMR3904 serial port 0" | |
| 630 type string | |
| 631 requires CYGPKG_IO_SERIAL | |
| 632 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 633 description " | |
| 634 This option specifies the device name port 0 on the TX39 JMR3904." | |
| 635 doc ref/ecos-ref/ecos-device-drivers.html | |
| 636 } | |
| 637 | |
| 638 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BAUD { | |
| 639 display "Baud rate for the TX39 JMR3904 serial port 0 driver" | |
| 640 type enum | |
| 641 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 642 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 643 description " | |
| 644 This option specifies the default baud rate (speed) for the TX39 JMR3904 port 0." | |
| 645 doc ref/ecos-ref/ecos-device-drivers.html | |
| 646 } | |
| 647 | |
| 648 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BUFSIZE { | |
| 649 display "Buffer size for the TX39 JMR3904 serial port 0 driver" | |
| 650 type count | |
| 651 legal_values 0 to 8192 | |
| 652 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 653 description " | |
| 654 This option specifies the size of the internal buffers used for the TX39 JMR3904 port 0." | |
| 655 doc ref/ecos-ref/ecos-device-drivers.html | |
| 656 } | |
| 657 | |
| 658 cdl_component CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 { | |
| 659 display "TX39 JMR3904 serial port 1 driver" | |
| 660 type bool | |
| 661 requires CYGPKG_IO_SERIAL | |
| 662 parent CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 663 description " | |
| 664 This option includes the serial device driver for port 1 on the TX39 JMR3904." | |
| 665 doc ref/ecos-ref/ecos-device-drivers.html | |
| 666 } | |
| 667 | |
| 668 cdl_option CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL1_NAME { | |
| 669 display "Device name for TX39 JMR3904 serial port 1" | |
| 670 type string | |
| 671 requires CYGPKG_IO_SERIAL | |
| 672 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 673 description " | |
| 674 This option specifies the device name port 1 on the TX39 JMR3904." | |
| 675 doc ref/ecos-ref/ecos-device-drivers.html | |
| 676 } | |
| 677 | |
| 678 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BAUD { | |
| 679 display "Baud rate for the TX39 JMR3904 serial port 1 driver" | |
| 680 type enum | |
| 681 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 682 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 683 description " | |
| 684 This option specifies the default baud rate (speed) for the TX39 JMR3904 port 1." | |
| 685 doc ref/ecos-ref/ecos-device-drivers.html | |
| 686 } | |
| 687 | |
| 688 cdl_option CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BUFSIZE { | |
| 689 display "Buffer size for the TX39 JMR3904 serial port 1 driver" | |
| 690 type count | |
| 691 legal_values 0 to 8192 | |
| 692 parent CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 693 description " | |
| 694 This option specifies the size of the internal buffers used for the TX39 JMR3904 port 1." | |
| 695 doc ref/ecos-ref/ecos-device-drivers.html | |
| 696 } | |
| 697 | |
| 698 }}CFG_DATA */ | |
| 699 #undef CYGPKG_IO_SERIAL_TX39_JMR3904 | |
| 700 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_POLLED_MODE | |
| 701 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL0 | |
| 702 #define CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL0_NAME "/dev/ser1" | |
| 703 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BAUD 38400 | |
| 704 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL0_BUFSIZE 128 | |
| 705 #undef CYGPKG_IO_SERIAL_TX39_JMR3904_SERIAL1 | |
| 706 #define CYGDAT_IO_SERIAL_TX39_JMR3904_SERIAL1_NAME "/dev/ser2" | |
| 707 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BAUD 38400 | |
| 708 #define CYGNUM_IO_SERIAL_TX39_JMR3904_SERIAL1_BUFSIZE 128 | |
| 709 | |
|
6
d376b777e2ce
Merge from eCos master repository on 1999-05-14-19:27:43-BST
jlarmour
parents:
4
diff
changeset
|
710 |
| 2 | 711 // Note: this is not currently tied to a specific board since the ports are "on chip" |
| 712 | |
| 713 /* ---------------------------------------------------------------------------- | |
| 714 {{CFG_DATA | |
| 715 cdl_component CYGPKG_IO_SERIAL_MN10300 { | |
| 716 display "MN10300 serial device drivers" | |
| 717 type bool | |
| 718 requires CYGPKG_IO_SERIAL | |
| 719 parent CYGPKG_HAL_MN10300 | |
| 720 description " | |
| 721 This option enables the serial device drivers for the MN10300." | |
| 722 doc ref/ecos-ref/ecos-device-drivers.html | |
| 723 } | |
| 724 | |
| 725 cdl_component CYGPKG_IO_SERIAL_MN10300_POLLED_MODE { | |
| 726 display "MN10300 polled mode serial drivers" | |
| 727 type bool | |
| 728 requires CYGPKG_IO_SERIAL | |
| 729 parent CYGPKG_IO_SERIAL_MN10300 | |
| 730 description " | |
| 731 If asserted, this option specifies that the serial device drivers for | |
| 732 the MN10300 should be polled-mode instead of interrupt driven." | |
| 733 doc ref/ecos-ref/ecos-device-drivers.html | |
| 734 } | |
| 735 | |
| 736 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL0 { | |
| 737 display "MN10300 serial port 0 driver" | |
| 738 type bool | |
| 739 requires CYGPKG_IO_SERIAL | |
| 740 parent CYGPKG_IO_SERIAL_MN10300 | |
| 741 description " | |
| 742 This option includes the serial device driver for port 0 on the MN10300." | |
| 743 doc ref/ecos-ref/ecos-device-drivers.html | |
| 744 } | |
| 745 | |
| 746 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL0_NAME { | |
| 747 display "Device name for MN10300 serial port 0" | |
| 748 type string | |
| 749 requires CYGPKG_IO_SERIAL | |
| 750 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 751 description " | |
| 752 This option specifies the device name port 0 on the MN10300." | |
| 753 doc ref/ecos-ref/ecos-device-drivers.html | |
| 754 } | |
| 755 | |
| 756 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BAUD { | |
| 757 display "Baud rate for the MN10300 serial port 0 driver" | |
| 758 type enum | |
| 759 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 760 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 761 description " | |
| 762 This option specifies the default baud rate (speed) for the MN10300 port 0." | |
| 763 doc ref/ecos-ref/ecos-device-drivers.html | |
| 764 } | |
| 765 | |
| 766 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL0_BUFSIZE { | |
| 767 display "Buffer size for the MN10300 serial port 0 driver" | |
| 768 type count | |
| 769 legal_values 0 to 8192 | |
| 770 parent CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 771 description " | |
| 772 This option specifies the size of the internal buffers used for the MN10300 port 0." | |
| 773 doc ref/ecos-ref/ecos-device-drivers.html | |
| 774 } | |
| 775 | |
| 776 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL1 { | |
| 777 display "MN10300 serial port 1 driver" | |
| 778 type bool | |
| 779 requires CYGPKG_IO_SERIAL | |
| 780 parent CYGPKG_IO_SERIAL_MN10300 | |
| 781 description " | |
| 782 This option includes the serial device driver for port 1 on the MN10300." | |
| 783 doc ref/ecos-ref/ecos-device-drivers.html | |
| 784 } | |
| 785 | |
| 786 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL1_NAME { | |
| 787 display "Device name for MN10300 serial port 1" | |
| 788 type string | |
| 789 requires CYGPKG_IO_SERIAL | |
| 790 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 791 description " | |
| 792 This option specifies the device name port 1 on the MN10300." | |
| 793 doc ref/ecos-ref/ecos-device-drivers.html | |
| 794 } | |
| 795 | |
| 796 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BAUD { | |
| 797 display "Baud rate for the MN10300 serial port 1 driver" | |
| 798 type enum | |
| 799 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 800 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 801 description " | |
| 802 This option specifies the default baud rate (speed) for the MN10300 port 1." | |
| 803 doc ref/ecos-ref/ecos-device-drivers.html | |
| 804 } | |
| 805 | |
| 806 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL1_BUFSIZE { | |
| 807 display "Buffer size for the MN10300 serial port 1 driver" | |
| 808 type count | |
| 809 legal_values 0 to 8192 | |
| 810 parent CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 811 description " | |
| 812 This option specifies the size of the internal buffers used for the MN10300 port 1." | |
| 813 doc ref/ecos-ref/ecos-device-drivers.html | |
| 814 } | |
| 815 | |
| 816 cdl_component CYGPKG_IO_SERIAL_MN10300_SERIAL2 { | |
| 817 display "MN10300 serial port 2 driver" | |
| 818 type bool | |
| 819 requires CYGPKG_IO_SERIAL | |
| 820 parent CYGPKG_IO_SERIAL_MN10300 | |
| 821 description " | |
| 822 This option includes the serial device driver for port 2 on the MN10300." | |
| 823 doc ref/ecos-ref/ecos-device-drivers.html | |
| 824 } | |
| 825 | |
| 826 cdl_option CYGDAT_IO_SERIAL_MN10300_SERIAL2_NAME { | |
| 827 display "Device name for MN10300 serial port 2" | |
| 828 type string | |
| 829 requires CYGPKG_IO_SERIAL | |
| 830 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 831 description " | |
| 832 This option specifies the device name port 2 on the MN10300." | |
| 833 doc ref/ecos-ref/ecos-device-drivers.html | |
| 834 } | |
| 835 | |
| 836 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BAUD { | |
| 837 display "Baud rate for the MN10300 serial port 2 driver" | |
| 838 type enum | |
| 839 legal_values 50 75 110 134_5 150 200 300 600 1200 1800 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 234000 | |
| 840 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 841 description " | |
| 842 This option specifies the default baud rate (speed) for the MN10300 port 2." | |
| 843 doc ref/ecos-ref/ecos-device-drivers.html | |
| 844 } | |
| 845 | |
| 846 cdl_option CYGNUM_IO_SERIAL_MN10300_SERIAL2_BUFSIZE { | |
| 847 display "Buffer size for the MN10300 serial port 2 driver" | |
| 848 type count | |
| 849 legal_values 0 to 8192 | |
| 850 parent CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 851 description " | |
| 852 This option specifies the size of the internal buffers used for the MN10300 port 2." | |
| 853 doc ref/ecos-ref/ecos-device-drivers.html | |
| 854 } | |
| 855 | |
| 856 }}CFG_DATA */ | |
| 857 #undef CYGPKG_IO_SERIAL_MN10300 | |
| 858 #undef CYGPKG_IO_SERIAL_MN10300_POLLED_MODE | |
| 859 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL0 | |
| 860 #define CYGDAT_IO_SERIAL_MN10300_SERIAL0_NAME "/dev/ser0" | |
| 861 #define CYGNUM_IO_SERIAL_MN10300_SERIAL0_BAUD 38400 | |
| 862 #define CYGNUM_IO_SERIAL_MN10300_SERIAL0_BUFSIZE 128 | |
| 863 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL1 | |
| 864 #define CYGDAT_IO_SERIAL_MN10300_SERIAL1_NAME "/dev/ser1" | |
| 865 #define CYGNUM_IO_SERIAL_MN10300_SERIAL1_BAUD 38400 | |
| 866 #define CYGNUM_IO_SERIAL_MN10300_SERIAL1_BUFSIZE 128 | |
| 867 #undef CYGPKG_IO_SERIAL_MN10300_SERIAL2 | |
| 868 #define CYGDAT_IO_SERIAL_MN10300_SERIAL2_NAME "/dev/ser2" | |
| 869 #define CYGNUM_IO_SERIAL_MN10300_SERIAL2_BAUD 38400 | |
| 870 #define CYGNUM_IO_SERIAL_MN10300_SERIAL2_BUFSIZE 128 | |
| 871 | |
|
10
d3fbcdfa1b2f
Merge from eCos master repository on 1999-05-29-00:13:11-BST
jlarmour
parents:
6
diff
changeset
|
872 |
| 2 | 873 #endif /* CYGONCE_PKGCONF_IO_SERIAL_H */ |
| 874 /* EOF io_serial.h */ |
