genode/repos/os/src/server/tz_vmm
Stefan Kalkowski 6106e64aac base: remove include/spec/* other than ISA
This commit moves the headers residing in `repos/base/include/spec/*/drivers`
to `repos/base/include/drivers/defs` or repos/base/include/drivers/uart`
respectively. The first one contains definitions about board-specific MMIO
iand RAM addresses, or IRQ lines. While the latter contains device driver
code for UART devices. Those definitions are used by driver implementations
in `repos/base-hw`, `repos/os`, and `repos/dde-linux`, which now need to
include them more explicitely.

This work is a step in the direction of reducing 'SPEC' identifiers overall.

Ref #2403
2017-05-31 13:16:01 +02:00
..
include Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00
spec base: remove include/spec/* other than ISA 2017-05-31 13:16:01 +02:00
block_driver.cc Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00
empty.cc tz_vmm: use library instead of REQUIRES 2017-01-31 12:01:11 +01:00
README hw vea9x4: remove trustzone support 2015-01-08 13:28:42 +01:00
serial_driver.cc Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00
target.mk tz_vmm: use library instead of REQUIRES 2017-01-31 12:01:11 +01:00
vm_base.cc Adjust file headers to refer to the AGPLv3 2017-02-28 12:59:29 +01:00

This is a small example virtual machine monitor, that uses the base-hw kernel
as secure-world micro-hypervisor on ARM TrustZone platforms.  The VMM
configures TrustZone hardware in a way, that allows a guest to access nearly
all devices, and the DDR-RAM. Only few resources needed by the kernel (timer,
SRAM) aren't accessable by the virtual-machine.

Moreover, the VMM prepares the guest memory with a Linux image, and ramdisk,
and boots it. For the Linux guest to work properly a small patch, and tweaked
configuration is needed.