52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
/*
|
||
|
* Copyright (c) 2023 Benjamin Björnsson <benjamin.bjornsson@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* @brief System/hardware module for STM32C0 processor
|
||
|
*/
|
||
|
|
||
|
#include <zephyr/device.h>
|
||
|
#include <zephyr/init.h>
|
||
|
#include <zephyr/arch/cpu.h>
|
||
|
#include <zephyr/arch/arm/aarch32/cortex_m/cmsis.h>
|
||
|
#include <zephyr/arch/arm/aarch32/nmi.h>
|
||
|
#include <zephyr/irq.h>
|
||
|
#include <zephyr/linker/linker-defs.h>
|
||
|
#include <string.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 stm32c0_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);
|
||
|
|
||
|
/* Update CMSIS SystemCoreClock variable (HCLK) */
|
||
|
/* At reset, system core clock is set to 48 MHz from HSI */
|
||
|
SystemCoreClock = 48000000;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
SYS_INIT(stm32c0_init, PRE_KERNEL_1, 0);
|