source: rtems/c/src/libchip/serial/z85c30.h @ d0d73ec

4.104.114.84.95
Last change on this file since d0d73ec was f010a5e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/02/01 at 18:17:22

2001-03-01 Joel Sherrill <joel@…>

  • network/cs8900.c, network/cs8900.h, network/sonic.c, network/sonic.h, rtc/icm7170_reg.c, rtc/icm7170_reg2.c, rtc/icm7170_reg4.c, rtc/icm7170_reg8.c, rtc/m48t08_reg.c, rtc/m48t08_reg2.c, rtc/m48t08_reg4.c, rtc/m48t08_reg8.c, serial/mc68681_reg.c, serial/mc68681_reg2.c, serial/mc68681_reg4.c, serial/mc68681_reg8.c, serial/z85c30.c, serial/z85c30.h, serial/z85c30_p.h, serial/z85c30_reg.c: Corrected header.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  This include file contains all console driver definitions for the
3 *  Zilog z85c30.
4 *
5 *  COPYRIGHT (c) 1998 by Radstone Technology
6 *
7 *
8 * THIS FILE IS PROVIDED TO YOU, THE USER, "AS IS", WITHOUT WARRANTY OF ANY
9 * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
10 * IMPLIED WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK
11 * AS TO THE QUALITY AND PERFORMANCE OF ALL CODE IN THIS FILE IS WITH YOU.
12 *
13 * You are hereby granted permission to use, copy, modify, and distribute
14 * this file, provided that this notice, plus the above copyright notice
15 * and disclaimer, appears in all copies. Radstone Technology will provide
16 * no support for this code.
17 *
18 *  COPYRIGHT (c) 1989-1997.
19 *  On-Line Applications Research Corporation (OAR).
20 *
21 *  The license and distribution terms for this file may in
22 *  the file LICENSE in this distribution or at
23 *  http://www.OARcorp.com/rtems/license.html.
24 *
25 *  $Id:
26 */
27
28#ifndef __Z85C30_H
29#define __Z85C30_H
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35/*
36 *  Driver function table
37 */
38
39extern console_fns z85c30_fns;
40extern console_fns z85c30_fns_polled;
41
42/*
43 *  Flow control function tables
44 */
45
46extern console_flow z85c30_flow_RTSCTS;
47extern console_flow z85c30_flow_DTRCTS;
48
49/*
50 * Default register access routines
51 */
52
53unsigned8 z85c30_get_register(   /* registers are byte-wide */
54  unsigned32  ulCtrlPort,
55  unsigned8   ucRegNum
56);
57
58void z85c30_set_register(
59  unsigned32  ulCtrlPort,
60  unsigned8   ucRegNum,
61  unsigned8   ucData
62);
63
64unsigned8 z85c30_get_data(
65  unsigned32  ulDataPort
66);
67
68void z85c30_set_data(
69  unsigned32  ulDataPort,
70  unsigned8   ucData
71);
72
73#ifdef __cplusplus
74}
75#endif
76
77#endif
Note: See TracBrowser for help on using the repository browser.