f61f1e896ba2d6baca5408d416022694577e998c
[coreboot.git] / src / mainboard / amd / torpedo / irq_tables.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011 Advanced Micro Devices, Inc.
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; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20
21 #include <console/console.h>
22 #include <device/pci.h>
23 #include <string.h>
24 #include <stdint.h>
25 #include <arch/pirq_routing.h>
26 //#include <cpu/amd/amdfam10_sysconf.h>
27
28
29
30 static void write_pirq_info(struct irq_info *pirq_info, u8 bus, u8 devfn,
31                             u8 link0, u16 bitmap0, u8 link1, u16 bitmap1,
32                             u8 link2, u16 bitmap2, u8 link3, u16 bitmap3,
33                             u8 slot, u8 rfu)
34 {
35         pirq_info->bus = bus;
36         pirq_info->devfn = devfn;
37         pirq_info->irq[0].link = link0;
38         pirq_info->irq[0].bitmap = bitmap0;
39         pirq_info->irq[1].link = link1;
40         pirq_info->irq[1].bitmap = bitmap1;
41         pirq_info->irq[2].link = link2;
42         pirq_info->irq[2].bitmap = bitmap2;
43         pirq_info->irq[3].link = link3;
44         pirq_info->irq[3].bitmap = bitmap3;
45         pirq_info->slot = slot;
46         pirq_info->rfu = rfu;
47 }
48 extern u8 bus_isa;
49 extern u8 bus_sb900[2];
50 extern unsigned long sbdn_sb900;
51
52 unsigned long write_pirq_routing_table(unsigned long addr)
53 {
54
55         struct irq_routing_table *pirq;
56         struct irq_info *pirq_info;
57         u32 slot_num;
58         u8 *v;
59
60         u8 sum = 0;
61         int i;
62
63
64         get_bus_conf();         /* it will find out all bus num and apic that share with mptable.c and mptable.c and acpi_tables.c */
65
66
67         /* Align the table to be 16 byte aligned. */
68         addr += 15;
69         addr &= ~15;
70
71         /* This table must be betweeen 0xf0000 & 0x100000 */
72         printk(BIOS_INFO, "Writing IRQ routing tables to 0x%lx...", addr);
73
74         pirq = (void *)(addr);
75         v = (u8 *) (addr);
76
77         pirq->signature = PIRQ_SIGNATURE;
78         pirq->version = PIRQ_VERSION;
79
80         pirq->rtr_bus = bus_sb900[0];
81         pirq->rtr_devfn = ((sbdn_sb900 + 0x14) << 3) | 4;
82
83         pirq->exclusive_irqs = 0;
84
85         pirq->rtr_vendor = 0x1002;
86         pirq->rtr_device = 0x4384;
87
88         pirq->miniport_data = 0;
89
90         memset(pirq->rfu, 0, sizeof(pirq->rfu));
91
92         pirq_info = (void *)(&pirq->checksum + 1);
93         slot_num = 0;
94
95
96         /* pci bridge */
97         write_pirq_info(pirq_info, bus_sb900[0], ((sbdn_sb900 + 0x14) << 3) | 4,
98                         0x1, 0xdef8, 0x2, 0xdef8, 0x3, 0xdef8, 0x4, 0xdef8, 0,
99                         0);
100         pirq_info++;
101
102
103
104         slot_num++;
105
106
107
108         pirq->size = 32 + 16 * slot_num;
109
110         for (i = 0; i < pirq->size; i++)
111                 sum += v[i];
112
113         sum = pirq->checksum - sum;
114
115         if (sum != pirq->checksum) {
116                 pirq->checksum = sum;
117         }
118
119         printk(BIOS_INFO, "write_pirq_routing_table done.\n");
120
121         return (unsigned long)pirq_info;
122
123 }