Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 2 | /* |
Patrice Chotard | 789ee0e | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 3 | * Copyright (C) 2016, STMicroelectronics - All Rights Reserved |
| 4 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 8 | #include <clk.h> |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 9 | #include <dm.h> |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 10 | #include <serial.h> |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 11 | #include <watchdog.h> |
| 12 | #include <asm/io.h> |
Toshifumi NISHINAGA | 65bfb9c | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 13 | #include <asm/arch/stm32.h> |
Patrice Chotard | 9e27650 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 14 | #include "serial_stm32.h" |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 15 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 16 | static void _stm32_serial_setbrg(fdt_addr_t base, |
| 17 | struct stm32_uart_info *uart_info, |
| 18 | u32 clock_rate, |
| 19 | int baudrate) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 20 | { |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 21 | bool stm32f4 = uart_info->stm32f4; |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 22 | u32 int_div, mantissa, fraction, oversampling; |
Toshifumi NISHINAGA | 65bfb9c | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 23 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 24 | int_div = DIV_ROUND_CLOSEST(clock_rate, baudrate); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 25 | |
| 26 | if (int_div < 16) { |
| 27 | oversampling = 8; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 28 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 29 | } else { |
| 30 | oversampling = 16; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 31 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | mantissa = (int_div / oversampling) << USART_BRR_M_SHIFT; |
| 35 | fraction = int_div % oversampling; |
| 36 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 37 | writel(mantissa | fraction, base + BRR_OFFSET(stm32f4)); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static int stm32_serial_setbrg(struct udevice *dev, int baudrate) |
| 41 | { |
| 42 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 43 | |
| 44 | _stm32_serial_setbrg(plat->base, plat->uart_info, |
| 45 | plat->clock_rate, baudrate); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 50 | static int stm32_serial_setparity(struct udevice *dev, enum serial_par parity) |
| 51 | { |
| 52 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 53 | bool stm32f4 = plat->uart_info->stm32f4; |
| 54 | u8 uart_enable_bit = plat->uart_info->uart_enable_bit; |
| 55 | u32 cr1 = plat->base + CR1_OFFSET(stm32f4); |
| 56 | u32 config = 0; |
| 57 | |
| 58 | if (stm32f4) |
| 59 | return -EINVAL; /* not supported in driver*/ |
| 60 | |
| 61 | clrbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit)); |
| 62 | /* update usart configuration (uart need to be disable) |
| 63 | * PCE: parity check control |
| 64 | * PS : '0' : Even / '1' : Odd |
| 65 | * M[1:0] = '00' : 8 Data bits |
| 66 | * M[1:0] = '01' : 9 Data bits with parity |
| 67 | */ |
| 68 | switch (parity) { |
| 69 | default: |
| 70 | case SERIAL_PAR_NONE: |
| 71 | config = 0; |
| 72 | break; |
| 73 | case SERIAL_PAR_ODD: |
| 74 | config = USART_CR1_PCE | USART_CR1_PS | USART_CR1_M0; |
| 75 | break; |
| 76 | case SERIAL_PAR_EVEN: |
| 77 | config = USART_CR1_PCE | USART_CR1_M0; |
| 78 | break; |
| 79 | } |
| 80 | clrsetbits_le32(cr1, |
| 81 | USART_CR1_PCE | USART_CR1_PS | USART_CR1_M1 | |
| 82 | USART_CR1_M0, |
| 83 | config); |
| 84 | setbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit)); |
| 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 89 | static int stm32_serial_getc(struct udevice *dev) |
| 90 | { |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 91 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 92 | bool stm32f4 = plat->uart_info->stm32f4; |
| 93 | fdt_addr_t base = plat->base; |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 94 | u32 isr = readl(base + ISR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 95 | |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 96 | if ((isr & USART_ISR_RXNE) == 0) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 97 | return -EAGAIN; |
| 98 | |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 99 | if (isr & (USART_ISR_PE | USART_ISR_ORE)) { |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 100 | if (!stm32f4) |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 101 | setbits_le32(base + ICR_OFFSET, |
| 102 | USART_ICR_PCECF | USART_ICR_ORECF); |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 103 | else |
| 104 | readl(base + RDR_OFFSET(stm32f4)); |
| 105 | return -EIO; |
| 106 | } |
| 107 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 108 | return readl(base + RDR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 109 | } |
| 110 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 111 | static int _stm32_serial_putc(fdt_addr_t base, |
| 112 | struct stm32_uart_info *uart_info, |
| 113 | const char c) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 114 | { |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 115 | bool stm32f4 = uart_info->stm32f4; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 116 | |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 117 | if ((readl(base + ISR_OFFSET(stm32f4)) & USART_ISR_TXE) == 0) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 118 | return -EAGAIN; |
| 119 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 120 | writel(c, base + TDR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 125 | static int stm32_serial_putc(struct udevice *dev, const char c) |
| 126 | { |
| 127 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 128 | |
| 129 | return _stm32_serial_putc(plat->base, plat->uart_info, c); |
| 130 | } |
| 131 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 132 | static int stm32_serial_pending(struct udevice *dev, bool input) |
| 133 | { |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 134 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 135 | bool stm32f4 = plat->uart_info->stm32f4; |
| 136 | fdt_addr_t base = plat->base; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 137 | |
| 138 | if (input) |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 139 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 140 | USART_ISR_RXNE ? 1 : 0; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 141 | else |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 142 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 143 | USART_ISR_TXE ? 0 : 1; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 144 | } |
| 145 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 146 | static void _stm32_serial_init(fdt_addr_t base, |
| 147 | struct stm32_uart_info *uart_info) |
| 148 | { |
| 149 | bool stm32f4 = uart_info->stm32f4; |
| 150 | u8 uart_enable_bit = uart_info->uart_enable_bit; |
| 151 | |
| 152 | /* Disable uart-> enable fifo -> enable uart */ |
| 153 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 154 | BIT(uart_enable_bit)); |
| 155 | if (uart_info->has_fifo) |
| 156 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_FIFOEN); |
| 157 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 158 | BIT(uart_enable_bit)); |
| 159 | } |
| 160 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 161 | static int stm32_serial_probe(struct udevice *dev) |
| 162 | { |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 163 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Patrice Chotard | 21aad13 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 164 | struct clk clk; |
Patrice Chotard | 21aad13 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 165 | int ret; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 166 | |
| 167 | plat->uart_info = (struct stm32_uart_info *)dev_get_driver_data(dev); |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 168 | |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 169 | ret = clk_get_by_index(dev, 0, &clk); |
| 170 | if (ret < 0) |
| 171 | return ret; |
| 172 | |
| 173 | ret = clk_enable(&clk); |
| 174 | if (ret) { |
| 175 | dev_err(dev, "failed to enable clock\n"); |
| 176 | return ret; |
| 177 | } |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 178 | |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 179 | plat->clock_rate = clk_get_rate(&clk); |
| 180 | if (plat->clock_rate < 0) { |
| 181 | clk_disable(&clk); |
| 182 | return plat->clock_rate; |
| 183 | }; |
| 184 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 185 | _stm32_serial_init(plat->base, plat->uart_info); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 190 | static const struct udevice_id stm32_serial_id[] = { |
Patrice Chotard | b21a69a | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 191 | { .compatible = "st,stm32-uart", .data = (ulong)&stm32f4_info}, |
Patrice Chotard | 24fc72d | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 192 | { .compatible = "st,stm32f7-uart", .data = (ulong)&stm32f7_info}, |
| 193 | { .compatible = "st,stm32h7-uart", .data = (ulong)&stm32h7_info}, |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 194 | {} |
| 195 | }; |
| 196 | |
| 197 | static int stm32_serial_ofdata_to_platdata(struct udevice *dev) |
| 198 | { |
| 199 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 200 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 201 | plat->base = devfdt_get_addr(dev); |
| 202 | if (plat->base == FDT_ADDR_T_NONE) |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 203 | return -EINVAL; |
| 204 | |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 205 | return 0; |
| 206 | } |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 207 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 208 | static const struct dm_serial_ops stm32_serial_ops = { |
| 209 | .putc = stm32_serial_putc, |
| 210 | .pending = stm32_serial_pending, |
| 211 | .getc = stm32_serial_getc, |
| 212 | .setbrg = stm32_serial_setbrg, |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 213 | .setparity = stm32_serial_setparity |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | U_BOOT_DRIVER(serial_stm32) = { |
Patrice Chotard | 9e27650 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 217 | .name = "serial_stm32", |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 218 | .id = UCLASS_SERIAL, |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 219 | .of_match = of_match_ptr(stm32_serial_id), |
| 220 | .ofdata_to_platdata = of_match_ptr(stm32_serial_ofdata_to_platdata), |
| 221 | .platdata_auto_alloc_size = sizeof(struct stm32x7_serial_platdata), |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 222 | .ops = &stm32_serial_ops, |
| 223 | .probe = stm32_serial_probe, |
| 224 | .flags = DM_FLAG_PRE_RELOC, |
| 225 | }; |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 226 | |
| 227 | #ifdef CONFIG_DEBUG_UART_STM32 |
| 228 | #include <debug_uart.h> |
| 229 | static inline struct stm32_uart_info *_debug_uart_info(void) |
| 230 | { |
| 231 | struct stm32_uart_info *uart_info; |
| 232 | |
| 233 | #if defined(CONFIG_STM32F4) |
| 234 | uart_info = &stm32f4_info; |
| 235 | #elif defined(CONFIG_STM32F7) |
| 236 | uart_info = &stm32f7_info; |
| 237 | #else |
| 238 | uart_info = &stm32h7_info; |
| 239 | #endif |
| 240 | return uart_info; |
| 241 | } |
| 242 | |
| 243 | static inline void _debug_uart_init(void) |
| 244 | { |
| 245 | fdt_addr_t base = CONFIG_DEBUG_UART_BASE; |
| 246 | struct stm32_uart_info *uart_info = _debug_uart_info(); |
| 247 | |
| 248 | _stm32_serial_init(base, uart_info); |
| 249 | _stm32_serial_setbrg(base, uart_info, |
| 250 | CONFIG_DEBUG_UART_CLOCK, |
| 251 | CONFIG_BAUDRATE); |
| 252 | printf("DEBUG done\n"); |
| 253 | } |
| 254 | |
| 255 | static inline void _debug_uart_putc(int c) |
| 256 | { |
| 257 | fdt_addr_t base = CONFIG_DEBUG_UART_BASE; |
| 258 | struct stm32_uart_info *uart_info = _debug_uart_info(); |
| 259 | |
| 260 | while (_stm32_serial_putc(base, uart_info, c) == -EAGAIN) |
| 261 | WATCHDOG_RESET(); |
| 262 | } |
| 263 | |
| 264 | DEBUG_UART_FUNCS |
| 265 | #endif |