/*
* \brief NOVA-specific signal-source client interface
* \author Norman Feske
* \date 2010-02-03
*
* On NOVA, the signal source server does not provide a blocking
* 'wait_for_signal' function because this kernel does no support
* out-of-order IPC replies. Instead, we use a shared semaphore
* to let the client block until a signal is present at the
* server. The shared semaphore gets initialized with the first
* call of 'wait_for_signal()'.
*/
/*
* Copyright (C) 2010-2013 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__SIGNAL_SESSION__SOURCE_CLIENT_H_
#define _INCLUDE__SIGNAL_SESSION__SOURCE_CLIENT_H_
#include
#include
/* NOVA includes */
#include
#include
namespace Genode {
class Signal_source_client : public Rpc_client
{
private:
/**
* Capability referring to a NOVA semaphore
*/
Native_capability _sem;
/**
* Request NOVA semaphore from signal-source server
*/
void _init_sem()
{
/* initialize semaphore only once */
if (_sem.valid()) return;
/* request mapping of semaphore capability selector */
Thread_base * myself = Thread_base::myself();
request_signal_sm_cap(Native_capability(myself->tid().ec_sel + 1),
myself->tid().exc_pt_sel + Nova::PT_SEL_STARTUP);
_sem = Native_capability(myself->tid().exc_pt_sel + Nova::PT_SEL_STARTUP);
call(_sem);
}
public:
/**
* Constructor
*/
Signal_source_client(Signal_source_capability cap)
: Rpc_client(
static_cap_cast(cap))
{
/*
* Make sure that we have acquired the
* semaphore from the server
*/
_init_sem();
}
/*****************************
** Signal source interface **
*****************************/
Signal wait_for_signal()
{
/*
* Block on semaphore, will be unblocked if
* signal is available
*/
using namespace Nova;
mword_t value = 0;
mword_t count = 0;
if (uint8_t res = si_ctrl(_sem.local_name(), SEMAPHORE_DOWN,
value, count))
PWRN("signal reception failed - error %u", res);
return Signal(value, count);
}
};
}
#endif /* _INCLUDE__SIGNAL_SESSION__SOURCE_CLIENT_H_ */