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
|
/******************************Module*Header*******************************\
* Module Name: blthw.cxx
*
* Sample display driver functions for a HW blt simulation. This file is
* only provided to simulate how a real hardware-accelerated display-only
* driver functions, and should not be used in a real driver.
*
* Copyright (c) 2011 Microsoft Corporation
\**************************************************************************/
#include "BDD.hxx"
typedef struct
{
CONST DXGKRNL_INTERFACE* DxgkInterface;
DXGKARGCB_NOTIFY_INTERRUPT_DATA NotifyInterrupt;
} SYNC_NOTIFY_INTERRUPT;
KSYNCHRONIZE_ROUTINE SynchronizeVidSchNotifyInterrupt;
BOOLEAN SynchronizeVidSchNotifyInterrupt(_In_opt_ PVOID params)
{
// This routine is non-paged code called at the device interrupt level (DIRQL)
// to notify VidSch and schedule a DPC. It is meant as a demonstration of handling
// a real hardware interrupt, even though it is actually called from asynchronous
// present worker threads in this sample.
SYNC_NOTIFY_INTERRUPT* pParam = reinterpret_cast<SYNC_NOTIFY_INTERRUPT*>(params);
// The context is known to be non-NULL
__analysis_assume(pParam != NULL);
// Update driver information related to fences
switch(pParam->NotifyInterrupt.InterruptType)
{
case DXGK_INTERRUPT_DISPLAYONLY_VSYNC:
case DXGK_INTERRUPT_DISPLAYONLY_PRESENT_PROGRESS:
break;
default:
NT_ASSERT(FALSE);
return FALSE;
}
// Callback OS to report about the interrupt
pParam->DxgkInterface->DxgkCbNotifyInterrupt(pParam->DxgkInterface->DeviceHandle,&pParam->NotifyInterrupt);
// Now queue a DPC for this interrupt (to callback schedule at DCP level and let it do more work there)
// DxgkCbQueueDpc can return FALSE if there is already a DPC queued
// this is an acceptable condition
pParam->DxgkInterface->DxgkCbQueueDpc(pParam->DxgkInterface->DeviceHandle);
return TRUE;
}
#pragma code_seg("PAGE")
KSTART_ROUTINE HwContextWorkerThread;
struct DoPresentMemory
{
PVOID DstAddr;
UINT DstStride;
ULONG DstBitPerPixel;
UINT SrcWidth;
UINT SrcHeight;
BYTE* SrcAddr;
LONG SrcPitch;
ULONG NumMoves; // in: Number of screen to screen moves
D3DKMT_MOVE_RECT* Moves; // in: Point to the list of moves
ULONG NumDirtyRects; // in: Number of direct rects
RECT* DirtyRect; // in: Point to the list of dirty rects
D3DKMDT_VIDPN_PRESENT_PATH_ROTATION Rotation;
BOOLEAN SynchExecution;
D3DDDI_VIDEO_PRESENT_SOURCE_ID SourceID;
HANDLE hAdapter;
PMDL Mdl;
BDD_HWBLT* DisplaySource;
};
void
HwExecutePresentDisplayOnly(
HANDLE Context);
NTSTATUS
StartHwBltPresentWorkerThread(
_In_ PKSTART_ROUTINE StartRoutine,
_In_ _When_(return==0, __drv_aliasesMem) PVOID StartContext)
/*++
Routine Description:
This routine creates the worker thread to execute a single present
command. Creating a new thread on every asynchronous present is not
efficient, but this file is only meant as a simulation, not an example
of implementation.
Arguments:
StartRoutine - start routine
StartContext - start context
Return Value:
Status
--*/
{
PAGED_CODE();
OBJECT_ATTRIBUTES ObjectAttributes;
InitializeObjectAttributes(&ObjectAttributes, NULL, OBJ_KERNEL_HANDLE, NULL, NULL);
HANDLE hWorkerThread = NULL;
// copy data from the context which is need here, as it will be deleted in separate thread
DoPresentMemory* ctx = reinterpret_cast<DoPresentMemory*>(StartContext);
BDD_HWBLT* displaySource = ctx->DisplaySource;
NTSTATUS Status = PsCreateSystemThread(
&hWorkerThread,
THREAD_ALL_ACCESS,
&ObjectAttributes,
NULL,
NULL,
StartRoutine,
StartContext);
if (!NT_SUCCESS(Status))
{
return Status;
}
// wait for thread to start - infinite wait -
// need to make sure the tread is running before OS stars submitting the work items to it
KeWaitForSingleObject(&displaySource->m_hThreadStartupEvent, Executive, KernelMode, FALSE, NULL);
// Handle is passed to the parent object which must close it
displaySource->SetPresentWorkerThreadInfo(hWorkerThread);
// Resume context thread, this is done by setting the event the thread is waiting on
KeSetEvent(&displaySource->m_hThreadSuspendEvent, 0, FALSE);
return STATUS_PENDING;
}
BDD_HWBLT::BDD_HWBLT():m_DevExt (NULL),
m_SynchExecution(TRUE),
m_hPresentWorkerThread(NULL),
m_pPresentWorkerThread(NULL)
{
PAGED_CODE();
KeInitializeEvent(&m_hThreadStartupEvent, NotificationEvent, FALSE);
KeInitializeEvent(&m_hThreadSuspendEvent, SynchronizationEvent, FALSE);
}
BDD_HWBLT::~BDD_HWBLT()
/*++
Routine Description:
This routine waits on present worker thread to exit before
destroying the object
Arguments:
None
Return Value:
None
--*/
{
PAGED_CODE();
// make sure the worker thread has exited
SetPresentWorkerThreadInfo(NULL);
}
#pragma warning(push)
#pragma warning(disable:26135) // The function doesn't lock anything
void
BDD_HWBLT::SetPresentWorkerThreadInfo(
HANDLE hWorkerThread)
/*++
Routine Description:
The method is updating present worker information
It is called in following cases:
- In ExecutePresent to update worker thread information
- In Dtor to wait on worker thread to exit
Arguments:
hWorkerThread - handle of the present worker thread
Return Value:
None
--*/
{
PAGED_CODE();
if (m_pPresentWorkerThread)
{
// Wait for thread to exit
KeWaitForSingleObject(m_pPresentWorkerThread, Executive, KernelMode,
FALSE, NULL);
// Dereference thread object
ObDereferenceObject(m_pPresentWorkerThread);
m_pPresentWorkerThread = NULL;
NT_ASSERT(m_hPresentWorkerThread);
ZwClose(m_hPresentWorkerThread);
m_hPresentWorkerThread = NULL;
}
if (hWorkerThread)
{
// Make sure that thread's handle would be valid even if the thread exited
ObReferenceObjectByHandle(hWorkerThread, THREAD_ALL_ACCESS, NULL,
KernelMode, &m_pPresentWorkerThread, NULL);
NT_ASSERT(m_pPresentWorkerThread);
m_hPresentWorkerThread = hWorkerThread;
}
}
#pragma warning(pop)
NTSTATUS
BDD_HWBLT::ExecutePresentDisplayOnly(
_In_ BYTE* DstAddr,
_In_ UINT DstBitPerPixel,
_In_ BYTE* SrcAddr,
_In_ UINT SrcBytesPerPixel,
_In_ LONG SrcPitch,
_In_ ULONG NumMoves,
_In_ D3DKMT_MOVE_RECT* Moves,
_In_ ULONG NumDirtyRects,
_In_ RECT* DirtyRect,
_In_ D3DKMDT_VIDPN_PRESENT_PATH_ROTATION Rotation)
/*++
Routine Description:
The method creates present worker thread and provides context
for it filled with present commands
Arguments:
DstAddr - address of destination surface
DstBitPerPixel - color depth of destination surface
SrcAddr - address of source surface
SrcBytesPerPixel - bytes per pixel of source surface
SrcPitch - source surface pitch (bytes in a row)
NumMoves - number of moves to be copied
Moves - moves' data
NumDirtyRects - number of rectangles to be copied
DirtyRect - rectangles' data
Rotation - roatation to be performed when executing copy
CallBack - callback for present worker thread to report execution status
Return Value:
Status
--*/
{
PAGED_CODE();
NTSTATUS Status = STATUS_SUCCESS;
SIZE_T sizeMoves = NumMoves*sizeof(D3DKMT_MOVE_RECT);
SIZE_T sizeRects = NumDirtyRects*sizeof(RECT);
SIZE_T size = sizeof(DoPresentMemory) + sizeMoves + sizeRects;
DoPresentMemory* ctx = reinterpret_cast<DoPresentMemory*>
(new (BDD_POOL_TYPE::Paged) BYTE[size]);
if (!ctx)
{
return STATUS_NO_MEMORY;
}
RtlZeroMemory(ctx,size);
const CURRENT_BDD_MODE* pModeCur = m_DevExt->GetCurrentMode(m_SourceId);
ctx->DstAddr = DstAddr;
ctx->DstBitPerPixel = DstBitPerPixel;
ctx->DstStride = pModeCur->DispInfo.Pitch;
ctx->SrcWidth = pModeCur->SrcModeWidth;
ctx->SrcHeight = pModeCur->SrcModeHeight;
ctx->SrcAddr = NULL;
ctx->SrcPitch = SrcPitch;
ctx->Rotation = Rotation;
ctx->NumMoves = NumMoves;
ctx->Moves = Moves;
ctx->NumDirtyRects = NumDirtyRects;
ctx->DirtyRect = DirtyRect;
ctx->SourceID = m_SourceId;
ctx->hAdapter = m_DevExt;
ctx->Mdl = NULL;
ctx->DisplaySource = this;
// Alternate between synch and asynch execution, for demonstrating
// that a real hardware implementation can do either
m_SynchExecution = !m_SynchExecution;
ctx->SynchExecution = m_SynchExecution;
{
// Map Source into kernel space, as Blt will be executed by system worker thread
UINT sizeToMap = SrcBytesPerPixel*pModeCur->SrcModeWidth*pModeCur->SrcModeHeight;
PMDL mdl = IoAllocateMdl((PVOID)SrcAddr, sizeToMap, FALSE, FALSE, NULL);
if(!mdl)
{
return STATUS_INSUFFICIENT_RESOURCES;
}
KPROCESSOR_MODE AccessMode = static_cast<KPROCESSOR_MODE>(( SrcAddr <=
(BYTE* const) MM_USER_PROBE_ADDRESS)?UserMode:KernelMode);
__try
{
// Probe and lock the pages of this buffer in physical memory.
// We need only IoReadAccess.
MmProbeAndLockPages(mdl, AccessMode, IoReadAccess);
}
#pragma prefast(suppress: __WARNING_EXCEPTIONEXECUTEHANDLER, "try/except is only able to protect against user-mode errors and these are the only errors we try to catch here");
__except(EXCEPTION_EXECUTE_HANDLER)
{
Status = GetExceptionCode();
IoFreeMdl(mdl);
return Status;
}
// Map the physical pages described by the MDL into system space.
// Note: double mapping the buffer this way causes lot of system
// overhead for large size buffers.
ctx->SrcAddr = reinterpret_cast<BYTE*>
(MmGetSystemAddressForMdlSafe(mdl, NormalPagePriority ));
if(!ctx->SrcAddr) {
Status = STATUS_INSUFFICIENT_RESOURCES;
MmUnlockPages(mdl);
IoFreeMdl(mdl);
return Status;
}
// Save Mdl to unmap and unlock the pages in worker thread
ctx->Mdl = mdl;
}
BYTE* rects = reinterpret_cast<BYTE*>(ctx+1);
// copy moves and update pointer
if (Moves)
{
memcpy(rects,Moves,sizeMoves);
ctx->Moves = reinterpret_cast<D3DKMT_MOVE_RECT*>(rects);
rects += sizeMoves;
}
// copy dirty rects and update pointer
if (DirtyRect)
{
memcpy(rects,DirtyRect,sizeRects);
ctx->DirtyRect = reinterpret_cast<RECT*>(rects);
}
if (m_SynchExecution)
{
HwExecutePresentDisplayOnly((PVOID)ctx);
return STATUS_SUCCESS;
}
else
{
// Create a worker thread to perform the present asynchronously
// Ctx will be deleted in worker thread (on exit)
return StartHwBltPresentWorkerThread(HwContextWorkerThread,(PVOID)ctx);
}
}
void
ReportPresentProgress(
_In_ HANDLE Adapter,
_In_ D3DDDI_VIDEO_PRESENT_SOURCE_ID VidPnSourceId,
_In_ BOOLEAN CompletedOrFailed)
/*++
Routine Description:
This routine runs a fake interrupt routine in order to tell the OS about the present progress.
Arguments:
Adapter - Handle to the adapter (Device Extension)
VidPnSourceId - Video present source id for the callback
CompletedOrFailed - Present progress status for the source
Return Value:
None
--*/
{
PAGED_CODE();
BASIC_DISPLAY_DRIVER* pDevExt =
reinterpret_cast<BASIC_DISPLAY_DRIVER*>(Adapter);
SYNC_NOTIFY_INTERRUPT SyncNotifyInterrupt = {};
SyncNotifyInterrupt.DxgkInterface = pDevExt->GetDxgkInterface();
SyncNotifyInterrupt.NotifyInterrupt.InterruptType = DXGK_INTERRUPT_DISPLAYONLY_PRESENT_PROGRESS;
SyncNotifyInterrupt.NotifyInterrupt.DisplayOnlyPresentProgress.VidPnSourceId = VidPnSourceId;
SyncNotifyInterrupt.NotifyInterrupt.DisplayOnlyPresentProgress.ProgressId =
(CompletedOrFailed)?DXGK_PRESENT_DISPLAYONLY_PROGRESS_ID_COMPLETE:
DXGK_PRESENT_DISPLAYONLY_PROGRESS_ID_FAILED;
// Execute the SynchronizeVidSchNotifyInterrupt function at the interrupt
// IRQL in order to fake a real present progress interrupt
BOOLEAN bRet = FALSE;
NT_VERIFY(NT_SUCCESS(pDevExt->GetDxgkInterface()->DxgkCbSynchronizeExecution(
pDevExt->GetDxgkInterface()->DeviceHandle,
(PKSYNCHRONIZE_ROUTINE)SynchronizeVidSchNotifyInterrupt,
(PVOID)&SyncNotifyInterrupt,0,&bRet)));
NT_ASSERT(bRet);
}
void
HwContextWorkerThread(
HANDLE Context)
{
PAGED_CODE();
DoPresentMemory* ctx = reinterpret_cast<DoPresentMemory*>(Context);
BDD_HWBLT* displaySource = ctx->DisplaySource;
// Signal event to indicate that the tread has started
KeSetEvent(&displaySource->m_hThreadStartupEvent, 0, FALSE);
// Suspend context thread, do this by waiting on the suspend event
KeWaitForSingleObject(&displaySource->m_hThreadSuspendEvent, Executive, KernelMode, FALSE, NULL);
HwExecutePresentDisplayOnly(Context);
}
void
HwExecutePresentDisplayOnly(
HANDLE Context)
/*++
Routine Description:
The routine executes present's commands and report progress to the OS
Arguments:
Context - Context with present's command
Return Value:
None
--*/
{
PAGED_CODE();
DoPresentMemory* ctx = reinterpret_cast<DoPresentMemory*>(Context);
// Set up destination blt info
BLT_INFO DstBltInfo;
DstBltInfo.pBits = ctx->DstAddr;
DstBltInfo.Pitch = ctx->DstStride;
DstBltInfo.BitsPerPel = ctx->DstBitPerPixel;
DstBltInfo.Offset.x = 0;
DstBltInfo.Offset.y = 0;
DstBltInfo.Rotation = ctx->Rotation;
DstBltInfo.Width = ctx->SrcWidth;
DstBltInfo.Height = ctx->SrcHeight;
// Set up source blt info
BLT_INFO SrcBltInfo;
SrcBltInfo.pBits = ctx->SrcAddr;
SrcBltInfo.Pitch = ctx->SrcPitch;
SrcBltInfo.BitsPerPel = 32;
SrcBltInfo.Offset.x = 0;
SrcBltInfo.Offset.y = 0;
SrcBltInfo.Rotation = D3DKMDT_VPPR_IDENTITY;
if (ctx->Rotation == D3DKMDT_VPPR_ROTATE90 ||
ctx->Rotation == D3DKMDT_VPPR_ROTATE270)
{
SrcBltInfo.Width = DstBltInfo.Height;
SrcBltInfo.Height = DstBltInfo.Width;
}
else
{
SrcBltInfo.Width = DstBltInfo.Width;
SrcBltInfo.Height = DstBltInfo.Height;
}
// Copy all the scroll rects from source image to video frame buffer.
for (UINT i = 0; i < ctx->NumMoves; i++)
{
BltBits(&DstBltInfo,
&SrcBltInfo,
1, // NumRects
&ctx->Moves[i].DestRect);
}
// Copy all the dirty rects from source image to video frame buffer.
for (UINT i = 0; i < ctx->NumDirtyRects; i++)
{
BltBits(&DstBltInfo,
&SrcBltInfo,
1, // NumRects
&ctx->DirtyRect[i]);
}
// Unmap unmap and unlock the pages.
if (ctx->Mdl)
{
MmUnlockPages(ctx->Mdl);
IoFreeMdl(ctx->Mdl);
}
if(ctx->SynchExecution)
{
// This code simulates Blt executed synchronously
// nothing should be done here, just exit
;
}
else
{
// TRUE == completed
// This code is emulates interrupt which HW should generate
ReportPresentProgress(ctx->hAdapter,ctx->SourceID,TRUE);
}
delete [] reinterpret_cast<BYTE*>(ctx);
}
|