Move OMAP4 support to world

Fix #202
This commit is contained in:
Stefan Kalkowski
2020-03-23 14:49:22 +01:00
committed by Norman Feske
parent 0ed545e55a
commit 0489c3edf4
27 changed files with 2903 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
NR_OF_CPUS = 2
INC_DIR += $(REP_DIR)/src/bootstrap/spec/panda
INC_DIR += $(REP_DIR)/src/include
SRC_CC += bootstrap/spec/arm/cpu.cc
SRC_CC += bootstrap/spec/arm/cortex_a9_mmu.cc
SRC_CC += bootstrap/spec/arm/gicv2.cc
SRC_CC += bootstrap/spec/panda/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
CC_MARCH = -mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=softfp
include $(BASE_DIR)/../base-hw/lib/mk/bootstrap-hw.inc
vpath bootstrap/spec/panda/platform.cc $(REP_DIR)/src

View File

@@ -0,0 +1,20 @@
#
# \brief Build config for Genodes core process
# \author Stefan Kalkowski
# \author Martin Stein
# \date 2012-10-04
#
# add include paths
INC_DIR += $(REP_DIR)/src/core/spec/panda
INC_DIR += $(REP_DIR)/src/include
# add C++ sources
SRC_CC += platform_services.cc
NR_OF_CPUS += 2
CC_MARCH = -mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=softfp
# include less specific configuration
include $(BASE_DIR)/../base-hw/lib/mk/spec/cortex_a9/core-hw.inc