aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/model_1067x/chip.h
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2012-10-02 11:46:11 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-11-06 21:52:44 +0100
commit68d7c7aa8ba8a8bc17b3cebf1b7086cf8a4fa94d (patch)
tree28132fff40728a7480718c5b1fc859d7073dda94 /src/cpu/intel/model_1067x/chip.h
parentbf10bc3e44ae0d85a9db189c7c84e380a1ec8aa7 (diff)
cpu/intel/model_1067x: Add proper c-state/p-state/thermal support
Change-Id: I853454e8f5617fb7af5dddd7288bdeeacc7b1b8e Signed-off-by: Nico Huber <nico.huber@secunet.com> Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/1663 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/intel/model_1067x/chip.h')
-rw-r--r--src/cpu/intel/model_1067x/chip.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/cpu/intel/model_1067x/chip.h b/src/cpu/intel/model_1067x/chip.h
new file mode 100644
index 0000000000..1731c504de
--- /dev/null
+++ b/src/cpu/intel/model_1067x/chip.h
@@ -0,0 +1,24 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 secunet Security Networks AG
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+struct cpu_intel_model_1067x_config {
+ int c5 : 1;
+ int c6 : 1;
+ int slfm : 1;
+};