blob: e4dd3a8c0965fadc8414faa2e1cdbf0e9b37f449 [file] [log] [blame]
Knut Kujat081c8972010-02-03 16:04:40 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Knut Kujat081c8972010-02-03 16:04:40 +000016 */
17
18#include <console/console.h>
19#include <arch/smp/mpspec.h>
20#include <device/pci.h>
21#include <string.h>
22#include <stdint.h>
Knut Kujat081c8972010-02-03 16:04:40 +000023#include <cpu/amd/amdfam10_sysconf.h>
Knut Kujat081c8972010-02-03 16:04:40 +000024#include "mb_sysconf.h"
25
Knut Kujat081c8972010-02-03 16:04:40 +000026extern unsigned sbdn3;
27
Myles Watson08e0fb82010-03-22 16:33:25 +000028static void *smp_write_config_table(void *v)
Knut Kujat081c8972010-02-03 16:04:40 +000029{
Knut Kujat081c8972010-02-03 16:04:40 +000030 struct mp_config_table *mc;
31 struct mb_sysconf_t *m;
32 unsigned sbdn;
Patrick Georgi7411eab2010-11-22 14:14:56 +000033 int i, j, bus_isa;
Knut Kujat081c8972010-02-03 16:04:40 +000034
35 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Knut Kujat081c8972010-02-03 16:04:40 +000036
Patrick Georgic8feedd2012-02-16 18:43:25 +010037 mptable_init(mc, LOCAL_APIC_ADDR);
Knut Kujat081c8972010-02-03 16:04:40 +000038
39 smp_write_processors(mc);
40
41 get_bus_conf();
42 sbdn = sysconf.sbdn;
43 m = sysconf.mb;
44
Patrick Georgi7411eab2010-11-22 14:14:56 +000045 mptable_write_buses(mc, NULL, &bus_isa);
Knut Kujat081c8972010-02-03 16:04:40 +000046
Knut Kujat081c8972010-02-03 16:04:40 +000047/*I/O APICs: APIC ID Version State Address*/
48 {
49 device_t dev;
50 struct resource *res;
51 uint32_t dword;
52
Knut Kujat081c8972010-02-03 16:04:40 +000053 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
Knut Kujat081c8972010-02-03 16:04:40 +000054 if (dev) {
55 res = find_resource(dev, PCI_BASE_ADDRESS_1);
56 if (res) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080057 smp_write_ioapic(mc, m->apicid_mcp55, 0x11,
58 res2mmio(res, 0, 0));
Knut Kujat081c8972010-02-03 16:04:40 +000059 }
60
61 dword = 0x00000ab5;
62 pci_write_config32(dev, 0x7c, dword);
63
64 dword = 0x5ab0a500;
Uwe Hermannd0d7c012010-02-03 22:07:57 +000065 pci_write_config32(dev, 0x80, dword);
Knut Kujat081c8972010-02-03 16:04:40 +000066
67 dword = 0xa000000b;
Knut Kujat081c8972010-02-03 16:04:40 +000068 pci_write_config32(dev, 0x84, dword);
69
70 }
71
Knut Kujat081c8972010-02-03 16:04:40 +000072
Uwe Hermannd0d7c012010-02-03 22:07:57 +000073 }
Stefan Reinauer14e22772010-04-27 06:56:47 +000074
Patrick Georgi7411eab2010-11-22 14:14:56 +000075 mptable_add_isa_interrupts(mc, bus_isa, m->apicid_mcp55, 0);
Stefan Reinauer14e22772010-04-27 06:56:47 +000076
Patrick Georgic5b87c82010-05-20 15:28:19 +000077 /*I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Stefan Reinauer14e22772010-04-27 06:56:47 +000078 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+1)<<2)|1, m->apicid_mcp55, 0x5); /* 5 SMBus, OK */
Uwe Hermannd0d7c012010-02-03 22:07:57 +000079 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+2)<<2)|0, m->apicid_mcp55, 0xb); /* 11 USB, OK */
80 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+2)<<2)|1, m->apicid_mcp55, 0xa); /* 10 USB, OK */
81 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|0, m->apicid_mcp55, 0x5); /* 5 IDE, OK*/
Stefan Reinauer14e22772010-04-27 06:56:47 +000082 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|1, m->apicid_mcp55, 0xa); /* 10 IDE, OK*/
83 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|2, m->apicid_mcp55, 0xa); /* 10 IDE, OK*/
Uwe Hermannd0d7c012010-02-03 22:07:57 +000084 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+6)<<2)|1, m->apicid_mcp55, 0xa); /* 10 VGA, OK*/
Stefan Reinauer14e22772010-04-27 06:56:47 +000085
Uwe Hermannd0d7c012010-02-03 22:07:57 +000086 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_8132_2, ((3)<<2)|0, m->apicid_mcp55, 0x5); /* 5 eth0, OK*/
87 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_8132_2, ((3)<<2)|1, m->apicid_mcp55, 0xb); /* 11 eth1, OK*/
Knut Kujat081c8972010-02-03 16:04:40 +000088
Stefan Reinauer14e22772010-04-27 06:56:47 +000089 for(j=7;j>=2; j--) {
Knut Kujat081c8972010-02-03 16:04:40 +000090 if(!m->bus_mcp55[j]) continue;
91 for(i=0;i<4;i++) {
92 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[j], (0x00<<2)|i, m->apicid_mcp55, 0x10 + (2+j+i+4-sbdn%4)%4);
93 }
94 }
95
96 for(j=0; j<1; j++)
97 for(i=0;i<4;i++) {
98 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[1], ((0x04+j)<<2)|i, m->apicid_mcp55, 0x10 + (2+i+j)%4);
99 }
100
101/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Patrick Georgi6eb7a532011-10-07 21:42:52 +0200102 mptable_lintsrc(mc, bus_isa);
Knut Kujat081c8972010-02-03 16:04:40 +0000103 /* There is no extension information... */
104
105 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200106 return mptable_finalize(mc);
Knut Kujat081c8972010-02-03 16:04:40 +0000107}
108
109unsigned long write_smp_table(unsigned long addr)
110{
111 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200112 v = smp_write_floating_table(addr, 0);
Knut Kujat081c8972010-02-03 16:04:40 +0000113 return (unsigned long)smp_write_config_table(v);
114}