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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
plclient.c
Abstract:
This module implements power limit related operations for the simulated power
limit client driver.
--*/
//-------------------------------------------------------------------- Includes
#include "plclient.h"
//--------------------------------------------------------------------- Pragmas
#pragma alloc_text(PAGE, InitPowerLimitValues)
#pragma alloc_text(PAGE, CleanupPowerLimitValues)
#pragma alloc_text(PAGE, PLCQueryAttributes)
#pragma alloc_text(PAGE, PLCSetLimits)
#pragma alloc_text(PAGE, PLCQueryLimitValues)
//------------------------------------------------------------------- Functions
_Use_decl_annotations_
NTSTATUS
InitPowerLimitValues (
PFDO_DATA DevExt
)
/*++
Routine Description:
This routine initializes simulated limit values and attributes for the supplied
device extension.
Parameters Description:
DevExt - Supplies a pointer to the device extension to be udpated.
Return Value:
NTSTATUS.
--*/
{
ULONG DomainId;
ULONG Index;
PPOWER_LIMIT_ATTRIBUTES LimitAttributes;
ULONG LimitCount;
PPOWER_LIMIT_VALUE LimitValues;
NTSTATUS Status;
ULONG Type;
PAGED_CODE();
LimitAttributes = NULL;
LimitValues = NULL;
LimitCount = PLCLIENT_DEFAULT_DOMAIN_COUNT * PLCLIENT_DEFAULT_LIMIT_COUNT_PER_DOMAIN;
LimitAttributes = ExAllocatePool2(POOL_FLAG_PAGED,
LimitCount * sizeof(POWER_LIMIT_ATTRIBUTES),
PLCLIENT_TAG);
LimitValues = ExAllocatePool2(POOL_FLAG_PAGED,
LimitCount * sizeof(POWER_LIMIT_VALUE),
PLCLIENT_TAG);
if ((LimitAttributes == NULL) || (LimitValues == NULL)) {
Status = STATUS_INSUFFICIENT_RESOURCES;
goto InitPowerLimitValuesEnd;
}
for (DomainId = 0; DomainId < PLCLIENT_DEFAULT_DOMAIN_COUNT; DomainId += 1) {
for (Type = 0; Type < PLCLIENT_DEFAULT_LIMIT_COUNT_PER_DOMAIN; Type += 1) {
Index = (PLCLIENT_DEFAULT_LIMIT_COUNT_PER_DOMAIN * DomainId) + Type;
//
// Set init attributes.
//
LimitAttributes[Index].Type = Type;
LimitAttributes[Index].DomainId = DomainId;
LimitAttributes[Index].MaxValue = PLCLIENT_DEFAULT_MAX_VALUE;
LimitAttributes[Index].MinValue = PLCLIENT_DEFAULT_MIN_VALUE;
LimitAttributes[Index].DefaultACValue = POWER_LIMIT_VALUE_NO_CONTROL;
LimitAttributes[Index].DefaultDCValue = POWER_LIMIT_VALUE_NO_CONTROL;
if (Type == PowerLimitContinuous) {
LimitAttributes[Index].MinTimeParameter = PLCLIENT_DEFAULT_MIN_VALUE;
LimitAttributes[Index].MaxTimeParameter = PLCLIENT_DEFAULT_MAX_VALUE;
LimitAttributes[Index].Flags.SupportTimeParameter = 1;
}
//
// Set init values.
//
LimitValues[Index].Type = Type;
LimitValues[Index].DomainId = DomainId;
LimitValues[Index].TargetValue = POWER_LIMIT_VALUE_NO_CONTROL;
LimitValues[Index].TimeParameter = POWER_LIMIT_VALUE_NO_CONTROL;
}
}
DevExt->LimitCount = LimitCount;
DevExt->LimitAttributes = LimitAttributes;
DevExt->LimitValues = LimitValues;
LimitAttributes = NULL;
LimitValues = NULL;
Status = STATUS_SUCCESS;
InitPowerLimitValuesEnd:
if (LimitAttributes != NULL) {
ExFreePoolWithTag(LimitAttributes, PLCLIENT_TAG);
LimitAttributes = NULL;
}
if (LimitValues != NULL) {
ExFreePoolWithTag(LimitValues, PLCLIENT_TAG);
LimitValues = NULL;
}
return Status;
}
_Use_decl_annotations_
VOID
CleanupPowerLimitValues (
PFDO_DATA DevExt
)
/*++
Routine Description:
This routine cleans up simulated limit values and attributes for the supplied
device extension.
Parameters Description:
DevExt - Supplies a pointer to the device extension to be udpated.
Return Value:
NTSTATUS.
--*/
{
PAGED_CODE();
if (DevExt == NULL) {
goto CleanupPowerLimitValuesEnd;
}
if (DevExt->LimitAttributes != NULL) {
ExFreePoolWithTag(DevExt->LimitAttributes, PLCLIENT_TAG);
DevExt->LimitAttributes = NULL;
}
if (DevExt->LimitValues != NULL) {
ExFreePoolWithTag(DevExt->LimitValues, PLCLIENT_TAG);
DevExt->LimitValues = NULL;
}
DevExt->LimitCount = 0;
CleanupPowerLimitValuesEnd:
return;
}
_Use_decl_annotations_
NTSTATUS
PLCQueryAttributes (
PVOID Context,
ULONG BufferCount,
PVOID Buffer,
PULONG AttributeCount
)
/*++
Routine Description:
This is the callback function which returns power limit attributes.
Parameters Description:
Context - Supplies a pointer to the device handle.
BufferCount - Supplies count of Buffer entries.
Buffer - Supplies a pointer to the buffer to store power limit attributes.
AttributeCount - Supplies a pointer to save the number of attributes.
Return Value:
Returns STATUS_BUFFER_TOO_SMALL if the supplied buffer is not big enough, otherwise
other NTSTATUS values.
--*/
{
PFDO_DATA DevExt;
WDFDEVICE DeviceHandle;
BOOLEAN ReleaseLock;
NTSTATUS Status;
PAGED_CODE();
ReleaseLock = FALSE;
if (Context == NULL) {
Status = STATUS_INVALID_PARAMETER;
goto QueryAttributesEnd;
}
DeviceHandle = (WDFDEVICE)Context;
DevExt = GetDeviceExtension(DeviceHandle);
AcquireGlobalMutex();
ReleaseLock = TRUE;
if (BufferCount < DevExt->LimitCount) {
if (AttributeCount != NULL) {
*AttributeCount = DevExt->LimitCount;
}
Status = STATUS_BUFFER_TOO_SMALL;
goto QueryAttributesEnd;
}
RtlCopyMemory(Buffer,
DevExt->LimitAttributes,
sizeof(POWER_LIMIT_ATTRIBUTES) * DevExt->LimitCount);
Status = STATUS_SUCCESS;
QueryAttributesEnd:
if (ReleaseLock != FALSE) {
ReleaseGlobalMutex();
}
return Status;
}
_Use_decl_annotations_
NTSTATUS
PLCSetLimits (
PVOID Context,
ULONG ValueCount,
PVOID Values
)
/*++
Routine Description:
This is the callback function which takes requests to set power limit values.
Parameters Description:
Context - Supplies a pointer to the device handle.
ValueCount - Supplies count of Value entries.
Values - Supplies a pointer to the buffer contains values to be updated.
Return Value:
NTSTATUS.
--*/
{
PPOWER_LIMIT_ATTRIBUTES Attributes;
PFDO_DATA DevExt;
WDFDEVICE DeviceHandle;
ULONG Index;
BOOLEAN ReleaseLock;
NTSTATUS Status;
BOOLEAN Valid;
PPOWER_LIMIT_VALUE ValueBuffer;
ULONG ValueIndex;
PAGED_CODE();
ReleaseLock = FALSE;
if ((Context == NULL) || (ValueCount == 0) || (Values == NULL)) {
Status = STATUS_INVALID_PARAMETER;
goto SetLimitsEnd;
}
ValueBuffer = (PPOWER_LIMIT_VALUE)Values;
DeviceHandle = (WDFDEVICE)Context;
DevExt = GetDeviceExtension(DeviceHandle);
AcquireGlobalMutex();
ReleaseLock = TRUE;
//
// Sanity check on proposed values before update.
//
if (DevExt->LimitCount < ValueCount) {
Status = STATUS_INVALID_PARAMETER;
goto SetLimitsEnd;
}
//
// N.B. On a production driver, those values should be used as power limit targets
// for the hardware.
//
for (Index = 0; Index < ValueCount; Index += 1) {
Valid = FALSE;
for (ValueIndex = 0; ValueIndex < DevExt->LimitCount; ValueIndex += 1) {
if ((ValueBuffer[Index].Type != DevExt->LimitAttributes[ValueIndex].Type) ||
(ValueBuffer[Index].DomainId != DevExt->LimitAttributes[ValueIndex].DomainId)) {
continue;
}
Attributes = &DevExt->LimitAttributes[ValueIndex];
if ((ValueBuffer[Index].TargetValue == POWER_LIMIT_VALUE_NO_CONTROL) ||
((ValueBuffer[Index].TargetValue >= Attributes->MinValue) &&
(ValueBuffer[Index].TargetValue <= Attributes->MaxValue))) {
Valid = TRUE;
}
if (ValueBuffer[Index].TimeParameter != POWER_LIMIT_VALUE_NO_CONTROL) {
if ((Attributes->Flags.SupportTimeParameter != 0) &&
(ValueBuffer[Index].TimeParameter >= Attributes->MinTimeParameter) &&
(ValueBuffer[Index].TimeParameter <= Attributes->MaxTimeParameter)) {
Valid = TRUE;
}
}
break;
}
//
// N.B. Bail out if this proposed value is not valid.
//
if (Valid == FALSE) {
Status = STATUS_INVALID_PARAMETER;
goto SetLimitsEnd;
}
}
for (Index = 0; Index < ValueCount; Index += 1) {
for (ValueIndex = 0; ValueIndex < DevExt->LimitCount; ValueIndex += 1) {
if ((ValueBuffer[Index].Type != DevExt->LimitValues[ValueIndex].Type) ||
(ValueBuffer[Index].DomainId != DevExt->LimitValues[ValueIndex].DomainId)) {
continue;
}
DevExt->LimitValues[ValueIndex].TargetValue = ValueBuffer[Index].TargetValue;
DevExt->LimitValues[ValueIndex].TimeParameter = ValueBuffer[Index].TimeParameter;
break;
}
}
Status = STATUS_SUCCESS;
SetLimitsEnd:
if (ReleaseLock != FALSE) {
ReleaseGlobalMutex();
}
return Status;
}
_Use_decl_annotations_
NTSTATUS
PLCQueryLimitValues (
PVOID Context,
ULONG ValueCount,
PVOID Values
)
/*++
Routine Description:
This is the callback function which returns power limit values.
Parameters Description:
Context - Supplies a pointer to the device handle.
ValueCount - Supplies count of Value entries.
Values - Supplies a pointer to the buffer to store power limit values.
Return Value:
Returns STATUS_BUFFER_TOO_SMALL if the supplied buffer is not big enough, otherwise
other NTSTATUS values.
--*/
{
PFDO_DATA DevExt;
WDFDEVICE DeviceHandle;
BOOLEAN ReleaseLock;
NTSTATUS Status;
PAGED_CODE();
ReleaseLock = FALSE;
if ((Context == NULL) || (ValueCount == 0) || (Values == NULL)){
Status = STATUS_INVALID_PARAMETER;
goto QueryLimitsEnd;
}
DeviceHandle = (WDFDEVICE)Context;
DevExt = GetDeviceExtension(DeviceHandle);
AcquireGlobalMutex();
ReleaseLock = TRUE;
if (ValueCount < DevExt->LimitCount) {
Status = STATUS_BUFFER_TOO_SMALL;
goto QueryLimitsEnd;
}
RtlCopyMemory(Values,
DevExt->LimitValues,
sizeof(POWER_LIMIT_VALUE) * DevExt->LimitCount);
Status = STATUS_SUCCESS;
QueryLimitsEnd:
if (ReleaseLock != FALSE) {
ReleaseGlobalMutex();
}
return Status;
}
|