zephyr/soc/intel/intel_adsp/common/boot_complete.c
Anas Nashif c344771d8b soc: intel: move init code from SYS_INIT to hooks
Replace SYS_INIT with SoC hooks and adapt SoC init code

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2024-09-20 13:15:31 +02:00

31 lines
701 B
C

/* Copyright(c) 2022 Intel Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/arch/xtensa/arch.h>
#include <zephyr/device.h>
#include <zephyr/devicetree.h>
#include <zephyr/init.h>
#include <errno.h>
#include <zephyr/cache.h>
#include <mem_window.h>
int boot_complete(void)
{
uint32_t *win;
const struct mem_win_config *config;
const struct device *dev = DEVICE_DT_GET(DT_NODELABEL(mem_window0));
if (!device_is_ready(dev)) {
return -ENODEV;
}
config = dev->config;
win = sys_cache_uncached_ptr_get((__sparse_force void __sparse_cache *)config->mem_base);
/* Software protocol: "firmware entered" has the value 5 */
win[0] = 5;
return 0;
}