summaryrefslogtreecommitdiff
path: root/src/console/uart8250_console.c
blob: c5d32cf5790780abbee63c57a173e2afdc0fe494 (plain)
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
#include <console/console.h>
#include <uart8250.h>
#include <pc80/mc146818rtc.h>

/* Base Address */
#ifndef TTYS0_BASE
#define TTYS0_BASE 0x3f8
#endif

#ifndef TTYS0_BAUD
#define TTYS0_BAUD 115200
#endif

#ifndef TTYS0_DIV
#if ((115200%TTYS0_BAUD) != 0)
#error Bad ttys0 baud rate
#endif
#define TTYS0_DIV	(115200/TTYS0_BAUD)
#endif

/* Line Control Settings */
#ifndef TTYS0_LCS
/* Set 8bit, 1 stop bit, no parity */
#define TTYS0_LCS	0x3
#endif

#define UART_LCS	TTYS0_LCS

void ttyS0_init(void)
{
	static unsigned char div[8]={1,2,3,6,12,24,48,96};
	int b_index=0;
	unsigned int divisor=TTYS0_DIV;

	if(get_option(&b_index,"baud_rate")==0) {
		divisor=div[b_index];
	}
	uart8250_init(TTYS0_BASE, divisor, TTYS0_LCS);
}

void ttyS0_tx_byte(unsigned char data) 
{
	uart8250_tx_byte(TTYS0_BASE, data);
}

unsigned char ttyS0_rx_byte(void) 
{
	return uart8250_rx_byte(TTYS0_BASE);
}

int ttyS0_tst_byte(void) 
{
	return uart8250_can_rx_byte(TTYS0_BASE);
}

static struct console_driver uart8250_console __console = {
	.init    = ttyS0_init,
	.tx_byte = ttyS0_tx_byte,
	.rx_byte = ttyS0_rx_byte,
	.tst_byte = ttyS0_tst_byte,
};