mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
8e13b376b0
This commit addresses several multiprocessing issues in base-hw: * it reworks cross-cpu maintainance work for TLB invalidation by introducing a generic Inter_processor_work and removes the so called Cpu_domain_update * thereby it solves the cross-cpu thread destruction, when the corresponding thread is active on another cpu (fix #3043) * it adds the missing TLB shootdown for x86 (fix #3042) * on ARM it removes the TLB shootdown via IPIs, because this is not needed on the multiprocessing ARM platforms we support * it enables the per-cpu initialization of the kernel's cpu objects, which means those object initialization is executed by the proper cpu * it rollbacks prior decision to make multiprocessing an aspect, but puts back certain 'smp' mechanisms (like cross-cpu lock) into the generic code base for simplicity reasons
82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
#
|
|
# \brief Build config for Genodes core process
|
|
# \author Martin Stein
|
|
# \date 2011-12-16
|
|
#
|
|
|
|
LIBS += base-hw-common cxx
|
|
|
|
# add include paths
|
|
INC_DIR += $(BASE_DIR)/../base-hw/src/core
|
|
INC_DIR += $(BASE_DIR)/src/core/include
|
|
INC_DIR += $(BASE_DIR)/../base-hw/src/include
|
|
INC_DIR += $(BASE_DIR)/src/include
|
|
INC_DIR += $(BASE_DIR)/../base-hw/src/lib
|
|
|
|
# add C++ sources
|
|
SRC_CC += cpu_session_component.cc
|
|
SRC_CC += cpu_session_support.cc
|
|
SRC_CC += cpu_thread_component.cc
|
|
SRC_CC += core_log.cc
|
|
SRC_CC += core_log_out.cc
|
|
SRC_CC += core_region_map.cc
|
|
SRC_CC += core_mem_alloc.cc
|
|
SRC_CC += core_rpc_cap_alloc.cc
|
|
SRC_CC += dataspace_component.cc
|
|
SRC_CC += default_log.cc
|
|
SRC_CC += dump_alloc.cc
|
|
SRC_CC += kernel_log.cc
|
|
SRC_CC += io_mem_session_component.cc
|
|
SRC_CC += io_mem_session_support.cc
|
|
SRC_CC += irq_session_component.cc
|
|
SRC_CC += main.cc
|
|
SRC_CC += native_pd_component.cc
|
|
SRC_CC += native_utcb.cc
|
|
SRC_CC += pd_session_support.cc
|
|
SRC_CC += platform.cc
|
|
SRC_CC += platform_rom_modules.cc
|
|
SRC_CC += platform_pd.cc
|
|
SRC_CC += platform_thread.cc
|
|
SRC_CC += stack_area.cc
|
|
SRC_CC += pd_session_component.cc
|
|
SRC_CC += ram_dataspace_support.cc
|
|
SRC_CC += region_map_component.cc
|
|
SRC_CC += rom_session_component.cc
|
|
SRC_CC += trace_session_component.cc
|
|
SRC_CC += signal_receiver.cc
|
|
SRC_CC += ram_dataspace_factory.cc
|
|
SRC_CC += signal_transmitter_noinit.cc
|
|
SRC_CC += thread_start.cc
|
|
SRC_CC += env.cc
|
|
SRC_CC += region_map_support.cc
|
|
SRC_CC += pager.cc
|
|
SRC_CC += _main.cc
|
|
SRC_CC += kernel/cpu.cc
|
|
SRC_CC += kernel/cpu_scheduler.cc
|
|
SRC_CC += kernel/double_list.cc
|
|
SRC_CC += kernel/init.cc
|
|
SRC_CC += kernel/ipc_node.cc
|
|
SRC_CC += kernel/irq.cc
|
|
SRC_CC += kernel/kernel.cc
|
|
SRC_CC += kernel/lock.cc
|
|
SRC_CC += kernel/object.cc
|
|
SRC_CC += kernel/signal_receiver.cc
|
|
SRC_CC += kernel/thread.cc
|
|
SRC_CC += kernel/timer.cc
|
|
SRC_CC += init_main_thread.cc
|
|
SRC_CC += capability.cc
|
|
SRC_CC += stack_area_addr.cc
|
|
SRC_CC += heartbeat.cc
|
|
|
|
# provide Genode version information
|
|
include $(BASE_DIR)/src/core/version.inc
|
|
|
|
# configure multiprocessor mode
|
|
NR_OF_CPUS ?= 1
|
|
CC_OPT += -Wa,--defsym -Wa,NR_OF_CPUS=$(NR_OF_CPUS) -DNR_OF_CPUS=$(NR_OF_CPUS)
|
|
|
|
# declare source locations
|
|
vpath % $(BASE_DIR)/../base-hw/src/core
|
|
vpath % $(BASE_DIR)/src/core
|
|
vpath % $(BASE_DIR)/src/lib/startup
|