summaryrefslogtreecommitdiff
path: root/Silicon/BroxtonSoC/BroxtonSiPkg/SouthCluster/SampleCode/Library/AslUpdate/Dxe/ScAslUpdateLib.c
blob: f82844164afe88d7cac5a8694cf1235ff375586e (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
/** @file
  Boot service DXE ASL update library implementation.
  These functions in this file can be called during DXE and cannot be called during runtime
  or in SMM which should use a RT or SMM library.
  This library uses the ACPI Support protocol.

  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>

  This program and the accompanying materials
  are licensed and made available under the terms and conditions of the BSD License
  which accompanies this distribution.  The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php.

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#include <Library/ScAslUpdateLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/MemoryAllocationLib.h>

//
// Function implementations
//
static EFI_ACPI_SUPPORT_PROTOCOL  *mAcpiSupport = NULL;
static EFI_ACPI_TABLE_PROTOCOL    *mAcpiTable   = NULL;


/**
  Initialize the ASL update library state.
  This must be called prior to invoking other library functions.

  @param[in] None

  @retval    EFI_SUCCESS                   The function completed successfully.

**/
EFI_STATUS
InitializeScAslUpdateLib (
  VOID
  )
{
  EFI_STATUS  Status;

  //
  // Locate ACPI tables
  //
  Status = gBS->LocateProtocol (&gEfiAcpiSupportProtocolGuid, NULL, (VOID **) &mAcpiSupport);
  Status = gBS->LocateProtocol (&gEfiAcpiTableProtocolGuid, NULL, (VOID **) &mAcpiTable);
  return Status;
}


/**
  This procedure will update immediate value assigned to a Name

  @param[in] AslSignature                   The signature of Operation Region that we want to update.
  @param[in] Buffer                         source of data to be written over original aml
  @param[in] Length                         length of data to be overwritten

  @retval    EFI_SUCCESS                    The function completed successfully.

**/
EFI_STATUS
UpdateNameAslCode (
  IN     UINT32                        AslSignature,
  IN     VOID                          *Buffer,
  IN     UINTN                         Length
  )
{
  EFI_STATUS                  Status;
  EFI_ACPI_DESCRIPTION_HEADER *Table;
  EFI_ACPI_TABLE_VERSION      Version;
  UINT8                       *CurrPtr;
  UINT32                      *Signature;
  UINT8                       *DsdtPointer;
  UINT8                       Index;
  UINTN                       Handle;
  UINT8                       DataSize;

  //
  // Locate table with matching ID
  //
  Index = 0;

  do {
    Status = mAcpiSupport->GetAcpiTable (mAcpiSupport, Index, (VOID **) &Table, &Version, &Handle);
    if (Status == EFI_NOT_FOUND) {
      break;
    }

    ASSERT_EFI_ERROR (Status);
    Index++;
  } while (Table->Signature != EFI_ACPI_3_0_DIFFERENTIATED_SYSTEM_DESCRIPTION_TABLE_SIGNATURE);

  //
  // Point to the beginning of the DSDT table
  //
  Index = 0;
  CurrPtr = (UINT8 *) Table;

  //
  // Loop through the ASL looking for values that we must fix up.
  //
  for (DsdtPointer = CurrPtr; DsdtPointer <= (CurrPtr + ((EFI_ACPI_COMMON_HEADER *) CurrPtr)->Length); DsdtPointer++) {
    //
    // Get a pointer to compare for signature
    //
    Signature = (UINT32 *) DsdtPointer;
    //
    // Check if this is the Device Object signature we are looking for
    //
    if ((*Signature) == AslSignature) {
      //
      // Look for Name Encoding
      //
      if (*(DsdtPointer - 1) == AML_NAME_OP) {
        //
        // Check if size of new and old data is the same
        //
        DataSize = *(DsdtPointer + 4);
        if ((Length == 1 && DataSize == 0xA) ||
            (Length == 2 && DataSize == 0xB) ||
            (Length == 4 && DataSize == 0xC) ) {
          CopyMem (DsdtPointer + 5, Buffer, Length);
        }  else if (Length == 1 && ((*(UINT8 *)Buffer) == 0 || (*(UINT8 *)Buffer) == 1) && (DataSize == 0 || DataSize == 1)) {
          CopyMem (DsdtPointer + 4, Buffer, Length);
        } else {
          FreePool (Table);
          return EFI_BAD_BUFFER_SIZE;
        }
        Status = mAcpiTable->UninstallAcpiTable (
                               mAcpiTable,
                               Handle
                               );
        Handle = 0;
        Status = mAcpiTable->InstallAcpiTable (
                               mAcpiTable,
                               Table,
                               Table->Length,
                               &Handle
                               );
        FreePool (Table);
        return Status;
      }
    }
  }
  return EFI_NOT_FOUND;
}


/**
  This procedure will update a Resource Descriptor Macro in
  Resrouce Template buffer list.

  @param[in] AslSignature        The signature of Operation Region that we want to update.
  @param[in] BufferName          signature of the Buffer inside OpRegion that we want to update
  @param[in] MacroAmlEncoding    type of entry inside Buffer.
  @param[in] MacroEntryNumber    number of entry of the above type
  @param[in] Offset              offset (in bytes) inside entry where update will be performed
  @param[in] Buffer              source of data to be written over original aml
  @param[in] Length              length of data to be overwritten

  @retval    EFI_SUCCESS         The function completed successfully.

**/
EFI_STATUS
UpdateResourceTemplateAslCode (
  IN     UINT32                        AslSignature,
  IN     UINT32                        BufferName,
  IN     UINT8                         MacroAmlEncoding,
  IN     UINT8                         MacroEntryNumber,
  IN     UINT8                         Offset,
  IN     VOID                          *Buffer,
  IN     UINTN                         Length
  )
{
  EFI_STATUS                           Status;
  EFI_ACPI_DESCRIPTION_HEADER          *Table;
  EFI_ACPI_TABLE_VERSION               Version;
  UINT8                                *CurrPtr;
  UINT8                                *Operation;
  UINT32                               *Signature;
  UINT8                                *DsdtPointer;
  UINT8                                Index;
  UINT8                                *BufferLength;
  UINTN                                Handle;
  UINT16                               AslLength;
  BOOLEAN                              EntryFound;

  //
  // Locate table with matching ID
  //
  Index     = 0;
  AslLength = 0;
  EntryFound = FALSE;

  do {
    Status = mAcpiSupport->GetAcpiTable (mAcpiSupport, Index,  (VOID **) &Table, &Version, &Handle);
    if (Status == EFI_NOT_FOUND) {
      break;
    }
    ASSERT_EFI_ERROR (Status);
    Index ++;
  } while (Table->Signature != EFI_ACPI_3_0_DIFFERENTIATED_SYSTEM_DESCRIPTION_TABLE_SIGNATURE);

  //
  // Point to the beginning of the DSDT table
  //
  Index = 0;
  CurrPtr = (UINT8 *) Table;

  //
  // Loop through the ASL looking for values that we must fix up.
  //
  for (DsdtPointer = CurrPtr; DsdtPointer <= (CurrPtr + ((EFI_ACPI_COMMON_HEADER *) CurrPtr)->Length); DsdtPointer++) {
    //
    // Get a pointer to compare for signature
    //
    Signature = (UINT32 *) DsdtPointer;

    //
    // Check if this is the Device Object signature we are looking for
    //
    if ((*Signature) == AslSignature) {
      //
      // Read the Device Object block length
      //
      if (*(DsdtPointer - 2) == AML_DEVICE_OP) {
        AslLength = *(DsdtPointer - 1);
      } else if (*(DsdtPointer - 3) == AML_DEVICE_OP) {
        AslLength = *(UINT16 *) (DsdtPointer - 2);
        AslLength = (AslLength & 0x0F) + ((AslLength & 0x0FF00) >> 4);
      }

      //
      // Conditional match.  Search AML Encoding in Device.
      //
      for (Operation = DsdtPointer; Operation <= DsdtPointer + AslLength; Operation++) {
        //
        // Look for Name Encoding
        //
        while (Operation <= DsdtPointer + AslLength) {
          if (*Operation == AML_NAME_OP) {
            //
            // Found Name AML Encoding
            //
             Operation ++;
             if (*(UINT32 *) (Operation) == BufferName) {
               //
               // Found RBUF Resource Template object name
               //
               break;
             }
           }
           Operation++;
        }

        if (Operation > DsdtPointer + AslLength ) {
           FreePool (Table);
           return EFI_NOT_FOUND;
        }

        //
        // Now look for the Resource Template Object buffer opcode
        //
        while ((*Operation) != AML_BUFFER_OP) {
          Operation++;
          if (Operation > DsdtPointer + AslLength) {
            FreePool (Table);
            return EFI_NOT_FOUND;
          }
        }

        //
        // In a Resource Template Object the length of buffer
        // list is 3 bytes after the buffer opcode
        //
        Operation += 3;
        BufferLength = (*Operation) + Operation + 1;

        //
        // Now look for the Macro to be updated
        //
        while (Operation <= BufferLength) {
          if ((*Operation == MacroAmlEncoding)) {
            //
            // We found a matching encoding however, the buffer list may have "n" number
            // of same encoding entries. Let's narrow down to the "n"th entry.
            //
            Index++;
            if (Index == MacroEntryNumber) {
              //
              // Get to the starting offset & end offset
              //
              Operation += Offset;

              //
              // Fixup the value at the offset
              //
              CopyMem ((VOID *) Operation, (VOID *) (Buffer), Length);

              //
              // Update the modified ACPI table
              //
              Status = mAcpiTable->UninstallAcpiTable (
                                     mAcpiTable,
                                     Handle
                                     );
              Handle = 0;
              Status = mAcpiTable->InstallAcpiTable (
                                     mAcpiTable,
                                     Table,
                                     Table->Length,
                                     &Handle
                                     );
              FreePool (Table);
              return Status;
            }
          }
          Operation++;
        }

        if (Operation > DsdtPointer + AslLength) {
          FreePool (Table);
          return EFI_NOT_FOUND;
        }
      }
    }
  }

  return EFI_NOT_FOUND;
}


/**
  This function uses the ACPI support protocol to locate an ACPI table.
  It is really only useful for finding tables that only have a single instance,
  e.g. FADT, FACS, MADT, etc.  It is not good for locating SSDT, etc.

  @param[in]      Signature          Pointer to an ASCII string containing the OEM Table ID from the ACPI table header
  @param[in, out] Table              Updated with a pointer to the table
  @param[in, out] Handle             AcpiSupport protocol table handle for the table found
  @param[in, out] Version            The version of the table desired

  @retval         EFI_SUCCESS        The function completed successfully.

**/
EFI_STATUS
LocateAcpiTableBySignature (
  IN      UINT32                        Signature,
  IN OUT  EFI_ACPI_DESCRIPTION_HEADER   **Table,
  IN OUT  UINTN                         *Handle,
  IN OUT  EFI_ACPI_TABLE_VERSION        *Version
  )
{
  EFI_STATUS              Status;
  INTN                    Index;
  EFI_ACPI_TABLE_VERSION  DesiredVersion;

  DesiredVersion = *Version;

  //
  // Locate table with matching ID
  //
  Index = 0;
  do {
    Status = mAcpiSupport->GetAcpiTable (mAcpiSupport, Index,  (VOID **) Table, Version, Handle);
    if (Status == EFI_NOT_FOUND) {
      break;
    }

    ASSERT_EFI_ERROR (Status);
    Index++;
  } while ((*Table)->Signature != Signature || !(*Version & DesiredVersion));

  //
  // If we found the table, there will be no error.
  //
  return Status;
}


/**
  This function uses the ACPI support protocol to locate an ACPI SSDT table.

  @param[in]      TableId             Pointer to an ASCII string containing the OEM Table ID from the ACPI table header
  @param[in]      TableIdSize         Length of the TableId to match.  Table ID are 8 bytes long, this function
                                      will consider it a match if the first TableIdSize bytes match
  @param[in, out] Table               Updated with a pointer to the table
  @param[in, out] Handle              AcpiSupport protocol table handle for the table found
  @param[in, out] Version             See AcpiSupport protocol, GetAcpiTable function for use

  @retval         EFI_SUCCESS         The function completed successfully.

**/
EFI_STATUS
LocateAcpiTableByOemTableId (
  IN      UINT8                         *TableId,
  IN      UINT8                         TableIdSize,
  IN OUT  EFI_ACPI_DESCRIPTION_HEADER   **Table,
  IN OUT  UINTN                         *Handle,
  IN OUT  EFI_ACPI_TABLE_VERSION        *Version
  )
{
  EFI_STATUS  Status;
  INTN        Index;

  //
  // Locate table with matching ID
  //
  Index = 0;
  do {
    Status = mAcpiSupport->GetAcpiTable (mAcpiSupport, Index, (VOID **) Table, Version, Handle);
    if (Status == EFI_NOT_FOUND) {
      break;
    }

    ASSERT_EFI_ERROR (Status);
    Index++;
  } while (CompareMem (&(*Table)->OemTableId, TableId, TableIdSize));

  //
  // If we found the table, there will be no error.
  //
  return Status;
}


/**
  This function calculates and updates an UINT8 checksum.

  @param[in] Buffer                  Pointer to buffer to checksum
  @param[in] Size                    Number of bytes to checksum
  @param[in] ChecksumOffset          Offset to place the checksum result in

  @retval    EFI_SUCCESS             The function completed successfully.

**/
EFI_STATUS
AcpiChecksum (
  IN VOID       *Buffer,
  IN UINTN      Size,
  IN UINTN      ChecksumOffset
  )
{
  UINT8    Sum;
  UINT8    *Ptr;

  Sum = 0;
  //
  // Initialize pointer
  //
  Ptr = Buffer;

  //
  // set checksum to 0 first
  //
  Ptr[ChecksumOffset] = 0;

  //
  // add all content of buffer
  //
  while (Size--) {
    Sum = (UINT8) (Sum + (*Ptr++));
  }
  //
  // set checksum
  //
  Ptr                 = Buffer;
  Ptr[ChecksumOffset] = (UINT8) (0xff - Sum + 1);

  return EFI_SUCCESS;
}