summaryrefslogtreecommitdiffstats
path: root/drivers/serial/serial_uniphier.c
blob: f8c9d921e283028c5fe199efa7b081bbfc08d09f (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
 * Copyright (C) 2012-2014 Panasonic Corporation
 *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 *
 * Based on serial_ns16550.c
 * (C) Copyright 2000
 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <serial.h>

#define UART_REG(x)					\
	u8 x;						\
	u8 postpad_##x[3];

/*
 * Note: Register map is slightly different from that of 16550.
 */
struct uniphier_serial {
	UART_REG(rbr);		/* 0x00 */
	UART_REG(ier);		/* 0x04 */
	UART_REG(iir);		/* 0x08 */
	UART_REG(fcr);		/* 0x0c */
	u8 mcr;			/* 0x10 */
	u8 lcr;
	u16 __postpad;
	UART_REG(lsr);		/* 0x14 */
	UART_REG(msr);		/* 0x18 */
	u32 __none1;
	u32 __none2;
	u16 dlr;
	u16 __postpad2;
};

#define thr rbr

/*
 * These are the definitions for the Line Control Register
 */
#define UART_LCR_WLS_8	0x03		/* 8 bit character length */

/*
 * These are the definitions for the Line Status Register
 */
#define UART_LSR_DR	0x01		/* Data ready */
#define UART_LSR_THRE	0x20		/* Xmit holding register empty */

DECLARE_GLOBAL_DATA_PTR;

static void uniphier_serial_init(struct uniphier_serial *port)
{
	const unsigned int mode_x_div = 16;
	unsigned int divisor;

	writeb(UART_LCR_WLS_8, &port->lcr);

	divisor = DIV_ROUND_CLOSEST(CONFIG_SYS_UNIPHIER_UART_CLK,
						mode_x_div * gd->baudrate);

	writew(divisor, &port->dlr);
}

static void uniphier_serial_setbrg(struct uniphier_serial *port)
{
	uniphier_serial_init(port);
}

static int uniphier_serial_tstc(struct uniphier_serial *port)
{
	return (readb(&port->lsr) & UART_LSR_DR) != 0;
}

static int uniphier_serial_getc(struct uniphier_serial *port)
{
	while (!uniphier_serial_tstc(port))
		;

	return readb(&port->rbr);
}

static void uniphier_serial_putc(struct uniphier_serial *port, const char c)
{
	if (c == '\n')
		uniphier_serial_putc(port, '\r');

	while (!(readb(&port->lsr) & UART_LSR_THRE))
		;

	writeb(c, &port->thr);
}

static struct uniphier_serial *serial_ports[4] = {
#ifdef CONFIG_SYS_UNIPHIER_SERIAL_BASE0
	(struct uniphier_serial *)CONFIG_SYS_UNIPHIER_SERIAL_BASE0,
#else
	NULL,
#endif
#ifdef CONFIG_SYS_UNIPHIER_SERIAL_BASE1
	(struct uniphier_serial *)CONFIG_SYS_UNIPHIER_SERIAL_BASE1,
#else
	NULL,
#endif
#ifdef CONFIG_SYS_UNIPHIER_SERIAL_BASE2
	(struct uniphier_serial *)CONFIG_SYS_UNIPHIER_SERIAL_BASE2,
#else
	NULL,
#endif
#ifdef CONFIG_SYS_UNIPHIER_SERIAL_BASE3
	(struct uniphier_serial *)CONFIG_SYS_UNIPHIER_SERIAL_BASE3,
#else
	NULL,
#endif
};

/* Multi serial device functions */
#define DECLARE_ESERIAL_FUNCTIONS(port) \
	static int  eserial##port##_init(void) \
	{ \
		uniphier_serial_init(serial_ports[port]); \
		return 0 ; \
	} \
	static void eserial##port##_setbrg(void) \
	{ \
		uniphier_serial_setbrg(serial_ports[port]); \
	} \
	static int  eserial##port##_getc(void) \
	{ \
		return uniphier_serial_getc(serial_ports[port]); \
	} \
	static int  eserial##port##_tstc(void) \
	{ \
		return uniphier_serial_tstc(serial_ports[port]); \
	} \
	static void eserial##port##_putc(const char c) \
	{ \
		uniphier_serial_putc(serial_ports[port], c); \
	}

/* Serial device descriptor */
#define INIT_ESERIAL_STRUCTURE(port, __name) {	\
	.name	= __name,			\
	.start	= eserial##port##_init,		\
	.stop	= NULL,				\
	.setbrg	= eserial##port##_setbrg,	\
	.getc	= eserial##port##_getc,		\
	.tstc	= eserial##port##_tstc,		\
	.putc	= eserial##port##_putc,		\
	.puts	= default_serial_puts,		\
}

#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE0)
DECLARE_ESERIAL_FUNCTIONS(0);
struct serial_device uniphier_serial0_device =
	INIT_ESERIAL_STRUCTURE(0, "ttyS0");
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE1)
DECLARE_ESERIAL_FUNCTIONS(1);
struct serial_device uniphier_serial1_device =
	INIT_ESERIAL_STRUCTURE(1, "ttyS1");
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE2)
DECLARE_ESERIAL_FUNCTIONS(2);
struct serial_device uniphier_serial2_device =
	INIT_ESERIAL_STRUCTURE(2, "ttyS2");
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE3)
DECLARE_ESERIAL_FUNCTIONS(3);
struct serial_device uniphier_serial3_device =
	INIT_ESERIAL_STRUCTURE(3, "ttyS3");
#endif

__weak struct serial_device *default_serial_console(void)
{
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE0)
	return &uniphier_serial0_device;
#elif defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE1)
	return &uniphier_serial1_device;
#elif defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE2)
	return &uniphier_serial2_device;
#elif defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE3)
	return &uniphier_serial3_device;
#else
#error "No uniphier serial ports configured."
#endif
}

void uniphier_serial_initialize(void)
{
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE0)
	serial_register(&uniphier_serial0_device);
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE1)
	serial_register(&uniphier_serial1_device);
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE2)
	serial_register(&uniphier_serial2_device);
#endif
#if defined(CONFIG_SYS_UNIPHIER_SERIAL_BASE3)
	serial_register(&uniphier_serial3_device);
#endif
}
OpenPOWER on IntegriCloud