summaryrefslogtreecommitdiff
path: root/usb/UcmCxUcsi/Ppm.cpp
blob: 33be0be9134e71e66b552be9abf15188af2b1a1e (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
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
/*++

Copyright (c) Microsoft Corporation. All rights reserved.

Module Name:

    Ppm.cpp

Abstract:

    Type-C Platform Policy Manager. Main interface to talk to the hardware.

Environment:

    Kernel-mode only.

--*/

#include "Pch.h"
#include "Ppm.tmh"

#pragma alloc_text(PAGE, Ppm_Initialize)
#pragma alloc_text(PAGE, Ppm_PrepareHardware)
#pragma alloc_text(PAGE, Ppm_ReleaseHardware)
#pragma alloc_text(PAGE, Ppm_SendCommandSynchronously)
#pragma alloc_text(PAGE, Ppm_PowerOn)
#pragma alloc_text(PAGE, Ppm_PowerOff)
#pragma alloc_text(PAGE, Ppm_WaitForResetComplete)
#pragma alloc_text(PAGE, Ppm_EvtIoInternalDeviceControl)
#pragma alloc_text(PAGE, Ppm_ExecuteCommand)
#pragma alloc_text(PAGE, Ppm_CommandCompletionWorkItem)
#pragma alloc_text(PAGE, Ppm_QueryConnectors)
#pragma alloc_text(PAGE, Ppm_CommandCompletionHandler)
#pragma alloc_text(PAGE, Ppm_GetCapability)
#pragma alloc_text(PAGE, Ppm_GetConnectorCapability)
#pragma alloc_text(PAGE, Ppm_AddConnector)
#pragma alloc_text(PAGE, Ppm_EvtGetConnectorStatusCompleted)
#pragma alloc_text(PAGE, Ppm_EnableNotifications)
#pragma alloc_text(PAGE, Ppm_ReportNegotiatedPowerLevelChanged)
#pragma alloc_text(PAGE, Ppm_ConnectorSetUor)
#pragma alloc_text(PAGE, Ppm_ConnectorSetPdr)
#pragma alloc_text(PAGE, Ppm_PerformRoleCorrection)


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_Initialize (
    _In_ PPPM_CONTEXT PpmCtx
)
{
    NTSTATUS status;
    WDFDEVICE device;
    WDF_OBJECT_ATTRIBUTES attributes;
    WDF_IO_QUEUE_CONFIG queueConfig;
    WDF_IO_TARGET_OPEN_PARAMS openParams;
    WDF_WORKITEM_CONFIG workItemConfig;
    UCM_MANAGER_CONFIG ucmConfig;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    //
    // UCSI can process only one command at a time, hence this queue needs to be
    // sequential.
    //

    WDF_IO_QUEUE_CONFIG_INIT(&queueConfig, WdfIoQueueDispatchSequential);

    queueConfig.EvtIoInternalDeviceControl = Ppm_EvtIoInternalDeviceControl;

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);

    //
    // It is more convenient to do command processing at PASSIVE_LEVEL.
    //

    attributes.ExecutionLevel = WdfExecutionLevelPassive;

    status = WdfIoQueueCreate(device, &queueConfig, &attributes, &PpmCtx->CommandQueue);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfIoQueueCreate failed - %!STATUS!", device, status);
        goto Exit;
    }

    //
    // Steal all IRP_MJ_INTERNAL_DEVICE_CONTROL because we expect the only code we receive to
    // be IOCTL_INTERNAL_UCSI_SEND_COMMAND. If we ever need to support more codes and some other
    // component needs to handle them, we need to configure an IRP preprocess routine, and redirect
    // the requests accordingly.
    //

    status = WdfDeviceConfigureRequestDispatching(device,
        PpmCtx->CommandQueue,
        WdfRequestTypeDeviceControlInternal);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfDeviceConfigureRequestDispatching failed - %!STATUS!", device, status);
        goto Exit;
    }

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = device;

    status = WdfIoTargetCreate(device, &attributes, &PpmCtx->SelfIoTarget);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfIoTargetCreate failed - %!STATUS!", device, status);
        goto Exit;
    }

    WDF_IO_TARGET_OPEN_PARAMS_INIT_EXISTING_DEVICE(&openParams, WdfDeviceWdmGetDeviceObject(device));

    status = WdfIoTargetOpen(PpmCtx->SelfIoTarget, &openParams);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfIoTargetOpen failed - %!STATUS!", device, status);
        goto Exit;
    }

    WDF_WORKITEM_CONFIG_INIT(&workItemConfig, Ppm_CommandCompletionWorkItem);

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = device;

    status = WdfWorkItemCreate(&workItemConfig, &attributes, &PpmCtx->CommandCompletionWorkItem);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfWorkItemCreate failed - %!STATUS!", device, status);
        goto Exit;
    }

    UCM_MANAGER_CONFIG_INIT(&ucmConfig);
    status = UcmInitializeDevice(device, &ucmConfig);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] UcmInitializeDevice failed - %!STATUS!", device, status);
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM initialized", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_PrepareHardware (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ PHYSICAL_ADDRESS MemoryAddress,
    _In_ ULONG MemoryLength
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    PVOID mappedMemory;
    PACPI_CONTEXT acpiCtx;
    UCSI_VERSION version;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    mappedMemory = MmMapIoSpaceEx(MemoryAddress,
                                  MemoryLength,
                                  PAGE_NOCACHE | PAGE_READWRITE);

#pragma prefast(suppress: __WARNING_REDUNDANT_POINTER_TEST, "API indicates failure by returning NULL")
    if (mappedMemory == NULL)
    {
        status = STATUS_INSUFFICIENT_RESOURCES;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] MmMapIoSpaceEx failed", device);
        goto Exit;
    }

    PpmCtx->UcsiDataBlock = (PUCSI_DATA_BLOCK) mappedMemory;
    PpmCtx->MappedMemoryLength = MemoryLength;

    version = PpmCtx->UcsiDataBlock->UcsiVersion;
    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] UCSI version Major: %hx Minor: %hx SubMinor: %hx", device, version.MajorVersion, version.MinorVersion, version.SubMinorVersion);

    status = Ppm_QueryConnectors(PpmCtx);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;
    status = Acpi_UcsiDsmIsUsbDeviceControllerEnabled(acpiCtx,
                                                      &PpmCtx->IsUsbDeviceControllerEnabled);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    if (PpmCtx->IsUsbDeviceControllerEnabled)
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] USB Device Controller is enabled", device);
    }
    else
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] USB Device Controller is disabled", device);
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM prepare hardware completed", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
VOID
Ppm_ReleaseHardware (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFDEVICE device;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    if (PpmCtx->UcsiDataBlock == nullptr)
    {
        goto Exit;
    }

    device = Context_GetWdfDevice(PpmCtx);

    MmUnmapIoSpace(PpmCtx->UcsiDataBlock, PpmCtx->MappedMemoryLength);
    PpmCtx->UcsiDataBlock = nullptr;
    PpmCtx->MappedMemoryLength = 0;

    if (PpmCtx->Connectors != WDF_NO_HANDLE)
    {
        WdfObjectDelete(PpmCtx->Connectors);
        PpmCtx->Connectors = WDF_NO_HANDLE;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM release hardware completed", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


VOID
Ppm_CommandRequestCompletionRoutine (
    _In_ WDFREQUEST Request,
    _In_ WDFIOTARGET Target,
    _In_ PWDF_REQUEST_COMPLETION_PARAMS Params,
    _In_ WDFCONTEXT Context
    )
{
    PPPM_CONTEXT ppmCtx;
    WDFDEVICE device;
    NTSTATUS status;
    PPPM_REQUEST_CONTEXT reqCtx;
    UCSI_CONTROL command;

    UNREFERENCED_PARAMETER(Target);

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    ppmCtx = (PPPM_CONTEXT) Context;
    device = Context_GetWdfDevice(ppmCtx);
    reqCtx = PpmRequest_GetContext(Request);
    command = reqCtx->Command;

    status = Params->IoStatus.Status;

    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] PPM asynchronous command 0x%016I64x (%!UCSI_COMMAND!) failed - %!STATUS!", device, command.AsUInt64, command.Command, status);
    }
    else
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM asynchronous command 0x%016I64x (%!UCSI_COMMAND!) completed", device, command.AsUInt64, command.Command);
    }

    WdfObjectDelete(Request);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(DISPATCH_LEVEL)
NTSTATUS
Ppm_SendCommand (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ UCSI_CONTROL Command,
    _In_opt_ PFN_PPM_COMMAND_COMPLETION_ROUTINE CompletionRoutine,
    _In_opt_ PVOID Context
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    WDFREQUEST request;
    WDF_OBJECT_ATTRIBUTES attributes;
    WDFMEMORY inputMemory;
    PPPM_SEND_COMMAND_PARAMS sendCommandParams;
    WDFMEMORY outputMemory;
    PPPM_REQUEST_CONTEXT reqCtx;
    BOOLEAN sent;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    request = WDF_NO_HANDLE;

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Sending command asynchronously - 0x%016I64x (%!UCSI_COMMAND!)", device, Command.AsUInt64, Command.Command);

    WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&attributes, PPM_REQUEST_CONTEXT);
    attributes.ParentObject = device;

    status = WdfRequestCreate(&attributes, PpmCtx->SelfIoTarget, &request);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfRequestCreate failed - %!STATUS!", device, status);
        goto Exit;
    }

    reqCtx = PpmRequest_GetContext(request);
    reqCtx->Command = Command;

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = request;

    status = WdfMemoryCreate(&attributes,
                             NonPagedPoolNx,
                             0,
                             sizeof(*sendCommandParams),
                             &inputMemory,
                             (PVOID*) &sendCommandParams);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfMemoryCreate for input memory failed - %!STATUS!", device, status);
        goto Exit;
    }

    RtlZeroMemory(sendCommandParams, sizeof(*sendCommandParams));
    sendCommandParams->Command = Command;
    sendCommandParams->CompletionRoutine = CompletionRoutine;
    sendCommandParams->Context = Context;

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = request;

    status = WdfMemoryCreate(&attributes, NonPagedPoolNx, 0, sizeof(UCSI_MESSAGE_IN), &outputMemory, nullptr);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfMemoryCreate for output memory failed - %!STATUS!", device, status);
        goto Exit;
    }

    status = WdfIoTargetFormatRequestForInternalIoctl(PpmCtx->SelfIoTarget,
                                                      request,
                                                      IOCTL_INTERNAL_UCSI_SEND_COMMAND,
                                                      inputMemory,
                                                      nullptr,
                                                      outputMemory,
                                                      nullptr);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfIoTargetFormatRequestForInternalIoctl failed - %!STATUS!", device, status);
        goto Exit;
    }

    WdfRequestSetCompletionRoutine(request, Ppm_CommandRequestCompletionRoutine, PpmCtx);

    sent = WdfRequestSend(request, PpmCtx->SelfIoTarget, nullptr);
    if (sent == FALSE)
    {
        status = WdfRequestGetStatus(request);
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] PPM command 0x%016I64x dispatch failed - %!STATUS!", device, Command.AsUInt64, status);
        goto Exit;
    }

Exit:

    if (!NT_SUCCESS(status) && (request != WDF_NO_HANDLE))
    {
        WdfObjectDelete(request);
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_SendCommandSynchronously (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ UCSI_CONTROL Command,
    _Out_opt_ PUCSI_MESSAGE_IN MessageIn,
    _Out_opt_ PULONG_PTR BytesReturned
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    PPM_SEND_COMMAND_PARAMS sendCommandParams;
    WDF_MEMORY_DESCRIPTOR inputMem;
    WDF_MEMORY_DESCRIPTOR outputMem;
    PWDF_MEMORY_DESCRIPTOR outputMemPtr;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Sending command synchronously - 0x%016I64x (%!UCSI_COMMAND!)", device, Command.AsUInt64, Command.Command);

    RtlZeroMemory(&sendCommandParams, sizeof(sendCommandParams));
    sendCommandParams.Command = Command;

    WDF_MEMORY_DESCRIPTOR_INIT_BUFFER(&inputMem, &sendCommandParams, sizeof(sendCommandParams));

    if (MessageIn == nullptr)
    {
        outputMemPtr = nullptr;
    }
    else
    {
#pragma prefast(suppress:__WARNING_USING_UNINIT_VAR, "This is the out buffer")
        WDF_MEMORY_DESCRIPTOR_INIT_BUFFER(&outputMem, MessageIn, sizeof(*MessageIn));
        outputMemPtr = &outputMem;
    }

    status = WdfIoTargetSendInternalIoctlSynchronously(PpmCtx->SelfIoTarget,
                                                       NULL,
                                                       IOCTL_INTERNAL_UCSI_SEND_COMMAND,
                                                       &inputMem,
                                                       outputMemPtr,
                                                       nullptr,
                                                       BytesReturned);

    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] PPM synchronous command 0x%016I64x (%!UCSI_COMMAND!) failed - %!STATUS!", device, Command.AsUInt64, Command.Command, status);
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM synchronous command 0x%016I64x (%!UCSI_COMMAND!) completed", device, Command.AsUInt64, Command.Command);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(HIGH_LEVEL)
NTSTATUS
Ppm_GetCci (
    _In_ PPPM_CONTEXT PpmCtx,
    _Out_ PUCSI_CCI UcsiCci
    )
{
    PUCSI_DATA_BLOCK ucsiDataBlock;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    ucsiDataBlock = PpmCtx->UcsiDataBlock;

    *UcsiCci = ucsiDataBlock->CCI;

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return STATUS_SUCCESS;
}


_IRQL_requires_max_(HIGH_LEVEL)
NTSTATUS
Ppm_GetMessage (
    _In_ PPPM_CONTEXT PpmCtx,
    _Out_ UINT8 (&Message)[UCSI_MAX_DATA_LENGTH]
    )
{
    PUCSI_DATA_BLOCK ucsiDataBlock;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    ucsiDataBlock = PpmCtx->UcsiDataBlock;

    RtlCopyMemory(Message, ucsiDataBlock->MessageIn.AsBuffer, sizeof(Message));

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return STATUS_SUCCESS;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_PowerOn (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    PACPI_CONTEXT acpiCtx;
    WDFDEVICE device;
    UCSI_CONTROL command;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;
    status = Acpi_RegisterNotificationCallback(acpiCtx, Ppm_NotificationHandler, PpmCtx);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    //
    // Execute a PPM_RESET, bypassing the command queue. We can do that because completion of
    // PPM_RESET is not indicated using a notification (we need to poll for completion), so
    // we don't need to use all the command completion handling logic.
    //
    // Ppm_ExecuteCommand will poll for completion of the PPM_RESET.
    //

    command.AsUInt64 = 0;
    command.Command = UcsiCommandPpmReset;
    status = Ppm_ExecuteCommand(PpmCtx, command);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    //
    // Queue a request to enable command completion notifications.
    //
    // N.B. We only enable command completion notifications here. All other notifications should
    //      be enabled separately. This is because we need to query some information and create
    //      the connector objects before we can enable connector change notifications.
    //

    command.AsUInt64 = 0;
    command.Command = UcsiCommandSetNotificationEnable;
    command.SetNotificationEnable.CommandCompleteNotificationEnable = 1;
    status = Ppm_SendCommand(PpmCtx, command, nullptr, nullptr);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM power-on complete", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_EnableNotifications (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    UCSI_CONTROL command;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    command.AsUInt64 = 0;
    command.Command = UcsiCommandSetNotificationEnable;
    command.SetNotificationEnable.NotificationEnable = 0xffff;
    status = Ppm_SendCommand(PpmCtx, command, nullptr, nullptr);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM notifications enabled", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_PowerOff (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    PACPI_CONTEXT acpiCtx;
    WDFDEVICE device;
    UCSI_CONTROL command;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    command.AsUInt64 = 0;
    command.Command = UcsiCommandSetNotificationEnable;
    command.SetNotificationEnable.NotificationEnable = 0;
    status = Ppm_ExecuteCommand(PpmCtx, command);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;
    Acpi_UnregisterNotificationCallback(acpiCtx);

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM power-off complete", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_NotificationHandler (
    _In_ PVOID Context,
    _In_ ULONG NotifyValue
    )
{
    PPPM_CONTEXT ppmCtx;
    WDFDEVICE device;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    ppmCtx = (PPPM_CONTEXT) Context;
    device = Context_GetWdfDevice(ppmCtx);

    if (NotifyValue != UCSI_EXPECTED_NOTIFY_CODE)
    {
        TRACE_WARN(TRACE_FLAG_PPM, "[Device: 0x%p] Unexpected notify code %lu", device, NotifyValue);
        goto Exit;
    }

    Ppm_ProcessNotifications(ppmCtx);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_WaitForResetComplete (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFDEVICE device;
    PACPI_CONTEXT acpiCtx;
    NTSTATUS status;
    ULONG retries;
    LARGE_INTEGER delay;
    const ULONG MAX_RETRIES = 20;
    const ULONG WAIT_IN_MS = 20;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;

    delay.QuadPart = WDF_REL_TIMEOUT_IN_MS(WAIT_IN_MS);

    for (retries = 0; retries <= MAX_RETRIES; ++retries)
    {
        KeDelayExecutionThread(KernelMode, FALSE, &delay);

        status = Acpi_UcsiDsmReceiveData(acpiCtx);
        if (!NT_SUCCESS(status))
        {
            goto Exit;
        }

        if (PpmCtx->UcsiDataBlock->CCI.ResetCompletedIndicator)
        {
            TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Reset completed after %u retries", device, retries);
            break;
        }
    }

    if (retries > MAX_RETRIES)
    {
        status = STATUS_DEVICE_BUSY;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Reset timed-out", device);
        goto Exit;
    }

    status = STATUS_SUCCESS;

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_ProcessNotifications (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFDEVICE device;
    UCSI_CCI cci;
    LONG oldValue;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    cci = PpmCtx->UcsiDataBlock->CCI;

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM notification received. CCI: 0x%08x", device, cci.AsUInt32);

    if (cci.AcknowledgeCommandIndicator)
    {
        //
        // If we did send an acknowledgment for command completion earlier, this bit
        // indicates that we can now complete the request from the command queue. Otherwise
        // this is simply a stale bit from the last command completion.
        //

        oldValue = InterlockedExchange(&PpmCtx->ActiveCommandCtx.CompletionAcked, 0);

        if (oldValue)
        {
            TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Acknowledge command indicator", device);
            Ppm_CompleteActiveRequest(PpmCtx);
        }
    }

    //
    // Now check mutually exclusive cases.
    //

    if (cci.ConnectorChangeIndicator &&
        (InterlockedExchange(&PpmCtx->ConnectorChangeCtx.InProgress, 1) == 0))
    {
        //
        // A new connector change. Process it.
        //

        Ppm_HandleConnectorChangeNotification(PpmCtx, cci);
    }
    else if (cci.CommandCompletedIndicator)
    {
        Ppm_HandleCommandCompletionNotification(PpmCtx, cci);
    }
    else if (cci.BusyIndicator)
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Busy indicator for command %!UCSI_COMMAND!", device, PpmCtx->ActiveCommandCtx.Command.Command);
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_HandleConnectorChangeNotification (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ UCSI_CCI Cci
    )
{
    WDFDEVICE device;
    UCSI_CONTROL command;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Connector change indicated for connector %u. Getting connector status", device, Cci.ConnectorChangeIndicator);

    command.AsUInt64 = 0;
    command.Command = UcsiCommandGetConnectorStatus;
    command.GetConnectorStatus.ConnectorNumber = Cci.ConnectorChangeIndicator;

    //
    // It may be that we had already sent a command down to the PPM (or are about to), and we
    // got this notification just before we did, or the PPM decided to send us a notification
    // first. Queue this command into the command queue so that everything is synchronized
    // nicely.

    (void) Ppm_SendCommand(PpmCtx, command, Ppm_EvtGetConnectorStatusCompleted, PpmCtx);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_HandleCommandCompletionNotification (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ UCSI_CCI Cci
    )
{
    UNREFERENCED_PARAMETER(Cci);

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    //
    // Send a command to acknowledge the completion. Obviously we can't send the command to
    // the command queue because there is already an outstanding request (the one we got the
    // completion for), and that request will be completed only when we get the Acknowledge
    // Command Indicator. However, we can safely execute the command right now, because we
    // know the PPM is ready to accept an ACK_CC_CI command.
    //

    if (KeGetCurrentIrql() == PASSIVE_LEVEL)
    {
        (void) Ppm_CommandCompletionHandler(PpmCtx);
    }
    else
    {
        WdfWorkItemEnqueue(PpmCtx->CommandCompletionWorkItem);
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


VOID
Ppm_EvtIoInternalDeviceControl (
    _In_ WDFQUEUE Queue,
    _In_ WDFREQUEST Request,
    _In_ size_t OutputBufferLength,
    _In_ size_t InputBufferLength,
    _In_ ULONG IoControlCode
    )
{
    WDFDEVICE device;
    PPPM_CONTEXT ppmCtx;
    PPPM_ACTIVE_COMMAND_CONTEXT cmdCtx;
    NTSTATUS status;
    size_t expectedInputSize;
    PPPM_SEND_COMMAND_PARAMS sendCommandParams;
    BOOLEAN tookOwnership;

    UNREFERENCED_PARAMETER(OutputBufferLength);

    _IRQL_limited_to_(PASSIVE_LEVEL);
    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = WdfIoQueueGetDevice(Queue);
    ppmCtx = &Fdo_GetContext(device)->PpmCtx;
    cmdCtx = &ppmCtx->ActiveCommandCtx;
    tookOwnership = FALSE;

    if (IoControlCode != IOCTL_INTERNAL_UCSI_SEND_COMMAND)
    {
        status = STATUS_NOT_SUPPORTED;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] PPM command processor received unknown IOCTL 0x%lu", device, IoControlCode);
        goto Exit;
    }

    expectedInputSize = sizeof(*sendCommandParams);

    if (InputBufferLength != expectedInputSize)
    {
        status = STATUS_INVALID_BUFFER_SIZE;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid buffer size. Expected %Iu, got %Iu", device, expectedInputSize, InputBufferLength);
        goto Exit;
    }

    status = WdfRequestRetrieveInputBuffer(Request,
                                           expectedInputSize,
                                           (PVOID*) &sendCommandParams,
                                           nullptr);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfRequestRetrieveInputBuffer failed - %!STATUS!", device, status);
        goto Exit;
    }

    NT_ASSERT(cmdCtx->Request == WDF_NO_HANDLE);
    cmdCtx->Request = Request;

    NT_ASSERT(cmdCtx->Command.AsUInt64 == 0);
    cmdCtx->Command = sendCommandParams->Command;

    NT_ASSERT(cmdCtx->CompletionRoutine == nullptr);
    cmdCtx->CompletionRoutine = sendCommandParams->CompletionRoutine;

    NT_ASSERT(cmdCtx->CompletionContext == nullptr);
    cmdCtx->CompletionContext = sendCommandParams->Context;

    NT_ASSERT(cmdCtx->CompletionAcked == 0);
    cmdCtx->CompletionAcked = 0;

    cmdCtx->Status = STATUS_PENDING;
    tookOwnership = TRUE;

    status = Ppm_ExecuteCommand(ppmCtx, cmdCtx->Command);
    if (!NT_SUCCESS(status))
    {
        cmdCtx->Status = status;
        Ppm_CompleteActiveRequest(ppmCtx);
        goto Exit;
    }

    //
    // If command completion notifications are enabled, we let the notification handler
    // complete the request. Otherwise, complete it here. Note that in the latter case, we
    // cannot return the MESSAGE_IN contents because we have no idea when it will be valid (or if
    // at all it will be).
    //

    if (ppmCtx->CommandCompleteNotificationEnabled == FALSE)
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Command completion notification not enabled", device);
        cmdCtx->Status = STATUS_SUCCESS;
        Ppm_CompleteActiveRequest(ppmCtx);
    }

Exit:

    if (!NT_SUCCESS(status) && !tookOwnership)
    {
        RtlZeroMemory(cmdCtx, sizeof(*cmdCtx));
        WdfRequestComplete(Request, status);
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_ExecuteCommand (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ UCSI_CONTROL Command
    )
{
    WDFDEVICE device;
    NTSTATUS status;
    PUCSI_DATA_BLOCK ucsiDataBlock;
    PACPI_CONTEXT acpiCtx;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Executing command - 0x%016I64x (%!UCSI_COMMAND!)", device, Command.AsUInt64, Command.Command);

    ucsiDataBlock = PpmCtx->UcsiDataBlock;
    ucsiDataBlock->Control = Command;

    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;

    status = Acpi_UcsiDsmSendData(acpiCtx);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    //
    // See if this command would have updated the status of the command completion notification.
    // This will be used to decide when to complete this request and any future requests in the
    // command queue. Note that if this command enabled the notification, the notification handler
    // may have already run and completed the request.
    //

    if (Command.Command == UcsiCommandSetNotificationEnable)
    {
        PpmCtx->CommandCompleteNotificationEnabled =
            !!Command.SetNotificationEnable.CommandCompleteNotificationEnable;
    }
    else if (Command.Command == UcsiCommandPpmReset)
    {
        //
        // All notifications will be disabled on PPM_RESET.
        //

        PpmCtx->CommandCompleteNotificationEnabled = FALSE;

        status = Ppm_WaitForResetComplete(PpmCtx);
        if (!NT_SUCCESS(status))
        {
            TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Wait for reset completion failed - %!STATUS!", device, status);
            goto Exit;
        }
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] PPM command execution completed", device);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


VOID
Ppm_CommandCompletionWorkItem (
    _In_ WDFWORKITEM WorkItem
    )
{
    WDFDEVICE device;
    PPPM_CONTEXT ppmCtx;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = (WDFDEVICE) WdfWorkItemGetParentObject(WorkItem);
    ppmCtx = &Fdo_GetContext(device)->PpmCtx;

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Handling command completion in a workitem", device);

    (void) Ppm_CommandCompletionHandler(ppmCtx);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_CommandCompletionHandler (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    PPPM_ACTIVE_COMMAND_CONTEXT cmdCtx;
    UCSI_CONTROL ackCommand;
    PPM_COMMAND_ACK_PARAMS ackParams;
    WDFDEVICE device;
    UCSI_CCI cci;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    cmdCtx = &PpmCtx->ActiveCommandCtx;
    cci = PpmCtx->UcsiDataBlock->CCI;

    if (cci.ErrorIndicator)
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Error indicator. Active command: 0x%016I64x (%!UCSI_COMMAND!)", device, cmdCtx->Command.AsUInt64, cmdCtx->Command.Command);
        cmdCtx->Status = STATUS_UNSUCCESSFUL;
    }
    else if (cci.NotSupportedIndicator)
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Not supported indicator. Active command: 0x%016I64x (%!UCSI_COMMAND!)", device, cmdCtx->Command.AsUInt64, cmdCtx->Command.Command);
        cmdCtx->Status = STATUS_NOT_SUPPORTED;
    }
    else
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Command completed indicator. Active command: 0x%016I64x (%!UCSI_COMMAND!)", device, cmdCtx->Command.AsUInt64, cmdCtx->Command.Command);
        Ppm_SaveMessageInContentsInRequest(PpmCtx);
        cmdCtx->Status = STATUS_SUCCESS;
    }

    ackCommand.AsUInt64 = 0;
    ackCommand.Command = UcsiCommandAckCcCi;
    ackCommand.AckCcCi.CommandCompletedAcknowledge = 1;

    if (cmdCtx->CompletionRoutine != nullptr)
    {
        RtlZeroMemory(&ackParams, sizeof(ackParams));
        cmdCtx->CompletionRoutine(cmdCtx->Command,
                                  cmdCtx->CompletionContext,
                                  &ackParams);

        if (ackParams.AckConnectorChange)
        {
            TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Acknowledging connector change", device);
            ackCommand.AckCcCi.ConnectorChangeAcknowledge = 1;
            PpmCtx->ConnectorChangeCtx.InProgress = 0;
        }
    }

    cmdCtx->CompletionAcked = 1;
    status = Ppm_ExecuteCommand(PpmCtx, ackCommand);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_CompleteActiveRequest (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFREQUEST request;
    WDFDEVICE device;
    UCSI_CONTROL command;
    NTSTATUS status;
    PPPM_ACTIVE_COMMAND_CONTEXT cmdCtx;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    cmdCtx = &PpmCtx->ActiveCommandCtx;
    device = Context_GetWdfDevice(PpmCtx);
    request = cmdCtx->Request;
    command = cmdCtx->Command;
    status = cmdCtx->Status;

    RtlZeroMemory(cmdCtx, sizeof(*cmdCtx));

    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Completing command 0x%016I64x (%!UCSI_COMMAND!) with %!STATUS!", device, command.AsUInt64, command.Command, status);
    }
    else
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Completing command 0x%016I64x (%!UCSI_COMMAND!) with %!STATUS!", device, command.AsUInt64, command.Command, status);
    }

    WdfRequestComplete(request, status);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_SaveMessageInContentsInRequest (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFREQUEST request;
    PUCSI_MESSAGE_IN messageIn;
    NTSTATUS status;
    ULONG_PTR information;
    size_t outputSize;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    request = PpmCtx->ActiveCommandCtx.Request;

    Ppm_PrettyDebugPrintMessageIn(PpmCtx);

    outputSize = PpmCtx->UcsiDataBlock->CCI.DataLength;
    status = WdfRequestRetrieveOutputBuffer(request, outputSize, (PVOID*) &messageIn, nullptr);
    if (NT_SUCCESS(status))
    {
        RtlCopyMemory(messageIn, PpmCtx->UcsiDataBlock->MessageIn.AsBuffer, outputSize);
        information = outputSize;
    }
    else
    {
        information = 0;
    }

    WdfRequestSetInformation(request, information);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(DISPATCH_LEVEL)
VOID
Ppm_PrettyDebugPrintMessageIn (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    WDFDEVICE device;
    ULONG i;
    PUINT8 messageBuf;
    UCSI_CONTROL activeCommand;
    PUCSI_GET_CONNECTOR_STATUS_IN connStatus;
    size_t messageInSize;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    activeCommand = PpmCtx->ActiveCommandCtx.Command;
    messageInSize = PpmCtx->UcsiDataBlock->CCI.DataLength;

    static_assert(sizeof(UCSI_MESSAGE_IN) == 16, "MESSAGE_IN size assumption out-of-sync");

    if (activeCommand.Command == UcsiCommandGetConnectorStatus)
    {
        connStatus = &PpmCtx->UcsiDataBlock->MessageIn.ConnectorStatus;

        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Connector Status", device);

        TRACE_INFO(
            TRACE_FLAG_PPM,
            "[Device: 0x%p] "
            "%s %s %s %s %s %s %s %s %s %s %s",
            device,
            connStatus->ConnectorStatusChange.ExternalSupplyChange ? "ExternalSupplyChange" : " ",
            connStatus->ConnectorStatusChange.PowerOperationModeChange ? "PowerOperationModeChange" : " ",
            connStatus->ConnectorStatusChange.SupportedProviderCapabilitiesChange ? "SupportedProviderCapabilitiesChange" : " ",
            connStatus->ConnectorStatusChange.NegotiatedPowerLevelChange ? "NegotiatedPowerLevelChange" : " ",
            connStatus->ConnectorStatusChange.PdResetComplete ? "PdResetComplete" : " ",
            connStatus->ConnectorStatusChange.SupportedCamChange ? "SupportedCamChange" : " ",
            connStatus->ConnectorStatusChange.BatteryChargingStatusChange ? "BatteryChargingStatusChange" : " ",
            connStatus->ConnectorStatusChange.ConnectorPartnerChange ? "ConnectorPartnerChange" : " ",
            connStatus->ConnectorStatusChange.PowerDirectionChange ? "PowerDirectionChange" : " ",
            connStatus->ConnectorStatusChange.ConnectChange ? "ConnectChange" : " ",
            connStatus->ConnectorStatusChange.Error ? "Error" : " "
            );

        TRACE_INFO(
            TRACE_FLAG_PPM,
            "[Device: 0x%p] "
            "Connect: %d PartnerFlags: %d RDO: 0x%x",
            device,
            connStatus->ConnectStatus,
            connStatus->ConnectorPartnerFlags,
            connStatus->RequestDataObject
            );

        TRACE_INFO(
            TRACE_FLAG_PPM,
            "[Device: 0x%p] "
            "%!UCSI_POWER_OPERATION_MODE! "
            "%!UCSI_POWER_DIRECTION! "
            "%!UCSI_CONNECTOR_PARTNER_TYPE! "
            "%!UCSI_BATTERY_CHARGING_STATUS!",
            device,
            connStatus->PowerOperationMode,
            connStatus->PowerDirection,
            connStatus->ConnectorPartnerType,
            connStatus->BatteryChargingStatus
            );
    }
    else
    {
        for (i = 0; (i < 4) && messageInSize; ++i)
        {
            messageBuf = &PpmCtx->UcsiDataBlock->MessageIn.AsBuffer[i * 4];
            TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] MESSAGE_IN[%d]: %02x %02x %02x %02x", device, i, messageBuf[0], messageBuf[1], messageBuf[2], messageBuf[3]);

            messageInSize -= min(messageInSize, 4);
        }
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(PASSIVE_LEVEL)
VOID
Ppm_ReportNegotiatedPowerLevelChanged (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ PPPM_CONNECTOR Connector,
    _Inout_ PUCSI_GET_CONNECTOR_STATUS_IN ConnStatus,
    _Inout_ PPPM_COMMAND_ACK_PARAMS CommandAckParams
    )
{
    WDFDEVICE device;
    NTSTATUS status;
    UCSI_CONTROL cmd;

    UNREFERENCED_PARAMETER(CommandAckParams);

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    NT_ASSERT(ConnStatus->PowerOperationMode == UcsiPowerOperationModePd);

    device = Context_GetWdfDevice(PpmCtx);

    //
    // Save off stuff we will need for later.
    //

    PpmCtx->ConnectorChangeCtx.Rdo.Ul = ConnStatus->RequestDataObject;

    if (!Convert((UCSI_BATTERY_CHARGING_STATUS) ConnStatus->BatteryChargingStatus,
                 PpmCtx->ConnectorChangeCtx.ChargingState))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid battery charging state %u", device, ConnStatus->BatteryChargingStatus);
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Retrieving PD contract details", device);

    cmd.AsUInt64 = 0;
    cmd.Command = UcsiCommandGetPdos;
    cmd.GetPdos.ConnectorNumber = Connector->Index;
    cmd.GetPdos.NumberOfPdos = 3;

    if (ConnStatus->PowerDirection == UcsiPowerDirectionConsumer)
    {
        cmd.GetPdos.PartnerPdo = 1;
    }
    else
    {
        cmd.GetPdos.PartnerPdo = 0;
    }

    cmd.GetPdos.SourceOrSinkPdos = UcsiGetPdosTypeSource;
    cmd.GetPdos.PdoOffset = 0;

    status = Ppm_SendCommand(PpmCtx, cmd, Ucm_EvtGetPdosCompleted, PpmCtx);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    //
    // Don't acknowledge the change just yet. Wait till we get the PD contract information
    // as well.
    //

    CommandAckParams->AckConnectorChange = FALSE;

    //
    // We will report the charging state when we report the PD contract details.
    //

    ConnStatus->ConnectorStatusChange.BatteryChargingStatusChange = 0;
    ConnStatus->ConnectorStatusChange.NegotiatedPowerLevelChange = 0;

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


VOID
Ppm_EvtGetConnectorStatusCompleted (
    _In_ UCSI_CONTROL Command,
    _In_ PVOID Context,
    _Inout_ PPPM_COMMAND_ACK_PARAMS CommandAckParams
    )
{
    PPPM_CONTEXT ppmCtx;
    UCSI_GET_CONNECTOR_STATUS_IN connStatus;
    PPPM_CONNECTOR connector;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    ppmCtx = (PPPM_CONTEXT) Context;

    NT_ASSERT(Command.Command == UcsiCommandGetConnectorStatus);

    //
    // Default disposition is to acknowledge the connector change. If we need to send more
    // commands to get more details on the change, then don't acknowledge; individual handler
    // routines will update the CommandAckParams accordingly.
    //

    CommandAckParams->AckConnectorChange = TRUE;

    if (!UCSI_CMD_SUCCEEDED(ppmCtx->UcsiDataBlock->CCI))
    {
        //
        // The command failed. Acknowledge the connector change and move on.
        //

        goto Exit;
    }

    //
    // Send all the appropriate notifications to UCM. In the process of handling each type of
    // change, other related bits in the connector status change may be cleared by the handler
    // because the associated information has already been reported.
    //
    // N.B. Even if we encounter errors, make sure to acknowledge the connector change. Else
    //      we will not get any more notifications.
    //

    connStatus = ppmCtx->UcsiDataBlock->MessageIn.ConnectorStatus;
    connector = Ppm_GetConnector(ppmCtx, Command.GetConnectorStatus.ConnectorNumber);

    if (connStatus.ConnectorStatusChange.ConnectChange)
    {
        if (connStatus.ConnectStatus)
        {
            Ucm_ReportTypeCAttach(ppmCtx, connector, &connStatus, CommandAckParams);

            //
            // If PD has already been negotiated, report that information as well.
            //

            if (connStatus.PowerOperationMode == UcsiPowerOperationModePd)
            {
                Ppm_ReportNegotiatedPowerLevelChanged(ppmCtx,
                                                      connector,
                                                      &connStatus,
                                                      CommandAckParams);
            }
        }
        else
        {
            Ucm_ReportTypeCDetach(ppmCtx, connector, &connStatus, CommandAckParams);

            //
            // If ConnectStatus is not set, nothing else is valid.
            //
            goto Exit;
        }
    }

    if (connStatus.ConnectorStatusChange.PowerOperationModeChange)
    {
        Ucm_ReportPowerOperationMode(ppmCtx, connector, &connStatus, CommandAckParams);
    }

    if(connStatus.ConnectorStatusChange.PowerDirectionChange)
    {
        Ucm_ReportPowerDirectionChanged(ppmCtx, connector, &connStatus, CommandAckParams);
    }

    if (connStatus.ConnectorStatusChange.ConnectorPartnerChange)
    {
        Ucm_ReportDataDirectionChanged(ppmCtx, connector, &connStatus, CommandAckParams);
    }

    if (connStatus.ConnectorStatusChange.BatteryChargingStatusChange)
    {
        Ucm_ReportChargingStatusChanged(ppmCtx, connector, &connStatus, CommandAckParams);
    }

    if (connStatus.ConnectorStatusChange.NegotiatedPowerLevelChange)
    {
        Ppm_ReportNegotiatedPowerLevelChanged(ppmCtx, connector, &connStatus, CommandAckParams);
    }

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_QueryConnectors (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    WDFMEMORY enumChildrenMem;
    PPPM_CONNECTOR connector;
    PACPI_ENUM_CHILDREN_OUTPUT_BUFFER enumChildrenBuf;
    PACPI_ENUM_CHILD enumChild;
    ACPI_PLD_BUFFER pldBuffer;
    PACPI_CONTEXT acpiCtx;
    ULONG64 connectorId;
    WDF_OBJECT_ATTRIBUTES attributes;
    ULONG i;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    enumChildrenMem = WDF_NO_HANDLE;
    device = Context_GetWdfDevice(PpmCtx);
    acpiCtx = &Context_GetFdoContext(PpmCtx)->AcpiCtx;

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = device;

    status = WdfCollectionCreate(&attributes, &PpmCtx->Connectors);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfCollectionCreate failed - %!STATUS!", device, status);
        goto Exit;
    }

    status = Acpi_EnumChildren(acpiCtx, &enumChildrenMem);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

    enumChildrenBuf =
        (PACPI_ENUM_CHILDREN_OUTPUT_BUFFER) WdfMemoryGetBuffer(enumChildrenMem, nullptr);

    //
    // If there is only one child, which is this device itself, then there is no connector
    // information available. Assume there is only one connector.
    //

    if (enumChildrenBuf->NumberOfChildren == 1)
    {
        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Connector information not found. Assuming single-connector system", device);

        connector = Ppm_AddConnector(PpmCtx);
        if (connector == nullptr)
        {
            status = STATUS_INSUFFICIENT_RESOURCES;
            goto Exit;
        }

        connector->Id = 0;
        connector->Index = 1;

        goto Exit;
    }

    enumChild = enumChildrenBuf->Children;

    for (i = 1; i < enumChildrenBuf->NumberOfChildren; ++i)
    {
        enumChild = ACPI_ENUM_CHILD_NEXT(enumChild);

        //
        // Connectors are child devices that have a _PLD method. Skip any children
        // that don't have any children, and attempt to evaluate _PLD on the ones that do.
        //

        if ((enumChild->Flags & ACPI_OBJECT_HAS_CHILDREN) == 0)
        {
            continue;
        }

        status = Acpi_EvaluatePld(acpiCtx, enumChild->Name, &pldBuffer);
        if (!NT_SUCCESS(status))
        {
            continue;
        }

        connectorId = UCM_CONNECTOR_ID_FROM_ACPI_PLD(&pldBuffer);

        TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Found connector %s with ID 0x%I64x", device, enumChild->Name, connectorId);

        connector = Ppm_AddConnector(PpmCtx);
        if (connector == nullptr)
        {
            status = STATUS_INSUFFICIENT_RESOURCES;
            goto Exit;
        }

        connector->Id = connectorId;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Found %lu connectors", device, WdfCollectionGetCount(PpmCtx->Connectors));

Exit:

    if (enumChildrenMem != WDF_NO_HANDLE)
    {
        WdfObjectDelete(enumChildrenMem);
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_GetCapability (
    _In_ PPPM_CONTEXT PpmCtx,
    _Out_ PUCSI_GET_CAPABILITY_IN Caps
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    UCSI_CONTROL cmd;
    UCSI_MESSAGE_IN msg;
    ULONG_PTR bytesReturned;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    cmd.AsUInt64 = 0;
    cmd.Command = UcsiCommandGetCapability;

    status = Ppm_SendCommandSynchronously(PpmCtx, cmd, &msg, &bytesReturned);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Failed to retrieve capabilities - %!STATUS!", device, status);
        goto Exit;
    }

    if (bytesReturned != sizeof(*Caps))
    {
        status = STATUS_INVALID_BUFFER_SIZE;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid capabilities buffer size", device);
        goto Exit;
    }

    RtlCopyMemory(Caps, &msg.Capability, sizeof(*Caps));

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_GetConnectorCapability (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ CONNECTOR_INDEX ConnectorIndex,
    _Out_ PUCSI_GET_CONNECTOR_CAPABILITY_IN ConnCaps
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    UCSI_CONTROL cmd;
    UCSI_MESSAGE_IN msg;
    ULONG_PTR bytesReturned;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    cmd.AsUInt64 = 0;
    cmd.Command = UcsiCommandGetConnectorCapability;
    cmd.GetConnectorCapability.ConnectorNumber = ConnectorIndex;

    status = Ppm_SendCommandSynchronously(PpmCtx, cmd, &msg, &bytesReturned);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Failed to retrieve connector capabilities for connector index %u - %!STATUS!", device, ConnectorIndex, status);
        goto Exit;
    }

    if (bytesReturned != sizeof(*ConnCaps))
    {
        status = STATUS_INVALID_BUFFER_SIZE;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid connector capabilities buffer size", device);
        goto Exit;
    }

    RtlCopyMemory(ConnCaps, &msg.Capability, sizeof(*ConnCaps));

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_ConnectorSetUor (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ CONNECTOR_INDEX ConnectorIndex,
    _In_ UCSI_USB_OPERATION_ROLE Uor
    )
{
    WDFDEVICE device;
    PPPM_CONNECTOR connector;
    UCM_DATA_ROLE dataRole;
    NTSTATUS status;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    if (!Convert(Uor, dataRole))
    {
        status = STATUS_INVALID_PARAMETER;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid USB operation role 0x%x", device, Uor);
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Test interface invoking SetDataRole for %!UCM_DATA_ROLE!", device, dataRole);

    connector = Ppm_GetConnector(PpmCtx, ConnectorIndex);
    status = Ucm_EvtConnectorSetDataRole(connector->Handle, dataRole);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_ConnectorSetPdr (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ CONNECTOR_INDEX ConnectorIndex,
    _In_ UCSI_POWER_DIRECTION_ROLE Pdr
    )
{
    WDFDEVICE device;
    PPPM_CONNECTOR connector;
    UCM_POWER_ROLE powerRole;
    NTSTATUS status;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    if (!Convert(Pdr, powerRole))
    {
        status = STATUS_INVALID_PARAMETER;
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] Invalid power direction role 0x%x", device, Pdr);
        goto Exit;
    }

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Test interface invoking SetPowerRole for %!UCM_POWER_ROLE!", device, powerRole);

    connector = Ppm_GetConnector(PpmCtx, ConnectorIndex);
    status = Ucm_EvtConnectorSetPowerRole(connector->Handle, powerRole);

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
_Must_inspect_result_
_Success_(return != 0)
PPPM_CONNECTOR
Ppm_AddConnector (
    _In_ PPPM_CONTEXT PpmCtx
    )
{
    NTSTATUS status;
    WDFDEVICE device;
    WDFMEMORY connectorMem;
    PPPM_CONNECTOR connector;
    WDF_OBJECT_ATTRIBUTES attributes;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);
    connector = nullptr;

    WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
    attributes.ParentObject = PpmCtx->Connectors;
    status = WdfMemoryCreate(&attributes,
                             NonPagedPoolNx,
                             0,
                             sizeof(PPM_CONNECTOR),
                             &connectorMem,
                             (PVOID*) &connector);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfMemoryCreate for PPM_CONNECTOR failed - %!STATUS!", device, status);
        goto Exit;
    }

    status = WdfCollectionAdd(PpmCtx->Connectors, connectorMem);
    if (!NT_SUCCESS(status))
    {
        TRACE_ERROR(TRACE_FLAG_PPM, "[Device: 0x%p] WdfCollectionAdd for connector failed - %!STATUS!", device, status);
        goto Exit;
    }

    //
    // N.B. Should not fail beyond this point, else the connector object must be removed
    //      from the collection.
    //

    RtlZeroMemory(connector, sizeof(*connector));

    connector->WdfDevice = device;
    connector->Index = WdfCollectionGetCount(PpmCtx->Connectors);

Exit:

    if (!NT_SUCCESS(status) && (connector != nullptr))
    {
        WdfObjectDelete(connectorMem);
        connector = nullptr;
    }

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return connector;
}


_IRQL_requires_max_(DISPATCH_LEVEL)
PPPM_CONNECTOR
Ppm_GetConnector (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ CONNECTOR_INDEX Index
    )
{
    WDFMEMORY connectorMem;
    PPPM_CONNECTOR connector;

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    //
    // UCSI connector index is one-based.
    //

    connectorMem = (WDFMEMORY) WdfCollectionGetItem(PpmCtx->Connectors, Index - 1);

    //
    // Assuming caller knows what they are doing.
    //

    NT_ASSERT_ASSUME(connectorMem != NULL);

    connector = (PPPM_CONNECTOR) WdfMemoryGetBuffer(connectorMem, nullptr);

    NT_ASSERTMSG("Connectors were added in incorrect order", connector->Index == Index);

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return connector;
}


_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
Ppm_PerformRoleCorrection (
    _In_ PPPM_CONTEXT PpmCtx,
    _In_ PPPM_CONNECTOR Connector
    )
{
    WDFDEVICE device;
    UCSI_CONTROL cmd;
    NTSTATUS status;

    PAGED_CODE();

    TRACE_FUNC_ENTRY(TRACE_FLAG_PPM);

    device = Context_GetWdfDevice(PpmCtx);

    TRACE_INFO(TRACE_FLAG_PPM, "[Device: 0x%p] Performing role-correction on connector ID 0x%I64x", device, Connector->Id);

    cmd.AsUInt64 = 0;
    cmd.Command = UcsiCommandSetUor;
    cmd.SetUor.ConnectorNumber = Connector->Index;
    cmd.SetUor.UsbOperationRole = UcsiUsbOperationRoleDfp;

    status = Ppm_SendCommand(PpmCtx, cmd, Ucm_EvtSetDataRoleCompleted, PpmCtx);
    if (!NT_SUCCESS(status))
    {
        goto Exit;
    }

Exit:

    TRACE_FUNC_EXIT(TRACE_FLAG_PPM);

    return status;
}