base: extend irq session to support MSIs

Works on base-nova and base-foc, the other kernels have no MSI support.

Issue #1216
This commit is contained in:
Alexander Boettcher
2015-04-27 12:17:20 +02:00
committed by Christian Helmuth
parent b0f900b32b
commit d998df3b7f
15 changed files with 286 additions and 65 deletions

View File

@ -45,8 +45,10 @@ class Genode::Irq_session_component : public Rpc_object<Irq_session>,
** Irq session interface **
***************************/
void ack_irq() { }
void sigh(Signal_context_capability) override { }
void ack_irq() override { }
void sigh(Signal_context_capability) override { }
Info info() override {
return { .type = Genode::Irq_session::Info::Type::INVALID }; }
};
#endif /* _CORE__INCLUDE__LINUX__IRQ_SESSION_COMPONENT_H_ */