Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2016 |
| 3 | * Vikas Manocha, <vikas.manocha@st.com> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #ifndef _SERIAL_STM32_X7_ |
| 9 | #define _SERIAL_STM32_X7_ |
| 10 | |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame^] | 11 | #define CR1_OFFSET(x) (x ? 0x0c : 0x00) |
| 12 | #define CR3_OFFSET(x) (x ? 0x14 : 0x08) |
| 13 | #define BRR_OFFSET(x) (x ? 0x08 : 0x0c) |
| 14 | #define ISR_OFFSET(x) (x ? 0x00 : 0x1c) |
| 15 | /* |
| 16 | * STM32F4 has one Data Register (DR) for received or transmitted |
| 17 | * data, so map Receive Data Register (RDR) and Transmit Data |
| 18 | * Register (TDR) at the same offset |
| 19 | */ |
| 20 | #define RDR_OFFSET(x) (x ? 0x04 : 0x24) |
| 21 | #define TDR_OFFSET(x) (x ? 0x04 : 0x28) |
| 22 | |
| 23 | struct stm32_uart_info { |
| 24 | u8 uart_enable_bit; /* UART_CR1_UE */ |
| 25 | bool stm32f4; /* true for STM32F4, false otherwise */ |
| 26 | bool has_overrun_disable; |
| 27 | }; |
| 28 | |
| 29 | struct stm32_uart_info stm32x7_info = { |
| 30 | .uart_enable_bit = 0, |
| 31 | .stm32f4 = false, |
| 32 | .has_overrun_disable = true, |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 33 | }; |
| 34 | |
Patrice Chotard | 2195315 | 2017-07-18 09:29:07 +0200 | [diff] [blame] | 35 | /* Information about a serial port */ |
| 36 | struct stm32x7_serial_platdata { |
Patrice Chotard | 5011e6f | 2017-09-27 15:44:50 +0200 | [diff] [blame^] | 37 | fdt_addr_t base; /* address of registers in physical memory */ |
| 38 | struct stm32_uart_info *uart_info; |
Patrice Chotard | 4809a19 | 2017-07-18 09:29:08 +0200 | [diff] [blame] | 39 | unsigned long int clock_rate; |
Patrice Chotard | 2195315 | 2017-07-18 09:29:07 +0200 | [diff] [blame] | 40 | }; |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 41 | |
Patrice Chotard | 6961a9d | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 42 | #define USART_CR1_OVER8 BIT(15) |
| 43 | #define USART_CR1_TE BIT(3) |
| 44 | #define USART_CR1_RE BIT(2) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 45 | |
Patrice Chotard | 6961a9d | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 46 | #define USART_CR3_OVRDIS BIT(12) |
Vikas Manocha | 59535d5 | 2017-05-28 12:55:12 -0700 | [diff] [blame] | 47 | |
Patrice Chotard | 6961a9d | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 48 | #define USART_SR_FLAG_RXNE BIT(5) |
| 49 | #define USART_SR_FLAG_TXE BIT(7) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 50 | |
Patrice Chotard | 6961a9d | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 51 | #define USART_BRR_F_MASK GENMASK(7, 0) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 52 | #define USART_BRR_M_SHIFT 4 |
Patrice Chotard | 6961a9d | 2017-09-27 15:44:48 +0200 | [diff] [blame] | 53 | #define USART_BRR_M_MASK GENMASK(15, 4) |
Vikas Manocha | 5dba05e | 2016-02-11 15:47:19 -0800 | [diff] [blame] | 54 | |
| 55 | #endif |