genode/os/include/pci_session/client.h

42 lines
1.1 KiB
C
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Client-side PCI-session interface
* \author Norman Feske
* \date 2008-01-28
*/
/*
2013-01-10 20:44:47 +00:00
* Copyright (C) 2008-2013 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__PCI_SESSION__CLIENT_H_
#define _INCLUDE__PCI_SESSION__CLIENT_H_
#include <pci_session/capability.h>
#include <base/rpc_client.h>
namespace Pci {
struct Session_client : public Genode::Rpc_client<Session>
{
Session_client(Session_capability session)
: Genode::Rpc_client<Session>(session) { }
Device_capability first_device() {
return call<Rpc_first_device>(); }
Device_capability next_device(Device_capability prev_device) {
return call<Rpc_next_device>(prev_device); }
void release_device(Device_capability device) {
call<Rpc_release_device>(device); }
Genode::Io_mem_dataspace_capability config_extended(Device_capability device_cap) {
return call<Rpc_config_extended>(device_cap); }
2011-12-22 15:19:25 +00:00
};
}
#endif /* _INCLUDE__PCI_SESSION__CLIENT_H_ */