blob: e32387386b2be822160ee915472af5cb7b5fce05 [file] [log] [blame]
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +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.
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +000016 */
17
18#include <console/console.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include <string.h>
22#include <stdint.h>
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +000023#include <cpu/amd/multicore.h>
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +000024
25#include <cpu/amd/amdfam10_sysconf.h>
26
27#include <stdlib.h>
28#include "mb_sysconf.h"
29
30// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
31struct mb_sysconf_t mb_sysconf;
32
33/* Here you only need to set value in pci1234 for HT-IO that could be
34 installed or not You may need to preset pci1234 for HTIO board, please
35 refer to src/northbridge/amd/amdfam10/get_pci1234.c for detail */
36static u32 pci1234x[] = {
37 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
38 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
39 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
40 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
41 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
42 0x0000ffc, 0x0000ffc,
43};
44
45
46/* HT Chain device num, actually it is unit id base of every ht device
47 in chain, assume every chain only have 4 ht device at most */
48
49static unsigned hcdnx[] = {
50 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
51 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
52 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
53 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
54 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
55 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
56 0x20202020, 0x20202020,
57};
58
59extern void get_pci1234(void);
60
61static unsigned get_bus_conf_done = 0;
62
63void get_bus_conf(void)
64{
65
66 unsigned apicid_base;
67
68 device_t dev;
69 int i;
70 struct mb_sysconf_t *m;
71
72 if(get_bus_conf_done==1) return; //do it only once
73
74 get_bus_conf_done = 1;
75
76 sysconf.mb = &mb_sysconf;
77
78 m = sysconf.mb;
79 memset(m, 0, sizeof(struct mb_sysconf_t));
80
81 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
82
83 for(i=0;i<sysconf.hc_possible_num; i++) {
84 sysconf.pci1234[i] = pci1234x[i];
85 sysconf.hcdn[i] = hcdnx[i];
86 }
87
88 get_pci1234();
89
90 sysconf.sbdn = (sysconf.hcdn[0] >> 8) & 0xff;
91 m->sbdn2 = sysconf.hcdn[0] & 0xff; // bcm5780
92
93 m->bus_bcm5785_0 = (sysconf.pci1234[0] >> 12) & 0xff;
94 m->bus_bcm5780[0] = m->bus_bcm5785_0;
95
96 /* bcm5785 */
97 printk(BIOS_DEBUG, "search for def %d.0 on bus %d\n",sysconf.sbdn,m->bus_bcm5785_0);
98 dev = dev_find_slot(m->bus_bcm5785_0, PCI_DEVFN(sysconf.sbdn,0));
99 if (dev) {
100 printk(BIOS_DEBUG, "found dev %s...\n",dev_path(dev));
101 m->bus_bcm5785_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
102 printk(BIOS_DEBUG, "secondary is %d...\n",m->bus_bcm5785_1);
103 dev = dev_find_slot(m->bus_bcm5785_1, PCI_DEVFN(0xd,0));
104 printk(BIOS_DEBUG, "now found %s...\n",dev_path(dev));
105 if(dev) {
106 m->bus_bcm5785_1_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +0000107 }
108 }
109 else {
110 printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5785_0, sysconf.sbdn);
111 }
112
113 /* bcm5780 */
114 for(i = 1; i < 6; i++) {
115 dev = dev_find_slot(m->bus_bcm5780[0], PCI_DEVFN(m->sbdn2 + i - 1,0));
116 if(dev) {
117 m->bus_bcm5780[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +0000118
119 }
120 else {
121 printk(BIOS_DEBUG, "ERROR - could not find PCI %02x:%02x.0, using defaults\n", m->bus_bcm5780[0], m->sbdn2+i-1);
122 }
123 }
124
125/*I/O APICs: APIC ID Version State Address*/
126 apicid_base = 0x10;
127 for(i=0;i<3;i++)
128 m->apicid_bcm5785[i] = apicid_base+i;
129}