Move Exynos 5 SoC series from genode repo

Fix #203
This commit is contained in:
Stefan Kalkowski
2020-04-22 12:39:18 +02:00
committed by Norman Feske
parent dd15d65800
commit 9c7df24e20
50 changed files with 4763 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
INC_DIR += $(REP_DIR)/src/bootstrap/spec/arndale
INC_DIR += $(REP_DIR)/src/include
SRC_CC += bootstrap/spec/arm/cortex_a15_cpu.cc
SRC_CC += bootstrap/spec/arm/gicv2.cc
SRC_CC += bootstrap/spec/arndale/platform.cc
SRC_CC += bootstrap/spec/arm/arm_v7_cpu.cc
SRC_CC += hw/spec/32bit/memory_map.cc
SRC_S += bootstrap/spec/arm/crt0.s
NR_OF_CPUS = 2
#
# we need more specific compiler hints for some 'special' assembly code
# override -march=armv7-a because it conflicts with -mcpu=cortex-a15
#
CC_MARCH = -mcpu=cortex-a15 -mfpu=vfpv3 -mfloat-abi=softfp
include $(call select_from_repositories,lib/mk/bootstrap-hw.inc)
vpath bootstrap/spec/arndale/platform.cc $(REP_DIR)/src

View File

@@ -0,0 +1,10 @@
INC_DIR += $(REP_DIR)/src/bootstrap/spec/odroid_xu
SRC_CC += bootstrap/spec/arm/cortex_a15_cpu.cc
SRC_CC += bootstrap/spec/arm/gicv2.cc
SRC_CC += bootstrap/spec/odroid_xu/platform.cc
SRC_CC += bootstrap/spec/arm/arm_v7_cpu.cc
SRC_CC += hw/spec/32bit/memory_map.cc
SRC_S += bootstrap/spec/arm/crt0.s
include $(call select_from_repositories,lib/mk/bootstrap-hw.inc)

View File

@@ -0,0 +1,34 @@
#
# \brief Build config for Genodes core process
# \author Stefan Kalkowski
# \date 2015-02-09
#
# add include paths
INC_DIR += $(REP_DIR)/src/core/spec/arndale
INC_DIR += $(REP_DIR)/src/core/spec/arm/virtualization
INC_DIR += $(REP_DIR)/src/include
# add C++ sources
SRC_CC += kernel/vm_thread_on.cc
SRC_CC += spec/arm/gicv2.cc
SRC_CC += spec/arm/virtualization/gicv2.cc
SRC_CC += spec/arm_v7/virtualization/kernel/vm.cc
SRC_CC += spec/arm/virtualization/platform_services.cc
SRC_CC += spec/arm/virtualization/vm_session_component.cc
SRC_CC += vm_session_common.cc
SRC_CC += vm_session_component.cc
# add assembly sources
SRC_S += spec/arm_v7/virtualization/exception_vector.s
NR_OF_CPUS = 2
#
# we need more specific compiler hints for some 'special' assembly code
# override -march=armv7-a because it conflicts with -mcpu=cortex-a15
#
CC_MARCH = -mcpu=cortex-a15 -mfpu=vfpv3 -mfloat-abi=softfp
# include less specific configuration
include $(REP_DIR)/lib/mk/spec/arm_v7/core-hw-exynos5.inc

View File

@@ -0,0 +1,20 @@
#
# \brief Build config for Genodes core process
# \author Martin Stein
# \date 2011-12-16
#
TMP := $(call select_from_repositories,lib/mk/core-hw.inc)
BASE_HW_DIR := $(TMP:%lib/mk/core-hw.inc=%)
# add include paths
INC_DIR += $(REP_DIR)/src/core
INC_DIR += $(BASE_HW_DIR)/src/core/spec/exynos5
# add C++ sources
SRC_CC += spec/arm/exynos_mct.cc
# include less specific configuration
include $(BASE_HW_DIR)/lib/mk/spec/cortex_a15/core-hw.inc
vpath spec/arm/exynos_mct.cc ${REP_DIR}/src/core

View File

@@ -0,0 +1,17 @@
#
# \brief Build config for Genodes core process
# \author Stefan Kalkowski
# \date 2015-02-09
#
# add include paths
INC_DIR += $(REP_DIR)/src/core/spec/odroid_xu
INC_DIR += $(REP_DIR)/src/include
# add C++ sources
SRC_CC += spec/arm/gicv2.cc
SRC_CC += kernel/vm_thread_off.cc
SRC_CC += platform_services.cc
# include less specific configuration
include $(REP_DIR)/lib/mk/spec/arm_v7/core-hw-exynos5.inc