2009-04-22 22:34:05 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Eric W.Biederman<ebiderman@lnxi.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 AMD
|
|
|
|
* Written by Yinghai Lu <yinghailu@gmail.com> for AMD.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 University of Mannheim
|
|
|
|
* Written by Philipp Degler <pdegler@rumms.uni-mannheim.e> for Uni of Mannheim
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 University of Heidelberg
|
|
|
|
* Written by Mondrian Nuessle <nuessle@uni-hd.de> for Uni of Heidelberg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2013-02-23 18:37:27 +01:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-04-22 22:34:05 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <arch/smp/mpspec.h>
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
Clean up #ifs
Replace #if CONFIG_FOO==1 with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1[[:space:]]*\$,#if \1," {} +
Replace #if (CONFIG_FOO==1) with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1)[[:space:]]*\$,#if \1," {} +
Replace #if CONFIG_FOO==0 with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0[[:space:]]*\$,#if \!\1," {} +
Replace #if (CONFIG_FOO==0) with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0)[[:space:]]*\$,#if \!\1," {} +
(and some manual changes to fix false positives)
Change-Id: Iac6ca7605a5f99885258cf1a9a2473a92de27c42
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1004
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Martin Roth <martin@se-eng.com>
2012-05-05 15:29:32 +02:00
|
|
|
#if CONFIG_LOGICAL_CPUS
|
2010-03-29 16:45:36 +02:00
|
|
|
#include <cpu/amd/multicore.h>
|
2009-04-22 22:34:05 +02:00
|
|
|
#endif
|
|
|
|
#include <cpu/amd/amdk8_sysconf.h>
|
|
|
|
#include "mb_sysconf.h"
|
|
|
|
|
2010-03-22 17:33:25 +01:00
|
|
|
static void *smp_write_config_table(void *v)
|
2009-04-22 22:34:05 +02:00
|
|
|
{
|
|
|
|
struct mp_config_table *mc;
|
|
|
|
struct mb_sysconf_t *m;
|
2010-11-21 15:41:07 +01:00
|
|
|
int bus_isa;
|
2009-04-22 22:34:05 +02:00
|
|
|
|
|
|
|
mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
|
|
|
|
|
2012-02-16 18:43:25 +01:00
|
|
|
mptable_init(mc, LOCAL_APIC_ADDR);
|
2009-04-22 22:34:05 +02:00
|
|
|
|
|
|
|
smp_write_processors(mc);
|
|
|
|
|
|
|
|
get_bus_conf();
|
|
|
|
m = sysconf.mb;
|
|
|
|
|
2010-11-21 15:41:07 +01:00
|
|
|
mptable_write_buses(mc, NULL, &bus_isa);
|
2009-04-22 22:34:05 +02:00
|
|
|
|
|
|
|
/*I/O APICs: APIC ID Version State Address*/
|
|
|
|
{
|
|
|
|
device_t dev = 0;
|
|
|
|
int i;
|
|
|
|
struct resource *res;
|
|
|
|
for(i=0; i<3; i++) {
|
|
|
|
dev = dev_find_device(0x1166, 0x0235, dev);
|
|
|
|
if (dev) {
|
|
|
|
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
|
|
|
if (res) {
|
2010-03-22 17:33:25 +01:00
|
|
|
printk(BIOS_DEBUG, "APIC %d base address: %llx\n",m->apicid_bcm5785[i], res->base);
|
2009-04-22 22:34:05 +02:00
|
|
|
smp_write_ioapic(mc, m->apicid_bcm5785[i], 0x11, res->base);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IRQ routing as factory BIOS */
|
|
|
|
outb(0x01, 0xc00); outb(0x0A, 0xc01);
|
|
|
|
outb(0x17, 0xc00); outb(0x05, 0xc01);
|
|
|
|
/* outb(0x2E, 0xc00); outb(0x0B, 0xc01); */
|
|
|
|
/* outb(0x07, 0xc00); outb(0x07, 0xc01); */
|
|
|
|
outb(0x07, 0xc00); outb(0x0b, 0xc01);
|
|
|
|
|
|
|
|
outb(0x24, 0xc00); outb(0x05, 0xc01);
|
|
|
|
//outb(0x00, 0xc00); outb(0x09, 0xc01);
|
|
|
|
outb(0x02, 0xc00); outb(0x0E, 0xc01);
|
|
|
|
|
|
|
|
// 8259 registers...
|
|
|
|
outb(0xa0, 0x4d0);
|
|
|
|
outb(0x0e, 0x4d1);
|
|
|
|
|
|
|
|
{
|
|
|
|
device_t dev;
|
|
|
|
dev = dev_find_device(0x1166, 0x0205, 0);
|
|
|
|
if(dev) {
|
|
|
|
uint32_t dword;
|
|
|
|
dword = pci_read_config32(dev, 0x64);
|
|
|
|
dword |= (1<<30); // GEVENT14-21 used as PCI IRQ0-7
|
|
|
|
pci_write_config32(dev, 0x64, dword);
|
|
|
|
}
|
|
|
|
// set GEVENT pins to NO OP
|
|
|
|
outb(0x33, 0xcd6); outb(0x00, 0xcd7);
|
|
|
|
outb(0x34, 0xcd6); outb(0x00, 0xcd7);
|
|
|
|
outb(0x35, 0xcd6); outb(0x00, 0xcd7);
|
|
|
|
}
|
|
|
|
|
|
|
|
// hide XIOAPIC PCI configuration space
|
|
|
|
{
|
|
|
|
device_t dev;
|
|
|
|
dev = dev_find_device(0x1166, 0x205, 0);
|
|
|
|
if (dev) {
|
|
|
|
uint32_t dword;
|
|
|
|
dword = pci_read_config32(dev, 0x64);
|
|
|
|
dword |= (1<<26);
|
|
|
|
pci_write_config32(dev, 0x64, dword);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-21 15:41:07 +01:00
|
|
|
mptable_add_isa_interrupts(mc, bus_isa, m->apicid_bcm5785[0], 0);
|
2010-05-20 17:28:19 +02:00
|
|
|
|
2009-04-22 22:34:05 +02:00
|
|
|
//SATA
|
2010-03-22 12:42:32 +01:00
|
|
|
/* printk(BIOS_DEBUG, "MPTABLE_SATA: bus_id:%d irq:%d apic_id:%d pin:%d\n",m->bus_bcm5785_1, (0x0e<<2)|0, m->apicid_bcm5785[0], 0x7); */
|
2009-04-22 22:34:05 +02:00
|
|
|
/* smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_1, (0x0e<<2)|0, m->apicid_bcm5785[0], 0x7); */
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "MPTABLE_SATA: bus_id:%d irq:%d apic_id:%d pin:%d\n",m->bus_bcm5785_1, (0x0e<<2)|0, m->apicid_bcm5785[0], 0xb);
|
2009-04-22 22:34:05 +02:00
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_1, (0x0e<<2)|0, m->apicid_bcm5785[0], 0xb);
|
|
|
|
//USB
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "sysconf.sbdn: %d on bus: %x \n",sysconf.sbdn, m->bus_bcm5785_0);
|
2009-04-22 22:34:05 +02:00
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x03<<2)|0, m->apicid_bcm5785[0], 0xa);
|
|
|
|
|
|
|
|
//VGA
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x4<<2)|0, m->apicid_bcm5785[1], 0x7);
|
|
|
|
|
|
|
|
//PCIE
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x6<<2)|0, m->apicid_bcm5785[2], 0xe);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x7<<2)|0, m->apicid_bcm5785[2], 0xe);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x8<<2)|0, m->apicid_bcm5785[2], 0xe);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0x9<<2)|0, m->apicid_bcm5785[2], 0xe);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_bcm5785_0, (0xa<<2)|0, m->apicid_bcm5785[2], 0xe);
|
|
|
|
|
|
|
|
//IDE
|
|
|
|
// outb(0x02, 0xc00); outb(0x0e, 0xc01);
|
2010-03-22 12:42:32 +01:00
|
|
|
// printk(BIOS_DEBUG, "MPTABLE_IDE: bus_id:%d irq:%d apic_id:%d pin:%d\n",m->bus_bcm5785_0, ((1+sysconf.sbdn)<<2)|1, m->apicid_bcm5785[0], 0xe);
|
2009-04-22 22:34:05 +02:00
|
|
|
// smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, m->bus_bcm5785_0, (0x02<<2)|1, m->apicid_bcm5785[0], 0xe);
|
|
|
|
|
|
|
|
//onboard Broadcom GbE
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,8, (4<<2)|0, m->apicid_bcm5785[2], 0x4);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,8, (4<<2)|1, m->apicid_bcm5785[2], 0x4);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* enable int */
|
|
|
|
/* why here? must get the BAR and PCI command bit 1 set before enable it ....*/
|
|
|
|
{
|
|
|
|
device_t dev;
|
|
|
|
dev = dev_find_device(0x1166, 0x0205, 0);
|
|
|
|
if(dev) {
|
|
|
|
uint32_t dword;
|
|
|
|
dword = pci_read_config32(dev, 0x6c);
|
|
|
|
dword |= (1<<4); // enable interrupts
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "6ch: %x\n",dword);
|
2009-04-22 22:34:05 +02:00
|
|
|
pci_write_config32(dev, 0x6c, dword);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
|
2010-11-21 15:41:07 +01:00
|
|
|
printk(BIOS_DEBUG, "bus_isa is: %x\n", bus_isa);
|
mptable: Refactor lintsrc generation
We copied pretty much the same code for generating mptable entries for
local interrupts (with some notable exceptions).
This change moves these lines into a generic function "mptable_lintsrc"
and makes use of it in many places.
The remaining uses of smp_write_lintsrc should be reviewed and replaced
by mptable_lintsrc calls where possible, and smp_write_lintsrc made static.
This patch was generated using Coccinelle:
@@
expression mc;
expression isa_bus;
@@
-smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT, isa_bus, 0x0, MP_APIC_ALL, 0x0);
-smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT, isa_bus, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, isa_bus);
@@
expression mc;
expression isa_bus;
@@
-smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, isa_bus, 0x0, MP_APIC_ALL, 0x0);
-smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, isa_bus, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, isa_bus);
@m@
identifier mc;
expression BUS;
@@
-#define IO_LOCAL_INT(type, intr, apicid, pin) smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, BUS, (intr), (apicid), (pin));
...
-IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
-IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, BUS);
Change-Id: I97421f820cd039f5fd753cb0da5c1cca68819bb4
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/244
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
2011-10-07 21:42:52 +02:00
|
|
|
mptable_lintsrc(mc, bus_isa);
|
2009-04-22 22:34:05 +02:00
|
|
|
|
|
|
|
//extended table entries
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_IO, 0x0, 0x0, 0x0, 0x0001);
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_MEM, 0x0, 0x7f80, 0x0, 0x5e80);
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_PREFETCH, 0x0, 0xde00, 0x0, 0x0100);
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_MEM, 0x0, 0xdf00, 0x0, 0x1fe0);
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_MEM, 0x1000, 0xfee0, 0xf000, 0x011f);
|
|
|
|
smp_write_address_space(mc,0 , ADDRESS_TYPE_MEM, 0x0, 0x000a, 0x0, 0x0006);
|
|
|
|
smp_write_bus_hierarchy(mc, 9, 0x01, 0);
|
|
|
|
smp_write_compatibility_address_space(mc, 0, ADDRESS_RANGE_ADD, 0);
|
|
|
|
smp_write_compatibility_address_space(mc, 0, ADDRESS_RANGE_ADD, 1);
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute the checksums */
|
2011-10-07 23:01:55 +02:00
|
|
|
return mptable_finalize(mc);
|
2009-04-22 22:34:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long write_smp_table(unsigned long addr)
|
|
|
|
{
|
|
|
|
void *v;
|
2011-10-07 22:41:07 +02:00
|
|
|
v = smp_write_floating_table(addr, 0);
|
2009-04-22 22:34:05 +02:00
|
|
|
return (unsigned long)smp_write_config_table(v);
|
|
|
|
}
|