blob: 57e145eaf582050a9ae0061b0aea20c1c42e8928 [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer5c554632012-04-04 00:09:50 +02002
Jan Samekedda0f92023-04-27 10:39:27 +02003#ifndef __CPU_INTEL_MODEL_206AX_CHIP_H__
4#define __CPU_INTEL_MODEL_206AX_CHIP_H__
5
Arthur Heymansd52bfbb2022-11-07 09:23:02 +01006/* Keep this in sync with acpi.c */
7enum cpu_acpi_level {
8 CPU_ACPI_DISABLED = 0,
9 CPU_ACPI_C1,
10 CPU_ACPI_C2,
11 CPU_ACPI_C3,
12 CPU_ACPI_C6,
13 CPU_ACPI_C7,
14 CPU_ACPI_C7S,
15};
16
Stefan Reinauer5c554632012-04-04 00:09:50 +020017struct cpu_intel_model_206ax_config {
Arthur Heymansd52bfbb2022-11-07 09:23:02 +010018 enum cpu_acpi_level acpi_c1;
19 enum cpu_acpi_level acpi_c2;
20 enum cpu_acpi_level acpi_c3;
Duncan Laurie55632112012-07-16 12:19:00 -070021
22 int tcc_offset; /* TCC Activation Offset */
Stefan Reinauer5c554632012-04-04 00:09:50 +020023};
Jan Samekedda0f92023-04-27 10:39:27 +020024
25#endif /* __CPU_INTEL_MODEL_206AX_CHIP_H__ */