2017-04-26 09:10:52 +00:00
|
|
|
/*
|
|
|
|
* \brief Gpu session interface.
|
|
|
|
* \author Josef Soentgen
|
2022-12-16 16:51:55 +00:00
|
|
|
* \author Sebastian Sumpf
|
2017-04-26 09:10:52 +00:00
|
|
|
* \date 2017-04-28
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2022-12-16 16:51:55 +00:00
|
|
|
* Copyright (C) 2017-2023 Genode Labs GmbH
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__GPU_SESSION__GPU_SESSION_H_
|
|
|
|
#define _INCLUDE__GPU_SESSION__GPU_SESSION_H_
|
|
|
|
|
2021-09-23 15:37:51 +00:00
|
|
|
#include <base/id_space.h>
|
2017-04-26 09:10:52 +00:00
|
|
|
#include <session/session.h>
|
|
|
|
|
|
|
|
namespace Gpu {
|
|
|
|
|
|
|
|
using addr_t = Genode::uint64_t;
|
|
|
|
|
2022-12-16 16:51:55 +00:00
|
|
|
struct Vram;
|
|
|
|
using Vram_id_space = Genode::Id_space<Vram>;
|
|
|
|
using Vram_id = Vram_id_space::Id;
|
|
|
|
using Vram_capability = Genode::Capability<Vram>;
|
2021-09-23 15:37:51 +00:00
|
|
|
|
2021-09-23 16:07:56 +00:00
|
|
|
/*
|
|
|
|
* Attributes for mapping a buffer
|
|
|
|
*/
|
|
|
|
struct Mapping_attributes
|
|
|
|
{
|
|
|
|
bool readable;
|
|
|
|
bool writeable;
|
|
|
|
|
|
|
|
static Mapping_attributes ro()
|
|
|
|
{
|
|
|
|
return { .readable = true, .writeable = false };
|
|
|
|
}
|
|
|
|
|
|
|
|
static Mapping_attributes rw()
|
|
|
|
{
|
|
|
|
return { .readable = true, .writeable = true };
|
|
|
|
}
|
|
|
|
|
|
|
|
static Mapping_attributes wo()
|
|
|
|
{
|
|
|
|
return { .readable = false, .writeable = true };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-09-23 14:01:18 +00:00
|
|
|
struct Sequence_number;
|
2017-04-26 09:10:52 +00:00
|
|
|
struct Session;
|
2022-12-16 16:51:55 +00:00
|
|
|
struct Virtual_address;
|
2017-04-26 09:10:52 +00:00
|
|
|
}
|
|
|
|
|
2021-09-23 14:01:18 +00:00
|
|
|
/*
|
|
|
|
* Execution buffer sequence number
|
|
|
|
*/
|
|
|
|
struct Gpu::Sequence_number
|
|
|
|
{
|
|
|
|
Genode::uint64_t value;
|
|
|
|
};
|
|
|
|
|
2017-04-26 09:10:52 +00:00
|
|
|
|
2022-12-16 16:51:55 +00:00
|
|
|
struct Gpu::Virtual_address
|
|
|
|
{
|
|
|
|
Genode::uint64_t va;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-26 09:10:52 +00:00
|
|
|
/*
|
|
|
|
* Gpu session interface
|
|
|
|
*/
|
|
|
|
struct Gpu::Session : public Genode::Session
|
|
|
|
{
|
2022-12-16 16:51:55 +00:00
|
|
|
struct Out_of_ram : Genode::Exception { };
|
|
|
|
struct Out_of_caps : Genode::Exception { };
|
|
|
|
struct Invalid_state : Genode::Exception { };
|
|
|
|
struct Conflicting_id : Genode::Exception { };
|
|
|
|
struct Mapping_vram_failed : Genode::Exception { };
|
2017-04-26 09:10:52 +00:00
|
|
|
|
2022-01-07 16:24:49 +00:00
|
|
|
enum { REQUIRED_QUOTA = 1024 * 1024, CAP_QUOTA = 32, };
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
static const char *service_name() { return "Gpu"; }
|
|
|
|
|
|
|
|
virtual ~Session() { }
|
|
|
|
|
|
|
|
/***********************
|
|
|
|
** Session interface **
|
|
|
|
***********************/
|
|
|
|
|
|
|
|
/**
|
2021-09-23 14:36:48 +00:00
|
|
|
* Get GPU information dataspace
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2021-09-23 14:36:48 +00:00
|
|
|
virtual Genode::Dataspace_capability info_dataspace() const = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Execute commands in vram
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id vram id
|
|
|
|
* \param offset offset in vram to start execution
|
2021-06-18 12:07:21 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \return execution sequence number for complete checks
|
2021-06-18 12:07:21 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \throw Invalid_state is thrown if the provided vram is not valid, e.g not mapped
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual Gpu::Sequence_number execute(Vram_id id, Genode::off_t offset) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
2021-09-24 15:22:58 +00:00
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Check if execution has been completed
|
2021-09-24 15:22:58 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param seqno sequence number of the execution
|
2021-09-24 15:22:58 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \return true if execution has been finished, otherwise
|
2021-09-24 15:22:58 +00:00
|
|
|
* false is returned
|
|
|
|
*/
|
|
|
|
virtual bool complete(Sequence_number seqno) = 0;
|
|
|
|
|
2017-04-26 09:10:52 +00:00
|
|
|
/**
|
|
|
|
* Register completion signal handler
|
|
|
|
*
|
|
|
|
* \param sigh signal handler that is called when the execution
|
|
|
|
* has completed
|
|
|
|
*/
|
|
|
|
virtual void completion_sigh(Genode::Signal_context_capability sigh) = 0;
|
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Allocate video ram
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id id to be associated with the vram
|
|
|
|
* \param size size of memory in bytes
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
|
|
|
* \throw Out_of_ram
|
|
|
|
* \throw Out_of_caps
|
2021-09-23 15:37:51 +00:00
|
|
|
* \throw Conflicting_id
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual Genode::Dataspace_capability alloc_vram(Vram_id id, Genode::size_t size) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Free vram
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id id of vram
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual void free_vram(Vram_id id) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
2022-01-07 16:24:49 +00:00
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Export vram dataspace from GPU session
|
|
|
|
*
|
|
|
|
* \param id id of associated vram
|
2022-01-07 16:24:49 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \return cability of exported vram
|
2022-01-07 16:24:49 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual Vram_capability export_vram(Vram_id id) = 0;
|
2022-01-07 16:24:49 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Import vram to GPU session
|
2022-01-07 16:24:49 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param cap capability of vram as retrieved by 'exportvram'
|
|
|
|
* \param id vram id to be associated to this vram in the session
|
2022-01-07 16:24:49 +00:00
|
|
|
*
|
|
|
|
* \throw Conflicting_id
|
|
|
|
* \throw Out_of_caps
|
|
|
|
* \throw Out_of_ram
|
|
|
|
* \throw Invalid_state (cap is no longer valid)
|
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual void import_vram(Vram_capability cap, Vram_id id) = 0;
|
2022-01-07 16:24:49 +00:00
|
|
|
|
2017-04-26 09:10:52 +00:00
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Map vram at CPU
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id id of vram
|
2021-09-23 16:07:56 +00:00
|
|
|
* \param attrs specify how the buffer is mapped
|
2017-09-05 12:03:36 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \throw Mapping_vram_failed
|
2021-10-04 16:29:21 +00:00
|
|
|
* \throw Out_of_caps
|
|
|
|
* \throw Out_of_ram
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual Genode::Dataspace_capability map_cpu(Vram_id id, Mapping_attributes attrs) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Unmap vram
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id id of vram
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual void unmap_cpu(Vram_id id) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Map vram at GPU
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id vram id
|
|
|
|
* \param size size of vram to be mapped
|
|
|
|
* \pram offset offset in vram
|
|
|
|
* \param va GPU virtual address
|
2017-09-05 12:03:36 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \return true on success, false otherwise
|
|
|
|
|
|
|
|
* \throw Mapping_vram_failed
|
2021-10-04 16:29:21 +00:00
|
|
|
* \throw Out_of_caps
|
2017-09-05 12:03:36 +00:00
|
|
|
* \throw Out_of_ram
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual bool map_gpu(Vram_id id, Genode::size_t size,
|
|
|
|
Genode::off_t offset,
|
|
|
|
Virtual_address va) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Unmap vram on GPU
|
2017-04-26 09:10:52 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id vram id
|
|
|
|
* \param offset offset in vram
|
|
|
|
* \param va GPU virtual address
|
2017-04-26 09:10:52 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual void unmap_gpu(Vram_id id, Genode::off_t offset,
|
|
|
|
Virtual_address va) = 0;
|
2022-06-20 15:48:55 +00:00
|
|
|
|
|
|
|
/**
|
2022-12-16 16:51:55 +00:00
|
|
|
* Set tiling for vram on GPU
|
2022-06-20 15:48:55 +00:00
|
|
|
*
|
2022-12-16 16:51:55 +00:00
|
|
|
* \param id vram id
|
|
|
|
* \param offset offset in vram
|
|
|
|
* \param mode tiling mode
|
2022-06-20 15:48:55 +00:00
|
|
|
*/
|
2022-12-16 16:51:55 +00:00
|
|
|
virtual bool set_tiling_gpu(Vram_id id, Genode::off_t offset, unsigned mode) = 0;
|
2017-04-26 09:10:52 +00:00
|
|
|
|
|
|
|
/*******************
|
|
|
|
** RPC interface **
|
|
|
|
*******************/
|
|
|
|
|
2021-09-23 14:36:48 +00:00
|
|
|
GENODE_RPC(Rpc_info_dataspace, Genode::Dataspace_capability, info_dataspace);
|
2021-09-24 15:22:58 +00:00
|
|
|
GENODE_RPC(Rpc_complete, bool, complete,
|
|
|
|
Gpu::Sequence_number);
|
2017-04-26 09:10:52 +00:00
|
|
|
GENODE_RPC(Rpc_completion_sigh, void, completion_sigh,
|
|
|
|
Genode::Signal_context_capability);
|
2022-12-16 16:51:55 +00:00
|
|
|
GENODE_RPC_THROW(Rpc_execute, Gpu::Sequence_number, execute,
|
|
|
|
GENODE_TYPE_LIST(Invalid_state),
|
|
|
|
Gpu::Vram_id, Genode::off_t);
|
|
|
|
GENODE_RPC_THROW(Rpc_alloc_vram, Genode::Dataspace_capability, alloc_vram,
|
2021-10-04 16:29:21 +00:00
|
|
|
GENODE_TYPE_LIST(Out_of_caps, Out_of_ram),
|
2022-12-16 16:51:55 +00:00
|
|
|
Gpu::Vram_id, Genode::size_t);
|
|
|
|
GENODE_RPC(Rpc_free_vram, void, free_vram, Gpu::Vram_id);
|
|
|
|
GENODE_RPC(Rpc_export_vram, Gpu::Vram_capability, export_vram, Gpu::Vram_id);
|
|
|
|
GENODE_RPC_THROW(Rpc_import_vram, void, import_vram,
|
2022-01-07 16:24:49 +00:00
|
|
|
GENODE_TYPE_LIST(Out_of_caps, Out_of_ram, Conflicting_id, Invalid_state),
|
2022-12-16 16:51:55 +00:00
|
|
|
Gpu::Vram_capability, Gpu::Vram_id);
|
|
|
|
GENODE_RPC_THROW(Rpc_map_cpu, Genode::Dataspace_capability, map_cpu,
|
|
|
|
GENODE_TYPE_LIST(Mapping_vram_failed, Out_of_caps, Out_of_ram),
|
|
|
|
Gpu::Vram_id, Gpu::Mapping_attributes);
|
|
|
|
GENODE_RPC(Rpc_unmap_cpu, void, unmap_cpu,
|
|
|
|
Gpu::Vram_id);
|
|
|
|
GENODE_RPC_THROW(Rpc_map_gpu, bool, map_gpu,
|
|
|
|
GENODE_TYPE_LIST(Mapping_vram_failed, Out_of_caps, Out_of_ram),
|
|
|
|
Gpu::Vram_id, Genode::size_t, Genode::off_t, Gpu::Virtual_address);
|
|
|
|
GENODE_RPC(Rpc_unmap_gpu, void, unmap_gpu,
|
|
|
|
Gpu::Vram_id, Genode::off_t, Gpu::Virtual_address);
|
|
|
|
GENODE_RPC(Rpc_set_tiling_gpu, bool, set_tiling_gpu, Gpu::Vram_id, Genode::off_t, unsigned);
|
|
|
|
|
|
|
|
GENODE_RPC_INTERFACE(Rpc_info_dataspace, Rpc_complete, Rpc_completion_sigh, Rpc_execute,
|
|
|
|
Rpc_alloc_vram, Rpc_free_vram, Rpc_export_vram, Rpc_import_vram,
|
|
|
|
Rpc_map_cpu, Rpc_unmap_cpu, Rpc_map_gpu, Rpc_unmap_gpu, Rpc_set_tiling_gpu);
|
2017-04-26 09:10:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__GPU_SESSION__GPU_SESSION_H_ */
|