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.
53 lines
1.0 KiB
53 lines
1.0 KiB
/* |
|
* Copyright (c) 2019 STMicroelectronics |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* @file |
|
* @brief System/hardware module for STM32L4 processor |
|
*/ |
|
|
|
#include <zephyr/kernel.h> |
|
#include <zephyr/device.h> |
|
#include <zephyr/init.h> |
|
#include <soc.h> |
|
#include <stm32_ll_bus.h> |
|
#include <zephyr/arch/cpu.h> |
|
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h> |
|
#include <zephyr/irq.h> |
|
|
|
/** |
|
* @brief Perform basic hardware initialization at boot. |
|
* |
|
* This needs to be run from the very beginning. |
|
* So the init priority has to be 0 (zero). |
|
* |
|
* @return 0 |
|
*/ |
|
static int stm32m4_init(const struct device *arg) |
|
{ |
|
uint32_t key; |
|
|
|
ARG_UNUSED(arg); |
|
|
|
key = irq_lock(); |
|
|
|
/* Install default handler that simply resets the CPU |
|
* if configured in the kernel, NOP otherwise |
|
*/ |
|
NMI_INIT(); |
|
|
|
irq_unlock(key); |
|
|
|
/*HW semaphore Clock enable*/ |
|
LL_AHB3_GRP1_EnableClock(LL_AHB3_GRP1_PERIPH_HSEM); |
|
|
|
/* Update CMSIS SystemCoreClock variable (HCLK) */ |
|
SystemCoreClock = 209000000; |
|
|
|
return 0; |
|
} |
|
|
|
SYS_INIT(stm32m4_init, PRE_KERNEL_1, 0);
|
|
|