hc
2024-03-22 619f0f87159c5dbd2755b1b0a0eb35784be84e7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2020 Vijai Kumar K <vijai@behindbytes.com>
 */
 
#include <sbi/riscv_io.h>
#include <sbi/sbi_console.h>
#include <sbi_utils/serial/shakti-uart.h>
 
#define REG_BAUD    0x00
#define REG_TX        0x04
#define REG_RX        0x08
#define REG_STATUS    0x0C
#define REG_DELAY    0x10
#define REG_CONTROL    0x14
#define REG_INT_EN    0x18
#define REG_IQ_CYCLES    0x1C
#define REG_RX_THRES    0x20
 
static volatile void *uart_base;
 
void shakti_uart_putc(char ch)
{
   while((readw(uart_base + REG_STATUS) & 0x2) == 0);
   writeb(ch, uart_base + REG_TX);
}
 
int shakti_uart_getc(void)
{
   u16 status = readw(uart_base + REG_STATUS);
   if (status & 0x8)
       return readb(uart_base + REG_RX);
   return -1;
}
 
int shakti_uart_init(unsigned long base, u32 in_freq, u32 baudrate)
{
   uart_base = (volatile void *)base;
   u16 baud = (u16)(in_freq/(16 * baudrate));
   writew(baud, uart_base + REG_BAUD);
 
   return 0;
}