summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/ironlake
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-14 15:09:45 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2021-10-18 14:20:28 +0000
commitb54388df63f1a42b623e01ec03476712b4a08710 (patch)
tree7e11996c134b0f89b094958d49bdb2501938cc3b /src/northbridge/intel/ironlake
parent9ae922abf728814e10781a71f35803bd53d57524 (diff)
downloadcoreboot-b54388df63f1a42b623e01ec03476712b4a08710.tar.gz
coreboot-b54388df63f1a42b623e01ec03476712b4a08710.tar.bz2
coreboot-b54388df63f1a42b623e01ec03476712b4a08710.zip
ACPI: Have common acpi_fill_mcfg()
As long as there is only one PCI segment we do not need more complicated MCFG generation. Change-Id: Ic2a8e84383883039bb7f994227e2e425366f9e13 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50666 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/intel/ironlake')
-rw-r--r--src/northbridge/intel/ironlake/Makefile.inc2
-rw-r--r--src/northbridge/intel/ironlake/acpi.c12
2 files changed, 0 insertions, 14 deletions
diff --git a/src/northbridge/intel/ironlake/Makefile.inc b/src/northbridge/intel/ironlake/Makefile.inc
index 89c9e16106ea..afca10c58988 100644
--- a/src/northbridge/intel/ironlake/Makefile.inc
+++ b/src/northbridge/intel/ironlake/Makefile.inc
@@ -9,8 +9,6 @@ ramstage-y += northbridge.c
ramstage-y += smi.c
ramstage-y += gma.c
-ramstage-y += acpi.c
-
romstage-y += memmap.c
romstage-y += raminit.c
romstage-y += raminit_tables.c
diff --git a/src/northbridge/intel/ironlake/acpi.c b/src/northbridge/intel/ironlake/acpi.c
deleted file mode 100644
index 97676e7cbb2d..000000000000
--- a/src/northbridge/intel/ironlake/acpi.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <acpi/acpi.h>
-#include "ironlake.h"
-
-unsigned long acpi_fill_mcfg(unsigned long current)
-{
- current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
- CONFIG_MMCONF_BASE_ADDRESS, 0, 0, CONFIG_MMCONF_BUS_NUMBER - 1);
-
- return current;
-}