blob: 61e0e2821f58e137f531a97550feac4b352b83ed [file] [log] [blame]
Yinghai Luf55b58d2007-02-17 14:28:11 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luf55b58d2007-02-17 14:28:11 +00003 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
Harald Gutmannda833612009-06-18 10:05:41 +00006 * Copyright (C) 2009 Harald Gutmann <harald.gutmann@gmx.net>
Yinghai Luf55b58d2007-02-17 14:28:11 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include <console/console.h>
24#include <arch/smp/mpspec.h>
25#include <device/pci.h>
26#include <string.h>
27#include <stdint.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000028#include <cpu/amd/amdk8_sysconf.h>
Uwe Hermann55dc2232010-10-25 15:32:07 +000029
Yinghai Luf55b58d2007-02-17 14:28:11 +000030extern unsigned char bus_isa;
31extern unsigned char bus_mcp55[8]; //1
32
33extern unsigned apicid_mcp55;
34
Stefan Reinauer14e22772010-04-27 06:56:47 +000035extern unsigned bus_type[256];
Yinghai Luf55b58d2007-02-17 14:28:11 +000036
Myles Watson08e0fb82010-03-22 16:33:25 +000037static void *smp_write_config_table(void *v)
Yinghai Luf55b58d2007-02-17 14:28:11 +000038{
Yinghai Luf55b58d2007-02-17 14:28:11 +000039 struct mp_config_table *mc;
40 unsigned sbdn;
Harald Gutmannda833612009-06-18 10:05:41 +000041 int i,j,k;
Yinghai Luf55b58d2007-02-17 14:28:11 +000042
43 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Yinghai Luf55b58d2007-02-17 14:28:11 +000044
Uwe Hermann55dc2232010-10-25 15:32:07 +000045 mptable_init(mc, "GA-M57SLI-S4", LAPIC_ADDR);
Yinghai Luf55b58d2007-02-17 14:28:11 +000046
47 smp_write_processors(mc);
48
49 get_bus_conf();
50 sbdn = sysconf.sbdn;
51
52/*Bus: Bus ID Type*/
53 /* define bus and isa numbers */
54 for(j= 0; j < 256 ; j++) {
55 if(bus_type[j])
56 smp_write_bus(mc, j, "PCI ");
57 }
58 smp_write_bus(mc, bus_isa, "ISA ");
59
60/*I/O APICs: APIC ID Version State Address*/
61 {
62 device_t dev;
63 struct resource *res;
Yinghai Luf55b58d2007-02-17 14:28:11 +000064
65 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
66 if (dev) {
67 res = find_resource(dev, PCI_BASE_ADDRESS_1);
68 if (res) {
69 smp_write_ioapic(mc, apicid_mcp55, 0x11, res->base);
70 }
Harald Gutmannda833612009-06-18 10:05:41 +000071 /* set up the interrupt registers of mcp55 */
72 pci_write_config32(dev, 0x7c, 0xc643c643);
73 pci_write_config32(dev, 0x80, 0x8da01009);
74 pci_write_config32(dev, 0x84, 0x200018d2);
Yinghai Luf55b58d2007-02-17 14:28:11 +000075 }
76 }
Harald Gutmannda833612009-06-18 10:05:41 +000077
Patrick Georgic5b87c82010-05-20 15:28:19 +000078 mptable_add_isa_interrupts(mc, bus_isa, apicid_mcp55, 0);
Yinghai Luf55b58d2007-02-17 14:28:11 +000079
Torsten Duwef4c57a92008-01-07 11:13:16 +000080/* PCI interrupts are level triggered, and are
81 * associated with a specific bus/device/function tuple.
82 */
83#define PCI_INT(bus, dev, fn, pin) \
84 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,\
85 bus_mcp55[bus], (((dev)<<2)|(fn)), apicid_mcp55, (pin))
Yinghai Luf55b58d2007-02-17 14:28:11 +000086
Stefan Reinauer14e22772010-04-27 06:56:47 +000087 PCI_INT(0,sbdn+1,1, 10); /* SMBus */
Harald Gutmannda833612009-06-18 10:05:41 +000088 PCI_INT(0,sbdn+2,0, 22); /* USB */
89 PCI_INT(0,sbdn+2,1, 23); /* USB */
90 PCI_INT(0,sbdn+4,0, 21); /* IDE */
91 PCI_INT(0,sbdn+5,0, 20); /* SATA */
92 PCI_INT(0,sbdn+5,1, 21); /* SATA */
93 PCI_INT(0,sbdn+5,2, 22); /* SATA */
94 PCI_INT(0,sbdn+6,1, 23); /* HD Audio */
95 PCI_INT(0,sbdn+8,0, 20); /* GBit Ethernet */
Yinghai Luf55b58d2007-02-17 14:28:11 +000096
Torsten Duwef4c57a92008-01-07 11:13:16 +000097 /* The PCIe slots, each on its own bus */
Harald Gutmannda833612009-06-18 10:05:41 +000098 k = 1;
99 for(i=0; i<4; i++){
100 for(j=7; j>1; j--){
101 if(k>3) k=0;
102 PCI_INT(j,0,i, 16+k);
103 k++;
104 }
105 k--;
106 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000107
Harald Gutmannda833612009-06-18 10:05:41 +0000108 /* On bus 1: the PCI bus slots...
Stefan Reinauer14e22772010-04-27 06:56:47 +0000109 pyhsical PCI slots are j = 7,8
110 FireWire is j = 10
Harald Gutmannda833612009-06-18 10:05:41 +0000111 */
112 k=2;
113 for(i=0; i<4; i++){
114 for(j=6; j<11; j++){
115 if(k>3) k=0;
116 PCI_INT(1,j,i, 16+k);
117 k++;
118 }
119 }
Torsten Duwef4c57a92008-01-07 11:13:16 +0000120
Yinghai Luf55b58d2007-02-17 14:28:11 +0000121/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Tobias Diedrichb907d322010-10-26 22:40:16 +0000122 smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
123 smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000124 /* There is no extension information... */
125
126 /* Compute the checksums */
127 mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
128 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000129 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Yinghai Luf55b58d2007-02-17 14:28:11 +0000130 mc, smp_next_mpe_entry(mc));
131 return smp_next_mpe_entry(mc);
132}
133
134unsigned long write_smp_table(unsigned long addr)
135{
136 void *v;
137 v = smp_write_floating_table(addr);
138 return (unsigned long)smp_write_config_table(v);
139}