Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 1 | /* |
Patrice Chotard | 3bc599c | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 2 | * Copyright (C) 2016, STMicroelectronics - All Rights Reserved |
| 3 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 9 | #include <clk.h> |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 10 | #include <dm.h> |
| 11 | #include <asm/io.h> |
| 12 | #include <serial.h> |
Toshifumi NISHINAGA | ba0a3c1 | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 13 | #include <asm/arch/stm32.h> |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 14 | #include "serial_stm32.h" |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 15 | |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 16 | static int stm32_serial_setbrg(struct udevice *dev, int baudrate) |
| 17 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 18 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 19 | bool stm32f4 = plat->uart_info->stm32f4; |
| 20 | fdt_addr_t base = plat->base; |
Patrice Chotard | 27265ce | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 21 | u32 int_div, mantissa, fraction, oversampling; |
Toshifumi NISHINAGA | ba0a3c1 | 2016-07-08 01:02:24 +0900 | [diff] [blame] | 22 | |
Patrice Chotard | 27265ce | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 23 | int_div = DIV_ROUND_CLOSEST(plat->clock_rate, baudrate); |
Patrice Chotard | 1afcf9c | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 24 | |
| 25 | if (int_div < 16) { |
| 26 | oversampling = 8; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 27 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 1afcf9c | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 28 | } else { |
| 29 | oversampling = 16; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 30 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_OVER8); |
Patrice Chotard | 1afcf9c | 2017-06-08 09:26:55 +0200 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | mantissa = (int_div / oversampling) << USART_BRR_M_SHIFT; |
| 34 | fraction = int_div % oversampling; |
| 35 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 36 | writel(mantissa | fraction, base + BRR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 37 | |
| 38 | return 0; |
| 39 | } |
| 40 | |
| 41 | static int stm32_serial_getc(struct udevice *dev) |
| 42 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 43 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 44 | bool stm32f4 = plat->uart_info->stm32f4; |
| 45 | fdt_addr_t base = plat->base; |
Patrice Chotard | 7b3b74d | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 46 | u32 isr = readl(base + ISR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 47 | |
Patrice Chotard | 8dc4e1f | 2018-04-20 08:59:07 +0200 | [diff] [blame] | 48 | if ((isr & USART_ISR_FLAG_RXNE) == 0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 49 | return -EAGAIN; |
| 50 | |
Patrice Chotard | 8dc4e1f | 2018-04-20 08:59:07 +0200 | [diff] [blame] | 51 | if (isr & USART_ISR_FLAG_ORE) { |
Patrice Chotard | 7b3b74d | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 52 | if (!stm32f4) |
| 53 | setbits_le32(base + ICR_OFFSET, USART_ICR_OREF); |
| 54 | else |
| 55 | readl(base + RDR_OFFSET(stm32f4)); |
| 56 | return -EIO; |
| 57 | } |
| 58 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 59 | return readl(base + RDR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static int stm32_serial_putc(struct udevice *dev, const char c) |
| 63 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 64 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 65 | bool stm32f4 = plat->uart_info->stm32f4; |
| 66 | fdt_addr_t base = plat->base; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 67 | |
Patrice Chotard | 8dc4e1f | 2018-04-20 08:59:07 +0200 | [diff] [blame] | 68 | if ((readl(base + ISR_OFFSET(stm32f4)) & USART_ISR_FLAG_TXE) == 0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 69 | return -EAGAIN; |
| 70 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 71 | writel(c, base + TDR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static int stm32_serial_pending(struct udevice *dev, bool input) |
| 77 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 78 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 79 | bool stm32f4 = plat->uart_info->stm32f4; |
| 80 | fdt_addr_t base = plat->base; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 81 | |
| 82 | if (input) |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 83 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | 8dc4e1f | 2018-04-20 08:59:07 +0200 | [diff] [blame] | 84 | USART_ISR_FLAG_RXNE ? 1 : 0; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 85 | else |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 86 | return readl(base + ISR_OFFSET(stm32f4)) & |
Patrice Chotard | 8dc4e1f | 2018-04-20 08:59:07 +0200 | [diff] [blame] | 87 | USART_ISR_FLAG_TXE ? 0 : 1; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | static int stm32_serial_probe(struct udevice *dev) |
| 91 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 92 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Patrice Chotard | 9a212d7 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 93 | struct clk clk; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 94 | fdt_addr_t base = plat->base; |
Patrice Chotard | 9a212d7 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 95 | int ret; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 96 | bool stm32f4; |
| 97 | u8 uart_enable_bit; |
| 98 | |
| 99 | plat->uart_info = (struct stm32_uart_info *)dev_get_driver_data(dev); |
| 100 | stm32f4 = plat->uart_info->stm32f4; |
| 101 | uart_enable_bit = plat->uart_info->uart_enable_bit; |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 102 | |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 103 | ret = clk_get_by_index(dev, 0, &clk); |
| 104 | if (ret < 0) |
| 105 | return ret; |
| 106 | |
| 107 | ret = clk_enable(&clk); |
| 108 | if (ret) { |
| 109 | dev_err(dev, "failed to enable clock\n"); |
| 110 | return ret; |
| 111 | } |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 112 | |
Patrice Chotard | 27265ce | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 113 | plat->clock_rate = clk_get_rate(&clk); |
| 114 | if (plat->clock_rate < 0) { |
| 115 | clk_disable(&clk); |
| 116 | return plat->clock_rate; |
| 117 | }; |
| 118 | |
Patrice Chotard | 7b3b74d | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 119 | /* Disable uart-> enable fifo-> enable uart */ |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 120 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 121 | BIT(uart_enable_bit)); |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 122 | if (plat->uart_info->has_fifo) |
| 123 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_FIFOEN); |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 124 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 125 | BIT(uart_enable_bit)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 130 | static const struct udevice_id stm32_serial_id[] = { |
Patrice Chotard | 6c30f15 | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 131 | { .compatible = "st,stm32-uart", .data = (ulong)&stm32f4_info}, |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 132 | { .compatible = "st,stm32f7-uart", .data = (ulong)&stm32f7_info}, |
| 133 | { .compatible = "st,stm32h7-uart", .data = (ulong)&stm32h7_info}, |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 134 | {} |
| 135 | }; |
| 136 | |
| 137 | static int stm32_serial_ofdata_to_platdata(struct udevice *dev) |
| 138 | { |
| 139 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 140 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 141 | plat->base = devfdt_get_addr(dev); |
| 142 | if (plat->base == FDT_ADDR_T_NONE) |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 143 | return -EINVAL; |
| 144 | |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 145 | return 0; |
| 146 | } |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 147 | |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 148 | static const struct dm_serial_ops stm32_serial_ops = { |
| 149 | .putc = stm32_serial_putc, |
| 150 | .pending = stm32_serial_pending, |
| 151 | .getc = stm32_serial_getc, |
| 152 | .setbrg = stm32_serial_setbrg, |
| 153 | }; |
| 154 | |
| 155 | U_BOOT_DRIVER(serial_stm32) = { |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 156 | .name = "serial_stm32", |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 157 | .id = UCLASS_SERIAL, |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 158 | .of_match = of_match_ptr(stm32_serial_id), |
| 159 | .ofdata_to_platdata = of_match_ptr(stm32_serial_ofdata_to_platdata), |
| 160 | .platdata_auto_alloc_size = sizeof(struct stm32x7_serial_platdata), |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 161 | .ops = &stm32_serial_ops, |
| 162 | .probe = stm32_serial_probe, |
| 163 | .flags = DM_FLAG_PRE_RELOC, |
| 164 | }; |