blob: 3a8ce918e6408934a10d282242cfea5020f34566 [file] [log] [blame]
Yinghai Luf55b58d2007-02-17 14:28:11 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luf55b58d2007-02-17 14:28:11 +00003 *
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
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000033#include <stdlib.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000034#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
Yinghai Luf327d9f2008-02-20 17:41:38 +000039unsigned pci1234x[] =
Yinghai Luf55b58d2007-02-17 14:28:11 +000040{ //Here you only need to set value in pci1234 for HT-IO that could be installed or not
41 //You may need to preset pci1234 for HTIO board, please refer to src/northbridge/amd/amdk8/get_sblk_pci1234.c for detail
42 0x0000ff0,
43 0x0000ff0,
44 0x0000ff0,
45// 0x0000ff0,
46// 0x0000ff0,
47// 0x0000ff0,
48// 0x0000ff0,
49// 0x0000ff0
50};
Yinghai Luf327d9f2008-02-20 17:41:38 +000051unsigned hcdnx[] =
Yinghai Luf55b58d2007-02-17 14:28:11 +000052{ //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
53 0x20202020,
54 0x20202020,
55 0x20202020,
56// 0x20202020,
57// 0x20202020,
58// 0x20202020,
59// 0x20202020,
60// 0x20202020,
61};
62
63
64extern void get_sblk_pci1234(void);
65
66static unsigned get_bus_conf_done = 0;
67
68static unsigned get_hcid(unsigned i)
69{
70 unsigned id = 0;
71
72 unsigned busn = (sysconf.pci1234[i] >> 16) & 0xff;
73
74 unsigned devn = sysconf.hcdn[i] & 0xff;
75
76 device_t dev;
77
78 dev = dev_find_slot(busn, PCI_DEVFN(devn,0));
79
80 switch (dev->device) {
81 case 0x0369: //IO55
82 id = 4;
83 break;
84 }
85
86 // we may need more way to find out hcid: subsystem id? GPIO read ?
87
88 // we need use id for 1. bus num, 2. mptable, 3. acpi table
89
90 return id;
91}
92
93void get_bus_conf(void)
94{
95
96 unsigned apicid_base;
97 struct mb_sysconf_t *m;
98
99 device_t dev;
100 int i, j;
101
Yinghai Luf327d9f2008-02-20 17:41:38 +0000102 if (get_bus_conf_done)
103 return; //do it only once
Yinghai Luf55b58d2007-02-17 14:28:11 +0000104
105 get_bus_conf_done = 1;
106
107 sysconf.mb = &mb_sysconf;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000108
Yinghai Luf55b58d2007-02-17 14:28:11 +0000109 m = sysconf.mb;
110 memset(m, 0, sizeof(struct mb_sysconf_t));
111
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000112 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000113
Yinghai Luf327d9f2008-02-20 17:41:38 +0000114 for (i = 0; i < sysconf.hc_possible_num; i++) {
Yinghai Luf55b58d2007-02-17 14:28:11 +0000115 sysconf.pci1234[i] = pci1234x[i];
116 sysconf.hcdn[i] = hcdnx[i];
117 }
118
119 get_sblk_pci1234();
120
121 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
122
123 m->sbdnb = (sysconf.hcdn[1] & 0xff); // first byte of second chain
124
125 m->bus_type[0] = 1; //pci
Yinghai Luf55b58d2007-02-17 14:28:11 +0000126
Yinghai Luf327d9f2008-02-20 17:41:38 +0000127 m->bus_mcp55 = (sysconf.pci1234[0] >> 16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000128
Yinghai Luf327d9f2008-02-20 17:41:38 +0000129 for (i = 0; i < sysconf.hc_possible_num; i++) {
130 unsigned busn_min, busn_max;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000131
Yinghai Luf327d9f2008-02-20 17:41:38 +0000132 if (!(sysconf.pci1234[i] & 0x1))
133 continue;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000134
Yinghai Luf327d9f2008-02-20 17:41:38 +0000135 busn_min = (sysconf.pci1234[i] >> 16) & 0xff;
136 busn_max = (sysconf.pci1234[i] >> 24) & 0xff;
137 for (j = busn_min; j <= busn_max; j++)
Yinghai Luf55b58d2007-02-17 14:28:11 +0000138 m->bus_type[j] = 1;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000139 if(m->bus_isa <= busn_max)
Yinghai Luf55b58d2007-02-17 14:28:11 +0000140 m->bus_isa = busn_max + 1;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000141 printk_debug("i=%d bus range: [%x, %x] bus_isa=%x\n",i, busn_min, busn_max, m->bus_isa);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000142 }
143
144 /* MCP55b */
Yinghai Luf327d9f2008-02-20 17:41:38 +0000145 for (i = 1; i < sysconf.hc_possible_num; i++) {
146 if (!(sysconf.pci1234[i] & 0x0f))
147 continue;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000148 // check hcid type here
149 sysconf.hcid[i] = get_hcid(i);
Yinghai Luf327d9f2008-02-20 17:41:38 +0000150 if (!sysconf.hcid[i])
151 continue; //unknown co processor
Yinghai Luf55b58d2007-02-17 14:28:11 +0000152
Yinghai Luf327d9f2008-02-20 17:41:38 +0000153 m->bus_mcp55b = (sysconf.pci1234[1]>>16) & 0xff;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000154 }
155
Yinghai Luf55b58d2007-02-17 14:28:11 +0000156/*I/O APICs: APIC ID Version State Address*/
157#if CONFIG_LOGICAL_CPUS==1
158 apicid_base = get_apicid_base(2);
Yinghai Luf327d9f2008-02-20 17:41:38 +0000159#else
160 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000161#endif
162 m->apicid_mcp55 = apicid_base+0;
163 m->apicid_mcp55b = apicid_base+1;
164
165}