diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-07-13 15:15:43 -0400 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-07-13 15:15:43 -0400 |
| commit | 99ad25a313bda566a346b46a6015afa65bc0a02b (patch) | |
| tree | b9443fed1ab74f320c4ee0791864ee96d7c069df /include/acpi/pdc_intel.h | |
| parent | f62c4a96f74d6c6dd56d1742697e94a5c2085e87 (diff) | |
| parent | 9a556e89081b0c1c2f83cee915363b15a68a6f2d (diff) | |
Auto merge with /home/aegl/GIT/linus
Diffstat (limited to 'include/acpi/pdc_intel.h')
| -rw-r--r-- | include/acpi/pdc_intel.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/include/acpi/pdc_intel.h b/include/acpi/pdc_intel.h new file mode 100644 index 000000000000..fd6730e4e567 --- /dev/null +++ b/include/acpi/pdc_intel.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | |||
| 2 | /* _PDC bit definition for Intel processors */ | ||
| 3 | |||
| 4 | #ifndef __PDC_INTEL_H__ | ||
| 5 | #define __PDC_INTEL_H__ | ||
| 6 | |||
| 7 | #define ACPI_PDC_P_FFH (0x0001) | ||
| 8 | #define ACPI_PDC_C_C1_HALT (0x0002) | ||
| 9 | #define ACPI_PDC_T_FFH (0x0004) | ||
| 10 | #define ACPI_PDC_SMP_C1PT (0x0008) | ||
| 11 | #define ACPI_PDC_SMP_C2C3 (0x0010) | ||
| 12 | #define ACPI_PDC_SMP_P_SWCOORD (0x0020) | ||
| 13 | #define ACPI_PDC_SMP_C_SWCOORD (0x0040) | ||
| 14 | #define ACPI_PDC_SMP_T_SWCOORD (0x0080) | ||
| 15 | #define ACPI_PDC_C_C1_FFH (0x0100) | ||
| 16 | |||
| 17 | |||
| 18 | #define ACPI_PDC_EST_CAPABILITY_SMP (ACPI_PDC_SMP_C1PT | \ | ||
| 19 | ACPI_PDC_C_C1_HALT) | ||
| 20 | |||
| 21 | #define ACPI_PDC_EST_CAPABILITY_SMP_MSR (ACPI_PDC_EST_CAPABILITY_SMP | \ | ||
| 22 | ACPI_PDC_P_FFH) | ||
| 23 | |||
| 24 | #define ACPI_PDC_C_CAPABILITY_SMP (ACPI_PDC_SMP_C2C3 | \ | ||
| 25 | ACPI_PDC_SMP_C1PT | \ | ||
| 26 | ACPI_PDC_C_C1_HALT) | ||
| 27 | |||
| 28 | #endif /* __PDC_INTEL_H__ */ | ||
| 29 | |||
