genode/repos/base/include
Stefan Kalkowski f842c92ee1 hw: correct the ARM cache maintainance operations
This commit fixes the following issues regarding cache maintainance
under ARM:

* read out I-, and D-cache line size at runtime and use the correct one
* remove 'update_data_region' call from unprivileged syscalls
* rename 'update_instr_region' syscall to 'cache_coherent_region' to
  reflect what it doing, namely make I-, and D-cache coherent
* restrict 'cache_coherent_region' syscall to one page at a time
* lookup the region given in a 'cache_coherent_region' syscall in the
  page-table of the PD to prevent machine exceptions in the kernel
* only clean D-cache lines, do not invalidate them when pages where
  added on Cortex-A8 and ARMv6 (MMU sees phys. memory here)
* remove unused code relicts of cache maintainance

In addition it introduces per architecture memory clearance functions
used by core, when preparing new dataspaces. Thereby, it optimizes:

* on ARMv7 using per-word assignments
* on ARMv8 using cacheline zeroing
* on x86_64 using 'rept stosq' assembler instruction

Fix #3685
2020-03-11 15:43:02 +01:00
..
base base: lay groundwork for base-linux caps change 2020-02-27 14:46:58 +01:00
cpu
cpu_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
cpu_thread base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
dataspace Follow practices suggested by "Effective C++" 2018-01-17 12:14:35 +01:00
deprecated base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
drivers hw: correct the ARM cache maintainance operations 2020-03-11 15:43:02 +01:00
io_mem_session Refinements for updated "Genode Foundations" book 2019-05-27 14:52:53 +02:00
io_port_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
irq_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
log_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
parent base: mark Parent::Close_result with [[nodiscard]] 2020-01-03 14:44:15 +01:00
pd_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
region_map base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
rm_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
rom_session base/os: remove deprecated APIs 2019-02-26 14:44:15 +01:00
root Follow practices suggested by "Effective C++" 2018-01-17 12:14:35 +01:00
session Streamline exception types 2017-05-31 13:16:07 +02:00
spec base: Timestamp type on arm_64 is 64bit 2020-02-04 15:51:09 +01:00
timer timeout: use uint64_t for all plain time values 2019-05-06 16:15:26 +02:00
timer_session base: explictly target entrypoint in timer session 2019-11-21 14:29:36 +01:00
trace_session trace: avoid page fault on client calling subjects 2020-02-07 14:14:20 +01:00
util Only rewind next-free pointer in Bit_allocator 2020-03-10 11:49:59 +01:00
vm_session vm_session: return vcpu id when creating vcpu 2019-11-21 14:29:36 +01:00
README

This directory contains include files of interfaces that are exported
by components to be used by other components. Each subdirectory corresponds
to the component exporting the interface.