forked from Imagelibrary/rtems
198 lines
4.6 KiB
C
198 lines
4.6 KiB
C
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
/*
|
|
* Console driver for Lattice Mico32 (lm32).
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-1999.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* Jukka Pietarinen <jukka.pietarinen@mrf.fi>, 2008,
|
|
* Micro-Research Finland Oy
|
|
*/
|
|
|
|
#define NO_BSP_INIT
|
|
|
|
#include <bsp.h>
|
|
#include <rtems/bspIo.h>
|
|
#include <rtems/libio.h>
|
|
#include <rtems/console.h>
|
|
|
|
/* console_initialize
|
|
*
|
|
* This routine initializes the console IO driver.
|
|
*/
|
|
rtems_device_driver console_initialize(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void *arg
|
|
)
|
|
{
|
|
rtems_status_code status;
|
|
|
|
printk("console_initialize\n");
|
|
|
|
status = rtems_io_register_name(
|
|
"/dev/console",
|
|
major,
|
|
(rtems_device_minor_number) 0
|
|
);
|
|
|
|
if (status != RTEMS_SUCCESSFUL)
|
|
rtems_fatal_error_occurred(status);
|
|
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
/* inbyte
|
|
*
|
|
* This routine reads a character from the SOURCE.
|
|
*/
|
|
static int inbyte( void )
|
|
{
|
|
/*
|
|
* If polling, wait until a character is available.
|
|
*/
|
|
return BSP_uart_polled_read();
|
|
}
|
|
|
|
/* outbyte
|
|
*
|
|
* This routine transmits a character out the SOURCE. It may support
|
|
* XON/XOFF flow control.
|
|
*/
|
|
static void outbyte(
|
|
char ch
|
|
)
|
|
{
|
|
/*
|
|
* If polling, wait for the transmitter to be ready.
|
|
* Check for flow control requests and process.
|
|
* Then output the character.
|
|
*/
|
|
|
|
BSP_uart_polled_write(ch);
|
|
}
|
|
|
|
/*
|
|
* Open entry point
|
|
*/
|
|
rtems_device_driver console_open(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void * arg
|
|
)
|
|
{
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
/*
|
|
* Close entry point
|
|
*/
|
|
rtems_device_driver console_close(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void * arg
|
|
)
|
|
{
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
/*
|
|
* read bytes from the serial port. We only have stdin.
|
|
*/
|
|
rtems_device_driver console_read(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void * arg
|
|
)
|
|
{
|
|
rtems_libio_rw_args_t *rw_args;
|
|
char *buffer;
|
|
int maximum;
|
|
int count = 0;
|
|
|
|
rw_args = (rtems_libio_rw_args_t *) arg;
|
|
|
|
buffer = rw_args->buffer;
|
|
maximum = rw_args->count;
|
|
|
|
for (count = 0; count < maximum; count++) {
|
|
buffer[ count ] = inbyte();
|
|
if (buffer[ count ] == '\n' || buffer[ count ] == '\r') {
|
|
buffer[ count++ ] = '\n';
|
|
break;
|
|
}
|
|
}
|
|
|
|
rw_args->bytes_moved = count;
|
|
return (count >= 0) ? RTEMS_SUCCESSFUL : RTEMS_UNSATISFIED;
|
|
}
|
|
|
|
/*
|
|
* write bytes to the serial port. Stdout and stderr are the same.
|
|
*/
|
|
rtems_device_driver console_write(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void * arg
|
|
)
|
|
{
|
|
int count;
|
|
int maximum;
|
|
rtems_libio_rw_args_t *rw_args;
|
|
char *buffer;
|
|
|
|
rw_args = (rtems_libio_rw_args_t *) arg;
|
|
|
|
buffer = rw_args->buffer;
|
|
maximum = rw_args->count;
|
|
|
|
for (count = 0; count < maximum; count++) {
|
|
if ( buffer[ count ] == '\n') {
|
|
outbyte('\r');
|
|
}
|
|
outbyte( buffer[ count ] );
|
|
}
|
|
|
|
rw_args->bytes_moved = maximum;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* IO Control entry point
|
|
*/
|
|
rtems_device_driver console_control(
|
|
rtems_device_major_number major,
|
|
rtems_device_minor_number minor,
|
|
void * arg
|
|
)
|
|
{
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
BSP_output_char_function_type BSP_output_char = BSP_uart_polled_write;
|
|
BSP_polling_getchar_function_type BSP_poll_char = BSP_uart_polled_read;
|