blob: bb294ff94f0b10a6fbe25e18d7241a1cdc9e41c3 [file] [log] [blame]
Wolfgang Denkf93ae782006-10-24 14:31:24 +02001/*
2 * Copyright (C) 2004-2006 Atmel Corporation
3 *
Andreas Bießmann125637c2010-09-03 10:28:05 +02004 * Modified to support C structur SoC access by
5 * Andreas Bießmann <biessmann@corscience.de>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkf93ae782006-10-24 14:31:24 +02008 */
9#include <common.h>
Wenyou Yangf8b7fff2017-04-14 15:01:28 +080010#include <clk.h>
Simon Glass0f65f482014-10-29 13:09:00 -060011#include <dm.h>
12#include <errno.h>
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +010013#include <watchdog.h>
Marek Vasutcfba4572012-09-13 16:50:30 +020014#include <serial.h>
Wenyou Yang998cf3c2016-10-17 09:49:55 +080015#include <debug_uart.h>
Marek Vasutcfba4572012-09-13 16:50:30 +020016#include <linux/compiler.h>
Wolfgang Denkf93ae782006-10-24 14:31:24 +020017
Wolfgang Denkf93ae782006-10-24 14:31:24 +020018#include <asm/io.h>
Simon Glass0f65f482014-10-29 13:09:00 -060019#ifdef CONFIG_DM_SERIAL
20#include <asm/arch/atmel_serial.h>
21#endif
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010022#include <asm/arch/clk.h>
Reinhard Meyer329f0f52010-11-03 16:32:56 +010023#include <asm/arch/hardware.h>
Wolfgang Denkf93ae782006-10-24 14:31:24 +020024
25#include "atmel_usart.h"
26
27DECLARE_GLOBAL_DATA_PTR;
28
Wenyou Yang5f29e792017-04-14 15:01:27 +080029#ifndef CONFIG_DM_SERIAL
Simon Glass62137fc2014-10-29 13:08:59 -060030static void atmel_serial_setbrg_internal(atmel_usart3_t *usart, int id,
31 int baudrate)
Wolfgang Denkf93ae782006-10-24 14:31:24 +020032{
33 unsigned long divisor;
34 unsigned long usart_hz;
35
36 /*
37 * Master Clock
38 * Baud Rate = --------------
39 * 16 * CD
40 */
Simon Glass62137fc2014-10-29 13:08:59 -060041 usart_hz = get_usart_clk_rate(id);
42 divisor = (usart_hz / 16 + baudrate / 2) / baudrate;
Andreas Bießmann125637c2010-09-03 10:28:05 +020043 writel(USART3_BF(CD, divisor), &usart->brgr);
Wolfgang Denkf93ae782006-10-24 14:31:24 +020044}
45
Simon Glass62137fc2014-10-29 13:08:59 -060046static void atmel_serial_init_internal(atmel_usart3_t *usart)
Wolfgang Denkf93ae782006-10-24 14:31:24 +020047{
Xu, Hong1f4faed2011-08-02 01:05:04 +000048 /*
49 * Just in case: drain transmitter register
50 * 1000us is enough for baudrate >= 9600
51 */
52 if (!(readl(&usart->csr) & USART3_BIT(TXEMPTY)))
53 __udelay(1000);
54
Andreas Bießmann125637c2010-09-03 10:28:05 +020055 writel(USART3_BIT(RSTRX) | USART3_BIT(RSTTX), &usart->cr);
Simon Glass62137fc2014-10-29 13:08:59 -060056}
Wolfgang Denkf93ae782006-10-24 14:31:24 +020057
Simon Glass62137fc2014-10-29 13:08:59 -060058static void atmel_serial_activate(atmel_usart3_t *usart)
59{
Andreas Bießmann125637c2010-09-03 10:28:05 +020060 writel((USART3_BF(USART_MODE, USART3_USART_MODE_NORMAL)
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010061 | USART3_BF(USCLKS, USART3_USCLKS_MCK)
62 | USART3_BF(CHRL, USART3_CHRL_8)
63 | USART3_BF(PAR, USART3_PAR_NONE)
Andreas Bießmann125637c2010-09-03 10:28:05 +020064 | USART3_BF(NBSTOP, USART3_NBSTOP_1)),
65 &usart->mr);
Xu, Hong1f4faed2011-08-02 01:05:04 +000066 writel(USART3_BIT(RXEN) | USART3_BIT(TXEN), &usart->cr);
67 /* 100us is enough for the new settings to be settled */
68 __udelay(100);
Simon Glass62137fc2014-10-29 13:08:59 -060069}
70
71static void atmel_serial_setbrg(void)
72{
73 atmel_serial_setbrg_internal((atmel_usart3_t *)CONFIG_USART_BASE,
74 CONFIG_USART_ID, gd->baudrate);
75}
76
77static int atmel_serial_init(void)
78{
79 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
80
81 atmel_serial_init_internal(usart);
82 serial_setbrg();
83 atmel_serial_activate(usart);
Wolfgang Denkf93ae782006-10-24 14:31:24 +020084
85 return 0;
86}
87
Marek Vasutcfba4572012-09-13 16:50:30 +020088static void atmel_serial_putc(char c)
Wolfgang Denkf93ae782006-10-24 14:31:24 +020089{
Reinhard Meyer329f0f52010-11-03 16:32:56 +010090 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
Andreas Bießmann125637c2010-09-03 10:28:05 +020091
Wolfgang Denkf93ae782006-10-24 14:31:24 +020092 if (c == '\n')
93 serial_putc('\r');
94
Andreas Bießmann125637c2010-09-03 10:28:05 +020095 while (!(readl(&usart->csr) & USART3_BIT(TXRDY)));
96 writel(c, &usart->thr);
Wolfgang Denkf93ae782006-10-24 14:31:24 +020097}
98
Marek Vasutcfba4572012-09-13 16:50:30 +020099static int atmel_serial_getc(void)
Wolfgang Denkf93ae782006-10-24 14:31:24 +0200100{
Reinhard Meyer329f0f52010-11-03 16:32:56 +0100101 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
Andreas Bießmann125637c2010-09-03 10:28:05 +0200102
103 while (!(readl(&usart->csr) & USART3_BIT(RXRDY)))
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +0100104 WATCHDOG_RESET();
Andreas Bießmann125637c2010-09-03 10:28:05 +0200105 return readl(&usart->rhr);
Wolfgang Denkf93ae782006-10-24 14:31:24 +0200106}
107
Marek Vasutcfba4572012-09-13 16:50:30 +0200108static int atmel_serial_tstc(void)
Wolfgang Denkf93ae782006-10-24 14:31:24 +0200109{
Reinhard Meyer329f0f52010-11-03 16:32:56 +0100110 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
Andreas Bießmann125637c2010-09-03 10:28:05 +0200111 return (readl(&usart->csr) & USART3_BIT(RXRDY)) != 0;
Wolfgang Denkf93ae782006-10-24 14:31:24 +0200112}
Marek Vasutcfba4572012-09-13 16:50:30 +0200113
Marek Vasutcfba4572012-09-13 16:50:30 +0200114static struct serial_device atmel_serial_drv = {
115 .name = "atmel_serial",
116 .start = atmel_serial_init,
117 .stop = NULL,
118 .setbrg = atmel_serial_setbrg,
119 .putc = atmel_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000120 .puts = default_serial_puts,
Marek Vasutcfba4572012-09-13 16:50:30 +0200121 .getc = atmel_serial_getc,
122 .tstc = atmel_serial_tstc,
123};
124
125void atmel_serial_initialize(void)
126{
127 serial_register(&atmel_serial_drv);
128}
129
130__weak struct serial_device *default_serial_console(void)
131{
132 return &atmel_serial_drv;
133}
Simon Glass0f65f482014-10-29 13:09:00 -0600134#endif
135
136#ifdef CONFIG_DM_SERIAL
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800137enum serial_clk_type {
138 CLK_TYPE_NORMAL = 0,
139 CLK_TYPE_DBGU,
140};
Simon Glass0f65f482014-10-29 13:09:00 -0600141
142struct atmel_serial_priv {
143 atmel_usart3_t *usart;
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800144 ulong usart_clk_rate;
Simon Glass0f65f482014-10-29 13:09:00 -0600145};
146
Wenyou Yang5f29e792017-04-14 15:01:27 +0800147static void _atmel_serial_set_brg(atmel_usart3_t *usart,
148 ulong usart_clk_rate, int baudrate)
149{
150 unsigned long divisor;
151
152 divisor = (usart_clk_rate / 16 + baudrate / 2) / baudrate;
153 writel(USART3_BF(CD, divisor), &usart->brgr);
154}
155
156void _atmel_serial_init(atmel_usart3_t *usart,
157 ulong usart_clk_rate, int baudrate)
158{
159 writel(USART3_BIT(RXDIS) | USART3_BIT(TXDIS), &usart->cr);
160
161 writel((USART3_BF(USART_MODE, USART3_USART_MODE_NORMAL) |
162 USART3_BF(USCLKS, USART3_USCLKS_MCK) |
163 USART3_BF(CHRL, USART3_CHRL_8) |
164 USART3_BF(PAR, USART3_PAR_NONE) |
165 USART3_BF(NBSTOP, USART3_NBSTOP_1)), &usart->mr);
166
167 _atmel_serial_set_brg(usart, usart_clk_rate, baudrate);
168
169 writel(USART3_BIT(RSTRX) | USART3_BIT(RSTTX), &usart->cr);
170 writel(USART3_BIT(RXEN) | USART3_BIT(TXEN), &usart->cr);
171}
172
Simon Glass0f65f482014-10-29 13:09:00 -0600173int atmel_serial_setbrg(struct udevice *dev, int baudrate)
174{
175 struct atmel_serial_priv *priv = dev_get_priv(dev);
176
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800177 _atmel_serial_set_brg(priv->usart, priv->usart_clk_rate, baudrate);
Simon Glass0f65f482014-10-29 13:09:00 -0600178
179 return 0;
180}
181
182static int atmel_serial_getc(struct udevice *dev)
183{
184 struct atmel_serial_priv *priv = dev_get_priv(dev);
185
186 if (!(readl(&priv->usart->csr) & USART3_BIT(RXRDY)))
187 return -EAGAIN;
188
189 return readl(&priv->usart->rhr);
190}
191
192static int atmel_serial_putc(struct udevice *dev, const char ch)
193{
194 struct atmel_serial_priv *priv = dev_get_priv(dev);
195
196 if (!(readl(&priv->usart->csr) & USART3_BIT(TXRDY)))
197 return -EAGAIN;
198
199 writel(ch, &priv->usart->thr);
200
201 return 0;
202}
203
204static int atmel_serial_pending(struct udevice *dev, bool input)
205{
206 struct atmel_serial_priv *priv = dev_get_priv(dev);
207 uint32_t csr = readl(&priv->usart->csr);
208
209 if (input)
210 return csr & USART3_BIT(RXRDY) ? 1 : 0;
211 else
212 return csr & USART3_BIT(TXEMPTY) ? 0 : 1;
213}
214
215static const struct dm_serial_ops atmel_serial_ops = {
216 .putc = atmel_serial_putc,
217 .pending = atmel_serial_pending,
218 .getc = atmel_serial_getc,
219 .setbrg = atmel_serial_setbrg,
220};
221
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800222static int atmel_serial_enable_clk(struct udevice *dev)
223{
224 struct atmel_serial_priv *priv = dev_get_priv(dev);
225 struct clk clk;
226 ulong clk_rate;
227 int ret;
228
229 ret = clk_get_by_index(dev, 0, &clk);
230 if (ret)
231 return -EINVAL;
232
233 if (dev_get_driver_data(dev) == CLK_TYPE_NORMAL) {
234 ret = clk_enable(&clk);
235 if (ret)
236 return ret;
237 }
238
239 clk_rate = clk_get_rate(&clk);
240 if (!clk_rate)
241 return -EINVAL;
242
243 priv->usart_clk_rate = clk_rate;
244
245 clk_free(&clk);
246
247 return 0;
248}
249
Simon Glass0f65f482014-10-29 13:09:00 -0600250static int atmel_serial_probe(struct udevice *dev)
251{
252 struct atmel_serial_platdata *plat = dev->platdata;
253 struct atmel_serial_priv *priv = dev_get_priv(dev);
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800254 int ret;
Wenyou Yangc1631c82016-06-01 08:36:56 +0800255#if CONFIG_IS_ENABLED(OF_CONTROL)
256 fdt_addr_t addr_base;
Simon Glass0f65f482014-10-29 13:09:00 -0600257
Simon Glassa821c4a2017-05-17 17:18:05 -0600258 addr_base = devfdt_get_addr(dev);
Wenyou Yangc1631c82016-06-01 08:36:56 +0800259 if (addr_base == FDT_ADDR_T_NONE)
260 return -ENODEV;
261
262 plat->base_addr = (uint32_t)addr_base;
263#endif
Simon Glass0f65f482014-10-29 13:09:00 -0600264 priv->usart = (atmel_usart3_t *)plat->base_addr;
Wenyou Yang5f29e792017-04-14 15:01:27 +0800265
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800266 ret = atmel_serial_enable_clk(dev);
267 if (ret)
268 return ret;
269
270 _atmel_serial_init(priv->usart, priv->usart_clk_rate, gd->baudrate);
Simon Glass0f65f482014-10-29 13:09:00 -0600271
272 return 0;
273}
274
Wenyou Yangc1631c82016-06-01 08:36:56 +0800275#if CONFIG_IS_ENABLED(OF_CONTROL)
276static const struct udevice_id atmel_serial_ids[] = {
Wenyou Yangf8b7fff2017-04-14 15:01:28 +0800277 {
278 .compatible = "atmel,at91sam9260-dbgu",
279 .data = CLK_TYPE_DBGU,
280 },
281 {
282 .compatible = "atmel,at91sam9260-usart",
283 .data = CLK_TYPE_NORMAL,
284 },
Wenyou Yangc1631c82016-06-01 08:36:56 +0800285 { }
286};
287#endif
288
Simon Glass0f65f482014-10-29 13:09:00 -0600289U_BOOT_DRIVER(serial_atmel) = {
290 .name = "serial_atmel",
291 .id = UCLASS_SERIAL,
Wenyou Yangc1631c82016-06-01 08:36:56 +0800292#if CONFIG_IS_ENABLED(OF_CONTROL)
293 .of_match = atmel_serial_ids,
294 .platdata_auto_alloc_size = sizeof(struct atmel_serial_platdata),
295#endif
Simon Glass0f65f482014-10-29 13:09:00 -0600296 .probe = atmel_serial_probe,
297 .ops = &atmel_serial_ops,
298 .flags = DM_FLAG_PRE_RELOC,
299 .priv_auto_alloc_size = sizeof(struct atmel_serial_priv),
300};
301#endif
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800302
303#ifdef CONFIG_DEBUG_UART_ATMEL
304static inline void _debug_uart_init(void)
305{
306 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_DEBUG_UART_BASE;
307
Wenyou Yang5f29e792017-04-14 15:01:27 +0800308 _atmel_serial_init(usart, CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800309}
310
311static inline void _debug_uart_putc(int ch)
312{
313 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_DEBUG_UART_BASE;
314
315 while (!(readl(&usart->csr) & USART3_BIT(TXRDY)))
316 ;
317
318 writel(ch, &usart->thr);
319}
320
321DEBUG_UART_FUNCS
322#endif