blob: cd22c2feb651632db993ae6be907e6e7a492db5d [file] [log] [blame]
/*
* Copyright 2020 Broadcom
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <soc.h>
#include <zephyr/arch/cpu.h>
#include <zephyr/irq.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 viper_init(const struct device *arg)
{
uint32_t key;
uint32_t data;
ARG_UNUSED(arg);
key = irq_lock();
NMI_INIT();
/* pcie pmon lite init */
data = sys_read32(LS_ICFG_PMON_LITE_CLK_CTRL);
data |= PCIE_PMON_LITE_CLK_ENABLE;
sys_write32(data, LS_ICFG_PMON_LITE_CLK_CTRL);
data = sys_read32(LS_ICFG_PMON_LITE_SW_RESETN);
data |= PCIE_PMON_LITE_SW_RESETN;
sys_write32(data, LS_ICFG_PMON_LITE_SW_RESETN);
irq_unlock(key);
return 0;
}
SYS_INIT(viper_init, PRE_KERNEL_1, 0);