d8642b7473825a641b4e175774e8de7ba4511e9b
[coreboot.git] / src / mainboard / supermicro / h8dmr / get_bus_conf.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 AMD
5  * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <device/pci.h>
24 #include <device/pci_ids.h>
25 #include <string.h>
26 #include <stdint.h>
27 #if CONFIG_LOGICAL_CPUS==1
28 #include <cpu/amd/dualcore.h>
29 #endif
30
31 #include <cpu/amd/amdk8_sysconf.h>
32
33
34 // Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
35 //busnum is default
36         unsigned char bus_isa;
37         unsigned char bus_mcp55[8]; //1
38         unsigned apicid_mcp55;
39
40         unsigned char bus_pcix[3]; // under bus_mcp55_2
41
42 unsigned pci1234x[] = 
43 {        //Here you only need to set value in pci1234 for HT-IO that could be installed or not
44          //You may need to preset pci1234 for HTIO board, please refer to src/northbridge/amd/amdk8/get_sblk_pci1234.c for detail
45         0x0000ff0,
46         0x0000ff0,
47 //        0x0000ff0,
48 //        0x0000ff0,
49 //        0x0000ff0,
50 //        0x0000ff0,
51 //        0x0000ff0,
52 //        0x0000ff0
53 };
54 unsigned hcdnx[] = 
55 { //HT Chain device num, actually it is unit id base of every ht device in chain, assume every chain only have 4 ht device at most
56         0x20202020,
57         0x20202020,
58 //        0x20202020,
59 //        0x20202020,
60 //        0x20202020,
61 //        0x20202020,
62 //        0x20202020,
63 //        0x20202020,
64 };
65 unsigned sbdnb;
66
67 extern void get_sblk_pci1234(void);
68
69 static unsigned get_bus_conf_done = 0;
70
71 void get_bus_conf(void)
72 {
73
74         unsigned apicid_base;
75         unsigned sbdn;
76
77         device_t dev;
78         int i;
79
80         if(get_bus_conf_done==1) return; //do it only once
81
82         get_bus_conf_done = 1;
83
84         sysconf.hc_possible_num = sizeof(pci1234x)/sizeof(pci1234x[0]);
85         for(i=0;i<sysconf.hc_possible_num; i++) {
86                 sysconf.pci1234[i] = pci1234x[i];
87                 sysconf.hcdn[i] = hcdnx[i];
88         }
89
90         get_sblk_pci1234();
91
92         sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
93         sbdn = sysconf.sbdn;
94
95         sbdnb = (sysconf.hcdn[1] & 0xff); // first byte of second chain
96
97         for(i=0; i<8; i++) {
98                 bus_mcp55[i] = 0;
99         }
100         
101         for(i=0; i<3; i++) {
102                 bus_pcix[i] = 0;
103         }
104
105
106         bus_mcp55[0] = (sysconf.pci1234[0] >> 16) & 0xff;
107
108                 /* MCP55 */
109                 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn + 0x06,0));
110                 if (dev) {
111                         bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
112                         bus_mcp55[2] = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
113                         bus_mcp55[2]++;
114                 }
115                 else {
116                         printk_debug("ERROR - could not find PCI 1:%02x.0, using defaults\n", sbdn + 0x06);
117
118                         bus_mcp55[1] = 2;
119                         bus_mcp55[2] = 3;
120                 }
121
122                 for(i=2; i<8;i++) {
123                         dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn + 0x0a + i - 2 , 0));
124                         if (dev) {
125                                 bus_mcp55[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
126                                 bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
127                                 bus_isa++;
128                         }
129                         else {
130                                 printk_debug("ERROR - could not find PCI %02x:%02x.0, using defaults\n", bus_mcp55[0], sbdn + 0x0a + i - 2 );
131                                 bus_isa = bus_mcp55[i-1]+1;
132                         }
133                 }
134
135                 if(bus_mcp55[2]) {
136                         for(i=0;i<2; i++) {
137                                 dev = dev_find_slot(bus_mcp55[2], PCI_DEVFN(0, i));
138                                 if(dev) {
139                                         bus_pcix[0] = bus_mcp55[2];
140                                         bus_pcix[i+1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
141                                 }
142                         }
143                 }
144                 
145
146 /*I/O APICs:    APIC ID Version State           Address*/
147 #if CONFIG_LOGICAL_CPUS==1
148         apicid_base = get_apicid_base(1);
149 #else 
150         apicid_base = CONFIG_MAX_PHYSICAL_CPUS; 
151 #endif
152         apicid_mcp55 = apicid_base+0;
153
154 }