From 82d7609ea942d4a8a196182f5a3c959b8c123052 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Thu, 24 May 2018 00:04:22 +0300 Subject: Remove all VIA CN700 boards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Platforms with LATE_CBMEM_INIT were agreed to be removed with 4.7 release late 2017. Change-Id: I06840476ad187cbb6e6af554b5c8e8c4d66f6624 Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/26674 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/mainboard/via/pc2500e/mptable.c | 95 ------------------------------------- 1 file changed, 95 deletions(-) delete mode 100644 src/mainboard/via/pc2500e/mptable.c (limited to 'src/mainboard/via/pc2500e/mptable.c') diff --git a/src/mainboard/via/pc2500e/mptable.c b/src/mainboard/via/pc2500e/mptable.c deleted file mode 100644 index 9b92b002cf..0000000000 --- a/src/mainboard/via/pc2500e/mptable.c +++ /dev/null @@ -1,95 +0,0 @@ -/* - * This file is part of the coreboot project. - * - * Copyright (C) 2007 AMD - * (Written by Yinghai Lu for AMD) - * Copyright (C) 2007 Philipp Degler - * (Thanks to LSRA University of Mannheim for their support) - * Copyright (C) 2008 Jonathan A. Kollasch - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include -#include -#include -#include -#include -#include -#include "southbridge/via/vt8237r/vt8237r.h" - -static void *smp_write_config_table(void *v) -{ - struct mp_config_table *mc; - int isa_bus; - - mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN); - - mptable_init(mc, LOCAL_APIC_ADDR); - - smp_write_processors(mc); - mptable_write_buses(mc, NULL, &isa_bus); - -/* I/O APICs: APIC ID Version State Address*/ - smp_write_ioapic(mc, VT8237R_APIC_ID, 0x20, VIO_APIC_VADDR); - - /* Now, assemble the table. */ - mptable_add_isa_interrupts(mc, isa_bus, VT8237R_APIC_ID, 0); - -#define PCI_INT(bus, dev, fn, pin) \ - smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, \ - bus, (((dev)<<2)|(fn)), VT8237R_APIC_ID, (pin)) - - // PCI slot 1 - PCI_INT(0, 8, 0, 16); - PCI_INT(0, 8, 1, 17); - PCI_INT(0, 8, 2, 18); - PCI_INT(0, 8, 3, 19); - - // PCI slot 2 - PCI_INT(0, 9, 0, 17); - PCI_INT(0, 9, 1, 18); - PCI_INT(0, 9, 2, 19); - PCI_INT(0, 9, 3, 16); - - // SATA - PCI_INT(0, 15, 1, 20); - - // USB - PCI_INT(0, 16, 0, 21); - PCI_INT(0, 16, 1, 21); - PCI_INT(0, 16, 2, 21); - PCI_INT(0, 16, 3, 21); - - // Audio - PCI_INT(0, 17, 2, 22); - - // Ethernet - PCI_INT(0, 18, 0, 23); - - /* Onboard VGA */ - PCI_INT(1, 0, 0, 16); - -/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/ - mptable_lintsrc(mc, 0); - - /* There is no extension information... */ - - /* Compute the checksums */ - return mptable_finalize(mc); -} - -unsigned long write_smp_table(unsigned long addr) -{ - void *v; - v = smp_write_floating_table(addr, 0); - return (unsigned long)smp_write_config_table(v); -} -- cgit v1.2.3