blob: 958bfc1207383d8264c71ad63f7c83bd3b34a940 [file] [log] [blame]
Josef Kellermannbfa7ee52011-05-11 07:47:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <console/console.h>
21#include <arch/smp/mpspec.h>
22#include <device/pci.h>
23#include <arch/io.h>
24#include <string.h>
25#include <stdint.h>
26
27#include <cpu/amd/amdk8_sysconf.h>
28
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000029extern u8 bus_rs690[8];
30extern u8 bus_sb600[2];
31
32extern u32 apicid_sb600;
33
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000034extern u32 sbdn_rs690;
35extern u32 sbdn_sb600;
36
37static void *smp_write_config_table(void *v)
38{
39 struct mp_config_table *mc;
40 int isa_bus;
41
42 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
43 mptable_init(mc, LAPIC_ADDR);
44 smp_write_processors(mc);
45
46 get_bus_conf();
Patrick Georgic5ae3062011-10-06 14:34:22 +020047 printk(BIOS_DEBUG, "%s: apic_id=0x%x\n", __func__, apicid_sb600);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000048
49 mptable_write_buses(mc, NULL, &isa_bus);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000050 /* I/O APICs: APIC ID Version State Address */
51 {
52 device_t dev;
53
54 dev = dev_find_slot(bus_sb600[0], PCI_DEVFN(sbdn_sb600 + 0x14, 0));
55 if (dev) {
56 struct resource *res;
57 res = find_resource(dev, 0x74);
58 smp_write_ioapic(mc, apicid_sb600, 0x20, res->base);
59 }
60 }
Patrick Georgic5ae3062011-10-06 14:34:22 +020061 mptable_add_isa_interrupts(mc, isa_bus, apicid_sb600, 0);
62
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000063 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Patrick Georgic5ae3062011-10-06 14:34:22 +020064 mptable_lintsrc(mc, isa_bus);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000065
66 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +020067 return mptable_finalize(mc);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000068}
69
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000070unsigned long write_smp_table(unsigned long addr)
71{
72 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +020073 v = smp_write_floating_table(addr, 1);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000074 return (unsigned long)smp_write_config_table(v);
75}