blob: d43a5fedcc87ed782542b88191d4d162b869a481 [file] [log] [blame]
wdenk281e00a2004-08-01 22:48:16 +00001/*
2 * (c) 2004 Sascha Hauer <sascha@saschahauer.de>
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
wdenk281e00a2004-08-01 22:48:16 +00005 */
6
7#include <common.h>
wdenk281e00a2004-08-01 22:48:16 +00008#include <asm/arch/imx-regs.h>
Marek Vasut7882e7c2012-09-14 22:34:51 +02009#include <serial.h>
10#include <linux/compiler.h>
wdenk281e00a2004-08-01 22:48:16 +000011
wdenk281e00a2004-08-01 22:48:16 +000012#if defined CONFIG_IMX_SERIAL1
13#define UART_BASE IMX_UART1_BASE
14#elif defined CONFIG_IMX_SERIAL2
15#define UART_BASE IMX_UART2_BASE
16#else
17#error "define CONFIG_IMX_SERIAL1, CONFIG_IMX_SERIAL2 or CONFIG_IMX_SERIAL_NONE"
18#endif
19
20struct imx_serial {
21 volatile uint32_t urxd[16];
22 volatile uint32_t utxd[16];
23 volatile uint32_t ucr1;
24 volatile uint32_t ucr2;
25 volatile uint32_t ucr3;
26 volatile uint32_t ucr4;
27 volatile uint32_t ufcr;
28 volatile uint32_t usr1;
29 volatile uint32_t usr2;
30 volatile uint32_t uesc;
31 volatile uint32_t utim;
32 volatile uint32_t ubir;
33 volatile uint32_t ubmr;
34 volatile uint32_t ubrc;
35 volatile uint32_t bipr[4];
36 volatile uint32_t bmpr[4];
37 volatile uint32_t uts;
38};
39
Andrew Dyer48fed402008-09-12 02:20:46 +020040DECLARE_GLOBAL_DATA_PTR;
41
Marek Vasut7882e7c2012-09-14 22:34:51 +020042static void imx_serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +000043{
44 serial_init();
45}
46
47extern void imx_gpio_mode(int gpio_mode);
48
49/*
50 * Initialise the serial port with the given baudrate. The settings
51 * are always 8 data bits, no parity, 1 stop bit, no start bits.
52 *
53 */
Marek Vasut7882e7c2012-09-14 22:34:51 +020054static int imx_serial_init(void)
wdenk281e00a2004-08-01 22:48:16 +000055{
56 volatile struct imx_serial* base = (struct imx_serial *)UART_BASE;
Andrew Dyer48fed402008-09-12 02:20:46 +020057 unsigned int ufcr_rfdiv;
58 unsigned int refclk;
59
wdenk281e00a2004-08-01 22:48:16 +000060#ifdef CONFIG_IMX_SERIAL1
61 imx_gpio_mode(PC11_PF_UART1_TXD);
62 imx_gpio_mode(PC12_PF_UART1_RXD);
63#else
64 imx_gpio_mode(PB30_PF_UART2_TXD);
65 imx_gpio_mode(PB31_PF_UART2_RXD);
66#endif
67
68 /* Disable UART */
69 base->ucr1 &= ~UCR1_UARTEN;
70
71 /* Set to default POR state */
72
73 base->ucr1 = 0x00000004;
74 base->ucr2 = 0x00000000;
75 base->ucr3 = 0x00000000;
76 base->ucr4 = 0x00008040;
77 base->uesc = 0x0000002B;
78 base->utim = 0x00000000;
79 base->ubir = 0x00000000;
80 base->ubmr = 0x00000000;
81 base->uts = 0x00000000;
82 /* Set clocks */
83 base->ucr4 |= UCR4_REF16;
84
85 /* Configure FIFOs */
86 base->ufcr = 0xa81;
87
Andrew Dyer48fed402008-09-12 02:20:46 +020088 /* set the baud rate.
89 *
90 * baud * 16 x
91 * --------- = -
92 * refclk y
93 *
94 * x - 1 = UBIR
95 * y - 1 = UBMR
96 *
97 * each register is 16 bits wide. refclk max is 96 MHz
98 *
99 */
100
101 ufcr_rfdiv = ((base->ufcr) & UFCR_RFDIV) >> 7;
102 if (ufcr_rfdiv == 6)
103 ufcr_rfdiv = 7;
104 else
105 ufcr_rfdiv = 6 - ufcr_rfdiv;
106
107 refclk = get_PERCLK1();
108 refclk /= ufcr_rfdiv;
109
wdenk281e00a2004-08-01 22:48:16 +0000110 /* Set the numerator value minus one of the BRM ratio */
Andrew Dyer48fed402008-09-12 02:20:46 +0200111 base->ubir = (gd->baudrate / 100) - 1;
wdenk281e00a2004-08-01 22:48:16 +0000112
113 /* Set the denominator value minus one of the BRM ratio */
Andrew Dyer48fed402008-09-12 02:20:46 +0200114 base->ubmr = (refclk/(16 * 100)) - 1;
wdenk281e00a2004-08-01 22:48:16 +0000115
116 /* Set to 8N1 */
117 base->ucr2 &= ~UCR2_PREN;
118 base->ucr2 |= UCR2_WS;
119 base->ucr2 &= ~UCR2_STPB;
120
121 /* Ignore RTS */
122 base->ucr2 |= UCR2_IRTS;
123
124 /* Enable UART */
125 base->ucr1 |= UCR1_UARTEN | UCR1_UARTCLKEN;
126
127 /* Enable FIFOs */
128 base->ucr2 |= UCR2_SRST | UCR2_RXEN | UCR2_TXEN;
129
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200130 /* Clear status flags */
wdenk281e00a2004-08-01 22:48:16 +0000131 base->usr2 |= USR2_ADET |
Andrew Dyer48fed402008-09-12 02:20:46 +0200132 USR2_DTRF |
133 USR2_IDLE |
134 USR2_IRINT |
135 USR2_WAKE |
136 USR2_RTSF |
137 USR2_BRCD |
138 USR2_ORE;
wdenk281e00a2004-08-01 22:48:16 +0000139
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200140 /* Clear status flags */
wdenk281e00a2004-08-01 22:48:16 +0000141 base->usr1 |= USR1_PARITYERR |
Andrew Dyer48fed402008-09-12 02:20:46 +0200142 USR1_RTSD |
143 USR1_ESCF |
144 USR1_FRAMERR |
145 USR1_AIRINT |
146 USR1_AWAKE;
wdenk281e00a2004-08-01 22:48:16 +0000147 return (0);
148}
149
150/*
151 * Read a single byte from the serial port. Returns 1 on success, 0
152 * otherwise. When the function is successful, the character read is
153 * written into its argument c.
154 */
Marek Vasut7882e7c2012-09-14 22:34:51 +0200155static int imx_serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000156{
157 volatile struct imx_serial* base = (struct imx_serial *)UART_BASE;
158 unsigned char ch;
159
160 while(base->uts & UTS_RXEMPTY);
161
162 ch = (char)base->urxd[0];
163
164 return ch;
165}
166
167#ifdef CONFIG_HWFLOW
168static int hwflow = 0; /* turned off by default */
169int hwflow_onoff(int on)
170{
171}
172#endif
173
174/*
175 * Output a single byte to the serial port.
176 */
Marek Vasut7882e7c2012-09-14 22:34:51 +0200177static void imx_serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000178{
179 volatile struct imx_serial* base = (struct imx_serial *)UART_BASE;
180
181 /* Wait for Tx FIFO not full */
182 while (base->uts & UTS_TXFULL);
183
184 base->utxd[0] = c;
185
186 /* If \n, also do \r */
187 if (c == '\n')
188 serial_putc ('\r');
189}
190
191/*
192 * Test whether a character is in the RX buffer
193 */
Marek Vasut7882e7c2012-09-14 22:34:51 +0200194static int imx_serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000195{
196 volatile struct imx_serial* base = (struct imx_serial *)UART_BASE;
197
198 /* If receive fifo is empty, return false */
199 if (base->uts & UTS_RXEMPTY)
200 return 0;
201 return 1;
202}
203
Marek Vasut7882e7c2012-09-14 22:34:51 +0200204static struct serial_device imx_serial_drv = {
205 .name = "imx_serial",
206 .start = imx_serial_init,
207 .stop = NULL,
208 .setbrg = imx_serial_setbrg,
209 .putc = imx_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000210 .puts = default_serial_puts,
Marek Vasut7882e7c2012-09-14 22:34:51 +0200211 .getc = imx_serial_getc,
212 .tstc = imx_serial_tstc,
213};
214
215void imx_serial_initialize(void)
216{
217 serial_register(&imx_serial_drv);
218}
219
220__weak struct serial_device *default_serial_console(void)
221{
222 return &imx_serial_drv;
223}