19d769d2a41241ad5f3224faae4fd96bdeef85ea
[coreboot.git] / src / mainboard / iwill / dk8s2 / mptable.c
1 #include <console/console.h>
2 #include <arch/smp/mpspec.h>
3 #include <device/pci.h>
4 #include <string.h>
5 #include <stdint.h>
6
7 static void *smp_write_config_table(void *v)
8 {
9         static const char sig[4] = "PCMP";
10         static const char oem[8] = "COREBOOT";
11         static const char productid[12] = "DK8X        ";
12         struct mp_config_table *mc;
13         unsigned char bus_num;
14         unsigned char bus_isa;
15         unsigned char bus_8131_1;
16         unsigned char bus_8131_2;
17         unsigned char bus_8111_1;
18
19         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
20         memset(mc, 0, sizeof(*mc));
21
22         memcpy(mc->mpc_signature, sig, sizeof(sig));
23         mc->mpc_length = sizeof(*mc); /* initially just the header */
24         mc->mpc_spec = 0x04;
25         mc->mpc_checksum = 0; /* not yet computed */
26         memcpy(mc->mpc_oem, oem, sizeof(oem));
27         memcpy(mc->mpc_productid, productid, sizeof(productid));
28         mc->mpc_oemptr = 0;
29         mc->mpc_oemsize = 0;
30         mc->mpc_entry_count = 0; /* No entries yet... */
31         mc->mpc_lapic = LAPIC_ADDR;
32         mc->mpe_length = 0;
33         mc->mpe_checksum = 0;
34         mc->reserved = 0;
35
36         smp_write_processors(mc);
37
38         {
39                 device_t dev;
40
41                 /* 8111 */
42                 dev = dev_find_slot(1, PCI_DEVFN(0x03,0));
43                 if (dev) {
44                         bus_8111_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
45                         bus_isa    = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
46                         bus_isa++;
47                 }
48                 else {
49                         printk(BIOS_DEBUG, "ERROR - could not find PCI 1:03.0, using defaults\n");
50
51                         bus_8111_1 = 4;
52                         bus_isa = 5;
53                 }
54                 /* 8131-1 */
55                 dev = dev_find_slot(1, PCI_DEVFN(0x01,0));
56                 if (dev) {
57                         bus_8131_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
58
59                 }
60                 else {
61                         printk(BIOS_DEBUG, "ERROR - could not find PCI 1:01.0, using defaults\n");
62
63                         bus_8131_1 = 2;
64                 }
65                 /* 8131-2 */
66                 dev = dev_find_slot(1, PCI_DEVFN(0x02,0));
67                 if (dev) {
68                         bus_8131_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
69
70                 }
71                 else {
72                         printk(BIOS_DEBUG, "ERROR - could not find PCI 1:02.0, using defaults\n");
73
74                         bus_8131_2 = 3;
75                 }
76         }
77
78         /* define bus and isa numbers */
79         for(bus_num = 0; bus_num < bus_isa; bus_num++) {
80                 smp_write_bus(mc, bus_num, "PCI   ");
81         }
82         smp_write_bus(mc, bus_isa, "ISA   ");
83
84         /* IOAPIC handling */
85         smp_write_ioapic(mc, 2, 0x11, 0xfec00000);
86         {
87                 device_t dev;
88                 struct resource *res;
89                 /* 8131 apic 3 */
90                 dev = dev_find_slot(1, PCI_DEVFN(0x01,1));
91                 if (dev) {
92                         res = find_resource(dev, PCI_BASE_ADDRESS_0);
93                         if (res) {
94                                 smp_write_ioapic(mc, 0x03, 0x11, res->base);
95                         }
96                 }
97                 /* 8131 apic 4 */
98                 dev = dev_find_slot(1, PCI_DEVFN(0x02,1));
99                 if (dev) {
100                         res = find_resource(dev, PCI_BASE_ADDRESS_0);
101                         if (res) {
102                                 smp_write_ioapic(mc, 0x04, 0x11, res->base);
103                         }
104                 }
105         }
106
107         mptable_add_isa_interrupts(mc, bus_isa, 0x2, 0);
108
109         /* Standard local interrupt assignments */
110         smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
111                 bus_isa, 0x00, MP_APIC_ALL, 0x00);
112         smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
113                 bus_isa, 0x00, MP_APIC_ALL, 0x01);
114
115
116         /* PCI Slot 1 */
117         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
118                 bus_8131_2, (1<<2)|0, 0x02, 0x11);
119         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
120                 bus_8131_2, (1<<2)|1, 0x02, 0x12);
121         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
122                 bus_8131_2, (1<<2)|2, 0x02, 0x13);
123         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
124                 bus_8131_2, (1<<2)|3, 0x02, 0x10);
125
126         /* PCI Slot 2 */
127         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
128                 bus_8131_2, (2<<2)|0, 0x02, 0x12);
129         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
130                 bus_8131_2, (2<<2)|1, 0x02, 0x13);
131         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
132                 bus_8131_2, (2<<2)|2, 0x02, 0x10);
133         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
134                 bus_8131_2, (2<<2)|3, 0x02, 0x11);
135
136         /* PCI Slot 3 */
137         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
138                 bus_8131_1, (1<<2)|0, 0x02, 0x11);
139         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
140                 bus_8131_1, (1<<2)|1, 0x02, 0x12);
141         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
142                 bus_8131_1, (1<<2)|2, 0x02, 0x13);
143         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
144                 bus_8131_1, (1<<2)|3, 0x02, 0x10);
145
146         /* PCI Slot 4 */
147         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
148                 bus_8131_1, (2<<2)|0, 0x02, 0x12);
149         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
150                 bus_8131_1, (2<<2)|1, 0x02, 0x13);
151         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
152                 bus_8131_1, (2<<2)|2, 0x02, 0x10);
153         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
154                 bus_8131_1, (2<<2)|3, 0x02, 0x11);
155
156         /* PCI Slot 5 */
157         // FIXME get the irqs right, it's just hacked to work for now
158         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
159                 bus_8111_1, (5<<2)|0, 0x02, 0x11);
160         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
161                 bus_8111_1, (5<<2)|1, 0x02, 0x12);
162         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
163                 bus_8111_1, (5<<2)|2, 0x02, 0x13);
164         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
165                 bus_8111_1, (5<<2)|3, 0x02, 0x10);
166
167         /* PCI Slot 6 */
168         // FIXME get the irqs right, it's just hacked to work for now
169         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
170                 bus_8111_1, (4<<2)|0, 0x02, 0x10);
171         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
172                 bus_8111_1, (4<<2)|1, 0x02, 0x11);
173         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
174                 bus_8111_1, (4<<2)|2, 0x02, 0x12);
175         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
176                 bus_8111_1, (4<<2)|3, 0x02, 0x13);
177
178         /* On board nics */
179         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
180                 bus_8131_1, (3<<2)|0, 0x02, 0x13);
181         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
182                 bus_8131_1, (4<<2)|0, 0x02, 0x13);
183
184         /* There is no extension information... */
185
186         /* Compute the checksums */
187         mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
188         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
189         printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
190                 mc, smp_next_mpe_entry(mc));
191         return smp_next_mpe_entry(mc);
192 }
193
194 unsigned long write_smp_table(unsigned long addr)
195 {
196         void *v;
197         v = smp_write_floating_table(addr);
198         return (unsigned long)smp_write_config_table(v);
199 }
200