mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
bdaf79e3b8
Support allocation of sub I/O memory spaces of one I/O memory bar with write-combined caching attribute.
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
/*
|
|
* \brief Abstract platform device interface
|
|
* \author Alexander Boettcher
|
|
* \date 2015-03-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015 Genode Labs GmbH
|
|
*
|
|
* 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__PLATFORM_DEVICE__DEVICE_H_
|
|
#define _INCLUDE__PLATFORM_DEVICE__DEVICE_H_
|
|
|
|
#include <base/cache.h>
|
|
#include <irq_session/capability.h>
|
|
#include <io_mem_session/capability.h>
|
|
|
|
namespace Platform { class Abstract_device; }
|
|
|
|
struct Platform::Abstract_device
|
|
{
|
|
/**
|
|
* Get IRQ session capability
|
|
*/
|
|
virtual Genode::Irq_session_capability irq(Genode::uint8_t) = 0;
|
|
|
|
/**
|
|
* Get IO mem session capability of specified resource id
|
|
*/
|
|
virtual Genode::Io_mem_session_capability io_mem(Genode::uint8_t,
|
|
Genode::Cache_attribute,
|
|
Genode::addr_t, Genode::size_t) = 0;
|
|
};
|
|
|
|
#endif /* _INCLUDE__PLATFORM_DEVICE__DEVICE_H_ */
|