drivers/clock_control: STM32H7 support
Provide basic clock control driver for STM32H7. Bus clock activation is done through CM7 and CM4 common registers so we don't have to care to the CPU Id before accessing. Accesses are not protected for now. Only possible configuration is system clock source set to HSE driven PLL. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
parent
ecd23f4fa3
commit
2805ea9193
5 changed files with 383 additions and 0 deletions
|
@ -17,6 +17,13 @@
|
|||
*/
|
||||
#include <kernel_includes.h>
|
||||
|
||||
#ifdef CONFIG_CLOCK_CONTROL_STM32_CUBE
|
||||
#include <stm32h7xx_ll_bus.h>
|
||||
#include <stm32h7xx_ll_rcc.h>
|
||||
#include <stm32h7xx_ll_pwr.h>
|
||||
#include <stm32h7xx_ll_system.h>
|
||||
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
|
||||
|
||||
#endif /* !_ASMLANGUAGE */
|
||||
|
||||
#endif /* _STM32F7_SOC_H7_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue