summaryrefslogtreecommitdiff
path: root/spb/SpbTestTool/sys/device.cpp
blob: 28455aa6cf60be05c3c419c07f4b2375159da520 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
/*++

Copyright (c) Microsoft Corporation.  All rights reserved.

Module Name: 

    device.cpp

Abstract:

    This module contains WDF device initialization 
    functions for the peripheral driver.

Environment:

    kernel-mode only

Revision History:

--*/

#include "internal.h"
#include "peripheral.h"
#include "device.h"

#include "device.tmh"


/////////////////////////////////////////////////
//
// WDF callbacks.
//
/////////////////////////////////////////////////

NTSTATUS
OnPrepareHardware(
    _In_  WDFDEVICE     FxDevice,
    _In_  WDFCMRESLIST  FxResourcesRaw,
    _In_  WDFCMRESLIST  FxResourcesTranslated
    )
/*++
 
  Routine Description:

    This routine caches the SPB resource connection ID.

  Arguments:

    FxDevice - a handle to the framework device object
    FxResourcesRaw - list of translated hardware resources that 
        the PnP manager has assigned to the device
    FxResourcesTranslated - list of raw hardware resources that 
        the PnP manager has assigned to the device

  Return Value:

    Status

--*/
{
    FuncEntry(TRACE_FLAG_WDFLOADING);

    PDEVICE_CONTEXT pDevice = GetDeviceContext(FxDevice);
    BOOLEAN fSpbResourceFound = FALSE;
    BOOLEAN fInterruptResourceFound = FALSE;
    ULONG interruptIndex = 0;
    NTSTATUS status = STATUS_SUCCESS;

    UNREFERENCED_PARAMETER(FxResourcesRaw);

    //
    // Parse the peripheral's resources.
    //

    ULONG resourceCount = WdfCmResourceListGetCount(FxResourcesTranslated);

    for(ULONG i = 0; i < resourceCount; i++)
    {
        PCM_PARTIAL_RESOURCE_DESCRIPTOR pDescriptor;
        UCHAR Class;
        UCHAR Type;

        pDescriptor = WdfCmResourceListGetDescriptor(
            FxResourcesTranslated, i);

        switch (pDescriptor->Type)
        {
            case CmResourceTypeConnection:

                //
                // Look for I2C or SPI resource and save connection ID.
                //

                Class = pDescriptor->u.Connection.Class;
                Type = pDescriptor->u.Connection.Type;

                if ((Class == CM_RESOURCE_CONNECTION_CLASS_SERIAL) &&
                    ((Type == CM_RESOURCE_CONNECTION_TYPE_SERIAL_I2C) ||
                        (Type == CM_RESOURCE_CONNECTION_TYPE_SERIAL_SPI)))
                {
                    if (fSpbResourceFound == FALSE)
                    {
                        pDevice->PeripheralId.LowPart =
                            pDescriptor->u.Connection.IdLowPart;
                        pDevice->PeripheralId.HighPart =
                            pDescriptor->u.Connection.IdHighPart;

                        fSpbResourceFound = TRUE;

                        Trace(
                            TRACE_LEVEL_INFORMATION,
                            TRACE_FLAG_WDFLOADING,
                            "SPB resource found with ID=0x%llx",
                            pDevice->PeripheralId.QuadPart);
                    }
                    else
                    {
                        Trace(
                            TRACE_LEVEL_WARNING,
                            TRACE_FLAG_WDFLOADING,
                            "Duplicate SPB resource found with ID=0x%llx",
                            pDevice->PeripheralId.QuadPart);
                    }
                }

                break;

            case CmResourceTypeInterrupt:
                
                if (fInterruptResourceFound == FALSE)
                {
                    fInterruptResourceFound = TRUE;
                    interruptIndex = i;

                    Trace(
                        TRACE_LEVEL_INFORMATION,
                        TRACE_FLAG_WDFLOADING,
                        "Interrupt resource found");
                }
                else
                {
                    Trace(
                        TRACE_LEVEL_WARNING,
                        TRACE_FLAG_WDFLOADING,
                        "Duplicate interrupt resource found");
                }

                break;

            default:

                //
                // Ignoring all other resource types.
                //

                break;
        }
    }

    //
    // An SPB resource is required.
    //

    if (fSpbResourceFound == FALSE)
    {
        status = STATUS_NOT_FOUND;
        Trace(
            TRACE_LEVEL_ERROR,
            TRACE_FLAG_WDFLOADING,
            "SPB resource not found - %!STATUS!", 
            status);
    }

    //
    // Create the interrupt if an interrupt
    // resource was found.
    //

    if (NT_SUCCESS(status))
    {
        if ((pDevice->ConnectInterrupt == TRUE) && 
            (fInterruptResourceFound == TRUE))
        {
            WDF_INTERRUPT_CONFIG interruptConfig;
            WDF_INTERRUPT_CONFIG_INIT(
                            &interruptConfig,
                            OnInterruptIsr,
                            NULL);

            interruptConfig.PassiveHandling = TRUE;
            interruptConfig.InterruptTranslated = WdfCmResourceListGetDescriptor(
                FxResourcesTranslated, 
                interruptIndex);
            interruptConfig.InterruptRaw = WdfCmResourceListGetDescriptor(
                FxResourcesRaw, 
                interruptIndex);

            status = WdfInterruptCreate(
                            pDevice->FxDevice,
                            &interruptConfig,
                            WDF_NO_OBJECT_ATTRIBUTES,
                            &pDevice->Interrupt);

            if (!NT_SUCCESS(status))
            {
                Trace(
                        TRACE_LEVEL_ERROR, 
                        TRACE_FLAG_WDFLOADING,
                        "WdfInterruptCreate failed - %!STATUS!",
                        status);
            }

            if (NT_SUCCESS(status))
            {
                KeInitializeEvent(
                    &pDevice->IsrWaitEvent,
                    SynchronizationEvent,
                    FALSE);
            }
        }
    }

    FuncExit(TRACE_FLAG_WDFLOADING);

    return status;
}

NTSTATUS
OnReleaseHardware(
    _In_  WDFDEVICE     FxDevice,
    _In_  WDFCMRESLIST  FxResourcesTranslated
    )
/*++
 
  Routine Description:

  Arguments:

    FxDevice - a handle to the framework device object
    FxResourcesTranslated - list of raw hardware resources that 
        the PnP manager has assigned to the device

  Return Value:

    Status

--*/
{
    FuncEntry(TRACE_FLAG_WDFLOADING);
    
    PDEVICE_CONTEXT pDevice = GetDeviceContext(FxDevice);
    NTSTATUS status = STATUS_SUCCESS;
    
    UNREFERENCED_PARAMETER(FxResourcesTranslated);

    if (pDevice->Interrupt != nullptr)
    {
        WdfObjectDelete(pDevice->Interrupt);
    }

    FuncExit(TRACE_FLAG_WDFLOADING);

    return status;
}

NTSTATUS
OnD0Entry(
    _In_  WDFDEVICE               FxDevice,
    _In_  WDF_POWER_DEVICE_STATE  FxPreviousState
    )
/*++
 
  Routine Description:

    This routine allocates objects needed by the driver.

  Arguments:

    FxDevice - a handle to the framework device object
    FxPreviousState - previous power state

  Return Value:

    Status

--*/
{
    FuncEntry(TRACE_FLAG_WDFLOADING);
    
    UNREFERENCED_PARAMETER(FxPreviousState);

    PDEVICE_CONTEXT pDevice = GetDeviceContext(FxDevice);
    NTSTATUS status;

    //
    // Create the SPB target.
    //

    WDF_OBJECT_ATTRIBUTES targetAttributes;
    WDF_OBJECT_ATTRIBUTES_INIT(&targetAttributes);
    
    status = WdfIoTargetCreate(
        pDevice->FxDevice,
        &targetAttributes,
        &pDevice->SpbController);

    if (!NT_SUCCESS(status))
    {
        Trace(
            TRACE_LEVEL_ERROR,
            TRACE_FLAG_WDFLOADING,
            "Failed to create IO target - %!STATUS!",
            status);
    }

    //
    // InputMemory will be created when an SPB request is about to be
    // sent. Indicate that it is not yet initialized.
    //

    pDevice->InputMemory = WDF_NO_HANDLE;

    //
    // Create the SPB request.
    //

    if (NT_SUCCESS(status))
    {
        WDF_OBJECT_ATTRIBUTES requestAttributes;
        WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&requestAttributes, REQUEST_CONTEXT);
    
        status = WdfRequestCreate(
            &requestAttributes,
            nullptr,
            &pDevice->SpbRequest);

        if (!NT_SUCCESS(status))
        {
            Trace(
                TRACE_LEVEL_ERROR,
                TRACE_FLAG_WDFLOADING,
                "Failed to create IO request - %!STATUS!",
                status);
        }

        if (NT_SUCCESS(status))
        {
            PREQUEST_CONTEXT pRequest = GetRequestContext(
                pDevice->SpbRequest);

            pRequest->FxDevice = pDevice->FxDevice;
            pRequest->IsSpbSequenceRequest = FALSE;
            pRequest->SequenceWriteLength = 0;
        }
    }

    FuncExit(TRACE_FLAG_WDFLOADING);

    return status;
}

NTSTATUS
OnD0Exit(
    _In_  WDFDEVICE               FxDevice,
    _In_  WDF_POWER_DEVICE_STATE  FxPreviousState
    )
/*++
 
  Routine Description:

    This routine destroys objects needed by the driver.

  Arguments:

    FxDevice - a handle to the framework device object
    FxPreviousState - previous power state

  Return Value:

    Status

--*/
{
    FuncEntry(TRACE_FLAG_WDFLOADING);
    
    UNREFERENCED_PARAMETER(FxPreviousState);

    PDEVICE_CONTEXT pDevice = GetDeviceContext(FxDevice);

    if (pDevice->SpbController != WDF_NO_HANDLE)
    {
        WdfObjectDelete(pDevice->SpbController);
        pDevice->SpbController = WDF_NO_HANDLE;
    }

    if (pDevice->SpbRequest != WDF_NO_HANDLE)
    {
        WdfObjectDelete(pDevice->SpbRequest);
        pDevice->SpbRequest = WDF_NO_HANDLE;
    }

    if (pDevice->InputMemory != WDF_NO_HANDLE)
    {
        WdfObjectDelete(pDevice->InputMemory);
        pDevice->InputMemory = WDF_NO_HANDLE;
    }

    FuncExit(TRACE_FLAG_WDFLOADING);

    return STATUS_SUCCESS;
}

VOID
OnFileCleanup(
    _In_  WDFFILEOBJECT  FileObject
    )
/*++
 
  Routine Description:

    This routine is called before a device is stopped.

  Arguments:

    FileObject - a handle to the framework file object

  Return Value:

    None

--*/
{
    FuncEntry(TRACE_FLAG_WDFLOADING);

    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;

    device = WdfFileObjectGetDevice(FileObject);
    pDevice = GetDeviceContext(device);

    //
    // The client app has closed the device handle,
    // make sure the SPB target is closed.
    //

    SpbPeripheralClose(pDevice);

    //
    // Signal the ISR wait event just
    // in case the callback is stalled.
    //    

    if (pDevice->Interrupt != nullptr)
    {
        KeSetEvent(
            &pDevice->IsrWaitEvent,
            IO_NO_INCREMENT,
            FALSE);
    }

    FuncExit(TRACE_FLAG_WDFLOADING);
}

VOID
OnTopLevelIoDefault(
    _In_  WDFQUEUE    FxQueue,
    _In_  WDFREQUEST  FxRequest
    )
/*++

  Routine Description:

    Accepts all incoming requests and pends or forwards appropriately.

  Arguments:

    FxQueue -  Handle to the framework queue object that is associated with the
        I/O request.
    FxRequest - Handle to a framework request object.

  Return Value:

    None.

--*/
{
    FuncEntry(TRACE_FLAG_SPBAPI);
    
    UNREFERENCED_PARAMETER(FxQueue);

    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;
    WDF_REQUEST_PARAMETERS params;
    NTSTATUS status;

    device = WdfIoQueueGetDevice(FxQueue);
    pDevice = GetDeviceContext(device);

    WDF_REQUEST_PARAMETERS_INIT(&params);

    WdfRequestGetParameters(FxRequest, &params);

    if ((params.Type == WdfRequestTypeDeviceControl) &&
        (params.Parameters.DeviceIoControl.IoControlCode == 
            IOCTL_SPBTESTTOOL_WAIT_ON_INTERRUPT))
    {
        SpbPeripheralWaitOnInterrupt(pDevice, FxRequest);
    }
    else
    {
        status = WdfRequestForwardToIoQueue(FxRequest, pDevice->SpbQueue);

        if (!NT_SUCCESS(status))
        {
            Trace(
                TRACE_LEVEL_ERROR,
                TRACE_FLAG_SPBAPI,
                "Failed to forward WDFREQUEST %p to SPB queue %p - %!STATUS!",
                FxRequest,
                pDevice->SpbQueue,
                status);

            WdfRequestComplete(FxRequest, status);
        }
    }

    FuncExit(TRACE_FLAG_SPBAPI);
}

VOID
OnIoRead (
    _In_  WDFQUEUE    FxQueue,
    _In_  WDFREQUEST  FxRequest,
    _In_  size_t      Length
    )
/*++

  Routine Description:

    Performs read from the toaster device. This event is called when the
    framework receives IRP_MJ_READ requests.

  Arguments:

    FxQueue -  Handle to the framework queue object that is associated with the
        I/O request.
    FxRequest - Handle to a framework request object.
    Length - Length of the data buffer associated with the request.
        By default, the queue does not dispatch zero length read & write 
        requests to the driver and instead to complete such requests with 
        status success. So we will never get a zero length request.

  Return Value:

    None.

--*/
{
    FuncEntry(TRACE_FLAG_SPBAPI);
    
    UNREFERENCED_PARAMETER(Length);
    
    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;

    Trace(
        TRACE_LEVEL_INFORMATION,
        TRACE_FLAG_SPBAPI,
        "Read request %p received",
        FxRequest);

    device = WdfIoQueueGetDevice(FxQueue);
    pDevice = GetDeviceContext(device);

    //
    // Send the read request.
    //
    
    SpbPeripheralRead(pDevice,FxRequest);

    FuncExit(TRACE_FLAG_SPBAPI);
}

VOID
OnIoWrite (
    _In_  WDFQUEUE    FxQueue,
    _In_  WDFREQUEST  FxRequest,
    _In_  size_t      Length
    )
/*++

Routine Description:

    Performs write to the toaster device. This event is called when the
    framework receives IRP_MJ_WRITE requests.

Arguments:

    Queue -  Handle to the framework queue object that is associated 
        with the I/O request.
    Request - Handle to a framework request object.
    Lenght - Length of the data buffer associated with the request.
        The default property of the queue is to not dispatch
        zero lenght read & write requests to the driver and
        complete is with status success. So we will never get
        a zero length request.

Return Value:

   None
--*/
{
    FuncEntry(TRACE_FLAG_SPBAPI);

    UNREFERENCED_PARAMETER(Length);
    
    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;

    Trace(
        TRACE_LEVEL_INFORMATION,
        TRACE_FLAG_SPBAPI,
        "Write request %p received",
        FxRequest);

    device = WdfIoQueueGetDevice(FxQueue);
    pDevice = GetDeviceContext(device);

    //
    // Send the write request.
    //
    
    SpbPeripheralWrite(pDevice,FxRequest);

    FuncExit(TRACE_FLAG_SPBAPI);
}

VOID
OnIoDeviceControl(
    _In_  WDFQUEUE    FxQueue,
    _In_  WDFREQUEST  FxRequest,
    _In_  size_t      OutputBufferLength,
    _In_  size_t      InputBufferLength,
    _In_  ULONG       IoControlCode
    )
/*++
Routine Description:

    This event is called when the framework receives IRP_MJ_DEVICE_CONTROL
    requests from the system.

Arguments:

    FxQueue - Handle to the framework queue object that is associated
        with the I/O request.
    FxRequest - Handle to a framework request object.
    OutputBufferLength - length of the request's output buffer,
        if an output buffer is available.
    InputBufferLength - length of the request's input buffer,
        if an input buffer is available.
    IoControlCode - the driver-defined or system-defined I/O control code
        (IOCTL) that is associated with the request.

Return Value:

   VOID

--*/
{
    FuncEntry(TRACE_FLAG_SPBAPI);

    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;
    BOOLEAN fSync = FALSE;
    NTSTATUS status = STATUS_SUCCESS;

    UNREFERENCED_PARAMETER(OutputBufferLength);
    UNREFERENCED_PARAMETER(InputBufferLength);

    Trace(
        TRACE_LEVEL_INFORMATION,
        TRACE_FLAG_SPBAPI,
        "DeviceIoControl request %p received with IOCTL=%lu",
        FxRequest,
        IoControlCode);

    device = WdfIoQueueGetDevice(FxQueue);
    pDevice = GetDeviceContext(device);

    //
    // Translate the test IOCTL into the appropriate 
    // SPB API method.  Open and close are completed 
    // synchronously.
    //

    switch (IoControlCode)
    {
    case IOCTL_SPBTESTTOOL_OPEN:
        fSync = TRUE;
        status = SpbPeripheralOpen(pDevice);
        break;

    case IOCTL_SPBTESTTOOL_CLOSE:
        fSync = TRUE;
        status = SpbPeripheralClose(pDevice);
        break;

    case IOCTL_SPBTESTTOOL_LOCK:
        SpbPeripheralLock(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_UNLOCK:
        SpbPeripheralUnlock(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_LOCK_CONNECTION:
        SpbPeripheralLockConnection(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_UNLOCK_CONNECTION:
        SpbPeripheralUnlockConnection(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_WRITEREAD:
        SpbPeripheralWriteRead(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_FULL_DUPLEX:
        SpbPeripheralFullDuplex(pDevice, FxRequest);
        break;

    case IOCTL_SPBTESTTOOL_SIGNAL_INTERRUPT:
        SpbPeripheralSignalInterrupt(pDevice, FxRequest);
        break;
        
    default:
        fSync = TRUE;
        status = STATUS_INVALID_DEVICE_REQUEST;
        Trace(
            TRACE_LEVEL_WARNING,
            TRACE_FLAG_SPBAPI,
            "Request %p received with unexpected IOCTL=%lu",
            FxRequest,
            IoControlCode);
    }

    //
    // Complete the request if necessary.
    //

    if (fSync)
    {
        Trace(
            TRACE_LEVEL_INFORMATION,
            TRACE_FLAG_SPBAPI,
            "Completing request %p with %!STATUS!",
            FxRequest,
            status);

        WdfRequestComplete(FxRequest, status);
    }

    FuncExit(TRACE_FLAG_SPBAPI);
}

BOOLEAN
OnInterruptIsr(
    _In_  WDFINTERRUPT FxInterrupt,
    _In_  ULONG        MessageID
    )
/*++
 
  Routine Description:

    This routine responds to interrupts generated by the H/W.
    It then waits indefinitely for the user to signal that
    the interrupt has been acknowledged, allowing the ISR to
    return. This ISR is called at PASSIVE_LEVEL.

  Arguments:
  
    Interrupt - a handle to a framework interrupt object
    MessageID - message number identifying the device's
        hardware interrupt message (if using MSI)

  Return Value:

    TRUE if interrupt recognized.

--*/
{
    FuncEntry(TRACE_FLAG_SPBAPI);

    BOOLEAN fInterruptRecognized = TRUE;
    BOOLEAN fNotificationSent;
    WDFDEVICE device;
    PDEVICE_CONTEXT pDevice;

    UNREFERENCED_PARAMETER(MessageID);

    device = WdfInterruptGetDevice(FxInterrupt);
    pDevice = GetDeviceContext(device);
    
    //
    // Notify the app that an interrupt has occurred.
    //

    fNotificationSent = SpbPeripheralInterruptNotify(pDevice);

    if (fNotificationSent)
    {
        //
        // Stall in ISR until acknowledged by user.
        //
        // Note: In a 'real' driver, the ISR should directly
        //       acknowledge the interrupt and then queue
        //       a workitem to carry out any additional
        //       processing. The ISR should never call
        //       KeWaitForSingleObject as done below.
        //

        Trace(
            TRACE_LEVEL_INFORMATION,
            TRACE_FLAG_SPBAPI,
            "Stalling in ISR until continue command received");

        KeClearEvent(&pDevice->IsrWaitEvent);

        KeWaitForSingleObject(
            &pDevice->IsrWaitEvent,
            Executive,
            KernelMode,
            FALSE,
            NULL
            );
    }
    else
    {
        Trace(
            TRACE_LEVEL_WARNING,
            TRACE_FLAG_SPBAPI,
            "Interrupt detected, but failed to send notification, ignoring");
    }

    FuncExit(TRACE_FLAG_SPBAPI);

    return fInterruptRecognized;
}