/* * \brief Backend for IRQ sessions served by core * \author Martin Stein * \date 2013-10-29 */ /* * Copyright (C) 2013-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__IRQ_SESSION_COMPONENT_H_ #define __INCLUDE__IRQ_SESSION_COMPONENT_H_ /* Genode includes */ #include #include #include namespace Genode { class Irq_session_component; } class Genode::Irq_session_component : public Rpc_object, public List::Element { private: unsigned _irq_number; Range_allocator *_irq_alloc; Genode::uint8_t _kernel_object[sizeof(Kernel::User_irq)]; Signal_context_capability _sig_cap; unsigned _find_irq_number(const char * const args); public: /** * Constructor * * \param irq_alloc platform-dependent IRQ allocator * \param args session construction arguments */ Irq_session_component(Range_allocator *irq_alloc, const char *args); /** * Destructor */ ~Irq_session_component(); /*************************** ** Irq session interface ** ***************************/ void ack_irq(); void sigh(Signal_context_capability) override; }; #endif /* _INCLUDE__IRQ_SESSION_COMPONENT_H_ */