2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2015, Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nanokernel.h>
|
2015-05-29 01:56:47 +08:00
|
|
|
#include <arch/cpu.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <sections.h>
|
|
|
|
#include <misc/__assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <misc/util.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <board.h>
|
|
|
|
#include <drivers/uart.h>
|
|
|
|
|
|
|
|
#define NSIM_UART_DATA 0
|
|
|
|
#define NSIM_UART_STATUS 1
|
|
|
|
|
2015-08-06 03:13:36 +08:00
|
|
|
#define DEV_CFG(dev) \
|
|
|
|
((struct uart_device_config_t * 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
|
|
|
|
2015-08-14 00:51:10 +08:00
|
|
|
static struct uart_driver_api nsim_uart_driver_api;
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
/*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Initialize fake serial port
|
2015-08-06 03:13:36 +08:00
|
|
|
*
|
|
|
|
* @param dev UART device struct (of type struct uart_device_config_t)
|
|
|
|
* @param init_info Pointer to initialization information
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
2015-08-14 00:51:10 +08:00
|
|
|
void nsim_uart_port_init(struct device *dev,
|
2015-08-06 03:13:36 +08:00
|
|
|
const struct uart_init_info * const init_info)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
|
|
|
int key = irq_lock();
|
|
|
|
|
2015-08-06 03:13:36 +08:00
|
|
|
DEV_CFG(dev)->regs = init_info->regs;
|
2015-04-11 07:44:37 +08:00
|
|
|
irq_unlock(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Output a character to serial port
|
2015-08-06 03:13:36 +08:00
|
|
|
*
|
|
|
|
* @param dev UART device struct (of type struct uart_device_config_t)
|
|
|
|
* @param c character to output
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
2015-08-14 00:51:10 +08:00
|
|
|
unsigned char nsim_uart_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-10-09 02:08:16 +08:00
|
|
|
static int nsim_uart_poll_in(struct device *dev, unsigned char *c)
|
|
|
|
{
|
|
|
|
return -DEV_INVALID_OP;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-14 00:51:10 +08:00
|
|
|
static struct uart_driver_api nsim_uart_driver_api = {
|
|
|
|
.poll_out = nsim_uart_poll_out,
|
2015-10-09 02:08:16 +08:00
|
|
|
.poll_in = nsim_uart_poll_in,
|
2015-08-14 00:51:10 +08:00
|
|
|
};
|