Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 2 | /* |
Patrice Chotard | 3bc599c | 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 | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 7 | #ifndef _SERIAL_STM32_ |
| 8 | #define _SERIAL_STM32_ |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 9 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 10 | #define CR1_OFFSET(x) (x ? 0x0c : 0x00) |
| 11 | #define CR3_OFFSET(x) (x ? 0x14 : 0x08) |
| 12 | #define BRR_OFFSET(x) (x ? 0x08 : 0x0c) |
| 13 | #define ISR_OFFSET(x) (x ? 0x00 : 0x1c) |
Patrice Chotard | 7b3b74d | 2018-04-20 08:59:06 +0200 | [diff] [blame] | 14 | |
| 15 | #define ICR_OFFSET 0x20 |
Patrick Delaunay | bc709a4 | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 16 | |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 17 | /* |
| 18 | * STM32F4 has one Data Register (DR) for received or transmitted |
| 19 | * data, so map Receive Data Register (RDR) and Transmit Data |
| 20 | * Register (TDR) at the same offset |
| 21 | */ |
| 22 | #define RDR_OFFSET(x) (x ? 0x04 : 0x24) |
| 23 | #define TDR_OFFSET(x) (x ? 0x04 : 0x28) |
| 24 | |
| 25 | struct stm32_uart_info { |
| 26 | u8 uart_enable_bit; /* UART_CR1_UE */ |
| 27 | bool stm32f4; /* true for STM32F4, false otherwise */ |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 28 | bool has_fifo; |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 29 | }; |
| 30 | |
Patrice Chotard | 6c30f15 | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 31 | struct stm32_uart_info stm32f4_info = { |
| 32 | .stm32f4 = true, |
| 33 | .uart_enable_bit = 13, |
Patrice Chotard | 6c30f15 | 2017-09-27 15:44:52 +0200 | [diff] [blame] | 34 | .has_fifo = false, |
| 35 | }; |
| 36 | |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 37 | struct stm32_uart_info stm32f7_info = { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 38 | .uart_enable_bit = 0, |
| 39 | .stm32f4 = false, |
Patrice Chotard | 95a0772 | 2018-09-20 15:14:15 +0200 | [diff] [blame] | 40 | .has_fifo = true, |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | struct stm32_uart_info stm32h7_info = { |
| 44 | .uart_enable_bit = 0, |
| 45 | .stm32f4 = false, |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 46 | .has_fifo = true, |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 47 | }; |
| 48 | |
Patrice Chotard | 122b2d4 | 2017-07-18 09:29:07 +0200 | [diff] [blame] | 49 | /* Information about a serial port */ |
| 50 | struct stm32x7_serial_platdata { |
Patrice Chotard | 60a996b | 2017-09-27 15:44:50 +0200 | [diff] [blame] | 51 | fdt_addr_t base; /* address of registers in physical memory */ |
| 52 | struct stm32_uart_info *uart_info; |
Patrice Chotard | 27265ce | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 53 | unsigned long int clock_rate; |
Patrice Chotard | 122b2d4 | 2017-07-18 09:29:07 +0200 | [diff] [blame] | 54 | }; |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 55 | |
Patrice Chotard | 2a7ecc5 | 2017-09-27 15:44:51 +0200 | [diff] [blame] | 56 | #define USART_CR1_FIFOEN BIT(29) |
Patrick Delaunay | bc709a4 | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 57 | #define USART_CR1_M1 BIT(28) |
Patrice Chotard | 2a52a95 | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 58 | #define USART_CR1_OVER8 BIT(15) |
Patrick Delaunay | bc709a4 | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 59 | #define USART_CR1_M0 BIT(12) |
| 60 | #define USART_CR1_PCE BIT(10) |
| 61 | #define USART_CR1_PS BIT(9) |
Patrice Chotard | 2a52a95 | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 62 | #define USART_CR1_TE BIT(3) |
| 63 | #define USART_CR1_RE BIT(2) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 64 | |
Patrice Chotard | 2a52a95 | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 65 | #define USART_CR3_OVRDIS BIT(12) |
Vikas Manocha | 6c0c3ce | 2017-05-28 12:55:12 -0700 | [diff] [blame] | 66 | |
Patrice Chotard | be1a6f7 | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 67 | #define USART_ISR_TXE BIT(7) |
| 68 | #define USART_ISR_RXNE BIT(5) |
| 69 | #define USART_ISR_ORE BIT(3) |
Patrick Delaunay | bc709a4 | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 70 | #define USART_ISR_PE BIT(0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 71 | |
Patrice Chotard | 2a52a95 | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 72 | #define USART_BRR_F_MASK GENMASK(7, 0) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 73 | #define USART_BRR_M_SHIFT 4 |
Patrice Chotard | 2a52a95 | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 74 | #define USART_BRR_M_MASK GENMASK(15, 4) |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 75 | |
Patrice Chotard | be1a6f7 | 2018-05-17 14:50:43 +0200 | [diff] [blame] | 76 | #define USART_ICR_ORECF BIT(3) |
Patrick Delaunay | bc709a4 | 2018-05-17 14:50:45 +0200 | [diff] [blame] | 77 | #define USART_ICR_PCECF BIT(0) |
| 78 | |
Vikas Manocha | 6a12ceb | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 79 | #endif |