blob: 3ab536a52ac032c270b3d341c1ca2554d1ecbe8d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08002/*
Patrice Chotard3bc599c2017-10-23 09:53:58 +02003 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08005 */
6
7#include <common.h>
Vikas Manochafd03b832017-02-12 10:25:46 -08008#include <clk.h>
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08009#include <dm.h>
Patrice Chotardf828fa42018-12-04 14:11:36 +010010#include <reset.h>
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080011#include <serial.h>
Patrick Delaunay215c8be2018-05-17 14:50:42 +020012#include <watchdog.h>
13#include <asm/io.h>
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090014#include <asm/arch/stm32.h>
Patrice Chotardae74de02018-01-12 09:23:49 +010015#include "serial_stm32.h"
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080016
Patrick Delaunay215c8be2018-05-17 14:50:42 +020017static void _stm32_serial_setbrg(fdt_addr_t base,
18 struct stm32_uart_info *uart_info,
19 u32 clock_rate,
20 int baudrate)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080021{
Patrick Delaunay215c8be2018-05-17 14:50:42 +020022 bool stm32f4 = uart_info->stm32f4;
Patrice Chotard27265ce2017-07-18 09:29:08 +020023 u32 int_div, mantissa, fraction, oversampling;
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090024
Patrick Delaunay215c8be2018-05-17 14:50:42 +020025 int_div = DIV_ROUND_CLOSEST(clock_rate, baudrate);
Patrice Chotard1afcf9c2017-06-08 09:26:55 +020026
27 if (int_div < 16) {
28 oversampling = 8;
Patrice Chotard60a996b2017-09-27 15:44:50 +020029 setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8);
Patrice Chotard1afcf9c2017-06-08 09:26:55 +020030 } else {
31 oversampling = 16;
Patrice Chotard60a996b2017-09-27 15:44:50 +020032 clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8);
Patrice Chotard1afcf9c2017-06-08 09:26:55 +020033 }
34
35 mantissa = (int_div / oversampling) << USART_BRR_M_SHIFT;
36 fraction = int_div % oversampling;
37
Patrice Chotard60a996b2017-09-27 15:44:50 +020038 writel(mantissa | fraction, base + BRR_OFFSET(stm32f4));
Patrick Delaunay215c8be2018-05-17 14:50:42 +020039}
40
41static int stm32_serial_setbrg(struct udevice *dev, int baudrate)
42{
43 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
44
45 _stm32_serial_setbrg(plat->base, plat->uart_info,
46 plat->clock_rate, baudrate);
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080047
48 return 0;
49}
50
Patrice Chotardfbd5c722018-08-03 15:07:39 +020051static int stm32_serial_setconfig(struct udevice *dev, uint serial_config)
Patrick Delaunaybc709a42018-05-17 14:50:45 +020052{
53 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
54 bool stm32f4 = plat->uart_info->stm32f4;
55 u8 uart_enable_bit = plat->uart_info->uart_enable_bit;
56 u32 cr1 = plat->base + CR1_OFFSET(stm32f4);
57 u32 config = 0;
Patrice Chotardfbd5c722018-08-03 15:07:39 +020058 uint parity = SERIAL_GET_PARITY(serial_config);
59 uint bits = SERIAL_GET_BITS(serial_config);
60 uint stop = SERIAL_GET_STOP(serial_config);
Patrick Delaunaybc709a42018-05-17 14:50:45 +020061
Patrice Chotardfbd5c722018-08-03 15:07:39 +020062 /*
63 * only parity config is implemented, check if other serial settings
64 * are the default one.
65 * (STM32F4 serial IP didn't support parity setting)
66 */
67 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP || stm32f4)
68 return -ENOTSUPP; /* not supported in driver*/
Patrick Delaunaybc709a42018-05-17 14:50:45 +020069
70 clrbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit));
71 /* update usart configuration (uart need to be disable)
Patrice Chotardfbd5c722018-08-03 15:07:39 +020072 * PCE: parity check enable
Patrick Delaunaybc709a42018-05-17 14:50:45 +020073 * PS : '0' : Even / '1' : Odd
74 * M[1:0] = '00' : 8 Data bits
75 * M[1:0] = '01' : 9 Data bits with parity
76 */
77 switch (parity) {
78 default:
79 case SERIAL_PAR_NONE:
80 config = 0;
81 break;
82 case SERIAL_PAR_ODD:
83 config = USART_CR1_PCE | USART_CR1_PS | USART_CR1_M0;
84 break;
85 case SERIAL_PAR_EVEN:
86 config = USART_CR1_PCE | USART_CR1_M0;
87 break;
88 }
Patrice Chotardfbd5c722018-08-03 15:07:39 +020089
Patrick Delaunaybc709a42018-05-17 14:50:45 +020090 clrsetbits_le32(cr1,
91 USART_CR1_PCE | USART_CR1_PS | USART_CR1_M1 |
92 USART_CR1_M0,
93 config);
94 setbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit));
95
96 return 0;
97}
98
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080099static int stm32_serial_getc(struct udevice *dev)
100{
Patrice Chotard60a996b2017-09-27 15:44:50 +0200101 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
102 bool stm32f4 = plat->uart_info->stm32f4;
103 fdt_addr_t base = plat->base;
Patrice Chotard7b3b74d2018-04-20 08:59:06 +0200104 u32 isr = readl(base + ISR_OFFSET(stm32f4));
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800105
Patrice Chotardbe1a6f72018-05-17 14:50:43 +0200106 if ((isr & USART_ISR_RXNE) == 0)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800107 return -EAGAIN;
108
Patrick Delaunaybc709a42018-05-17 14:50:45 +0200109 if (isr & (USART_ISR_PE | USART_ISR_ORE)) {
Patrice Chotard7b3b74d2018-04-20 08:59:06 +0200110 if (!stm32f4)
Patrick Delaunaybc709a42018-05-17 14:50:45 +0200111 setbits_le32(base + ICR_OFFSET,
112 USART_ICR_PCECF | USART_ICR_ORECF);
Patrice Chotard7b3b74d2018-04-20 08:59:06 +0200113 else
114 readl(base + RDR_OFFSET(stm32f4));
115 return -EIO;
116 }
117
Patrice Chotard60a996b2017-09-27 15:44:50 +0200118 return readl(base + RDR_OFFSET(stm32f4));
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800119}
120
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200121static int _stm32_serial_putc(fdt_addr_t base,
122 struct stm32_uart_info *uart_info,
123 const char c)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800124{
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200125 bool stm32f4 = uart_info->stm32f4;
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800126
Patrice Chotardbe1a6f72018-05-17 14:50:43 +0200127 if ((readl(base + ISR_OFFSET(stm32f4)) & USART_ISR_TXE) == 0)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800128 return -EAGAIN;
129
Patrice Chotard60a996b2017-09-27 15:44:50 +0200130 writel(c, base + TDR_OFFSET(stm32f4));
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800131
132 return 0;
133}
134
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200135static int stm32_serial_putc(struct udevice *dev, const char c)
136{
137 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
138
139 return _stm32_serial_putc(plat->base, plat->uart_info, c);
140}
141
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800142static int stm32_serial_pending(struct udevice *dev, bool input)
143{
Patrice Chotard60a996b2017-09-27 15:44:50 +0200144 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
145 bool stm32f4 = plat->uart_info->stm32f4;
146 fdt_addr_t base = plat->base;
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800147
148 if (input)
Patrice Chotard60a996b2017-09-27 15:44:50 +0200149 return readl(base + ISR_OFFSET(stm32f4)) &
Patrice Chotardbe1a6f72018-05-17 14:50:43 +0200150 USART_ISR_RXNE ? 1 : 0;
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800151 else
Patrice Chotard60a996b2017-09-27 15:44:50 +0200152 return readl(base + ISR_OFFSET(stm32f4)) &
Patrice Chotardbe1a6f72018-05-17 14:50:43 +0200153 USART_ISR_TXE ? 0 : 1;
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800154}
155
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200156static void _stm32_serial_init(fdt_addr_t base,
157 struct stm32_uart_info *uart_info)
158{
159 bool stm32f4 = uart_info->stm32f4;
160 u8 uart_enable_bit = uart_info->uart_enable_bit;
161
162 /* Disable uart-> enable fifo -> enable uart */
163 clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE |
164 BIT(uart_enable_bit));
165 if (uart_info->has_fifo)
166 setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_FIFOEN);
167 setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE |
168 BIT(uart_enable_bit));
169}
170
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800171static int stm32_serial_probe(struct udevice *dev)
172{
Patrice Chotard60a996b2017-09-27 15:44:50 +0200173 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
Patrice Chotard9a212d72017-09-27 15:44:53 +0200174 struct clk clk;
Patrice Chotardf828fa42018-12-04 14:11:36 +0100175 struct reset_ctl reset;
Patrice Chotard9a212d72017-09-27 15:44:53 +0200176 int ret;
Patrice Chotard60a996b2017-09-27 15:44:50 +0200177
178 plat->uart_info = (struct stm32_uart_info *)dev_get_driver_data(dev);
Vikas Manochafd03b832017-02-12 10:25:46 -0800179
Vikas Manochafd03b832017-02-12 10:25:46 -0800180 ret = clk_get_by_index(dev, 0, &clk);
181 if (ret < 0)
182 return ret;
183
184 ret = clk_enable(&clk);
185 if (ret) {
186 dev_err(dev, "failed to enable clock\n");
187 return ret;
188 }
Vikas Manochafd03b832017-02-12 10:25:46 -0800189
Patrice Chotardf828fa42018-12-04 14:11:36 +0100190 ret = reset_get_by_index(dev, 0, &reset);
191 if (!ret) {
192 reset_assert(&reset);
193 udelay(2);
194 reset_deassert(&reset);
195 }
196
Patrice Chotard27265ce2017-07-18 09:29:08 +0200197 plat->clock_rate = clk_get_rate(&clk);
Patrick Delaunay585289b2019-06-21 15:26:41 +0200198 if (!plat->clock_rate) {
Patrice Chotard27265ce2017-07-18 09:29:08 +0200199 clk_disable(&clk);
Patrick Delaunay585289b2019-06-21 15:26:41 +0200200 return -EINVAL;
Patrice Chotard27265ce2017-07-18 09:29:08 +0200201 };
202
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200203 _stm32_serial_init(plat->base, plat->uart_info);
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800204
205 return 0;
206}
207
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800208static const struct udevice_id stm32_serial_id[] = {
Patrice Chotard6c30f152017-09-27 15:44:52 +0200209 { .compatible = "st,stm32-uart", .data = (ulong)&stm32f4_info},
Patrice Chotard2a7ecc52017-09-27 15:44:51 +0200210 { .compatible = "st,stm32f7-uart", .data = (ulong)&stm32f7_info},
211 { .compatible = "st,stm32h7-uart", .data = (ulong)&stm32h7_info},
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800212 {}
213};
214
215static int stm32_serial_ofdata_to_platdata(struct udevice *dev)
216{
217 struct stm32x7_serial_platdata *plat = dev_get_platdata(dev);
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800218
Patrice Chotard60a996b2017-09-27 15:44:50 +0200219 plat->base = devfdt_get_addr(dev);
220 if (plat->base == FDT_ADDR_T_NONE)
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800221 return -EINVAL;
222
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800223 return 0;
224}
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800225
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800226static const struct dm_serial_ops stm32_serial_ops = {
227 .putc = stm32_serial_putc,
228 .pending = stm32_serial_pending,
229 .getc = stm32_serial_getc,
230 .setbrg = stm32_serial_setbrg,
Patrice Chotardfbd5c722018-08-03 15:07:39 +0200231 .setconfig = stm32_serial_setconfig
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800232};
233
234U_BOOT_DRIVER(serial_stm32) = {
Patrice Chotardae74de02018-01-12 09:23:49 +0100235 .name = "serial_stm32",
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800236 .id = UCLASS_SERIAL,
Vikas Manocha42bf5e72017-02-12 10:25:44 -0800237 .of_match = of_match_ptr(stm32_serial_id),
238 .ofdata_to_platdata = of_match_ptr(stm32_serial_ofdata_to_platdata),
239 .platdata_auto_alloc_size = sizeof(struct stm32x7_serial_platdata),
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800240 .ops = &stm32_serial_ops,
241 .probe = stm32_serial_probe,
Bin Meng46879192018-10-24 06:36:36 -0700242#if !CONFIG_IS_ENABLED(OF_CONTROL)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800243 .flags = DM_FLAG_PRE_RELOC,
Bin Meng46879192018-10-24 06:36:36 -0700244#endif
Vikas Manocha6a12ceb2016-02-11 15:47:19 -0800245};
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200246
247#ifdef CONFIG_DEBUG_UART_STM32
248#include <debug_uart.h>
249static inline struct stm32_uart_info *_debug_uart_info(void)
250{
251 struct stm32_uart_info *uart_info;
252
253#if defined(CONFIG_STM32F4)
254 uart_info = &stm32f4_info;
255#elif defined(CONFIG_STM32F7)
256 uart_info = &stm32f7_info;
257#else
258 uart_info = &stm32h7_info;
259#endif
260 return uart_info;
261}
262
263static inline void _debug_uart_init(void)
264{
265 fdt_addr_t base = CONFIG_DEBUG_UART_BASE;
266 struct stm32_uart_info *uart_info = _debug_uart_info();
267
268 _stm32_serial_init(base, uart_info);
269 _stm32_serial_setbrg(base, uart_info,
270 CONFIG_DEBUG_UART_CLOCK,
271 CONFIG_BAUDRATE);
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200272}
273
274static inline void _debug_uart_putc(int c)
275{
276 fdt_addr_t base = CONFIG_DEBUG_UART_BASE;
277 struct stm32_uart_info *uart_info = _debug_uart_info();
278
279 while (_stm32_serial_putc(base, uart_info, c) == -EAGAIN)
Patrick Delaunay66dba9a2019-04-18 17:32:51 +0200280 ;
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200281}
282
283DEBUG_UART_FUNCS
284#endif