kendryte-standalone-sdk/lib/drivers/uarths.c

98 lines
2.2 KiB
C

/* Copyright 2018 Canaan Inc.
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
#include <stdint.h>
#include <stdio.h>
#include "uarths.h"
#include "sysctl.h"
#include "env/encoding.h"
volatile struct uarths_t *const uarths = (volatile struct uarths_t *)UARTHS_BASE_ADDR;
static inline int uart_putc(char c)
{
/* Read hart id */
unsigned long hart_id = read_csr(mhartid);
/* Set print data reg */
volatile uint32_t *reg = (volatile uint32_t *)0x50440080UL;
/* Push data out */
if (hart_id == 0)
{
/* Select core 0 data reg */
*reg = (0UL << 30) | c;
}
else
{
/* Select core 1 data reg */
*reg = (1UL << 30) | c;
}
/* Convert to DOS style (CRLF terminated) */
if (c == '\n')
{
while (uarths->txdata.full)
continue;
uarths->txdata.data = '\r';
}
while (uarths->txdata.full)
continue;
uarths->txdata.data = c;
return 0;
}
int uart_getc(void)
{
/* while not empty */
struct uarths_rxdata_t recv = uarths->rxdata;
if (recv.empty)
return EOF;
else
return recv.data;
}
int uart_putchar(char c)
{
return uart_putc(c);
}
int uart_puts(const char *s)
{
while (*s)
if (uart_putc(*s++) != 0)
return -1;
return 0;
}
int uart_init()
{
uint32_t freq = sysctl_clock_get_freq(SYSCTL_CLOCK_CPU);
uint16_t div = freq / 115200 - 1;
/* Set UART registers */
uarths->div.div = div;
uarths->txctrl.txen = 1;
uarths->rxctrl.rxen = 1;
uarths->txctrl.txcnt = 0;
uarths->rxctrl.rxcnt = 0;
uarths->ip.txwm = 1;
uarths->ip.rxwm = 1;
uarths->ie.txwm = 0;
uarths->ie.rxwm = 1;
return 0;
}