source: rtems/c/src/lib/libbsp/powerpc/gen83xx/console/ns16550cfg.h @ 3df08660

4.104.114.84.95
Last change on this file since 3df08660 was f610e83f, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/10/07 at 16:00:28

compilable release of virtex/gen83xx/gen5200 powerpc adaptations. Merged many different versions of new exception handling code to shared sources.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  nc16550cfg.h
2 *
3 *  This include file contains all console driver definations for the nc16550
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-1999.
19 * On-Line Applications Research Corporation (OAR).
20 *
21 * The license and distribution terms for this file may be
22 * found in the file LICENSE in this distribution or at
23 * http://www.rtems.com/license/LICENSE.
24 *
25 * $Id$
26 */
27
28#ifndef __NS16550_CONFIG_H
29#define __NS16550_CONFIG_H
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35/*
36 *  Board specific register access routines
37 */
38
39uint8_t Read_ns16550_register(
40  uint32_t  ulCtrlPort,
41  uint8_t   ucRegNum
42);
43
44void  Write_ns16550_register(
45  uint32_t  ulCtrlPort,
46  uint8_t   ucRegNum,
47  uint8_t   ucData
48);
49
50extern console_fns ns16550_fns_8245;
51extern console_fns ns16550_fns_polled_8245;
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif
Note: See TracBrowser for help on using the repository browser.