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

Subversion Repositories openrisc

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
# ====================================================================
2
#
3
#      ser_arm_aaed2000.cdl
4
#
5
#      eCos serial Agilent/AAED2000 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
# Contributors:   jskov
45
# Date:           2001-11-12
46
#
47
#####DESCRIPTIONEND####
48
#
49
# ====================================================================
50
 
51
 
52
cdl_package CYGPKG_IO_SERIAL_ARM_AAED2000 {
53
    display       "ARM AAED2000 serial device driver"
54
 
55
    parent        CYGPKG_IO_SERIAL_DEVICES
56
    active_if     CYGPKG_IO_SERIAL
57
    active_if     CYGPKG_HAL_ARM_ARM9_AAED2000
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
           Agilent AAED2000."
65
 
66
    compile       -library=libextras.a   aaed2000_serial.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_ARM_AAED2000_SERIAL0 {
75
        display       "Agilent AAED2000-1 serial port 0 driver"
76
        flavor        bool
77
        default_value 1
78
        description   "
79
            This option includes the serial device driver for the Agilent AAED2000."
80
 
81
        cdl_option CYGDAT_IO_SERIAL_ARM_AAED2000_SERIAL0_NAME {
82
            display       "Device name for the Agilent AAED2000-1 serial port driver"
83
            flavor        data
84
            default_value {"\"/dev/ser0\""}
85
            description   "
86
                This option sets the name of the serial device for the Agilent AAED2000."
87
        }
88
 
89
        cdl_option CYGNUM_IO_SERIAL_ARM_AAED2000_SERIAL0_BAUD {
90
            display       "Baud rate for the Agilent AAED2000 serial port driver"
91
            flavor        data
92
            legal_values  { 1200 2400 3600 4800 7200 9600 14400 19200 38400 57600 115200 230400 }
93
            default_value 38400
94
            description   "
95
                This option specifies the default baud rate (speed) for the Agilent AAED2000."
96
        }
97
 
98
        cdl_option CYGNUM_IO_SERIAL_ARM_AAED2000_SERIAL0_BUFSIZE {
99
            display       "Buffer size for the Agilent AAED2000 serial port driver"
100
            flavor        data
101
            legal_values  0 to 8192
102
            default_value 128
103
            description   "
104
                This option specifies the size of the internal buffers used for
105
                 the Agilent AAED2000 serial driver."
106
        }
107
    }
108
 
109
    cdl_component CYGPKG_IO_SERIAL_ARM_AAED2000_OPTIONS {
110
        display "Serial device driver build options"
111
        flavor  none
112
        description   "
113
            Package specific build options including control over
114
            compiler flags used only in building this package,
115
            and details of which tests are built."
116
 
117
 
118
        cdl_option CYGPKG_IO_SERIAL_ARM_AAED2000_CFLAGS_ADD {
119
            display "Additional compiler flags"
120
            flavor  data
121
            no_define
122
            default_value { "" }
123
            description   "
124
                This option modifies the set of compiler flags for
125
                building these serial device drivers. These flags are used in addition
126
                to the set of global flags."
127
        }
128
 
129
        cdl_option CYGPKG_IO_SERIAL_ARM_AAED2000_CFLAGS_REMOVE {
130
            display "Suppressed compiler flags"
131
            flavor  data
132
            no_define
133
            default_value { "" }
134
            description   "
135
                This option modifies the set of compiler flags for
136
                building these serial device drivers. These flags are removed from
137
                the set of global flags if present."
138
        }
139
    }
140
 
141
    cdl_component CYGPKG_IO_SERIAL_ARM_AAED2000_TESTING {
142
        display    "Testing parameters"
143
        flavor     bool
144
        calculated 1
145
        active_if  CYGPKG_IO_SERIAL_ARM_AAED2000_SERIAL0
146
 
147
        cdl_option CYGPRI_SER_TEST_SER_DEV {
148
            display       "Serial device used for testing"
149
            flavor        data
150
            default_value { CYGDAT_IO_SERIAL_ARM_AAED2000_SERIAL0_NAME }
151
        }
152
 
153
        define_proc {
154
            puts $::cdl_header "#define CYGPRI_SER_TEST_CRASH_ID \"aaed2000\""
155
            puts $::cdl_header "#define CYGPRI_SER_TEST_TTY_DEV  \"/dev/tty0\""
156
        }
157
    }
158
}
159
 
160
# EOF ser_arm_aaed2000.cdl

powered by: WebSVN 2.1.0

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