mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-22 10:21:04 +00:00
This commit removes APIs that were previously marked as deprecated. This change has the following implications: - The use of the global 'env()' accessor is not possible anymore. - Boolean accessor methods are no longer prefixed with 'is_'. E.g., instead of 'is_valid()', use 'valid()'. - The last traces of 'Ram_session' are gone now. The 'Env::ram()' accessor returns the 'Ram_allocator' interface, which is a subset of the 'Pd_session' interface. - All connection constructors need the 'Env' as argument. - The 'Reporter' constructor needs an 'Env' argument now because the reporter creates a report connection. - The old overload 'Child_policy::resolve_session_request' that returned a 'Service' does not exist anymore. - The base/printf.h header has been removed, use base/log.h instead. - The old notion of 'Signal_dispatcher' is gone. Use 'Signal_handler'. - Transitional headers like os/server.h, cap_session/, volatile_object.h, os/attached*_dataspace.h, signal_rpc_dispatcher.h have been removed. - The distinction between 'Thread_state' and 'Thread_state_base' does not exist anymore. - The header cpu_thread/capability.h along with the type definition of 'Cpu_thread_capability' has been removed. Use the type 'Thread_capability' define in cpu_session/cpu_session.h instead. - Several XML utilities (i.e., at os/include/decorator) could be removed because their functionality is nowadays covered by util/xml_node.h. - The 'os/ram_session_guard.h' has been removed. Use 'Constrained_ram_allocator' provided by base/ram_allocator.h instead. Issue #1987
162 lines
4.1 KiB
C++
162 lines
4.1 KiB
C++
/*
|
|
* \brief Utility to allocate and locally attach a RAM dataspace
|
|
* \author Norman Feske
|
|
* \date 2008-03-22
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-2017 Genode Labs GmbH
|
|
*
|
|
* 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__BASE__ATTACHED_RAM_DATASPACE_H_
|
|
#define _INCLUDE__BASE__ATTACHED_RAM_DATASPACE_H_
|
|
|
|
#include <util/touch.h>
|
|
#include <base/ram_allocator.h>
|
|
#include <base/env.h>
|
|
|
|
namespace Genode { class Attached_ram_dataspace; }
|
|
|
|
|
|
/*
|
|
* Utility for allocating and attaching a RAM dataspace
|
|
*
|
|
* The combination of RAM allocation and a local RM attachment is a frequent
|
|
* use case. Each function may fail, which makes error handling inevitable.
|
|
* This utility class encapsulates this functionality to handle both operations
|
|
* as a transaction. When embedded as a member, this class also takes care
|
|
* about freeing and detaching the dataspace at destruction time.
|
|
*/
|
|
class Genode::Attached_ram_dataspace
|
|
{
|
|
private:
|
|
|
|
size_t _size = 0;
|
|
Ram_allocator *_ram = nullptr;
|
|
Region_map *_rm = nullptr;
|
|
Ram_dataspace_capability _ds { };
|
|
void *_local_addr = nullptr;
|
|
Cache_attribute const _cached = CACHED;
|
|
|
|
template <typename T>
|
|
static void _swap(T &v1, T &v2) { T tmp = v1; v1 = v2; v2 = tmp; }
|
|
|
|
void _detach_and_free_dataspace()
|
|
{
|
|
if (_local_addr)
|
|
_rm->detach(_local_addr);
|
|
|
|
if (_ds.valid())
|
|
_ram->free(_ds);
|
|
}
|
|
|
|
void _alloc_and_attach()
|
|
{
|
|
if (!_size) return;
|
|
|
|
try {
|
|
_ds = _ram->alloc(_size, _cached);
|
|
_local_addr = _rm->attach(_ds);
|
|
}
|
|
/* revert allocation if attaching the dataspace failed */
|
|
catch (Region_map::Region_conflict) { _ram->free(_ds); throw; }
|
|
catch (Region_map::Invalid_dataspace) { _ram->free(_ds); throw; }
|
|
|
|
/*
|
|
* Eagerly map dataspace if used for DMA
|
|
*
|
|
* On some platforms, namely Fiasco.OC on ARMv7, the handling
|
|
* of page faults interferes with the caching attributes used
|
|
* for uncached DMA memory. See issue #452 for more details
|
|
* (https://github.com/genodelabs/genode/issues/452). As a
|
|
* work-around for this issues, we eagerly map the whole
|
|
* dataspace before writing actual content to it.
|
|
*/
|
|
if (_cached != CACHED) {
|
|
enum { PAGE_SIZE = 4096 };
|
|
unsigned char volatile *base = (unsigned char volatile *)_local_addr;
|
|
for (size_t i = 0; i < _size; i += PAGE_SIZE)
|
|
touch_read_write(base + i);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Noncopyable
|
|
*/
|
|
Attached_ram_dataspace(Attached_ram_dataspace const &);
|
|
Attached_ram_dataspace &operator = (Attached_ram_dataspace const &);
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* \throw Out_of_ram
|
|
* \throw Out_of_caps
|
|
* \throw Region_map::Region_conflict
|
|
* \throw Region_map::Invalid_dataspace
|
|
*/
|
|
Attached_ram_dataspace(Ram_allocator &ram, Region_map &rm,
|
|
size_t size, Cache_attribute cached = CACHED)
|
|
:
|
|
_size(size), _ram(&ram), _rm(&rm), _cached(cached)
|
|
{
|
|
_alloc_and_attach();
|
|
}
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
~Attached_ram_dataspace() { _detach_and_free_dataspace(); }
|
|
|
|
/**
|
|
* Return capability of the used RAM dataspace
|
|
*/
|
|
Ram_dataspace_capability cap() const { return _ds; }
|
|
|
|
/**
|
|
* Request local address
|
|
*
|
|
* This is a template to avoid inconvenient casts at
|
|
* the caller. A newly allocated RAM dataspace is
|
|
* untyped memory anyway.
|
|
*/
|
|
template <typename T>
|
|
T *local_addr() const { return static_cast<T *>(_local_addr); }
|
|
|
|
/**
|
|
* Return size
|
|
*/
|
|
size_t size() const { return _size; }
|
|
|
|
void swap(Attached_ram_dataspace &other)
|
|
{
|
|
_swap(_size, other._size);
|
|
_swap(_ram, other._ram);
|
|
_swap(_ds, other._ds);
|
|
_swap(_local_addr, other._local_addr);
|
|
}
|
|
|
|
/**
|
|
* Re-allocate dataspace with a new size
|
|
*
|
|
* The content of the original dataspace is not retained.
|
|
*/
|
|
void realloc(Ram_allocator *ram_allocator, size_t new_size)
|
|
{
|
|
if (new_size < _size) return;
|
|
|
|
_detach_and_free_dataspace();
|
|
|
|
_size = new_size;
|
|
_ram = ram_allocator;
|
|
|
|
_alloc_and_attach();
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__BASE__ATTACHED_RAM_DATASPACE_H_ */
|