]>
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 | |
0acd8697 | 16 | // SPDX-License-Identifier: BSD-2-Clause-Patent\r |
2dc41d45 LG |
17 | //\r |
18 | // **/\r | |
19 | \r | |
20 | #string STR_MODULE_ABSTRACT\r | |
21 | #language en-US\r | |
22 | "ACPI CPU Data initialization module"\r | |
23 | \r | |
24 | #string STR_MODULE_DESCRIPTION\r | |
25 | #language en-US\r | |
26 | "This module initializes the ACPI_CPU_DATA structure and registers the address "\r | |
27 | "of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple "\r | |
28 | "version of this module. It does not provide a machine check handler or CPU "\r | |
29 | "register initialization tables for ACPI S3 resume. It also only supports the "\r | |
30 | "number of CPUs reported by the MP Services Protocol, so this module does not "\r | |
31 | "support hot plug CPUs. This module can be copied into a CPU specific package "\r | |
32 | "and customized if these additional features are required."\r | |
33 | \r | |
34 | \r |