genode/os/include/pci_device/client.h

52 lines
1.3 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Client-side interface for PCI device
* \author Norman Feske
* \date 2008-01-28
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2008-2012 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__PCI_DEVICE__CLIENT_H_
#define _INCLUDE__PCI_DEVICE__CLIENT_H_
#include <pci_session/pci_session.h>
#include <pci_device/pci_device.h>
#include <base/rpc_client.h>
namespace Pci {
struct Device_client : public Genode::Rpc_client<Device>
{
Device_client(Device_capability device)
: Genode::Rpc_client<Device>(device) { }
void bus_address(unsigned char *bus, unsigned char *dev, unsigned char *fn) {
call<Rpc_bus_address>(bus, dev, fn); }
unsigned short vendor_id() {
return call<Rpc_vendor_id>(); }
unsigned short device_id() {
return call<Rpc_device_id>(); }
unsigned class_code() {
return call<Rpc_class_code>(); }
Resource resource(int resource_id) {
return call<Rpc_resource>(resource_id); }
unsigned config_read(unsigned char address, Access_size size) {
return call<Rpc_config_read>(address, size); }
void config_write(unsigned char address, unsigned value, Access_size size) {
call<Rpc_config_write>(address, value, size); }
};
}
#endif /* _INCLUDE__PCI_DEVICE__CLIENT_H_ */