aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32/stm32h7_serial.c
diff options
context:
space:
mode:
authorD4SK <konstantin.vogel@gmx.net>2021-05-30 01:19:39 +0100
committerKevin O'Connor <kevin@koconnor.net>2021-10-06 18:20:29 -0400
commit0a55489e2c8899b2a5cff75dbbd40d7ed5791e22 (patch)
tree2855536ca3554470cef04f11955ef6ebf59c68a1 /src/stm32/stm32h7_serial.c
parent28b3c9e88c2103e67e0aaeeecd79eb4b827fecb0 (diff)
downloadkutter-0a55489e2c8899b2a5cff75dbbd40d7ed5791e22.tar.gz
kutter-0a55489e2c8899b2a5cff75dbbd40d7ed5791e22.tar.xz
kutter-0a55489e2c8899b2a5cff75dbbd40d7ed5791e22.zip
stm32: Add initial support for stm32h7
Signed-off-by: Konstantin Vogel <konstantin.vogel@gmx.net> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32/stm32h7_serial.c')
-rw-r--r--src/stm32/stm32h7_serial.c94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/stm32/stm32h7_serial.c b/src/stm32/stm32h7_serial.c
new file mode 100644
index 00000000..58e42da5
--- /dev/null
+++ b/src/stm32/stm32h7_serial.c
@@ -0,0 +1,94 @@
+// STM32H7 serial
+//
+// Copyright (C) 2019 Kevin O'Connor <kevin@koconnor.net>
+//
+// This file may be distributed under the terms of the GNU GPLv3 license.
+
+#include "autoconf.h" // CONFIG_SERIAL_BAUD
+#include "board/armcm_boot.h" // armcm_enable_irq
+#include "board/serial_irq.h" // serial_rx_byte
+#include "command.h" // DECL_CONSTANT_STR
+#include "internal.h" // enable_pclock
+#include "sched.h" // DECL_INIT
+
+// Select the configured serial port
+#if CONFIG_STM32_SERIAL_USART1
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PA10,PA9");
+ #define GPIO_Rx GPIO('A', 10)
+ #define GPIO_Tx GPIO('A', 9)
+ #define USARTx USART1
+ #define USARTx_IRQn USART1_IRQn
+#elif CONFIG_STM32_SERIAL_USART1_ALT_PB7_PB6
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PB7,PB6");
+ #define GPIO_Rx GPIO('B', 7)
+ #define GPIO_Tx GPIO('B', 6)
+ #define USARTx USART1
+ #define USARTx_IRQn USART1_IRQn
+#elif CONFIG_STM32_SERIAL_USART2
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PA3,PA2");
+ #define GPIO_Rx GPIO('A', 3)
+ #define GPIO_Tx GPIO('A', 2)
+ #define USARTx USART2
+ #define USARTx_IRQn USART2_IRQn
+#elif CONFIG_STM32_SERIAL_USART2_ALT_PD6_PD5
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PD6,PD5");
+ #define GPIO_Rx GPIO('D', 6)
+ #define GPIO_Tx GPIO('D', 5)
+ #define USARTx USART2
+ #define USARTx_IRQn USART2_IRQn
+#elif CONFIG_STM32_SERIAL_USART3
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PB11,PB10");
+ #define GPIO_Rx GPIO('B', 11)
+ #define GPIO_Tx GPIO('B', 10)
+ #define USARTx USART3
+ #define USARTx_IRQn USART3_IRQn
+#elif CONFIG_STM32_SERIAL_USART3_ALT_PD9_PD8
+ DECL_CONSTANT_STR("RESERVE_PINS_serial", "PD9,PD8");
+ #define GPIO_Rx GPIO('D', 9)
+ #define GPIO_Tx GPIO('D', 8)
+ #define USARTx USART3
+ #define USARTx_IRQn USART3_IRQn
+#endif
+
+#define CR1_FLAGS (USART_CR1_UE | USART_CR1_RE | USART_CR1_TE \
+ | USART_CR1_RXNEIE)
+
+void
+USARTx_IRQHandler(void)
+{
+ uint32_t isr = USARTx->ISR;
+ if (isr & (USART_ISR_RXNE_RXFNE | USART_ISR_ORE))
+ serial_rx_byte(USARTx->RDR);
+ //USART_ISR_TXE_TXFNF only works with Fifo mode disabled
+ if (isr & USART_ISR_TXE_TXFNF && USARTx->CR1 & USART_CR1_TXEIE) {
+ uint8_t data;
+ int ret = serial_get_tx_byte(&data);
+ if (ret)
+ USARTx->CR1 = CR1_FLAGS;
+ else
+ USARTx->TDR = data;
+ }
+}
+
+void
+serial_enable_tx_irq(void)
+{
+ USARTx->CR1 = CR1_FLAGS | USART_CR1_TXEIE;
+}
+
+void
+serial_init(void)
+{
+ enable_pclock((uint32_t)USARTx);
+
+ uint32_t pclk = get_pclock_frequency((uint32_t)USARTx);
+ uint32_t div = DIV_ROUND_CLOSEST(pclk, CONFIG_SERIAL_BAUD);
+ USARTx->BRR = (((div / 16) << USART_BRR_DIV_MANTISSA_Pos)
+ | ((div % 16) << USART_BRR_DIV_FRACTION_Pos));
+ USARTx->CR1 = CR1_FLAGS;
+ armcm_enable_irq(USARTx_IRQHandler, USARTx_IRQn, 0);
+
+ gpio_peripheral(GPIO_Rx, GPIO_FUNCTION(7), 1);
+ gpio_peripheral(GPIO_Tx, GPIO_FUNCTION(7), 0);
+}
+DECL_INIT(serial_init);