stm32.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * (C) Copyright 2011
  3. * Yuri Tikhonov, Emcraft Systems, yur@emcraft.com
  4. *
  5. * (C) Copyright 2015
  6. * Kamil Lulko, <kamil.lulko@gmail.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef _MACH_STM32_H_
  11. #define _MACH_STM32_H_
  12. /*
  13. * Peripheral memory map
  14. */
  15. #define STM32_SYSMEM_BASE 0x1FFF0000
  16. #define STM32_PERIPH_BASE 0x40000000
  17. #define STM32_APB1PERIPH_BASE (STM32_PERIPH_BASE + 0x00000000)
  18. #define STM32_APB2PERIPH_BASE (STM32_PERIPH_BASE + 0x00010000)
  19. #define STM32_AHB1PERIPH_BASE (STM32_PERIPH_BASE + 0x00020000)
  20. #define STM32_AHB2PERIPH_BASE (STM32_PERIPH_BASE + 0x10000000)
  21. #define STM32_BUS_MASK 0xFFFF0000
  22. /*
  23. * Register maps
  24. */
  25. struct stm32_u_id_regs {
  26. u32 u_id_low;
  27. u32 u_id_mid;
  28. u32 u_id_high;
  29. };
  30. struct stm32_rcc_regs {
  31. u32 cr; /* RCC clock control */
  32. u32 pllcfgr; /* RCC PLL configuration */
  33. u32 cfgr; /* RCC clock configuration */
  34. u32 cir; /* RCC clock interrupt */
  35. u32 ahb1rstr; /* RCC AHB1 peripheral reset */
  36. u32 ahb2rstr; /* RCC AHB2 peripheral reset */
  37. u32 ahb3rstr; /* RCC AHB3 peripheral reset */
  38. u32 rsv0;
  39. u32 apb1rstr; /* RCC APB1 peripheral reset */
  40. u32 apb2rstr; /* RCC APB2 peripheral reset */
  41. u32 rsv1[2];
  42. u32 ahb1enr; /* RCC AHB1 peripheral clock enable */
  43. u32 ahb2enr; /* RCC AHB2 peripheral clock enable */
  44. u32 ahb3enr; /* RCC AHB3 peripheral clock enable */
  45. u32 rsv2;
  46. u32 apb1enr; /* RCC APB1 peripheral clock enable */
  47. u32 apb2enr; /* RCC APB2 peripheral clock enable */
  48. u32 rsv3[2];
  49. u32 ahb1lpenr; /* RCC AHB1 periph clk enable in low pwr mode */
  50. u32 ahb2lpenr; /* RCC AHB2 periph clk enable in low pwr mode */
  51. u32 ahb3lpenr; /* RCC AHB3 periph clk enable in low pwr mode */
  52. u32 rsv4;
  53. u32 apb1lpenr; /* RCC APB1 periph clk enable in low pwr mode */
  54. u32 apb2lpenr; /* RCC APB2 periph clk enable in low pwr mode */
  55. u32 rsv5[2];
  56. u32 bdcr; /* RCC Backup domain control */
  57. u32 csr; /* RCC clock control & status */
  58. u32 rsv6[2];
  59. u32 sscgr; /* RCC spread spectrum clock generation */
  60. u32 plli2scfgr; /* RCC PLLI2S configuration */
  61. u32 pllsaicfgr;
  62. u32 dckcfgr;
  63. };
  64. struct stm32_pwr_regs {
  65. u32 cr;
  66. u32 csr;
  67. };
  68. struct stm32_flash_regs {
  69. u32 acr;
  70. u32 key;
  71. u32 optkeyr;
  72. u32 sr;
  73. u32 cr;
  74. u32 optcr;
  75. u32 optcr1;
  76. };
  77. /*
  78. * Registers access macros
  79. */
  80. #define STM32_U_ID_BASE (STM32_SYSMEM_BASE + 0x7A10)
  81. #define STM32_U_ID ((struct stm32_u_id_regs *)STM32_U_ID_BASE)
  82. #define STM32_RCC_BASE (STM32_AHB1PERIPH_BASE + 0x3800)
  83. #define STM32_RCC ((struct stm32_rcc_regs *)STM32_RCC_BASE)
  84. #define STM32_PWR_BASE (STM32_APB1PERIPH_BASE + 0x7000)
  85. #define STM32_PWR ((struct stm32_pwr_regs *)STM32_PWR_BASE)
  86. #define STM32_FLASH_BASE (STM32_AHB1PERIPH_BASE + 0x3C00)
  87. #define STM32_FLASH ((struct stm32_flash_regs *)STM32_FLASH_BASE)
  88. #define STM32_FLASH_SR_BSY (1 << 16)
  89. #define STM32_FLASH_CR_PG (1 << 0)
  90. #define STM32_FLASH_CR_SER (1 << 1)
  91. #define STM32_FLASH_CR_STRT (1 << 16)
  92. #define STM32_FLASH_CR_LOCK (1 << 31)
  93. #define STM32_FLASH_CR_SNB_OFFSET 3
  94. #define STM32_FLASH_CR_SNB_MASK (15 << STM32_FLASH_CR_SNB_OFFSET)
  95. /*
  96. * Peripheral base addresses
  97. */
  98. #define STM32_USART1_BASE (STM32_APB2PERIPH_BASE + 0x1000)
  99. #define STM32_USART2_BASE (STM32_APB1PERIPH_BASE + 0x4400)
  100. #define STM32_USART3_BASE (STM32_APB1PERIPH_BASE + 0x4800)
  101. #define STM32_USART6_BASE (STM32_APB2PERIPH_BASE + 0x1400)
  102. enum clock {
  103. CLOCK_CORE,
  104. CLOCK_AHB,
  105. CLOCK_APB1,
  106. CLOCK_APB2
  107. };
  108. int configure_clocks(void);
  109. unsigned long clock_get(enum clock clck);
  110. #endif /* _MACH_STM32_H_ */