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
|
/*++
Module Name:
PortControllerInterface.c
Abstract:
This file contains the definitions of functions to read to and write from the
Type-C port controller hardware registers.
Environment:
Kernel-mode Driver Framework
--*/
#include "Driver.h"
#include "portcontrollerinterface.tmh"
void
PostponeToWorkitem(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device,
_In_ WDFWORKITEM WorkItem
)
/*++
Routine Description:
Because EvtIoDeviceControl was called at dispatch-level, it cannot send I/O and then wait synchronously;
instead, the work has to be postponed to a passive-level workitem.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
WorkItem - Handle to a framework workitem object
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
PWORKITEM_CONTEXT workItemContext;
workItemContext = WorkitemGetContext(WorkItem);
workItemContext->Device = Device;
workItemContext->Request = Request;
WdfWorkItemEnqueue(WorkItem);
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtWorkItemGetStatus(
_In_ WDFWORKITEM WorkItem
)
/*++
Routine Description:
This routine handles IOCTL_UCMTCPCI_PORT_CONTROLLER_GET_STATUS.
Read the contents of the CC Status, Fault Status, and Power Status registers from the device
and complete the WDFREQUEST.
Arguments:
WorkItem - Handle to a framework workitem object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
PUCMTCPCI_PORT_CONTROLLER_GET_STATUS_OUT_PARAMS outParams;
PWORKITEM_CONTEXT workItemContext;
PDEVICE_CONTEXT deviceContext;
WDFREQUEST request;
NTSTATUS status;
workItemContext = WorkitemGetContext(WorkItem);
deviceContext = DeviceGetContext(workItemContext->Device);
request = workItemContext->Request;
status = WdfRequestRetrieveOutputBuffer(request,
sizeof(*outParams),
reinterpret_cast<PVOID*>(&outParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveOutputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
REGISTER_ITEM items[] = {
GEN_REGISTER_ITEM(CC_STATUS, outParams->CCStatus),
GEN_REGISTER_ITEM(POWER_STATUS, outParams->PowerStatus),
GEN_REGISTER_ITEM(FAULT_STATUS, outParams->FaultStatus),
};
status = I2CReadSynchronouslyMultiple(deviceContext,
I2CRequestSourceClient,
items,
_countof(items));
if (!NT_SUCCESS(status))
{
goto Exit;
}
WdfRequestSetInformation(request, sizeof(*outParams));
Exit:
WdfRequestComplete(request, status);
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtWorkItemGetControl(
_In_ WDFWORKITEM WorkItem
)
/*++
Routine Description:
This routine handles IOCTL_UCMTCPCI_PORT_CONTROLLER_GET_CONTROL.
Read the contents of the TCPC Control, Role Control, Fault Control, and Power Control registers from the device
and complete the WDFREQUEST.
Arguments:
WorkItem - Handle to a framework workitem object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
PUCMTCPCI_PORT_CONTROLLER_GET_CONTROL_OUT_PARAMS outParams;
PWORKITEM_CONTEXT workItemContext;
PDEVICE_CONTEXT deviceContext;
WDFREQUEST request;
NTSTATUS status;
workItemContext = WorkitemGetContext(WorkItem);
deviceContext = DeviceGetContext(workItemContext->Device);
request = workItemContext->Request;
status = WdfRequestRetrieveOutputBuffer(request,
sizeof(*outParams),
reinterpret_cast<PVOID*>(&outParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveOutputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
REGISTER_ITEM items[] = {
GEN_REGISTER_ITEM(TCPC_CONTROL, outParams->TCPCControl),
GEN_REGISTER_ITEM(ROLE_CONTROL, outParams->RoleControl),
GEN_REGISTER_ITEM(FAULT_CONTROL, outParams->FaultControl),
GEN_REGISTER_ITEM(POWER_CONTROL, outParams->PowerControl),
};
status = I2CReadSynchronouslyMultiple(deviceContext,
I2CRequestSourceClient,
items,
_countof(items));
if (!NT_SUCCESS(status))
{
goto Exit;
}
WdfRequestSetInformation(request, sizeof(*outParams));
Exit:
WdfRequestComplete(request, status);
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetControl(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the TCPC Control, Role Control, Fault Control, or Power Control
registers on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_CONTROL_IN_PARAMS inParams;
UCMTCPCI_PORT_CONTROLLER_CONTROL_TYPE controlType;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_COMMAND_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
controlType = inParams->ControlType;
switch (controlType)
{
case UcmTcpciPortControllerTcpcControl:
{
status = I2CWriteAsynchronously(deviceContext,
TCPC_CONTROL,
&inParams->TCPCControl,
sizeof(inParams->TCPCControl));
if (!NT_SUCCESS(status))
{
goto Exit;
}
break;
}
case UcmTcpciPortControllerRoleControl:
{
status = I2CWriteAsynchronously(deviceContext,
ROLE_CONTROL,
&inParams->RoleControl,
sizeof(inParams->RoleControl));
if (!NT_SUCCESS(status))
{
goto Exit;
}
break;
}
case UcmTcpciPortControllerFaultControl:
{
status = I2CWriteAsynchronously(deviceContext,
FAULT_CONTROL,
&inParams->FaultControl,
sizeof(inParams->FaultControl));
if (!NT_SUCCESS(status))
{
goto Exit;
}
break;
}
case UcmTcpciPortControllerPowerControl:
{
status = I2CWriteAsynchronously(deviceContext,
POWER_CONTROL,
&inParams->PowerControl,
sizeof(inParams->PowerControl));
if (!NT_SUCCESS(status))
{
goto Exit;
}
break;
}
default:
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE, "Invalid control register type.");
status = STATUS_INVALID_DEVICE_REQUEST;
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetCommand(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the command register on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_COMMAND_IN_PARAMS inParams;
UINT8 cmd;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_COMMAND_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
// UCMTCPCI_PORT_CONTROLLER_COMMAND (from inParams->Command) is defined as an enum.
// Thus sizeof() typically returns 4 bytes, instead of 1 byte as required by TCPCI spec.
// The workaround is to copy it to a local 1-byte variable before writing it down.
cmd = static_cast<UINT8>(inParams->Command);
status = I2CWriteAsynchronously(deviceContext,
COMMAND,
&cmd,
sizeof(cmd));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetConfigStandardOutput(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the config standard output register on the
device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_CONFIG_STANDARD_OUTPUT_IN_PARAMS inParams;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_CONFIG_STANDARD_OUTPUT_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
status = I2CWriteAsynchronously(deviceContext,
CONFIG_STANDARD_OUTPUT,
&inParams->ConfigStandardOutput,
sizeof(inParams->ConfigStandardOutput));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetMessageHeaderInfo(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the message header info register on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_MESSAGE_HEADER_INFO_IN_PARAMS inParams;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_MESSAGE_HEADER_INFO_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
status = I2CWriteAsynchronously(deviceContext,
MESSAGE_HEADER_INFO,
&inParams->MessageHeaderInfo,
sizeof(inParams->MessageHeaderInfo));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetReceiveDetect(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the receive detect register on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_RECEIVE_DETECT_IN_PARAMS inParams;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_RECEIVE_DETECT_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
status = I2CWriteAsynchronously(deviceContext,
RECEIVE_DETECT,
&inParams->ReceiveDetect,
sizeof(inParams->ReceiveDetect));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetTransmit(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the transmit register on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_TRANSMIT_IN_PARAMS inParams;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(PUCMTCPCI_PORT_CONTROLLER_SET_TRANSMIT_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
status = I2CWriteAsynchronously(deviceContext,
TRANSMIT,
&inParams->Transmit,
sizeof(inParams->Transmit));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
void
EvtSetTransmitBuffer(
_In_ WDFREQUEST Request,
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Set the contents of the transmit buffer register on the device and complete the WDFREQUEST.
Arguments:
Request - Handle to a framework request object.
Device - Handle to a framework device object.
--*/
{
TRACE_FUNC_ENTRY(TRACE_PORTCONTROLLERINTERFACE);
NTSTATUS status;
PDEVICE_CONTEXT deviceContext;
PUCMTCPCI_PORT_CONTROLLER_SET_TRANSMIT_BUFFER_IN_PARAMS inParams;
deviceContext = DeviceGetContext(Device);
status = WdfRequestRetrieveInputBuffer(Request,
sizeof(UCMTCPCI_PORT_CONTROLLER_SET_TRANSMIT_BUFFER_IN_PARAMS),
reinterpret_cast<PVOID*>(&inParams),
NULL);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, TRACE_PORTCONTROLLERINTERFACE,
"WdfRequestRetrieveInputBuffer failed. Status: %!STATUS!", status);
goto Exit;
}
status = I2CWriteAsynchronously(deviceContext,
TRANSMIT_BUFFER,
&inParams->TransmitBuffer,
inParams->TransmitBuffer.TransmitByteCount + sizeof(inParams->TransmitBuffer.TransmitByteCount));
if (!NT_SUCCESS(status))
{
goto Exit;
}
Exit:
TRACE_FUNC_EXIT(TRACE_PORTCONTROLLERINTERFACE);
}
|