1 |
27 |
unneback |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// io/serial/arm/arm_iq80321_ser.inl
|
4 |
|
|
//
|
5 |
|
|
// IQ80321 Serial I/O definitions
|
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): msalter
|
44 |
|
|
// Contributors: msalter
|
45 |
|
|
// Date: 2000-10-10
|
46 |
|
|
// Purpose: IQ80321 Serial I/O module (interrupt driven version)
|
47 |
|
|
// Description:
|
48 |
|
|
//
|
49 |
|
|
//####DESCRIPTIONEND####
|
50 |
|
|
//
|
51 |
|
|
//==========================================================================
|
52 |
|
|
|
53 |
|
|
#include
|
54 |
|
|
#include // platform definitions
|
55 |
|
|
|
56 |
|
|
//-----------------------------------------------------------------------------
|
57 |
|
|
// Baud rate specification
|
58 |
|
|
|
59 |
|
|
static unsigned short select_baud[] = {
|
60 |
|
|
0, // Unused
|
61 |
|
|
0, // 50
|
62 |
|
|
0, // 75
|
63 |
|
|
1047, // 110
|
64 |
|
|
0, // 134.5
|
65 |
|
|
768, // 150
|
66 |
|
|
0, // 200
|
67 |
|
|
384, // 300
|
68 |
|
|
192, // 600
|
69 |
|
|
96, // 1200
|
70 |
|
|
24, // 1800
|
71 |
|
|
48, // 2400
|
72 |
|
|
0, // 3600
|
73 |
|
|
24, // 4800
|
74 |
|
|
16, // 7200
|
75 |
|
|
12, // 9600
|
76 |
|
|
8, // 14400
|
77 |
|
|
6, // 19200
|
78 |
|
|
3, // 38400
|
79 |
|
|
2, // 57600
|
80 |
|
|
1, // 115200
|
81 |
|
|
};
|
82 |
|
|
|
83 |
|
|
#ifdef CYGPKG_IO_SERIAL_ARM_IQ80321_SERIAL0
|
84 |
|
|
static pc_serial_info iq80321_serial_info0 = {IQ80321_UART_ADDR,
|
85 |
|
|
CYGNUM_HAL_INTERRUPT_UART};
|
86 |
|
|
#if CYGNUM_IO_SERIAL_ARM_IQ80321_SERIAL0_BUFSIZE > 0
|
87 |
|
|
static unsigned char iq80321_serial_out_buf0[CYGNUM_IO_SERIAL_ARM_IQ80321_SERIAL0_BUFSIZE];
|
88 |
|
|
static unsigned char iq80321_serial_in_buf0[CYGNUM_IO_SERIAL_ARM_IQ80321_SERIAL0_BUFSIZE];
|
89 |
|
|
|
90 |
|
|
static SERIAL_CHANNEL_USING_INTERRUPTS(iq80321_serial_channel0,
|
91 |
|
|
pc_serial_funs,
|
92 |
|
|
iq80321_serial_info0,
|
93 |
|
|
CYG_SERIAL_BAUD_RATE(CYGNUM_IO_SERIAL_ARM_IQ80321_SERIAL0_BAUD),
|
94 |
|
|
CYG_SERIAL_STOP_DEFAULT,
|
95 |
|
|
CYG_SERIAL_PARITY_DEFAULT,
|
96 |
|
|
CYG_SERIAL_WORD_LENGTH_DEFAULT,
|
97 |
|
|
CYG_SERIAL_FLAGS_DEFAULT,
|
98 |
|
|
&iq80321_serial_out_buf0[0], sizeof(iq80321_serial_out_buf0),
|
99 |
|
|
&iq80321_serial_in_buf0[0], sizeof(iq80321_serial_in_buf0)
|
100 |
|
|
);
|
101 |
|
|
#else
|
102 |
|
|
static SERIAL_CHANNEL(iq80321_serial_channel0,
|
103 |
|
|
pc_serial_funs,
|
104 |
|
|
iq80321_serial_info0,
|
105 |
|
|
CYG_SERIAL_BAUD_RATE(CYGNUM_IO_SERIAL_ARM_IQ80321_SERIAL0_BAUD),
|
106 |
|
|
CYG_SERIAL_STOP_DEFAULT,
|
107 |
|
|
CYG_SERIAL_PARITY_DEFAULT,
|
108 |
|
|
CYG_SERIAL_WORD_LENGTH_DEFAULT,
|
109 |
|
|
CYG_SERIAL_FLAGS_DEFAULT
|
110 |
|
|
);
|
111 |
|
|
#endif
|
112 |
|
|
|
113 |
|
|
DEVTAB_ENTRY(iq80321_serial_io0,
|
114 |
|
|
CYGDAT_IO_SERIAL_ARM_IQ80321_SERIAL0_NAME,
|
115 |
|
|
0, // Does not depend on a lower level interface
|
116 |
|
|
&cyg_io_serial_devio,
|
117 |
|
|
pc_serial_init,
|
118 |
|
|
pc_serial_lookup, // Serial driver may need initializing
|
119 |
|
|
&iq80321_serial_channel0
|
120 |
|
|
);
|
121 |
|
|
#endif // CYGPKG_IO_SERIAL_ARM_IQ80321_SERIAL0
|
122 |
|
|
|
123 |
|
|
// EOF arm_iq80321_ser.inl
|