blob: 1ffa80cbff49da3a2ff836845a530c8744973a4c [file] [edit]
// Copyright 2016 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_KERNEL_OBJECT_INCLUDE_OBJECT_INTERRUPT_EVENT_DISPATCHER_H_
#define ZIRCON_KERNEL_OBJECT_INCLUDE_OBJECT_INTERRUPT_EVENT_DISPATCHER_H_
#include <sys/types.h>
#include <zircon/types.h>
#include <kernel/mp.h>
#include <object/interrupt_dispatcher.h>
class InterruptEventDispatcher final : public InterruptDispatcher {
public:
static zx_status_t Create(KernelHandle<InterruptDispatcher>* handle, zx_rights_t* rights,
uint32_t vector, uint32_t options,
bool allow_ack_without_port_for_test = false);
~InterruptEventDispatcher() final;
InterruptEventDispatcher(const InterruptDispatcher&) = delete;
InterruptEventDispatcher& operator=(const InterruptDispatcher&) = delete;
// This override of WakeVector::GetDiagnostics (and the destructor of this class) is marked final
// to prevent further overrides. Because this method cannot be overridden further, it is safe for
// this class to initialize / destroy InterruptDispatcher::wake_event_ in the constructor /
// destructor. See lib/wake-vector.h for more details.
void GetDiagnostics(WakeVector::Diagnostics& diagnostics_out) const final;
private:
explicit InterruptEventDispatcher(uint32_t vector, Flags flags, uint32_t options);
void MaskInterrupt() final;
void UnmaskInterrupt() final;
void DeactivateInterrupt() final;
void UnregisterInterruptHandler() final;
zx_status_t RegisterInterruptHandler();
const uint32_t vector_;
};
#endif // ZIRCON_KERNEL_OBJECT_INCLUDE_OBJECT_INTERRUPT_EVENT_DISPATCHER_H_