blob: 42f6fa4efbfb2f5db07d697335c6b4902eed97f1 [file] [log] [blame]
Uwe Hermanncc447302008-12-15 12:15:49 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
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; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <console/console.h>
22#include <arch/smp/mpspec.h>
23#include <device/pci.h>
24#include <string.h>
25#include <stdint.h>
26
Myles Watson08e0fb82010-03-22 16:33:25 +000027static void *smp_write_config_table(void *v)
Uwe Hermanncc447302008-12-15 12:15:49 +000028{
29 static const char sig[4] = "PCMP";
30 static const char oem[8] = "COREBOOT";
31 static const char productid[12] = "ASUS P2B-DS ";
32 struct mp_config_table *mc;
33
34 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
35 memset(mc, 0, sizeof(*mc));
36
37 memcpy(mc->mpc_signature, sig, sizeof(sig));
38 mc->mpc_length = sizeof(*mc); /* initially just the header */
39 mc->mpc_spec = 0x04;
40 mc->mpc_checksum = 0; /* not yet computed */
41 memcpy(mc->mpc_oem, oem, sizeof(oem));
42 memcpy(mc->mpc_productid, productid, sizeof(productid));
43 mc->mpc_oemptr = 0;
44 mc->mpc_oemsize = 0;
45 mc->mpc_entry_count = 0; /* No entries yet... */
46 mc->mpc_lapic = LAPIC_ADDR;
47 mc->mpe_length = 0;
48 mc->mpe_checksum = 0;
49 mc->reserved = 0;
50
51 smp_write_processors(mc);
52
53 /* Bus: Bus ID Type */
54 smp_write_bus(mc, 0, "PCI ");
55 smp_write_bus(mc, 1, "ISA ");
56
57 /* I/O APICs: APIC ID Version State Address */
58 smp_write_ioapic(mc, 2, 0x20, 0xfec00000);
59 {
60 device_t dev;
61 struct resource *res;
62
63 dev = dev_find_slot(1, PCI_DEVFN(0x1e, 0));
64 if (dev) {
65 res = find_resource(dev, PCI_BASE_ADDRESS_0);
66 if (res)
67 smp_write_ioapic(mc, 3, 0x20, res->base);
68 }
69 dev = dev_find_slot(1, PCI_DEVFN(0x1c, 0));
70 if (dev) {
71 res = find_resource(dev, PCI_BASE_ADDRESS_0);
72 if (res)
73 smp_write_ioapic(mc, 4, 0x20, res->base);
74 }
75 dev = dev_find_slot(4, PCI_DEVFN(0x1e, 0));
76 if (dev) {
77 res = find_resource(dev, PCI_BASE_ADDRESS_0);
78 if (res)
79 smp_write_ioapic(mc, 5, 0x20, res->base);
80 }
81 dev = dev_find_slot(4, PCI_DEVFN(0x1c, 0));
82 if (dev) {
83 res = find_resource(dev, PCI_BASE_ADDRESS_0);
84 if (res)
85 smp_write_ioapic(mc, 8, 0x20, res->base);
86 }
87 }
88
Patrick Georgic5b87c82010-05-20 15:28:19 +000089 mptable_add_isa_interrupts(mc, 0x1, 0x2, 0);
90
Uwe Hermanncc447302008-12-15 12:15:49 +000091 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW,
92 0x0, 0x13, 0x2, 0x13);
93 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW,
94 0x0, 0x18, 0x2, 0x13);
95 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW,
96 0x0, 0x30, 0x2, 0x10);
97
98 /* Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
99 smp_write_intsrc(mc, mp_ExtINT,
100 MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, 0x1, 0x0,
101 MP_APIC_ALL, 0x0);
102 smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH,
103 0x1, 0x0, MP_APIC_ALL, 0x1);
104
105 /* There is no extension information... */
106
107 /* Compute the checksums */
108 mc->mpe_checksum =
109 smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
110 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000111 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Uwe Hermanncc447302008-12-15 12:15:49 +0000112 mc, smp_next_mpe_entry(mc));
113 return smp_next_mpe_entry(mc);
114}
115
116unsigned long write_smp_table(unsigned long addr)
117{
118 void *v;
119 v = smp_write_floating_table(addr);
120 return (unsigned long)smp_write_config_table(v);
121}