2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Linux-specific dataspace client interface
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2006-05-11
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-01-03 14:35:05 +00:00
|
|
|
* Copyright (C) 2006-2012 Genode Labs GmbH
|
2011-12-22 15:19:25 +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__LINUX_DATASPACE__CLIENT_H_
|
|
|
|
#define _INCLUDE__LINUX_DATASPACE__CLIENT_H_
|
|
|
|
|
|
|
|
#include <dataspace/client.h>
|
|
|
|
#include <linux_dataspace/linux_dataspace.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
#include <util/string.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
struct Linux_dataspace_client : Rpc_client<Linux_dataspace>
|
|
|
|
{
|
|
|
|
explicit Linux_dataspace_client(Dataspace_capability ds)
|
|
|
|
: Rpc_client<Linux_dataspace>(static_cap_cast<Linux_dataspace>(ds)) { }
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************
|
|
|
|
** Generic dataspace interface **
|
|
|
|
*********************************/
|
|
|
|
|
|
|
|
size_t size() { return call<Rpc_size>(); }
|
|
|
|
addr_t phys_addr() { return call<Rpc_phys_addr>(); }
|
|
|
|
bool writable() { return call<Rpc_writable>(); }
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************
|
|
|
|
** Linux-specific dataspace interface **
|
|
|
|
****************************************/
|
|
|
|
|
2012-08-10 12:21:26 +00:00
|
|
|
Filename fname() { return call<Rpc_fname>(); }
|
|
|
|
Untyped_capability fd() { return call<Rpc_fd>(); }
|
2011-12-22 15:19:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__LINUX_DATASPACE__CLIENT_H_ */
|