mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 00:11:56 +00:00
Used by ARC, ARM, Nios II. x86 has alternate code done in assembly. Linker scripts had some alarming comments about data/BSS overlap, but the beginning of BSS is aligned so this can't happen even if the end of data isn't. The common code doesn't use fake pointer values for the number of words in these sections, don't compute or export them. Change-Id: I4291c2a6d0222d0a3e95c140deae7539ebab3cc3 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Full C support initialization
|
|
*
|
|
*
|
|
* Initialization of full C support: zero the .bss, copy the .data if XIP,
|
|
* call _Cstart().
|
|
*
|
|
* Stack is available in this module, but not the global data/bss until their
|
|
* initialization is performed.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <toolchain.h>
|
|
#include <linker-defs.h>
|
|
#include <nano_private.h>
|
|
#include <nano_internal.h>
|
|
|
|
/**
|
|
*
|
|
* @brief Prepare to and run C code
|
|
*
|
|
* This routine prepares for the execution of and runs C code.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
void _PrepC(void)
|
|
{
|
|
_bss_zero();
|
|
#ifdef CONFIG_XIP
|
|
_data_copy();
|
|
/* In most XIP scenarios we copy the exception code into RAM, so need
|
|
* to flush instruction cache.
|
|
*/
|
|
_nios2_icache_flush_all();
|
|
#if NIOS2_ICACHE_SIZE > 0
|
|
/* Only need to flush the data cache here if there actually is an
|
|
* instruction cache, so that the cached instruction data written is
|
|
* actually committed.
|
|
*/
|
|
_nios2_dcache_flush_all();
|
|
#endif
|
|
#endif
|
|
_Cstart();
|
|
CODE_UNREACHABLE;
|
|
}
|