1 | // /** @file
|
---|
2 | // ACPI CPU Data initialization module
|
---|
3 | //
|
---|
4 | // This module initializes the ACPI_CPU_DATA structure and registers the address
|
---|
5 | // of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple
|
---|
6 | // version of this module. It does not provide a machine check handler or CPU
|
---|
7 | // register initialization tables for ACPI S3 resume. It also only supports the
|
---|
8 | // number of CPUs reported by the MP Services Protocol, so this module does not
|
---|
9 | // support hot plug CPUs. This module can be copied into a CPU specific package
|
---|
10 | // and customized if these additional features are required.
|
---|
11 | //
|
---|
12 | // Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
---|
13 | //
|
---|
14 | // Copyright (c) 2015, Red Hat, Inc.
|
---|
15 | //
|
---|
16 | // SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
17 | //
|
---|
18 | // **/
|
---|
19 |
|
---|
20 | #string STR_MODULE_ABSTRACT
|
---|
21 | #language en-US
|
---|
22 | "ACPI CPU Data initialization module"
|
---|
23 |
|
---|
24 | #string STR_MODULE_DESCRIPTION
|
---|
25 | #language en-US
|
---|
26 | "This module initializes the ACPI_CPU_DATA structure and registers the address "
|
---|
27 | "of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple "
|
---|
28 | "version of this module. It does not provide a machine check handler or CPU "
|
---|
29 | "register initialization tables for ACPI S3 resume. It also only supports the "
|
---|
30 | "number of CPUs reported by the MP Services Protocol, so this module does not "
|
---|
31 | "support hot plug CPUs. This module can be copied into a CPU specific package "
|
---|
32 | "and customized if these additional features are required."
|
---|
33 |
|
---|
34 |
|
---|