blob: 141bd50402d62d0bfdc57681aa16abb36868c5e3 [file] [log] [blame]
Philipp Deglercd3afc02007-05-24 20:39:48 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Philipp Deglercd3afc02007-05-24 20:39:48 +00003 *
4 * Copyright (C) 2007 AMD
5 * (Written by Yinghai Lu <yinghailu@amd.com> for AMD)
6 * Copyright (C) 2007 Philipp Degler <pdegler@rumms.uni-mannheim.de>
7 * (Thanks to LSRA University of Mannheim for their support)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#include <console/console.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
27#include <string.h>
28#include <stdint.h>
Uwe Hermann336935c2008-09-30 15:02:40 +000029#include <stdlib.h>
Philipp Deglercd3afc02007-05-24 20:39:48 +000030#if CONFIG_LOGICAL_CPUS == 1
31#include <cpu/amd/dualcore.h>
32#endif
Philipp Deglercd3afc02007-05-24 20:39:48 +000033#include <cpu/amd/amdk8_sysconf.h>
34
Uwe Hermann336935c2008-09-30 15:02:40 +000035/*
36 * Global variables for MB layouts and these will be shared by irqtable,
Philipp Deglercd3afc02007-05-24 20:39:48 +000037 * mptable and acpi_tables.
38 */
39/* busnum is default */
40unsigned char bus_isa;
41unsigned char bus_ck804[6];
42unsigned apicid_ck804;
43
Uwe Hermann336935c2008-09-30 15:02:40 +000044/*
45 * Here you only need to set value in pci1234 for HT-IO that could be installed
46 * or not. You may need to preset pci1234 for HT-IO board, please refer to
47 * src/northbridge/amd/amdk8/get_sblk_pci1234.c for details.
48 */
49unsigned pci1234x[] = {
50 0x0000ff0, /* No HTIO for A8N-E */
Philipp Deglercd3afc02007-05-24 20:39:48 +000051};
Uwe Hermann336935c2008-09-30 15:02:40 +000052
53/*
54 * HT Chain device num, actually it is unit id base of every ht device in
55 * chain, assume every chain only have 4 ht device at most.
56 */
57unsigned hcdnx[] = {
58 0x20202020, /* A8N-E has only one ht-chain */
Philipp Deglercd3afc02007-05-24 20:39:48 +000059};
Uwe Hermann336935c2008-09-30 15:02:40 +000060
Philipp Deglercd3afc02007-05-24 20:39:48 +000061unsigned bus_type[256];
62
63extern void get_sblk_pci1234(void);
64
65static unsigned get_bus_conf_done = 0;
66
67void get_bus_conf(void)
68{
Uwe Hermann336935c2008-09-30 15:02:40 +000069 unsigned apicid_base, sbdn;
Philipp Deglercd3afc02007-05-24 20:39:48 +000070 device_t dev;
Philipp Deglercd3afc02007-05-24 20:39:48 +000071 int i, j;
72
73 if (get_bus_conf_done == 1)
Uwe Hermann336935c2008-09-30 15:02:40 +000074 return; /* Do it only once. */
Philipp Deglercd3afc02007-05-24 20:39:48 +000075
76 get_bus_conf_done = 1;
77
Uwe Hermann336935c2008-09-30 15:02:40 +000078 /* FIXME: Is this really needed twice? */
79 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
80 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
Philipp Deglercd3afc02007-05-24 20:39:48 +000081 for (i = 0; i < sysconf.hc_possible_num; i++) {
82 sysconf.pci1234[i] = pci1234x[i];
83 sysconf.hcdn[i] = hcdnx[i];
84 }
85
86 get_sblk_pci1234();
87
Uwe Hermann336935c2008-09-30 15:02:40 +000088 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
Philipp Deglercd3afc02007-05-24 20:39:48 +000089 sbdn = sysconf.sbdn;
90
Uwe Hermann336935c2008-09-30 15:02:40 +000091 for (i = 0; i < 6; i++)
Philipp Deglercd3afc02007-05-24 20:39:48 +000092 bus_ck804[i] = 0;
Uwe Hermann336935c2008-09-30 15:02:40 +000093 for (i = 0; i < 256; i++)
Philipp Deglercd3afc02007-05-24 20:39:48 +000094 bus_type[i] = 0;
Philipp Deglercd3afc02007-05-24 20:39:48 +000095
Uwe Hermann336935c2008-09-30 15:02:40 +000096 bus_type[0] = 1; /* PCI */
Philipp Deglercd3afc02007-05-24 20:39:48 +000097
98 bus_ck804[0] = (sysconf.pci1234[0] >> 16) & 0xff;
99
100 bus_type[bus_ck804[0]] = 1;
101
102 /* CK804 */
103 dev = dev_find_slot(bus_ck804[0], PCI_DEVFN(sbdn + 0x09, 0));
104 if (dev) {
105 bus_ck804[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
106 bus_ck804[2] = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
107 bus_ck804[2]++;
108 } else {
109 printk_debug
110 ("ERROR - could not find PCI 1:%02x.0, using defaults\n",
111 sbdn + 0x09);
112 bus_ck804[1] = 2;
113 bus_ck804[2] = 3;
114 }
115
116 for (i = 2; i < 6; i++) {
Uwe Hermann336935c2008-09-30 15:02:40 +0000117 dev = dev_find_slot(bus_ck804[0],
118 PCI_DEVFN(sbdn + 0x0b + i - 2, 0));
Philipp Deglercd3afc02007-05-24 20:39:48 +0000119 if (dev) {
120 bus_ck804[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
121 bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
122 bus_isa++;
123 for (j = bus_ck804[i]; j < bus_isa; j++)
124 bus_type[j] = 1;
125 } else {
Uwe Hermann336935c2008-09-30 15:02:40 +0000126 printk_debug("ERROR - could not find PCI %02x:%02x.0, using defaults\n",
Philipp Deglercd3afc02007-05-24 20:39:48 +0000127 bus_ck804[0], sbdn + 0x0b + i - 2);
128 bus_isa = bus_ck804[i - 1] + 1;
129 }
130 }
131
Philipp Deglercd3afc02007-05-24 20:39:48 +0000132#if CONFIG_LOGICAL_CPUS==1
133 apicid_base = get_apicid_base(3);
134#else
135 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
136#endif
137 apicid_ck804 = apicid_base + 0;
138}