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 | |
Patrick Delaunay | 80bd23b | 2020-11-06 19:01:56 +0100 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_SERIAL |
| 8 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 9 | #include <common.h> |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 10 | #include <clk.h> |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Patrice Chotard | 4d6701e | 2018-12-04 14:11:36 +0100 | [diff] [blame] | 13 | #include <reset.h> |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 14 | #include <serial.h> |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 15 | #include <watchdog.h> |
| 16 | #include <asm/io.h> |
Toshifumi NISHINAGA | 65bfb9c | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 17 | #include <asm/arch/stm32.h> |
Patrick Delaunay | 80bd23b | 2020-11-06 19:01:56 +0100 | [diff] [blame] | 18 | #include <dm/device_compat.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 19 | #include <linux/bitops.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 20 | #include <linux/delay.h> |
Patrice Chotard | e6262b1 | 2023-05-31 08:01:30 +0200 | [diff] [blame] | 21 | #include <linux/iopoll.h> |
Patrice Chotard | 9e27650 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 22 | #include "serial_stm32.h" |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 23 | #include <dm/device_compat.h> |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 24 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 25 | static void _stm32_serial_setbrg(fdt_addr_t base, |
| 26 | struct stm32_uart_info *uart_info, |
| 27 | u32 clock_rate, |
| 28 | int baudrate) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 29 | { |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 30 | bool stm32f4 = uart_info->stm32f4; |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 31 | u32 int_div, mantissa, fraction, oversampling; |
Patrice Chotard | 45bc3c4 | 2023-05-31 08:01:31 +0200 | [diff] [blame^] | 32 | u8 uart_enable_bit = uart_info->uart_enable_bit; |
| 33 | |
| 34 | /* BRR register must be set when uart is disabled */ |
| 35 | clrbits_le32(base + CR1_OFFSET(stm32f4), BIT(uart_enable_bit)); |
Toshifumi NISHINAGA | 65bfb9c | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 36 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 37 | int_div = DIV_ROUND_CLOSEST(clock_rate, baudrate); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 38 | |
| 39 | if (int_div < 16) { |
| 40 | oversampling = 8; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 41 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 42 | } else { |
| 43 | oversampling = 16; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 44 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 3149632 | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | mantissa = (int_div / oversampling) << USART_BRR_M_SHIFT; |
| 48 | fraction = int_div % oversampling; |
| 49 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 50 | writel(mantissa | fraction, base + BRR_OFFSET(stm32f4)); |
Patrice Chotard | 45bc3c4 | 2023-05-31 08:01:31 +0200 | [diff] [blame^] | 51 | |
| 52 | setbits_le32(base + CR1_OFFSET(stm32f4), BIT(uart_enable_bit)); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static int stm32_serial_setbrg(struct udevice *dev, int baudrate) |
| 56 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 57 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 58 | |
| 59 | _stm32_serial_setbrg(plat->base, plat->uart_info, |
| 60 | plat->clock_rate, baudrate); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 65 | static int stm32_serial_setconfig(struct udevice *dev, uint serial_config) |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 66 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 67 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 68 | bool stm32f4 = plat->uart_info->stm32f4; |
| 69 | u8 uart_enable_bit = plat->uart_info->uart_enable_bit; |
| 70 | u32 cr1 = plat->base + CR1_OFFSET(stm32f4); |
| 71 | u32 config = 0; |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 72 | uint parity = SERIAL_GET_PARITY(serial_config); |
| 73 | uint bits = SERIAL_GET_BITS(serial_config); |
| 74 | uint stop = SERIAL_GET_STOP(serial_config); |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 75 | |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 76 | /* |
| 77 | * only parity config is implemented, check if other serial settings |
| 78 | * are the default one. |
| 79 | * (STM32F4 serial IP didn't support parity setting) |
| 80 | */ |
| 81 | if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP || stm32f4) |
| 82 | return -ENOTSUPP; /* not supported in driver*/ |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 83 | |
| 84 | clrbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit)); |
| 85 | /* update usart configuration (uart need to be disable) |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 86 | * PCE: parity check enable |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 87 | * PS : '0' : Even / '1' : Odd |
| 88 | * M[1:0] = '00' : 8 Data bits |
| 89 | * M[1:0] = '01' : 9 Data bits with parity |
| 90 | */ |
| 91 | switch (parity) { |
| 92 | default: |
| 93 | case SERIAL_PAR_NONE: |
| 94 | config = 0; |
| 95 | break; |
| 96 | case SERIAL_PAR_ODD: |
| 97 | config = USART_CR1_PCE | USART_CR1_PS | USART_CR1_M0; |
| 98 | break; |
| 99 | case SERIAL_PAR_EVEN: |
| 100 | config = USART_CR1_PCE | USART_CR1_M0; |
| 101 | break; |
| 102 | } |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 103 | |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 104 | clrsetbits_le32(cr1, |
| 105 | USART_CR1_PCE | USART_CR1_PS | USART_CR1_M1 | |
| 106 | USART_CR1_M0, |
| 107 | config); |
| 108 | setbits_le32(cr1, USART_CR1_RE | USART_CR1_TE | BIT(uart_enable_bit)); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 113 | static int stm32_serial_getc(struct udevice *dev) |
| 114 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 115 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 116 | bool stm32f4 = plat->uart_info->stm32f4; |
| 117 | fdt_addr_t base = plat->base; |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 118 | u32 isr = readl(base + ISR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 119 | |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 120 | if ((isr & USART_ISR_RXNE) == 0) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 121 | return -EAGAIN; |
| 122 | |
Patrick Delaunay | 1a103bf | 2019-07-30 19:16:46 +0200 | [diff] [blame] | 123 | if (isr & (USART_ISR_PE | USART_ISR_ORE | USART_ISR_FE)) { |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 124 | if (!stm32f4) |
Patrick Delaunay | 39ffe0e | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 125 | setbits_le32(base + ICR_OFFSET, |
Patrick Delaunay | 1a103bf | 2019-07-30 19:16:46 +0200 | [diff] [blame] | 126 | USART_ICR_PCECF | USART_ICR_ORECF | |
| 127 | USART_ICR_FECF); |
Patrice Chotard | 24af24b | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 128 | else |
| 129 | readl(base + RDR_OFFSET(stm32f4)); |
| 130 | return -EIO; |
| 131 | } |
| 132 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 133 | return readl(base + RDR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 136 | static int _stm32_serial_putc(fdt_addr_t base, |
| 137 | struct stm32_uart_info *uart_info, |
| 138 | const char c) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 139 | { |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 140 | bool stm32f4 = uart_info->stm32f4; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 141 | |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 142 | if ((readl(base + ISR_OFFSET(stm32f4)) & USART_ISR_TXE) == 0) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 143 | return -EAGAIN; |
| 144 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 145 | writel(c, base + TDR_OFFSET(stm32f4)); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 150 | static int stm32_serial_putc(struct udevice *dev, const char c) |
| 151 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 152 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 153 | |
| 154 | return _stm32_serial_putc(plat->base, plat->uart_info, c); |
| 155 | } |
| 156 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 157 | static int stm32_serial_pending(struct udevice *dev, bool input) |
| 158 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 159 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 160 | bool stm32f4 = plat->uart_info->stm32f4; |
| 161 | fdt_addr_t base = plat->base; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 162 | |
| 163 | if (input) |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 164 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 165 | USART_ISR_RXNE ? 1 : 0; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 166 | else |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 167 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | db0536e | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 168 | USART_ISR_TXE ? 0 : 1; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 169 | } |
| 170 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 171 | static void _stm32_serial_init(fdt_addr_t base, |
| 172 | struct stm32_uart_info *uart_info) |
| 173 | { |
| 174 | bool stm32f4 = uart_info->stm32f4; |
| 175 | u8 uart_enable_bit = uart_info->uart_enable_bit; |
| 176 | |
| 177 | /* Disable uart-> enable fifo -> enable uart */ |
| 178 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 179 | BIT(uart_enable_bit)); |
| 180 | if (uart_info->has_fifo) |
| 181 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_FIFOEN); |
| 182 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 183 | BIT(uart_enable_bit)); |
| 184 | } |
| 185 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 186 | static int stm32_serial_probe(struct udevice *dev) |
| 187 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 188 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Patrice Chotard | 21aad13 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 189 | struct clk clk; |
Patrice Chotard | 4d6701e | 2018-12-04 14:11:36 +0100 | [diff] [blame] | 190 | struct reset_ctl reset; |
Patrice Chotard | e6262b1 | 2023-05-31 08:01:30 +0200 | [diff] [blame] | 191 | u32 isr; |
Patrice Chotard | 21aad13 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 192 | int ret; |
Patrice Chotard | e6262b1 | 2023-05-31 08:01:30 +0200 | [diff] [blame] | 193 | bool stm32f4; |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 194 | |
| 195 | plat->uart_info = (struct stm32_uart_info *)dev_get_driver_data(dev); |
Patrice Chotard | e6262b1 | 2023-05-31 08:01:30 +0200 | [diff] [blame] | 196 | stm32f4 = plat->uart_info->stm32f4; |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 197 | |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 198 | ret = clk_get_by_index(dev, 0, &clk); |
| 199 | if (ret < 0) |
| 200 | return ret; |
| 201 | |
| 202 | ret = clk_enable(&clk); |
| 203 | if (ret) { |
| 204 | dev_err(dev, "failed to enable clock\n"); |
| 205 | return ret; |
| 206 | } |
Vikas Manocha | 7b00ff9 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 207 | |
Patrice Chotard | e6262b1 | 2023-05-31 08:01:30 +0200 | [diff] [blame] | 208 | /* |
| 209 | * before uart initialization, wait for TC bit (Transmission Complete) |
| 210 | * in case there is still chars from previous bootstage to transmit |
| 211 | */ |
| 212 | ret = read_poll_timeout(readl, isr, isr & USART_ISR_TC, 10, 150, |
| 213 | plat->base + ISR_OFFSET(stm32f4)); |
| 214 | if (ret) { |
| 215 | clk_disable(&clk); |
| 216 | return ret; |
| 217 | } |
| 218 | |
Patrice Chotard | 4d6701e | 2018-12-04 14:11:36 +0100 | [diff] [blame] | 219 | ret = reset_get_by_index(dev, 0, &reset); |
| 220 | if (!ret) { |
| 221 | reset_assert(&reset); |
| 222 | udelay(2); |
| 223 | reset_deassert(&reset); |
| 224 | } |
| 225 | |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 226 | plat->clock_rate = clk_get_rate(&clk); |
Patrick Delaunay | 3f4afd3 | 2019-06-21 15:26:41 +0200 | [diff] [blame] | 227 | if (!plat->clock_rate) { |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 228 | clk_disable(&clk); |
Patrick Delaunay | 3f4afd3 | 2019-06-21 15:26:41 +0200 | [diff] [blame] | 229 | return -EINVAL; |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 230 | }; |
| 231 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 232 | _stm32_serial_init(plat->base, plat->uart_info); |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 233 | |
| 234 | return 0; |
| 235 | } |
| 236 | |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 237 | static const struct udevice_id stm32_serial_id[] = { |
Patrice Chotard | b21a69a | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 238 | { .compatible = "st,stm32-uart", .data = (ulong)&stm32f4_info}, |
Patrice Chotard | 24fc72d | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 239 | { .compatible = "st,stm32f7-uart", .data = (ulong)&stm32f7_info}, |
| 240 | { .compatible = "st,stm32h7-uart", .data = (ulong)&stm32h7_info}, |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 241 | {} |
| 242 | }; |
| 243 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 244 | static int stm32_serial_of_to_plat(struct udevice *dev) |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 245 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 246 | struct stm32x7_serial_plat *plat = dev_get_plat(dev); |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 247 | |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 248 | plat->base = dev_read_addr(dev); |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 249 | if (plat->base == FDT_ADDR_T_NONE) |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 250 | return -EINVAL; |
| 251 | |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 252 | return 0; |
| 253 | } |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 254 | |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 255 | static const struct dm_serial_ops stm32_serial_ops = { |
| 256 | .putc = stm32_serial_putc, |
| 257 | .pending = stm32_serial_pending, |
| 258 | .getc = stm32_serial_getc, |
| 259 | .setbrg = stm32_serial_setbrg, |
Patrice Chotard | 34e64c0 | 2018-08-03 15:07:39 +0200 | [diff] [blame] | 260 | .setconfig = stm32_serial_setconfig |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | U_BOOT_DRIVER(serial_stm32) = { |
Patrice Chotard | 9e27650 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 264 | .name = "serial_stm32", |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 265 | .id = UCLASS_SERIAL, |
Vikas Manocha | 19e22c6 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 266 | .of_match = of_match_ptr(stm32_serial_id), |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 267 | .of_to_plat = of_match_ptr(stm32_serial_of_to_plat), |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 268 | .plat_auto = sizeof(struct stm32x7_serial_plat), |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 269 | .ops = &stm32_serial_ops, |
| 270 | .probe = stm32_serial_probe, |
Bin Meng | bdb33d8 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 271 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 272 | .flags = DM_FLAG_PRE_RELOC, |
Bin Meng | bdb33d8 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 273 | #endif |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 274 | }; |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 275 | |
| 276 | #ifdef CONFIG_DEBUG_UART_STM32 |
| 277 | #include <debug_uart.h> |
| 278 | static inline struct stm32_uart_info *_debug_uart_info(void) |
| 279 | { |
| 280 | struct stm32_uart_info *uart_info; |
| 281 | |
| 282 | #if defined(CONFIG_STM32F4) |
| 283 | uart_info = &stm32f4_info; |
| 284 | #elif defined(CONFIG_STM32F7) |
| 285 | uart_info = &stm32f7_info; |
| 286 | #else |
| 287 | uart_info = &stm32h7_info; |
| 288 | #endif |
| 289 | return uart_info; |
| 290 | } |
| 291 | |
| 292 | static inline void _debug_uart_init(void) |
| 293 | { |
Pali Rohár | 8864b35 | 2022-05-27 22:15:24 +0200 | [diff] [blame] | 294 | fdt_addr_t base = CONFIG_VAL(DEBUG_UART_BASE); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 295 | struct stm32_uart_info *uart_info = _debug_uart_info(); |
| 296 | |
| 297 | _stm32_serial_init(base, uart_info); |
| 298 | _stm32_serial_setbrg(base, uart_info, |
| 299 | CONFIG_DEBUG_UART_CLOCK, |
| 300 | CONFIG_BAUDRATE); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | static inline void _debug_uart_putc(int c) |
| 304 | { |
Pali Rohár | 8864b35 | 2022-05-27 22:15:24 +0200 | [diff] [blame] | 305 | fdt_addr_t base = CONFIG_VAL(DEBUG_UART_BASE); |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 306 | struct stm32_uart_info *uart_info = _debug_uart_info(); |
| 307 | |
| 308 | while (_stm32_serial_putc(base, uart_info, c) == -EAGAIN) |
Patrick Delaunay | e093b1c | 2019-04-18 17:32:51 +0200 | [diff] [blame] | 309 | ; |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | DEBUG_UART_FUNCS |
| 313 | #endif |