aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/model_6fx/model_6fx_init.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-04-30 10:14:22 +0000
committerStefan Reinauer <stepan@openbios.org>2009-04-30 10:14:22 +0000
commitc7757f20ac3bf8771c3cabfef1c0970dbb12bd2a (patch)
treec72dd74c2301f653caa23820efde64fba153ed0f /src/cpu/intel/model_6fx/model_6fx_init.c
parent9cf95bfc64eecb289f5559da19307b737aa96488 (diff)
* Use latest version of intel microcodes from their Linux drivers page for
models 6ex and 6fx (core and core2 solo and duo). Also, use the names suggested by Intel for the microcode files instead our short version of it. This allows to create new microcode patches with a simple set of scripts. * some minor cpu setup fixes for c and p states Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4235 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/model_6fx/model_6fx_init.c')
-rw-r--r--src/cpu/intel/model_6fx/model_6fx_init.c46
1 files changed, 44 insertions, 2 deletions
diff --git a/src/cpu/intel/model_6fx/model_6fx_init.c b/src/cpu/intel/model_6fx/model_6fx_init.c
index 64f77410aa..d716efbd48 100644
--- a/src/cpu/intel/model_6fx/model_6fx_init.c
+++ b/src/cpu/intel/model_6fx/model_6fx_init.c
@@ -1,3 +1,24 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * 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
+ */
+
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
@@ -10,10 +31,26 @@
#include <cpu/intel/hyperthreading.h>
#include <cpu/x86/cache.h>
#include <cpu/x86/mtrr.h>
+#include <usbdebug_direct.h>
static const uint32_t microcode_updates[] = {
- #include "microcode_m206f257.h"
- #include "microcode_m206f6c7.h"
+ #include "microcode-2127-m206f6c7.h"
+ #include "microcode-2129-m206f257.h"
+ #include "microcode-2334-m016fbB6.h"
+ #include "microcode-2335-m086fbB6.h"
+ #include "microcode-2336-m106fbB6.h"
+ #include "microcode-2337-m806fbB6.h"
+ #include "microcode-2339-m046fbB7.h"
+ #include "microcode-2340-m406fbB7.h"
+ #include "microcode-2346-m16fda3.h"
+ #include "microcode-2347-m206fda3.h"
+ #include "microcode-2348-m806fda3.h"
+ #include "microcode-2374-m16f6cb.h"
+ #include "microcode-2376-m46f6cd.h"
+ #include "microcode-2380-m106f768.h"
+ #include "microcode-2381-m406f769.h"
+ #include "microcode-2385-m806fa94.h"
+ #include "microcode-2389-m16f25a.h"
/* Dummy terminator */
0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
@@ -221,7 +258,12 @@ static struct device_operations cpu_dev_ops = {
static struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, 0x06f0 }, /* Intel Core 2 Solo/Core Duo */
+ { X86_VENDOR_INTEL, 0x06f2 }, /* Intel Core 2 Solo/Core Duo */
{ X86_VENDOR_INTEL, 0x06f6 }, /* Intel Core 2 Solo/Core Duo */
+ { X86_VENDOR_INTEL, 0x06f7 }, /* Intel Core 2 Solo/Core Duo */
+ { X86_VENDOR_INTEL, 0x06fa }, /* Intel Core 2 Solo/Core Duo */
+ { X86_VENDOR_INTEL, 0x06fb }, /* Intel Core 2 Solo/Core Duo */
+ { X86_VENDOR_INTEL, 0x06fd }, /* Intel Core 2 Solo/Core Duo */
{ 0, 0 },
};