2012-10-02 09:01:15 +00:00
|
|
|
/*
|
2012-10-23 15:12:09 +00:00
|
|
|
* \brief VM-session interface
|
2012-10-02 09:01:15 +00:00
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2012-10-02
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-10-02 09:01:15 +00:00
|
|
|
*
|
|
|
|
* 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__VM_SESSION_H_
|
|
|
|
#define _INCLUDE__VM_SESSION__VM_SESSION_H_
|
|
|
|
|
2012-10-23 15:12:09 +00:00
|
|
|
/* Genode includes */
|
2012-10-02 09:01:15 +00:00
|
|
|
#include <base/rpc_args.h>
|
|
|
|
#include <base/signal.h>
|
|
|
|
#include <session/session.h>
|
|
|
|
#include <ram_session/ram_session.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
struct Vm_session : Session
|
|
|
|
{
|
|
|
|
static const char *service_name() { return "VM"; }
|
|
|
|
|
2012-10-23 15:12:09 +00:00
|
|
|
/**
|
|
|
|
* Destructor
|
|
|
|
*/
|
2012-10-02 09:01:15 +00:00
|
|
|
virtual ~Vm_session() { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get dataspace of the CPU state of the VM
|
|
|
|
*/
|
|
|
|
virtual Dataspace_capability cpu_state(void) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register signal handler for exceptions of the Vm
|
|
|
|
*/
|
|
|
|
virtual void exception_handler(Signal_context_capability handler) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (Re-)Start execution of the VM
|
|
|
|
*/
|
|
|
|
virtual void run(void) {}
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
** RPC declaration **
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
GENODE_RPC(Rpc_cpu_state, Dataspace_capability, cpu_state);
|
|
|
|
GENODE_RPC(Rpc_exception_handler, void, exception_handler,
|
|
|
|
Signal_context_capability);
|
|
|
|
GENODE_RPC(Rpc_run, void, run);
|
|
|
|
GENODE_RPC_INTERFACE(Rpc_cpu_state, Rpc_exception_handler, Rpc_run);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__VM_SESSION__VM_SESSION_H_ */
|