genode/repos/base-fiasco/src/core/irq_session_component.cc

166 lines
3.2 KiB
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Core implementation of IRQ sessions
* \author Christian Helmuth
* \date 2007-09-13
*/
/*
* Copyright (C) 2007-2017 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 Affero General Public License version 3.
2011-12-22 16:19:25 +01:00
*/
/* Genode includes */
#include <base/log.h>
2011-12-22 16:19:25 +01:00
#include <util/arg_string.h>
/* core includes */
#include <irq_root.h>
#include <util.h>
/* Fiasco includes */
namespace Fiasco {
#include <l4/sys/ipc.h>
#include <l4/sys/syscalls.h>
#include <l4/sys/types.h>
}
using namespace Genode;
bool Irq_object::_associate()
{
using namespace Fiasco;
int err;
l4_threadid_t irq_tid;
l4_umword_t dw0, dw1;
l4_msgdope_t result;
2011-12-22 16:19:25 +01:00
l4_make_taskid_from_irq(_irq, &irq_tid);
2011-12-22 16:19:25 +01:00
/* boost thread to IRQ priority */
enum { IRQ_PRIORITY = 0xC0 };
l4_sched_param_t param = {sp:{prio:IRQ_PRIORITY, small:0, state:0, time_exp:0, time_man:0}};
l4_threadid_t ext_preempter = L4_INVALID_ID;
l4_threadid_t partner = L4_INVALID_ID;
l4_sched_param_t old_param;
l4_thread_schedule(l4_myself(), param, &ext_preempter, &partner, &old_param);
2011-12-22 16:19:25 +01:00
err = l4_ipc_receive(irq_tid,
L4_IPC_SHORT_MSG, &dw0, &dw1,
L4_IPC_BOTH_TIMEOUT_0, &result);
2011-12-22 16:19:25 +01:00
if (err != L4_IPC_RETIMEOUT) error("IRQ association failed");
2011-12-22 16:19:25 +01:00
return (err == L4_IPC_RETIMEOUT);
}
2011-12-22 16:19:25 +01:00
void Irq_object::_wait_for_irq()
{
using namespace Fiasco;
2011-12-22 16:19:25 +01:00
l4_threadid_t irq_tid;
l4_umword_t dw0=0, dw1=0;
l4_msgdope_t result;
2011-12-22 16:19:25 +01:00
l4_make_taskid_from_irq(_irq, &irq_tid);
2011-12-22 16:19:25 +01:00
do {
l4_ipc_call(irq_tid,
L4_IPC_SHORT_MSG, 0, 0,
L4_IPC_SHORT_MSG, &dw0, &dw1,
L4_IPC_NEVER, &result);
2011-12-22 16:19:25 +01:00
if (L4_IPC_IS_ERROR(result)) error("Ipc error ", L4_IPC_ERROR(result));
} while (L4_IPC_IS_ERROR(result));
}
void Irq_object::start()
{
::Thread::start();
2020-02-18 15:29:47 +01:00
_sync_bootup.block();
}
void Irq_object::entry()
{
if (!_associate()) {
error("Could not associate with IRQ ", _irq);
return;
}
/* thread is up and ready */
2020-02-18 15:29:47 +01:00
_sync_bootup.wakeup();
/* wait for first ack_irq */
2020-02-18 15:29:47 +01:00
_sync_ack.block();
while (true) {
2011-12-22 16:19:25 +01:00
_wait_for_irq();
2011-12-22 16:19:25 +01:00
if (!_sig_cap.valid())
continue;
2011-12-22 16:19:25 +01:00
Genode::Signal_transmitter(_sig_cap).submit(1);
2011-12-22 16:19:25 +01:00
2020-02-18 15:29:47 +01:00
_sync_ack.block();
}
2011-12-22 16:19:25 +01:00
}
Irq_object::Irq_object(unsigned irq)
:
Thread_deprecated<4096>("irq"),
_irq(irq)
{ }
Irq_session_component::Irq_session_component(Range_allocator &irq_alloc,
2011-12-22 16:19:25 +01:00
const char *args)
:
_irq_number(Arg_string::find_arg(args, "irq_number").long_value(-1)),
_irq_alloc(irq_alloc),
_irq_object(_irq_number)
2011-12-22 16:19:25 +01:00
{
long msi = Arg_string::find_arg(args, "device_config_phys").long_value(0);
if (msi)
throw Service_denied();
if (irq_alloc.alloc_addr(1, _irq_number).error()) {
error("unavailable IRQ ", _irq_number, " requested");
throw Service_denied();
2011-12-22 16:19:25 +01:00
}
_irq_object.start();
2011-12-22 16:19:25 +01:00
}
Irq_session_component::~Irq_session_component()
{
error("Not yet implemented.");
2011-12-22 16:19:25 +01:00
}
void Irq_session_component::ack_irq()
{
_irq_object.ack_irq();
}
void Irq_session_component::sigh(Genode::Signal_context_capability cap)
{
_irq_object.sigh(cap);
}
Genode::Irq_session::Info Irq_session_component::info()
{
/* no MSI support */
Follow practices suggested by "Effective C++" The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
2017-12-21 15:42:15 +01:00
return { .type = Info::Type::INVALID, .address = 0, .value = 0 };
}