2012-08-08 12:23:13 +00:00
|
|
|
/*
|
|
|
|
* \brief Helper code used by core as base framework
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2012-08-08
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-08-08 12:23:13 +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 _NOVA__INCLUDE__UTIL_H_
|
|
|
|
#define _NOVA__INCLUDE__UTIL_H_
|
|
|
|
|
|
|
|
#include <base/printf.h>
|
|
|
|
#include <base/thread.h>
|
|
|
|
|
2012-08-03 08:56:08 +00:00
|
|
|
__attribute__((always_inline))
|
|
|
|
inline void nova_die(const char * text = 0)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If thread is de-constructed the sessions are already gone.
|
|
|
|
* Be careful when enabling printf here.
|
2012-09-28 10:24:14 +00:00
|
|
|
*/
|
|
|
|
while (1)
|
2012-08-03 08:56:08 +00:00
|
|
|
asm volatile ("ud2a" : : "a"(text));
|
|
|
|
}
|
|
|
|
|
2012-11-24 17:27:03 +00:00
|
|
|
|
2013-09-25 09:53:49 +00:00
|
|
|
inline void request_event_portal(Genode::Native_capability const &cap,
|
|
|
|
Genode::addr_t sel, Genode::addr_t event,
|
2013-09-23 08:44:50 +00:00
|
|
|
unsigned short log2_count = 0)
|
2012-08-08 12:23:13 +00:00
|
|
|
{
|
|
|
|
using namespace Nova;
|
|
|
|
Utcb *utcb = (Utcb *)Genode::Thread_base::myself()->utcb();
|
|
|
|
|
|
|
|
/* save original receive window */
|
|
|
|
Crd orig_crd = utcb->crd_rcv;
|
|
|
|
|
|
|
|
/* request event-handler portal */
|
2013-09-25 09:53:49 +00:00
|
|
|
utcb->crd_rcv = Obj_crd(sel, log2_count);
|
2012-08-08 12:23:13 +00:00
|
|
|
utcb->msg[0] = event;
|
2013-09-23 08:44:50 +00:00
|
|
|
utcb->msg[1] = log2_count;
|
|
|
|
utcb->set_msg_word(2);
|
2012-08-08 12:23:13 +00:00
|
|
|
|
2012-08-03 08:56:08 +00:00
|
|
|
uint8_t res = call(cap.local_name());
|
2012-08-08 12:23:13 +00:00
|
|
|
if (res)
|
2013-09-23 08:44:50 +00:00
|
|
|
PERR("request of event (%lu) capability selector failed", event);
|
2012-08-08 12:23:13 +00:00
|
|
|
|
|
|
|
/* restore original receive window */
|
|
|
|
utcb->crd_rcv = orig_crd;
|
|
|
|
}
|
|
|
|
|
2013-09-25 09:53:49 +00:00
|
|
|
|
|
|
|
inline void request_native_ec_cap(Genode::Native_capability const &cap,
|
|
|
|
Genode::addr_t sel) {
|
|
|
|
request_event_portal(cap, sel , ~0U, 0); }
|
|
|
|
|
2012-08-08 12:23:13 +00:00
|
|
|
#endif /* _NOVA__INCLUDE__UTIL_H_ */
|