serial_stm32.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
  4. * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
  5. */
  6. #ifndef _SERIAL_STM32_
  7. #define _SERIAL_STM32_
  8. #define CR1_OFFSET(x) (x ? 0x0c : 0x00)
  9. #define CR3_OFFSET(x) (x ? 0x14 : 0x08)
  10. #define BRR_OFFSET(x) (x ? 0x08 : 0x0c)
  11. #define ISR_OFFSET(x) (x ? 0x00 : 0x1c)
  12. #define ICR_OFFSET 0x20
  13. /*
  14. * STM32F4 has one Data Register (DR) for received or transmitted
  15. * data, so map Receive Data Register (RDR) and Transmit Data
  16. * Register (TDR) at the same offset
  17. */
  18. #define RDR_OFFSET(x) (x ? 0x04 : 0x24)
  19. #define TDR_OFFSET(x) (x ? 0x04 : 0x28)
  20. struct stm32_uart_info {
  21. u8 uart_enable_bit; /* UART_CR1_UE */
  22. bool stm32f4; /* true for STM32F4, false otherwise */
  23. bool has_fifo;
  24. };
  25. struct stm32_uart_info stm32f4_info = {
  26. .stm32f4 = true,
  27. .uart_enable_bit = 13,
  28. .has_fifo = false,
  29. };
  30. struct stm32_uart_info stm32f7_info = {
  31. .uart_enable_bit = 0,
  32. .stm32f4 = false,
  33. .has_fifo = true,
  34. };
  35. struct stm32_uart_info stm32h7_info = {
  36. .uart_enable_bit = 0,
  37. .stm32f4 = false,
  38. .has_fifo = true,
  39. };
  40. /* Information about a serial port */
  41. struct stm32x7_serial_platdata {
  42. fdt_addr_t base; /* address of registers in physical memory */
  43. struct stm32_uart_info *uart_info;
  44. unsigned long int clock_rate;
  45. };
  46. #define USART_CR1_FIFOEN BIT(29)
  47. #define USART_CR1_M1 BIT(28)
  48. #define USART_CR1_OVER8 BIT(15)
  49. #define USART_CR1_M0 BIT(12)
  50. #define USART_CR1_PCE BIT(10)
  51. #define USART_CR1_PS BIT(9)
  52. #define USART_CR1_TE BIT(3)
  53. #define USART_CR1_RE BIT(2)
  54. #define USART_CR3_OVRDIS BIT(12)
  55. #define USART_ISR_TXE BIT(7)
  56. #define USART_ISR_RXNE BIT(5)
  57. #define USART_ISR_ORE BIT(3)
  58. #define USART_ISR_PE BIT(0)
  59. #define USART_BRR_F_MASK GENMASK(7, 0)
  60. #define USART_BRR_M_SHIFT 4
  61. #define USART_BRR_M_MASK GENMASK(15, 4)
  62. #define USART_ICR_ORECF BIT(3)
  63. #define USART_ICR_PCECF BIT(0)
  64. #endif