30 lines
595 B
C
30 lines
595 B
C
/*
|
|
* 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 <zephyr/kernel.h>
|
|
#include <zephyr/device.h>
|
|
#include <zephyr/init.h>
|
|
#include <soc.h>
|
|
|
|
/**
|
|
* @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();
|
|
}
|