/* * Copyright (C) 2020 Koen Zandberg * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for more * details. */ /** * @ingroup cpu_gd32v * @{ * * @file * @brief GD32V CPU initialization * * @author Koen Zandberg */ #include "kernel_init.h" #include "stdio_uart.h" #include "periph/init.h" #include "irq_arch.h" #include "periph_cpu.h" #include "periph_conf.h" #define ENABLE_DEBUG 0 #include "debug.h" extern void __libc_init_array(void); void cpu_init(void) { gd32vf103_clock_init(); /* enable PMU required for pm_layered */ periph_clk_en(APB1, RCU_APB1EN_PMUEN_Msk); /* Common RISC-V initialization */ riscv_init(); early_init(); periph_init(); }