genode/repos/base/src/core/spec/x86/io_port_session_component.cc
Alexander Boettcher 464181b01d base: refactor io_port session implementation
Split port API implementation into separate io_port_session_support.cc file,
so that base-sel4 may implement this part alternatively.

Issue #2044
2016-08-10 11:07:50 +02:00

75 lines
1.9 KiB
C++

/*
* \brief Core implementation of the IO_PORT session interface
* \author Christian Helmuth
* \date 2007-04-17
*/
/*
* Copyright (C) 2007-2013 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.
*/
/* Genode includes */
#include <util/string.h>
#include <util/arg_string.h>
#include <root/root.h>
/* core includes */
#include <io_port_session_component.h>
using namespace Genode;
static const bool verbose = false;
/******************************
** Constructor / destructor **
******************************/
Io_port_session_component::Io_port_session_component(Range_allocator *io_port_alloc,
const char *args)
: _io_port_alloc(io_port_alloc)
{
/* parse for port properties */
unsigned base = Arg_string::find_arg(args, "io_port_base").ulong_value(0);
unsigned size = Arg_string::find_arg(args, "io_port_size").ulong_value(0);
/* allocate region (also checks out-of-bounds regions) */
switch (io_port_alloc->alloc_addr(size, base).value) {
case Range_allocator::Alloc_return::RANGE_CONFLICT:
PERR("I/O port [%x,%x) not available", base, base + size);
throw Root::Invalid_args();
case Range_allocator::Alloc_return::OUT_OF_METADATA:
PERR("I/O port allocator ran out of meta data");
/*
* Do not throw 'Quota_exceeded' because the client cannot do
* anything about the meta data allocator of I/O ports.
*/
throw Root::Invalid_args();
case Range_allocator::Alloc_return::OK: break;
}
if (verbose)
PDBG("I/O port: [%04x,%04x)", base, base + size);
/* store information */
_base = base;
_size = size;
}
Io_port_session_component::~Io_port_session_component()
{
if (verbose)
PDBG("I/O port: [%04x,%04x)", _base, _base + _size);
_io_port_alloc->free(reinterpret_cast<void *>(_base));
}