You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
2.0 KiB
C
132 lines
2.0 KiB
C
5 years ago
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
5 years ago
|
#include "console.h"
|
||
5 years ago
|
#include "microwatt_soc.h"
|
||
|
#include "io.h"
|
||
|
|
||
|
#define UART_FREQ 115200
|
||
5 years ago
|
|
||
5 years ago
|
/*
|
||
|
* Core UART functions to implement for a port
|
||
|
*/
|
||
|
|
||
|
static uint64_t potato_uart_base;
|
||
|
|
||
|
static uint64_t potato_uart_reg_read(int offset)
|
||
|
{
|
||
5 years ago
|
return readq(potato_uart_base + offset);
|
||
5 years ago
|
}
|
||
|
|
||
|
static void potato_uart_reg_write(int offset, uint64_t val)
|
||
|
{
|
||
5 years ago
|
writeq(val, potato_uart_base + offset);
|
||
5 years ago
|
}
|
||
|
|
||
|
static int potato_uart_rx_empty(void)
|
||
|
{
|
||
|
uint64_t val;
|
||
|
|
||
|
val = potato_uart_reg_read(POTATO_CONSOLE_STATUS);
|
||
|
|
||
|
if (val & POTATO_CONSOLE_STATUS_RX_EMPTY)
|
||
|
return 1;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int potato_uart_tx_full(void)
|
||
|
{
|
||
|
uint64_t val;
|
||
|
|
||
|
val = potato_uart_reg_read(POTATO_CONSOLE_STATUS);
|
||
|
|
||
|
if (val & POTATO_CONSOLE_STATUS_TX_FULL)
|
||
|
return 1;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static char potato_uart_read(void)
|
||
|
{
|
||
|
uint64_t val;
|
||
|
|
||
|
val = potato_uart_reg_read(POTATO_CONSOLE_RX);
|
||
|
|
||
|
return (char)(val & 0x000000ff);
|
||
|
}
|
||
|
|
||
|
static void potato_uart_write(char c)
|
||
|
{
|
||
|
uint64_t val;
|
||
|
|
||
|
val = c;
|
||
|
|
||
|
potato_uart_reg_write(POTATO_CONSOLE_TX, val);
|
||
|
}
|
||
|
|
||
|
static unsigned long potato_uart_divisor(unsigned long proc_freq, unsigned long uart_freq)
|
||
|
{
|
||
|
return proc_freq / (uart_freq * 16) - 1;
|
||
|
}
|
||
|
|
||
|
void potato_uart_init(void)
|
||
|
{
|
||
5 years ago
|
uint64_t proc_freq;
|
||
|
|
||
5 years ago
|
potato_uart_base = UART_BASE;
|
||
5 years ago
|
proc_freq = readq(SYSCON_BASE + SYS_REG_CLKINFO);
|
||
5 years ago
|
|
||
5 years ago
|
potato_uart_reg_write(POTATO_CONSOLE_CLOCK_DIV, potato_uart_divisor(proc_freq, UART_FREQ));
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
void potato_uart_irq_en(void)
|
||
|
{
|
||
|
potato_uart_reg_write(POTATO_CONSOLE_IRQ_EN, 0xff);
|
||
|
}
|
||
|
|
||
|
void potato_uart_irq_dis(void)
|
||
|
{
|
||
|
potato_uart_reg_write(POTATO_CONSOLE_IRQ_EN, 0x00);
|
||
|
}
|
||
|
|
||
5 years ago
|
int getchar(void)
|
||
|
{
|
||
|
while (potato_uart_rx_empty())
|
||
|
/* Do nothing */ ;
|
||
|
|
||
|
return potato_uart_read();
|
||
|
}
|
||
|
|
||
5 years ago
|
int putchar(int c)
|
||
5 years ago
|
{
|
||
|
while (potato_uart_tx_full())
|
||
|
/* Do Nothing */;
|
||
|
|
||
|
potato_uart_write(c);
|
||
5 years ago
|
return c;
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
int puts(const char *str)
|
||
|
{
|
||
|
unsigned int i;
|
||
|
|
||
|
for (i = 0; *str; i++) {
|
||
|
char c = *(str++);
|
||
|
if (c == 10)
|
||
|
putchar(13);
|
||
|
putchar(c);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
5 years ago
|
size_t strlen(const char *s)
|
||
|
{
|
||
|
size_t len = 0;
|
||
|
|
||
|
while (*s++)
|
||
|
len++;
|
||
|
|
||
|
return len;
|
||
|
}
|