altos/stm32l0: Add LPUART driver
authorKeith Packard <keithp@keithp.com>
Thu, 6 Aug 2020 05:32:14 +0000 (22:32 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 8 Aug 2020 03:30:11 +0000 (20:30 -0700)
This is a simpler UART which micropeak has connected to the LED and
we'll use for transmitting the log on power up

Signed-off-by: Keith Packard <keithp@keithp.com>
src/micropeak-v2.0/Makefile
src/micropeak-v2.0/ao_pins.h
src/stm32l0/ao_lpuart.h [new file with mode: 0644]
src/stm32l0/ao_lpuart_stm.c [new file with mode: 0644]
src/stm32l0/ao_serial_stm.c
src/stm32l0/stm32l0.h

index 350061a3e92b08f92ace0cd9328431861083d513..1a9c07fd7d522d15fcc9cf896ab9c8351f8d2225 100644 (file)
@@ -14,35 +14,6 @@ MICRO_SRC=\
        ao_microflight.c \
        ao_microkalman.c
 
-ALTOS_SRC_ = \
-       ao_micropeak.c \
-       ao_spi_stm.c \
-       ao_dma_stm.c \
-       ao_led_stmf0.c \
-       ao_timer.c \
-       ao_ms5607.c \
-       ao_exti_stm.c \
-       ao_convert_pa.c \
-       ao_romconfig.c \
-       ao_product.c \
-       ao_panic.c \
-       ao_stdio.c \
-       ao_serial_stm.c \
-       ao_usb_stm.c \
-       ao_mutex.c \
-       ao_interrupt.c \
-       ao_cmd.c \
-       ao_config.c \
-       ao_task.c \
-       ao_data.c \
-       ao_boot_chain.c \
-       ao_microflight.c \
-       ao_report_micro.c \
-       ao_storage_stm.c \
-       ao_storage.c \
-       ao_log_micro.c \
-       ao_microkalman.c
-
 INC=\
        ao.h \
        ao_pins.h \
@@ -52,6 +23,7 @@ INC=\
        ao_ms5607.h \
        ao_log_micro.h \
        ao_micropeak.h \
+       ao_lpuart.h \
        altitude-pa.h \
        ao_product.h \
        stm32l0.h
@@ -63,6 +35,7 @@ ALTOS_SRC = \
        ao_stdio.c \
        ao_notask.c \
        ao_serial_stm.c \
+       ao_lpuart_stm.c \
        ao_timer.c \
        ao_spi_stm32l0.c \
        ao_adc_stm32l0.c \
index bfccfa10f45b09c9c0543d8907114a72791310b0..8cc1efcb5a2bf69066dfe016f3163e03a9f1a7bc 100644 (file)
@@ -52,6 +52,12 @@ extern uint8_t ao_on_battery;
 #define USE_SERIAL_2_SW_FLOW   0
 #define SERIAL_2_PA9_PA10      1
 
+#define HAS_LPUART_1           1
+#define LPUART_1_PA0_PA1       1
+#define USE_LPUART_1_STDIN     0
+#define USE_LPUART_1_FLOW      0
+#define USE_LPUART_1_SW_FLOW   0
+
 #define IS_FLASH_LOADER                0
 
 #define HAS_MS5607             1
diff --git a/src/stm32l0/ao_lpuart.h b/src/stm32l0/ao_lpuart.h
new file mode 100644 (file)
index 0000000..567eda7
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * Copyright © 2020 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+char
+ao_lpuart1_getchar(void);
+
+void
+ao_lpuart1_putchar(char c);
+
+int
+_ao_lpuart1_pollchar(void);
+
+void
+ao_lpuart1_drain(void);
+
+void
+ao_lpuart1_set_speed(uint8_t speed);
+
+void
+ao_lpuart1_enable(void);
+
+void
+ao_lpuart1_disable(void);
diff --git a/src/stm32l0/ao_lpuart_stm.c b/src/stm32l0/ao_lpuart_stm.c
new file mode 100644 (file)
index 0000000..8fdc09f
--- /dev/null
@@ -0,0 +1,374 @@
+/*
+ * Copyright © 2020 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+#include <ao.h>
+#include <ao_exti.h>
+#include <ao_lpuart.h>
+
+struct ao_stm_lpuart {
+       struct ao_fifo          rx_fifo;
+       struct ao_fifo          tx_fifo;
+       struct stm_lpuart       *reg;
+       uint8_t                 tx_running;
+       uint8_t                 draining;
+#if HAS_SERIAL_SW_FLOW
+       /* RTS - 0 if we have FIFO space, 1 if not
+        * CTS - 0 if we can send, 0 if not
+        */
+       struct stm_gpio         *gpio_rts;
+       struct stm_gpio         *gpio_cts;
+       uint8_t                 pin_rts;
+       uint8_t                 pin_cts;
+       uint8_t                 rts;
+#endif
+};
+
+static int
+_ao_lpuart_tx_start(struct ao_stm_lpuart *lpuart)
+{
+       if (!ao_fifo_empty(lpuart->tx_fifo)) {
+#if HAS_LPUART_SW_FLOW
+               if (lpuart->gpio_cts && ao_gpio_get(lpuart->gpio_cts, lpuart->pin_cts) == 1) {
+                       ao_exti_enable(lpuart->gpio_cts, lpuart->pin_cts);
+                       return 0;
+               }
+#endif
+               if (lpuart->reg->isr & (1 << STM_LPUART_ISR_TXE))
+               {
+                       lpuart->tx_running = 1;
+                       lpuart->reg->cr1 |= (1 << STM_LPUART_CR1_TXEIE) | (1 << STM_LPUART_CR1_TCIE);
+                       ao_fifo_remove(lpuart->tx_fifo, lpuart->reg->tdr);
+                       ao_wakeup(&lpuart->tx_fifo);
+                       return 1;
+               }
+       }
+       return 0;
+}
+
+#if HAS_LPUART_SW_FLOW
+static void
+_ao_lpuart_cts(struct ao_stm_lpuart *lpuart)
+{
+       if (_ao_lpuart_tx_start(lpuart))
+               ao_exti_disable(lpuart->gpio_cts, lpuart->pin_cts);
+}
+#endif
+
+static void
+_ao_lpuart_rx(struct ao_stm_lpuart *lpuart, int is_stdin)
+{
+       if (lpuart->reg->isr & (1 << STM_LPUART_ISR_RXNE)) {
+               lpuart->reg->icr = (1 << STM_LPUART_ICR_ORECF);
+               if (!ao_fifo_full(lpuart->rx_fifo)) {
+                       ao_fifo_insert(lpuart->rx_fifo, lpuart->reg->rdr);
+                       ao_wakeup(&lpuart->rx_fifo);
+                       if (is_stdin)
+                               ao_wakeup(&ao_stdin_ready);
+#if HAS_LPUART_SW_FLOW
+                       /* If the fifo is nearly full, turn off RTS and wait
+                        * for it to drain a bunch
+                        */
+                       if (lpuart->gpio_rts && ao_fifo_mostly(lpuart->rx_fifo)) {
+                               ao_gpio_set(lpuart->gpio_rts, lpuart->pin_rts, 1);
+                               lpuart->rts = 0;
+                       }
+#endif
+               } else {
+                       lpuart->reg->cr1 &= ~(1 << STM_LPUART_CR1_RXNEIE);
+               }
+       }
+}
+
+static void
+ao_lpuart_isr(struct ao_stm_lpuart *lpuart, int is_stdin)
+{
+       _ao_lpuart_rx(lpuart, is_stdin);
+
+       if (!_ao_lpuart_tx_start(lpuart))
+               lpuart->reg->cr1 &= ~(1<< STM_LPUART_CR1_TXEIE);
+
+       if (lpuart->reg->isr & (1 << STM_LPUART_ISR_TC)) {
+               lpuart->tx_running = 0;
+               lpuart->reg->cr1 &= ~(1 << STM_LPUART_CR1_TCIE);
+               if (lpuart->draining) {
+                       lpuart->draining = 0;
+                       ao_wakeup(&lpuart->tx_fifo);
+               }
+       }
+}
+
+static int
+_ao_lpuart_pollchar(struct ao_stm_lpuart *lpuart)
+{
+       int     c;
+
+       if (ao_fifo_empty(lpuart->rx_fifo))
+               c = AO_READ_AGAIN;
+       else {
+               uint8_t u;
+               ao_fifo_remove(lpuart->rx_fifo,u);
+               if ((lpuart->reg->cr1 & (1 << STM_LPUART_CR1_RXNEIE)) == 0) {
+                       if (ao_fifo_barely(lpuart->rx_fifo))
+                               lpuart->reg->cr1 |= (1 << STM_LPUART_CR1_RXNEIE);
+               }
+#if HAS_LPUART_SW_FLOW
+               /* If we've cleared RTS, check if there's space now and turn it back on */
+               if (lpuart->gpio_rts && lpuart->rts == 0 && ao_fifo_barely(lpuart->rx_fifo)) {
+                       ao_gpio_set(lpuart->gpio_rts, lpuart->pin_rts, 0);
+                       lpuart->rts = 1;
+               }
+#endif
+               c = u;
+       }
+       return c;
+}
+
+static char
+ao_lpuart_getchar(struct ao_stm_lpuart *lpuart)
+{
+       int c;
+       ao_arch_block_interrupts();
+       while ((c = _ao_lpuart_pollchar(lpuart)) == AO_READ_AGAIN)
+               ao_sleep(&lpuart->rx_fifo);
+       ao_arch_release_interrupts();
+       return (char) c;
+}
+
+#if 0
+static inline uint8_t
+_ao_lpuart_sleep_for(struct ao_stm_lpuart *lpuart, uint16_t timeout)
+{
+       return ao_sleep_for(&lpuart->rx_fifo, timeout);
+}
+#endif
+
+static void
+ao_lpuart_putchar(struct ao_stm_lpuart *lpuart, char c)
+{
+       ao_arch_block_interrupts();
+       while (ao_fifo_full(lpuart->tx_fifo))
+               ao_sleep(&lpuart->tx_fifo);
+       ao_fifo_insert(lpuart->tx_fifo, c);
+       _ao_lpuart_tx_start(lpuart);
+       ao_arch_release_interrupts();
+}
+
+static void
+ao_lpuart_drain(struct ao_stm_lpuart *lpuart)
+{
+       ao_arch_block_interrupts();
+       while (!ao_fifo_empty(lpuart->tx_fifo) || lpuart->tx_running) {
+               lpuart->draining = 1;
+               ao_sleep(&lpuart->tx_fifo);
+       }
+       ao_arch_release_interrupts();
+}
+
+extern const uint32_t ao_usart_speeds[];
+
+static void
+ao_lpuart_set_speed(struct ao_stm_lpuart *lpuart, uint8_t speed)
+{
+       if (speed > AO_SERIAL_SPEED_115200)
+               return;
+       lpuart->reg->brr = AO_PCLK1 / ao_usart_speeds[speed];
+}
+
+static void
+ao_lpuart_enable(struct ao_stm_lpuart *lpuart, int hw_flow)
+{
+       lpuart->reg->cr1 = ((0 << STM_LPUART_CR1_M1) |
+                          (0 << STM_LPUART_CR1_DEAT) |
+                          (0 << STM_LPUART_CR1_DEDT) |
+                          (0 << STM_LPUART_CR1_CMIE) |
+                          (0 << STM_LPUART_CR1_MME) |
+                          (0 << STM_LPUART_CR1_M0) |
+                          (0 << STM_LPUART_CR1_WAKE) |
+                          (0 << STM_LPUART_CR1_PCE) |
+                          (0 << STM_LPUART_CR1_PS) |
+                          (0 << STM_LPUART_CR1_PEIE) |
+                          (0 << STM_LPUART_CR1_TXEIE) |
+                          (0 << STM_LPUART_CR1_TCIE) |
+                          (1 << STM_LPUART_CR1_RXNEIE) |
+                          (0 << STM_LPUART_CR1_IDLEIE) |
+                          (1 << STM_LPUART_CR1_TE) |
+                          (1 << STM_LPUART_CR1_RE) |
+                          (0 << STM_LPUART_CR1_UESM) |
+                          (0 << STM_LPUART_CR1_UE));
+
+       lpuart->reg->cr2 = ((0 << STM_LPUART_CR2_ADD) |
+                          (0 << STM_LPUART_CR2_MSBFIRST) |
+                          (0 << STM_LPUART_CR2_DATAINV) |
+                          (0 << STM_LPUART_CR2_TXINV) |
+                          (0 << STM_LPUART_CR2_RXINV) |
+                          (0 << STM_LPUART_CR2_SWAP) |
+                          (0 << STM_LPUART_CR2_STOP) |
+                          (0 << STM_LPUART_CR2_ADDM7));
+
+       uint32_t cr3 = ((0 << STM_LPUART_CR3_UCESM) |
+                       (0 << STM_LPUART_CR3_WUFIE) |
+                       (0 << STM_LPUART_CR3_WUS) |
+                       (0 << STM_LPUART_CR3_DEP) |
+                       (0 << STM_LPUART_CR3_DEM) |
+                       (0 << STM_LPUART_CR3_DDRE) |
+                       (0 << STM_LPUART_CR3_OVRDIS) |
+                       (0 << STM_LPUART_CR3_CTSIE) |
+                       (0 << STM_LPUART_CR3_CTSE) |
+                       (0 << STM_LPUART_CR3_RTSE) |
+                       (0 << STM_LPUART_CR3_DMAT) |
+                       (0 << STM_LPUART_CR3_DMAR) |
+                       (0 << STM_LPUART_CR3_HDSEL) |
+                       (0 << STM_LPUART_CR3_EIE));
+
+       if (hw_flow)
+               cr3 |= ((1 << STM_LPUART_CR3_CTSE) |
+                       (1 << STM_LPUART_CR3_RTSE));
+
+       lpuart->reg->cr3 = cr3;
+
+       /* Pick a 9600 baud rate */
+       ao_lpuart_set_speed(lpuart, AO_SERIAL_SPEED_9600);
+
+       /* Enable the lpuart */
+       lpuart->reg->cr1 |= (1 << STM_LPUART_CR1_UE);
+}
+
+static void
+ao_lpuart_disable(struct ao_stm_lpuart *lpuart)
+{
+       ao_lpuart_drain(lpuart);
+       lpuart->reg->cr1 = 0;
+}
+
+#if HAS_LPUART_1
+
+struct ao_stm_lpuart ao_stm_lpuart1;
+
+void stm_lpuart1_aes_isr(void) {
+       ao_lpuart_isr(&ao_stm_lpuart1, USE_LPUART_1_STDIN);
+}
+
+char
+ao_lpuart1_getchar(void)
+{
+       return ao_lpuart_getchar(&ao_stm_lpuart1);
+}
+
+void
+ao_lpuart1_putchar(char c)
+{
+       ao_lpuart_putchar(&ao_stm_lpuart1, c);
+}
+
+int
+_ao_lpuart1_pollchar(void)
+{
+       return _ao_lpuart_pollchar(&ao_stm_lpuart1);
+}
+
+void
+ao_lpuart1_drain(void)
+{
+       ao_lpuart_drain(&ao_stm_lpuart1);
+}
+
+void
+ao_lpuart1_set_speed(uint8_t speed)
+{
+       ao_lpuart_drain(&ao_stm_lpuart1);
+       ao_lpuart_set_speed(&ao_stm_lpuart1, speed);
+}
+
+#endif /* HAS_LPUART_1 */
+
+#if HAS_LPUART_SW_FLOW
+static void
+ao_lpuart_set_sw_rts_cts(struct ao_stm_lpuart *lpuart,
+                        void (*isr)(void),
+                        struct stm_gpio *port_rts,
+                        int pin_rts,
+                        struct stm_gpio *port_cts,
+                        int pin_cts)
+{
+       /* Pull RTS low to note that there's space in the FIFO
+        */
+       ao_enable_output(port_rts, pin_rts, 0);
+       lpuart->gpio_rts = port_rts;
+       lpuart->pin_rts = pin_rts;
+       lpuart->rts = 1;
+
+       ao_exti_setup(port_cts, pin_cts, AO_EXTI_MODE_FALLING|AO_EXTI_PRIORITY_MED, isr);
+       lpuart->gpio_cts = port_cts;
+       lpuart->pin_cts = pin_cts;
+}
+#endif
+
+void
+ao_lpuart1_enable(void)
+{
+       /*
+        *      TX      RX
+        *      PA1     PA0
+        *      PA2     PA3
+        *      PA4     PA3
+        *      PA14    PA13
+        *      PB6     PB7
+        */
+
+#ifdef HAS_LPUART_1
+       /* Clock source defaults to PCLK1, so just leave it */
+
+# if LPUART_1_PA0_PA1
+       ao_enable_port(&stm_gpioa);
+       stm_afr_set(&stm_gpioa, 0, STM_AFR_AF6);
+       stm_afr_set(&stm_gpioa, 1, STM_AFR_AF6);
+# else
+#  error "No LPUART_1 port configuration specified"
+# endif
+       /* Enable LPUART */
+       stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_LPUART1EN);
+
+       ao_stm_lpuart1.reg = &stm_lpuart1;
+       ao_lpuart_enable(&ao_stm_lpuart1, USE_LPUART_1_FLOW && !USE_LPUART_1_SW_FLOW);
+
+       stm_nvic_set_enable(STM_ISR_LPUART1_AES_POS);
+       stm_nvic_set_priority(STM_ISR_LPUART1_AES_POS, 4);
+# if USE_LPUART_1_STDIN && !DELAY_LPUART_1_STDIN
+       ao_add_stdio(_ao_lpuart1_pollchar,
+                    ao_lpuart1_putchar,
+                    NULL);
+# endif
+#endif
+}
+
+void
+ao_lpuart1_disable(void)
+{
+       /* Disable interrupts */
+       stm_nvic_clear_enable(STM_ISR_LPUART1_AES_POS);
+
+       /* Stop LPUART */
+       ao_lpuart_disable(&ao_stm_lpuart1);
+
+       /* Remap pins to GPIO use */
+# if LPUART_1_PA0_PA1
+       stm_afr_set(&stm_gpioa, 0, STM_AFR_NONE);
+       stm_afr_set(&stm_gpioa, 1, STM_AFR_NONE);
+# else
+#  error "No LPUART_1 port configuration specified"
+# endif
+
+       /* Disable LPUART */
+       stm_rcc.apb1enr &= ~(1 << STM_RCC_APB1ENR_LPUART1EN);
+}
index a75804e9bd395209633e0aff0c9348d87131a3f0..8fead99ebdcf876426178212771ba5a97d50984b 100644 (file)
@@ -158,7 +158,7 @@ ao_usart_drain(struct ao_stm_usart *usart)
 }
 #endif
 
-static const uint32_t ao_usart_speeds[] = {
+const uint32_t ao_usart_speeds[] = {
        [AO_SERIAL_SPEED_4800] = 4800,
        [AO_SERIAL_SPEED_9600] = 9600,
        [AO_SERIAL_SPEED_19200] = 19200,
index 4a9144de7ff453fe597d768e81b55539f189269e..a99d861eab46e67471a80a4459b5b63dbbcd5506 100644 (file)
@@ -382,6 +382,99 @@ extern struct stm_usart stm_usart2;
 #define stm_usart1 (*((struct stm_usart *) 0x40013800))
 #define stm_usart2 (*((struct stm_usart *) 0x40004400))
 
+struct stm_lpuart {
+       vuint32_t       cr1;
+       vuint32_t       cr2;
+       vuint32_t       cr3;
+       vuint32_t       brr;
+
+       uint32_t        unused_10;
+       uint32_t        unused_14;
+       vuint32_t       rqr;
+       vuint32_t       isr;
+
+       vuint32_t       icr;
+       vuint32_t       rdr;
+       vuint32_t       tdr;
+};
+
+#define stm_lpuart1 (*((struct stm_lpuart *) 0x40004800))
+
+#define STM_LPUART_CR1_M1      28
+#define STM_LPUART_CR1_DEAT    21
+#define STM_LPUART_CR1_DEDT    16
+#define STM_LPUART_CR1_CMIE    14
+#define STM_LPUART_CR1_MME     13
+#define STM_LPUART_CR1_M0      12
+#define STM_LPUART_CR1_WAKE    11
+#define STM_LPUART_CR1_PCE     10
+#define STM_LPUART_CR1_PS      9
+#define STM_LPUART_CR1_PEIE    8
+#define STM_LPUART_CR1_TXEIE   7
+#define STM_LPUART_CR1_TCIE    6
+#define STM_LPUART_CR1_RXNEIE  5
+#define STM_LPUART_CR1_IDLEIE  4
+#define STM_LPUART_CR1_TE      3
+#define STM_LPUART_CR1_RE      2
+#define STM_LPUART_CR1_UESM    1
+#define STM_LPUART_CR1_UE      0
+
+#define STM_LPUART_CR2_ADD     24
+#define STM_LPUART_CR2_MSBFIRST        19
+#define STM_LPUART_CR2_DATAINV 18
+#define STM_LPUART_CR2_TXINV   17
+#define STM_LPUART_CR2_RXINV   16
+#define STM_LPUART_CR2_SWAP    15
+#define STM_LPUART_CR2_STOP    12
+#define STM_LPUART_CR2_ADDM7   4
+
+#define STM_LPUART_CR3_UCESM   23
+#define STM_LPUART_CR3_WUFIE   22
+#define STM_LPUART_CR3_WUS     20
+#define STM_LPUART_CR3_DEP     15
+#define STM_LPUART_CR3_DEM     14
+#define STM_LPUART_CR3_DDRE    13
+#define STM_LPUART_CR3_OVRDIS  12
+#define STM_LPUART_CR3_CTSIE   10
+#define STM_LPUART_CR3_CTSE    9
+#define STM_LPUART_CR3_RTSE    8
+#define STM_LPUART_CR3_DMAT    7
+#define STM_LPUART_CR3_DMAR    6
+#define STM_LPUART_CR3_HDSEL   3
+#define STM_LPUART_CR3_EIE     0
+
+#define STM_LPUART_RQR_RXFRQ   3
+#define STM_LPUART_RQR_MMRQ    2
+#define STM_LPUART_RQR_SBKRQ   1
+
+#define STM_LPUART_ISR_REACK   22
+#define STM_LPUART_ISR_TEACK   21
+#define STM_LPUART_ISR_WUF     20
+#define STM_LPUART_ISR_RWU     19
+#define STM_LPUART_ISR_SBKF    18
+#define STM_LPUART_ISR_CMF     17
+#define STM_LPUART_ISR_BUSY    16
+#define STM_LPUART_ISR_CTS     10
+#define STM_LPUART_ISR_CTSIF   9
+#define STM_LPUART_ISR_TXE     7
+#define STM_LPUART_ISR_TC      6
+#define STM_LPUART_ISR_RXNE    5
+#define STM_LPUART_ISR_IDLE    4
+#define STM_LPUART_ISR_ORE     3
+#define STM_LPUART_ISR_NF      2
+#define STM_LPUART_ISR_FE      1
+#define STM_LPUART_ISR_PE      1
+
+#define STM_LPUART_ICR_WUCF    20
+#define STM_LPUART_ICR_CMCF    17
+#define STM_LPUART_ICR_CTSCF   9
+#define STM_LPUART_ICR_TCCF    6
+#define STM_LPUART_ICR_IDLECF  4
+#define STM_LPUART_ICR_ORECF   3
+#define STM_LPUART_ICR_NCF     2
+#define STM_LPUART_ICR_FECF    1
+#define STM_LPUART_ICR_PECF    0
+
 struct stm_tim {
 };
 
@@ -710,6 +803,17 @@ extern struct stm_rcc stm_rcc;
 #define STM_RCC_APB1ENR_TIM3EN         1
 #define STM_RCC_APB1ENR_TIM2EN         0
 
+#define STM_RCC_CCIPR_LPTIM1SEL                18
+#define STM_RCC_CCIPR_I2C3SEL          16
+#define STM_RCC_CCIPR_I2C1SEL          12
+#define STM_RCC_CCIPR_LPUART1SEL       10
+#define  STM_RCC_CCIPR_LPUART1SEL_APB          0
+#define  STM_RCC_CCIPR_LPUART1SEL_SYSTEM       1
+#define  STM_RCC_CCIPR_LPUART1SEL_HSI16                2
+#define  STM_RCC_CCIPR_LPUART1SEL_LSE          3
+#define STM_RCC_CCIPR_USART2SEL                2
+#define STM_RCC_CCIPR_USART1SEL                0
+
 #define STM_RCC_CSR_LPWRRSTF           (31)
 #define STM_RCC_CSR_WWDGRSTF           (30)
 #define STM_RCC_CSR_IWDGRSTF           (29)