2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2015, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-10 01:54:42 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
2016-12-05 04:59:37 +08:00
|
|
|
#include <kernel.h>
|
2015-05-29 01:56:47 +08:00
|
|
|
#include <arch/cpu.h>
|
2017-06-17 23:30:47 +08:00
|
|
|
#include <linker/sections.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <misc/__assert.h>
|
Introduce new sized integer typedefs
This is a start to move away from the C99 {u}int{8,16,32,64}_t types to
Zephyr defined u{8,16,32,64}_t and s{8,16,32,64}_t. This allows Zephyr
to define the sized types in a consistent manor across all the
architectures we support and not conflict with what various compilers
and libc might do with regards to the C99 types.
We introduce <zephyr/types.h> as part of this and have it include
<stdint.h> for now until we transition all the code away from the C99
types.
We go with u{8,16,32,64}_t and s{8,16,32,64}_t as there are some
existing variables defined u8 & u16 as well as to be consistent with
Zephyr naming conventions.
Jira: ZEP-2051
Change-Id: I451fed0623b029d65866622e478225dfab2c0ca8
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-04-19 23:32:08 +08:00
|
|
|
#include <zephyr/types.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <misc/util.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <board.h>
|
2015-12-02 00:42:19 +08:00
|
|
|
#include <init.h>
|
2015-10-15 14:48:03 +08:00
|
|
|
#include <uart.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#define NSIM_UART_DATA 0
|
|
|
|
#define NSIM_UART_STATUS 1
|
|
|
|
|
2015-08-06 03:13:36 +08:00
|
|
|
#define DEV_CFG(dev) \
|
2016-10-07 02:55:27 +08:00
|
|
|
((const struct uart_device_config * const)(dev)->config->config_info)
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-08-06 03:13:36 +08:00
|
|
|
#define DATA_REG(dev) (DEV_CFG(dev)->regs + NSIM_UART_DATA)
|
|
|
|
#define STATUS_REG(dev) (DEV_CFG(dev)->regs + NSIM_UART_STATUS)
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-08-06 03:13:36 +08:00
|
|
|
#define TXEMPTY 0x80 /* Transmit FIFO empty and next character can be sent */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-10-24 15:38:13 +08:00
|
|
|
static const struct uart_driver_api uart_nsim_driver_api;
|
2015-08-14 00:51:10 +08:00
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
/**
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Initialize fake serial port
|
2015-08-06 03:13:36 +08:00
|
|
|
*
|
2016-01-27 04:32:06 +08:00
|
|
|
* @param dev UART device struct
|
2015-12-02 00:42:19 +08:00
|
|
|
*
|
2016-03-10 01:01:20 +08:00
|
|
|
* @return 0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
2015-12-02 00:42:19 +08:00
|
|
|
static int uart_nsim_init(struct device *dev)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
2015-12-02 00:42:19 +08:00
|
|
|
ARG_UNUSED(dev);
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-04-06 05:16:01 +08:00
|
|
|
dev->driver_api = &uart_nsim_driver_api;
|
|
|
|
|
2016-03-10 01:01:20 +08:00
|
|
|
return 0;
|
2015-04-11 07:44:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Output a character to serial port
|
2015-08-06 03:13:36 +08:00
|
|
|
*
|
2016-01-27 04:32:06 +08:00
|
|
|
* @param dev UART device struct
|
2015-08-06 03:13:36 +08:00
|
|
|
* @param c character to output
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
2015-12-02 00:42:19 +08:00
|
|
|
unsigned char uart_nsim_poll_out(struct device *dev, unsigned char c)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
/* wait for transmitter to ready to accept a character */
|
2015-08-06 03:13:36 +08:00
|
|
|
while ((_arc_v2_aux_reg_read(STATUS_REG(dev)) & TXEMPTY) == 0)
|
2015-04-11 07:44:37 +08:00
|
|
|
;
|
2015-08-06 03:13:36 +08:00
|
|
|
_arc_v2_aux_reg_write(DATA_REG(dev), c);
|
2015-04-11 07:44:37 +08:00
|
|
|
return c;
|
|
|
|
}
|
2015-08-14 00:51:10 +08:00
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
static int uart_nsim_poll_in(struct device *dev, unsigned char *c)
|
2015-10-09 02:08:16 +08:00
|
|
|
{
|
2016-03-10 01:54:42 +08:00
|
|
|
return -ENOTSUP;
|
2015-10-09 02:08:16 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-24 15:38:13 +08:00
|
|
|
static const struct uart_driver_api uart_nsim_driver_api = {
|
2015-12-02 00:42:19 +08:00
|
|
|
.poll_out = uart_nsim_poll_out,
|
|
|
|
.poll_in = uart_nsim_poll_in,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct uart_device_config uart_nsim_dev_cfg_0 = {
|
|
|
|
.regs = CONFIG_UART_NSIM_PORT_0_BASE_ADDR,
|
2015-08-14 00:51:10 +08:00
|
|
|
};
|
2015-12-02 00:42:19 +08:00
|
|
|
|
2016-01-29 03:48:47 +08:00
|
|
|
DEVICE_INIT(uart_nsim0, CONFIG_UART_NSIM_PORT_0_NAME, &uart_nsim_init,
|
|
|
|
NULL, &uart_nsim_dev_cfg_0,
|
2016-11-09 03:06:55 +08:00
|
|
|
PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
|