summaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cimx/sb800/late.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-07 16:33:01 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-10 03:06:18 +0000
commitdfd4ec2dbbb8ad7e8cf1a7d1a424b6407b959994 (patch)
treeaf840390debb3e3b14e835e1b7397fc6c87c5f7a /src/southbridge/amd/cimx/sb800/late.c
parenta96e66a76f21c41b0c15db8d9df1d721f4a8a9af (diff)
downloadcoreboot-dfd4ec2dbbb8ad7e8cf1a7d1a424b6407b959994.tar.xz
southbridge/amd/cimx: Drop unused functions
Leftovers from attempts of using these with native (non-AGESA) amdfam10/15 support code. Change-Id: I8eaed338438e1de5baee462376e339e1439f72f1 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/30728 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/amd/cimx/sb800/late.c')
-rw-r--r--src/southbridge/amd/cimx/sb800/late.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/southbridge/amd/cimx/sb800/late.c b/src/southbridge/amd/cimx/sb800/late.c
index e3390d5c60..c66206f55c 100644
--- a/src/southbridge/amd/cimx/sb800/late.c
+++ b/src/southbridge/amd/cimx/sb800/late.c
@@ -364,22 +364,8 @@ static void sb800_enable(struct device *dev)
case PCI_DEVFN(0x14, 0): /* 0:14:0 SMBUS */
clear_ioapic(VIO_APIC_VADDR);
-#if IS_ENABLED(CONFIG_CPU_AMD_AGESA)
/* Assign the ioapic ID the next available number after the processor core local APIC IDs */
setup_ioapic(VIO_APIC_VADDR, CONFIG_MAX_CPUS);
-#else
- /* I/O APIC IDs are normally limited to 4-bits. Enforce this limit. */
-#if (CONFIG_APIC_ID_OFFSET == 0 && CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS < 16)
- /* Assign the ioapic ID the next available number after the processor core local APIC IDs */
- setup_ioapic(VIO_APIC_VADDR,
- CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS);
-#elif (CONFIG_APIC_ID_OFFSET > 0)
- /* Assign the ioapic ID the value 0. Processor APIC IDs follow. */
- setup_ioapic(VIO_APIC_VADDR, 0);
-#else
-#error "The processor APIC IDs must be lifted to make room for the I/O APIC ID"
-#endif
-#endif
break;
case PCI_DEVFN(0x14, 1): /* 0:14:1 IDE */