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; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 46 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 47 | if ((readl(base + ISR_OFFSET(stm32f4)) & USART_SR_FLAG_RXNE) == 0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 48 | return -EAGAIN; |
| 49 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 50 | return readl(base + RDR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | static int stm32_serial_putc(struct udevice *dev, const char c) |
| 54 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 55 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 56 | bool stm32f4 = plat->uart_info->stm32f4; |
| 57 | fdt_addr_t base = plat->base; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 58 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 59 | if ((readl(base + ISR_OFFSET(stm32f4)) & USART_SR_FLAG_TXE) == 0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 60 | return -EAGAIN; |
| 61 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 62 | writel(c, base + TDR_OFFSET(stm32f4)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | static int stm32_serial_pending(struct udevice *dev, bool input) |
| 68 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 69 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
| 70 | bool stm32f4 = plat->uart_info->stm32f4; |
| 71 | fdt_addr_t base = plat->base; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 72 | |
| 73 | if (input) |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 74 | return readl(base + ISR_OFFSET(stm32f4)) & |
| 75 | USART_SR_FLAG_RXNE ? 1 : 0; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 76 | else |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 77 | return readl(base + ISR_OFFSET(stm32f4)) & |
| 78 | USART_SR_FLAG_TXE ? 0 : 1; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static int stm32_serial_probe(struct udevice *dev) |
| 82 | { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 83 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Patrice Chotard | 9a212d7 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 84 | struct clk clk; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 85 | fdt_addr_t base = plat->base; |
Patrice Chotard | 9a212d7 | 2017-09-27 15:44:53 +0200 | [diff] [blame] | 86 | int ret; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 87 | bool stm32f4; |
| 88 | u8 uart_enable_bit; |
| 89 | |
| 90 | plat->uart_info = (struct stm32_uart_info *)dev_get_driver_data(dev); |
| 91 | stm32f4 = plat->uart_info->stm32f4; |
| 92 | uart_enable_bit = plat->uart_info->uart_enable_bit; |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 93 | |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 94 | ret = clk_get_by_index(dev, 0, &clk); |
| 95 | if (ret < 0) |
| 96 | return ret; |
| 97 | |
| 98 | ret = clk_enable(&clk); |
| 99 | if (ret) { |
| 100 | dev_err(dev, "failed to enable clock\n"); |
| 101 | return ret; |
| 102 | } |
Vikas Manocha | fd03b83 | 2017-02-12 10:25:46 -0800 | [diff] [blame] | 103 | |
Patrice Chotard | 27265ce | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 104 | plat->clock_rate = clk_get_rate(&clk); |
| 105 | if (plat->clock_rate < 0) { |
| 106 | clk_disable(&clk); |
| 107 | return plat->clock_rate; |
| 108 | }; |
| 109 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 110 | /* Disable uart-> disable overrun-> enable uart */ |
| 111 | clrbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 112 | BIT(uart_enable_bit)); |
| 113 | if (plat->uart_info->has_overrun_disable) |
| 114 | setbits_le32(base + CR3_OFFSET(stm32f4), USART_CR3_OVRDIS); |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 115 | if (plat->uart_info->has_fifo) |
| 116 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_FIFOEN); |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 117 | setbits_le32(base + CR1_OFFSET(stm32f4), USART_CR1_RE | USART_CR1_TE | |
| 118 | BIT(uart_enable_bit)); |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 123 | static const struct udevice_id stm32_serial_id[] = { |
Patrice Chotard | 6c30f15 | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 124 | { .compatible = "st,stm32-uart", .data = (ulong)&stm32f4_info}, |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 125 | { .compatible = "st,stm32f7-uart", .data = (ulong)&stm32f7_info}, |
| 126 | { .compatible = "st,stm32h7-uart", .data = (ulong)&stm32h7_info}, |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 127 | {} |
| 128 | }; |
| 129 | |
| 130 | static int stm32_serial_ofdata_to_platdata(struct udevice *dev) |
| 131 | { |
| 132 | struct stm32x7_serial_platdata *plat = dev_get_platdata(dev); |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 133 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 134 | plat->base = devfdt_get_addr(dev); |
| 135 | if (plat->base == FDT_ADDR_T_NONE) |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 136 | return -EINVAL; |
| 137 | |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 138 | return 0; |
| 139 | } |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 140 | |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 141 | static const struct dm_serial_ops stm32_serial_ops = { |
| 142 | .putc = stm32_serial_putc, |
| 143 | .pending = stm32_serial_pending, |
| 144 | .getc = stm32_serial_getc, |
| 145 | .setbrg = stm32_serial_setbrg, |
| 146 | }; |
| 147 | |
| 148 | U_BOOT_DRIVER(serial_stm32) = { |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 149 | .name = "serial_stm32", |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 150 | .id = UCLASS_SERIAL, |
Vikas Manocha | 42bf5e7 | 2017-02-12 10:25:44 -0800 | [diff] [blame] | 151 | .of_match = of_match_ptr(stm32_serial_id), |
| 152 | .ofdata_to_platdata = of_match_ptr(stm32_serial_ofdata_to_platdata), |
| 153 | .platdata_auto_alloc_size = sizeof(struct stm32x7_serial_platdata), |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 154 | .ops = &stm32_serial_ops, |
| 155 | .probe = stm32_serial_probe, |
| 156 | .flags = DM_FLAG_PRE_RELOC, |
| 157 | }; |