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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "encoding.h"
#include "platform.h"
#include "prci_driver.h"
#include "eos.h"
#include "interrupt.h"
#include "event.h"
#include "i2s.h"
#include "uart.h"
static eos_uart_handler_t uart_handler[EOS_UART_MAX_ETYPE];
static void uart_handle_evt(unsigned char type, unsigned char *buffer, uint16_t len) {
unsigned char idx = (type & ~EOS_EVT_MASK) - 1;
if ((idx < EOS_UART_MAX_ETYPE) && uart_handler[idx]) {
uart_handler[idx](type);
} else {
eos_evtq_bad_handler(type, buffer, len);
}
}
static void uart_handle_intr(void) {
if (UART0_REG(UART_REG_IP) & UART_IP_TXWM) {
UART0_REG(UART_REG_IE) &= ~UART_IP_TXWM;
eos_evtq_push_isr(EOS_EVT_UART | EOS_UART_ETYPE_TX, NULL, 0);
}
if (UART0_REG(UART_REG_IP) & UART_IP_RXWM) {
UART0_REG(UART_REG_IE) &= ~UART_IP_RXWM;
eos_evtq_push_isr(EOS_EVT_UART | EOS_UART_ETYPE_RX, NULL, 0);
}
}
int eos_uart_init(uint8_t wakeup_cause) {
int i;
for (i=0; i<EOS_UART_MAX_ETYPE; i++) {
uart_handler[i] = NULL;
}
eos_evtq_set_handler(EOS_EVT_UART, uart_handle_evt);
eos_intr_set(INT_UART0_BASE, IRQ_PRIORITY_UART, uart_handle_intr);
eos_uart_speed(EOS_UART_SPEED);
eos_uart_enable();
return EOS_OK;
}
void eos_uart_enable(void) {
UART0_REG(UART_REG_TXCTRL) |= UART_TXEN;
UART0_REG(UART_REG_RXCTRL) |= UART_RXEN;
GPIO_REG(GPIO_IOF_SEL) &= ~IOF0_UART0_MASK;
GPIO_REG(GPIO_IOF_EN) |= IOF0_UART0_MASK;
}
void eos_uart_disable(void) {
GPIO_REG(GPIO_IOF_EN) &= ~IOF0_UART0_MASK;
UART0_REG(UART_REG_TXCTRL) &= ~UART_TXEN;
UART0_REG(UART_REG_RXCTRL) &= ~UART_RXEN;
}
int eos_uart_enabled(void) {
return !!(GPIO_REG(GPIO_IOF_EN) & IOF0_UART0_MASK);
}
void eos_uart_speed(uint32_t baud_rate) {
UART0_REG(UART_REG_DIV) = PRCI_get_cpu_freq() / baud_rate - 1;
}
void eos_uart_set_handler(unsigned char type, eos_uart_handler_t handler) {
if (type && (type <= EOS_UART_MAX_ETYPE)) uart_handler[type - 1] = handler;
}
void eos_uart_txwm_set(uint8_t wm) {
UART0_REG(UART_REG_TXCTRL) &= ~UART_TXWM(0xFFFF);
UART0_REG(UART_REG_TXCTRL) |= UART_TXWM(wm);
UART0_REG(UART_REG_IE) |= UART_IP_TXWM;
}
void eos_uart_txwm_clear(void) {
UART0_REG(UART_REG_IE) &= ~UART_IP_TXWM;
}
void eos_uart_rxwm_set(uint8_t wm) {
UART0_REG(UART_REG_RXCTRL) &= ~UART_RXWM(0xFFFF);
UART0_REG(UART_REG_RXCTRL) |= UART_RXWM(wm);
UART0_REG(UART_REG_IE) |= UART_IP_RXWM;
}
void eos_uart_rxwm_clear(void) {
UART0_REG(UART_REG_IE) &= ~UART_IP_RXWM;
}
int eos_uart_putc(int c, int block) {
if (block) {
while (UART0_REG(UART_REG_TXFIFO) & 0x80000000);
UART0_REG(UART_REG_TXFIFO) = c & 0xff;
} else {
if (UART0_REG(UART_REG_TXFIFO) & 0x80000000) return EOS_ERR_FULL;
UART0_REG(UART_REG_TXFIFO) = c & 0xff;
}
return EOS_OK;
}
int eos_uart_getc(int block) {
volatile uint32_t r;
if (block) {
while ((r = UART0_REG(UART_REG_RXFIFO)) & 0x80000000);
} else {
r = UART0_REG(UART_REG_RXFIFO);
if (r & 0x80000000) return EOS_ERR_EMPTY;
}
return r & 0xff;
}
void eos_uart_flush_rx(void) {
volatile uint32_t r;
while (!(r = UART0_REG(UART_REG_RXFIFO) & 0x80000000));
}
|