You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
4.2 KiB

  1. /* Copyright 2021 QMK
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. /* GD32VF103 has the same API as STM32F103, but uses different names for literally the same thing.
  18. * As of 23.7.2021 QMK is tailored to use STM32 defines/names, for compatibility sake
  19. * we just redefine the GD32 names. */
  20. /* Close your eyes kids. */
  21. #define MCU_STM32
  22. /* AFIO redefines */
  23. #define MAPR PCF0
  24. #define AFIO_MAPR_USART1_REMAP AFIO_PCF0_USART0_REMAP
  25. #define AFIO_MAPR_USART2_REMAP AFIO_PCF0_USART1_REMAP
  26. #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_PCF0_USART2_REMAP_PARTIALREMAP
  27. #define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_PCF0_USART2_REMAP_FULLREMAP
  28. /* DMA redefines. */
  29. #define STM32_DMA_STREAM(stream) GD32_DMA_STREAM(stream)
  30. #define STM32_DMA_STREAM_ID(peripheral, channel) GD32_DMA_STREAM_ID(peripheral - 1, channel - 1)
  31. #define STM32_DMA_CR_DIR_M2P GD32_DMA_CTL_DIR_M2P
  32. #define STM32_DMA_CR_PSIZE_WORD GD32_DMA_CTL_PWIDTH_WORD
  33. #define STM32_DMA_CR_MSIZE_WORD GD32_DMA_CTL_MWIDTH_WORD
  34. #define STM32_DMA_CR_MINC GD32_DMA_CTL_MNAGA
  35. #define STM32_DMA_CR_CIRC GD32_DMA_CTL_CMEN
  36. #define STM32_DMA_CR_PL GD32_DMA_CTL_PRIO
  37. #define STM32_DMA_CR_CHSEL GD32_DMA_CTL_CHSEL
  38. #define cr1 ctl0
  39. #define cr2 ctl1
  40. #define cr3 ctl2
  41. #define dier dmainten
  42. /* ADC redefines */
  43. #if HAL_USE_ADC
  44. # define STM32_ADC_USE_ADC1 GD32_ADC_USE_ADC0
  45. # define smpr1 sampt0
  46. # define smpr2 sampt1
  47. # define sqr1 rsq0
  48. # define sqr2 rsq1
  49. # define sqr3 rsq2
  50. # define ADC_SMPR2_SMP_AN0 ADC_SAMPT1_SMP_SPT0
  51. # define ADC_SMPR2_SMP_AN1 ADC_SAMPT1_SMP_SPT1
  52. # define ADC_SMPR2_SMP_AN2 ADC_SAMPT1_SMP_SPT2
  53. # define ADC_SMPR2_SMP_AN3 ADC_SAMPT1_SMP_SPT3
  54. # define ADC_SMPR2_SMP_AN4 ADC_SAMPT1_SMP_SPT4
  55. # define ADC_SMPR2_SMP_AN5 ADC_SAMPT1_SMP_SPT5
  56. # define ADC_SMPR2_SMP_AN6 ADC_SAMPT1_SMP_SPT6
  57. # define ADC_SMPR2_SMP_AN7 ADC_SAMPT1_SMP_SPT7
  58. # define ADC_SMPR2_SMP_AN8 ADC_SAMPT1_SMP_SPT8
  59. # define ADC_SMPR2_SMP_AN9 ADC_SAMPT1_SMP_SPT9
  60. # define ADC_SMPR1_SMP_AN10 ADC_SAMPT0_SMP_SPT10
  61. # define ADC_SMPR1_SMP_AN11 ADC_SAMPT0_SMP_SPT11
  62. # define ADC_SMPR1_SMP_AN12 ADC_SAMPT0_SMP_SPT12
  63. # define ADC_SMPR1_SMP_AN13 ADC_SAMPT0_SMP_SPT13
  64. # define ADC_SMPR1_SMP_AN14 ADC_SAMPT0_SMP_SPT14
  65. # define ADC_SMPR1_SMP_AN15 ADC_SAMPT0_SMP_SPT15
  66. # define ADC_SQR3_SQ1_N ADC_RSQ2_RSQ1_N
  67. #endif
  68. /* FLASH redefines */
  69. #if defined(EEPROM_ENABLE)
  70. # define SR STAT
  71. # define FLASH_SR_BSY FLASH_STAT_BUSY
  72. # define FLASH_SR_PGERR FLASH_STAT_PGERR
  73. # define FLASH_SR_EOP FLASH_STAT_ENDF
  74. # define FLASH_SR_WRPRTERR FLASH_STAT_WPERR
  75. # define FLASH_SR_WRPERR FLASH_SR_WRPRTERR
  76. # define FLASH_OBR_OPTERR FLASH_OBSTAT_OBERR
  77. # define AR ADDR
  78. # define CR CTL
  79. # define FLASH_CR_PER FLASH_CTL_PER
  80. # define FLASH_CR_STRT FLASH_CTL_START
  81. # define FLASH_CR_LOCK FLASH_CTL_LK
  82. # define FLASH_CR_PG FLASH_CTL_PG
  83. # define KEYR KEY
  84. #endif
  85. /* Serial USART redefines. */
  86. #if HAL_USE_SERIAL
  87. # if !defined(SERIAL_USART_CR1)
  88. # define SERIAL_USART_CR1 (USART_CTL0_PCEN | USART_CTL0_PM | USART_CTL0_WL) // parity enable, odd parity, 9 bit length
  89. # endif
  90. # if !defined(SERIAL_USART_CR2)
  91. # define SERIAL_USART_CR2 (USART_CTL1_STB_1) // 2 stop bits
  92. # endif
  93. # if !defined(SERIAL_USART_CR3)
  94. # define SERIAL_USART_CR3 0x0
  95. # endif
  96. # define USART_CR3_HDSEL USART_CTL2_HDEN
  97. # define CCR CHCV
  98. #endif
  99. /* SPI redefines. */
  100. #if HAL_USE_SPI
  101. # define SPI_CR1_LSBFIRST SPI_CTL0_LF
  102. # define SPI_CR1_CPHA SPI_CTL0_CKPH
  103. # define SPI_CR1_CPOL SPI_CTL0_CKPL
  104. # define SPI_CR1_BR_0 SPI_CTL0_PSC_0
  105. # define SPI_CR1_BR_1 SPI_CTL0_PSC_1
  106. # define SPI_CR1_BR_2 SPI_CTL0_PSC_2
  107. #endif