1 /*
2  * Copyright (c) 2021, ATL Electronics
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 /**
7  * @file
8  * @brief GD32 MCU series initialization code
9  *
10  * This module provides routines to initialize and support board-level
11  * hardware for the GigaDevice GD32 SoC.
12  */
13 
14 #include <zephyr/device.h>
15 #include <zephyr/init.h>
16 #include <soc.h>
17 
18 /**
19  * @brief Perform basic hardware initialization at boot.
20  *
21  * This needs to be run from the very beginning.
22  */
soc_early_init_hook(void)23 void soc_early_init_hook(void)
24 {
25 	SystemInit();
26 }
27