diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | SConscript | 1 | ||||
-rw-r--r-- | platforms/stm32/f4.yaml | 4 | ||||
-rw-r--r-- | platforms/stm32/l0.yaml | 4 | ||||
-rw-r--r-- | platforms/stm32/wb.yaml | 4 | ||||
-rw-r--r-- | rcc/syscfg.h | 19 | ||||
-rw-r--r-- | syscfg/SConscript | 23 | ||||
-rw-r--r-- | syscfg/stm32_syscfg.h (renamed from syscfg/syscfg.h) | 37 |
8 files changed, 54 insertions, 39 deletions
@@ -17,6 +17,7 @@ pwr/pwr.h rcc/flash.h rcc/rcc.h rcc/rcc_enums.h +syscfg/syscfg.h timer/timer.h usb/usb.h uart/uart.h @@ -13,6 +13,7 @@ env.Append( env.SConscript('interrupt/SConscript'), env.SConscript('pwr/SConscript'), env.SConscript('rcc/SConscript'), + env.SConscript('syscfg/SConscript'), env.SConscript('timer/SConscript'), env.SConscript('uart/SConscript'), env.SConscript('usb/SConscript'), diff --git a/platforms/stm32/f4.yaml b/platforms/stm32/f4.yaml index f9ff092..fdcef98 100644 --- a/platforms/stm32/f4.yaml +++ b/platforms/stm32/f4.yaml @@ -54,6 +54,10 @@ GPIOI: offset: 0x40022000 + stm32_syscfg: + SYSCFG: + offset: 0x40013800 + stm32_timer: TIM1: offset: 0x40010000 diff --git a/platforms/stm32/l0.yaml b/platforms/stm32/l0.yaml index e20984d..cfba79b 100644 --- a/platforms/stm32/l0.yaml +++ b/platforms/stm32/l0.yaml @@ -16,3 +16,7 @@ offset: 0x50000c00 GPIOH: offset: 0x50001c00 + + stm32_syscfg: + SYSCFG: + offset: 0x40010000 diff --git a/platforms/stm32/wb.yaml b/platforms/stm32/wb.yaml index 5fdb127..d3590a5 100644 --- a/platforms/stm32/wb.yaml +++ b/platforms/stm32/wb.yaml @@ -76,6 +76,10 @@ type: wb offset: 0x58000400 + stm32_syscfg: + SYSCFG: + offset: 0x40010000 + stm32_timer: TIM1: offset: 0x40012C00 diff --git a/rcc/syscfg.h b/rcc/syscfg.h deleted file mode 100644 index 74c3a07..0000000 --- a/rcc/syscfg.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef SYSCFG_H -#define SYSCFG_H - -#include <stdint.h> - -struct SYSCFG_t { - volatile uint32_t MEMRM; - volatile uint32_t PMC; - volatile uint32_t EXTICR[4]; - volatile uint32_t CMPCR; -}; - -#if defined(STM32F4) -static SYSCFG_t& SYSCFG = *(SYSCFG_t*)0x40013800; -#endif - -void rcc_init(); - -#endif diff --git a/syscfg/SConscript b/syscfg/SConscript new file mode 100644 index 0000000..190bacb --- /dev/null +++ b/syscfg/SConscript @@ -0,0 +1,23 @@ +Import('env') + +headers = [] +instances = [] +sources = [] +aliases = {} + +periph = env['PLATFORM_SPEC'].get('periph', {}) + +if 'stm32_syscfg' in periph: + headers.append('stm32_syscfg.h') + for name, data in periph['stm32_syscfg'].items(): + # allow overrides, but default to family for syscfg, it's a little special + ptype = data.get('type', env['PLATFORM_SPEC']['meta']['family']) + instances.append({ + 'type': 'STM32_SYSCFG_t<STM32_SYSCFG_reg_%s_t>' % ptype, + 'name': name, + 'args': [data['offset']], + }) + +env.Jinja2('syscfg.h', '../templates/periph_instances.h.j2', headers = headers, instances = instances, aliases = aliases) + +Return('sources') diff --git a/syscfg/syscfg.h b/syscfg/stm32_syscfg.h index 0006f7b..cb3c505 100644 --- a/syscfg/syscfg.h +++ b/syscfg/stm32_syscfg.h @@ -1,29 +1,25 @@ -#ifndef SYSCFG_H -#define SYSCFG_H +#pragma once -#include <stdint.h> +#include <mmio/mmio.h> -#if defined(STM32L0) +struct STM32_SYSCFG_reg_f4_t { + volatile uint32_t MEMRMP; + volatile uint32_t PMC; + volatile uint32_t EXTICR[4]; + volatile uint32_t CMPCR; +}; -struct SYSCFG_t { + +struct STM32_SYSCFG_reg_l0_t { volatile uint32_t CFGR1; volatile uint32_t CFGR2; - volatile uint32_t EXTICR1; - volatile uint32_t EXTICR2; - volatile uint32_t EXTICR3; - volatile uint32_t EXTICR4; + volatile uint32_t EXTICR[4]; volatile uint32_t COMP1_CTRL; volatile uint32_t COMP2_CTRL; volatile uint32_t CFGR3; }; -static SYSCFG_t& SYSCFG = *(SYSCFG_t*)0x40010000; - -#endif - -#if defined(STM32WB) - -struct SYSCFG_t { +struct STM32_SYSCFG_reg_wb_t { volatile uint32_t MEMRMP; volatile uint32_t CFGR1; volatile uint32_t EXTICR[4]; @@ -40,8 +36,9 @@ struct SYSCFG_t { volatile uint32_t SIPCR; }; -static SYSCFG_t& SYSCFG = *(SYSCFG_t*)0x40010000; -#endif - -#endif +template <typename T> +class STM32_SYSCFG_t : public mmio_ptr<T> { + public: + using mmio_ptr<T>::ptr; +}; |