intel/nehalem: rename copypasted smi finalizer function
The nehalem smi finalize handler was just copied from sandybridge, without even changing the function name. TEST=Built and tested on x201t with additional patch to use finalizers Change-Id: Ifb44eeaaa6e03556deeb5d12ed1147e02d6d6eb9 Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-on: http://review.coreboot.org/8292 Reviewed-by: Nicolas Reinecke <nr@das-labor.org> Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
parent
56b830938a
commit
60d44dd0a4
|
@ -25,7 +25,7 @@
|
|||
#include "southbridge/intel/ibexpeak/nvs.h"
|
||||
#include "southbridge/intel/ibexpeak/pch.h"
|
||||
#include "southbridge/intel/ibexpeak/me.h"
|
||||
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||
#include <northbridge/intel/nehalem/nehalem.h>
|
||||
#include <cpu/intel/model_2065x/model_2065x.h>
|
||||
#include <ec/acpi/ec.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
|
@ -164,7 +164,7 @@ int mainboard_smi_apmc(u8 data)
|
|||
|
||||
intel_me_finalize_smm();
|
||||
intel_pch_finalize_smm();
|
||||
intel_sandybridge_finalize_smm();
|
||||
intel_nehalem_finalize_smm();
|
||||
intel_model_2065x_finalize_smm();
|
||||
|
||||
mainboard_finalized = 1;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "southbridge/intel/ibexpeak/nvs.h"
|
||||
#include "southbridge/intel/ibexpeak/pch.h"
|
||||
#include "southbridge/intel/ibexpeak/me.h"
|
||||
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||
#include <northbridge/intel/nehalem/nehalem.h>
|
||||
#include <cpu/intel/model_2065x/model_2065x.h>
|
||||
#include <ec/acpi/ec.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
|
@ -88,7 +88,7 @@ int mainboard_smi_apmc(u8 data)
|
|||
|
||||
intel_me_finalize_smm();
|
||||
intel_pch_finalize_smm();
|
||||
intel_sandybridge_finalize_smm();
|
||||
intel_nehalem_finalize_smm();
|
||||
intel_model_2065x_finalize_smm();
|
||||
|
||||
mainboard_finalized = 1;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#define PCI_DEV_SNB PCI_DEV(0, 0, 0)
|
||||
|
||||
void intel_sandybridge_finalize_smm(void)
|
||||
void intel_nehalem_finalize_smm(void)
|
||||
{
|
||||
pcie_or_config16(PCI_DEV_SNB, 0x50, 1 << 0); /* GGC */
|
||||
pcie_or_config32(PCI_DEV_SNB, 0x5c, 1 << 0); /* DPR */
|
||||
|
|
|
@ -593,7 +593,7 @@ struct ied_header {
|
|||
#define PCI_DEVICE_ID_IB 0x0154
|
||||
|
||||
#ifdef __SMM__
|
||||
void intel_sandybridge_finalize_smm(void);
|
||||
void intel_nehalem_finalize_smm(void);
|
||||
#else /* !__SMM__ */
|
||||
int bridge_silicon_revision(void);
|
||||
void nehalem_early_initialization(int chipset_type);
|
||||
|
|
Loading…
Reference in New Issue