genode/base-nova/src/core/include/platform_thread.h

163 lines
3.5 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Thread facility
* \author Norman Feske
* \author Alexander Boettcher
2011-12-22 16:19:25 +01:00
* \date 2009-10-02
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2009-2012 Genode Labs GmbH
2011-12-22 16:19:25 +01: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 _CORE__INCLUDE__PLATFORM_THREAD_H_
#define _CORE__INCLUDE__PLATFORM_THREAD_H_
/* Genode includes */
#include <thread/capability.h>
#include <base/thread_state.h>
#include <base/native_types.h>
#include <base/thread.h>
#include <base/pager.h>
namespace Genode {
class Platform_pd;
class Platform_thread
{
private:
Platform_pd *_pd;
Pager_object *_pager;
2012-08-08 17:12:10 +02:00
addr_t _id_base;
addr_t _sel_exc_base;
2012-08-08 17:12:10 +02:00
unsigned _cpu_no;
bool _is_main_thread;
2012-08-08 17:12:10 +02:00
addr_t _sel_ec() { return _id_base; }
addr_t _sel_sc() { return _id_base + 1; }
2011-12-22 16:19:25 +01:00
public:
/* invalid thread number */
enum { THREAD_INVALID = -1 };
2011-12-22 16:19:25 +01:00
/**
* Constructor
*/
Platform_thread(const char *name = 0,
unsigned priority = 0,
2012-08-08 17:12:10 +02:00
int thread_id = THREAD_INVALID);
2011-12-22 16:19:25 +01:00
/**
* Destructor
*/
~Platform_thread();
/**
* Start thread
*
* \param ip instruction pointer to start at
* \param sp stack pointer to use
* \param exc_base exception base of thread in caller
* protection domain
* \param vcpu If true it will run as vCPU,
* otherwise it will be a thread.
2011-12-22 16:19:25 +01:00
*
* \retval 0 successful
* \retval -1 thread/vCPU could not be started
2011-12-22 16:19:25 +01:00
*/
int start(void *ip, void *sp, addr_t exc_base = ~0UL,
bool vcpu = false);
2011-12-22 16:19:25 +01:00
/**
* Pause this thread
*/
void pause();
/**
* Resume this thread
*/
void resume();
/**
* Cancel currently blocking operation
*/
void cancel_blocking();
/**
* Request thread state
*
* \param state_dst destination state buffer
*
* \retval 0 successful
* \retval -1 thread state not accessible
*/
int state(Genode::Thread_state *state_dst);
/************************
** Accessor functions **
************************/
/**
* Set pager
*/
void pager(Pager_object *pager) { _pager = pager; }
/**
* Return pager object
*/
2011-12-22 16:19:25 +01:00
Pager_object *pager() { return _pager; }
/**
* Return identification of thread when faulting
*/
unsigned long pager_object_badge() const;
/**
* Set the executing CPU for this thread.
*/
void set_cpu(unsigned int cpu_no);
/**
* Get thread name
*/
const char *name() const { return "noname"; }
/**
* Associate thread with protection domain
*/
void bind_to_pd(Platform_pd *pd, bool is_main_thread)
{
_pd = pd, _is_main_thread = is_main_thread;
}
2012-08-08 17:12:10 +02:00
/**
* Return native EC cap with specific rights mask set.
* If the cap is mapped the kernel will demote the
* rights of the EC as specified by the rights mask.
*
* The cap is supposed to be returned to clients,
* which they have to use as argument to identify
* the thread to which they want attach portals.
*
* The demotion by the kernel during the map operation
* takes care that the EC cap itself contains
* no usable rights for the clients.
*/
2012-08-08 17:12:10 +02:00
Native_capability native_cap()
{
using namespace Nova;
return Native_capability(
_sel_ec(), Obj_crd::RIGHT_EC_RECALL);
2012-08-08 17:12:10 +02:00
}
2011-12-22 16:19:25 +01:00
};
}
#endif /* _CORE__INCLUDE__PLATFORM_THREAD_H_ */