]>
Commit | Line | Data |
---|---|---|
2dc41d45 LG |
1 | // /** @file\r |
2 | // ACPI CPU Data initialization module\r | |
3 | //\r | |
4 | // This module initializes the ACPI_CPU_DATA structure and registers the address\r | |
5 | // of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple\r | |
6 | // version of this module. It does not provide a machine check handler or CPU\r | |
7 | // register initialization tables for ACPI S3 resume. It also only supports the\r | |
8 | // number of CPUs reported by the MP Services Protocol, so this module does not\r | |
9 | // support hot plug CPUs. This module can be copied into a CPU specific package\r | |
10 | // and customized if these additional features are required.\r | |
11 | //\r | |
12 | // Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>\r | |
13 | //\r | |
14 | // Copyright (c) 2015, Red Hat, Inc.\r | |
15 | //\r | |
16 | // This program and the accompanying materials\r | |
17 | // are licensed and made available under the terms and conditions of the BSD License\r | |
18 | // which accompanies this distribution. The full text of the license may be found at\r | |
19 | // http://opensource.org/licenses/bsd-license.php\r | |
20 | //\r | |
21 | // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
22 | // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
23 | //\r | |
24 | // **/\r | |
25 | \r | |
26 | #string STR_MODULE_ABSTRACT\r | |
27 | #language en-US\r | |
28 | "ACPI CPU Data initialization module"\r | |
29 | \r | |
30 | #string STR_MODULE_DESCRIPTION\r | |
31 | #language en-US\r | |
32 | "This module initializes the ACPI_CPU_DATA structure and registers the address "\r | |
33 | "of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple "\r | |
34 | "version of this module. It does not provide a machine check handler or CPU "\r | |
35 | "register initialization tables for ACPI S3 resume. It also only supports the "\r | |
36 | "number of CPUs reported by the MP Services Protocol, so this module does not "\r | |
37 | "support hot plug CPUs. This module can be copied into a CPU specific package "\r | |
38 | "and customized if these additional features are required."\r | |
39 | \r | |
40 | \r |