2 * Copyright (C) 2004-2006 Atmel Corporation
4 * Modified to support C structur SoC access by
5 * Andreas Bießmann <biessmann@corscience.de>
7 * SPDX-License-Identifier: GPL-2.0+
12 #include <linux/compiler.h>
15 #include <asm/arch/clk.h>
16 #include <asm/arch/hardware.h>
18 #include "atmel_usart.h"
20 DECLARE_GLOBAL_DATA_PTR;
22 static void atmel_serial_setbrg(void)
24 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
25 unsigned long divisor;
26 unsigned long usart_hz;
30 * Baud Rate = --------------
33 usart_hz = get_usart_clk_rate(CONFIG_USART_ID);
34 divisor = (usart_hz / 16 + gd->baudrate / 2) / gd->baudrate;
35 writel(USART3_BF(CD, divisor), &usart->brgr);
38 static int atmel_serial_init(void)
40 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
43 * Just in case: drain transmitter register
44 * 1000us is enough for baudrate >= 9600
46 if (!(readl(&usart->csr) & USART3_BIT(TXEMPTY)))
49 writel(USART3_BIT(RSTRX) | USART3_BIT(RSTTX), &usart->cr);
53 writel((USART3_BF(USART_MODE, USART3_USART_MODE_NORMAL)
54 | USART3_BF(USCLKS, USART3_USCLKS_MCK)
55 | USART3_BF(CHRL, USART3_CHRL_8)
56 | USART3_BF(PAR, USART3_PAR_NONE)
57 | USART3_BF(NBSTOP, USART3_NBSTOP_1)),
59 writel(USART3_BIT(RXEN) | USART3_BIT(TXEN), &usart->cr);
60 /* 100us is enough for the new settings to be settled */
66 static void atmel_serial_putc(char c)
68 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
73 while (!(readl(&usart->csr) & USART3_BIT(TXRDY)));
74 writel(c, &usart->thr);
77 static int atmel_serial_getc(void)
79 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
81 while (!(readl(&usart->csr) & USART3_BIT(RXRDY)))
83 return readl(&usart->rhr);
86 static int atmel_serial_tstc(void)
88 atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
89 return (readl(&usart->csr) & USART3_BIT(RXRDY)) != 0;
92 static struct serial_device atmel_serial_drv = {
93 .name = "atmel_serial",
94 .start = atmel_serial_init,
96 .setbrg = atmel_serial_setbrg,
97 .putc = atmel_serial_putc,
98 .puts = default_serial_puts,
99 .getc = atmel_serial_getc,
100 .tstc = atmel_serial_tstc,
103 void atmel_serial_initialize(void)
105 serial_register(&atmel_serial_drv);
108 __weak struct serial_device *default_serial_console(void)
110 return &atmel_serial_drv;