S2885 winbond Superio all resource set
[coreboot.git] / src / mainboard / tyan / s2885 / 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 void *smp_write_config_table(void *v)
8 {
9         static const char sig[4] = "PCMP";
10         static const char oem[8] = "TYAN    ";
11         static const char productid[12] = "S2885       ";
12         struct mp_config_table *mc;
13
14         unsigned char bus_num;
15         unsigned char bus_isa;
16         unsigned char bus_8131_1;
17         unsigned char bus_8131_2;
18         unsigned char bus_8111_0;
19         unsigned char bus_8111_1;
20         unsigned char bus_8151_1;
21
22
23         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
24         memset(mc, 0, sizeof(*mc));
25
26         memcpy(mc->mpc_signature, sig, sizeof(sig));
27         mc->mpc_length = sizeof(*mc); /* initially just the header */
28         mc->mpc_spec = 0x04;
29         mc->mpc_checksum = 0; /* not yet computed */
30         memcpy(mc->mpc_oem, oem, sizeof(oem));
31         memcpy(mc->mpc_productid, productid, sizeof(productid));
32         mc->mpc_oemptr = 0;
33         mc->mpc_oemsize = 0;
34         mc->mpc_entry_count = 0; /* No entries yet... */
35         mc->mpc_lapic = LAPIC_ADDR;
36         mc->mpe_length = 0;
37         mc->mpe_checksum = 0;
38         mc->reserved = 0;
39
40         smp_write_processors(mc);
41
42        {
43                 device_t dev;
44
45                 /* 8111 */
46                 dev = dev_find_slot(3, PCI_DEVFN(0x03,0));
47                 if (dev) {
48                         bus_8111_0 = pci_read_config8(dev, PCI_PRIMARY_BUS);
49                         bus_8111_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
50                         bus_isa    = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
51                         bus_isa++;
52                         printk_debug("bus_isa=%d\n",bus_isa);
53                 }
54                 else {
55                         printk_debug("ERROR - could not find PCI 3:03.0, using defaults\n");
56
57                         bus_8111_1 = 6;
58                         bus_isa = 7;
59                 }
60                 /* 8131-1 */
61                 dev = dev_find_slot(3, PCI_DEVFN(0x01,0));
62                 if (dev) {
63                         bus_8131_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
64
65                 }
66                 else {
67                         printk_debug("ERROR - could not find PCI 3:01.0, using defaults\n");
68
69                         bus_8131_1 = 4;
70                 }
71                 /* 8131-2 */
72                 dev = dev_find_slot(3, PCI_DEVFN(0x02,0));
73                 if (dev) {
74                         bus_8131_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
75
76                 }
77                 else {
78                         printk_debug("ERROR - could not find PCI 3:02.0, using defaults\n");
79
80                         bus_8131_2 = 5;
81                 }
82                        /* 8151 */
83                 dev = dev_find_slot(1, PCI_DEVFN(0x02,0));
84                 if (dev) {
85                         bus_8151_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
86                         printk_debug("bus_8151_1=%d\n",bus_8151_1);
87    
88                 }
89                 else {
90                         printk_debug("ERROR - could not find PCI 1:02.0, using defaults\n");
91
92                         bus_8151_1 = 2;
93                 }
94   
95    
96         }
97
98
99
100 /*Bus:          Bus ID  Type*/
101        /* define bus and isa numbers */
102         for(bus_num = 0; bus_num < bus_isa; bus_num++) {
103                 smp_write_bus(mc, bus_num, "PCI   ");
104         }
105         smp_write_bus(mc, bus_isa, "ISA   ");
106
107 /*I/O APICs:    APIC ID Version State           Address*/
108         smp_write_ioapic(mc, 2, 0x11, 0xfec00000);
109         {
110                 device_t dev;
111                 struct resource *res;
112                 dev = dev_find_slot(3, PCI_DEVFN(0x1,1));
113                 if (dev) {
114                         res = find_resource(dev, PCI_BASE_ADDRESS_0);
115                         if (res) {
116                                 smp_write_ioapic(mc, 0x03, 0x11, res->base);
117                         }
118                 }
119                 dev = dev_find_slot(3, PCI_DEVFN(0x2,1));
120                 if (dev) {
121                         res = find_resource(dev, PCI_BASE_ADDRESS_0);
122                         if (res) {
123                                 smp_write_ioapic(mc, 0x04, 0x11, res->base);
124                         }
125                 }
126         }
127   
128 /*I/O Ints:     Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#
129 */      smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, 0x2, 0x0);
130         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x1, 0x2, 0x1);
131         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x0, 0x2, 0x2);
132         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x3, 0x2, 0x3);
133         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x4, 0x2, 0x4);
134         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x5, 0x2, 0x5);
135         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x6, 0x2, 0x6);
136         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x7, 0x2, 0x7);
137         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x8, 0x2, 0x8);
138         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xc, 0x2, 0xc);
139         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xd, 0x2, 0xd);
140         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xe, 0x2, 0xe);
141         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xf, 0x2, 0xf);
142 //??? What
143         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_0, (4<<2)|3, 0x2, 0x13);
144 //Onboard AMD AC97 Audio 
145         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_0, (4<<2)|1, 0x2, 0x11);
146 // Onboard AMD USB
147         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0<<2)|3, 0x2, 0x13);
148
149 //  AGP Display Adapter
150         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8151_1, 0x0, 0x2, 0x10);
151
152 //Onboard Serial ATA        
153         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0b<<2)|0, 0x2, 0x11);
154 //Onboard Firewire
155         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0c<<2)|0, 0x2, 0x13);
156 //Onboard Broadcom NIC
157         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (9<<2)|0, 0x3, 0x0);
158
159 //Slot 5 PCI 32
160         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0a<<2)|0, 0x2, 0x10);
161         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0a<<2)|1, 0x2, 0x11);
162         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0a<<2)|2, 0x2, 0x12); //
163         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8111_1, (0x0a<<2)|3, 0x2, 0x13); //
164
165 //Slot 3 PCIX 100/66
166         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (8<<2)|0, 0x3, 0x3);
167         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (8<<2)|1, 0x3, 0x0);
168         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (8<<2)|2, 0x3, 0x1);//
169         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (8<<2)|3, 0x3, 0x2);//
170
171 //Slot 4 PCIX 100/66        
172         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (7<<2)|0, 0x3, 0x2);
173         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (7<<2)|1, 0x3, 0x3);//
174         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (7<<2)|2, 0x3, 0x0);//
175         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_1, (7<<2)|3, 0x3, 0x1);//
176
177 //Slot 1 PCI-X 133/100/66
178         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (3<<2)|0, 0x4, 0x0);
179         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (3<<2)|1, 0x4, 0x1);
180         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (3<<2)|2, 0x4, 0x2); //
181         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (3<<2)|3, 0x4, 0x3); //
182
183 //Slot 2 PCI-X 133/100/66
184         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (6<<2)|0, 0x4, 0x1);
185         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (6<<2)|1, 0x4, 0x2);
186         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (6<<2)|2, 0x4, 0x3);//
187         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_8131_2, (6<<2)|3, 0x4, 0x0);//
188
189 /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#*/
190         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
191         smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
192         /* There is no extension information... */
193
194         /* Compute the checksums */
195         mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
196         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
197         printk_debug("Wrote the mp table end at: %p - %p\n",
198                 mc, smp_next_mpe_entry(mc));
199         return smp_next_mpe_entry(mc);
200 }
201
202 unsigned long write_smp_table(unsigned long addr)
203 {
204         void *v;
205         v = smp_write_floating_table(addr);
206         return (unsigned long)smp_write_config_table(v);
207 }