genode/repos/base/include/dataspace/dataspace.h

55 lines
1.0 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Dataspace interface
* \author Norman Feske
* \date 2006-07-05
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 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 _INCLUDE__DATASPACE__DATASPACE_H_
#define _INCLUDE__DATASPACE__DATASPACE_H_
#include <base/stdint.h>
#include <base/rpc.h>
namespace Genode { struct Dataspace; }
2011-12-22 16:19:25 +01:00
struct Genode::Dataspace
{
virtual ~Dataspace() { }
2011-12-22 16:19:25 +01:00
/**
* Request size of dataspace
*/
virtual size_t size() = 0;
2011-12-22 16:19:25 +01:00
/**
* Request base address in physical address space
*/
virtual addr_t phys_addr() = 0;
2011-12-22 16:19:25 +01:00
/**
* Return true if dataspace is writable
*/
virtual bool writable() = 0;
2011-12-22 16:19:25 +01:00
/*********************
** RPC declaration **
*********************/
2011-12-22 16:19:25 +01:00
GENODE_RPC(Rpc_size, size_t, size);
GENODE_RPC(Rpc_phys_addr, addr_t, phys_addr);
GENODE_RPC(Rpc_writable, bool, writable);
GENODE_RPC_INTERFACE(Rpc_size, Rpc_phys_addr, Rpc_writable);
};
2011-12-22 16:19:25 +01:00
#endif /* _INCLUDE__DATASPACE__DATASPACE_H_ */