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

Subversion Repositories openrisc_2011-10-31

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
# ====================================================================
2
#
3
#      ser_MCF5272_uart.cdl
4
#
5
#      eCos serial driver for MCF5272 UART
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
 
42
cdl_package CYGPKG_IO_SERIAL_MCF5272_UART {
43
    display       "Serial driver for MCF5272 UART"
44
 
45
    parent        CYGPKG_IO_SERIAL_DEVICES
46
    active_if     CYGPKG_IO_SERIAL
47
    requires      CYGPKG_ERROR
48
    include_dir   cyg/io
49
    description   "
50
           This option enables the serial device drivers for the
51
           GMPU boards."
52
 
53
    compile       -library=libextras.a   ser_mcf5272_uart.c
54
 
55
    #define_proc {
56
    #    puts $::cdl_system_header "/***** serial driver proc output start *****/"
57
    #    puts $::cdl_system_header "#define CYGDAT_IO_SERIAL_DEVICE_HEADER "
58
    #    puts $::cdl_system_header "/*****  serial driver proc output end  *****/"
59
    #}
60
 
61
 
62
    cdl_component CYGPKG_IO_SERIAL_MCF5272_UART_CHANNEL0 {
63
        display       "MCF5272 UART serial port 0 driver"
64
        flavor        bool
65
        default_value 1
66
 
67
        implements    CYGINT_IO_SERIAL_FLOW_CONTROL_HW
68
        implements    CYGINT_IO_SERIAL_LINE_STATUS_HW
69
 
70
        description   "This option includes the serial device driver for the MCF5272 UART port 0."
71
 
72
        cdl_option CYGDAT_IO_SERIAL_MCF5272_UART_CHANNEL0_NAME {
73
            display       "Device name for the MCF5272 UART serial port 0 driver"
74
            flavor        data
75
            default_value {"\"/dev/ser0\""}
76
            description   "
77
                This option specifies the name of serial device for the
78
                MCF5272 UART port 0."
79
         }
80
 
81
        cdl_option CYGNUM_IO_SERIAL_MCF5272_UART_CHANNEL0_BAUD {
82
            display       "Baud rate for the MCF5272 UART serial port 0 driver"
83
            flavor        data
84
            legal_values   {1200 2400 4800 9600 14400 19200 38400 115200}
85
            default_value 9600
86
            description   "
87
                This option specifies the default baud rate (speed) for the
88
                MCF5272 UART port 0."
89
        }
90
 
91
        cdl_option CYGNUM_IO_SERIAL_MCF5272_UART_CHANNEL0_BUFSIZE {
92
            display       "Buffer size for the MCF5272 UART serial port 0 driver"
93
            flavor        data
94
            legal_values  0 to 8192
95
            default_value 128
96
            description   "
97
                This option specifies the size of the internal buffers used
98
                for the MCF5272 UART port 0."
99
        }
100
    }
101
 
102
    cdl_component CYGPKG_IO_SERIAL_MCF5272_UART_CHANNEL1 {
103
        display       "MCF5272 UART serial port 1 driver"
104
        flavor        bool
105
        default_value 0
106
 
107
        implements    CYGINT_IO_SERIAL_FLOW_CONTROL_HW
108
        implements    CYGINT_IO_SERIAL_LINE_STATUS_HW
109
 
110
        description   "This option includes the serial device driver for the MCF5272 UART port 1."
111
 
112
        cdl_option CYGDAT_IO_SERIAL_MCF5272_UART_CHANNEL1_NAME {
113
            display       "Device name for the MCF5272 UART serial port 1 driver"
114
            flavor        data
115
            default_value {"\"/dev/ser1\""}
116
            description   "
117
                This option specifies the name of serial device for the
118
                MCF5272 UART port 1."
119
         }
120
 
121
        cdl_option CYGNUM_IO_SERIAL_MCF5272_UART_CHANNEL1_BAUD {
122
            display       "Baud rate for the MCF5272 UART serial port 1 driver"
123
            flavor        data
124
            legal_values   {1200 2400 4800 9600 14400 19200 38400 115200}
125
            default_value 9600
126
            description   "
127
                This option specifies the default baud rate (speed) for the
128
                MCF5272 UART port 1."
129
        }
130
 
131
        cdl_option CYGNUM_IO_SERIAL_MCF5272_UART_CHANNEL1_BUFSIZE {
132
            display       "Buffer size for the MCF5272 UART serial port 1 driver"
133
            flavor        data
134
            legal_values  0 to 8192
135
            default_value 128
136
            description   "
137
                This option specifies the size of the internal buffers used
138
                for the MCF5272 UART port 1."
139
        }
140
    }
141
}
142
 

powered by: WebSVN 2.1.0

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