summaryrefslogtreecommitdiffstats
path: root/include/debug_ll/ns16550.h
blob: a4ca7332d3003f8921c4c20d4de92f9a4bb17897 (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
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __DEBUG_LL_NS16550_H
#define __DEBUG_LL_NS16550_H

/*
 * Early debugging functions for the NS16550
 * This file needs register access functions declared as:
 *
 * uint8_t debug_ll_read_reg(int reg);
 * void debug_ll_write_reg(int reg, uint8_t val);
 */
#define NS16550_THR	0x0
#define NS16550_RBR	0x0
#define NS16550_DLL	0x0
#define NS16550_IER	0x1
#define NS16550_DLM	0x1
#define NS16550_FCR	0x2
#define NS16550_LCR	0x3
#define NS16550_MCR	0x4
#define NS16550_LSR	0x5

#define NS16550_LCR_VAL		0x3 /* 8 data, 1 stop, no parity */
#define NS16550_MCR_VAL		0x3 /* RTS/DTR */
#define NS16550_FCR_VAL		0x7 /* Clear & enable FIFOs */

#define NS16550_LSR_DR		0x01 /* UART received data present */
#define NS16550_LSR_THRE	0x20 /* Xmit holding register empty */

#define NS16550_LCR_BKSE	0x80 /* Bank select enable */

static inline void PUTC_LL(char ch)
{
        while (!(debug_ll_read_reg(NS16550_LSR) & NS16550_LSR_THRE))
                ;

        debug_ll_write_reg(NS16550_THR, ch);
}

static inline uint16_t debug_ll_ns16550_calc_divisor(unsigned long clk)
{
	return clk / (115200 * 16);
}

static inline void debug_ll_ns16550_init(uint16_t divisor)
{
	debug_ll_write_reg(NS16550_LCR, 0x0); /* select ier reg */
	debug_ll_write_reg(NS16550_IER, 0x0); /* disable interrupts */

	debug_ll_write_reg(NS16550_LCR, NS16550_LCR_BKSE);
	debug_ll_write_reg(NS16550_DLL, divisor & 0xff);
	debug_ll_write_reg(NS16550_DLM, (divisor >> 8) & 0xff);
	debug_ll_write_reg(NS16550_LCR, NS16550_LCR_VAL);
	debug_ll_write_reg(NS16550_MCR, NS16550_MCR_VAL);
	debug_ll_write_reg(NS16550_FCR, NS16550_FCR_VAL);
}

#endif