source: rtems/c/src/lib/libbsp/powerpc/psim/console/console-io.c @ 6adacd89

4.115
Last change on this file since 6adacd89 was 6279149, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/14 at 21:04:56

Add console-polled.h and update all BSPs that should use it.

The file console-polled.h provides the prototypes for the three
required methods when implementing a single port polled console
driver. This paradigm is common on simulators and simple hardware.

+ Updated the BSPs Makefile.am to make console-polled.h available.
+ Regenerated the BSPs preinstall.sm.
+ Updated console support files to include <bsp/console-polled.h>.
+ Updated console support files to make printk() support method static.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  This file contains the hardware specific portions of the TTY driver
3 *  for the simulated serial port on the PowerPC simulator.
4 */
5
6/*
7 *  COPYRIGHT (c) 1989-2004.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 */
14
15#include <bsp.h>
16#include <bsp/console-polled.h>
17#include <rtems/libio.h>
18#include <stdlib.h>
19#include <assert.h>
20
21/*
22 *  console_initialize_hardware
23 *
24 *  This routine initializes the console hardware.
25 *
26 */
27
28void console_initialize_hardware(void)
29{
30}
31
32/* external prototypes for monitor interface routines */
33
34void outbyte( char );
35char inbyte( void );
36
37/*
38 *  console_outbyte_polled
39 *
40 *  This routine transmits a character using polling.
41 */
42
43void console_outbyte_polled(
44  int  port,
45  char ch
46)
47{
48  outbyte( ch );
49}
50
51/*
52 *  console_inbyte_nonblocking
53 *
54 *  This routine polls for a character.
55 */
56
57int console_inbyte_nonblocking(
58  int port
59)
60{
61  char c;
62
63  c = inbyte();
64  if (!c)
65    return -1;
66  return c;
67}
68
69/*
70 *  To support printk
71 */
72
73#include <rtems/bspIo.h>
74
75static void PSIM_output_char(char c) { console_outbyte_polled( 0, c ); }
76
77BSP_output_char_function_type           BSP_output_char = PSIM_output_char;
78BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.