mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +00:00
31d57a6257
Implies support for the ARMv6 architecture through 'base-hw'. Get rid of 'base/include/drivers' expect of 'base/include/drivers/uart'. Merge with the support for trustzone on VEA9X4 that came from Stefan Kalkowski. Leave board drivers in 'base/include/platform'. Rework structure of the other drivers that were moved to 'base_hw/src/core' and those that came with the trustzone support. Beautify further stuff in 'base_hw'. Test 'nested_init' with 'hw_imx31' (hardware) and 'hw_panda_a2' (hardware), 'demo' and 'signal' with 'hw_pbxa9' (qemu) and 'hw_vea9x4' (hardware, no trustzone), and 'vmm' with 'hw_vea9x4' (hardware, with trustzone).
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*
|
|
* \brief Connection to VM a service
|
|
* \author Stefan Kalkowski
|
|
* \date 2012-10-02
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__VM_SESSION__CONNECTION_H_
|
|
#define _INCLUDE__VM_SESSION__CONNECTION_H_
|
|
|
|
#include <vm_session/client.h>
|
|
#include <cpu_session/cpu_session.h>
|
|
#include <base/connection.h>
|
|
|
|
namespace Genode
|
|
{
|
|
/**
|
|
* Connection to a VM service
|
|
*/
|
|
struct Vm_connection : Connection<Vm_session>, Vm_session_client
|
|
{
|
|
/**
|
|
* Constructor
|
|
*
|
|
* \param label initial session label
|
|
* \param priority designated priority of the VM
|
|
* \param affinity which physical CPU the VM should run on top of
|
|
*/
|
|
Vm_connection(const char *label = "",
|
|
long priority = Cpu_session::DEFAULT_PRIORITY,
|
|
unsigned long affinity = 0)
|
|
: Connection<Vm_session>(
|
|
session("priority=0x%lx, affinity=0x%lx, ram_quota=16K, label=\"%s\"",
|
|
priority, affinity, label)),
|
|
Vm_session_client(cap()) { }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__VM_SESSION__CONNECTION_H_ */
|