1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2004-2006 Atmel Corporation
5 * Modified to support C structur SoC access by
14 #include <debug_uart.h>
15 #include <linux/compiler.h>
18 #ifdef CONFIG_DM_SERIAL
19 #include <asm/arch/atmel_serial.h>
21 #include <asm/arch/clk.h>
22 #include <asm/arch/hardware.h>
24 #include "atmel_usart.h"
26 DECLARE_GLOBAL_DATA_PTR;
28 #ifndef CONFIG_DM_SERIAL
29 static void atmel_serial_setbrg_internal(atmel_usart3_t *usart, int id,
32 unsigned long divisor;
33 unsigned long usart_hz;
37 * Baud Rate = --------------
40 usart_hz = get_usart_clk_rate(id);
41 divisor = (usart_hz / 16 + baudrate / 2) / baudrate;
42 writel(USART3_BF(CD, divisor), &usart->brgr);
45 static void atmel_serial_init_internal(atmel_usart3_t *usart)
48 * Just in case: drain transmitter register
49 * 1000us is enough for baudrate >= 9600
51 if (!(readl(&usart->csr) & USART3_BIT(TXEMPTY)))
54 writel(USART3_BIT(RSTRX) | USART3_BIT(RSTTX), &usart->cr);
57 static void atmel_serial_activate(atmel_usart3_t *usart)
59 writel((USART3_BF(USART_MODE, USART3_USART_MODE_NORMAL)
60 | USART3_BF(USCLKS, USART3_USCLKS_MCK)
61 | USART3_BF(CHRL, USART3_CHRL_8)
62 | USART3_BF(PAR, USART3_PAR_NONE)
63 | USART3_BF(NBSTOP, USART3_NBSTOP_1)),
65 writel(USART3_BIT(RXEN) | USART3_BIT(TXEN), &usart->cr);
66 /* 100us is enough for the new settings to be settled */
70 static void atmel_serial_setbrg(void)
72 atmel_serial_setbrg_internal((atmel_usart3_t *)CONFIG_USART_BASE,
73 CONFIG_USART_ID, gd->baudrate);
76 static int atmel_serial_init(void)
78 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
80 atmel_serial_init_internal(usart);
82 atmel_serial_activate(usart);
87 static void atmel_serial_putc(char c)
89 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
94 while (!(readl(&usart->csr) & USART3_BIT(TXRDY)));
95 writel(c, &usart->thr);
98 static int atmel_serial_getc(void)
100 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
102 while (!(readl(&usart->csr) & USART3_BIT(RXRDY)))
104 return readl(&usart->rhr);
107 static int atmel_serial_tstc(void)
109 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
110 return (readl(&usart->csr) & USART3_BIT(RXRDY)) != 0;
113 static struct serial_device atmel_serial_drv = {
114 .name = "atmel_serial",
115 .start = atmel_serial_init,
117 .setbrg = atmel_serial_setbrg,
118 .putc = atmel_serial_putc,
119 .puts = default_serial_puts,
120 .getc = atmel_serial_getc,
121 .tstc = atmel_serial_tstc,
124 void atmel_serial_initialize(void)
126 serial_register(&atmel_serial_drv);
129 __weak struct serial_device *default_serial_console(void)
131 return &atmel_serial_drv;
135 #ifdef CONFIG_DM_SERIAL
136 enum serial_clk_type {
141 struct atmel_serial_priv {
142 atmel_usart3_t *usart;
143 ulong usart_clk_rate;
146 static void _atmel_serial_set_brg(atmel_usart3_t *usart,
147 ulong usart_clk_rate, int baudrate)
149 unsigned long divisor;
151 divisor = (usart_clk_rate / 16 + baudrate / 2) / baudrate;
152 writel(USART3_BF(CD, divisor), &usart->brgr);
155 void _atmel_serial_init(atmel_usart3_t *usart,
156 ulong usart_clk_rate, int baudrate)
158 writel(USART3_BIT(RXDIS) | USART3_BIT(TXDIS), &usart->cr);
160 writel((USART3_BF(USART_MODE, USART3_USART_MODE_NORMAL) |
161 USART3_BF(USCLKS, USART3_USCLKS_MCK) |
162 USART3_BF(CHRL, USART3_CHRL_8) |
163 USART3_BF(PAR, USART3_PAR_NONE) |
164 USART3_BF(NBSTOP, USART3_NBSTOP_1)), &usart->mr);
166 _atmel_serial_set_brg(usart, usart_clk_rate, baudrate);
168 writel(USART3_BIT(RSTRX) | USART3_BIT(RSTTX), &usart->cr);
169 writel(USART3_BIT(RXEN) | USART3_BIT(TXEN), &usart->cr);
172 int atmel_serial_setbrg(struct udevice *dev, int baudrate)
174 struct atmel_serial_priv *priv = dev_get_priv(dev);
176 _atmel_serial_set_brg(priv->usart, priv->usart_clk_rate, baudrate);
181 static int atmel_serial_getc(struct udevice *dev)
183 struct atmel_serial_priv *priv = dev_get_priv(dev);
185 if (!(readl(&priv->usart->csr) & USART3_BIT(RXRDY)))
188 return readl(&priv->usart->rhr);
191 static int atmel_serial_putc(struct udevice *dev, const char ch)
193 struct atmel_serial_priv *priv = dev_get_priv(dev);
195 if (!(readl(&priv->usart->csr) & USART3_BIT(TXRDY)))
198 writel(ch, &priv->usart->thr);
203 static int atmel_serial_pending(struct udevice *dev, bool input)
205 struct atmel_serial_priv *priv = dev_get_priv(dev);
206 uint32_t csr = readl(&priv->usart->csr);
209 return csr & USART3_BIT(RXRDY) ? 1 : 0;
211 return csr & USART3_BIT(TXEMPTY) ? 0 : 1;
214 static const struct dm_serial_ops atmel_serial_ops = {
215 .putc = atmel_serial_putc,
216 .pending = atmel_serial_pending,
217 .getc = atmel_serial_getc,
218 .setbrg = atmel_serial_setbrg,
221 #if defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_CLK)
222 static int atmel_serial_enable_clk(struct udevice *dev)
224 struct atmel_serial_priv *priv = dev_get_priv(dev);
226 /* Use fixed clock value in SPL */
227 priv->usart_clk_rate = CONFIG_SPL_UART_CLOCK;
232 static int atmel_serial_enable_clk(struct udevice *dev)
234 struct atmel_serial_priv *priv = dev_get_priv(dev);
239 ret = clk_get_by_index(dev, 0, &clk);
243 if (dev_get_driver_data(dev) == CLK_TYPE_NORMAL) {
244 ret = clk_enable(&clk);
249 clk_rate = clk_get_rate(&clk);
253 priv->usart_clk_rate = clk_rate;
261 static int atmel_serial_probe(struct udevice *dev)
263 struct atmel_serial_platdata *plat = dev->platdata;
264 struct atmel_serial_priv *priv = dev_get_priv(dev);
266 #if CONFIG_IS_ENABLED(OF_CONTROL)
267 fdt_addr_t addr_base;
269 addr_base = devfdt_get_addr(dev);
270 if (addr_base == FDT_ADDR_T_NONE)
273 plat->base_addr = (uint32_t)addr_base;
275 priv->usart = (atmel_usart3_t *)plat->base_addr;
277 ret = atmel_serial_enable_clk(dev);
281 _atmel_serial_init(priv->usart, priv->usart_clk_rate, gd->baudrate);
286 #if CONFIG_IS_ENABLED(OF_CONTROL)
287 static const struct udevice_id atmel_serial_ids[] = {
289 .compatible = "atmel,at91sam9260-dbgu",
290 .data = CLK_TYPE_DBGU,
293 .compatible = "atmel,at91sam9260-usart",
294 .data = CLK_TYPE_NORMAL,
300 U_BOOT_DRIVER(serial_atmel) = {
301 .name = "serial_atmel",
303 #if CONFIG_IS_ENABLED(OF_CONTROL)
304 .of_match = atmel_serial_ids,
305 .platdata_auto_alloc_size = sizeof(struct atmel_serial_platdata),
307 .probe = atmel_serial_probe,
308 .ops = &atmel_serial_ops,
309 #if !CONFIG_IS_ENABLED(OF_CONTROL)
310 .flags = DM_FLAG_PRE_RELOC,
312 .priv_auto_alloc_size = sizeof(struct atmel_serial_priv),
316 #ifdef CONFIG_DEBUG_UART_ATMEL
317 static inline void _debug_uart_init(void)
319 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_DEBUG_UART_BASE;
321 _atmel_serial_init(usart, CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
324 static inline void _debug_uart_putc(int ch)
326 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_DEBUG_UART_BASE;
328 while (!(readl(&usart->csr) & USART3_BIT(TXRDY)))
331 writel(ch, &usart->thr);