2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2013-09-28 16:50:07 -06:00
|
|
|
* arch/sim/src/up_devconsole.c
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2013-09-28 16:50:07 -06:00
|
|
|
* Copyright (C) 2007-2009, 2013 Gregory Nutt. All rights reserved.
|
2012-09-13 18:32:24 +00:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
2008-06-01 13:18:51 +00:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-17 23:21:28 +00:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-16 14:52:56 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <sys/types.h>
|
2009-12-16 14:52:56 +00:00
|
|
|
#include <stdbool.h>
|
2014-12-14 07:46:46 -06:00
|
|
|
#include <sched.h>
|
2014-09-30 12:22:32 -06:00
|
|
|
#include <errno.h>
|
2009-12-16 14:52:56 +00:00
|
|
|
|
2012-03-21 18:01:07 +00:00
|
|
|
#include <nuttx/fs/fs.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-30 14:41:23 -06:00
|
|
|
#include "up_internal.h"
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2014-09-30 10:44:32 -06:00
|
|
|
* Pre-processor Definitions
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Function Prototypes
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
|
static ssize_t devconsole_read(struct file *, char *, size_t);
|
|
|
|
|
static ssize_t devconsole_write(struct file *, const char *, size_t);
|
2008-11-17 23:22:27 +00:00
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
2008-11-19 18:43:50 +00:00
|
|
|
static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
2009-12-16 14:52:56 +00:00
|
|
|
bool setup);
|
2008-11-17 23:22:27 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Data
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2009-06-10 15:22:49 +00:00
|
|
|
static const struct file_operations devconsole_fops =
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
|
|
|
|
.read = devconsole_read,
|
|
|
|
|
.write = devconsole_write,
|
2008-11-17 23:22:27 +00:00
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
|
|
|
|
.poll = devconsole_poll,
|
|
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
};
|
|
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Functions
|
2008-06-01 13:18:51 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-30 12:22:32 -06:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: devconsole_read
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2013-09-28 16:50:07 -06:00
|
|
|
static ssize_t devconsole_read(struct file *filep, char *buffer, size_t len)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2014-09-30 12:22:32 -06:00
|
|
|
size_t remaining = len;
|
2014-12-13 13:04:02 -06:00
|
|
|
ssize_t nread;
|
2014-09-30 12:22:32 -06:00
|
|
|
int ch;
|
|
|
|
|
|
|
|
|
|
/* Loop until all requested bytes have been read. No error checking */
|
|
|
|
|
|
2014-12-13 13:04:02 -06:00
|
|
|
sched_lock();
|
|
|
|
|
for (remaining = len, nread = 0; remaining > 0; remaining--)
|
2014-09-30 12:22:32 -06:00
|
|
|
{
|
2014-12-13 13:04:02 -06:00
|
|
|
/* Read the next character from the console, we should only wait
|
|
|
|
|
* on the first read.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-09-30 12:22:32 -06:00
|
|
|
ch = simuart_getc();
|
|
|
|
|
if (ch < 0)
|
|
|
|
|
{
|
|
|
|
|
set_errno(EIO);
|
2014-12-13 13:04:02 -06:00
|
|
|
sched_unlock();
|
2014-09-30 12:22:32 -06:00
|
|
|
return ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*buffer++ = ch;
|
2014-12-13 13:04:02 -06:00
|
|
|
nread++;
|
|
|
|
|
|
|
|
|
|
/* We have at least one character. Return now if no further
|
|
|
|
|
* characters are available without waiting.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!simuart_checkc())
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
2014-09-30 12:22:32 -06:00
|
|
|
}
|
|
|
|
|
|
2014-12-13 13:04:02 -06:00
|
|
|
sched_unlock();
|
|
|
|
|
return nread;
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
|
2014-09-30 12:22:32 -06:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: devconsole_write
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2013-09-28 16:50:07 -06:00
|
|
|
static ssize_t devconsole_write(struct file *filep, const char *buffer, size_t len)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2014-09-30 12:22:32 -06:00
|
|
|
int remaining;
|
|
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
|
|
for (remaining = len; remaining > 0 && ret >= 0; remaining--)
|
|
|
|
|
{
|
|
|
|
|
unsigned char ch = *buffer++;
|
|
|
|
|
ret = simuart_putc((int)ch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
set_errno(EIO);
|
|
|
|
|
return ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return len;
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
|
2014-09-30 12:22:32 -06:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: devconsole_poll
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2008-11-17 23:58:46 +00:00
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
2008-11-19 18:43:50 +00:00
|
|
|
static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
2009-12-16 14:52:56 +00:00
|
|
|
bool setup)
|
2008-11-17 23:22:27 +00:00
|
|
|
{
|
|
|
|
|
return OK;
|
|
|
|
|
}
|
2008-11-17 23:58:46 +00:00
|
|
|
#endif
|
2008-11-17 23:22:27 +00:00
|
|
|
|
2008-06-01 13:18:51 +00:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Public Functions
|
|
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-30 12:22:32 -06:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: up_devconsole
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
void up_devconsole(void)
|
|
|
|
|
{
|
2007-05-09 00:06:00 +00:00
|
|
|
(void)register_driver("/dev/console", &devconsole_fops, 0666, NULL);
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
2014-09-30 12:22:32 -06:00
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: up_putc
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
int up_putc(int ch)
|
|
|
|
|
{
|
|
|
|
|
/* Just map to the host simuart_putc routine */
|
|
|
|
|
|
|
|
|
|
return simuart_putc(ch);
|
|
|
|
|
}
|
|
|
|
|
|