2012-08-08 15:12:10 +00:00
|
|
|
/*
|
|
|
|
* \brief Client-side cpu session NOVA extension
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2012-07-27
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-08-08 15:12:10 +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.
|
|
|
|
*/
|
|
|
|
|
2012-08-24 07:29:54 +00:00
|
|
|
#ifndef _INCLUDE__CPU_SESSION__CLIENT_H_
|
|
|
|
#define _INCLUDE__CPU_SESSION__CLIENT_H_
|
|
|
|
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
#include <base/thread.h>
|
|
|
|
|
|
|
|
#include <cpu_session/capability.h>
|
2012-08-08 15:12:10 +00:00
|
|
|
|
|
|
|
#include <nova_cpu_session/nova_cpu_session.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
2012-08-24 07:29:54 +00:00
|
|
|
struct Cpu_session_client : Rpc_client<Nova_cpu_session>
|
2012-08-08 15:12:10 +00:00
|
|
|
{
|
2012-08-24 07:29:54 +00:00
|
|
|
explicit Cpu_session_client(Cpu_session_capability session)
|
2012-08-08 15:12:10 +00:00
|
|
|
: Rpc_client<Nova_cpu_session>(static_cap_cast<Nova_cpu_session>(session)) { }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Thread_capability
|
2016-05-04 10:27:17 +00:00
|
|
|
create_thread(Capability<Pd_session> pd, Name const &name,
|
|
|
|
Affinity::Location affinity, Weight weight, addr_t utcb = 0) override {
|
|
|
|
return call<Rpc_create_thread>(pd, name, affinity, weight, utcb); }
|
2012-08-08 15:12:10 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Ram_dataspace_capability utcb(Thread_capability thread) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
return call<Rpc_utcb>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void kill_thread(Thread_capability thread) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
call<Rpc_kill_thread>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
int start(Thread_capability thread, addr_t ip, addr_t sp) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
return call<Rpc_start>(thread, ip, sp); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void pause(Thread_capability thread) override
|
2012-08-24 07:29:54 +00:00
|
|
|
{
|
|
|
|
Native_capability block = call<Rpc_pause_sync>(thread);
|
|
|
|
if (!block.valid())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Nova::sm_ctrl(block.local_name(), Nova::SEMAPHORE_DOWN);
|
|
|
|
}
|
2012-08-08 15:12:10 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void resume(Thread_capability thread) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
call<Rpc_resume>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void cancel_blocking(Thread_capability thread) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
call<Rpc_cancel_blocking>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Thread_state state(Thread_capability thread) override {
|
2012-11-12 16:48:18 +00:00
|
|
|
return call<Rpc_get_state>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void state(Thread_capability thread, Thread_state const &state) override {
|
2012-11-12 16:48:18 +00:00
|
|
|
call<Rpc_set_state>(thread, state); }
|
2012-08-08 15:12:10 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void exception_handler(Thread_capability thread, Signal_context_capability handler) override {
|
2012-08-08 15:12:10 +00:00
|
|
|
call<Rpc_exception_handler>(thread, handler); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void single_step(Thread_capability thread, bool enable) override
|
2014-09-05 15:00:31 +00:00
|
|
|
{
|
|
|
|
Native_capability block = call<Rpc_single_step_sync>(thread, enable);
|
|
|
|
if (!block.valid())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Nova::sm_ctrl(block.local_name(), Nova::SEMAPHORE_DOWN);
|
|
|
|
}
|
2012-08-08 15:12:10 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Affinity::Space affinity_space() const override {
|
2013-08-07 20:16:58 +00:00
|
|
|
return call<Rpc_affinity_space>(); }
|
2012-09-04 15:32:55 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
void affinity(Thread_capability thread, Affinity::Location location) override {
|
2013-08-07 20:16:58 +00:00
|
|
|
call<Rpc_affinity>(thread, location); }
|
2012-09-04 15:32:55 +00:00
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Dataspace_capability trace_control() override {
|
2013-08-09 09:11:03 +00:00
|
|
|
return call<Rpc_trace_control>(); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
unsigned trace_control_index(Thread_capability thread) override {
|
2013-08-09 09:11:03 +00:00
|
|
|
return call<Rpc_trace_control_index>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Dataspace_capability trace_buffer(Thread_capability thread) override {
|
2013-08-09 09:11:03 +00:00
|
|
|
return call<Rpc_trace_buffer>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
Dataspace_capability trace_policy(Thread_capability thread) override {
|
2013-08-09 09:11:03 +00:00
|
|
|
return call<Rpc_trace_policy>(thread); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
int ref_account(Cpu_session_capability session) override {
|
2014-10-16 09:15:46 +00:00
|
|
|
return call<Rpc_ref_account>(session); }
|
|
|
|
|
2016-04-20 19:12:57 +00:00
|
|
|
int transfer_quota(Cpu_session_capability session, size_t amount) override {
|
2014-10-16 09:15:46 +00:00
|
|
|
return call<Rpc_transfer_quota>(session, amount); }
|
|
|
|
|
2015-03-27 13:05:55 +00:00
|
|
|
Quota quota() override { return call<Rpc_quota>(); }
|
2014-10-16 09:15:46 +00:00
|
|
|
|
2016-03-30 13:34:37 +00:00
|
|
|
Capability<Native_cpu> native_cpu() override { return call<Rpc_native_cpu>(); }
|
|
|
|
|
2012-08-24 07:29:54 +00:00
|
|
|
private:
|
|
|
|
|
2014-09-05 15:00:31 +00:00
|
|
|
Native_capability pause_sync(Thread_capability) {
|
|
|
|
return Native_capability(); }
|
|
|
|
|
|
|
|
Native_capability single_step_sync(Thread_capability, bool) {
|
|
|
|
return Native_capability(); }
|
2012-08-08 15:12:10 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-08-24 07:29:54 +00:00
|
|
|
#endif /* _INCLUDE__CPU_SESSION__CLIENT_H_ */
|