blob: 8a1a24fda8f4424288349ac8e25e25e5af1cf889 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08002/*
Patrice Chotard3bc599c2017-10-23 09:53:58 +02003 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08005 */
6
Patrice Chotardae74de02018-01-12 09:23:49 +01007#ifndef _SERIAL_STM32_
8#define _SERIAL_STM32_
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08009
Patrice Chotard60a996b2017-09-27 15:44:50 +020010#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 Chotard7b3b74d2018-04-20 08:59:06 +020014
15#define ICR_OFFSET 0x20
Patrice Chotard60a996b2017-09-27 15:44:50 +020016/*
17 * STM32F4 has one Data Register (DR) for received or transmitted
18 * data, so map Receive Data Register (RDR) and Transmit Data
19 * Register (TDR) at the same offset
20 */
21#define RDR_OFFSET(x) (x ? 0x04 : 0x24)
22#define TDR_OFFSET(x) (x ? 0x04 : 0x28)
23
24struct stm32_uart_info {
25 u8 uart_enable_bit; /* UART_CR1_UE */
26 bool stm32f4; /* true for STM32F4, false otherwise */
Patrice Chotard2a7ecc52017-09-27 15:44:51 +020027 bool has_fifo;
Patrice Chotard60a996b2017-09-27 15:44:50 +020028};
29
Patrice Chotard6c30f152017-09-27 15:44:52 +020030struct stm32_uart_info stm32f4_info = {
31 .stm32f4 = true,
32 .uart_enable_bit = 13,
Patrice Chotard6c30f152017-09-27 15:44:52 +020033 .has_fifo = false,
34};
35
Patrice Chotard2a7ecc52017-09-27 15:44:51 +020036struct stm32_uart_info stm32f7_info = {
Patrice Chotard60a996b2017-09-27 15:44:50 +020037 .uart_enable_bit = 0,
38 .stm32f4 = false,
Patrice Chotard2a7ecc52017-09-27 15:44:51 +020039 .has_fifo = false,
40};
41
42struct stm32_uart_info stm32h7_info = {
43 .uart_enable_bit = 0,
44 .stm32f4 = false,
Patrice Chotard2a7ecc52017-09-27 15:44:51 +020045 .has_fifo = true,
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080046};
47
Patrice Chotard122b2d42017-07-18 09:29:07 +020048/* Information about a serial port */
49struct stm32x7_serial_platdata {
Patrice Chotard60a996b2017-09-27 15:44:50 +020050 fdt_addr_t base; /* address of registers in physical memory */
51 struct stm32_uart_info *uart_info;
Patrice Chotard27265ce2017-07-18 09:29:08 +020052 unsigned long int clock_rate;
Patrice Chotard122b2d42017-07-18 09:29:07 +020053};
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080054
Patrice Chotard2a7ecc52017-09-27 15:44:51 +020055#define USART_CR1_FIFOEN BIT(29)
Patrice Chotard2a52a952017-09-27 15:44:48 +020056#define USART_CR1_OVER8 BIT(15)
57#define USART_CR1_TE BIT(3)
58#define USART_CR1_RE BIT(2)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080059
Patrice Chotard2a52a952017-09-27 15:44:48 +020060#define USART_CR3_OVRDIS BIT(12)
Vikas Manocha6c0c3ce2017-05-28 12:55:12 -070061
Patrice Chotard8dc4e1f2018-04-20 08:59:07 +020062#define USART_ISR_FLAG_ORE BIT(3)
63#define USART_ISR_FLAG_RXNE BIT(5)
64#define USART_ISR_FLAG_TXE BIT(7)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080065
Patrice Chotard2a52a952017-09-27 15:44:48 +020066#define USART_BRR_F_MASK GENMASK(7, 0)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080067#define USART_BRR_M_SHIFT 4
Patrice Chotard2a52a952017-09-27 15:44:48 +020068#define USART_BRR_M_MASK GENMASK(15, 4)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080069
Patrice Chotard7b3b74d2018-04-20 08:59:06 +020070#define USART_ICR_OREF BIT(3)
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080071#endif