blob: 117b08735e34c590544fe0aa3e659116d906ccfe [file] [log] [blame]
Knut Kujat081c8972010-02-03 16:04:40 +00001/*
2 * This file is part of the coreboot 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
Stefan Reinauer2d85fbed2010-04-14 15:44:21 +000028#include <cpu/amd/multicore.h>
Knut Kujat081c8972010-02-03 16:04:40 +000029#endif
30
31#include <cpu/amd/amdfam10_sysconf.h>
32
33#include <stdlib.h>
34#include "mb_sysconf.h"
35
36// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
37struct mb_sysconf_t mb_sysconf;
38
39/* Here you only need to set value in pci1234 for HT-IO that could be
40installed or not You may need to preset pci1234 for HTIO board, please
41refer to src/northbridge/amd/amdfam10/get_pci1234.c for detail */
42static u32 pci1234x[] = {
43 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
44 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
45 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
46 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
47 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
48 0x0000ffc, 0x0000ffc,
49 };
50
51
52/* HT Chain device num, actually it is unit id base of every ht device
53in chain, assume every chain only have 4 ht device at most */
54
55static unsigned hcdnx[] = {
56 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
57 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
58 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
59 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
60 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
61 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
62 0x20202020, 0x20202020,
63};
64
Uwe Hermannd0d7c012010-02-03 22:07:57 +000065unsigned sbdn3;
Knut Kujat081c8972010-02-03 16:04:40 +000066
67extern void get_pci1234(void);
68
69static unsigned get_bus_conf_done = 0;
70
71void get_bus_conf(void)
72{
73
74 unsigned apicid_base;
75 struct mb_sysconf_t *m;
76
77 device_t dev;
78 int i, j;
79
80 if(get_bus_conf_done==1) return; //do it only once
81
82 get_bus_conf_done = 1;
83
84 sysconf.mb = &mb_sysconf;
85
86 m = sysconf.mb;
87 memset(m, 0, sizeof(struct mb_sysconf_t));
88
89 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
90 for(i=0;i<sysconf.hc_possible_num; i++) {
91 sysconf.pci1234[i] = pci1234x[i];
92 sysconf.hcdn[i] = hcdnx[i];
93 }
94
95 get_pci1234();
96
97 m->bus_type[0] = 1; //pci
98 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
99 m->bus_mcp55[0] = (sysconf.pci1234[0] >> 12) & 0xff;
100
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000101 m->bus_8132_0 = (sysconf.pci1234[1] >> 12) & 0xff;
102 sbdn3 = (sysconf.hcdn[1] & 0xff); // first byte of second chain
Knut Kujat081c8972010-02-03 16:04:40 +0000103
104 /* MCP55 */
105 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x06,0));
106
107 if (dev) {
108 m->bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
109 }
110 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000111 printk(BIOS_DEBUG, "ERROR - could not find PCI 1:%02x.0, using defaults\n", sysconf.sbdn + 0x06);
Knut Kujat081c8972010-02-03 16:04:40 +0000112 }
113
114 for(i=2; i<8;i++) {
115 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2 , 0));
116 if (dev) {
117 m->bus_mcp55[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
118 }
119 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000120 printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_mcp55[0], sysconf.sbdn + 0x0a + i - 2 );
Knut Kujat081c8972010-02-03 16:04:40 +0000121 }
122 }
123
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000124 /* 8132_1 */
Knut Kujat081c8972010-02-03 16:04:40 +0000125
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000126 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3, 0));
127 m->bus_8132_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +0000128 m->bus_8132_2 = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
129 m->bus_8132_2++;
Knut Kujat081c8972010-02-03 16:04:40 +0000130
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000131 /* 8132_2 */
132 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3 + 1, 0));
Knut Kujat081c8972010-02-03 16:04:40 +0000133 m->bus_8132_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
134 m->bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
135 m->bus_isa++;
136
137 for(i=0; i< sysconf.hc_possible_num; i++) {
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000138 if(!(sysconf.pci1234[i] & 0x1) ) continue;
Knut Kujat081c8972010-02-03 16:04:40 +0000139
140 unsigned busn = (sysconf.pci1234[i] >> 12) & 0xff;
141 unsigned busn_max = (sysconf.pci1234[i] >> 20) & 0xff;
142 for (j = busn; j <= busn_max; j++)
143 m->bus_type[j] = 1;
144 if(m->bus_isa <= busn_max)
145 m->bus_isa = busn_max + 1;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000146 printk(BIOS_DEBUG, "i=%d bus range: [%x, %x] bus_isa=%x\n",i, busn, busn_max, m->bus_isa);
Knut Kujat081c8972010-02-03 16:04:40 +0000147 }
148
149/*I/O APICs: APIC ID Version State Address*/
150#if CONFIG_LOGICAL_CPUS==1
151 apicid_base = get_apicid_base(3);
152#else
153 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
154#endif
155 m->apicid_mcp55 = apicid_base+0;
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000156 m->apicid_8132_1 = apicid_base+1;
Knut Kujat081c8972010-02-03 16:04:40 +0000157 m->apicid_8132_2 = apicid_base+2;
158}