blob: bcc34ffa59acf82c7c875549011408b9c1dde57e [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>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000034#include <stdlib.h>
Philipp Deglercd3afc02007-05-24 20:39:48 +000035
Uwe Hermann336935c2008-09-30 15:02:40 +000036/*
37 * Global variables for MB layouts and these will be shared by irqtable,
Philipp Deglercd3afc02007-05-24 20:39:48 +000038 * mptable and acpi_tables.
39 */
40/* busnum is default */
41unsigned char bus_isa;
42unsigned char bus_ck804[6];
43unsigned apicid_ck804;
44
Uwe Hermann336935c2008-09-30 15:02:40 +000045/*
46 * Here you only need to set value in pci1234 for HT-IO that could be installed
47 * or not. You may need to preset pci1234 for HT-IO board, please refer to
48 * src/northbridge/amd/amdk8/get_sblk_pci1234.c for details.
49 */
50unsigned pci1234x[] = {
51 0x0000ff0, /* No HTIO for A8N-E */
Philipp Deglercd3afc02007-05-24 20:39:48 +000052};
Uwe Hermann336935c2008-09-30 15:02:40 +000053
54/*
55 * HT Chain device num, actually it is unit id base of every ht device in
56 * chain, assume every chain only have 4 ht device at most.
57 */
58unsigned hcdnx[] = {
59 0x20202020, /* A8N-E has only one ht-chain */
Philipp Deglercd3afc02007-05-24 20:39:48 +000060};
Uwe Hermann336935c2008-09-30 15:02:40 +000061
Philipp Deglercd3afc02007-05-24 20:39:48 +000062unsigned bus_type[256];
63
64extern void get_sblk_pci1234(void);
65
66static unsigned get_bus_conf_done = 0;
67
68void get_bus_conf(void)
69{
Uwe Hermann336935c2008-09-30 15:02:40 +000070 unsigned apicid_base, sbdn;
Philipp Deglercd3afc02007-05-24 20:39:48 +000071 device_t dev;
Philipp Deglercd3afc02007-05-24 20:39:48 +000072 int i, j;
73
74 if (get_bus_conf_done == 1)
Uwe Hermann336935c2008-09-30 15:02:40 +000075 return; /* Do it only once. */
Philipp Deglercd3afc02007-05-24 20:39:48 +000076
77 get_bus_conf_done = 1;
78
Uwe Hermann336935c2008-09-30 15:02:40 +000079 /* FIXME: Is this really needed twice? */
80 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
81 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
Philipp Deglercd3afc02007-05-24 20:39:48 +000082 for (i = 0; i < sysconf.hc_possible_num; i++) {
83 sysconf.pci1234[i] = pci1234x[i];
84 sysconf.hcdn[i] = hcdnx[i];
85 }
86
87 get_sblk_pci1234();
88
Uwe Hermann336935c2008-09-30 15:02:40 +000089 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
Philipp Deglercd3afc02007-05-24 20:39:48 +000090 sbdn = sysconf.sbdn;
91
Uwe Hermann336935c2008-09-30 15:02:40 +000092 for (i = 0; i < 6; i++)
Philipp Deglercd3afc02007-05-24 20:39:48 +000093 bus_ck804[i] = 0;
Uwe Hermann336935c2008-09-30 15:02:40 +000094 for (i = 0; i < 256; i++)
Philipp Deglercd3afc02007-05-24 20:39:48 +000095 bus_type[i] = 0;
Philipp Deglercd3afc02007-05-24 20:39:48 +000096
Uwe Hermann336935c2008-09-30 15:02:40 +000097 bus_type[0] = 1; /* PCI */
Philipp Deglercd3afc02007-05-24 20:39:48 +000098
99 bus_ck804[0] = (sysconf.pci1234[0] >> 16) & 0xff;
100
101 bus_type[bus_ck804[0]] = 1;
102
103 /* CK804 */
104 dev = dev_find_slot(bus_ck804[0], PCI_DEVFN(sbdn + 0x09, 0));
105 if (dev) {
106 bus_ck804[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
107 bus_ck804[2] = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
108 bus_ck804[2]++;
109 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000110 printk
111 (BIOS_DEBUG, "ERROR - could not find PCI 1:%02x.0, using defaults\n",
Philipp Deglercd3afc02007-05-24 20:39:48 +0000112 sbdn + 0x09);
113 bus_ck804[1] = 2;
114 bus_ck804[2] = 3;
115 }
116
117 for (i = 2; i < 6; i++) {
Uwe Hermann336935c2008-09-30 15:02:40 +0000118 dev = dev_find_slot(bus_ck804[0],
119 PCI_DEVFN(sbdn + 0x0b + i - 2, 0));
Philipp Deglercd3afc02007-05-24 20:39:48 +0000120 if (dev) {
121 bus_ck804[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
122 bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
123 bus_isa++;
124 for (j = bus_ck804[i]; j < bus_isa; j++)
125 bus_type[j] = 1;
126 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000127 printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n",
Philipp Deglercd3afc02007-05-24 20:39:48 +0000128 bus_ck804[0], sbdn + 0x0b + i - 2);
129 bus_isa = bus_ck804[i - 1] + 1;
130 }
131 }
132
Philipp Deglercd3afc02007-05-24 20:39:48 +0000133#if CONFIG_LOGICAL_CPUS==1
134 apicid_base = get_apicid_base(3);
135#else
136 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
137#endif
138 apicid_ck804 = apicid_base + 0;
139}