From 31b7ee42016f7b54c24f30c271b4b93df16bfa10 Mon Sep 17 00:00:00 2001
From: Angel Pons <th3fanbus@gmail.com>
Date: Mon, 17 Feb 2020 14:04:28 +0100
Subject: treewide: Replace uses of "Nehalem"

The code in coreboot is actually for the Arrandale processors, which
are a MCM (Multi-Chip Module) with two different dies:

- Hillel:   32nm Westmere dual-core CPU
- Ironlake: 45nm northbridge with integrated graphics

This has nothing to do with the older, single-die Nehalem processors.
Therefore, replace the references to Nehalem with the correct names.

Change-Id: I8c10a2618c519d2411211b9b8f66d24f0018f908
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38942
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
---
 Documentation/mainboard/index.md                            | 2 +-
 src/cpu/intel/common/fsb.c                                  | 2 +-
 src/cpu/intel/model_2065x/acpi.c                            | 2 +-
 src/cpu/intel/model_2065x/model_2065x.h                     | 2 +-
 src/drivers/intel/gma/Kconfig                               | 2 +-
 src/include/cpu/intel/em64t101_save_state.h                 | 2 +-
 src/northbridge/intel/ironlake/northbridge.c                | 6 +++---
 src/security/tpm/Kconfig                                    | 2 +-
 util/docker/coreboot.org-status/board-status.html/tohtml.sh | 2 +-
 9 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/Documentation/mainboard/index.md b/Documentation/mainboard/index.md
index 970f18f007..8cb367077e 100644
--- a/Documentation/mainboard/index.md
+++ b/Documentation/mainboard/index.md
@@ -75,7 +75,7 @@ The boards in this section are not real mainboards, but emulators.
 
 - [LT1000](libretrend/lt1000.md)
 
-### Nehalem series
+### Arrandale series
 
 - [T410](lenovo/t410.md)
 
diff --git a/src/cpu/intel/common/fsb.c b/src/cpu/intel/common/fsb.c
index 726ab1c240..3dfcd0b0ae 100644
--- a/src/cpu/intel/common/fsb.c
+++ b/src/cpu/intel/common/fsb.c
@@ -48,7 +48,7 @@ static int get_fsb_tsc(int *fsb, int *ratio)
 			*fsb = core2_fsb[rdmsr(MSR_FSB_FREQ).lo & 7];
 			*ratio = (rdmsr(IA32_PERF_STATUS).hi >> 8) & 0x1f;
 			break;
-		case 0x25: /* Nehalem BCLK fixed at 133MHz */
+		case 0x25: /* Arrandale BCLK fixed at 133MHz */
 			*fsb = 133;
 			*ratio = (rdmsr(MSR_PLATFORM_INFO).lo >> 8) & 0xff;
 			break;
diff --git a/src/cpu/intel/model_2065x/acpi.c b/src/cpu/intel/model_2065x/acpi.c
index 1868876909..af2606cf33 100644
--- a/src/cpu/intel/model_2065x/acpi.c
+++ b/src/cpu/intel/model_2065x/acpi.c
@@ -338,5 +338,5 @@ void generate_cpu_entries(struct device *device)
 }
 
 struct chip_operations cpu_intel_model_2065x_ops = {
-	CHIP_NAME("Intel Nehalem CPU")
+	CHIP_NAME("Intel Arrandale CPU")
 };
diff --git a/src/cpu/intel/model_2065x/model_2065x.h b/src/cpu/intel/model_2065x/model_2065x.h
index 730ab35e94..0a07f3c898 100644
--- a/src/cpu/intel/model_2065x/model_2065x.h
+++ b/src/cpu/intel/model_2065x/model_2065x.h
@@ -15,7 +15,7 @@
 #ifndef _CPU_INTEL_MODEL_2065X_H
 #define _CPU_INTEL_MODEL_2065X_H
 
-/* Nehalem bus clock is fixed at 133MHz */
+/* Arrandale bus clock is fixed at 133MHz */
 #define IRONLAKE_BCLK		133
 
 #define MSR_CORE_THREAD_COUNT		0x35
diff --git a/src/drivers/intel/gma/Kconfig b/src/drivers/intel/gma/Kconfig
index b66d8753ad..68d4edce03 100644
--- a/src/drivers/intel/gma/Kconfig
+++ b/src/drivers/intel/gma/Kconfig
@@ -39,7 +39,7 @@ config INTEL_GMA_SSC_ALTERNATE_REF
 	  To be set by northbridge or mainboard Kconfig.  For most platforms,
 	  there is no choice, i.e. for i945 and gm45 the SSC reference always
 	  differs from the display reference clock (i945: 66Mhz SSC vs. 48MHz
-	  DREF; gm45: 100MHz SSC vs. 96Mhz DREF), for Nehalem and newer, it's
+	  DREF; gm45: 100MHz SSC vs. 96Mhz DREF), for Arrandale and newer, it's
 	  the same frequency for SSC/non-SSC (120MHz).  The only, currently
 	  supported platform with a choice seems to be Pineview, where the
 	  alternative is 100MHz vs. the default 96MHz.
diff --git a/src/include/cpu/intel/em64t101_save_state.h b/src/include/cpu/intel/em64t101_save_state.h
index 7493c85049..5d3f9edf9d 100644
--- a/src/include/cpu/intel/em64t101_save_state.h
+++ b/src/include/cpu/intel/em64t101_save_state.h
@@ -20,7 +20,7 @@
 
 /* Intel Revision 30101 SMM State-Save Area
  * The following processor architectures use this:
- * - Nehalem
+ * - Westmere
  * - SandyBridge
  * - IvyBridge
  * - Haswell
diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c
index fe8eed36c9..91bcc1170b 100644
--- a/src/northbridge/intel/ironlake/northbridge.c
+++ b/src/northbridge/intel/ironlake/northbridge.c
@@ -263,10 +263,10 @@ static struct device_operations mc_ops = {
 	.ops_pci = &intel_pci_ops,
 };
 
-static const struct pci_driver mc_driver_44 __pci_driver = {
+static const struct pci_driver mc_driver_ard __pci_driver = {
 	.ops = &mc_ops,
 	.vendor = PCI_VENDOR_ID_INTEL,
-	.device = 0x0044,	/* Nehalem */
+	.device = 0x0044,	/* Arrandale DRAM controller */
 };
 
 static struct device_operations cpu_bus_ops = {
@@ -288,7 +288,7 @@ static void enable_dev(struct device *dev)
 }
 
 struct chip_operations northbridge_intel_ironlake_ops = {
-	CHIP_NAME("Intel i7 (Nehalem) integrated Northbridge")
+	CHIP_NAME("Intel i7 (Arrandale) integrated Northbridge")
 	.enable_dev = enable_dev,
 	.init = ironlake_init,
 };
diff --git a/src/security/tpm/Kconfig b/src/security/tpm/Kconfig
index 95c0bb9b7d..fbe1735707 100644
--- a/src/security/tpm/Kconfig
+++ b/src/security/tpm/Kconfig
@@ -99,7 +99,7 @@ config TPM_STARTUP_IGNORE_POSTINIT
 	  Select this to ignore POSTINIT INVALID return codes on TPM
 	  startup. This is useful on platforms where a previous stage
 	  issued a TPM startup. Examples of use cases are Intel TXT
-	  or VBOOT on the Intel Nehalem northbridge which issues a
+	  or VBOOT on the Intel Arrandale processor, which issues a
 	  CPU-only reset during the romstage.
 
 endmenu # Trusted Platform Module (tpm)
diff --git a/util/docker/coreboot.org-status/board-status.html/tohtml.sh b/util/docker/coreboot.org-status/board-status.html/tohtml.sh
index fa89ae962b..2606af4065 100755
--- a/util/docker/coreboot.org-status/board-status.html/tohtml.sh
+++ b/util/docker/coreboot.org-status/board-status.html/tohtml.sh
@@ -471,7 +471,7 @@ EOF
 			"")
 				case $northbridge in
 					INTEL_IRONLAKE)
-						cpu_nice="IntelĀ® 1st Gen (Nehalem) Core i3/i5/i7"
+						cpu_nice="IntelĀ® 1st Gen (Westmere) Core i3/i5/i7"
 						socket_nice="?";;
 					RDC_R8610)
 						cpu_nice="RDC 8610"
-- 
cgit v1.2.3