blob: 7e9d4b86daecce6b3ae9e468dd010e6de15a40e8 [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
Patrick Georgib890a122015-03-26 15:17:45 +010019 * Foundation, Inc.
Knut Kujat081c8972010-02-03 16:04:40 +000020 */
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>
Stefan Reinauer2d85fbed2010-04-14 15:44:21 +000027#include <cpu/amd/multicore.h>
Knut Kujat081c8972010-02-03 16:04:40 +000028
29#include <cpu/amd/amdfam10_sysconf.h>
30
31#include <stdlib.h>
32#include "mb_sysconf.h"
33
34// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
35struct mb_sysconf_t mb_sysconf;
36
37/* Here you only need to set value in pci1234 for HT-IO that could be
38installed or not You may need to preset pci1234 for HTIO board, please
39refer to src/northbridge/amd/amdfam10/get_pci1234.c for detail */
40static u32 pci1234x[] = {
41 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
42 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
43 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
44 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
45 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc, 0x0000ffc,
46 0x0000ffc, 0x0000ffc,
47 };
48
49
50/* HT Chain device num, actually it is unit id base of every ht device
51in chain, assume every chain only have 4 ht device at most */
52
53static unsigned hcdnx[] = {
54 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
55 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020,
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,
61};
62
Uwe Hermannd0d7c012010-02-03 22:07:57 +000063unsigned sbdn3;
Knut Kujat081c8972010-02-03 16:04:40 +000064
65extern void get_pci1234(void);
66
67static unsigned get_bus_conf_done = 0;
68
69void get_bus_conf(void)
70{
71
72 unsigned apicid_base;
73 struct mb_sysconf_t *m;
74
75 device_t dev;
Patrick Georgi7411eab2010-11-22 14:14:56 +000076 int i;
Knut Kujat081c8972010-02-03 16:04:40 +000077
78 if(get_bus_conf_done==1) return; //do it only once
79
80 get_bus_conf_done = 1;
81
82 sysconf.mb = &mb_sysconf;
83
84 m = sysconf.mb;
85 memset(m, 0, sizeof(struct mb_sysconf_t));
86
87 sysconf.hc_possible_num = ARRAY_SIZE(pci1234x);
88 for(i=0;i<sysconf.hc_possible_num; i++) {
89 sysconf.pci1234[i] = pci1234x[i];
90 sysconf.hcdn[i] = hcdnx[i];
91 }
92
93 get_pci1234();
94
Knut Kujat081c8972010-02-03 16:04:40 +000095 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
96 m->bus_mcp55[0] = (sysconf.pci1234[0] >> 12) & 0xff;
97
Uwe Hermannd0d7c012010-02-03 22:07:57 +000098 m->bus_8132_0 = (sysconf.pci1234[1] >> 12) & 0xff;
99 sbdn3 = (sysconf.hcdn[1] & 0xff); // first byte of second chain
Knut Kujat081c8972010-02-03 16:04:40 +0000100
101 /* MCP55 */
102 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x06,0));
103
104 if (dev) {
105 m->bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
106 }
107 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000108 printk(BIOS_DEBUG, "ERROR - could not find PCI 1:%02x.0, using defaults\n", sysconf.sbdn + 0x06);
Knut Kujat081c8972010-02-03 16:04:40 +0000109 }
110
111 for(i=2; i<8;i++) {
112 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2 , 0));
113 if (dev) {
114 m->bus_mcp55[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
115 }
116 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000117 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 +0000118 }
119 }
120
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000121 /* 8132_1 */
Knut Kujat081c8972010-02-03 16:04:40 +0000122
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000123 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3, 0));
124 m->bus_8132_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +0000125 m->bus_8132_2 = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
126 m->bus_8132_2++;
Knut Kujat081c8972010-02-03 16:04:40 +0000127
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000128 /* 8132_2 */
129 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3 + 1, 0));
Knut Kujat081c8972010-02-03 16:04:40 +0000130 m->bus_8132_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +0000131
132/*I/O APICs: APIC ID Version State Address*/
Timothy Pearsond4bbfe82015-10-27 16:48:36 -0500133 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
134 apicid_base = get_apicid_base(3);
135 else
136 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Knut Kujat081c8972010-02-03 16:04:40 +0000137 m->apicid_mcp55 = apicid_base+0;
Uwe Hermannd0d7c012010-02-03 22:07:57 +0000138 m->apicid_8132_1 = apicid_base+1;
Knut Kujat081c8972010-02-03 16:04:40 +0000139 m->apicid_8132_2 = apicid_base+2;
140}