/* * Copyright (c) 2016 Linaro Limited. * * SPDX-License-Identifier: Apache-2.0 */ /** * @file * @brief System/hardware module for the ARM LTD Beetle SoC * * This module provides routines to initialize and support board-level hardware * for the ARM LTD Beetle SoC. */ #include #include #include #include /** * @brief Perform basic hardware initialization at boot. * * This needs to be run from the very beginning. */ void soc_early_init_hook(void) { /* Setup various clocks and wakeup sources */ soc_power_init(); }