mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 09:55:22 +00:00
SPARC is an open and royalty free processor architecture. This commit provides SPARC architecture support to Zephyr. It is compatible with the SPARC V8 specification and the SPARC ABI and is independent of processor implementation. Functionality specific to SPRAC processor implementations should go in soc/sparc. One example is the LEON3 SOC which is part of this patch set. The architecture port is fully SPARC ABI compatible, including trap handlers and interrupt context. Number of implemented register windows can be configured. Some SPARC V8 processors borrow the CASA (compare-and-swap) atomic instructions from SPARC V9. An option has been defined in the architecture port to forward the corresponding code-generation option to the compiler. Stack size related config options have been defined in sparc/Kconfig to match the SPARC ABI. Co-authored-by: Nikolaus Huber <nikolaus.huber.melk@gmail.com> Signed-off-by: Martin Åberg <martin.aberg@gaisler.com>
37 lines
882 B
C
37 lines
882 B
C
/* cpu.h - automatically selects the correct arch.h file to include */
|
|
|
|
/*
|
|
* Copyright (c) 1997-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_CPU_H_
|
|
#define ZEPHYR_INCLUDE_ARCH_CPU_H_
|
|
|
|
#include <sys/arch_interface.h>
|
|
|
|
#if defined(CONFIG_X86)
|
|
#include <arch/x86/arch.h>
|
|
#elif defined(CONFIG_ARM64)
|
|
#include <arch/arm/aarch64/arch.h>
|
|
#elif defined(CONFIG_ARM)
|
|
#include <arch/arm/aarch32/arch.h>
|
|
#elif defined(CONFIG_ARC)
|
|
#include <arch/arc/arch.h>
|
|
#elif defined(CONFIG_NIOS2)
|
|
#include <arch/nios2/arch.h>
|
|
#elif defined(CONFIG_RISCV)
|
|
#include <arch/riscv/arch.h>
|
|
#elif defined(CONFIG_XTENSA)
|
|
#include <arch/xtensa/arch.h>
|
|
#elif defined(CONFIG_ARCH_POSIX)
|
|
#include <arch/posix/arch.h>
|
|
#elif defined(CONFIG_SPARC)
|
|
#include <arch/sparc/arch.h>
|
|
#else
|
|
#error "Unknown Architecture"
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_CPU_H_ */
|