93 lines
1.8 KiB
C
93 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Full C support initialization
|
|
*
|
|
*
|
|
* Initialization of full C support: zero the .bss, copy the .data if XIP,
|
|
* call z_cstart().
|
|
*
|
|
* Stack is available in this module, but not the global data/bss until their
|
|
* initialization is performed.
|
|
*/
|
|
|
|
#include <zephyr/types.h>
|
|
#include <toolchain.h>
|
|
#include <linker/linker-defs.h>
|
|
#include <arch/arc/v2/aux_regs.h>
|
|
#include <kernel_structs.h>
|
|
#include <kernel_internal.h>
|
|
|
|
|
|
/* XXX - keep for future use in full-featured cache APIs */
|
|
#if 0
|
|
/**
|
|
*
|
|
* @brief Disable the i-cache if present
|
|
*
|
|
* For those ARC CPUs that have a i-cache present,
|
|
* invalidate the i-cache and then disable it.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static void disable_icache(void)
|
|
{
|
|
unsigned int val;
|
|
|
|
val = z_arc_v2_aux_reg_read(_ARC_V2_I_CACHE_BUILD);
|
|
val &= 0xff; /* version field */
|
|
if (val == 0) {
|
|
return; /* skip if i-cache is not present */
|
|
}
|
|
z_arc_v2_aux_reg_write(_ARC_V2_IC_IVIC, 0);
|
|
__builtin_arc_nop();
|
|
z_arc_v2_aux_reg_write(_ARC_V2_IC_CTRL, 1);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @brief Invalidate the data cache if present
|
|
*
|
|
* For those ARC CPUs that have a data cache present,
|
|
* invalidate the data cache.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static void invalidate_dcache(void)
|
|
{
|
|
unsigned int val;
|
|
|
|
val = z_arc_v2_aux_reg_read(_ARC_V2_D_CACHE_BUILD);
|
|
val &= 0xff; /* version field */
|
|
if (val == 0) {
|
|
return; /* skip if d-cache is not present */
|
|
}
|
|
z_arc_v2_aux_reg_write(_ARC_V2_DC_IVDC, 1);
|
|
}
|
|
#endif
|
|
|
|
extern FUNC_NORETURN void z_cstart(void);
|
|
/**
|
|
*
|
|
* @brief Prepare to and run C code
|
|
*
|
|
* This routine prepares for the execution of and runs C code.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
void _PrepC(void)
|
|
{
|
|
z_bss_zero();
|
|
z_data_copy();
|
|
z_cstart();
|
|
CODE_UNREACHABLE;
|
|
}
|