blob: 4f1fa4794cedd43cad76e9a32686b314e881bf3e [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.
Knut Kujat081c8972010-02-03 16:04:40 +000016 */
17
18#include <console/console.h>
19#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Knut Kujat081c8972010-02-03 16:04:40 +000021#include <string.h>
22#include <stdint.h>
Stefan Reinauer2d85fbed2010-04-14 15:44:21 +000023#include <cpu/amd/multicore.h>
Knut Kujat081c8972010-02-03 16:04:40 +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
Uwe Hermannd0d7c012010-02-03 22:07:57 +000033unsigned sbdn3;
Knut Kujat081c8972010-02-03 16:04:40 +000034
Knut Kujat081c8972010-02-03 16:04:40 +000035void get_bus_conf(void)
36{
37
38 unsigned apicid_base;
39 struct mb_sysconf_t *m;
40
Elyes HAOUAS66e602a2018-05-04 21:52:58 +020041 struct device *dev;
Patrick Georgi7411eab2010-11-22 14:14:56 +000042 int i;
Knut Kujat081c8972010-02-03 16:04:40 +000043
Knut Kujat081c8972010-02-03 16:04:40 +000044 sysconf.mb = &mb_sysconf;
45
46 m = sysconf.mb;
47 memset(m, 0, sizeof(struct mb_sysconf_t));
48
Kyösti Mälkkif112f9f2019-01-03 11:39:05 +020049 get_default_pci1234(32);
Knut Kujat081c8972010-02-03 16:04:40 +000050
Knut Kujat081c8972010-02-03 16:04:40 +000051 sysconf.sbdn = (sysconf.hcdn[0] & 0xff); // first byte of first chain
52 m->bus_mcp55[0] = (sysconf.pci1234[0] >> 12) & 0xff;
53
Uwe Hermannd0d7c012010-02-03 22:07:57 +000054 m->bus_8132_0 = (sysconf.pci1234[1] >> 12) & 0xff;
55 sbdn3 = (sysconf.hcdn[1] & 0xff); // first byte of second chain
Knut Kujat081c8972010-02-03 16:04:40 +000056
57 /* MCP55 */
58 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x06,0));
59
60 if (dev) {
61 m->bus_mcp55[1] = pci_read_config8(dev, PCI_SECONDARY_BUS);
62 }
63 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000064 printk(BIOS_DEBUG, "ERROR - could not find PCI 1:%02x.0, using defaults\n", sysconf.sbdn + 0x06);
Knut Kujat081c8972010-02-03 16:04:40 +000065 }
66
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060067 for(i = 2; i < 8; i++) {
Elyes HAOUASa342f392018-10-17 10:56:26 +020068 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sysconf.sbdn + 0x0a + i - 2, 0));
Knut Kujat081c8972010-02-03 16:04:40 +000069 if (dev) {
70 m->bus_mcp55[i] = pci_read_config8(dev, PCI_SECONDARY_BUS);
71 }
72 else {
Elyes HAOUASa342f392018-10-17 10:56:26 +020073 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 +000074 }
75 }
76
Uwe Hermannd0d7c012010-02-03 22:07:57 +000077 /* 8132_1 */
Knut Kujat081c8972010-02-03 16:04:40 +000078
Uwe Hermannd0d7c012010-02-03 22:07:57 +000079 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3, 0));
80 m->bus_8132_1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +000081 m->bus_8132_2 = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
82 m->bus_8132_2++;
Knut Kujat081c8972010-02-03 16:04:40 +000083
Uwe Hermannd0d7c012010-02-03 22:07:57 +000084 /* 8132_2 */
85 dev = dev_find_slot(m->bus_8132_0, PCI_DEVFN(sbdn3 + 1, 0));
Knut Kujat081c8972010-02-03 16:04:40 +000086 m->bus_8132_2 = pci_read_config8(dev, PCI_SECONDARY_BUS);
Knut Kujat081c8972010-02-03 16:04:40 +000087
88/*I/O APICs: APIC ID Version State Address*/
Timothy Pearsond4bbfe82015-10-27 16:48:36 -050089 if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
90 apicid_base = get_apicid_base(3);
91 else
92 apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
Knut Kujat081c8972010-02-03 16:04:40 +000093 m->apicid_mcp55 = apicid_base+0;
Uwe Hermannd0d7c012010-02-03 22:07:57 +000094 m->apicid_8132_1 = apicid_base+1;
Knut Kujat081c8972010-02-03 16:04:40 +000095 m->apicid_8132_2 = apicid_base+2;
96}