blob: 3a3fed8ae90b4d5b47f4da2675fa88ad2892435d [file] [log] [blame]
/*
* Copyright 2021 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <device.h>
#include <init.h>
#include <soc.h>
#include <arch/cpu.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 ls1046a_init(const struct device *arg)
{
ARG_UNUSED(arg);
/*todo: add soc init code here*/
return 0;
}
SYS_INIT(ls1046a_init, PRE_KERNEL_1, 0);