1 |
27 |
unneback |
#ifndef CYGONCE_DEVS_SH_SE77X9_16X5X_H
|
2 |
|
|
#define CYGONCE_DEVS_SH_SE77X9_16X5X_H
|
3 |
|
|
|
4 |
|
|
//==========================================================================
|
5 |
|
|
//
|
6 |
|
|
// io/serial/sh/sh_sh3_se77x9_16x5x.inl
|
7 |
|
|
//
|
8 |
|
|
// Serial I/O specification for Hitachi SE77X9 platform.
|
9 |
|
|
//
|
10 |
|
|
//==========================================================================
|
11 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
12 |
|
|
// -------------------------------------------
|
13 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
14 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
15 |
|
|
//
|
16 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
17 |
|
|
// the terms of the GNU General Public License as published by the Free
|
18 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
19 |
|
|
//
|
20 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
21 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
22 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
23 |
|
|
// for more details.
|
24 |
|
|
//
|
25 |
|
|
// You should have received a copy of the GNU General Public License along
|
26 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
27 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
28 |
|
|
//
|
29 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
30 |
|
|
// or inline functions from this file, or you compile this file and link it
|
31 |
|
|
// with other works to produce a work based on this file, this file does not
|
32 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
33 |
|
|
// License. However the source code for this file must still be made available
|
34 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
35 |
|
|
//
|
36 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
37 |
|
|
// this file might be covered by the GNU General Public License.
|
38 |
|
|
//
|
39 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
40 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
41 |
|
|
// -------------------------------------------
|
42 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
43 |
|
|
//==========================================================================
|
44 |
|
|
//#####DESCRIPTIONBEGIN####
|
45 |
|
|
//
|
46 |
|
|
// Author(s): jskov
|
47 |
|
|
// Contributors:jskov
|
48 |
|
|
// Date: 2001-06-18
|
49 |
|
|
// Purpose: Specifies serial resources for the platform.
|
50 |
|
|
// Description: This file can be include from the 16x5x driver sources.
|
51 |
|
|
//
|
52 |
|
|
//####DESCRIPTIONEND####
|
53 |
|
|
//==========================================================================
|
54 |
|
|
|
55 |
|
|
#include
|
56 |
|
|
|
57 |
|
|
//-----------------------------------------------------------------------------
|
58 |
|
|
// Baud rate specification, based on raw 1.8462MHz clock (/16)
|
59 |
|
|
|
60 |
|
|
static unsigned short select_baud[] = {
|
61 |
|
|
0, // Unused
|
62 |
|
|
2307, // 50
|
63 |
|
|
1538, // 75
|
64 |
|
|
1048, // 110
|
65 |
|
|
857, // 134.5
|
66 |
|
|
769, // 150
|
67 |
|
|
576, // 200
|
68 |
|
|
384, // 300
|
69 |
|
|
192, // 600
|
70 |
|
|
96, // 1200
|
71 |
|
|
64, // 1800
|
72 |
|
|
48, // 2400
|
73 |
|
|
32, // 3600
|
74 |
|
|
24, // 4800
|
75 |
|
|
16, // 7200
|
76 |
|
|
12, // 9600
|
77 |
|
|
8, // 14400
|
78 |
|
|
6, // 19200
|
79 |
|
|
3, // 38400
|
80 |
|
|
2, // 57600
|
81 |
|
|
1, // 115200
|
82 |
|
|
0, // 230400
|
83 |
|
|
};
|
84 |
|
|
|
85 |
|
|
#ifdef CYGPKG_IO_SERIAL_SH_SE77X9_COM1
|
86 |
|
|
static pc_serial_info se77x9_serial_info1 = {0xb04007f0, CYGNUM_HAL_INTERRUPT_COM1};
|
87 |
|
|
#if CYGNUM_IO_SERIAL_SH_SE77X9_COM1_BUFSIZE > 0
|
88 |
|
|
static unsigned char se77x9_serial_out_buf1[CYGNUM_IO_SERIAL_SH_SE77X9_COM1_BUFSIZE];
|
89 |
|
|
static unsigned char se77x9_serial_in_buf1[CYGNUM_IO_SERIAL_SH_SE77X9_COM1_BUFSIZE];
|
90 |
|
|
|
91 |
|
|
static SERIAL_CHANNEL_USING_INTERRUPTS(se77x9_serial_channel1,
|
92 |
|
|
pc_serial_funs,
|
93 |
|
|
se77x9_serial_info1,
|
94 |
|
|
CYG_SERIAL_BAUD_RATE(CYGNUM_IO_SERIAL_SH_SE77X9_COM1_BAUD),
|
95 |
|
|
CYG_SERIAL_STOP_DEFAULT,
|
96 |
|
|
CYG_SERIAL_PARITY_DEFAULT,
|
97 |
|
|
CYG_SERIAL_WORD_LENGTH_DEFAULT,
|
98 |
|
|
CYG_SERIAL_FLAGS_DEFAULT,
|
99 |
|
|
&se77x9_serial_out_buf1[0], sizeof(se77x9_serial_out_buf1),
|
100 |
|
|
&se77x9_serial_in_buf1[0], sizeof(se77x9_serial_in_buf1)
|
101 |
|
|
);
|
102 |
|
|
#else
|
103 |
|
|
static SERIAL_CHANNEL(se77x9_serial_channel1,
|
104 |
|
|
pc_serial_funs,
|
105 |
|
|
se77x9_serial_info1,
|
106 |
|
|
CYG_SERIAL_BAUD_RATE(CYGNUM_IO_SERIAL_SH_SE77X9_COM1_BAUD),
|
107 |
|
|
CYG_SERIAL_STOP_DEFAULT,
|
108 |
|
|
CYG_SERIAL_PARITY_DEFAULT,
|
109 |
|
|
CYG_SERIAL_WORD_LENGTH_DEFAULT,
|
110 |
|
|
CYG_SERIAL_FLAGS_DEFAULT
|
111 |
|
|
);
|
112 |
|
|
#endif
|
113 |
|
|
|
114 |
|
|
DEVTAB_ENTRY(se77x9_serial_io1,
|
115 |
|
|
CYGDAT_IO_SERIAL_SH_SE77X9_COM1_NAME,
|
116 |
|
|
0, // Does not depend on a lower level interface
|
117 |
|
|
&cyg_io_serial_devio,
|
118 |
|
|
pc_serial_init,
|
119 |
|
|
pc_serial_lookup, // Serial driver may need initializing
|
120 |
|
|
&se77x9_serial_channel1
|
121 |
|
|
);
|
122 |
|
|
#endif // CYGPKG_IO_SERIAL_SH_SE77X9_COM1
|
123 |
|
|
|
124 |
|
|
#endif // CYGONCE_DEVS_SH_SE77X9_SCIF_H
|