summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-04-22 08:56:50 +0000
committerStefan Reinauer <stepan@openbios.org>2009-04-22 08:56:50 +0000
commit953253f093302ccee1cc634772a4561ffbe32355 (patch)
treefc7672312a22bcff3acb19f6851b12beb9ee610d
parentda65fbf2082ae46b609c21d23ba39af45574be13 (diff)
downloadcoreboot-staging-953253f093302ccee1cc634772a4561ffbe32355.zip
coreboot-staging-953253f093302ccee1cc634772a4561ffbe32355.tar.gz
This patch unifies the socket_mPGA604_800Mhz and socket_mPGA604_533Mhz to a
combined socket_mPGA604. No other sockets come with clock rates, and there is no difference in code, except for the number of microcode patches included in a build. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4169 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/cpu/intel/socket_mPGA604/Config.lb (renamed from src/cpu/intel/socket_mPGA604_800Mhz/Config.lb)3
-rw-r--r--src/cpu/intel/socket_mPGA604/chip.h (renamed from src/cpu/intel/socket_mPGA604_800Mhz/chip.h)0
-rw-r--r--src/cpu/intel/socket_mPGA604/socket_mPGA604.c (renamed from src/cpu/intel/socket_mPGA604_800Mhz/socket_mPGA604_800Mhz.c)2
-rw-r--r--src/cpu/intel/socket_mPGA604_533Mhz/Config.lb3
-rw-r--r--src/cpu/intel/socket_mPGA604_533Mhz/chip.h4
-rw-r--r--src/cpu/intel/socket_mPGA604_533Mhz/socket_mPGA604_533Mhz.c7
-rw-r--r--src/mainboard/dell/s1850/Config.lb4
-rw-r--r--src/mainboard/intel/jarrell/Config.lb4
-rw-r--r--src/mainboard/intel/xe7501devkit/Config.lb4
-rw-r--r--src/mainboard/supermicro/x6dai_g/Config.lb4
-rw-r--r--src/mainboard/supermicro/x6dhe_g/Config.lb4
-rw-r--r--src/mainboard/supermicro/x6dhe_g2/Config.lb4
-rw-r--r--src/mainboard/supermicro/x6dhr_ig/Config.lb4
-rw-r--r--src/mainboard/supermicro/x6dhr_ig2/Config.lb4
-rw-r--r--src/mainboard/tyan/s2735/Config.lb4
15 files changed, 21 insertions, 34 deletions
diff --git a/src/cpu/intel/socket_mPGA604_800Mhz/Config.lb b/src/cpu/intel/socket_mPGA604/Config.lb
index 2637c86..21276eb 100644
--- a/src/cpu/intel/socket_mPGA604_800Mhz/Config.lb
+++ b/src/cpu/intel/socket_mPGA604/Config.lb
@@ -1,4 +1,5 @@
config chip.h
-object socket_mPGA604_800Mhz.o
+object socket_mPGA604.o
+dir /cpu/intel/model_f2x
dir /cpu/intel/model_f3x
dir /cpu/intel/model_f4x
diff --git a/src/cpu/intel/socket_mPGA604_800Mhz/chip.h b/src/cpu/intel/socket_mPGA604/chip.h
index b181737..b181737 100644
--- a/src/cpu/intel/socket_mPGA604_800Mhz/chip.h
+++ b/src/cpu/intel/socket_mPGA604/chip.h
diff --git a/src/cpu/intel/socket_mPGA604_800Mhz/socket_mPGA604_800Mhz.c b/src/cpu/intel/socket_mPGA604/socket_mPGA604.c
index 505965e..1d0d4fb 100644
--- a/src/cpu/intel/socket_mPGA604_800Mhz/socket_mPGA604_800Mhz.c
+++ b/src/cpu/intel/socket_mPGA604/socket_mPGA604.c
@@ -3,5 +3,5 @@
struct chip_operations cpu_intel_socket_mPGA604_800Mhz_ops = {
- CHIP_NAME("Socket mPGA604 800Mhz CPU")
+ CHIP_NAME("Socket mPGA604 CPU")
};
diff --git a/src/cpu/intel/socket_mPGA604_533Mhz/Config.lb b/src/cpu/intel/socket_mPGA604_533Mhz/Config.lb
deleted file mode 100644
index 986e70b..0000000
--- a/src/cpu/intel/socket_mPGA604_533Mhz/Config.lb
+++ /dev/null
@@ -1,3 +0,0 @@
-config chip.h
-object socket_mPGA604_533Mhz.o
-dir /cpu/intel/model_f2x
diff --git a/src/cpu/intel/socket_mPGA604_533Mhz/chip.h b/src/cpu/intel/socket_mPGA604_533Mhz/chip.h
deleted file mode 100644
index bf5cbc7..0000000
--- a/src/cpu/intel/socket_mPGA604_533Mhz/chip.h
+++ /dev/null
@@ -1,4 +0,0 @@
-extern struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops;
-
-struct cpu_intel_socket_mPGA604_533Mhz_config {
-};
diff --git a/src/cpu/intel/socket_mPGA604_533Mhz/socket_mPGA604_533Mhz.c b/src/cpu/intel/socket_mPGA604_533Mhz/socket_mPGA604_533Mhz.c
deleted file mode 100644
index 68f35b7..0000000
--- a/src/cpu/intel/socket_mPGA604_533Mhz/socket_mPGA604_533Mhz.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <device/device.h>
-#include "chip.h"
-
-
-struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops = {
- CHIP_NAME("Socket mPGA604 533Mhz CPU")
-};
diff --git a/src/mainboard/dell/s1850/Config.lb b/src/mainboard/dell/s1850/Config.lb
index a194685..9365522 100644
--- a/src/mainboard/dell/s1850/Config.lb
+++ b/src/mainboard/dell/s1850/Config.lb
@@ -193,10 +193,10 @@ chip northbridge/intel/e7520 # mch
device pci 06.0 on end
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 0
+ chip cpu/intel/socket_mPGA604 # cpu 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 1
+ chip cpu/intel/socket_mPGA604 # cpu 1
device apic 6 on end
end
end
diff --git a/src/mainboard/intel/jarrell/Config.lb b/src/mainboard/intel/jarrell/Config.lb
index 6e33f86..07a5b39 100644
--- a/src/mainboard/intel/jarrell/Config.lb
+++ b/src/mainboard/intel/jarrell/Config.lb
@@ -203,10 +203,10 @@ chip northbridge/intel/e7520
end
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 0
+ chip cpu/intel/socket_mPGA604 # cpu 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 1
+ chip cpu/intel/socket_mPGA604 # cpu 1
device apic 6 on end
end
end
diff --git a/src/mainboard/intel/xe7501devkit/Config.lb b/src/mainboard/intel/xe7501devkit/Config.lb
index 1a46ec9..5f5c9b8 100644
--- a/src/mainboard/intel/xe7501devkit/Config.lb
+++ b/src/mainboard/intel/xe7501devkit/Config.lb
@@ -212,10 +212,10 @@ chip northbridge/intel/e7501
end # SB
end # PCI_DOMAIN
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_533Mhz
+ chip cpu/intel/socket_mPGA604
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_533Mhz
+ chip cpu/intel/socket_mPGA604
device apic 6 on end
end
end
diff --git a/src/mainboard/supermicro/x6dai_g/Config.lb b/src/mainboard/supermicro/x6dai_g/Config.lb
index 82f990c..003e74b 100644
--- a/src/mainboard/supermicro/x6dai_g/Config.lb
+++ b/src/mainboard/supermicro/x6dai_g/Config.lb
@@ -187,10 +187,10 @@ chip northbridge/intel/e7525 # mch
device pci 08.0 on end
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # cpu0
+ chip cpu/intel/socket_mPGA604 # cpu0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # cpu1
+ chip cpu/intel/socket_mPGA604 # cpu1
device apic 6 on end
end
end
diff --git a/src/mainboard/supermicro/x6dhe_g/Config.lb b/src/mainboard/supermicro/x6dhe_g/Config.lb
index 3176f51..756ed44 100644
--- a/src/mainboard/supermicro/x6dhe_g/Config.lb
+++ b/src/mainboard/supermicro/x6dhe_g/Config.lb
@@ -210,10 +210,10 @@ chip northbridge/intel/e7520 # MCH
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # CPU 0
+ chip cpu/intel/socket_mPGA604 # CPU 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # CPU 1
+ chip cpu/intel/socket_mPGA604 # CPU 1
device apic 6 on end
end
end
diff --git a/src/mainboard/supermicro/x6dhe_g2/Config.lb b/src/mainboard/supermicro/x6dhe_g2/Config.lb
index 5c69af1..2b88e34 100644
--- a/src/mainboard/supermicro/x6dhe_g2/Config.lb
+++ b/src/mainboard/supermicro/x6dhe_g2/Config.lb
@@ -210,10 +210,10 @@ chip northbridge/intel/e7520 # MCH
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # CPU 0
+ chip cpu/intel/socket_mPGA604 # CPU 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # CPU 1
+ chip cpu/intel/socket_mPGA604 # CPU 1
device apic 6 on end
end
end
diff --git a/src/mainboard/supermicro/x6dhr_ig/Config.lb b/src/mainboard/supermicro/x6dhr_ig/Config.lb
index ce9c538..5b83ab5 100644
--- a/src/mainboard/supermicro/x6dhr_ig/Config.lb
+++ b/src/mainboard/supermicro/x6dhr_ig/Config.lb
@@ -206,10 +206,10 @@ chip northbridge/intel/e7520 # mch
device pci 06.0 on end
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 0
+ chip cpu/intel/socket_mPGA604 # cpu 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 1
+ chip cpu/intel/socket_mPGA604 # cpu 1
device apic 6 on end
end
end
diff --git a/src/mainboard/supermicro/x6dhr_ig2/Config.lb b/src/mainboard/supermicro/x6dhr_ig2/Config.lb
index aa3d456..61204b7 100644
--- a/src/mainboard/supermicro/x6dhr_ig2/Config.lb
+++ b/src/mainboard/supermicro/x6dhr_ig2/Config.lb
@@ -197,10 +197,10 @@ chip northbridge/intel/e7520 # mch
device pci 06.0 on end
end
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 0
+ chip cpu/intel/socket_mPGA604 # cpu 0
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_800Mhz # cpu 1
+ chip cpu/intel/socket_mPGA604 # cpu 1
device apic 6 on end
end
end
diff --git a/src/mainboard/tyan/s2735/Config.lb b/src/mainboard/tyan/s2735/Config.lb
index 6ce8766..88ba1db 100644
--- a/src/mainboard/tyan/s2735/Config.lb
+++ b/src/mainboard/tyan/s2735/Config.lb
@@ -172,10 +172,10 @@ chip northbridge/intel/e7501
end # SB
end # PCI_DOMAIN
device apic_cluster 0 on
- chip cpu/intel/socket_mPGA604_533Mhz
+ chip cpu/intel/socket_mPGA604
device apic 0 on end
end
- chip cpu/intel/socket_mPGA604_533Mhz
+ chip cpu/intel/socket_mPGA604
device apic 6 on end
end
end
OpenPOWER on IntegriCloud