-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvirtual_interrupt_dispatcher.cpp
50 lines (37 loc) · 1.58 KB
/
virtual_interrupt_dispatcher.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// 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
#include <object/virtual_interrupt_dispatcher.h>
#include <kernel/auto_lock.h>
#include <dev/interrupt.h>
#include <zircon/rights.h>
#include <fbl/alloc_checker.h>
#include <fbl/auto_lock.h>
#include <fbl/mutex.h>
#include <platform.h>
zx_status_t VirtualInterruptDispatcher::Create(fbl::RefPtr<Dispatcher>* dispatcher,
zx_rights_t* rights,
uint32_t options) {
if (options != ZX_INTERRUPT_VIRTUAL)
return ZX_ERR_INVALID_ARGS;
// Attempt to construct the dispatcher.
fbl::AllocChecker ac;
VirtualInterruptDispatcher* disp = new (&ac) VirtualInterruptDispatcher();
if (!ac.check())
return ZX_ERR_NO_MEMORY;
// Hold a ref while we check to see if someone else owns this vector or not.
// If things go wrong, this ref will be released and the IED will get
// cleaned up automatically.
auto disp_ref = fbl::AdoptRef<Dispatcher>(disp);
disp->set_flags(INTERRUPT_VIRTUAL);
// Transfer control of the new dispatcher to the creator and we are done.
*rights = default_rights();
*dispatcher = ktl::move(disp_ref);
return ZX_OK;
}
//void VirtualInterruptDispatcher::IrqHandler(void* ctx) { }
void VirtualInterruptDispatcher::MaskInterrupt() { }
void VirtualInterruptDispatcher::UnmaskInterrupt() { }
void VirtualInterruptDispatcher::UnregisterInterruptHandler() { }