blob: 6ebec0acac459a75266bde1b7d347e98b18d3f6f [file] [log] [blame]
Vikas Manocha5dba05e2016-02-11 15:47:19 -08001/*
Patrice Chotard789ee0e2017-10-23 09:53:58 +02002 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
3 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha5dba05e2016-02-11 15:47:19 -08004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
Patrice Chotard9e276502018-01-12 09:23:49 +01008#ifndef _SERIAL_STM32_
9#define _SERIAL_STM32_
Vikas Manocha5dba05e2016-02-11 15:47:19 -080010
Patrice Chotard5011e6f2017-09-27 15:44:50 +020011#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)
Patrice Chotard24af24b2018-04-20 08:59:06 +020015
16#define ICR_OFFSET 0x20
Patrice Chotard5011e6f2017-09-27 15:44:50 +020017/*
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
25struct stm32_uart_info {
26 u8 uart_enable_bit; /* UART_CR1_UE */
27 bool stm32f4; /* true for STM32F4, false otherwise */
Patrice Chotard24fc72d2017-09-27 15:44:51 +020028 bool has_fifo;
Patrice Chotard5011e6f2017-09-27 15:44:50 +020029};
30
Patrice Chotardb21a69a2017-09-27 15:44:52 +020031struct stm32_uart_info stm32f4_info = {
32 .stm32f4 = true,
33 .uart_enable_bit = 13,
Patrice Chotardb21a69a2017-09-27 15:44:52 +020034 .has_fifo = false,
35};
36
Patrice Chotard24fc72d2017-09-27 15:44:51 +020037struct stm32_uart_info stm32f7_info = {
Patrice Chotard5011e6f2017-09-27 15:44:50 +020038 .uart_enable_bit = 0,
39 .stm32f4 = false,
Patrice Chotard24fc72d2017-09-27 15:44:51 +020040 .has_fifo = false,
Vikas Manocha5dba05e2016-02-11 15:47:19 -080041};
42
Patrice Chotard24fc72d2017-09-27 15:44:51 +020043struct stm32_uart_info stm32h7_info = {
44 .uart_enable_bit = 0,
45 .stm32f4 = false,
Patrice Chotard24fc72d2017-09-27 15:44:51 +020046 .has_fifo = true,
47};
48
Patrice Chotard21953152017-07-18 09:29:07 +020049/* Information about a serial port */
50struct stm32x7_serial_platdata {
Patrice Chotard5011e6f2017-09-27 15:44:50 +020051 fdt_addr_t base; /* address of registers in physical memory */
52 struct stm32_uart_info *uart_info;
Patrice Chotard4809a192017-07-18 09:29:08 +020053 unsigned long int clock_rate;
Patrice Chotard21953152017-07-18 09:29:07 +020054};
Vikas Manocha5dba05e2016-02-11 15:47:19 -080055
Patrice Chotard24fc72d2017-09-27 15:44:51 +020056#define USART_CR1_FIFOEN BIT(29)
Patrice Chotard6961a9d2017-09-27 15:44:48 +020057#define USART_CR1_OVER8 BIT(15)
58#define USART_CR1_TE BIT(3)
59#define USART_CR1_RE BIT(2)
Vikas Manocha5dba05e2016-02-11 15:47:19 -080060
Patrice Chotard6961a9d2017-09-27 15:44:48 +020061#define USART_CR3_OVRDIS BIT(12)
Vikas Manocha59535d52017-05-28 12:55:12 -070062
Patrice Chotard75f2c862018-04-20 08:59:07 +020063#define USART_ISR_FLAG_ORE BIT(3)
64#define USART_ISR_FLAG_RXNE BIT(5)
65#define USART_ISR_FLAG_TXE BIT(7)
Vikas Manocha5dba05e2016-02-11 15:47:19 -080066
Patrice Chotard6961a9d2017-09-27 15:44:48 +020067#define USART_BRR_F_MASK GENMASK(7, 0)
Vikas Manocha5dba05e2016-02-11 15:47:19 -080068#define USART_BRR_M_SHIFT 4
Patrice Chotard6961a9d2017-09-27 15:44:48 +020069#define USART_BRR_M_MASK GENMASK(15, 4)
Vikas Manocha5dba05e2016-02-11 15:47:19 -080070
Patrice Chotard24af24b2018-04-20 08:59:06 +020071#define USART_ICR_OREF BIT(3)
Vikas Manocha5dba05e2016-02-11 15:47:19 -080072#endif